--- linux-3.2.0.orig/dropped.txt +++ linux-3.2.0/dropped.txt @@ -0,0 +1 @@ +UBUNTU: SAUCE: (no-up) Restore VT fonts on switch --- linux-3.2.0.orig/Makefile +++ linux-3.2.0/Makefile @@ -1,6 +1,6 @@ VERSION = 3 PATCHLEVEL = 2 -SUBLEVEL = 0 +SUBLEVEL = 19 EXTRAVERSION = NAME = Saber-toothed Squirrel @@ -354,14 +354,23 @@ AFLAGS_KERNEL = CFLAGS_GCOV = -fprofile-arcs -ftest-coverage +# Prefer linux-backports-modules +ifneq ($(KBUILD_SRC),) +ifneq ($(shell if test -e $(KBUILD_OUTPUT)/ubuntu-build; then echo yes; fi),yes) +UBUNTUINCLUDE := -I/usr/src/linux-headers-lbm-$(KERNELRELEASE) +endif +endif # Use LINUXINCLUDE when you must reference the include/ directory. # Needed to be compatible with the O= option -LINUXINCLUDE := -I$(srctree)/arch/$(hdr-arch)/include \ +LINUXINCLUDE := $(UBUNTUINCLUDE) -I$(srctree)/arch/$(hdr-arch)/include \ -Iarch/$(hdr-arch)/include/generated -Iinclude \ $(if $(KBUILD_SRC), -I$(srctree)/include) \ -include $(srctree)/include/linux/kconfig.h +# UBUNTU: Include our third party driver stuff too +LINUXINCLUDE += -Iubuntu/include $(if $(KBUILD_SRC),-I$(srctree)/ubuntu/include) + KBUILD_CPPFLAGS := -D__KERNEL__ KBUILD_CFLAGS := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \ @@ -442,7 +451,7 @@ no-dot-config-targets := clean mrproper distclean \ cscope gtags TAGS tags help %docs check% coccicheck \ - include/linux/version.h headers_% \ + include/linux/version.h headers_% archscripts \ kernelversion %src-pkg config-targets := 0 @@ -507,7 +516,7 @@ # Objects we will link into vmlinux / subdirs we need to visit init-y := init/ -drivers-y := drivers/ sound/ firmware/ +drivers-y := drivers/ sound/ firmware/ ubuntu/ net-y := net/ libs-y := lib/ core-y := usr/ @@ -979,7 +988,7 @@ include/config/auto.conf $(cmd_crmodverdir) -archprepare: prepare1 scripts_basic +archprepare: archscripts prepare1 scripts_basic prepare0: archprepare FORCE $(Q)$(MAKE) $(build)=. @@ -1046,8 +1055,11 @@ # If we do an all arch process set dst to asm-$(hdr-arch) hdr-dst = $(if $(KBUILD_HEADERS), dst=include/asm-$(hdr-arch), dst=include/asm) +PHONY += archscripts +archscripts: + PHONY += __headers -__headers: include/linux/version.h scripts_basic asm-generic FORCE +__headers: include/linux/version.h scripts_basic asm-generic archscripts FORCE $(Q)$(MAKE) $(build)=scripts build_unifdef PHONY += headers_install_all @@ -1060,6 +1072,7 @@ $(error Headers not exportable for the $(SRCARCH) architecture)) $(Q)$(MAKE) $(hdr-inst)=include $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/asm $(hdr-dst) + $(Q)$(MAKE) $(hdr-inst)=ubuntu/include dst=include oldheaders= PHONY += headers_check_all headers_check_all: headers_install_all @@ -1069,6 +1082,7 @@ headers_check: headers_install $(Q)$(MAKE) $(hdr-inst)=include HDRCHECK=1 $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/asm $(hdr-dst) HDRCHECK=1 + $(Q)$(MAKE) $(hdr-inst)=ubuntu/include dst=include oldheaders= HDRCHECK=1 # --------------------------------------------------------------------------- # Modules --- linux-3.2.0.orig/MAINTAINERS +++ linux-3.2.0/MAINTAINERS @@ -4901,6 +4901,13 @@ F: include/scsi/osd_* F: fs/exofs/ +OVERLAYFS FILESYSTEM +M: Miklos Szeredi +L: linux-fsdevel@vger.kernel.org +S: Supported +F: fs/overlayfs/* +F: Documentation/filesystems/overlayfs.txt + P54 WIRELESS DRIVER M: Christian Lamparter L: linux-wireless@vger.kernel.org @@ -6258,7 +6265,7 @@ STABLE BRANCH M: Greg Kroah-Hartman -L: stable@kernel.org +L: stable@vger.kernel.org S: Maintained STAGING SUBSYSTEM --- linux-3.2.0.orig/sound/pci/intel8x0.c +++ linux-3.2.0/sound/pci/intel8x0.c @@ -2102,6 +2102,12 @@ }, { .subvendor = 0x161f, + .subdevice = 0x202f, + .name = "Gateway M520", + .type = AC97_TUNE_INV_EAPD + }, + { + .subvendor = 0x161f, .subdevice = 0x203a, .name = "Gateway 4525GZ", /* AD1981B */ .type = AC97_TUNE_INV_EAPD --- linux-3.2.0.orig/sound/pci/ice1712/amp.c +++ linux-3.2.0/sound/pci/ice1712/amp.c @@ -68,8 +68,11 @@ static int __devinit snd_vt1724_amp_add_controls(struct snd_ice1712 *ice) { - /* we use pins 39 and 41 of the VT1616 for left and right read outputs */ - snd_ac97_write_cache(ice->ac97, 0x5a, snd_ac97_read(ice->ac97, 0x5a) & ~0x8000); + if (ice->ac97) + /* we use pins 39 and 41 of the VT1616 for left and right + read outputs */ + snd_ac97_write_cache(ice->ac97, 0x5a, + snd_ac97_read(ice->ac97, 0x5a) & ~0x8000); return 0; } --- linux-3.2.0.orig/sound/pci/hda/hda_jack.c +++ linux-3.2.0/sound/pci/hda/hda_jack.c @@ -0,0 +1,359 @@ +/* + * Jack-detection handling for HD-audio + * + * Copyright (c) 2011 Takashi Iwai + * + * This driver is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + */ + +#include +#include +#include +#include +#include +#include +#include "hda_codec.h" +#include "hda_local.h" +#include "hda_jack.h" + +/* execute pin sense measurement */ +static u32 read_pin_sense(struct hda_codec *codec, hda_nid_t nid) +{ + u32 pincap; + + if (!codec->no_trigger_sense) { + pincap = snd_hda_query_pin_caps(codec, nid); + if (pincap & AC_PINCAP_TRIG_REQ) /* need trigger? */ + snd_hda_codec_read(codec, nid, 0, + AC_VERB_SET_PIN_SENSE, 0); + } + return snd_hda_codec_read(codec, nid, 0, + AC_VERB_GET_PIN_SENSE, 0); +} + +/** + * snd_hda_jack_tbl_get - query the jack-table entry for the given NID + */ +struct hda_jack_tbl * +snd_hda_jack_tbl_get(struct hda_codec *codec, hda_nid_t nid) +{ + struct hda_jack_tbl *jack = codec->jacktbl.list; + int i; + + if (!nid || !jack) + return NULL; + for (i = 0; i < codec->jacktbl.used; i++, jack++) + if (jack->nid == nid) + return jack; + return NULL; +} +EXPORT_SYMBOL_HDA(snd_hda_jack_tbl_get); + +/** + * snd_hda_jack_tbl_get_from_tag - query the jack-table entry for the given tag + */ +struct hda_jack_tbl * +snd_hda_jack_tbl_get_from_tag(struct hda_codec *codec, unsigned char tag) +{ + struct hda_jack_tbl *jack = codec->jacktbl.list; + int i; + + if (!tag || !jack) + return NULL; + for (i = 0; i < codec->jacktbl.used; i++, jack++) + if (jack->tag == tag) + return jack; + return NULL; +} +EXPORT_SYMBOL_HDA(snd_hda_jack_tbl_get_from_tag); + +/** + * snd_hda_jack_tbl_new - create a jack-table entry for the given NID + */ +struct hda_jack_tbl * +snd_hda_jack_tbl_new(struct hda_codec *codec, hda_nid_t nid) +{ + struct hda_jack_tbl *jack = snd_hda_jack_tbl_get(codec, nid); + if (jack) + return jack; + snd_array_init(&codec->jacktbl, sizeof(*jack), 16); + jack = snd_array_new(&codec->jacktbl); + if (!jack) + return NULL; + jack->nid = nid; + jack->jack_dirty = 1; + jack->tag = codec->jacktbl.used; + return jack; +} +EXPORT_SYMBOL_HDA(snd_hda_jack_tbl_new); + +void snd_hda_jack_tbl_clear(struct hda_codec *codec) +{ +#ifdef CONFIG_SND_HDA_INPUT_JACK + /* free jack instances manually when clearing/reconfiguring */ + if (!codec->bus->shutdown && codec->jacktbl.list) { + struct hda_jack_tbl *jack = codec->jacktbl.list; + int i; + for (i = 0; i < codec->jacktbl.used; i++, jack++) { + if (jack->jack) + snd_device_free(codec->bus->card, jack->jack); + } + } +#endif + snd_array_free(&codec->jacktbl); +} + +/* update the cached value and notification flag if needed */ +static void jack_detect_update(struct hda_codec *codec, + struct hda_jack_tbl *jack) +{ + if (jack->jack_dirty || !jack->jack_detect) { + jack->pin_sense = read_pin_sense(codec, jack->nid); + jack->jack_dirty = 0; + } +} + +/** + * snd_hda_set_dirty_all - Mark all the cached as dirty + * + * This function sets the dirty flag to all entries of jack table. + * It's called from the resume path in hda_codec.c. + */ +void snd_hda_jack_set_dirty_all(struct hda_codec *codec) +{ + struct hda_jack_tbl *jack = codec->jacktbl.list; + int i; + + for (i = 0; i < codec->jacktbl.used; i++, jack++) + if (jack->nid) + jack->jack_dirty = 1; +} +EXPORT_SYMBOL_HDA(snd_hda_jack_set_dirty_all); + +/** + * snd_hda_pin_sense - execute pin sense measurement + * @codec: the CODEC to sense + * @nid: the pin NID to sense + * + * Execute necessary pin sense measurement and return its Presence Detect, + * Impedance, ELD Valid etc. status bits. + */ +u32 snd_hda_pin_sense(struct hda_codec *codec, hda_nid_t nid) +{ + struct hda_jack_tbl *jack = snd_hda_jack_tbl_get(codec, nid); + if (jack) { + jack_detect_update(codec, jack); + return jack->pin_sense; + } + return read_pin_sense(codec, nid); +} +EXPORT_SYMBOL_HDA(snd_hda_pin_sense); + +#define get_jack_plug_state(sense) !!(sense & AC_PINSENSE_PRESENCE) + +/** + * snd_hda_jack_detect - query pin Presence Detect status + * @codec: the CODEC to sense + * @nid: the pin NID to sense + * + * Query and return the pin's Presence Detect status. + */ +int snd_hda_jack_detect(struct hda_codec *codec, hda_nid_t nid) +{ + u32 sense = snd_hda_pin_sense(codec, nid); + return get_jack_plug_state(sense); +} +EXPORT_SYMBOL_HDA(snd_hda_jack_detect); + +/** + * snd_hda_jack_detect_enable - enable the jack-detection + */ +int snd_hda_jack_detect_enable(struct hda_codec *codec, hda_nid_t nid, + unsigned char action) +{ + struct hda_jack_tbl *jack = snd_hda_jack_tbl_new(codec, nid); + if (!jack) + return -ENOMEM; + if (jack->jack_detect) + return 0; /* already registered */ + jack->jack_detect = 1; + if (action) + jack->action = action; + return snd_hda_codec_write_cache(codec, nid, 0, + AC_VERB_SET_UNSOLICITED_ENABLE, + AC_USRSP_EN | jack->tag); +} +EXPORT_SYMBOL_HDA(snd_hda_jack_detect_enable); + +/** + * snd_hda_jack_report_sync - sync the states of all jacks and report if changed + */ +void snd_hda_jack_report_sync(struct hda_codec *codec) +{ + struct hda_jack_tbl *jack = codec->jacktbl.list; + int i, state; + + for (i = 0; i < codec->jacktbl.used; i++, jack++) + if (jack->nid) { + jack_detect_update(codec, jack); + if (!jack->kctl) + continue; + state = get_jack_plug_state(jack->pin_sense); + snd_kctl_jack_report(codec->bus->card, jack->kctl, state); +#ifdef CONFIG_SND_HDA_INPUT_JACK + if (jack->jack) + snd_jack_report(jack->jack, + state ? jack->type : 0); +#endif + } +} +EXPORT_SYMBOL_HDA(snd_hda_jack_report_sync); + +#ifdef CONFIG_SND_HDA_INPUT_JACK +/* guess the jack type from the pin-config */ +static int get_input_jack_type(struct hda_codec *codec, hda_nid_t nid) +{ + unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid); + switch (get_defcfg_device(def_conf)) { + case AC_JACK_LINE_OUT: + case AC_JACK_SPEAKER: + return SND_JACK_LINEOUT; + case AC_JACK_HP_OUT: + return SND_JACK_HEADPHONE; + case AC_JACK_SPDIF_OUT: + case AC_JACK_DIG_OTHER_OUT: + return SND_JACK_AVOUT; + case AC_JACK_MIC_IN: + return SND_JACK_MICROPHONE; + default: + return SND_JACK_LINEIN; + } +} + +static void hda_free_jack_priv(struct snd_jack *jack) +{ + struct hda_jack_tbl *jacks = jack->private_data; + jacks->nid = 0; + jacks->jack = NULL; +} +#endif + +/** + * snd_hda_jack_add_kctl - Add a kctl for the given pin + * + * This assigns a jack-detection kctl to the given pin. The kcontrol + * will have the given name and index. + */ +int snd_hda_jack_add_kctl(struct hda_codec *codec, hda_nid_t nid, + const char *name, int idx) +{ + struct hda_jack_tbl *jack; + struct snd_kcontrol *kctl; + int err, state; + + jack = snd_hda_jack_tbl_new(codec, nid); + if (!jack) + return 0; + if (jack->kctl) + return 0; /* already created */ + kctl = snd_kctl_jack_new(name, idx, codec); + if (!kctl) + return -ENOMEM; + err = snd_hda_ctl_add(codec, nid, kctl); + if (err < 0) + return err; + jack->kctl = kctl; + state = snd_hda_jack_detect(codec, nid); + snd_kctl_jack_report(codec->bus->card, kctl, state); +#ifdef CONFIG_SND_HDA_INPUT_JACK + jack->type = get_input_jack_type(codec, nid); + err = snd_jack_new(codec->bus->card, name, jack->type, &jack->jack); + if (err < 0) + return err; + jack->jack->private_data = jack; + jack->jack->private_free = hda_free_jack_priv; + snd_jack_report(jack->jack, state ? jack->type : 0); +#endif + return 0; +} +EXPORT_SYMBOL_HDA(snd_hda_jack_add_kctl); + +static int add_jack_kctl(struct hda_codec *codec, hda_nid_t nid, + const struct auto_pin_cfg *cfg, + char *lastname, int *lastidx) +{ + unsigned int def_conf, conn; + char name[44]; + int idx, err; + + if (!nid) + return 0; + if (!is_jack_detectable(codec, nid)) + return 0; + def_conf = snd_hda_codec_get_pincfg(codec, nid); + conn = get_defcfg_connect(def_conf); + if (conn != AC_JACK_PORT_COMPLEX) + return 0; + + snd_hda_get_pin_label(codec, nid, cfg, name, sizeof(name), &idx); + if (!strcmp(name, lastname) && idx == *lastidx) + idx++; + strncpy(lastname, name, 44); + *lastidx = idx; + err = snd_hda_jack_add_kctl(codec, nid, name, idx); + if (err < 0) + return err; + return snd_hda_jack_detect_enable(codec, nid, 0); +} + +/** + * snd_hda_jack_add_kctls - Add kctls for all pins included in the given pincfg + */ +int snd_hda_jack_add_kctls(struct hda_codec *codec, + const struct auto_pin_cfg *cfg) +{ + const hda_nid_t *p; + int i, err, lastidx = 0; + char lastname[44] = ""; + + for (i = 0, p = cfg->line_out_pins; i < cfg->line_outs; i++, p++) { + err = add_jack_kctl(codec, *p, cfg, lastname, &lastidx); + if (err < 0) + return err; + } + for (i = 0, p = cfg->hp_pins; i < cfg->hp_outs; i++, p++) { + if (*p == *cfg->line_out_pins) /* might be duplicated */ + break; + err = add_jack_kctl(codec, *p, cfg, lastname, &lastidx); + if (err < 0) + return err; + } + for (i = 0, p = cfg->speaker_pins; i < cfg->speaker_outs; i++, p++) { + if (*p == *cfg->line_out_pins) /* might be duplicated */ + break; + err = add_jack_kctl(codec, *p, cfg, lastname, &lastidx); + if (err < 0) + return err; + } + for (i = 0; i < cfg->num_inputs; i++) { + err = add_jack_kctl(codec, cfg->inputs[i].pin, cfg, lastname, &lastidx); + if (err < 0) + return err; + } + for (i = 0, p = cfg->dig_out_pins; i < cfg->dig_outs; i++, p++) { + err = add_jack_kctl(codec, *p, cfg, lastname, &lastidx); + if (err < 0) + return err; + } + err = add_jack_kctl(codec, cfg->dig_in_pin, cfg, lastname, &lastidx); + if (err < 0) + return err; + err = add_jack_kctl(codec, cfg->mono_out_pin, cfg, lastname, &lastidx); + if (err < 0) + return err; + return 0; +} +EXPORT_SYMBOL_HDA(snd_hda_jack_add_kctls); --- linux-3.2.0.orig/sound/pci/hda/hda_local.h +++ linux-3.2.0/sound/pci/hda/hda_local.h @@ -394,11 +394,12 @@ }; struct auto_pin_cfg; -const char *hda_get_input_pin_label(struct hda_codec *codec, hda_nid_t pin, - int check_location); const char *hda_get_autocfg_input_label(struct hda_codec *codec, const struct auto_pin_cfg *cfg, int input); +int snd_hda_get_pin_label(struct hda_codec *codec, hda_nid_t nid, + const struct auto_pin_cfg *cfg, + char *label, int maxlen, int *indexp); int snd_hda_add_imux_item(struct hda_input_mux *imux, const char *label, int index, int *type_index_ret); @@ -487,7 +488,12 @@ } /* get the widget type from widget capability bits */ -#define get_wcaps_type(wcaps) (((wcaps) & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT) +static inline int get_wcaps_type(unsigned int wcaps) +{ + if (!wcaps) + return -1; /* invalid type */ + return (wcaps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; +} static inline unsigned int get_wcaps_channels(u32 wcaps) { @@ -505,21 +511,6 @@ u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid); int snd_hda_override_pin_caps(struct hda_codec *codec, hda_nid_t nid, unsigned int caps); -u32 snd_hda_pin_sense(struct hda_codec *codec, hda_nid_t nid); -int snd_hda_jack_detect(struct hda_codec *codec, hda_nid_t nid); - -static inline bool is_jack_detectable(struct hda_codec *codec, hda_nid_t nid) -{ - if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_PRES_DETECT)) - return false; - if (!codec->ignore_misc_bit && - (get_defcfg_misc(snd_hda_codec_get_pincfg(codec, nid)) & - AC_DEFCFG_MISC_NO_PRESENCE)) - return false; - if (!(get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP)) - return false; - return true; -} /* flags for hda_nid_item */ #define HDA_NID_ITEM_AMP (1<<0) @@ -688,28 +679,4 @@ #define SND_PRINT_CHANNEL_ALLOCATION_ADVISED_BUFSIZE 80 void snd_print_channel_allocation(int spk_alloc, char *buf, int buflen); -/* - * Input-jack notification support - */ -#ifdef CONFIG_SND_HDA_INPUT_JACK -int snd_hda_input_jack_add(struct hda_codec *codec, hda_nid_t nid, int type, - const char *name); -void snd_hda_input_jack_report(struct hda_codec *codec, hda_nid_t nid); -void snd_hda_input_jack_free(struct hda_codec *codec); -#else /* CONFIG_SND_HDA_INPUT_JACK */ -static inline int snd_hda_input_jack_add(struct hda_codec *codec, - hda_nid_t nid, int type, - const char *name) -{ - return 0; -} -static inline void snd_hda_input_jack_report(struct hda_codec *codec, - hda_nid_t nid) -{ -} -static inline void snd_hda_input_jack_free(struct hda_codec *codec) -{ -} -#endif /* CONFIG_SND_HDA_INPUT_JACK */ - #endif /* __SOUND_HDA_LOCAL_H */ --- linux-3.2.0.orig/sound/pci/hda/hda_codec.c +++ linux-3.2.0/sound/pci/hda/hda_codec.c @@ -33,6 +33,7 @@ #include #include "hda_local.h" #include "hda_beep.h" +#include "hda_jack.h" #include #define CREATE_TRACE_POINTS @@ -1446,7 +1447,7 @@ for (i = 0; i < c->cvt_setups.used; i++) { p = snd_array_elem(&c->cvt_setups, i); if (!p->active && p->stream_tag == stream_tag && - get_wcaps_type(get_wcaps(codec, p->nid)) == type) + get_wcaps_type(get_wcaps(c, p->nid)) == type) p->dirty = 1; } } @@ -1723,43 +1724,6 @@ } EXPORT_SYMBOL_HDA(snd_hda_override_pin_caps); -/** - * snd_hda_pin_sense - execute pin sense measurement - * @codec: the CODEC to sense - * @nid: the pin NID to sense - * - * Execute necessary pin sense measurement and return its Presence Detect, - * Impedance, ELD Valid etc. status bits. - */ -u32 snd_hda_pin_sense(struct hda_codec *codec, hda_nid_t nid) -{ - u32 pincap; - - if (!codec->no_trigger_sense) { - pincap = snd_hda_query_pin_caps(codec, nid); - if (pincap & AC_PINCAP_TRIG_REQ) /* need trigger? */ - snd_hda_codec_read(codec, nid, 0, - AC_VERB_SET_PIN_SENSE, 0); - } - return snd_hda_codec_read(codec, nid, 0, - AC_VERB_GET_PIN_SENSE, 0); -} -EXPORT_SYMBOL_HDA(snd_hda_pin_sense); - -/** - * snd_hda_jack_detect - query pin Presence Detect status - * @codec: the CODEC to sense - * @nid: the pin NID to sense - * - * Query and return the pin's Presence Detect status. - */ -int snd_hda_jack_detect(struct hda_codec *codec, hda_nid_t nid) -{ - u32 sense = snd_hda_pin_sense(codec, nid); - return !!(sense & AC_PINSENSE_PRESENCE); -} -EXPORT_SYMBOL_HDA(snd_hda_jack_detect); - /* * read the current volume to info * if the cache exists, read the cache value. @@ -1795,7 +1759,11 @@ parm = ch ? AC_AMP_SET_RIGHT : AC_AMP_SET_LEFT; parm |= direction == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT; parm |= index << AC_AMP_SET_INDEX_SHIFT; - parm |= val; + if ((val & HDA_AMP_MUTE) && !(info->amp_caps & AC_AMPCAP_MUTE) && + (info->amp_caps & AC_AMPCAP_MIN_MUTE)) + ; /* set the zero value as a fake mute */ + else + parm |= val; snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, parm); info->vol[ch] = val; } @@ -2062,7 +2030,7 @@ val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT); val1 += ofs; val1 = ((int)val1) * ((int)val2); - if (min_mute) + if (min_mute || (caps & AC_AMPCAP_MIN_MUTE)) val2 |= TLV_DB_SCALE_MUTE; if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv)) return -EFAULT; @@ -2308,6 +2276,7 @@ } if (codec->patch_ops.free) codec->patch_ops.free(codec); + snd_hda_jack_tbl_clear(codec); codec->proc_widget_hook = NULL; codec->spec = NULL; free_hda_cache(&codec->amp_cache); @@ -3364,6 +3333,7 @@ restore_pincfgs(codec); /* restore all current pin configs */ restore_shutup_pins(codec); hda_exec_init_verbs(codec); + snd_hda_jack_set_dirty_all(codec); if (codec->patch_ops.resume) codec->patch_ops.resume(codec); else { @@ -5004,8 +4974,8 @@ * "Rear", "Internal". */ -const char *hda_get_input_pin_label(struct hda_codec *codec, hda_nid_t pin, - int check_location) +static const char *hda_get_input_pin_label(struct hda_codec *codec, + hda_nid_t pin, bool check_location) { unsigned int def_conf; static const char * const mic_names[] = { @@ -5044,7 +5014,6 @@ return "Misc"; } } -EXPORT_SYMBOL_HDA(hda_get_input_pin_label); /* Check whether the location prefix needs to be added to the label. * If all mic-jacks are in the same location (e.g. rear panel), we don't @@ -5101,6 +5070,149 @@ } EXPORT_SYMBOL_HDA(hda_get_autocfg_input_label); +/* return the position of NID in the list, or -1 if not found */ +static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums) +{ + int i; + for (i = 0; i < nums; i++) + if (list[i] == nid) + return i; + return -1; +} + +/* get a unique suffix or an index number */ +static const char *check_output_sfx(hda_nid_t nid, const hda_nid_t *pins, + int num_pins, int *indexp) +{ + static const char * const channel_sfx[] = { + " Front", " Surround", " CLFE", " Side" + }; + int i; + + i = find_idx_in_nid_list(nid, pins, num_pins); + if (i < 0) + return NULL; + if (num_pins == 1) + return ""; + if (num_pins > ARRAY_SIZE(channel_sfx)) { + if (indexp) + *indexp = i; + return ""; + } + return channel_sfx[i]; +} + +static int fill_audio_out_name(struct hda_codec *codec, hda_nid_t nid, + const struct auto_pin_cfg *cfg, + const char *name, char *label, int maxlen, + int *indexp) +{ + unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid); + int attr = snd_hda_get_input_pin_attr(def_conf); + const char *pfx = "", *sfx = ""; + + /* handle as a speaker if it's a fixed line-out */ + if (!strcmp(name, "Line-Out") && attr == INPUT_PIN_ATTR_INT) + name = "Speaker"; + /* check the location */ + switch (attr) { + case INPUT_PIN_ATTR_DOCK: + pfx = "Dock "; + break; + case INPUT_PIN_ATTR_FRONT: + pfx = "Front "; + break; + } + if (cfg) { + /* try to give a unique suffix if needed */ + sfx = check_output_sfx(nid, cfg->line_out_pins, cfg->line_outs, + indexp); + if (!sfx) + sfx = check_output_sfx(nid, cfg->speaker_pins, cfg->speaker_outs, + indexp); + if (!sfx) { + /* don't add channel suffix for Headphone controls */ + int idx = find_idx_in_nid_list(nid, cfg->hp_pins, + cfg->hp_outs); + if (idx >= 0) + *indexp = idx; + sfx = ""; + } + } + snprintf(label, maxlen, "%s%s%s", pfx, name, sfx); + return 1; +} + +/** + * snd_hda_get_pin_label - Get a label for the given I/O pin + * + * Get a label for the given pin. This function works for both input and + * output pins. When @cfg is given as non-NULL, the function tries to get + * an optimized label using hda_get_autocfg_input_label(). + * + * This function tries to give a unique label string for the pin as much as + * possible. For example, when the multiple line-outs are present, it adds + * the channel suffix like "Front", "Surround", etc (only when @cfg is given). + * If no unique name with a suffix is available and @indexp is non-NULL, the + * index number is stored in the pointer. + */ +int snd_hda_get_pin_label(struct hda_codec *codec, hda_nid_t nid, + const struct auto_pin_cfg *cfg, + char *label, int maxlen, int *indexp) +{ + unsigned int def_conf = snd_hda_codec_get_pincfg(codec, nid); + const char *name = NULL; + int i; + + if (indexp) + *indexp = 0; + if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE) + return 0; + + switch (get_defcfg_device(def_conf)) { + case AC_JACK_LINE_OUT: + return fill_audio_out_name(codec, nid, cfg, "Line-Out", + label, maxlen, indexp); + case AC_JACK_SPEAKER: + return fill_audio_out_name(codec, nid, cfg, "Speaker", + label, maxlen, indexp); + case AC_JACK_HP_OUT: + return fill_audio_out_name(codec, nid, cfg, "Headphone", + label, maxlen, indexp); + case AC_JACK_SPDIF_OUT: + case AC_JACK_DIG_OTHER_OUT: + if (get_defcfg_location(def_conf) == AC_JACK_LOC_HDMI) + name = "HDMI"; + else + name = "SPDIF"; + if (cfg && indexp) { + i = find_idx_in_nid_list(nid, cfg->dig_out_pins, + cfg->dig_outs); + if (i >= 0) + *indexp = i; + } + break; + default: + if (cfg) { + for (i = 0; i < cfg->num_inputs; i++) { + if (cfg->inputs[i].pin != nid) + continue; + name = hda_get_autocfg_input_label(codec, cfg, i); + if (name) + break; + } + } + if (!name) + name = hda_get_input_pin_label(codec, nid, true); + break; + } + if (!name) + return 0; + strlcpy(label, name, maxlen); + return 1; +} +EXPORT_SYMBOL_HDA(snd_hda_get_pin_label); + /** * snd_hda_add_imux_item - Add an item to input_mux * @@ -5252,113 +5364,5 @@ } EXPORT_SYMBOL_HDA(snd_print_pcm_bits); -#ifdef CONFIG_SND_HDA_INPUT_JACK -/* - * Input-jack notification support - */ -struct hda_jack_item { - hda_nid_t nid; - int type; - struct snd_jack *jack; -}; - -static const char *get_jack_default_name(struct hda_codec *codec, hda_nid_t nid, - int type) -{ - switch (type) { - case SND_JACK_HEADPHONE: - return "Headphone"; - case SND_JACK_MICROPHONE: - return "Mic"; - case SND_JACK_LINEOUT: - return "Line-out"; - case SND_JACK_LINEIN: - return "Line-in"; - case SND_JACK_HEADSET: - return "Headset"; - case SND_JACK_VIDEOOUT: - return "HDMI/DP"; - default: - return "Misc"; - } -} - -static void hda_free_jack_priv(struct snd_jack *jack) -{ - struct hda_jack_item *jacks = jack->private_data; - jacks->nid = 0; - jacks->jack = NULL; -} - -int snd_hda_input_jack_add(struct hda_codec *codec, hda_nid_t nid, int type, - const char *name) -{ - struct hda_jack_item *jack; - int err; - - snd_array_init(&codec->jacks, sizeof(*jack), 32); - jack = snd_array_new(&codec->jacks); - if (!jack) - return -ENOMEM; - - jack->nid = nid; - jack->type = type; - if (!name) - name = get_jack_default_name(codec, nid, type); - err = snd_jack_new(codec->bus->card, name, type, &jack->jack); - if (err < 0) { - jack->nid = 0; - return err; - } - jack->jack->private_data = jack; - jack->jack->private_free = hda_free_jack_priv; - return 0; -} -EXPORT_SYMBOL_HDA(snd_hda_input_jack_add); - -void snd_hda_input_jack_report(struct hda_codec *codec, hda_nid_t nid) -{ - struct hda_jack_item *jacks = codec->jacks.list; - int i; - - if (!jacks) - return; - - for (i = 0; i < codec->jacks.used; i++, jacks++) { - unsigned int pin_ctl; - unsigned int present; - int type; - - if (jacks->nid != nid) - continue; - present = snd_hda_jack_detect(codec, nid); - type = jacks->type; - if (type == (SND_JACK_HEADPHONE | SND_JACK_LINEOUT)) { - pin_ctl = snd_hda_codec_read(codec, nid, 0, - AC_VERB_GET_PIN_WIDGET_CONTROL, 0); - type = (pin_ctl & AC_PINCTL_HP_EN) ? - SND_JACK_HEADPHONE : SND_JACK_LINEOUT; - } - snd_jack_report(jacks->jack, present ? type : 0); - } -} -EXPORT_SYMBOL_HDA(snd_hda_input_jack_report); - -/* free jack instances manually when clearing/reconfiguring */ -void snd_hda_input_jack_free(struct hda_codec *codec) -{ - if (!codec->bus->shutdown && codec->jacks.list) { - struct hda_jack_item *jacks = codec->jacks.list; - int i; - for (i = 0; i < codec->jacks.used; i++, jacks++) { - if (jacks->jack) - snd_device_free(codec->bus->card, jacks->jack); - } - } - snd_array_free(&codec->jacks); -} -EXPORT_SYMBOL_HDA(snd_hda_input_jack_free); -#endif /* CONFIG_SND_HDA_INPUT_JACK */ - MODULE_DESCRIPTION("HDA codec core"); MODULE_LICENSE("GPL"); --- linux-3.2.0.orig/sound/pci/hda/hda_jack.h +++ linux-3.2.0/sound/pci/hda/hda_jack.h @@ -0,0 +1,86 @@ +/* + * Jack-detection handling for HD-audio + * + * Copyright (c) 2011 Takashi Iwai + * + * This driver is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + */ + +#ifndef __SOUND_HDA_JACK_H +#define __SOUND_HDA_JACK_H + +struct hda_jack_tbl { + hda_nid_t nid; + unsigned char action; /* event action (0 = none) */ + unsigned char tag; /* unsol event tag */ + unsigned int private_data; /* arbitrary data */ + /* jack-detection stuff */ + unsigned int pin_sense; /* cached pin-sense value */ + unsigned int jack_detect:1; /* capable of jack-detection? */ + unsigned int jack_dirty:1; /* needs to update? */ + struct snd_kcontrol *kctl; /* assigned kctl for jack-detection */ +#ifdef CONFIG_SND_HDA_INPUT_JACK + int type; + struct snd_jack *jack; +#endif +}; + +struct hda_jack_tbl * +snd_hda_jack_tbl_get(struct hda_codec *codec, hda_nid_t nid); +struct hda_jack_tbl * +snd_hda_jack_tbl_get_from_tag(struct hda_codec *codec, unsigned char tag); + +struct hda_jack_tbl * +snd_hda_jack_tbl_new(struct hda_codec *codec, hda_nid_t nid); +void snd_hda_jack_tbl_clear(struct hda_codec *codec); + +/** + * snd_hda_jack_get_action - get jack-tbl entry for the tag + * + * Call this from the unsol event handler to get the assigned action for the + * event. This will mark the dirty flag for the later reporting, too. + */ +static inline unsigned char +snd_hda_jack_get_action(struct hda_codec *codec, unsigned int tag) +{ + struct hda_jack_tbl *jack = snd_hda_jack_tbl_get_from_tag(codec, tag); + if (jack) { + jack->jack_dirty = 1; + return jack->action; + } + return 0; +} + +void snd_hda_jack_set_dirty_all(struct hda_codec *codec); + +int snd_hda_jack_detect_enable(struct hda_codec *codec, hda_nid_t nid, + unsigned char action); + +u32 snd_hda_pin_sense(struct hda_codec *codec, hda_nid_t nid); +int snd_hda_jack_detect(struct hda_codec *codec, hda_nid_t nid); + +static inline bool is_jack_detectable(struct hda_codec *codec, hda_nid_t nid) +{ + if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_PRES_DETECT)) + return false; + if (!codec->ignore_misc_bit && + (get_defcfg_misc(snd_hda_codec_get_pincfg(codec, nid)) & + AC_DEFCFG_MISC_NO_PRESENCE)) + return false; + if (!(get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP)) + return false; + return true; +} + +int snd_hda_jack_add_kctl(struct hda_codec *codec, hda_nid_t nid, + const char *name, int idx); +int snd_hda_jack_add_kctls(struct hda_codec *codec, + const struct auto_pin_cfg *cfg); + +void snd_hda_jack_report_sync(struct hda_codec *codec); + + +#endif /* __SOUND_HDA_JACK_H */ --- linux-3.2.0.orig/sound/pci/hda/patch_conexant.c +++ linux-3.2.0/sound/pci/hda/patch_conexant.c @@ -31,6 +31,7 @@ #include "hda_codec.h" #include "hda_local.h" #include "hda_beep.h" +#include "hda_jack.h" #define CXT_PIN_DIR_IN 0x00 #define CXT_PIN_DIR_OUT 0x01 @@ -415,40 +416,6 @@ &spec->cur_mux[adc_idx]); } -static int conexant_init_jacks(struct hda_codec *codec) -{ -#ifdef CONFIG_SND_HDA_INPUT_JACK - struct conexant_spec *spec = codec->spec; - int i; - - for (i = 0; i < spec->num_init_verbs; i++) { - const struct hda_verb *hv; - - hv = spec->init_verbs[i]; - while (hv->nid) { - int err = 0; - switch (hv->param ^ AC_USRSP_EN) { - case CONEXANT_HP_EVENT: - err = snd_hda_input_jack_add(codec, hv->nid, - SND_JACK_HEADPHONE, NULL); - snd_hda_input_jack_report(codec, hv->nid); - break; - case CXT5051_PORTC_EVENT: - case CONEXANT_MIC_EVENT: - err = snd_hda_input_jack_add(codec, hv->nid, - SND_JACK_MICROPHONE, NULL); - snd_hda_input_jack_report(codec, hv->nid); - break; - } - if (err < 0) - return err; - ++hv; - } - } -#endif /* CONFIG_SND_HDA_INPUT_JACK */ - return 0; -} - static void conexant_set_power(struct hda_codec *codec, hda_nid_t fg, unsigned int power_state) { @@ -474,7 +441,6 @@ static void conexant_free(struct hda_codec *codec) { - snd_hda_input_jack_free(codec); snd_hda_detach_beep_device(codec); kfree(codec->spec); } @@ -1120,8 +1086,6 @@ static const struct snd_pci_quirk cxt5045_cfg_tbl[] = { SND_PCI_QUIRK(0x103c, 0x30d5, "HP 530", CXT5045_LAPTOP_HP530), - SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP DV Series", - CXT5045_LAPTOP_HPSENSE), SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba P105", CXT5045_LAPTOP_MICSENSE), SND_PCI_QUIRK(0x152d, 0x0753, "Benq R55E", CXT5045_BENQ), SND_PCI_QUIRK(0x1734, 0x10ad, "Fujitsu Si1520", CXT5045_LAPTOP_MICSENSE), @@ -1750,7 +1714,6 @@ static void cxt5051_hp_unsol_event(struct hda_codec *codec, unsigned int res) { - int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20; switch (res >> 26) { case CONEXANT_HP_EVENT: cxt5051_hp_automute(codec); @@ -1762,7 +1725,6 @@ cxt5051_portc_automic(codec); break; } - snd_hda_input_jack_report(codec, nid); } static const struct snd_kcontrol_new cxt5051_playback_mixers[] = { @@ -1901,8 +1863,6 @@ snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | event); - snd_hda_input_jack_add(codec, nid, SND_JACK_MICROPHONE, NULL); - snd_hda_input_jack_report(codec, nid); } static const struct hda_verb cxt5051_ideapad_init_verbs[] = { @@ -1918,7 +1878,6 @@ struct conexant_spec *spec = codec->spec; conexant_init(codec); - conexant_init_jacks(codec); if (spec->auto_mic & AUTO_MIC_PORTB) cxt5051_init_mic_port(codec, 0x17, CXT5051_PORTB_EVENT); @@ -3450,7 +3409,6 @@ hda_nid_t nid = pins[i]; if (!nid || !is_jack_detectable(codec, nid)) break; - snd_hda_input_jack_report(codec, nid); present |= snd_hda_jack_detect(codec, nid); } return present; @@ -3755,8 +3713,7 @@ static void cx_auto_unsol_event(struct hda_codec *codec, unsigned int res) { - int nid = (res & AC_UNSOL_RES_SUBTAG) >> 20; - switch (res >> 26) { + switch (snd_hda_jack_get_action(codec, res >> 26)) { case CONEXANT_HP_EVENT: cx_auto_hp_automute(codec); break; @@ -3765,9 +3722,9 @@ break; case CONEXANT_MIC_EVENT: cx_auto_automic(codec); - snd_hda_input_jack_report(codec, nid); break; } + snd_hda_jack_report_sync(codec); } /* check whether the pin config is suitable for auto-mic switching; @@ -3979,13 +3936,11 @@ } static void enable_unsol_pins(struct hda_codec *codec, int num_pins, - hda_nid_t *pins, unsigned int tag) + hda_nid_t *pins, unsigned int action) { int i; for (i = 0; i < num_pins; i++) - snd_hda_codec_write(codec, pins[i], 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | tag); + snd_hda_jack_detect_enable(codec, pins[i], action); } static void cx_auto_init_output(struct hda_codec *codec) @@ -3996,9 +3951,14 @@ int i; mute_outputs(codec, spec->multiout.num_dacs, spec->multiout.dac_nids); - for (i = 0; i < cfg->hp_outs; i++) + for (i = 0; i < cfg->hp_outs; i++) { + unsigned int val = PIN_OUT; + if (snd_hda_query_pin_caps(codec, cfg->hp_pins[i]) & + AC_PINCAP_HP_DRV) + val |= AC_PINCTL_HP_EN; snd_hda_codec_write(codec, cfg->hp_pins[i], 0, - AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP); + AC_VERB_SET_PIN_WIDGET_CONTROL, val); + } mute_outputs(codec, cfg->hp_outs, cfg->hp_pins); mute_outputs(codec, cfg->line_outs, cfg->line_out_pins); mute_outputs(codec, cfg->speaker_outs, cfg->speaker_pins); @@ -4060,16 +4020,14 @@ if (spec->auto_mic) { if (spec->auto_mic_ext >= 0) { - snd_hda_codec_write(codec, - cfg->inputs[spec->auto_mic_ext].pin, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | CONEXANT_MIC_EVENT); + snd_hda_jack_detect_enable(codec, + cfg->inputs[spec->auto_mic_ext].pin, + CONEXANT_MIC_EVENT); } if (spec->auto_mic_dock >= 0) { - snd_hda_codec_write(codec, - cfg->inputs[spec->auto_mic_dock].pin, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | CONEXANT_MIC_EVENT); + snd_hda_jack_detect_enable(codec, + cfg->inputs[spec->auto_mic_dock].pin, + CONEXANT_MIC_EVENT); } cx_auto_automic(codec); } else { @@ -4097,6 +4055,7 @@ cx_auto_init_output(codec); cx_auto_init_input(codec); cx_auto_init_digital(codec); + snd_hda_jack_report_sync(codec); return 0; } @@ -4125,7 +4084,8 @@ err = snd_hda_ctl_add(codec, nid, kctl); if (err < 0) return err; - if (!(query_amp_caps(codec, nid, hda_dir) & AC_AMPCAP_MUTE)) + if (!(query_amp_caps(codec, nid, hda_dir) & + (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE))) break; } return 0; @@ -4326,6 +4286,7 @@ static int cx_auto_build_controls(struct hda_codec *codec) { + struct conexant_spec *spec = codec->spec; int err; err = cx_auto_build_output_controls(codec); @@ -4334,7 +4295,13 @@ err = cx_auto_build_input_controls(codec); if (err < 0) return err; - return conexant_build_controls(codec); + err = conexant_build_controls(codec); + if (err < 0) + return err; + err = snd_hda_jack_add_kctls(codec, &spec->autocfg); + if (err < 0) + return err; + return 0; } static int cx_auto_search_adcs(struct hda_codec *codec) @@ -4400,8 +4367,10 @@ enum { CXT_PINCFG_LENOVO_X200, + CXT_PINCFG_LENOVO_TP410, }; +/* ThinkPad X200 & co with cxt5051 */ static const struct cxt_pincfg cxt_pincfg_lenovo_x200[] = { { 0x16, 0x042140ff }, /* HP (seq# overridden) */ { 0x17, 0x21a11000 }, /* dock-mic */ @@ -4409,15 +4378,49 @@ {} }; +/* ThinkPad 410/420/510/520, X201 & co with cxt5066 */ +static const struct cxt_pincfg cxt_pincfg_lenovo_tp410[] = { + { 0x19, 0x042110ff }, /* HP (seq# overridden) */ + { 0x1a, 0x21a190f0 }, /* dock-mic */ + { 0x1c, 0x212140ff }, /* dock-HP */ + {} +}; + static const struct cxt_pincfg *cxt_pincfg_tbl[] = { [CXT_PINCFG_LENOVO_X200] = cxt_pincfg_lenovo_x200, + [CXT_PINCFG_LENOVO_TP410] = cxt_pincfg_lenovo_tp410, }; -static const struct snd_pci_quirk cxt_fixups[] = { +static const struct snd_pci_quirk cxt5051_fixups[] = { SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo X200", CXT_PINCFG_LENOVO_X200), {} }; +static const struct snd_pci_quirk cxt5066_fixups[] = { + SND_PCI_QUIRK(0x17aa, 0x20f2, "Lenovo T400", CXT_PINCFG_LENOVO_TP410), + SND_PCI_QUIRK(0x17aa, 0x215e, "Lenovo T410", CXT_PINCFG_LENOVO_TP410), + SND_PCI_QUIRK(0x17aa, 0x215f, "Lenovo T510", CXT_PINCFG_LENOVO_TP410), + SND_PCI_QUIRK(0x17aa, 0x21ce, "Lenovo T420", CXT_PINCFG_LENOVO_TP410), + SND_PCI_QUIRK(0x17aa, 0x21cf, "Lenovo T520", CXT_PINCFG_LENOVO_TP410), + {} +}; + +/* add "fake" mute amp-caps to DACs on cx5051 so that mixer mute switches + * can be created (bko#42825) + */ +static void add_cx5051_fake_mutes(struct hda_codec *codec) +{ + static hda_nid_t out_nids[] = { + 0x10, 0x11, 0 + }; + hda_nid_t *p; + + for (p = out_nids; *p; p++) + snd_hda_override_amp_caps(codec, *p, HDA_OUTPUT, + AC_AMPCAP_MIN_MUTE | + query_amp_caps(codec, *p, HDA_OUTPUT)); +} + static int patch_conexant_auto(struct hda_codec *codec) { struct conexant_spec *spec; @@ -4436,10 +4439,15 @@ case 0x14f15045: spec->single_adc_amp = 1; break; + case 0x14f15051: + add_cx5051_fake_mutes(codec); + apply_pin_fixup(codec, cxt5051_fixups, cxt_pincfg_tbl); + break; + default: + apply_pin_fixup(codec, cxt5066_fixups, cxt_pincfg_tbl); + break; } - apply_pin_fixup(codec, cxt_fixups, cxt_pincfg_tbl); - err = cx_auto_search_adcs(codec); if (err < 0) return err; --- linux-3.2.0.orig/sound/pci/hda/patch_ca0110.c +++ linux-3.2.0/sound/pci/hda/patch_ca0110.c @@ -41,7 +41,7 @@ hda_nid_t dig_out; hda_nid_t dig_in; unsigned int num_inputs; - const char *input_labels[AUTO_PIN_LAST]; + char input_labels[AUTO_PIN_LAST][32]; struct hda_pcm pcm_rec[2]; /* PCM information */ }; @@ -476,7 +476,9 @@ if (j >= cfg->num_inputs) continue; spec->input_pins[n] = pin; - spec->input_labels[n] = hda_get_input_pin_label(codec, pin, 1); + snd_hda_get_pin_label(codec, pin, cfg, + spec->input_labels[n], + sizeof(spec->input_labels[n]), NULL); spec->adcs[n] = nid; n++; } --- linux-3.2.0.orig/sound/pci/hda/Kconfig +++ linux-3.2.0/sound/pci/hda/Kconfig @@ -2,6 +2,7 @@ tristate "Intel HD Audio" select SND_PCM select SND_VMASTER + select SND_KCTL_JACK help Say Y here to include support for Intel "High Definition Audio" (Azalia) and its compatible devices. --- linux-3.2.0.orig/sound/pci/hda/hda_codec.h +++ linux-3.2.0/sound/pci/hda/hda_codec.h @@ -298,6 +298,9 @@ #define AC_AMPCAP_MUTE (1<<31) /* mute capable */ #define AC_AMPCAP_MUTE_SHIFT 31 +/* driver-specific amp-caps: using bits 24-30 */ +#define AC_AMPCAP_MIN_MUTE (1 << 30) /* min-volume = mute */ + /* Connection list */ #define AC_CLIST_LENGTH (0x7f<<0) #define AC_CLIST_LONG (1<<7) @@ -869,6 +872,9 @@ void (*proc_widget_hook)(struct snd_info_buffer *buffer, struct hda_codec *codec, hda_nid_t nid); + /* jack detection */ + struct snd_array jacktbl; + #ifdef CONFIG_SND_HDA_INPUT_JACK /* jack detection */ struct snd_array jacks; --- linux-3.2.0.orig/sound/pci/hda/patch_via.c +++ linux-3.2.0/sound/pci/hda/patch_via.c @@ -54,6 +54,7 @@ #include #include "hda_codec.h" #include "hda_local.h" +#include "hda_jack.h" /* Pin Widget NID */ #define VT1708_HP_PIN_NID 0x20 @@ -198,6 +199,9 @@ unsigned int no_pin_power_ctl; enum VIA_HDA_CODEC codec_type; + /* analog low-power control */ + bool alc_mode; + /* smart51 setup */ unsigned int smart51_nums; hda_nid_t smart51_pins[2]; @@ -662,6 +666,9 @@ /* init input-src */ for (i = 0; i < spec->num_adc_nids; i++) { int adc_idx = spec->inputs[spec->cur_mux[i]].adc_idx; + /* secondary ADCs must have the unique MUX */ + if (i > 0 && !spec->mux_nids[i]) + break; if (spec->mux_nids[adc_idx]) { int mux_idx = spec->inputs[spec->cur_mux[i]].mux_idx; snd_hda_codec_write(codec, spec->mux_nids[adc_idx], 0, @@ -748,6 +755,7 @@ return 0; spec->no_pin_power_ctl = val; set_widgets_power_state(codec); + analog_low_current_mode(codec); return 1; } @@ -1035,13 +1043,19 @@ } /* enter/exit analog low-current mode */ -static void analog_low_current_mode(struct hda_codec *codec) +static void __analog_low_current_mode(struct hda_codec *codec, bool force) { struct via_spec *spec = codec->spec; bool enable; unsigned int verb, parm; - enable = is_aa_path_mute(codec) && (spec->opened_streams != 0); + if (spec->no_pin_power_ctl) + enable = false; + else + enable = is_aa_path_mute(codec) && !spec->opened_streams; + if (enable == spec->alc_mode && !force) + return; + spec->alc_mode = enable; /* decide low current mode's verb & parameter */ switch (spec->codec_type) { @@ -1073,6 +1087,11 @@ snd_hda_codec_write(codec, codec->afg, 0, verb, parm); } +static void analog_low_current_mode(struct hda_codec *codec) +{ + return __analog_low_current_mode(codec, false); +} + /* * generic initialization of ADC, input mixers and output mixers */ @@ -1445,6 +1464,7 @@ struct snd_kcontrol *kctl; int err, i; + spec->no_pin_power_ctl = 1; if (spec->set_widgets_power_state) if (!via_clone_control(spec, &via_pin_power_ctl_enum)) return -ENOMEM; @@ -1498,11 +1518,12 @@ return err; } - /* init power states */ - set_widgets_power_state(codec); - analog_low_current_mode(codec); - via_free_kctls(codec); /* no longer needed */ + + err = snd_hda_jack_add_kctls(codec, &spec->autocfg); + if (err < 0) + return err; + return 0; } @@ -1714,6 +1735,7 @@ unsigned int res) { res >>= 26; + res = snd_hda_jack_get_action(codec, res); if (res & VIA_JACK_EVENT) set_widgets_power_state(codec); @@ -1724,6 +1746,7 @@ via_hp_automute(codec); else if (res == VIA_GPIO_EVENT) via_gpio_control(codec); + snd_hda_jack_report_sync(codec); } #ifdef CONFIG_PM @@ -2200,7 +2223,10 @@ { struct via_spec *spec = codec->spec; - if (!spec->aa_mix_nid || !spec->out_mix_path.depth) + if (!spec->aa_mix_nid) + return 0; /* no loopback switching available */ + if (!(spec->out_mix_path.depth || spec->hp_mix_path.depth || + spec->speaker_path.depth)) return 0; /* no loopback switching available */ if (!via_clone_control(spec, &via_aamix_ctl_enum)) return -ENOMEM; @@ -2736,9 +2762,8 @@ int i; if (cfg->hp_pins[0] && is_jack_detectable(codec, cfg->hp_pins[0])) - snd_hda_codec_write(codec, cfg->hp_pins[0], 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT); + snd_hda_jack_detect_enable(codec, cfg->hp_pins[0], + VIA_HP_EVENT | VIA_JACK_EVENT); if (cfg->speaker_pins[0]) ev = VIA_LINE_EVENT; @@ -2747,16 +2772,14 @@ for (i = 0; i < cfg->line_outs; i++) { if (cfg->line_out_pins[i] && is_jack_detectable(codec, cfg->line_out_pins[i])) - snd_hda_codec_write(codec, cfg->line_out_pins[i], 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | ev | VIA_JACK_EVENT); + snd_hda_jack_detect_enable(codec, cfg->line_out_pins[i], + ev | VIA_JACK_EVENT); } for (i = 0; i < cfg->num_inputs; i++) { if (is_jack_detectable(codec, cfg->inputs[i].pin)) - snd_hda_codec_write(codec, cfg->inputs[i].pin, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | VIA_JACK_EVENT); + snd_hda_jack_detect_enable(codec, cfg->inputs[i].pin, + VIA_JACK_EVENT); } } @@ -2768,6 +2791,10 @@ for (i = 0; i < spec->num_iverbs; i++) snd_hda_sequence_write(codec, spec->init_verbs[i]); + /* init power states */ + set_widgets_power_state(codec); + __analog_low_current_mode(codec, true); + via_auto_init_multi_out(codec); via_auto_init_hp_out(codec); via_auto_init_speaker_out(codec); @@ -2779,6 +2806,7 @@ via_hp_automute(codec); vt1708_update_hp_work(spec); + snd_hda_jack_report_sync(codec); return 0; } @@ -2789,6 +2817,7 @@ vt1708_hp_work.work); if (spec->codec_type != VT1708) return; + snd_hda_jack_set_dirty_all(spec->codec); /* if jack state toggled */ if (spec->vt1708_hp_present != snd_hda_jack_detect(spec->codec, spec->autocfg.hp_pins[0])) { --- linux-3.2.0.orig/sound/pci/hda/alc882_quirks.c +++ linux-3.2.0/sound/pci/hda/alc882_quirks.c @@ -2773,6 +2773,7 @@ alc889A_mb31_automute(codec); } + static const hda_nid_t alc883_slave_dig_outs[] = { ALC1200_DIGOUT_NID, 0, }; @@ -2781,6 +2782,11 @@ ALC883_DIGOUT_NID, 0, }; +static void alc882_unsol_event(struct hda_codec *codec, unsigned int res) +{ + alc_exec_unsol_event(codec, res >> 26); +} + /* * configuration and preset */ @@ -2895,7 +2901,6 @@ SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD), SND_PCI_QUIRK(0x10f1, 0x2350, "TYAN-S2350", ALC888_6ST_DELL), SND_PCI_QUIRK(0x108e, 0x534d, NULL, ALC883_3ST_6ch), - SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte P35 DS3R", ALC882_6ST_DIG), SND_PCI_QUIRK(0x1462, 0x0349, "MSI", ALC883_TARGA_2ch_DIG), SND_PCI_QUIRK(0x1462, 0x040d, "MSI", ALC883_TARGA_2ch_DIG), @@ -3046,7 +3051,7 @@ .channel_mode = alc885_mba21_ch_modes, .num_channel_mode = ARRAY_SIZE(alc885_mba21_ch_modes), .input_mux = &alc882_capture_source, - .unsol_event = alc_sku_unsol_event, + .unsol_event = alc882_unsol_event, .setup = alc885_mba21_setup, .init_hook = alc_hp_automute, }, @@ -3062,7 +3067,7 @@ .input_mux = &alc882_capture_source, .dig_out_nid = ALC882_DIGOUT_NID, .dig_in_nid = ALC882_DIGIN_NID, - .unsol_event = alc_sku_unsol_event, + .unsol_event = alc882_unsol_event, .setup = alc885_mbp3_setup, .init_hook = alc_hp_automute, }, @@ -3077,7 +3082,7 @@ .input_mux = &mb5_capture_source, .dig_out_nid = ALC882_DIGOUT_NID, .dig_in_nid = ALC882_DIGIN_NID, - .unsol_event = alc_sku_unsol_event, + .unsol_event = alc882_unsol_event, .setup = alc885_mb5_setup, .init_hook = alc_hp_automute, }, @@ -3092,7 +3097,7 @@ .input_mux = &macmini3_capture_source, .dig_out_nid = ALC882_DIGOUT_NID, .dig_in_nid = ALC882_DIGIN_NID, - .unsol_event = alc_sku_unsol_event, + .unsol_event = alc882_unsol_event, .setup = alc885_macmini3_setup, .init_hook = alc_hp_automute, }, @@ -3133,7 +3138,7 @@ .input_mux = &alc889A_imac91_capture_source, .dig_out_nid = ALC882_DIGOUT_NID, .dig_in_nid = ALC882_DIGIN_NID, - .unsol_event = alc_sku_unsol_event, + .unsol_event = alc882_unsol_event, .setup = alc885_imac91_setup, .init_hook = alc_hp_automute, }, --- linux-3.2.0.orig/sound/pci/hda/hda_proc.c +++ linux-3.2.0/sound/pci/hda/hda_proc.c @@ -54,6 +54,8 @@ [AC_WID_BEEP] = "Beep Generator Widget", [AC_WID_VENDOR] = "Vendor Defined Widget", }; + if (wid_value == -1) + return "UNKNOWN Widget"; wid_value &= 0xf; if (names[wid_value]) return names[wid_value]; --- linux-3.2.0.orig/sound/pci/hda/hda_eld.c +++ linux-3.2.0/sound/pci/hda/hda_eld.c @@ -385,8 +385,8 @@ static void hdmi_print_pcm_rates(int pcm, char *buf, int buflen) { static unsigned int alsa_rates[] = { - 5512, 8000, 11025, 16000, 22050, 32000, 44100, 48000, 88200, - 96000, 176400, 192000, 384000 + 5512, 8000, 11025, 16000, 22050, 32000, 44100, 48000, 64000, + 88200, 96000, 176400, 192000, 384000 }; int i, j; --- linux-3.2.0.orig/sound/pci/hda/patch_realtek.c +++ linux-3.2.0/sound/pci/hda/patch_realtek.c @@ -33,6 +33,7 @@ #include "hda_codec.h" #include "hda_local.h" #include "hda_beep.h" +#include "hda_jack.h" /* unsol event tags */ #define ALC_FRONT_EVENT 0x01 @@ -79,6 +80,8 @@ ALC_AUTOMUTE_MIXER, /* mute/unmute mixer widget AMP */ }; +#define MAX_VOL_NIDS 0x40 + struct alc_spec { /* codec parameterization */ const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */ @@ -117,8 +120,8 @@ const hda_nid_t *capsrc_nids; hda_nid_t dig_in_nid; /* digital-in NID; optional */ hda_nid_t mixer_nid; /* analog-mixer NID */ - DECLARE_BITMAP(vol_ctls, 0x20 << 1); - DECLARE_BITMAP(sw_ctls, 0x20 << 1); + DECLARE_BITMAP(vol_ctls, MAX_VOL_NIDS << 1); + DECLARE_BITMAP(sw_ctls, MAX_VOL_NIDS << 1); /* capture setup for dynamic dual-adc switch */ hda_nid_t cur_adc; @@ -176,6 +179,7 @@ unsigned int detect_lo:1; /* Line-out detection enabled */ unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */ unsigned int automute_lo_possible:1; /* there are line outs and HP */ + unsigned int keep_vref_in_automute:1; /* Don't clear VREF in automute */ /* other flags */ unsigned int no_analog :1; /* digital I/O only */ @@ -450,46 +454,6 @@ } /* - * Jack-reporting via input-jack layer - */ - -/* initialization of jacks; currently checks only a few known pins */ -static int alc_init_jacks(struct hda_codec *codec) -{ -#ifdef CONFIG_SND_HDA_INPUT_JACK - struct alc_spec *spec = codec->spec; - int err; - unsigned int hp_nid = spec->autocfg.hp_pins[0]; - unsigned int mic_nid = spec->ext_mic_pin; - unsigned int dock_nid = spec->dock_mic_pin; - - if (hp_nid) { - err = snd_hda_input_jack_add(codec, hp_nid, - SND_JACK_HEADPHONE, NULL); - if (err < 0) - return err; - snd_hda_input_jack_report(codec, hp_nid); - } - - if (mic_nid) { - err = snd_hda_input_jack_add(codec, mic_nid, - SND_JACK_MICROPHONE, NULL); - if (err < 0) - return err; - snd_hda_input_jack_report(codec, mic_nid); - } - if (dock_nid) { - err = snd_hda_input_jack_add(codec, dock_nid, - SND_JACK_MICROPHONE, NULL); - if (err < 0) - return err; - snd_hda_input_jack_report(codec, dock_nid); - } -#endif /* CONFIG_SND_HDA_INPUT_JACK */ - return 0; -} - -/* * Jack detections for HP auto-mute and mic-switch */ @@ -502,7 +466,6 @@ hda_nid_t nid = pins[i]; if (!nid) break; - snd_hda_input_jack_report(codec, nid); present |= snd_hda_jack_detect(codec, nid); } return present; @@ -519,13 +482,24 @@ for (i = 0; i < num_pins; i++) { hda_nid_t nid = pins[i]; + unsigned int val; if (!nid) break; switch (spec->automute_mode) { case ALC_AUTOMUTE_PIN: + /* don't reset VREF value in case it's controlling + * the amp (see alc861_fixup_asus_amp_vref_0f()) + */ + if (spec->keep_vref_in_automute) { + val = snd_hda_codec_read(codec, nid, 0, + AC_VERB_GET_PIN_WIDGET_CONTROL, 0); + val &= ~PIN_HP; + } else + val = 0; + val |= pin_bits; snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, - pin_bits); + val); break; case ALC_AUTOMUTE_AMP: snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0, @@ -641,20 +615,12 @@ alc_mux_select(codec, 0, spec->dock_mic_idx, false); else alc_mux_select(codec, 0, spec->int_mic_idx, false); - - snd_hda_input_jack_report(codec, pins[spec->ext_mic_idx]); - if (spec->dock_mic_idx >= 0) - snd_hda_input_jack_report(codec, pins[spec->dock_mic_idx]); } -/* unsolicited event for HP jack sensing */ -static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res) +/* handle the specified unsol action (ALC_XXX_EVENT) */ +static void alc_exec_unsol_event(struct hda_codec *codec, int action) { - if (codec->vendor_id == 0x10ec0880) - res >>= 28; - else - res >>= 26; - switch (res) { + switch (action) { case ALC_HP_EVENT: alc_hp_automute(codec); break; @@ -665,6 +631,19 @@ alc_mic_automute(codec); break; } + snd_hda_jack_report_sync(codec); +} + +/* unsolicited event for HP jack sensing */ +static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res) +{ + struct alc_spec *spec = codec->spec; + if (codec->vendor_id == 0x10ec0880) + res >>= 28; + else + res >>= 26; + res = snd_hda_jack_get_action(codec, res); + alc_exec_unsol_event(codec, res); } /* call init functions of standard auto-mute helpers */ @@ -954,9 +933,7 @@ continue; snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n", nid); - snd_hda_codec_write_cache(codec, nid, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | ALC_HP_EVENT); + snd_hda_jack_detect_enable(codec, nid, ALC_HP_EVENT); spec->detect_hp = 1; } @@ -968,9 +945,8 @@ continue; snd_printdd("realtek: Enable Line-Out " "auto-muting on NID 0x%x\n", nid); - snd_hda_codec_write_cache(codec, nid, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | ALC_FRONT_EVENT); + snd_hda_jack_detect_enable(codec, nid, + ALC_FRONT_EVENT); spec->detect_lo = 1; } spec->automute_lo_possible = spec->detect_hp; @@ -1109,13 +1085,10 @@ return false; /* no corresponding imux */ } - snd_hda_codec_write_cache(codec, spec->ext_mic_pin, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | ALC_MIC_EVENT); + snd_hda_jack_detect_enable(codec, spec->ext_mic_pin, ALC_MIC_EVENT); if (spec->dock_mic_pin) - snd_hda_codec_write_cache(codec, spec->dock_mic_pin, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | ALC_MIC_EVENT); + snd_hda_jack_detect_enable(codec, spec->dock_mic_pin, + ALC_MIC_EVENT); spec->auto_mic_valid_imux = 1; spec->auto_mic = 1; @@ -1894,7 +1867,7 @@ }; #endif -static int alc_build_controls(struct hda_codec *codec) +static int __alc_build_controls(struct hda_codec *codec) { struct alc_spec *spec = codec->spec; struct snd_kcontrol *kctl = NULL; @@ -2043,18 +2016,31 @@ return 0; } +static int alc_build_controls(struct hda_codec *codec) +{ + struct alc_spec *spec = codec->spec; + int err = __alc_build_controls(codec); + if (err < 0) + return err; + return snd_hda_jack_add_kctls(codec, &spec->autocfg); +} + /* * Common callbacks */ static void alc_init_special_input_src(struct hda_codec *codec); +static int alc269_fill_coef(struct hda_codec *codec); static int alc_init(struct hda_codec *codec) { struct alc_spec *spec = codec->spec; unsigned int i; + if (codec->vendor_id == 0x10ec0269) + alc269_fill_coef(codec); + alc_fix_pll(codec); alc_auto_init_amp(codec, spec->init_amp); @@ -2067,6 +2053,8 @@ alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT); + snd_hda_jack_report_sync(codec); + hda_call_check_power_status(codec, 0x01); return 0; } @@ -2450,7 +2438,6 @@ return; alc_shutup(codec); - snd_hda_input_jack_free(codec); alc_free_kctls(codec); alc_free_bind_ctls(codec); kfree(spec); @@ -2950,6 +2937,8 @@ static int alc_auto_fill_multi_ios(struct hda_codec *codec, unsigned int location); +static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec, + hda_nid_t pin, hda_nid_t dac); /* fill in the dac_nids table from the parsed pin configuration */ static int alc_auto_fill_dac_nids(struct hda_codec *codec) @@ -3050,13 +3039,21 @@ } } + if (cfg->line_out_pins[0]) + spec->vmaster_nid = + alc_look_for_out_vol_nid(codec, cfg->line_out_pins[0], + spec->multiout.dac_nids[0]); + return 0; } static inline unsigned int get_ctl_pos(unsigned int data) { hda_nid_t nid = get_amp_nid_(data); - unsigned int dir = get_amp_direction_(data); + unsigned int dir; + if (snd_BUG_ON(nid >= MAX_VOL_NIDS)) + return 0; + dir = get_amp_direction_(data); return (nid << 1) | dir; } @@ -3678,7 +3675,7 @@ else nums = spec->num_adc_nids; for (c = 0; c < nums; c++) - alc_mux_select(codec, 0, spec->cur_mux[c], true); + alc_mux_select(codec, c, spec->cur_mux[c], true); } /* add mic boosts if needed */ @@ -4010,8 +4007,10 @@ #endif } - if (board_config != ALC_MODEL_AUTO) + if (board_config != ALC_MODEL_AUTO) { + spec->vmaster_nid = 0x0c; setup_preset(codec, &alc880_presets[board_config]); + } if (!spec->no_analog && !spec->adc_nids) { alc_auto_fill_adc_caps(codec); @@ -4029,11 +4028,11 @@ set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); } - spec->vmaster_nid = 0x0c; - codec->patch_ops = alc_patch_ops; if (board_config == ALC_MODEL_AUTO) spec->init_hook = alc_auto_init_std; + else + codec->patch_ops.build_controls = __alc_build_controls; #ifdef CONFIG_SND_HDA_POWER_SAVE if (!spec->loopback.amplist) spec->loopback.amplist = alc880_loopbacks; @@ -4137,8 +4136,10 @@ #endif } - if (board_config != ALC_MODEL_AUTO) + if (board_config != ALC_MODEL_AUTO) { setup_preset(codec, &alc260_presets[board_config]); + spec->vmaster_nid = 0x08; + } if (!spec->no_analog && !spec->adc_nids) { alc_auto_fill_adc_caps(codec); @@ -4158,11 +4159,11 @@ alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); - spec->vmaster_nid = 0x08; - codec->patch_ops = alc_patch_ops; if (board_config == ALC_MODEL_AUTO) spec->init_hook = alc_auto_init_std; + else + codec->patch_ops.build_controls = __alc_build_controls; spec->shutup = alc_eapd_shutup; #ifdef CONFIG_SND_HDA_POWER_SAVE if (!spec->loopback.amplist) @@ -4201,8 +4202,34 @@ PINFIX_PB_M5210, PINFIX_ACER_ASPIRE_7736, PINFIX_ASUS_W90V, + ALC889_FIXUP_DAC_ROUTE, }; +/* Fix the connection of some pins for ALC889: + * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't + * work correctly (bko#42740) + */ +static void alc889_fixup_dac_route(struct hda_codec *codec, + const struct alc_fixup *fix, int action) +{ + if (action == ALC_FIXUP_ACT_PRE_PROBE) { + /* fake the connections during parsing the tree */ + hda_nid_t conn1[2] = { 0x0c, 0x0d }; + hda_nid_t conn2[2] = { 0x0e, 0x0f }; + snd_hda_override_conn_list(codec, 0x14, 2, conn1); + snd_hda_override_conn_list(codec, 0x15, 2, conn1); + snd_hda_override_conn_list(codec, 0x18, 2, conn2); + snd_hda_override_conn_list(codec, 0x1a, 2, conn2); + } else if (action == ALC_FIXUP_ACT_PROBE) { + /* restore the connections */ + hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 }; + snd_hda_override_conn_list(codec, 0x14, 5, conn); + snd_hda_override_conn_list(codec, 0x15, 5, conn); + snd_hda_override_conn_list(codec, 0x18, 5, conn); + snd_hda_override_conn_list(codec, 0x1a, 5, conn); + } +} + static const struct alc_fixup alc882_fixups[] = { [PINFIX_ABIT_AW9D_MAX] = { .type = ALC_FIXUP_PINS, @@ -4239,10 +4266,15 @@ { } } }, + [ALC889_FIXUP_DAC_ROUTE] = { + .type = ALC_FIXUP_FUNC, + .v.func = alc889_fixup_dac_route, + }, }; static const struct snd_pci_quirk alc882_fixup_tbl[] = { SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", PINFIX_PB_M5210), + SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE), SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", PINFIX_ASUS_W90V), SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", PINFIX_LENOVO_Y530), SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX), @@ -4329,8 +4361,10 @@ #endif } - if (board_config != ALC_MODEL_AUTO) + if (board_config != ALC_MODEL_AUTO) { setup_preset(codec, &alc882_presets[board_config]); + spec->vmaster_nid = 0x0c; + } if (!spec->no_analog && !spec->adc_nids) { alc_auto_fill_adc_caps(codec); @@ -4350,13 +4384,12 @@ alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); - spec->vmaster_nid = 0x0c; - codec->patch_ops = alc_patch_ops; if (board_config == ALC_MODEL_AUTO) spec->init_hook = alc_auto_init_std; + else + codec->patch_ops.build_controls = __alc_build_controls; - alc_init_jacks(codec); #ifdef CONFIG_SND_HDA_POWER_SAVE if (!spec->loopback.amplist) spec->loopback.amplist = alc882_loopbacks; @@ -4483,8 +4516,10 @@ #endif } - if (board_config != ALC_MODEL_AUTO) + if (board_config != ALC_MODEL_AUTO) { setup_preset(codec, &alc262_presets[board_config]); + spec->vmaster_nid = 0x0c; + } if (!spec->no_analog && !spec->adc_nids) { alc_auto_fill_adc_caps(codec); @@ -4504,14 +4539,11 @@ alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); - spec->vmaster_nid = 0x0c; - codec->patch_ops = alc_patch_ops; if (board_config == ALC_MODEL_AUTO) spec->init_hook = alc_auto_init_std; spec->shutup = alc_eapd_shutup; - alc_init_jacks(codec); #ifdef CONFIG_SND_HDA_POWER_SAVE if (!spec->loopback.amplist) spec->loopback.amplist = alc262_loopbacks; @@ -4618,14 +4650,10 @@ if (!spec->no_analog && !spec->cap_mixer) set_capture_mixer(codec); - spec->vmaster_nid = 0x02; - codec->patch_ops = alc_patch_ops; spec->init_hook = alc_auto_init_std; spec->shutup = alc_eapd_shutup; - alc_init_jacks(codec); - return 0; error: @@ -4980,6 +5008,7 @@ }; static const struct snd_pci_quirk alc269_fixup_tbl[] = { + SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_DMIC), SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW), SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC), SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC), @@ -5011,7 +5040,6 @@ SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A", ALC269_FIXUP_AMIC), SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC), - SND_PCI_QUIRK(0x1043, 0x1113, "ASUS N63Jn", ALC269_FIXUP_AMIC), SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC), SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC), SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC), @@ -5063,8 +5091,12 @@ static int alc269_fill_coef(struct hda_codec *codec) { + struct alc_spec *spec = codec->spec; int val; + if (spec->codec_variant != ALC269_TYPE_ALC269VB) + return 0; + if ((alc_get_coef0(codec) & 0x00ff) < 0x015) { alc_write_coef_idx(codec, 0xf, 0x960b); alc_write_coef_idx(codec, 0xe, 0x8817); @@ -5174,8 +5206,6 @@ alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); - spec->vmaster_nid = 0x02; - codec->patch_ops = alc_patch_ops; #ifdef CONFIG_PM codec->patch_ops.resume = alc269_resume; @@ -5183,7 +5213,6 @@ spec->init_hook = alc_auto_init_std; spec->shutup = alc269_shutup; - alc_init_jacks(codec); #ifdef CONFIG_SND_HDA_POWER_SAVE if (!spec->loopback.amplist) spec->loopback.amplist = alc269_loopbacks; @@ -5223,8 +5252,28 @@ /* Pin config fixes */ enum { PINFIX_FSC_AMILO_PI1505, + PINFIX_ASUS_A6RP, }; +/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */ +static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec, + const struct alc_fixup *fix, int action) +{ + struct alc_spec *spec = codec->spec; + unsigned int val; + + if (action != ALC_FIXUP_ACT_INIT) + return; + val = snd_hda_codec_read(codec, 0x0f, 0, + AC_VERB_GET_PIN_WIDGET_CONTROL, 0); + if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN))) + val |= AC_PINCTL_IN_EN; + val |= AC_PINCTL_VREF_50; + snd_hda_codec_write(codec, 0x0f, 0, + AC_VERB_SET_PIN_WIDGET_CONTROL, val); + spec->keep_vref_in_automute = 1; +} + static const struct alc_fixup alc861_fixups[] = { [PINFIX_FSC_AMILO_PI1505] = { .type = ALC_FIXUP_PINS, @@ -5234,9 +5283,15 @@ { } } }, + [PINFIX_ASUS_A6RP] = { + .type = ALC_FIXUP_FUNC, + .v.func = alc861_fixup_asus_amp_vref_0f, + }, }; static const struct snd_pci_quirk alc861_fixup_tbl[] = { + SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", PINFIX_ASUS_A6RP), + SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", PINFIX_ASUS_A6RP), SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505), {} }; @@ -5280,8 +5335,6 @@ set_beep_amp(spec, 0x23, 0, HDA_OUTPUT); } - spec->vmaster_nid = 0x03; - alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); codec->patch_ops = alc_patch_ops; @@ -5406,8 +5459,6 @@ set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT); } - spec->vmaster_nid = 0x02; - alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); codec->patch_ops = alc_patch_ops; @@ -5790,7 +5841,6 @@ break; } } - spec->vmaster_nid = 0x02; alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE); @@ -5798,8 +5848,6 @@ spec->init_hook = alc_auto_init_std; spec->shutup = alc_eapd_shutup; - alc_init_jacks(codec); - #ifdef CONFIG_SND_HDA_POWER_SAVE if (!spec->loopback.amplist) spec->loopback.amplist = alc662_loopbacks; @@ -5846,8 +5894,6 @@ if (!spec->no_analog && !spec->cap_mixer) set_capture_mixer(codec); - spec->vmaster_nid = 0x02; - codec->patch_ops = alc_patch_ops; spec->init_hook = alc_auto_init_std; --- linux-3.2.0.orig/sound/pci/hda/patch_cirrus.c +++ linux-3.2.0/sound/pci/hda/patch_cirrus.c @@ -26,6 +26,7 @@ #include #include "hda_codec.h" #include "hda_local.h" +#include "hda_jack.h" #include /* @@ -137,7 +138,7 @@ */ #define CS4210_DAC_NID 0x02 #define CS4210_ADC_NID 0x03 -#define CS421X_VENDOR_NID 0x0B +#define CS4210_VENDOR_NID 0x0B #define CS421X_DMIC_PIN_NID 0x09 /* Port E */ #define CS421X_SPDIF_PIN_NID 0x0A /* Port H */ @@ -148,6 +149,10 @@ #define SPDIF_EVENT 0x04 +/* Cirrus Logic CS4213 is like CS4210 but does not have SPDIF input/output */ +#define CS4213_VENDOR_NID 0x09 + + static inline int cs_vendor_coef_get(struct hda_codec *codec, unsigned int idx) { struct cs_spec *spec = codec->spec; @@ -721,8 +726,9 @@ if (uinfo->value.enumerated.item >= spec->num_inputs) uinfo->value.enumerated.item = spec->num_inputs - 1; idx = spec->input_idx[uinfo->value.enumerated.item]; - strcpy(uinfo->value.enumerated.name, - hda_get_input_pin_label(codec, cfg->inputs[idx].pin, 1)); + snd_hda_get_pin_label(codec, cfg->inputs[idx].pin, cfg, + uinfo->value.enumerated.name, + sizeof(uinfo->value.enumerated.name), NULL); return 0; } @@ -920,16 +926,14 @@ /* mute speakers if spdif or hp jack is plugged in */ for (i = 0; i < cfg->speaker_outs; i++) { + int pin_ctl = hp_present ? 0 : PIN_OUT; + /* detect on spdif is specific to CS4210 */ + if (spdif_present && (spec->vendor_nid == CS4210_VENDOR_NID)) + pin_ctl = 0; + nid = cfg->speaker_pins[i]; snd_hda_codec_write(codec, nid, 0, - AC_VERB_SET_PIN_WIDGET_CONTROL, - hp_present ? 0 : PIN_OUT); - /* detect on spdif is specific to CS421x */ - if (spec->vendor_nid == CS421X_VENDOR_NID) { - snd_hda_codec_write(codec, nid, 0, - AC_VERB_SET_PIN_WIDGET_CONTROL, - spdif_present ? 0 : PIN_OUT); - } + AC_VERB_SET_PIN_WIDGET_CONTROL, pin_ctl); } if (spec->gpio_eapd_hp) { unsigned int gpio = hp_present ? @@ -938,8 +942,8 @@ AC_VERB_SET_GPIO_DATA, gpio); } - /* specific to CS421x */ - if (spec->vendor_nid == CS421X_VENDOR_NID) { + /* specific to CS4210 */ + if (spec->vendor_nid == CS4210_VENDOR_NID) { /* mute HPs if spdif jack (SENSE_B) is present */ for (i = 0; i < cfg->hp_outs; i++) { nid = cfg->hp_pins[i]; @@ -976,19 +980,21 @@ present = snd_hda_jack_detect(codec, nid); /* specific to CS421x, single ADC */ - if (spec->vendor_nid == CS421X_VENDOR_NID) { + if (spec->vendor_nid == CS420X_VENDOR_NID) { + if (present) + change_cur_input(codec, spec->automic_idx, 0); + else + change_cur_input(codec, !spec->automic_idx, 0); + } else { if (present) { - spec->last_input = spec->cur_input; - spec->cur_input = spec->automic_idx; + if (spec->cur_input != spec->automic_idx) { + spec->last_input = spec->cur_input; + spec->cur_input = spec->automic_idx; + } } else { spec->cur_input = spec->last_input; } cs_update_input_select(codec); - } else { - if (present) - change_cur_input(codec, spec->automic_idx, 0); - else - change_cur_input(codec, !spec->automic_idx, 0); } } @@ -1027,9 +1033,7 @@ if (!cfg->speaker_outs) continue; if (get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP) { - snd_hda_codec_write(codec, nid, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | HP_EVENT); + snd_hda_jack_detect_enable(codec, nid, HP_EVENT); spec->hp_detect = 1; } } @@ -1070,19 +1074,10 @@ AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(spec->adc_idx[i])); if (spec->mic_detect && spec->automic_idx == i) - snd_hda_codec_write(codec, pin, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | MIC_EVENT); + snd_hda_jack_detect_enable(codec, pin, MIC_EVENT); } - /* specific to CS421x */ - if (spec->vendor_nid == CS421X_VENDOR_NID) { - if (spec->mic_detect) - cs_automic(codec); - else { - spec->cur_adc = spec->adc_nid[spec->cur_input]; - cs_update_input_select(codec); - } - } else { + /* CS420x has multiple ADC, CS421x has single ADC */ + if (spec->vendor_nid == CS420X_VENDOR_NID) { change_cur_input(codec, spec->cur_input, 1); if (spec->mic_detect) cs_automic(codec); @@ -1096,6 +1091,13 @@ * selected in IDX_SPDIF_CTL. */ cs_vendor_coef_set(codec, IDX_ADC_CFG, coef); + } else { + if (spec->mic_detect) + cs_automic(codec); + else { + spec->cur_adc = spec->adc_nid[spec->cur_input]; + cs_update_input_select(codec); + } } } @@ -1200,11 +1202,14 @@ init_output(codec); init_input(codec); init_digital(codec); + snd_hda_jack_report_sync(codec); + return 0; } static int cs_build_controls(struct hda_codec *codec) { + struct cs_spec *spec = codec->spec; int err; err = build_output(codec); @@ -1219,7 +1224,15 @@ err = build_digital_input(codec); if (err < 0) return err; - return cs_init(codec); + err = cs_init(codec); + if (err < 0) + return err; + + err = snd_hda_jack_add_kctls(codec, &spec->autocfg); + if (err < 0) + return err; + + return 0; } static void cs_free(struct hda_codec *codec) @@ -1232,7 +1245,7 @@ static void cs_unsol_event(struct hda_codec *codec, unsigned int res) { - switch ((res >> 26) & 0x7f) { + switch (snd_hda_jack_get_action(codec, res >> 26)) { case HP_EVENT: cs_automute(codec); break; @@ -1240,6 +1253,7 @@ cs_automic(codec); break; } + snd_hda_jack_report_sync(codec); } static const struct hda_codec_ops cs_patch_ops = { @@ -1557,7 +1571,7 @@ .tlv = { .p = cs421x_speaker_boost_db_scale }, }; -static void cs421x_pinmux_init(struct hda_codec *codec) +static void cs4210_pinmux_init(struct hda_codec *codec) { struct cs_spec *spec = codec->spec; unsigned int def_conf, coef; @@ -1602,10 +1616,7 @@ if (!cfg->speaker_outs) continue; if (get_wcaps(codec, nid) & AC_WCAP_UNSOL_CAP) { - - snd_hda_codec_write(codec, nid, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | SPDIF_EVENT); + snd_hda_jack_detect_enable(codec, nid, SPDIF_EVENT); spec->spdif_detect = 1; } } @@ -1615,10 +1626,11 @@ { struct cs_spec *spec = codec->spec; - snd_hda_sequence_write(codec, cs421x_coef_init_verbs); - snd_hda_sequence_write(codec, cs421x_coef_init_verbs_A1_silicon_fixes); - - cs421x_pinmux_init(codec); + if (spec->vendor_nid == CS4210_VENDOR_NID) { + snd_hda_sequence_write(codec, cs421x_coef_init_verbs); + snd_hda_sequence_write(codec, cs421x_coef_init_verbs_A1_silicon_fixes); + cs4210_pinmux_init(codec); + } if (spec->gpio_mask) { snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_MASK, @@ -1632,6 +1644,7 @@ init_output(codec); init_input(codec); init_cs421x_digital(codec); + snd_hda_jack_report_sync(codec); return 0; } @@ -1771,32 +1784,21 @@ struct auto_pin_cfg *cfg = &spec->autocfg; struct snd_kcontrol *kctl; int err; - char *name = "HP/Speakers"; + char *name = "Master"; fix_volume_caps(codec, dac); - if (!spec->vmaster_sw) { - err = add_vmaster(codec, dac); - if (err < 0) - return err; - } err = add_mute(codec, name, 0, HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT), 0, &kctl); if (err < 0) return err; - err = snd_ctl_add_slave(spec->vmaster_sw, kctl); - if (err < 0) - return err; err = add_volume(codec, name, 0, HDA_COMPOSE_AMP_VAL(dac, 3, 0, HDA_OUTPUT), 0, &kctl); if (err < 0) return err; - err = snd_ctl_add_slave(spec->vmaster_vol, kctl); - if (err < 0) - return err; - if (cfg->speaker_outs) { + if (cfg->speaker_outs && (spec->vendor_nid == CS4210_VENDOR_NID)) { err = snd_hda_ctl_add(codec, 0, snd_ctl_new1(&cs421x_speaker_bost_ctl, codec)); if (err < 0) @@ -1807,6 +1809,7 @@ static int cs421x_build_controls(struct hda_codec *codec) { + struct cs_spec *spec = codec->spec; int err; err = build_cs421x_output(codec); @@ -1818,12 +1821,20 @@ err = build_digital_output(codec); if (err < 0) return err; - return cs421x_init(codec); + err = cs421x_init(codec); + if (err < 0) + return err; + + err = snd_hda_jack_add_kctls(codec, &spec->autocfg); + if (err < 0) + return err; + + return 0; } static void cs421x_unsol_event(struct hda_codec *codec, unsigned int res) { - switch ((res >> 26) & 0x3f) { + switch (snd_hda_jack_get_action(codec, res >> 26)) { case HP_EVENT: case SPDIF_EVENT: cs_automute(codec); @@ -1833,6 +1844,7 @@ cs_automic(codec); break; } + snd_hda_jack_report_sync(codec); } static int parse_cs421x_input(struct hda_codec *codec) @@ -1883,6 +1895,7 @@ */ static int cs421x_suspend(struct hda_codec *codec, pm_message_t state) { + struct cs_spec *spec = codec->spec; unsigned int coef; snd_hda_shutup_pins(codec); @@ -1892,15 +1905,17 @@ snd_hda_codec_write(codec, CS4210_ADC_NID, 0, AC_VERB_SET_POWER_STATE, AC_PWRST_D3); - coef = cs_vendor_coef_get(codec, CS421X_IDX_DEV_CFG); - coef |= 0x0004; /* PDREF */ - cs_vendor_coef_set(codec, CS421X_IDX_DEV_CFG, coef); + if (spec->vendor_nid == CS4210_VENDOR_NID) { + coef = cs_vendor_coef_get(codec, CS421X_IDX_DEV_CFG); + coef |= 0x0004; /* PDREF */ + cs_vendor_coef_set(codec, CS421X_IDX_DEV_CFG, coef); + } return 0; } #endif -static struct hda_codec_ops cs4210_patch_ops = { +static struct hda_codec_ops cs421x_patch_ops = { .build_controls = cs421x_build_controls, .build_pcms = cs_build_pcms, .init = cs421x_init, @@ -1911,7 +1926,7 @@ #endif }; -static int patch_cs421x(struct hda_codec *codec) +static int patch_cs4210(struct hda_codec *codec) { struct cs_spec *spec; int err; @@ -1921,7 +1936,7 @@ return -ENOMEM; codec->spec = spec; - spec->vendor_nid = CS421X_VENDOR_NID; + spec->vendor_nid = CS4210_VENDOR_NID; spec->board_config = snd_hda_check_board_config(codec, CS421X_MODELS, @@ -1949,14 +1964,39 @@ is auto-parsed. If GPIO or SENSE_B is forced, DMIC input is disabled. */ - cs421x_pinmux_init(codec); + cs4210_pinmux_init(codec); err = cs421x_parse_auto_config(codec); if (err < 0) goto error; - codec->patch_ops = cs4210_patch_ops; + codec->patch_ops = cs421x_patch_ops; + + return 0; + + error: + kfree(codec->spec); + codec->spec = NULL; + return err; +} + +static int patch_cs4213(struct hda_codec *codec) +{ + struct cs_spec *spec; + int err; + + spec = kzalloc(sizeof(*spec), GFP_KERNEL); + if (!spec) + return -ENOMEM; + codec->spec = spec; + + spec->vendor_nid = CS4213_VENDOR_NID; + + err = cs421x_parse_auto_config(codec); + if (err < 0) + goto error; + codec->patch_ops = cs421x_patch_ops; return 0; error: @@ -1972,13 +2012,15 @@ static const struct hda_codec_preset snd_hda_preset_cirrus[] = { { .id = 0x10134206, .name = "CS4206", .patch = patch_cs420x }, { .id = 0x10134207, .name = "CS4207", .patch = patch_cs420x }, - { .id = 0x10134210, .name = "CS4210", .patch = patch_cs421x }, + { .id = 0x10134210, .name = "CS4210", .patch = patch_cs4210 }, + { .id = 0x10134213, .name = "CS4213", .patch = patch_cs4213 }, {} /* terminator */ }; MODULE_ALIAS("snd-hda-codec-id:10134206"); MODULE_ALIAS("snd-hda-codec-id:10134207"); MODULE_ALIAS("snd-hda-codec-id:10134210"); +MODULE_ALIAS("snd-hda-codec-id:10134213"); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Cirrus Logic HD-audio codec"); --- linux-3.2.0.orig/sound/pci/hda/alc880_quirks.c +++ linux-3.2.0/sound/pci/hda/alc880_quirks.c @@ -764,16 +764,22 @@ /* Looks like the unsol event is incompatible with the standard * definition. 4bit tag is placed at 28 bit! */ - switch (res >> 28) { + res >>= 28; + switch (res) { case ALC_MIC_EVENT: alc88x_simple_mic_automute(codec); break; default: - alc_sku_unsol_event(codec, res); + alc_exec_unsol_event(codec, res); break; } } +static void alc880_unsol_event(struct hda_codec *codec, unsigned int res) +{ + alc_exec_unsol_event(codec, res >> 28); +} + static void alc880_uniwill_p53_setup(struct hda_codec *codec) { struct alc_spec *spec = codec->spec; @@ -802,10 +808,11 @@ /* Looks like the unsol event is incompatible with the standard * definition. 4bit tag is placed at 28 bit! */ - if ((res >> 28) == ALC_DCVOL_EVENT) + res >>= 28; + if (res == ALC_DCVOL_EVENT) alc880_uniwill_p53_dcvol_automute(codec); else - alc_sku_unsol_event(codec, res); + alc_exec_unsol_event(codec, res); } /* @@ -1841,7 +1848,7 @@ .channel_mode = alc880_lg_ch_modes, .need_dac_fix = 1, .input_mux = &alc880_lg_capture_source, - .unsol_event = alc_sku_unsol_event, + .unsol_event = alc880_unsol_event, .setup = alc880_lg_setup, .init_hook = alc_hp_automute, #ifdef CONFIG_SND_HDA_POWER_SAVE --- linux-3.2.0.orig/sound/pci/hda/Makefile +++ linux-3.2.0/sound/pci/hda/Makefile @@ -1,6 +1,6 @@ snd-hda-intel-objs := hda_intel.o -snd-hda-codec-y := hda_codec.o +snd-hda-codec-y := hda_codec.o hda_jack.o snd-hda-codec-$(CONFIG_SND_HDA_GENERIC) += hda_generic.o snd-hda-codec-$(CONFIG_PROC_FS) += hda_proc.o snd-hda-codec-$(CONFIG_SND_HDA_HWDEP) += hda_hwdep.o --- linux-3.2.0.orig/sound/pci/hda/patch_analog.c +++ linux-3.2.0/sound/pci/hda/patch_analog.c @@ -29,6 +29,7 @@ #include "hda_codec.h" #include "hda_local.h" #include "hda_beep.h" +#include "hda_jack.h" struct ad198x_spec { const struct snd_kcontrol_new *mixers[6]; --- linux-3.2.0.orig/sound/pci/hda/patch_sigmatel.c +++ linux-3.2.0/sound/pci/hda/patch_sigmatel.c @@ -37,6 +37,7 @@ #include "hda_codec.h" #include "hda_local.h" #include "hda_beep.h" +#include "hda_jack.h" enum { STAC_VREF_EVENT = 1, @@ -176,13 +177,6 @@ STAC_9872_MODELS }; -struct sigmatel_event { - hda_nid_t nid; - unsigned char type; - unsigned char tag; - int data; -}; - struct sigmatel_mic_route { hda_nid_t pin; signed char mux_idx; @@ -231,9 +225,6 @@ const hda_nid_t *pwr_nids; const hda_nid_t *dac_list; - /* events */ - struct snd_array events; - /* playback */ struct hda_input_mux *mono_mux; unsigned int cur_mmux; @@ -1094,13 +1085,10 @@ }; static void stac92xx_free_kctls(struct hda_codec *codec); -static int stac92xx_add_jack(struct hda_codec *codec, hda_nid_t nid, int type); static int stac92xx_build_controls(struct hda_codec *codec) { struct sigmatel_spec *spec = codec->spec; - struct auto_pin_cfg *cfg = &spec->autocfg; - hda_nid_t nid; int err; int i; @@ -1186,31 +1174,9 @@ stac92xx_free_kctls(codec); /* no longer needed */ - /* create jack input elements */ - if (spec->hp_detect) { - for (i = 0; i < cfg->hp_outs; i++) { - int type = SND_JACK_HEADPHONE; - nid = cfg->hp_pins[i]; - /* jack detection */ - if (cfg->hp_outs == i) - type |= SND_JACK_LINEOUT; - err = stac92xx_add_jack(codec, nid, type); - if (err < 0) - return err; - } - } - for (i = 0; i < cfg->line_outs; i++) { - err = stac92xx_add_jack(codec, cfg->line_out_pins[i], - SND_JACK_LINEOUT); - if (err < 0) - return err; - } - for (i = 0; i < cfg->num_inputs; i++) { - nid = cfg->inputs[i].pin; - err = stac92xx_add_jack(codec, nid, SND_JACK_MICROPHONE); - if (err < 0) - return err; - } + err = snd_hda_jack_add_kctls(codec, &spec->autocfg); + if (err < 0) + return err; return 0; } @@ -1631,7 +1597,7 @@ SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02bd, "Dell Studio 1557", STAC_DELL_M6_DMIC), SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02fe, - "Dell Studio XPS 1645", STAC_DELL_M6_BOTH), + "Dell Studio XPS 1645", STAC_DELL_M6_DMIC), SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x0413, "Dell Studio 1558", STAC_DELL_M6_DMIC), {} /* terminator */ @@ -2875,7 +2841,8 @@ } if (control) { - strcpy(name, hda_get_input_pin_label(codec, nid, 1)); + snd_hda_get_pin_label(codec, nid, &spec->autocfg, + name, sizeof(name), NULL); return stac92xx_add_control(codec->spec, control, strcat(name, " Jack Mode"), nid); } @@ -3553,7 +3520,7 @@ for (i = 0; i < spec->num_dmics; i++) { hda_nid_t nid; int index, type_idx; - const char *label; + char label[32]; nid = spec->dmic_nids[i]; if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN) @@ -3566,7 +3533,8 @@ if (index < 0) continue; - label = hda_get_input_pin_label(codec, nid, 1); + snd_hda_get_pin_label(codec, nid, &spec->autocfg, + label, sizeof(label), NULL); snd_hda_add_imux_item(dimux, label, index, &type_idx); if (snd_hda_get_bool_hint(codec, "separate_dmux") != 1) snd_hda_add_imux_item(imux, label, index, &type_idx); @@ -4164,65 +4132,18 @@ AC_VERB_SET_GPIO_DATA, gpiostate); /* sync */ } -static int stac92xx_add_jack(struct hda_codec *codec, - hda_nid_t nid, int type) -{ -#ifdef CONFIG_SND_HDA_INPUT_JACK - int def_conf = snd_hda_codec_get_pincfg(codec, nid); - int connectivity = get_defcfg_connect(def_conf); - - if (connectivity && connectivity != AC_JACK_PORT_FIXED) - return 0; - - return snd_hda_input_jack_add(codec, nid, type, NULL); -#else - return 0; -#endif /* CONFIG_SND_HDA_INPUT_JACK */ -} - -static int stac_add_event(struct sigmatel_spec *spec, hda_nid_t nid, +static int stac_add_event(struct hda_codec *codec, hda_nid_t nid, unsigned char type, int data) { - struct sigmatel_event *event; + struct hda_jack_tbl *event; - snd_array_init(&spec->events, sizeof(*event), 32); - event = snd_array_new(&spec->events); + event = snd_hda_jack_tbl_new(codec, nid); if (!event) return -ENOMEM; - event->nid = nid; - event->type = type; - event->tag = spec->events.used; - event->data = data; - - return event->tag; -} - -static struct sigmatel_event *stac_get_event(struct hda_codec *codec, - hda_nid_t nid) -{ - struct sigmatel_spec *spec = codec->spec; - struct sigmatel_event *event = spec->events.list; - int i; - - for (i = 0; i < spec->events.used; i++, event++) { - if (event->nid == nid) - return event; - } - return NULL; -} + event->action = type; + event->private_data = data; -static struct sigmatel_event *stac_get_event_from_tag(struct hda_codec *codec, - unsigned char tag) -{ - struct sigmatel_spec *spec = codec->spec; - struct sigmatel_event *event = spec->events.list; - int i; - - for (i = 0; i < spec->events.used; i++, event++) { - if (event->tag == tag) - return event; - } - return NULL; + return 0; } /* check if given nid is a valid pin and no other events are assigned @@ -4232,34 +4153,29 @@ static int enable_pin_detect(struct hda_codec *codec, hda_nid_t nid, unsigned int type) { - struct sigmatel_event *event; - int tag; + struct hda_jack_tbl *event; if (!is_jack_detectable(codec, nid)) return 0; - event = stac_get_event(codec, nid); - if (event) { - if (event->type != type) - return 0; - tag = event->tag; - } else { - tag = stac_add_event(codec->spec, nid, type, 0); - if (tag < 0) - return 0; - } - snd_hda_codec_write_cache(codec, nid, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | tag); + event = snd_hda_jack_tbl_new(codec, nid); + if (!event) + return -ENOMEM; + if (event->action && event->action != type) + return 0; + event->action = type; + snd_hda_jack_detect_enable(codec, nid, 0); return 1; } -static int is_nid_hp_pin(struct auto_pin_cfg *cfg, hda_nid_t nid) +static int is_nid_out_jack_pin(struct auto_pin_cfg *cfg, hda_nid_t nid) { int i; for (i = 0; i < cfg->hp_outs; i++) if (cfg->hp_pins[i] == nid) return 1; /* nid is a HP-Out */ - + for (i = 0; i < cfg->line_outs; i++) + if (cfg->line_out_pins[i] == nid) + return 1; /* nid is a line-Out */ return 0; /* nid is not a HP-Out */ }; @@ -4326,6 +4242,27 @@ } } +static void stac_issue_unsol_events(struct hda_codec *codec, int num_pins, + const hda_nid_t *pins) +{ + while (num_pins--) + stac_issue_unsol_event(codec, *pins++); +} + +/* fake event to set up pins */ +static void stac_fake_hp_events(struct hda_codec *codec) +{ + struct sigmatel_spec *spec = codec->spec; + + if (spec->autocfg.hp_outs) + stac_issue_unsol_events(codec, spec->autocfg.hp_outs, + spec->autocfg.hp_pins); + if (spec->autocfg.line_outs && + spec->autocfg.line_out_pins[0] != spec->autocfg.hp_pins[0]) + stac_issue_unsol_events(codec, spec->autocfg.line_outs, + spec->autocfg.line_out_pins); +} + static int stac92xx_init(struct hda_codec *codec) { struct sigmatel_spec *spec = codec->spec; @@ -4376,10 +4313,7 @@ stac92xx_auto_set_pinctl(codec, spec->autocfg.line_out_pins[0], AC_PINCTL_OUT_EN); /* fake event to set up pins */ - if (cfg->hp_pins[0]) - stac_issue_unsol_event(codec, cfg->hp_pins[0]); - else if (cfg->line_out_pins[0]) - stac_issue_unsol_event(codec, cfg->line_out_pins[0]); + stac_fake_hp_events(codec); } else { stac92xx_auto_init_multi_out(codec); stac92xx_auto_init_hp_out(codec); @@ -4447,7 +4381,7 @@ continue; } - if (is_nid_hp_pin(cfg, nid)) + if (is_nid_out_jack_pin(cfg, nid)) continue; /* already has an unsol event */ pinctl = snd_hda_codec_read(codec, nid, 0, @@ -4464,9 +4398,9 @@ def_conf = get_defcfg_connect(def_conf); /* skip any ports that don't have jacks since presence * detection is useless */ - if (def_conf != AC_JACK_PORT_COMPLEX) { - if (def_conf != AC_JACK_PORT_NONE) - stac_toggle_power_map(codec, nid, 1); + if (def_conf != AC_JACK_PORT_NONE && + !is_jack_detectable(codec, nid)) { + stac_toggle_power_map(codec, nid, 1); continue; } if (enable_pin_detect(codec, nid, STAC_PWR_EVENT)) { @@ -4477,6 +4411,8 @@ stac_toggle_power_map(codec, nid, 0); } + snd_hda_jack_report_sync(codec); + /* sync mute LED */ if (spec->gpio_led) hda_call_check_power_status(codec, 0x01); @@ -4533,8 +4469,6 @@ return; stac92xx_shutup(codec); - snd_hda_input_jack_free(codec); - snd_array_free(&spec->events); kfree(spec); snd_hda_detach_beep_device(codec); @@ -4699,7 +4633,7 @@ unsigned int val = AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN; if (no_hp_sensing(spec, i)) continue; - if (presence) + if (1 /*presence*/) stac92xx_set_pinctl(codec, cfg->hp_pins[i], val); #if 0 /* FIXME */ /* Resetting the pinctl like below may lead to (a sort of) regressions @@ -4798,26 +4732,13 @@ mic->mux_idx); } -static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid) -{ - struct sigmatel_event *event = stac_get_event(codec, nid); - if (!event) - return; - codec->patch_ops.unsol_event(codec, (unsigned)event->tag << 26); -} - -static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res) +static void handle_unsol_event(struct hda_codec *codec, + struct hda_jack_tbl *event) { struct sigmatel_spec *spec = codec->spec; - struct sigmatel_event *event; - int tag, data; - - tag = (res >> 26) & 0x7f; - event = stac_get_event_from_tag(codec, tag); - if (!event) - return; + int data; - switch (event->type) { + switch (event->action) { case STAC_HP_EVENT: case STAC_LO_EVENT: stac92xx_hp_detect(codec); @@ -4827,7 +4748,7 @@ break; } - switch (event->type) { + switch (event->action) { case STAC_HP_EVENT: case STAC_LO_EVENT: case STAC_MIC_EVENT: @@ -4835,7 +4756,6 @@ case STAC_PWR_EVENT: if (spec->num_pwrs > 0) stac92xx_pin_sense(codec, event->nid); - snd_hda_input_jack_report(codec, event->nid); switch (codec->subsystem_id) { case 0x103c308f: @@ -4860,11 +4780,33 @@ AC_VERB_GET_GPIO_DATA, 0); /* toggle VREF state based on GPIOx status */ snd_hda_codec_write(codec, codec->afg, 0, 0x7e0, - !!(data & (1 << event->data))); + !!(data & (1 << event->private_data))); break; } } +static void stac_issue_unsol_event(struct hda_codec *codec, hda_nid_t nid) +{ + struct hda_jack_tbl *event = snd_hda_jack_tbl_get(codec, nid); + if (!event) + return; + handle_unsol_event(codec, event); +} + +static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res) +{ + struct hda_jack_tbl *event; + int tag; + + tag = (res >> 26) & 0x7f; + event = snd_hda_jack_tbl_get_from_tag(codec, tag); + if (!event) + return; + event->jack_dirty = 1; + handle_unsol_event(codec, event); + snd_hda_jack_report_sync(codec); +} + static int hp_blike_system(u32 subsystem_id); static void set_hp_led_gpio(struct hda_codec *codec) @@ -4932,7 +4874,14 @@ /* BIOS bug: unfilled OEM string */ if (strstr(dev->name, "HP_Mute_LED_P_G")) { set_hp_led_gpio(codec); - spec->gpio_led_polarity = 1; + switch (codec->subsystem_id) { + case 0x103c148a: + spec->gpio_led_polarity = 0; + break; + default: + spec->gpio_led_polarity = 1; + break; + } return 1; } } @@ -5028,19 +4977,11 @@ #ifdef CONFIG_PM static int stac92xx_resume(struct hda_codec *codec) { - struct sigmatel_spec *spec = codec->spec; - stac92xx_init(codec); snd_hda_codec_resume_amp(codec); snd_hda_codec_resume_cache(codec); /* fake event to set up pins again to override cached values */ - if (spec->hp_detect) { - if (spec->autocfg.hp_pins[0]) - stac_issue_unsol_event(codec, spec->autocfg.hp_pins[0]); - else if (spec->autocfg.line_out_pins[0]) - stac_issue_unsol_event(codec, - spec->autocfg.line_out_pins[0]); - } + stac_fake_hp_events(codec); return 0; } @@ -5839,15 +5780,13 @@ switch (spec->board_config) { case STAC_HP_M4: /* Enable VREF power saving on GPIO1 detect */ - err = stac_add_event(spec, codec->afg, + err = stac_add_event(codec, codec->afg, STAC_VREF_EVENT, 0x02); if (err < 0) return err; snd_hda_codec_write_cache(codec, codec->afg, 0, AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x02); - snd_hda_codec_write_cache(codec, codec->afg, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | err); + snd_hda_jack_detect_enable(codec, codec->afg, 0); spec->gpio_mask |= 0x02; break; } @@ -6318,14 +6257,12 @@ snd_hda_codec_set_pincfg(codec, 0x20, 0x1c410030); /* Enable unsol response for GPIO4/Dock HP connection */ - err = stac_add_event(spec, codec->afg, STAC_VREF_EVENT, 0x01); + err = stac_add_event(codec, codec->afg, STAC_VREF_EVENT, 0x01); if (err < 0) return err; snd_hda_codec_write_cache(codec, codec->afg, 0, AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x10); - snd_hda_codec_write_cache(codec, codec->afg, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | err); + snd_hda_jack_detect_enable(codec, codec->afg, 0); spec->gpio_dir = 0x0b; spec->eapd_mask = 0x01; --- linux-3.2.0.orig/sound/pci/hda/alc262_quirks.c +++ linux-3.2.0/sound/pci/hda/alc262_quirks.c @@ -693,8 +693,6 @@ static const struct snd_pci_quirk alc262_cfg_tbl[] = { SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO), SND_PCI_QUIRK(0x1033, 0x8895, "NEC Versa S9100", ALC262_NEC), - SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba dynabook SS RX1", - ALC262_TOSHIBA_RX1), SND_PCI_QUIRK(0x1179, 0xff7b, "Toshiba S06", ALC262_TOSHIBA_S06), SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU), SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FUJITSU), --- linux-3.2.0.orig/sound/pci/hda/patch_hdmi.c +++ linux-3.2.0/sound/pci/hda/patch_hdmi.c @@ -36,6 +36,7 @@ #include #include "hda_codec.h" #include "hda_local.h" +#include "hda_jack.h" static bool static_hdmi_pcm; module_param(static_hdmi_pcm, bool, 0644); @@ -754,10 +755,18 @@ static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res) { struct hdmi_spec *spec = codec->spec; - int pin_nid = res >> AC_UNSOL_RES_TAG_SHIFT; + int tag = res >> AC_UNSOL_RES_TAG_SHIFT; + int pin_nid; int pd = !!(res & AC_UNSOL_RES_PD); int eldv = !!(res & AC_UNSOL_RES_ELDV); int pin_idx; + struct hda_jack_tbl *jack; + + jack = snd_hda_jack_tbl_get_from_tag(codec, tag); + if (!jack) + return; + pin_nid = jack->nid; + jack->jack_dirty = 1; printk(KERN_INFO "HDMI hot plug event: Codec=%d Pin=%d Presence_Detect=%d ELD_Valid=%d\n", @@ -768,6 +777,7 @@ return; hdmi_present_sense(&spec->pins[pin_idx], 1); + snd_hda_jack_report_sync(codec); } static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res) @@ -799,7 +809,7 @@ int tag = res >> AC_UNSOL_RES_TAG_SHIFT; int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT; - if (pin_nid_to_pin_index(spec, tag) < 0) { + if (!snd_hda_jack_tbl_get_from_tag(codec, tag)) { snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag); return; } @@ -996,8 +1006,6 @@ msecs_to_jiffies(300)); } } - - snd_hda_input_jack_report(codec, pin_nid); } static void hdmi_repoll_eld(struct work_struct *work) @@ -1226,21 +1234,15 @@ static int generic_hdmi_build_jack(struct hda_codec *codec, int pin_idx) { - int err; - char hdmi_str[32]; + char hdmi_str[32] = "HDMI/DP"; struct hdmi_spec *spec = codec->spec; struct hdmi_spec_per_pin *per_pin = &spec->pins[pin_idx]; int pcmdev = spec->pcm_rec[pin_idx].device; - snprintf(hdmi_str, sizeof(hdmi_str), "HDMI/DP,pcm=%d", pcmdev); + if (pcmdev > 0) + sprintf(hdmi_str + strlen(hdmi_str), ",pcm=%d", pcmdev); - err = snd_hda_input_jack_add(codec, per_pin->pin_nid, - SND_JACK_VIDEOOUT, pcmdev > 0 ? hdmi_str : NULL); - if (err < 0) - return err; - - hdmi_present_sense(per_pin, 0); - return 0; + return snd_hda_jack_add_kctl(codec, per_pin->pin_nid, hdmi_str, 0); } static int generic_hdmi_build_controls(struct hda_codec *codec) @@ -1270,6 +1272,8 @@ if (err < 0) return err; + + hdmi_present_sense(per_pin, false); } return 0; @@ -1286,14 +1290,13 @@ struct hdmi_eld *eld = &per_pin->sink_eld; hdmi_init_pin(codec, pin_nid); - snd_hda_codec_write(codec, pin_nid, 0, - AC_VERB_SET_UNSOLICITED_ENABLE, - AC_USRSP_EN | pin_nid); + snd_hda_jack_detect_enable(codec, pin_nid, pin_nid); per_pin->codec = codec; INIT_DELAYED_WORK(&per_pin->work, hdmi_repoll_eld); snd_hda_eld_proc_new(codec, eld, pin_idx); } + snd_hda_jack_report_sync(codec); return 0; } @@ -1309,7 +1312,6 @@ cancel_delayed_work(&per_pin->work); snd_hda_eld_proc_free(codec, eld); } - snd_hda_input_jack_free(codec); flush_workqueue(codec->bus->workq); kfree(spec); @@ -1911,6 +1913,7 @@ { .id = 0x80862804, .name = "IbexPeak HDMI", .patch = patch_generic_hdmi }, { .id = 0x80862805, .name = "CougarPoint HDMI", .patch = patch_generic_hdmi }, { .id = 0x80862806, .name = "PantherPoint HDMI", .patch = patch_generic_hdmi }, +{ .id = 0x80862880, .name = "CedarTrail HDMI", .patch = patch_generic_hdmi }, { .id = 0x808629fb, .name = "Crestline HDMI", .patch = patch_generic_hdmi }, {} /* terminator */ }; @@ -1957,6 +1960,7 @@ MODULE_ALIAS("snd-hda-codec-id:80862804"); MODULE_ALIAS("snd-hda-codec-id:80862805"); MODULE_ALIAS("snd-hda-codec-id:80862806"); +MODULE_ALIAS("snd-hda-codec-id:80862880"); MODULE_ALIAS("snd-hda-codec-id:808629fb"); MODULE_LICENSE("GPL"); --- linux-3.2.0.orig/sound/pci/hda/hda_intel.c +++ linux-3.2.0/sound/pci/hda/hda_intel.c @@ -148,6 +148,7 @@ "{Intel, PCH}," "{Intel, CPT}," "{Intel, PPT}," + "{Intel, LPT}," "{Intel, PBG}," "{Intel, SCH}," "{ATI, SB450}," @@ -461,6 +462,7 @@ unsigned int irq_pending_warned :1; unsigned int probing :1; /* codec probing phase */ unsigned int snoop:1; + unsigned int align_buffer_size:1; /* for debugging */ unsigned int last_cmd[AZX_MAX_CODECS]; @@ -768,11 +770,13 @@ { struct azx *chip = bus->private_data; unsigned long timeout; + unsigned long loopcounter; int do_poll = 0; again: timeout = jiffies + msecs_to_jiffies(1000); - for (;;) { + + for (loopcounter = 0;; loopcounter++) { if (chip->polling_mode || do_poll) { spin_lock_irq(&chip->reg_lock); azx_update_rirb(chip); @@ -788,7 +792,7 @@ } if (time_after(jiffies, timeout)) break; - if (bus->needs_damn_long_delay) + if (bus->needs_damn_long_delay || loopcounter > 3000) msleep(2); /* temporary workaround */ else { udelay(10); @@ -1697,7 +1701,7 @@ runtime->hw.rates = hinfo->rates; snd_pcm_limit_hw_rates(runtime); snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS); - if (align_buffer_size) + if (chip->align_buffer_size) /* constrain buffer sizes to be multiple of 128 bytes. This is more efficient in terms of memory access but isn't required by the HDA spec and @@ -2509,6 +2513,7 @@ SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB), SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS 1101HA", POS_FIX_LPIB), SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB), + SND_PCI_QUIRK(0x10de, 0xcb89, "Macbook Pro 7,1", POS_FIX_LPIB), SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB), SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB), SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB), @@ -2752,8 +2757,9 @@ } /* disable buffer size rounding to 128-byte multiples if supported */ + chip->align_buffer_size = align_buffer_size; if (chip->driver_caps & AZX_DCAPS_BUFSIZE) - align_buffer_size = 0; + chip->align_buffer_size = 0; /* allow 64bit DMA address if supported by H/W */ if ((gcap & ICH6_GCAP_64OK) && !pci_set_dma_mask(pci, DMA_BIT_MASK(64))) @@ -2968,6 +2974,10 @@ { PCI_DEVICE(0x8086, 0x1e20), .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_SCH_SNOOP | AZX_DCAPS_BUFSIZE}, + /* Lynx Point */ + { PCI_DEVICE(0x8086, 0x8c20), + .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_SCH_SNOOP | + AZX_DCAPS_BUFSIZE}, /* SCH */ { PCI_DEVICE(0x8086, 0x811b), .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_SCH_SNOOP | --- linux-3.2.0.orig/sound/pci/oxygen/oxygen_mixer.c +++ linux-3.2.0/sound/pci/oxygen/oxygen_mixer.c @@ -618,9 +618,12 @@ mutex_lock(&chip->mutex); reg = oxygen_read_ac97(chip, codec, index); mutex_unlock(&chip->mutex); - value->value.integer.value[0] = 31 - (reg & 0x1f); - if (stereo) - value->value.integer.value[1] = 31 - ((reg >> 8) & 0x1f); + if (!stereo) { + value->value.integer.value[0] = 31 - (reg & 0x1f); + } else { + value->value.integer.value[0] = 31 - ((reg >> 8) & 0x1f); + value->value.integer.value[1] = 31 - (reg & 0x1f); + } return 0; } @@ -636,14 +639,14 @@ mutex_lock(&chip->mutex); oldreg = oxygen_read_ac97(chip, codec, index); - newreg = oldreg; - newreg = (newreg & ~0x1f) | - (31 - (value->value.integer.value[0] & 0x1f)); - if (stereo) - newreg = (newreg & ~0x1f00) | - ((31 - (value->value.integer.value[1] & 0x1f)) << 8); - else - newreg = (newreg & ~0x1f00) | ((newreg & 0x1f) << 8); + if (!stereo) { + newreg = oldreg & ~0x1f; + newreg |= 31 - (value->value.integer.value[0] & 0x1f); + } else { + newreg = oldreg & ~0x1f1f; + newreg |= (31 - (value->value.integer.value[0] & 0x1f)) << 8; + newreg |= 31 - (value->value.integer.value[1] & 0x1f); + } change = newreg != oldreg; if (change) oxygen_write_ac97(chip, codec, index, newreg); --- linux-3.2.0.orig/sound/pci/oxygen/xonar_wm87x6.c +++ linux-3.2.0/sound/pci/oxygen/xonar_wm87x6.c @@ -177,6 +177,7 @@ struct xonar_wm87x6 *data = chip->model_data; wm8776_write(chip, WM8776_RESET, 0); + wm8776_write(chip, WM8776_PHASESWAP, WM8776_PH_MASK); wm8776_write(chip, WM8776_DACCTRL1, WM8776_DZCEN | WM8776_PL_LEFT_LEFT | WM8776_PL_RIGHT_RIGHT); wm8776_write(chip, WM8776_DACMUTE, chip->dac_mute ? WM8776_DMUTE : 0); --- linux-3.2.0.orig/sound/pci/echoaudio/echoaudio_dsp.c +++ linux-3.2.0/sound/pci/echoaudio/echoaudio_dsp.c @@ -475,7 +475,7 @@ const struct firmware *fw; int box_type, err; - if (snd_BUG_ON(!chip->dsp_code_to_load || !chip->comm_page)) + if (snd_BUG_ON(!chip->comm_page)) return -EPERM; /* See if the ASIC is present and working - only if the DSP is already loaded */ --- linux-3.2.0.orig/sound/soc/soc-dapm.c +++ linux-3.2.0/sound/soc/soc-dapm.c @@ -69,6 +69,7 @@ [snd_soc_dapm_out_drv] = 10, [snd_soc_dapm_hp] = 10, [snd_soc_dapm_spk] = 10, + [snd_soc_dapm_line] = 10, [snd_soc_dapm_post] = 11, }; @@ -77,6 +78,7 @@ [snd_soc_dapm_adc] = 1, [snd_soc_dapm_hp] = 2, [snd_soc_dapm_spk] = 2, + [snd_soc_dapm_line] = 2, [snd_soc_dapm_out_drv] = 2, [snd_soc_dapm_pga] = 4, [snd_soc_dapm_mixer_named_ctl] = 5, @@ -2982,9 +2984,13 @@ * standby. */ if (powerdown) { - snd_soc_dapm_set_bias_level(dapm, SND_SOC_BIAS_PREPARE); + if (dapm->bias_level == SND_SOC_BIAS_ON) + snd_soc_dapm_set_bias_level(dapm, + SND_SOC_BIAS_PREPARE); dapm_seq_run(dapm, &down_list, 0, false); - snd_soc_dapm_set_bias_level(dapm, SND_SOC_BIAS_STANDBY); + if (dapm->bias_level == SND_SOC_BIAS_PREPARE) + snd_soc_dapm_set_bias_level(dapm, + SND_SOC_BIAS_STANDBY); } } @@ -2997,7 +3003,9 @@ list_for_each_entry(codec, &card->codec_dev_list, list) { soc_dapm_shutdown_codec(&codec->dapm); - snd_soc_dapm_set_bias_level(&codec->dapm, SND_SOC_BIAS_OFF); + if (codec->dapm.bias_level == SND_SOC_BIAS_STANDBY) + snd_soc_dapm_set_bias_level(&codec->dapm, + SND_SOC_BIAS_OFF); } } --- linux-3.2.0.orig/sound/soc/fsl/p1022_ds.c +++ linux-3.2.0/sound/soc/fsl/p1022_ds.c @@ -392,7 +392,8 @@ } if (strcasecmp(sprop, "i2s-slave") == 0) { - mdata->dai_format = SND_SOC_DAIFMT_I2S; + mdata->dai_format = SND_SOC_DAIFMT_NB_NF | + SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_CBM_CFM; mdata->codec_clk_direction = SND_SOC_CLOCK_OUT; mdata->cpu_clk_direction = SND_SOC_CLOCK_IN; @@ -409,31 +410,38 @@ } mdata->clk_frequency = be32_to_cpup(iprop); } else if (strcasecmp(sprop, "i2s-master") == 0) { - mdata->dai_format = SND_SOC_DAIFMT_I2S; + mdata->dai_format = SND_SOC_DAIFMT_NB_NF | + SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_CBS_CFS; mdata->codec_clk_direction = SND_SOC_CLOCK_IN; mdata->cpu_clk_direction = SND_SOC_CLOCK_OUT; } else if (strcasecmp(sprop, "lj-slave") == 0) { - mdata->dai_format = SND_SOC_DAIFMT_LEFT_J; + mdata->dai_format = SND_SOC_DAIFMT_NB_NF | + SND_SOC_DAIFMT_LEFT_J | SND_SOC_DAIFMT_CBM_CFM; mdata->codec_clk_direction = SND_SOC_CLOCK_OUT; mdata->cpu_clk_direction = SND_SOC_CLOCK_IN; } else if (strcasecmp(sprop, "lj-master") == 0) { - mdata->dai_format = SND_SOC_DAIFMT_LEFT_J; + mdata->dai_format = SND_SOC_DAIFMT_NB_NF | + SND_SOC_DAIFMT_LEFT_J | SND_SOC_DAIFMT_CBS_CFS; mdata->codec_clk_direction = SND_SOC_CLOCK_IN; mdata->cpu_clk_direction = SND_SOC_CLOCK_OUT; } else if (strcasecmp(sprop, "rj-slave") == 0) { - mdata->dai_format = SND_SOC_DAIFMT_RIGHT_J; + mdata->dai_format = SND_SOC_DAIFMT_NB_NF | + SND_SOC_DAIFMT_RIGHT_J | SND_SOC_DAIFMT_CBM_CFM; mdata->codec_clk_direction = SND_SOC_CLOCK_OUT; mdata->cpu_clk_direction = SND_SOC_CLOCK_IN; } else if (strcasecmp(sprop, "rj-master") == 0) { - mdata->dai_format = SND_SOC_DAIFMT_RIGHT_J; + mdata->dai_format = SND_SOC_DAIFMT_NB_NF | + SND_SOC_DAIFMT_RIGHT_J | SND_SOC_DAIFMT_CBS_CFS; mdata->codec_clk_direction = SND_SOC_CLOCK_IN; mdata->cpu_clk_direction = SND_SOC_CLOCK_OUT; } else if (strcasecmp(sprop, "ac97-slave") == 0) { - mdata->dai_format = SND_SOC_DAIFMT_AC97; + mdata->dai_format = SND_SOC_DAIFMT_NB_NF | + SND_SOC_DAIFMT_AC97 | SND_SOC_DAIFMT_CBM_CFM; mdata->codec_clk_direction = SND_SOC_CLOCK_OUT; mdata->cpu_clk_direction = SND_SOC_CLOCK_IN; } else if (strcasecmp(sprop, "ac97-master") == 0) { - mdata->dai_format = SND_SOC_DAIFMT_AC97; + mdata->dai_format = SND_SOC_DAIFMT_NB_NF | + SND_SOC_DAIFMT_AC97 | SND_SOC_DAIFMT_CBS_CFS; mdata->codec_clk_direction = SND_SOC_CLOCK_IN; mdata->cpu_clk_direction = SND_SOC_CLOCK_OUT; } else { --- linux-3.2.0.orig/sound/soc/samsung/neo1973_wm8753.c +++ linux-3.2.0/sound/soc/samsung/neo1973_wm8753.c @@ -421,7 +421,7 @@ .platform_name = "samsung-audio", .cpu_dai_name = "s3c24xx-iis", .codec_dai_name = "wm8753-hifi", - .codec_name = "wm8753-codec.0-001a", + .codec_name = "wm8753.0-001a", .init = neo1973_wm8753_init, .ops = &neo1973_hifi_ops, }, @@ -430,7 +430,7 @@ .stream_name = "Voice", .cpu_dai_name = "dfbmcs320-pcm", .codec_dai_name = "wm8753-voice", - .codec_name = "wm8753-codec.0-001a", + .codec_name = "wm8753.0-001a", .ops = &neo1973_voice_ops, }, }; --- linux-3.2.0.orig/sound/soc/imx/imx-ssi.c +++ linux-3.2.0/sound/soc/imx/imx-ssi.c @@ -112,7 +112,7 @@ break; case SND_SOC_DAIFMT_DSP_A: /* data on rising edge of bclk, frame high 1clk before data */ - strcr |= SSI_STCR_TFSL | SSI_STCR_TEFS; + strcr |= SSI_STCR_TFSL | SSI_STCR_TXBIT0 | SSI_STCR_TEFS; break; } --- linux-3.2.0.orig/sound/soc/codecs/ak4642.c +++ linux-3.2.0/sound/soc/codecs/ak4642.c @@ -144,7 +144,7 @@ * min : 0xFE : -115.0 dB * mute: 0xFF */ -static const DECLARE_TLV_DB_SCALE(out_tlv, -11500, 50, 1); +static const DECLARE_TLV_DB_SCALE(out_tlv, -11550, 50, 1); static const struct snd_kcontrol_new ak4642_snd_controls[] = { --- linux-3.2.0.orig/sound/soc/codecs/wm_hubs.c +++ linux-3.2.0/sound/soc/codecs/wm_hubs.c @@ -587,14 +587,14 @@ }; static const struct snd_kcontrol_new line2_mix[] = { -SOC_DAPM_SINGLE("IN2R Switch", WM8993_LINE_MIXER2, 2, 1, 0), -SOC_DAPM_SINGLE("IN2L Switch", WM8993_LINE_MIXER2, 1, 1, 0), +SOC_DAPM_SINGLE("IN1L Switch", WM8993_LINE_MIXER2, 2, 1, 0), +SOC_DAPM_SINGLE("IN1R Switch", WM8993_LINE_MIXER2, 1, 1, 0), SOC_DAPM_SINGLE("Output Switch", WM8993_LINE_MIXER2, 0, 1, 0), }; static const struct snd_kcontrol_new line2n_mix[] = { -SOC_DAPM_SINGLE("Left Output Switch", WM8993_LINE_MIXER2, 6, 1, 0), -SOC_DAPM_SINGLE("Right Output Switch", WM8993_LINE_MIXER2, 5, 1, 0), +SOC_DAPM_SINGLE("Left Output Switch", WM8993_LINE_MIXER2, 5, 1, 0), +SOC_DAPM_SINGLE("Right Output Switch", WM8993_LINE_MIXER2, 6, 1, 0), }; static const struct snd_kcontrol_new line2p_mix[] = { @@ -614,6 +614,8 @@ SND_SOC_DAPM_MICBIAS("MICBIAS2", WM8993_POWER_MANAGEMENT_1, 5, 0), SND_SOC_DAPM_MICBIAS("MICBIAS1", WM8993_POWER_MANAGEMENT_1, 4, 0), +SND_SOC_DAPM_SUPPLY("LINEOUT_VMID_BUF", WM8993_ANTIPOP1, 7, 0, NULL, 0), + SND_SOC_DAPM_MIXER("IN1L PGA", WM8993_POWER_MANAGEMENT_2, 6, 0, in1l_pga, ARRAY_SIZE(in1l_pga)), SND_SOC_DAPM_MIXER("IN1R PGA", WM8993_POWER_MANAGEMENT_2, 4, 0, @@ -832,9 +834,11 @@ }; static const struct snd_soc_dapm_route lineout1_se_routes[] = { + { "LINEOUT1N Mixer", NULL, "LINEOUT_VMID_BUF" }, { "LINEOUT1N Mixer", "Left Output Switch", "Left Output PGA" }, { "LINEOUT1N Mixer", "Right Output Switch", "Right Output PGA" }, + { "LINEOUT1P Mixer", NULL, "LINEOUT_VMID_BUF" }, { "LINEOUT1P Mixer", "Left Output Switch", "Left Output PGA" }, { "LINEOUT1N Driver", NULL, "LINEOUT1N Mixer" }, @@ -842,8 +846,8 @@ }; static const struct snd_soc_dapm_route lineout2_diff_routes[] = { - { "LINEOUT2 Mixer", "IN2L Switch", "IN2L PGA" }, - { "LINEOUT2 Mixer", "IN2R Switch", "IN2R PGA" }, + { "LINEOUT2 Mixer", "IN1L Switch", "IN1L PGA" }, + { "LINEOUT2 Mixer", "IN1R Switch", "IN1R PGA" }, { "LINEOUT2 Mixer", "Output Switch", "Right Output PGA" }, { "LINEOUT2N Driver", NULL, "LINEOUT2 Mixer" }, @@ -851,9 +855,11 @@ }; static const struct snd_soc_dapm_route lineout2_se_routes[] = { + { "LINEOUT2N Mixer", NULL, "LINEOUT_VMID_BUF" }, { "LINEOUT2N Mixer", "Left Output Switch", "Left Output PGA" }, { "LINEOUT2N Mixer", "Right Output Switch", "Right Output PGA" }, + { "LINEOUT2P Mixer", NULL, "LINEOUT_VMID_BUF" }, { "LINEOUT2P Mixer", "Right Output Switch", "Right Output PGA" }, { "LINEOUT2N Driver", NULL, "LINEOUT2N Mixer" }, --- linux-3.2.0.orig/sound/soc/codecs/tlv320aic23.c +++ linux-3.2.0/sound/soc/codecs/tlv320aic23.c @@ -473,7 +473,7 @@ static int tlv320aic23_set_bias_level(struct snd_soc_codec *codec, enum snd_soc_bias_level level) { - u16 reg = snd_soc_read(codec, TLV320AIC23_PWR) & 0xff7f; + u16 reg = snd_soc_read(codec, TLV320AIC23_PWR) & 0x17f; switch (level) { case SND_SOC_BIAS_ON: @@ -492,7 +492,7 @@ case SND_SOC_BIAS_OFF: /* everything off, dac mute, inactive */ snd_soc_write(codec, TLV320AIC23_ACTIVE, 0x0); - snd_soc_write(codec, TLV320AIC23_PWR, 0xffff); + snd_soc_write(codec, TLV320AIC23_PWR, 0x1ff); break; } codec->dapm.bias_level = level; --- linux-3.2.0.orig/sound/soc/codecs/wm8994.c +++ linux-3.2.0/sound/soc/codecs/wm8994.c @@ -729,6 +729,8 @@ { struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec); + pm_runtime_get_sync(codec->dev); + wm8994->vmid_refcount++; dev_dbg(codec->dev, "Referencing VMID, refcount is now %d\n", @@ -742,7 +744,7 @@ WM8994_VMID_RAMP_MASK, WM8994_STARTUP_BIAS_ENA | WM8994_VMID_BUF_ENA | - (0x11 << WM8994_VMID_RAMP_SHIFT)); + (0x3 << WM8994_VMID_RAMP_SHIFT)); /* Main bias enable, VMID=2x40k */ snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_1, @@ -796,6 +798,8 @@ WM8994_VMID_BUF_ENA | WM8994_VMID_RAMP_MASK, 0); } + + pm_runtime_put(codec->dev); } static int vmid_event(struct snd_soc_dapm_widget *w, @@ -879,61 +883,170 @@ } } -static int late_enable_ev(struct snd_soc_dapm_widget *w, - struct snd_kcontrol *kcontrol, int event) +static int aif1clk_ev(struct snd_soc_dapm_widget *w, + struct snd_kcontrol *kcontrol, int event) { struct snd_soc_codec *codec = w->codec; - struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec); + struct wm8994 *control = codec->control_data; + int mask = WM8994_AIF1DAC1L_ENA | WM8994_AIF1DAC1R_ENA; + int dac; + int adc; + int val; + + switch (control->type) { + case WM8994: + case WM8958: + mask |= WM8994_AIF1DAC2L_ENA | WM8994_AIF1DAC2R_ENA; + break; + default: + break; + } switch (event) { case SND_SOC_DAPM_PRE_PMU: - if (wm8994->aif1clk_enable) { - snd_soc_update_bits(codec, WM8994_AIF1_CLOCKING_1, - WM8994_AIF1CLK_ENA_MASK, - WM8994_AIF1CLK_ENA); - wm8994->aif1clk_enable = 0; - } - if (wm8994->aif2clk_enable) { - snd_soc_update_bits(codec, WM8994_AIF2_CLOCKING_1, - WM8994_AIF2CLK_ENA_MASK, - WM8994_AIF2CLK_ENA); - wm8994->aif2clk_enable = 0; - } + val = snd_soc_read(codec, WM8994_AIF1_CONTROL_1); + if ((val & WM8994_AIF1ADCL_SRC) && + (val & WM8994_AIF1ADCR_SRC)) + adc = WM8994_AIF1ADC1R_ENA | WM8994_AIF1ADC2R_ENA; + else if (!(val & WM8994_AIF1ADCL_SRC) && + !(val & WM8994_AIF1ADCR_SRC)) + adc = WM8994_AIF1ADC1L_ENA | WM8994_AIF1ADC2L_ENA; + else + adc = WM8994_AIF1ADC1R_ENA | WM8994_AIF1ADC2R_ENA | + WM8994_AIF1ADC1L_ENA | WM8994_AIF1ADC2L_ENA; + + val = snd_soc_read(codec, WM8994_AIF1_CONTROL_2); + if ((val & WM8994_AIF1DACL_SRC) && + (val & WM8994_AIF1DACR_SRC)) + dac = WM8994_AIF1DAC1R_ENA | WM8994_AIF1DAC2R_ENA; + else if (!(val & WM8994_AIF1DACL_SRC) && + !(val & WM8994_AIF1DACR_SRC)) + dac = WM8994_AIF1DAC1L_ENA | WM8994_AIF1DAC2L_ENA; + else + dac = WM8994_AIF1DAC1R_ENA | WM8994_AIF1DAC2R_ENA | + WM8994_AIF1DAC1L_ENA | WM8994_AIF1DAC2L_ENA; + + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_4, + mask, adc); + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_5, + mask, dac); + snd_soc_update_bits(codec, WM8994_CLOCKING_1, + WM8994_AIF1DSPCLK_ENA | + WM8994_SYSDSPCLK_ENA, + WM8994_AIF1DSPCLK_ENA | + WM8994_SYSDSPCLK_ENA); + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_4, mask, + WM8994_AIF1ADC1R_ENA | + WM8994_AIF1ADC1L_ENA | + WM8994_AIF1ADC2R_ENA | + WM8994_AIF1ADC2L_ENA); + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_5, mask, + WM8994_AIF1DAC1R_ENA | + WM8994_AIF1DAC1L_ENA | + WM8994_AIF1DAC2R_ENA | + WM8994_AIF1DAC2L_ENA); break; - } - /* We may also have postponed startup of DSP, handle that. */ - wm8958_aif_ev(w, kcontrol, event); + case SND_SOC_DAPM_PRE_PMD: + case SND_SOC_DAPM_POST_PMD: + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_5, + mask, 0); + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_4, + mask, 0); + + val = snd_soc_read(codec, WM8994_CLOCKING_1); + if (val & WM8994_AIF2DSPCLK_ENA) + val = WM8994_SYSDSPCLK_ENA; + else + val = 0; + snd_soc_update_bits(codec, WM8994_CLOCKING_1, + WM8994_SYSDSPCLK_ENA | + WM8994_AIF1DSPCLK_ENA, val); + break; + } return 0; } -static int late_disable_ev(struct snd_soc_dapm_widget *w, - struct snd_kcontrol *kcontrol, int event) +static int aif2clk_ev(struct snd_soc_dapm_widget *w, + struct snd_kcontrol *kcontrol, int event) { struct snd_soc_codec *codec = w->codec; - struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec); + int dac; + int adc; + int val; switch (event) { + case SND_SOC_DAPM_PRE_PMU: + val = snd_soc_read(codec, WM8994_AIF2_CONTROL_1); + if ((val & WM8994_AIF2ADCL_SRC) && + (val & WM8994_AIF2ADCR_SRC)) + adc = WM8994_AIF2ADCR_ENA; + else if (!(val & WM8994_AIF2ADCL_SRC) && + !(val & WM8994_AIF2ADCR_SRC)) + adc = WM8994_AIF2ADCL_ENA; + else + adc = WM8994_AIF2ADCL_ENA | WM8994_AIF2ADCR_ENA; + + + val = snd_soc_read(codec, WM8994_AIF2_CONTROL_2); + if ((val & WM8994_AIF2DACL_SRC) && + (val & WM8994_AIF2DACR_SRC)) + dac = WM8994_AIF2DACR_ENA; + else if (!(val & WM8994_AIF2DACL_SRC) && + !(val & WM8994_AIF2DACR_SRC)) + dac = WM8994_AIF2DACL_ENA; + else + dac = WM8994_AIF2DACL_ENA | WM8994_AIF2DACR_ENA; + + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_4, + WM8994_AIF2ADCL_ENA | + WM8994_AIF2ADCR_ENA, adc); + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_5, + WM8994_AIF2DACL_ENA | + WM8994_AIF2DACR_ENA, dac); + snd_soc_update_bits(codec, WM8994_CLOCKING_1, + WM8994_AIF2DSPCLK_ENA | + WM8994_SYSDSPCLK_ENA, + WM8994_AIF2DSPCLK_ENA | + WM8994_SYSDSPCLK_ENA); + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_4, + WM8994_AIF2ADCL_ENA | + WM8994_AIF2ADCR_ENA, + WM8994_AIF2ADCL_ENA | + WM8994_AIF2ADCR_ENA); + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_5, + WM8994_AIF2DACL_ENA | + WM8994_AIF2DACR_ENA, + WM8994_AIF2DACL_ENA | + WM8994_AIF2DACR_ENA); + break; + + case SND_SOC_DAPM_PRE_PMD: case SND_SOC_DAPM_POST_PMD: - if (wm8994->aif1clk_disable) { - snd_soc_update_bits(codec, WM8994_AIF1_CLOCKING_1, - WM8994_AIF1CLK_ENA_MASK, 0); - wm8994->aif1clk_disable = 0; - } - if (wm8994->aif2clk_disable) { - snd_soc_update_bits(codec, WM8994_AIF2_CLOCKING_1, - WM8994_AIF2CLK_ENA_MASK, 0); - wm8994->aif2clk_disable = 0; - } + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_5, + WM8994_AIF2DACL_ENA | + WM8994_AIF2DACR_ENA, 0); + snd_soc_update_bits(codec, WM8994_POWER_MANAGEMENT_4, + WM8994_AIF2ADCL_ENA | + WM8994_AIF2ADCR_ENA, 0); + + val = snd_soc_read(codec, WM8994_CLOCKING_1); + if (val & WM8994_AIF1DSPCLK_ENA) + val = WM8994_SYSDSPCLK_ENA; + else + val = 0; + snd_soc_update_bits(codec, WM8994_CLOCKING_1, + WM8994_SYSDSPCLK_ENA | + WM8994_AIF2DSPCLK_ENA, val); break; } return 0; } -static int aif1clk_ev(struct snd_soc_dapm_widget *w, - struct snd_kcontrol *kcontrol, int event) +static int aif1clk_late_ev(struct snd_soc_dapm_widget *w, + struct snd_kcontrol *kcontrol, int event) { struct snd_soc_codec *codec = w->codec; struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec); @@ -950,8 +1063,8 @@ return 0; } -static int aif2clk_ev(struct snd_soc_dapm_widget *w, - struct snd_kcontrol *kcontrol, int event) +static int aif2clk_late_ev(struct snd_soc_dapm_widget *w, + struct snd_kcontrol *kcontrol, int event) { struct snd_soc_codec *codec = w->codec; struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec); @@ -968,6 +1081,63 @@ return 0; } +static int late_enable_ev(struct snd_soc_dapm_widget *w, + struct snd_kcontrol *kcontrol, int event) +{ + struct snd_soc_codec *codec = w->codec; + struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec); + + switch (event) { + case SND_SOC_DAPM_PRE_PMU: + if (wm8994->aif1clk_enable) { + aif1clk_ev(w, kcontrol, event); + snd_soc_update_bits(codec, WM8994_AIF1_CLOCKING_1, + WM8994_AIF1CLK_ENA_MASK, + WM8994_AIF1CLK_ENA); + wm8994->aif1clk_enable = 0; + } + if (wm8994->aif2clk_enable) { + aif2clk_ev(w, kcontrol, event); + snd_soc_update_bits(codec, WM8994_AIF2_CLOCKING_1, + WM8994_AIF2CLK_ENA_MASK, + WM8994_AIF2CLK_ENA); + wm8994->aif2clk_enable = 0; + } + break; + } + + /* We may also have postponed startup of DSP, handle that. */ + wm8958_aif_ev(w, kcontrol, event); + + return 0; +} + +static int late_disable_ev(struct snd_soc_dapm_widget *w, + struct snd_kcontrol *kcontrol, int event) +{ + struct snd_soc_codec *codec = w->codec; + struct wm8994_priv *wm8994 = snd_soc_codec_get_drvdata(codec); + + switch (event) { + case SND_SOC_DAPM_POST_PMD: + if (wm8994->aif1clk_disable) { + snd_soc_update_bits(codec, WM8994_AIF1_CLOCKING_1, + WM8994_AIF1CLK_ENA_MASK, 0); + aif1clk_ev(w, kcontrol, event); + wm8994->aif1clk_disable = 0; + } + if (wm8994->aif2clk_disable) { + snd_soc_update_bits(codec, WM8994_AIF2_CLOCKING_1, + WM8994_AIF2CLK_ENA_MASK, 0); + aif2clk_ev(w, kcontrol, event); + wm8994->aif2clk_disable = 0; + } + break; + } + + return 0; +} + static int adc_mux_ev(struct snd_soc_dapm_widget *w, struct snd_kcontrol *kcontrol, int event) { @@ -1264,9 +1434,9 @@ SOC_DAPM_ENUM("AIF2DACR Mux", aif2dacr_src_enum); static const struct snd_soc_dapm_widget wm8994_lateclk_revd_widgets[] = { -SND_SOC_DAPM_SUPPLY("AIF1CLK", SND_SOC_NOPM, 0, 0, aif1clk_ev, +SND_SOC_DAPM_SUPPLY("AIF1CLK", SND_SOC_NOPM, 0, 0, aif1clk_late_ev, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD), -SND_SOC_DAPM_SUPPLY("AIF2CLK", SND_SOC_NOPM, 0, 0, aif2clk_ev, +SND_SOC_DAPM_SUPPLY("AIF2CLK", SND_SOC_NOPM, 0, 0, aif2clk_late_ev, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD), SND_SOC_DAPM_PGA_E("Late DAC1L Enable PGA", SND_SOC_NOPM, 0, 0, NULL, 0, @@ -1295,8 +1465,10 @@ }; static const struct snd_soc_dapm_widget wm8994_lateclk_widgets[] = { -SND_SOC_DAPM_SUPPLY("AIF1CLK", WM8994_AIF1_CLOCKING_1, 0, 0, NULL, 0), -SND_SOC_DAPM_SUPPLY("AIF2CLK", WM8994_AIF2_CLOCKING_1, 0, 0, NULL, 0), +SND_SOC_DAPM_SUPPLY("AIF1CLK", WM8994_AIF1_CLOCKING_1, 0, 0, aif1clk_ev, + SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_PRE_PMD), +SND_SOC_DAPM_SUPPLY("AIF2CLK", WM8994_AIF2_CLOCKING_1, 0, 0, aif2clk_ev, + SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_PRE_PMD), SND_SOC_DAPM_PGA("Direct Voice", SND_SOC_NOPM, 0, 0, NULL, 0), SND_SOC_DAPM_MIXER("SPKL", WM8994_POWER_MANAGEMENT_3, 8, 0, left_speaker_mixer, ARRAY_SIZE(left_speaker_mixer)), @@ -1349,30 +1521,30 @@ SND_SOC_DAPM_SUPPLY("CLK_SYS", SND_SOC_NOPM, 0, 0, clk_sys_event, SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD), -SND_SOC_DAPM_SUPPLY("DSP1CLK", WM8994_CLOCKING_1, 3, 0, NULL, 0), -SND_SOC_DAPM_SUPPLY("DSP2CLK", WM8994_CLOCKING_1, 2, 0, NULL, 0), -SND_SOC_DAPM_SUPPLY("DSPINTCLK", WM8994_CLOCKING_1, 1, 0, NULL, 0), +SND_SOC_DAPM_SUPPLY("DSP1CLK", SND_SOC_NOPM, 3, 0, NULL, 0), +SND_SOC_DAPM_SUPPLY("DSP2CLK", SND_SOC_NOPM, 2, 0, NULL, 0), +SND_SOC_DAPM_SUPPLY("DSPINTCLK", SND_SOC_NOPM, 1, 0, NULL, 0), SND_SOC_DAPM_AIF_OUT("AIF1ADC1L", NULL, - 0, WM8994_POWER_MANAGEMENT_4, 9, 0), + 0, SND_SOC_NOPM, 9, 0), SND_SOC_DAPM_AIF_OUT("AIF1ADC1R", NULL, - 0, WM8994_POWER_MANAGEMENT_4, 8, 0), + 0, SND_SOC_NOPM, 8, 0), SND_SOC_DAPM_AIF_IN_E("AIF1DAC1L", NULL, 0, - WM8994_POWER_MANAGEMENT_5, 9, 0, wm8958_aif_ev, + SND_SOC_NOPM, 9, 0, wm8958_aif_ev, SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD), SND_SOC_DAPM_AIF_IN_E("AIF1DAC1R", NULL, 0, - WM8994_POWER_MANAGEMENT_5, 8, 0, wm8958_aif_ev, + SND_SOC_NOPM, 8, 0, wm8958_aif_ev, SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD), SND_SOC_DAPM_AIF_OUT("AIF1ADC2L", NULL, - 0, WM8994_POWER_MANAGEMENT_4, 11, 0), + 0, SND_SOC_NOPM, 11, 0), SND_SOC_DAPM_AIF_OUT("AIF1ADC2R", NULL, - 0, WM8994_POWER_MANAGEMENT_4, 10, 0), + 0, SND_SOC_NOPM, 10, 0), SND_SOC_DAPM_AIF_IN_E("AIF1DAC2L", NULL, 0, - WM8994_POWER_MANAGEMENT_5, 11, 0, wm8958_aif_ev, + SND_SOC_NOPM, 11, 0, wm8958_aif_ev, SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD), SND_SOC_DAPM_AIF_IN_E("AIF1DAC2R", NULL, 0, - WM8994_POWER_MANAGEMENT_5, 10, 0, wm8958_aif_ev, + SND_SOC_NOPM, 10, 0, wm8958_aif_ev, SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD), SND_SOC_DAPM_MIXER("AIF1ADC1L Mixer", SND_SOC_NOPM, 0, 0, @@ -1399,14 +1571,14 @@ dac1r_mix, ARRAY_SIZE(dac1r_mix)), SND_SOC_DAPM_AIF_OUT("AIF2ADCL", NULL, 0, - WM8994_POWER_MANAGEMENT_4, 13, 0), + SND_SOC_NOPM, 13, 0), SND_SOC_DAPM_AIF_OUT("AIF2ADCR", NULL, 0, - WM8994_POWER_MANAGEMENT_4, 12, 0), + SND_SOC_NOPM, 12, 0), SND_SOC_DAPM_AIF_IN_E("AIF2DACL", NULL, 0, - WM8994_POWER_MANAGEMENT_5, 13, 0, wm8958_aif_ev, + SND_SOC_NOPM, 13, 0, wm8958_aif_ev, SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD), SND_SOC_DAPM_AIF_IN_E("AIF2DACR", NULL, 0, - WM8994_POWER_MANAGEMENT_5, 12, 0, wm8958_aif_ev, + SND_SOC_NOPM, 12, 0, wm8958_aif_ev, SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD), SND_SOC_DAPM_AIF_IN("AIF1DACDAT", "AIF1 Playback", 0, SND_SOC_NOPM, 0, 0), @@ -3186,7 +3358,7 @@ case 2: case 3: wm8994->hubs.dcs_codes_l = -9; - wm8994->hubs.dcs_codes_r = -5; + wm8994->hubs.dcs_codes_r = -7; break; default: break; --- linux-3.2.0.orig/sound/soc/codecs/wm8996.c +++ linux-3.2.0/sound/soc/codecs/wm8996.c @@ -1049,7 +1049,8 @@ SND_SOC_DAPM_SUPPLY_S("SYSDSPCLK", 2, WM8996_CLOCKING_1, 1, 0, NULL, 0), SND_SOC_DAPM_SUPPLY_S("AIFCLK", 2, WM8996_CLOCKING_1, 2, 0, NULL, 0), SND_SOC_DAPM_SUPPLY_S("Charge Pump", 2, WM8996_CHARGE_PUMP_1, 15, 0, cp_event, - SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD), + SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU | + SND_SOC_DAPM_POST_PMD), SND_SOC_DAPM_SUPPLY("Bandgap", SND_SOC_NOPM, 0, 0, bg_event, SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD), SND_SOC_DAPM_SUPPLY("LDO2", WM8996_POWER_MANAGEMENT_2, 1, 0, NULL, 0), @@ -1932,6 +1933,7 @@ struct wm8996_priv *wm8996 = snd_soc_codec_get_drvdata(codec); int lfclk = 0; int ratediv = 0; + int sync = WM8996_REG_SYNC; int src; int old; @@ -1976,6 +1978,7 @@ case 32000: case 32768: lfclk = WM8996_LFCLK_ENA; + sync = 0; break; default: dev_warn(codec->dev, "Unsupported clock rate %dHz\n", @@ -1989,6 +1992,8 @@ WM8996_SYSCLK_SRC_MASK | WM8996_SYSCLK_DIV_MASK, src << WM8996_SYSCLK_SRC_SHIFT | ratediv); snd_soc_update_bits(codec, WM8996_CLOCKING_1, WM8996_LFCLK_ENA, lfclk); + snd_soc_update_bits(codec, WM8996_CONTROL_INTERFACE_1, + WM8996_REG_SYNC, sync); snd_soc_update_bits(codec, WM8996_AIF_CLOCKING_1, WM8996_SYSCLK_ENA, old); --- linux-3.2.0.orig/sound/soc/codecs/wm8996.h +++ linux-3.2.0/sound/soc/codecs/wm8996.h @@ -1567,6 +1567,10 @@ /* * R257 (0x101) - Control Interface (1) */ +#define WM8996_REG_SYNC 0x8000 /* REG_SYNC */ +#define WM8996_REG_SYNC_MASK 0x8000 /* REG_SYNC */ +#define WM8996_REG_SYNC_SHIFT 15 /* REG_SYNC */ +#define WM8996_REG_SYNC_WIDTH 1 /* REG_SYNC */ #define WM8996_AUTO_INC 0x0004 /* AUTO_INC */ #define WM8996_AUTO_INC_MASK 0x0004 /* AUTO_INC */ #define WM8996_AUTO_INC_SHIFT 2 /* AUTO_INC */ --- linux-3.2.0.orig/sound/soc/codecs/wm8962.c +++ linux-3.2.0/sound/soc/codecs/wm8962.c @@ -2559,7 +2559,7 @@ return 0; } -static const char *st_text[] = { "None", "Right", "Left" }; +static const char *st_text[] = { "None", "Left", "Right" }; static const struct soc_enum str_enum = SOC_ENUM_SINGLE(WM8962_DAC_DSP_MIXING_1, 2, 3, st_text); @@ -3172,13 +3172,13 @@ case SNDRV_PCM_FORMAT_S16_LE: break; case SNDRV_PCM_FORMAT_S20_3LE: - aif0 |= 0x40; + aif0 |= 0x4; break; case SNDRV_PCM_FORMAT_S24_LE: - aif0 |= 0x80; + aif0 |= 0x8; break; case SNDRV_PCM_FORMAT_S32_LE: - aif0 |= 0xc0; + aif0 |= 0xc; break; default: return -EINVAL; --- linux-3.2.0.orig/sound/soc/pxa/pxa-ssp.c +++ linux-3.2.0/sound/soc/pxa/pxa-ssp.c @@ -668,6 +668,38 @@ return 0; } +static void pxa_ssp_set_running_bit(struct snd_pcm_substream *substream, + struct ssp_device *ssp, int value) +{ + uint32_t sscr0 = pxa_ssp_read_reg(ssp, SSCR0); + uint32_t sscr1 = pxa_ssp_read_reg(ssp, SSCR1); + uint32_t sspsp = pxa_ssp_read_reg(ssp, SSPSP); + uint32_t sssr = pxa_ssp_read_reg(ssp, SSSR); + + if (value && (sscr0 & SSCR0_SSE)) + pxa_ssp_write_reg(ssp, SSCR0, sscr0 & ~SSCR0_SSE); + + if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { + if (value) + sscr1 |= SSCR1_TSRE; + else + sscr1 &= ~SSCR1_TSRE; + } else { + if (value) + sscr1 |= SSCR1_RSRE; + else + sscr1 &= ~SSCR1_RSRE; + } + + pxa_ssp_write_reg(ssp, SSCR1, sscr1); + + if (value) { + pxa_ssp_write_reg(ssp, SSSR, sssr); + pxa_ssp_write_reg(ssp, SSPSP, sspsp); + pxa_ssp_write_reg(ssp, SSCR0, sscr0 | SSCR0_SSE); + } +} + static int pxa_ssp_trigger(struct snd_pcm_substream *substream, int cmd, struct snd_soc_dai *cpu_dai) { @@ -681,42 +713,21 @@ pxa_ssp_enable(ssp); break; case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: - val = pxa_ssp_read_reg(ssp, SSCR1); - if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) - val |= SSCR1_TSRE; - else - val |= SSCR1_RSRE; - pxa_ssp_write_reg(ssp, SSCR1, val); + pxa_ssp_set_running_bit(substream, ssp, 1); val = pxa_ssp_read_reg(ssp, SSSR); pxa_ssp_write_reg(ssp, SSSR, val); break; case SNDRV_PCM_TRIGGER_START: - val = pxa_ssp_read_reg(ssp, SSCR1); - if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) - val |= SSCR1_TSRE; - else - val |= SSCR1_RSRE; - pxa_ssp_write_reg(ssp, SSCR1, val); - pxa_ssp_enable(ssp); + pxa_ssp_set_running_bit(substream, ssp, 1); break; case SNDRV_PCM_TRIGGER_STOP: - val = pxa_ssp_read_reg(ssp, SSCR1); - if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) - val &= ~SSCR1_TSRE; - else - val &= ~SSCR1_RSRE; - pxa_ssp_write_reg(ssp, SSCR1, val); + pxa_ssp_set_running_bit(substream, ssp, 0); break; case SNDRV_PCM_TRIGGER_SUSPEND: pxa_ssp_disable(ssp); break; case SNDRV_PCM_TRIGGER_PAUSE_PUSH: - val = pxa_ssp_read_reg(ssp, SSCR1); - if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) - val &= ~SSCR1_TSRE; - else - val &= ~SSCR1_RSRE; - pxa_ssp_write_reg(ssp, SSCR1, val); + pxa_ssp_set_running_bit(substream, ssp, 0); break; default: --- linux-3.2.0.orig/sound/core/ctljack.c +++ linux-3.2.0/sound/core/ctljack.c @@ -0,0 +1,56 @@ +/* + * Helper functions for jack-detection kcontrols + * + * Copyright (c) 2011 Takashi Iwai + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation; either version 2 of the License, or (at your option) + * any later version. + */ + +#include +#include +#include +#include + +#define jack_detect_kctl_info snd_ctl_boolean_mono_info + +static int jack_detect_kctl_get(struct snd_kcontrol *kcontrol, + struct snd_ctl_elem_value *ucontrol) +{ + ucontrol->value.integer.value[0] = kcontrol->private_value; + return 0; +} + +static struct snd_kcontrol_new jack_detect_kctl = { + /* name is filled later */ + .iface = SNDRV_CTL_ELEM_IFACE_CARD, + .access = SNDRV_CTL_ELEM_ACCESS_READ, + .info = jack_detect_kctl_info, + .get = jack_detect_kctl_get, +}; + +struct snd_kcontrol * +snd_kctl_jack_new(const char *name, int idx, void *private_data) +{ + struct snd_kcontrol *kctl; + kctl = snd_ctl_new1(&jack_detect_kctl, private_data); + if (!kctl) + return NULL; + snprintf(kctl->id.name, sizeof(kctl->id.name), "%s Jack", name); + kctl->id.index = idx; + kctl->private_value = 0; + return kctl; +} +EXPORT_SYMBOL_GPL(snd_kctl_jack_new); + +void snd_kctl_jack_report(struct snd_card *card, + struct snd_kcontrol *kctl, bool status) +{ + if (kctl->private_value == status) + return; + kctl->private_value = status; + snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, &kctl->id); +} +EXPORT_SYMBOL_GPL(snd_kctl_jack_report); --- linux-3.2.0.orig/sound/core/Kconfig +++ linux-3.2.0/sound/core/Kconfig @@ -207,6 +207,9 @@ config SND_VMASTER bool +config SND_KCTL_JACK + bool + config SND_DMA_SGBUF def_bool y depends on X86 --- linux-3.2.0.orig/sound/core/Makefile +++ linux-3.2.0/sound/core/Makefile @@ -7,6 +7,7 @@ snd-$(CONFIG_ISA_DMA_API) += isadma.o snd-$(CONFIG_SND_OSSEMUL) += sound_oss.o info_oss.o snd-$(CONFIG_SND_VMASTER) += vmaster.o +snd-$(CONFIG_SND_KCTL_JACK) += ctljack.o snd-$(CONFIG_SND_JACK) += jack.o snd-pcm-objs := pcm.o pcm_native.o pcm_lib.o pcm_timer.o pcm_misc.o \ --- linux-3.2.0.orig/sound/usb/endpoint.c +++ linux-3.2.0/sound/usb/endpoint.c @@ -17,6 +17,7 @@ #include #include +#include #include #include @@ -458,8 +459,8 @@ for (i = 0; i < urb->number_of_packets; i++) { cp = (unsigned char *)urb->transfer_buffer + urb->iso_frame_desc[i].offset; - if (urb->iso_frame_desc[i].status) { - snd_printd(KERN_ERR "frame %d active: %d\n", i, urb->iso_frame_desc[i].status); + if (urb->iso_frame_desc[i].status && printk_ratelimit()) { + snd_printdd("frame %d active: %d\n", i, urb->iso_frame_desc[i].status); // continue; } bytes = urb->iso_frame_desc[i].actual_length; --- linux-3.2.0.orig/sound/usb/usx2y/usb_stream.c +++ linux-3.2.0/sound/usb/usx2y/usb_stream.c @@ -674,7 +674,7 @@ inurb->transfer_buffer_length = inurb->number_of_packets * inurb->iso_frame_desc[0].length; - preempt_disable(); + if (u == 0) { int now; struct usb_device *dev = inurb->dev; @@ -686,19 +686,17 @@ } err = usb_submit_urb(inurb, GFP_ATOMIC); if (err < 0) { - preempt_enable(); snd_printk(KERN_ERR"usb_submit_urb(sk->inurb[%i])" " returned %i\n", u, err); return err; } err = usb_submit_urb(outurb, GFP_ATOMIC); if (err < 0) { - preempt_enable(); snd_printk(KERN_ERR"usb_submit_urb(sk->outurb[%i])" " returned %i\n", u, err); return err; } - preempt_enable(); + if (inurb->start_frame != outurb->start_frame) { snd_printd(KERN_DEBUG "u[%i] start_frames differ in:%u out:%u\n", --- linux-3.2.0.orig/include/Kbuild +++ linux-3.2.0/include/Kbuild @@ -9,4 +9,3 @@ header-y += video/ header-y += drm/ header-y += xen/ -header-y += scsi/ --- linux-3.2.0.orig/include/sound/control.h +++ linux-3.2.0/include/sound/control.h @@ -227,4 +227,12 @@ return _snd_ctl_add_slave(master, slave, SND_CTL_SLAVE_NEED_UPDATE); } +/* + * Helper functions for jack-detection controls + */ +struct snd_kcontrol * +snd_kctl_jack_new(const char *name, int idx, void *private_data); +void snd_kctl_jack_report(struct snd_card *card, + struct snd_kcontrol *kctl, bool status); + #endif /* __SOUND_CONTROL_H */ --- linux-3.2.0.orig/include/video/omapdss.h +++ linux-3.2.0/include/video/omapdss.h @@ -575,6 +575,11 @@ int (*get_backlight)(struct omap_dss_device *dssdev); }; +struct omap_dss_hdmi_data +{ + int hpd_gpio; +}; + struct omap_dss_driver { struct device_driver driver; --- linux-3.2.0.orig/include/target/target_core_base.h +++ linux-3.2.0/include/target/target_core_base.h @@ -34,6 +34,7 @@ #define TRANSPORT_SENSE_BUFFER SCSI_SENSE_BUFFERSIZE /* Used by transport_send_check_condition_and_sense() */ #define SPC_SENSE_KEY_OFFSET 2 +#define SPC_ADD_SENSE_LEN_OFFSET 7 #define SPC_ASC_KEY_OFFSET 12 #define SPC_ASCQ_KEY_OFFSET 13 #define TRANSPORT_IQN_LEN 224 @@ -485,6 +486,7 @@ struct scatterlist *t_data_sg; unsigned int t_data_nents; + void *t_data_vmap; struct scatterlist *t_bidi_data_sg; unsigned int t_bidi_data_nents; --- linux-3.2.0.orig/include/target/target_core_transport.h +++ linux-3.2.0/include/target/target_core_transport.h @@ -129,8 +129,8 @@ struct target_core_fabric_ops *, struct se_session *, u32, int, int, unsigned char *); -void *transport_kmap_first_data_page(struct se_cmd *cmd); -void transport_kunmap_first_data_page(struct se_cmd *cmd); +void *transport_kmap_data_sg(struct se_cmd *); +void transport_kunmap_data_sg(struct se_cmd *); extern int transport_generic_allocate_tasks(struct se_cmd *, unsigned char *); extern int transport_handle_cdb_direct(struct se_cmd *); extern int transport_generic_handle_cdb_map(struct se_cmd *); --- linux-3.2.0.orig/include/media/tuner.h +++ linux-3.2.0/include/media/tuner.h @@ -127,7 +127,6 @@ #define TUNER_PHILIPS_FMD1216MEX_MK3 78 #define TUNER_PHILIPS_FM1216MK5 79 #define TUNER_PHILIPS_FQ1216LME_MK3 80 /* Active loopthrough, no FM */ -#define TUNER_XC4000 81 /* Xceive Silicon Tuner */ #define TUNER_PARTSNIC_PTI_5NF05 81 #define TUNER_PHILIPS_CU1216L 82 @@ -136,6 +135,8 @@ #define TUNER_PHILIPS_FQ1236_MK5 85 /* NTSC, TDA9885, no FM radio */ #define TUNER_TENA_TNF_5337 86 +#define TUNER_XC4000 87 /* Xceive Silicon Tuner */ + /* tv card specific */ #define TDA9887_PRESENT (1<<0) #define TDA9887_PORT1_INACTIVE (1<<1) --- linux-3.2.0.orig/include/trace/events/vfs.h +++ linux-3.2.0/include/trace/events/vfs.h @@ -0,0 +1,53 @@ +#undef TRACE_SYSTEM +#define TRACE_SYSTEM vfs + +#if !defined(_TRACE_VFS_H) || defined(TRACE_HEADER_MULTI_READ) +#define _TRACE_VFS_H + +/* + * Tracepoint for dirtying an inode: + */ +TRACE_EVENT(dirty_inode, + + TP_PROTO(struct inode *inode, struct task_struct *task), + + TP_ARGS(inode, task), + + TP_STRUCT__entry( + __array( char, comm, TASK_COMM_LEN ) + __field( pid_t, pid ) + __array( char, dev, 16 ) + __array( char, file, 32 ) + ), + + TP_fast_assign( + if (inode->i_ino || strcmp(inode->i_sb->s_id, "bdev")) { + struct dentry *dentry; + const char *name = "?"; + + dentry = d_find_alias(inode); + if (dentry) { + spin_lock(&dentry->d_lock); + name = (const char *) dentry->d_name.name; + } + + memcpy(__entry->comm, task->comm, TASK_COMM_LEN); + __entry->pid = task->pid; + strlcpy(__entry->file, name, 32); + strlcpy(__entry->dev, inode->i_sb->s_id, 16); + + if (dentry) { + spin_unlock(&dentry->d_lock); + dput(dentry); + } + } + ), + + TP_printk("task=%i (%s) file=%s dev=%s", + __entry->pid, __entry->comm, __entry->file, __entry->dev) +); + +#endif /* _TRACE_VFS_H */ + +/* This part must be outside protection */ +#include --- linux-3.2.0.orig/include/trace/events/fs.h +++ linux-3.2.0/include/trace/events/fs.h @@ -0,0 +1,53 @@ +#undef TRACE_SYSTEM +#define TRACE_SYSTEM fs + +#if !defined(_TRACE_FS_H) || defined(TRACE_HEADER_MULTI_READ) +#define _TRACE_FS_H + +#include +#include + +TRACE_EVENT(do_sys_open, + + TP_PROTO(char *filename, int flags, int mode), + + TP_ARGS(filename, flags, mode), + + TP_STRUCT__entry( + __string( filename, filename ) + __field( int, flags ) + __field( int, mode ) + ), + + TP_fast_assign( + __assign_str(filename, filename); + __entry->flags = flags; + __entry->mode = mode; + ), + + TP_printk("\"%s\" %x %o", + __get_str(filename), __entry->flags, __entry->mode) +); + +TRACE_EVENT(open_exec, + + TP_PROTO(char *filename), + + TP_ARGS(filename), + + TP_STRUCT__entry( + __string( filename, filename ) + ), + + TP_fast_assign( + __assign_str(filename, filename); + ), + + TP_printk("\"%s\"", + __get_str(filename)) +); + +#endif /* _TRACE_FS_H */ + +/* This part must be outside protection */ +#include --- linux-3.2.0.orig/include/trace/events/writeback.h +++ linux-3.2.0/include/trace/events/writeback.h @@ -47,7 +47,10 @@ __field(int, reason) ), TP_fast_assign( - strncpy(__entry->name, dev_name(bdi->dev), 32); + struct device *dev = bdi->dev; + if (!dev) + dev = default_backing_dev_info.dev; + strncpy(__entry->name, dev_name(dev), 32); __entry->nr_pages = work->nr_pages; __entry->sb_dev = work->sb ? work->sb->s_dev : 0; __entry->sync_mode = work->sync_mode; @@ -418,7 +421,7 @@ TP_fast_assign( strncpy(__entry->name, - dev_name(inode->i_mapping->backing_dev_info->dev), 32); + dev_name(inode_to_bdi(inode)->dev), 32); __entry->ino = inode->i_ino; __entry->state = inode->i_state; __entry->dirtied_when = inode->dirtied_when; --- linux-3.2.0.orig/include/asm-generic/poll.h +++ linux-3.2.0/include/asm-generic/poll.h @@ -28,6 +28,8 @@ #define POLLRDHUP 0x2000 #endif +#define POLLFREE 0x4000 /* currently only for epoll */ + struct pollfd { int fd; short events; --- linux-3.2.0.orig/include/asm-generic/vmlinux.lds.h +++ linux-3.2.0/include/asm-generic/vmlinux.lds.h @@ -622,6 +622,7 @@ *(.initcall0s.init) \ *(.initcall1.init) \ *(.initcall1s.init) \ + *(.initcallearlyrootfs.init) \ *(.initcall2.init) \ *(.initcall2s.init) \ *(.initcall3.init) \ --- linux-3.2.0.orig/include/asm-generic/statfs.h +++ linux-3.2.0/include/asm-generic/statfs.h @@ -15,7 +15,7 @@ * with a 10' pole. */ #ifndef __statfs_word -#if BITS_PER_LONG == 64 +#if __BITS_PER_LONG == 64 #define __statfs_word long #else #define __statfs_word __u32 --- linux-3.2.0.orig/include/asm-generic/unistd.h +++ linux-3.2.0/include/asm-generic/unistd.h @@ -218,7 +218,7 @@ /* fs/sendfile.c */ #define __NR3264_sendfile 71 -__SC_3264(__NR3264_sendfile, sys_sendfile64, sys_sendfile) +__SYSCALL(__NR3264_sendfile, sys_sendfile64) /* fs/select.c */ #define __NR_pselect6 72 --- linux-3.2.0.orig/include/asm-generic/siginfo.h +++ linux-3.2.0/include/asm-generic/siginfo.h @@ -90,9 +90,18 @@ __ARCH_SI_BAND_T _band; /* POLL_IN, POLL_OUT, POLL_MSG */ int _fd; } _sigpoll; + + /* SIGSYS */ + struct { + void __user *_call_addr; /* calling user insn */ + int _syscall; /* triggering system call number */ + unsigned int _arch; /* AUDIT_ARCH_* of syscall */ + } _sigsys; } _sifields; } siginfo_t; +/* If the arch shares siginfo, then it has SIGSYS. */ +#define __ARCH_SIGSYS #endif /* @@ -116,6 +125,11 @@ #define si_addr_lsb _sifields._sigfault._addr_lsb #define si_band _sifields._sigpoll._band #define si_fd _sifields._sigpoll._fd +#ifdef __ARCH_SIGSYS +#define si_call_addr _sifields._sigsys._call_addr +#define si_syscall _sifields._sigsys._syscall +#define si_arch _sifields._sigsys._arch +#endif #ifdef __KERNEL__ #define __SI_MASK 0xffff0000u @@ -126,6 +140,7 @@ #define __SI_CHLD (4 << 16) #define __SI_RT (5 << 16) #define __SI_MESGQ (6 << 16) +#define __SI_SYS (7 << 16) #define __SI_CODE(T,N) ((T) | ((N) & 0xffff)) #else #define __SI_KILL 0 @@ -135,6 +150,7 @@ #define __SI_CHLD 0 #define __SI_RT 0 #define __SI_MESGQ 0 +#define __SI_SYS 0 #define __SI_CODE(T,N) (N) #endif @@ -232,6 +248,12 @@ #define NSIGPOLL 6 /* + * SIGSYS si_codes + */ +#define SYS_SECCOMP (__SI_SYS|1) /* seccomp triggered */ +#define NSIGSYS 1 + +/* * sigevent definitions * * It seems likely that SIGEV_THREAD will have to be handled from --- linux-3.2.0.orig/include/asm-generic/pgtable.h +++ linux-3.2.0/include/asm-generic/pgtable.h @@ -425,6 +425,8 @@ unsigned long size); #endif +#ifdef CONFIG_MMU + #ifndef CONFIG_TRANSPARENT_HUGEPAGE static inline int pmd_trans_huge(pmd_t pmd) { @@ -441,7 +443,66 @@ return 0; } #endif /* __HAVE_ARCH_PMD_WRITE */ +#endif /* CONFIG_TRANSPARENT_HUGEPAGE */ + +/* + * This function is meant to be used by sites walking pagetables with + * the mmap_sem hold in read mode to protect against MADV_DONTNEED and + * transhuge page faults. MADV_DONTNEED can convert a transhuge pmd + * into a null pmd and the transhuge page fault can convert a null pmd + * into an hugepmd or into a regular pmd (if the hugepage allocation + * fails). While holding the mmap_sem in read mode the pmd becomes + * stable and stops changing under us only if it's not null and not a + * transhuge pmd. When those races occurs and this function makes a + * difference vs the standard pmd_none_or_clear_bad, the result is + * undefined so behaving like if the pmd was none is safe (because it + * can return none anyway). The compiler level barrier() is critically + * important to compute the two checks atomically on the same pmdval. + */ +static inline int pmd_none_or_trans_huge_or_clear_bad(pmd_t *pmd) +{ + /* depend on compiler for an atomic pmd read */ + pmd_t pmdval = *pmd; + /* + * The barrier will stabilize the pmdval in a register or on + * the stack so that it will stop changing under the code. + */ +#ifdef CONFIG_TRANSPARENT_HUGEPAGE + barrier(); #endif + if (pmd_none(pmdval)) + return 1; + if (unlikely(pmd_bad(pmdval))) { + if (!pmd_trans_huge(pmdval)) + pmd_clear_bad(pmd); + return 1; + } + return 0; +} + +/* + * This is a noop if Transparent Hugepage Support is not built into + * the kernel. Otherwise it is equivalent to + * pmd_none_or_trans_huge_or_clear_bad(), and shall only be called in + * places that already verified the pmd is not none and they want to + * walk ptes while holding the mmap sem in read mode (write mode don't + * need this). If THP is not enabled, the pmd can't go away under the + * code even if MADV_DONTNEED runs, but if THP is enabled we need to + * run a pmd_trans_unstable before walking the ptes after + * split_huge_page_pmd returns (because it may have run when the pmd + * become null, but then a page fault can map in a THP and not a + * regular page). + */ +static inline int pmd_trans_unstable(pmd_t *pmd) +{ +#ifdef CONFIG_TRANSPARENT_HUGEPAGE + return pmd_none_or_trans_huge_or_clear_bad(pmd); +#else + return 0; +#endif +} + +#endif /* CONFIG_MMU */ #endif /* !__ASSEMBLY__ */ --- linux-3.2.0.orig/include/asm-generic/syscall.h +++ linux-3.2.0/include/asm-generic/syscall.h @@ -142,4 +142,18 @@ unsigned int i, unsigned int n, const unsigned long *args); +/** + * syscall_get_arch - return the AUDIT_ARCH for the current system call + * @task: task of interest, must be in system call entry tracing + * @regs: task_pt_regs() of @task + * + * Returns the AUDIT_ARCH_* based on the system call convention in use. + * + * It's only valid to call this when @task is stopped on entry to a system + * call, due to %TIF_SYSCALL_TRACE, %TIF_SYSCALL_AUDIT, or %TIF_SECCOMP. + * + * Note, at present this function is only required with + * CONFIG_HAVE_ARCH_SECCOMP_FILTER. + */ +int syscall_get_arch(struct task_struct *task, struct pt_regs *regs); #endif /* _ASM_SYSCALL_H */ --- linux-3.2.0.orig/include/drm/drm_crtc.h +++ linux-3.2.0/include/drm/drm_crtc.h @@ -814,6 +814,7 @@ int hdisplay, int vdisplay); extern int drm_edid_header_is_valid(const u8 *raw_edid); +extern bool drm_edid_block_valid(u8 *raw_edid); extern bool drm_edid_is_valid(struct edid *edid); struct drm_display_mode *drm_mode_find_dmt(struct drm_device *dev, int hsize, int vsize, int fresh); --- linux-3.2.0.orig/include/drm/drmP.h +++ linux-3.2.0/include/drm/drmP.h @@ -1328,6 +1328,7 @@ struct drm_file *file_priv); extern int drm_authmagic(struct drm_device *dev, void *data, struct drm_file *file_priv); +extern int drm_remove_magic(struct drm_master *master, drm_magic_t magic); /* Cache management (drm_cache.c) */ void drm_clflush_pages(struct page *pages[], unsigned long num_pages); --- linux-3.2.0.orig/include/drm/drm_edid.h +++ linux-3.2.0/include/drm/drm_edid.h @@ -238,5 +238,6 @@ struct drm_display_mode *mode); struct drm_connector *drm_select_eld(struct drm_encoder *encoder, struct drm_display_mode *mode); +int drm_load_edid_firmware(struct drm_connector *connector); #endif /* __DRM_EDID_H__ */ --- linux-3.2.0.orig/include/acpi/acpi_numa.h +++ linux-3.2.0/include/acpi/acpi_numa.h @@ -15,6 +15,7 @@ extern int node_to_pxm(int); extern void __acpi_map_pxm_to_node(int, int); extern int acpi_map_pxm_to_node(int); +extern unsigned char acpi_srat_revision; #endif /* CONFIG_ACPI_NUMA */ #endif /* __ACP_NUMA_H */ --- linux-3.2.0.orig/include/xen/events.h +++ linux-3.2.0/include/xen/events.h @@ -96,6 +96,9 @@ /* Return the pirq allocated to the irq. */ int xen_pirq_from_irq(unsigned irq); +/* Return the irq allocated to the gsi */ +int xen_irq_from_gsi(unsigned gsi); + /* Determine whether to ignore this IRQ if it is passed to a guest. */ int xen_test_irq_shared(int irq); --- linux-3.2.0.orig/include/xen/interface/platform.h +++ linux-3.2.0/include/xen/interface/platform.h @@ -297,6 +297,22 @@ }; DEFINE_GUEST_HANDLE_STRUCT(xenpf_set_processor_pminfo); +#define XENPF_get_cpuinfo 55 +struct xenpf_pcpuinfo { + /* IN */ + uint32_t xen_cpuid; + /* OUT */ + /* The maxium cpu_id that is present */ + uint32_t max_present; +#define XEN_PCPU_FLAGS_ONLINE 1 + /* Correponding xen_cpuid is not present*/ +#define XEN_PCPU_FLAGS_INVALID 2 + uint32_t flags; + uint32_t apic_id; + uint32_t acpi_id; +}; +DEFINE_GUEST_HANDLE_STRUCT(xenpf_pcpuinfo); + struct xen_platform_op { uint32_t cmd; uint32_t interface_version; /* XENPF_INTERFACE_VERSION */ @@ -312,6 +328,7 @@ struct xenpf_change_freq change_freq; struct xenpf_getidletime getidletime; struct xenpf_set_processor_pminfo set_pminfo; + struct xenpf_pcpuinfo pcpu_info; uint8_t pad[128]; } u; }; --- linux-3.2.0.orig/include/xen/interface/io/blkif.h +++ linux-3.2.0/include/xen/interface/io/blkif.h @@ -142,6 +142,18 @@ DEFINE_RING_TYPES(blkif, struct blkif_request, struct blkif_response); +/* + * Maximum number of pages used for a blkif ring + * max-ring-pages advertised by blkback to blkfront may be lowered at blkback + * mod load time. Load time param set to default. + */ +#define BLKIF_MAX_NUM_RING_PAGES 16 +#define BLKIF_MAX_NUM_RING_PAGES_DFLT 4 +#if BLKIF_MAX_NUM_RING_PAGES < BLKIF_MAX_NUM_RING_PAGES_DFLT +#undef BLKIF_MAX_NUM_RING_PAGES_DFLT +#define BLKIF_MAX_NUM_RING_PAGES_DFLT BLKIF_MAX_NUM_RING_PAGES +#endif + #define VDISK_CDROM 0x1 #define VDISK_REMOVABLE 0x2 #define VDISK_READONLY 0x4 --- linux-3.2.0.orig/include/xen/interface/io/xs_wire.h +++ linux-3.2.0/include/xen/interface/io/xs_wire.h @@ -87,4 +87,7 @@ XENSTORE_RING_IDX rsp_cons, rsp_prod; }; +/* Violating this is very bad. See docs/misc/xenstore.txt. */ +#define XENSTORE_PAYLOAD_MAX 4096 + #endif /* _XS_WIRE_H */ --- linux-3.2.0.orig/include/linux/vt_kern.h +++ linux-3.2.0/include/linux/vt_kern.h @@ -130,7 +130,7 @@ void vt_event_post(unsigned int event, unsigned int old, unsigned int new); int vt_waitactive(int n); void change_console(struct vc_data *new_vc); -void reset_vc(struct vc_data *vc); +void reset_vc(struct vc_data *vc, int mode); extern int unbind_con_driver(const struct consw *csw, int first, int last, int deflt); int vty_init(const struct file_operations *console_fops); --- linux-3.2.0.orig/include/linux/splice.h +++ linux-3.2.0/include/linux/splice.h @@ -91,4 +91,10 @@ extern void spd_release_page(struct splice_pipe_desc *, unsigned int); extern const struct pipe_buf_operations page_cache_pipe_buf_ops; + +extern long do_splice_from(struct pipe_inode_info *pipe, struct file *out, + loff_t *ppos, size_t len, unsigned int flags); +extern long do_splice_to(struct file *in, loff_t *ppos, + struct pipe_inode_info *pipe, size_t len, + unsigned int flags); #endif --- linux-3.2.0.orig/include/linux/cpufreq.h +++ linux-3.2.0/include/linux/cpufreq.h @@ -35,6 +35,7 @@ #ifdef CONFIG_CPU_FREQ int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list); int cpufreq_unregister_notifier(struct notifier_block *nb, unsigned int list); +extern void disable_cpufreq(void); #else /* CONFIG_CPU_FREQ */ static inline int cpufreq_register_notifier(struct notifier_block *nb, unsigned int list) @@ -46,6 +47,7 @@ { return 0; } +static inline void disable_cpufreq(void) { } #endif /* CONFIG_CPU_FREQ */ /* if (cpufreq_driver->target) exists, the ->governor decides what frequency --- linux-3.2.0.orig/include/linux/moduleparam.h +++ linux-3.2.0/include/linux/moduleparam.h @@ -292,7 +292,7 @@ char *args, const struct kernel_param *params, unsigned num, - int (*unknown)(char *param, char *val)); + int (*handle)(char *param, char *val, int known)); /* Called by module remove. */ #ifdef CONFIG_SYSFS --- linux-3.2.0.orig/include/linux/namei.h +++ linux-3.2.0/include/linux/namei.h @@ -85,6 +85,7 @@ extern struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry, int (*open)(struct inode *, struct file *)); +extern struct dentry *lookup_hash(struct nameidata *nd); extern struct dentry *lookup_one_len(const char *, struct dentry *, int); extern int follow_down_one(struct path *); --- linux-3.2.0.orig/include/linux/pm_qos.h +++ linux-3.2.0/include/linux/pm_qos.h @@ -107,7 +107,19 @@ { return; } static inline int pm_qos_request(int pm_qos_class) - { return 0; } +{ + switch (pm_qos_class) { + case PM_QOS_CPU_DMA_LATENCY: + return PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE; + case PM_QOS_NETWORK_LATENCY: + return PM_QOS_NETWORK_LAT_DEFAULT_VALUE; + case PM_QOS_NETWORK_THROUGHPUT: + return PM_QOS_NETWORK_THROUGHPUT_DEFAULT_VALUE; + default: + return PM_QOS_DEFAULT_VALUE; + } +} + static inline int pm_qos_add_notifier(int pm_qos_class, struct notifier_block *notifier) { return 0; } --- linux-3.2.0.orig/include/linux/init.h +++ linux-3.2.0/include/linux/init.h @@ -195,6 +195,7 @@ #define core_initcall(fn) __define_initcall("1",fn,1) #define core_initcall_sync(fn) __define_initcall("1s",fn,1s) +#define earlyrootfs_initcall(fn) __define_initcall("earlyrootfs",fn,rootfs) #define postcore_initcall(fn) __define_initcall("2",fn,2) #define postcore_initcall_sync(fn) __define_initcall("2s",fn,2s) #define arch_initcall(fn) __define_initcall("3",fn,3) --- linux-3.2.0.orig/include/linux/rtc.h +++ linux-3.2.0/include/linux/rtc.h @@ -202,7 +202,8 @@ struct hrtimer pie_timer; /* sub second exp, so needs hrtimer */ int pie_enabled; struct work_struct irqwork; - + /* Some hardware can't support UIE mode */ + int uie_unsupported; #ifdef CONFIG_RTC_INTF_DEV_UIE_EMUL struct work_struct uie_task; --- linux-3.2.0.orig/include/linux/signalfd.h +++ linux-3.2.0/include/linux/signalfd.h @@ -61,13 +61,16 @@ wake_up(&tsk->sighand->signalfd_wqh); } +extern void signalfd_cleanup(struct sighand_struct *sighand); + #else /* CONFIG_SIGNALFD */ static inline void signalfd_notify(struct task_struct *tsk, int sig) { } +static inline void signalfd_cleanup(struct sighand_struct *sighand) { } + #endif /* CONFIG_SIGNALFD */ #endif /* __KERNEL__ */ #endif /* _LINUX_SIGNALFD_H */ - --- linux-3.2.0.orig/include/linux/shmem_fs.h +++ linux-3.2.0/include/linux/shmem_fs.h @@ -48,6 +48,7 @@ loff_t size, unsigned long flags); extern int shmem_zero_setup(struct vm_area_struct *); extern int shmem_lock(struct file *file, int lock, struct user_struct *user); +extern void shmem_unlock_mapping(struct address_space *mapping); extern struct page *shmem_read_mapping_page_gfp(struct address_space *mapping, pgoff_t index, gfp_t gfp_mask); extern void shmem_truncate_range(struct inode *inode, loff_t start, loff_t end); --- linux-3.2.0.orig/include/linux/seccomp.h +++ linux-3.2.0/include/linux/seccomp.h @@ -1,25 +1,89 @@ #ifndef _LINUX_SECCOMP_H #define _LINUX_SECCOMP_H +#include +#include + +/* Valid values for seccomp.mode and prctl(PR_SET_SECCOMP, ) */ +#define SECCOMP_MODE_DISABLED 0 /* seccomp is not in use. */ +#define SECCOMP_MODE_STRICT 1 /* uses hard-coded filter. */ +#define SECCOMP_MODE_FILTER 2 /* uses user-supplied filter. */ + +/* + * All BPF programs must return a 32-bit value. + * The bottom 16-bits are for optional return data. + * The upper 16-bits are ordered from least permissive values to most. + * + * The ordering ensures that a min_t() over composed return values always + * selects the least permissive choice. + */ +#define SECCOMP_RET_KILL 0x00000000U /* kill the task immediately */ +#define SECCOMP_RET_TRAP 0x00030000U /* disallow and force a SIGSYS */ +#define SECCOMP_RET_ERRNO 0x00050000U /* returns an errno */ +#define SECCOMP_RET_TRACE 0x7ff00000U /* pass to a tracer or disallow */ +#define SECCOMP_RET_ALLOW 0x7fff0000U /* allow */ + +/* Masks for the return value sections. */ +#define SECCOMP_RET_ACTION 0xffff0000U +#define SECCOMP_RET_DATA 0x0000ffffU + +/** + * struct seccomp_data - the format the BPF program executes over. + * @nr: the system call number + * @arch: indicates system call convention as an AUDIT_ARCH_* value + * as defined in . + * @instruction_pointer: at the time of the system call. + * @args: up to 6 system call arguments always stored as 64-bit values + * regardless of the architecture. + */ +struct seccomp_data { + int nr; + __u32 arch; + __u64 instruction_pointer; + __u64 args[6]; +}; + +#ifdef __KERNEL__ #ifdef CONFIG_SECCOMP #include #include -typedef struct { int mode; } seccomp_t; - -extern void __secure_computing(int); -static inline void secure_computing(int this_syscall) +struct seccomp_filter; +/** + * struct seccomp - the state of a seccomp'ed process + * + * @mode: indicates one of the valid values above for controlled + * system calls available to a process. + * @filter: The metadata and ruleset for determining what system calls + * are allowed for a task. + * + * @filter must only be accessed from the context of current as there + * is no locking. + */ +struct seccomp { + int mode; + struct seccomp_filter *filter; +}; + +/* + * Direct callers to __secure_computing should be updated as + * CONFIG_HAVE_ARCH_SECCOMP_FILTER propagates. + */ +extern void __secure_computing(int) __deprecated; +extern int __secure_computing_int(int); +static inline int secure_computing(int this_syscall) { if (unlikely(test_thread_flag(TIF_SECCOMP))) - __secure_computing(this_syscall); + return __secure_computing_int(this_syscall); + return 0; } extern long prctl_get_seccomp(void); -extern long prctl_set_seccomp(unsigned long); +extern long prctl_set_seccomp(unsigned long, char __user *); -static inline int seccomp_mode(seccomp_t *s) +static inline int seccomp_mode(struct seccomp *s) { return s->mode; } @@ -28,25 +92,40 @@ #include -typedef struct { } seccomp_t; +struct seccomp { }; +struct seccomp_filter { }; -#define secure_computing(x) do { } while (0) +#define secure_computing(x) 0 static inline long prctl_get_seccomp(void) { return -EINVAL; } -static inline long prctl_set_seccomp(unsigned long arg2) +static inline long prctl_set_seccomp(unsigned long arg2, char __user *arg3) { return -EINVAL; } -static inline int seccomp_mode(seccomp_t *s) +static inline int seccomp_mode(struct seccomp *s) { return 0; } - #endif /* CONFIG_SECCOMP */ +#ifdef CONFIG_SECCOMP_FILTER +extern void put_seccomp_filter(struct task_struct *tsk); +extern void get_seccomp_filter(struct task_struct *tsk); +extern u32 seccomp_bpf_load(int off); +#else /* CONFIG_SECCOMP_FILTER */ +static inline void put_seccomp_filter(struct task_struct *tsk) +{ + return; +} +static inline void get_seccomp_filter(struct task_struct *tsk) +{ + return; +} +#endif /* CONFIG_SECCOMP_FILTER */ +#endif /* __KERNEL__ */ #endif /* _LINUX_SECCOMP_H */ --- linux-3.2.0.orig/include/linux/filter.h +++ linux-3.2.0/include/linux/filter.h @@ -10,6 +10,7 @@ #ifdef __KERNEL__ #include +#include #endif /* @@ -132,6 +133,16 @@ #ifdef __KERNEL__ +#ifdef CONFIG_COMPAT +/* + * A struct sock_filter is architecture independent. + */ +struct compat_sock_fprog { + u16 len; + compat_uptr_t filter; /* struct sock_filter * */ +}; +#endif + struct sk_buff; struct sock; @@ -228,6 +239,7 @@ BPF_S_ANC_HATYPE, BPF_S_ANC_RXHASH, BPF_S_ANC_CPU, + BPF_S_ANC_SECCOMP_LD_W, }; #endif /* __KERNEL__ */ --- linux-3.2.0.orig/include/linux/audit.h +++ linux-3.2.0/include/linux/audit.h @@ -430,6 +430,7 @@ extern void __audit_inode(const char *name, const struct dentry *dentry); extern void __audit_inode_child(const struct dentry *dentry, const struct inode *parent); +extern void __audit_seccomp(unsigned long syscall, long signr, int code); extern void __audit_ptrace(struct task_struct *t); static inline int audit_dummy_context(void) @@ -453,6 +454,11 @@ } void audit_core_dumps(long signr); +static inline void audit_seccomp(unsigned long syscall, long signr, int code) +{ + __audit_seccomp(syscall, signr, code); +} + static inline void audit_ptrace(struct task_struct *t) { if (unlikely(!audit_dummy_context())) @@ -558,6 +564,7 @@ #define audit_inode(n,d) do { (void)(d); } while (0) #define audit_inode_child(i,p) do { ; } while (0) #define audit_core_dumps(i) do { ; } while (0) +#define audit_seccomp(i,s,c) do { ; } while (0) #define auditsc_get_stamp(c,t,s) (0) #define audit_get_loginuid(t) (-1) #define audit_get_sessionid(t) (-1) --- linux-3.2.0.orig/include/linux/efi.h +++ linux-3.2.0/include/linux/efi.h @@ -383,7 +383,18 @@ #define EFI_VARIABLE_NON_VOLATILE 0x0000000000000001 #define EFI_VARIABLE_BOOTSERVICE_ACCESS 0x0000000000000002 #define EFI_VARIABLE_RUNTIME_ACCESS 0x0000000000000004 +#define EFI_VARIABLE_HARDWARE_ERROR_RECORD 0x0000000000000008 +#define EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS 0x0000000000000010 +#define EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS 0x0000000000000020 +#define EFI_VARIABLE_APPEND_WRITE 0x0000000000000040 +#define EFI_VARIABLE_MASK (EFI_VARIABLE_NON_VOLATILE | \ + EFI_VARIABLE_BOOTSERVICE_ACCESS | \ + EFI_VARIABLE_RUNTIME_ACCESS | \ + EFI_VARIABLE_HARDWARE_ERROR_RECORD | \ + EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS | \ + EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS | \ + EFI_VARIABLE_APPEND_WRITE) /* * EFI Device Path information */ --- linux-3.2.0.orig/include/linux/blkdev.h +++ linux-3.2.0/include/linux/blkdev.h @@ -675,6 +675,9 @@ struct request *rq); extern void blk_delay_queue(struct request_queue *, unsigned long); extern void blk_recount_segments(struct request_queue *, struct bio *); +extern int scsi_verify_blk_ioctl(struct block_device *, unsigned int); +extern int scsi_cmd_blk_ioctl(struct block_device *, fmode_t, + unsigned int, void __user *); extern int scsi_cmd_ioctl(struct request_queue *, struct gendisk *, fmode_t, unsigned int, void __user *); extern int sg_scsi_ioctl(struct request_queue *, struct gendisk *, fmode_t, --- linux-3.2.0.orig/include/linux/mm.h +++ linux-3.2.0/include/linux/mm.h @@ -1396,7 +1396,13 @@ unsigned long addr, unsigned long len, unsigned long flags, struct page **pages); -extern unsigned long get_unmapped_area(struct file *, unsigned long, unsigned long, unsigned long, unsigned long); +extern unsigned long get_unmapped_area_prot(struct file *, unsigned long, unsigned long, unsigned long, unsigned long, int); + +static inline unsigned long get_unmapped_area(struct file *file, unsigned long addr, + unsigned long len, unsigned long pgoff, unsigned long flags) +{ + return get_unmapped_area_prot(file, addr, len, pgoff, flags, 0); +} extern unsigned long do_mmap_pgoff(struct file *file, unsigned long addr, unsigned long len, unsigned long prot, --- linux-3.2.0.orig/include/linux/pipe_fs_i.h +++ linux-3.2.0/include/linux/pipe_fs_i.h @@ -8,6 +8,7 @@ #define PIPE_BUF_FLAG_LRU 0x01 /* page is on the LRU */ #define PIPE_BUF_FLAG_ATOMIC 0x02 /* was atomically mapped */ #define PIPE_BUF_FLAG_GIFT 0x04 /* page is a gift */ +#define PIPE_BUF_FLAG_PACKET 0x08 /* read() as a packet */ /** * struct pipe_buffer - a linux kernel pipe buffer --- linux-3.2.0.orig/include/linux/bitops.h +++ linux-3.2.0/include/linux/bitops.h @@ -50,6 +50,26 @@ } /** + * rol64 - rotate a 64-bit value left + * @word: value to rotate + * @shift: bits to roll + */ +static inline __u64 rol64(__u64 word, unsigned int shift) +{ + return (word << shift) | (word >> (64 - shift)); +} + +/** + * ror64 - rotate a 64-bit value right + * @word: value to rotate + * @shift: bits to roll + */ +static inline __u64 ror64(__u64 word, unsigned int shift) +{ + return (word >> shift) | (word << (64 - shift)); +} + +/** * rol32 - rotate a 32-bit value left * @word: value to rotate * @shift: bits to roll --- linux-3.2.0.orig/include/linux/fs.h +++ linux-3.2.0/include/linux/fs.h @@ -482,6 +482,12 @@ */ #include +/* + * Maximum number of layers of fs stack. Needs to be limited to + * prevent kernel stack overflow + */ +#define FILESYSTEM_MAX_STACK_DEPTH 2 + /** * enum positive_aop_returns - aop return codes with specific semantics * @@ -1001,6 +1007,7 @@ #ifdef CONFIG_EPOLL /* Used by fs/eventpoll.c to link all the hooks to this file */ struct list_head f_ep_links; + struct list_head f_tfile_llink; #endif /* #ifdef CONFIG_EPOLL */ struct address_space *f_mapping; #ifdef CONFIG_DEBUG_WRITECOUNT @@ -1202,6 +1209,7 @@ extern int lease_modify(struct file_lock **, int); extern int lock_may_read(struct inode *, loff_t start, unsigned long count); extern int lock_may_write(struct inode *, loff_t start, unsigned long count); +extern void locks_delete_block(struct file_lock *waiter); extern void lock_flocks(void); extern void unlock_flocks(void); #else /* !CONFIG_FILE_LOCKING */ @@ -1346,6 +1354,10 @@ return 1; } +static inline void locks_delete_block(struct file_lock *waiter) +{ +} + static inline void lock_flocks(void) { } @@ -1481,6 +1493,11 @@ int cleancache_poolid; struct shrinker s_shrink; /* per-sb shrinker handle */ + + /* + * Indicates how deep in a filesystem stack this SB is + */ + int s_stack_depth; }; /* superblock cache pruning functions */ @@ -1638,6 +1655,8 @@ void (*truncate_range)(struct inode *, loff_t, loff_t); int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64 start, u64 len); + struct file *(*open) (struct dentry *, struct file *, + const struct cred *); } ____cacheline_aligned; struct seq_file; @@ -2058,6 +2077,7 @@ extern struct file *filp_open(const char *, int, int); extern struct file *file_open_root(struct dentry *, struct vfsmount *, const char *, int); +extern struct file *vfs_open(struct path *, struct file *, const struct cred *); extern struct file * dentry_open(struct dentry *, struct vfsmount *, int, const struct cred *); extern int filp_close(struct file *, fl_owner_t id); @@ -2088,6 +2108,7 @@ extern struct block_device *bdget(dev_t); extern struct block_device *bdgrab(struct block_device *bdev); extern void bd_set_size(struct block_device *, loff_t size); +extern sector_t blkdev_max_block(struct block_device *bdev); extern void bd_forget(struct inode *inode); extern void bdput(struct block_device *); extern void invalidate_bdev(struct block_device *); --- linux-3.2.0.orig/include/linux/swap.h +++ linux-3.2.0/include/linux/swap.h @@ -194,6 +194,7 @@ struct block_device *bdev; /* swap device or bdev of swap file */ struct file *swap_file; /* seldom referenced */ unsigned int old_block_size; /* seldom referenced */ + void (*notify_swap_entry_free_fn) (unsigned long); }; struct swap_list_t { @@ -272,7 +273,7 @@ #endif extern int page_evictable(struct page *page, struct vm_area_struct *vma); -extern void scan_mapping_unevictable_pages(struct address_space *); +extern void check_move_unevictable_pages(struct page **, int nr_pages); extern unsigned long scan_unevictable_pages; extern int scan_unevictable_handler(struct ctl_table *, int, @@ -343,6 +344,7 @@ extern int reuse_swap_page(struct page *); extern int try_to_free_swap(struct page *); struct backing_dev_info; +extern void set_notify_swap_entry_free(unsigned, void (*) (unsigned long)); /* linux/mm/thrash.c */ extern struct mm_struct *swap_token_mm; --- linux-3.2.0.orig/include/linux/page-flags.h +++ linux-3.2.0/include/linux/page-flags.h @@ -107,6 +107,7 @@ #ifdef CONFIG_TRANSPARENT_HUGEPAGE PG_compound_lock, #endif + PG_readaheadunused, /* user oriented readahead as yet unused*/ __NR_PAGEFLAGS, /* Filesystems */ @@ -230,6 +231,8 @@ PAGEFLAG(Reclaim, reclaim) TESTCLEARFLAG(Reclaim, reclaim) PAGEFLAG(Readahead, reclaim) /* Reminder to do async read-ahead */ +PAGEFLAG(ReadaheadUnused, readaheadunused) + #ifdef CONFIG_HIGHMEM /* * Must use a macro here due to header dependency issues. page_zone() is not --- linux-3.2.0.orig/include/linux/freezer.h +++ linux-3.2.0/include/linux/freezer.h @@ -51,6 +51,7 @@ extern int freeze_processes(void); extern int freeze_kernel_threads(void); extern void thaw_processes(void); +extern void thaw_kernel_threads(void); static inline int try_to_freeze(void) { @@ -185,6 +186,7 @@ static inline int freeze_processes(void) { return -ENOSYS; } static inline int freeze_kernel_threads(void) { return -ENOSYS; } static inline void thaw_processes(void) {} +static inline void thaw_kernel_threads(void) {} static inline int try_to_freeze(void) { return 0; } --- linux-3.2.0.orig/include/linux/mod_devicetable.h +++ linux-3.2.0/include/linux/mod_devicetable.h @@ -542,4 +542,22 @@ kernel_ulong_t driver_data; /* data private to the driver */ }; +/** + * struct amba_id - identifies a device on an AMBA bus + * @id: The significant bits if the hardware device ID + * @mask: Bitmask specifying which bits of the id field are significant when + * matching. A driver binds to a device when ((hardware device ID) & mask) + * == id. + * @data: Private data used by the driver. + */ +struct amba_id { + unsigned int id; + unsigned int mask; +#ifndef __KERNEL__ + kernel_ulong_t data; +#else + void *data; +#endif +}; + #endif /* LINUX_MOD_DEVICETABLE_H */ --- linux-3.2.0.orig/include/linux/kmod.h +++ linux-3.2.0/include/linux/kmod.h @@ -48,11 +48,10 @@ struct cred; struct file; -enum umh_wait { - UMH_NO_WAIT = -1, /* don't wait at all */ - UMH_WAIT_EXEC = 0, /* wait for the exec, but not the process */ - UMH_WAIT_PROC = 1, /* wait for the process to complete */ -}; +#define UMH_NO_WAIT 0 /* don't wait at all */ +#define UMH_WAIT_EXEC 1 /* wait for the exec, but not the process */ +#define UMH_WAIT_PROC 2 /* wait for the process to complete */ +#define UMH_KILLABLE 4 /* wait for EXEC/PROC killable */ struct subprocess_info { struct work_struct work; @@ -60,7 +59,7 @@ char *path; char **argv; char **envp; - enum umh_wait wait; + int wait; int retval; int (*init)(struct subprocess_info *info, struct cred *new); void (*cleanup)(struct subprocess_info *info); @@ -78,21 +77,24 @@ void *data); /* Actually execute the sub-process */ -int call_usermodehelper_exec(struct subprocess_info *info, enum umh_wait wait); +int call_usermodehelper_exec(struct subprocess_info *info, int wait); /* Free the subprocess_info. This is only needed if you're not going to call call_usermodehelper_exec */ void call_usermodehelper_freeinfo(struct subprocess_info *info); +void populate_rootfs_wait(void); + static inline int -call_usermodehelper_fns(char *path, char **argv, char **envp, - enum umh_wait wait, +call_usermodehelper_fns(char *path, char **argv, char **envp, int wait, int (*init)(struct subprocess_info *info, struct cred *new), void (*cleanup)(struct subprocess_info *), void *data) { struct subprocess_info *info; gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL; + populate_rootfs_wait(); + info = call_usermodehelper_setup(path, argv, envp, gfp_mask); if (info == NULL) @@ -104,7 +106,7 @@ } static inline int -call_usermodehelper(char *path, char **argv, char **envp, enum umh_wait wait) +call_usermodehelper(char *path, char **argv, char **envp, int wait) { return call_usermodehelper_fns(path, argv, envp, wait, NULL, NULL, NULL); --- linux-3.2.0.orig/include/linux/proportions.h +++ linux-3.2.0/include/linux/proportions.h @@ -81,7 +81,11 @@ * Limit the time part in order to ensure there are some bits left for the * cycle counter and fraction multiply. */ +#if BITS_PER_LONG == 32 #define PROP_MAX_SHIFT (3*BITS_PER_LONG/4) +#else +#define PROP_MAX_SHIFT (BITS_PER_LONG/2) +#endif #define PROP_FRAC_SHIFT (BITS_PER_LONG - PROP_MAX_SHIFT - 1) #define PROP_FRAC_BASE (1UL << PROP_FRAC_SHIFT) --- linux-3.2.0.orig/include/linux/nls.h +++ linux-3.2.0/include/linux/nls.h @@ -43,7 +43,7 @@ UTF16_BIG_ENDIAN }; -/* nls.c */ +/* nls_base.c */ extern int register_nls(struct nls_table *); extern int unregister_nls(struct nls_table *); extern struct nls_table *load_nls(char *); @@ -52,7 +52,8 @@ extern int utf8_to_utf32(const u8 *s, int len, unicode_t *pu); extern int utf32_to_utf8(unicode_t u, u8 *s, int maxlen); -extern int utf8s_to_utf16s(const u8 *s, int len, wchar_t *pwcs); +extern int utf8s_to_utf16s(const u8 *s, int len, + enum utf16_endian endian, wchar_t *pwcs, int maxlen); extern int utf16s_to_utf8s(const wchar_t *pwcs, int len, enum utf16_endian endian, u8 *s, int maxlen); --- linux-3.2.0.orig/include/linux/usb.h +++ linux-3.2.0/include/linux/usb.h @@ -1221,6 +1221,7 @@ void *transfer_buffer; /* (in) associated data buffer */ dma_addr_t transfer_dma; /* (in) dma addr for transfer_buffer */ struct scatterlist *sg; /* (in) scatter gather buffer list */ + int num_mapped_sgs; /* (internal) mapped sg entries */ int num_sgs; /* (in) number of entries in the sg list */ u32 transfer_buffer_length; /* (in) data buffer length */ u32 actual_length; /* (return) actual transfer length */ @@ -1598,6 +1599,19 @@ /* ----------------------------------------------------------------------- */ +/* translate USB error codes to codes user space understands */ +static inline int usb_translate_errors(int error_code) +{ + switch (error_code) { + case 0: + case -ENOMEM: + case -ENODEV: + return error_code; + default: + return -EIO; + } +} + /* Events from the usb core */ #define USB_DEVICE_ADD 0x0001 #define USB_DEVICE_REMOVE 0x0002 --- linux-3.2.0.orig/include/linux/pci_regs.h +++ linux-3.2.0/include/linux/pci_regs.h @@ -392,7 +392,7 @@ #define PCI_EXP_TYPE_DOWNSTREAM 0x6 /* Downstream Port */ #define PCI_EXP_TYPE_PCI_BRIDGE 0x7 /* PCI/PCI-X Bridge */ #define PCI_EXP_TYPE_RC_END 0x9 /* Root Complex Integrated Endpoint */ -#define PCI_EXP_TYPE_RC_EC 0x10 /* Root Complex Event Collector */ +#define PCI_EXP_TYPE_RC_EC 0xa /* Root Complex Event Collector */ #define PCI_EXP_FLAGS_SLOT 0x0100 /* Slot implemented */ #define PCI_EXP_FLAGS_IRQ 0x3e00 /* Interrupt message number */ #define PCI_EXP_DEVCAP 4 /* Device capabilities */ --- linux-3.2.0.orig/include/linux/skbuff.h +++ linux-3.2.0/include/linux/skbuff.h @@ -458,6 +458,7 @@ union { __u32 mark; __u32 dropcount; + __u32 avail_size; }; __u16 vlan_tci; @@ -1326,6 +1327,18 @@ } /** + * skb_availroom - bytes at buffer end + * @skb: buffer to check + * + * Return the number of bytes of free space at the tail of an sk_buff + * allocated by sk_stream_alloc() + */ +static inline int skb_availroom(const struct sk_buff *skb) +{ + return skb_is_nonlinear(skb) ? 0 : skb->avail_size - skb->len; +} + +/** * skb_reserve - adjust headroom * @skb: buffer to alter * @len: bytes to move @@ -1453,6 +1466,16 @@ } #endif /* NET_SKBUFF_DATA_USES_OFFSET */ +static inline void skb_mac_header_rebuild(struct sk_buff *skb) +{ + if (skb_mac_header_was_set(skb)) { + const unsigned char *old_mac = skb_mac_header(skb); + + skb_set_mac_header(skb, -skb->mac_len); + memmove(skb_mac_header(skb), old_mac, skb->mac_len); + } +} + static inline int skb_checksum_start_offset(const struct sk_buff *skb) { return skb->csum_start - skb_headroom(skb); --- linux-3.2.0.orig/include/linux/apple_bl.h +++ linux-3.2.0/include/linux/apple_bl.h @@ -0,0 +1,26 @@ +/* + * apple_bl exported symbols + */ + +#ifndef _LINUX_APPLE_BL_H +#define _LINUX_APPLE_BL_H + +#ifdef CONFIG_BACKLIGHT_APPLE + +extern int apple_bl_register(void); +extern void apple_bl_unregister(void); + +#else /* !CONFIG_BACKLIGHT_APPLE */ + +static inline int apple_bl_register(void) +{ + return 0; +} + +static inline void apple_bl_unregister(void) +{ +} + +#endif /* !CONFIG_BACKLIGHT_APPLE */ + +#endif /* _LINUX_APPLE_BL_H */ --- linux-3.2.0.orig/include/linux/connector.h +++ linux-3.2.0/include/linux/connector.h @@ -43,6 +43,7 @@ #define CN_IDX_DRBD 0x8 #define CN_VAL_DRBD 0x1 #define CN_KVP_IDX 0x9 /* HyperV KVP */ +#define CN_KVP_VAL 0x1 /* queries from the kernel */ #define CN_NETLINK_USERS 10 /* Highest index + 1 */ --- linux-3.2.0.orig/include/linux/mm_types.h +++ linux-3.2.0/include/linux/mm_types.h @@ -294,6 +294,9 @@ unsigned long (*get_unmapped_area) (struct file *filp, unsigned long addr, unsigned long len, unsigned long pgoff, unsigned long flags); + unsigned long (*get_unmapped_exec_area) (struct file *filp, + unsigned long addr, unsigned long len, + unsigned long pgoff, unsigned long flags); void (*unmap_area) (struct mm_struct *mm, unsigned long addr); #endif unsigned long mmap_base; /* base of mmap area */ --- linux-3.2.0.orig/include/linux/math64.h +++ linux-3.2.0/include/linux/math64.h @@ -6,6 +6,8 @@ #if BITS_PER_LONG == 64 +#define div64_long(x,y) div64_s64((x),(y)) + /** * div_u64_rem - unsigned 64bit divide with 32bit divisor with remainder * @@ -45,6 +47,8 @@ #elif BITS_PER_LONG == 32 +#define div64_long(x,y) div_s64((x),(y)) + #ifndef div_u64_rem static inline u64 div_u64_rem(u64 dividend, u32 divisor, u32 *remainder) { --- linux-3.2.0.orig/include/linux/memcontrol.h +++ linux-3.2.0/include/linux/memcontrol.h @@ -119,6 +119,8 @@ mem_cgroup_get_reclaim_stat_from_page(struct page *page); extern void mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p); +extern void mem_cgroup_replace_page_cache(struct page *oldpage, + struct page *newpage); #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP extern int do_swap_account; @@ -366,6 +368,10 @@ void mem_cgroup_count_vm_event(struct mm_struct *mm, enum vm_event_item idx) { } +static inline void mem_cgroup_replace_page_cache(struct page *oldpage, + struct page *newpage) +{ +} #endif /* CONFIG_CGROUP_MEM_CONT */ #if !defined(CONFIG_CGROUP_MEM_RES_CTLR) || !defined(CONFIG_DEBUG_VM) --- linux-3.2.0.orig/include/linux/videodev2.h +++ linux-3.2.0/include/linux/videodev2.h @@ -1131,6 +1131,7 @@ #define V4L2_CTRL_FLAG_NEXT_CTRL 0x80000000 /* User-class control IDs defined by V4L2 */ +#define V4L2_CID_MAX_CTRLS 1024 #define V4L2_CID_BASE (V4L2_CTRL_CLASS_USER | 0x900) #define V4L2_CID_USER_BASE V4L2_CID_BASE /* IDs reserved for driver specific controls */ --- linux-3.2.0.orig/include/linux/power_supply.h +++ linux-3.2.0/include/linux/power_supply.h @@ -211,6 +211,7 @@ extern int power_supply_register(struct device *parent, struct power_supply *psy); extern void power_supply_unregister(struct power_supply *psy); +extern int power_supply_powers(struct power_supply *psy, struct device *dev); /* For APM emulation, think legacy userspace. */ extern struct class *power_supply_class; --- linux-3.2.0.orig/include/linux/prctl.h +++ linux-3.2.0/include/linux/prctl.h @@ -102,4 +102,38 @@ #define PR_MCE_KILL_GET 34 +/* + * Tune up process memory map specifics. + */ +#define PR_SET_MM 35 +# define PR_SET_MM_START_CODE 1 +# define PR_SET_MM_END_CODE 2 +# define PR_SET_MM_START_DATA 3 +# define PR_SET_MM_END_DATA 4 +# define PR_SET_MM_START_STACK 5 +# define PR_SET_MM_START_BRK 6 +# define PR_SET_MM_BRK 7 + +/* + * Set specific pid that is allowed to ptrace the current task. + * A value of 0 mean "no process". + */ +#define PR_SET_PTRACER 0x59616d61 +# define PR_SET_PTRACER_ANY ((unsigned long)-1) + +/* + * If no_new_privs is set, then operations that grant new privileges (i.e. + * execve) will either fail or not grant them. This affects suid/sgid, + * file capabilities, and LSMs. + * + * Operations that merely manipulate or drop existing privileges (setresuid, + * capset, etc.) will still work. Drop those privileges if you want them gone. + * + * Changing LSM security domain is considered a new privilege. So, for example, + * asking selinux for a specific new context (e.g. with runcon) will result + * in execve returning -EPERM. + */ +#define PR_SET_NO_NEW_PRIVS 38 +#define PR_GET_NO_NEW_PRIVS 39 + #endif /* _LINUX_PRCTL_H */ --- linux-3.2.0.orig/include/linux/seqlock.h +++ linux-3.2.0/include/linux/seqlock.h @@ -141,7 +141,7 @@ unsigned ret; repeat: - ret = s->sequence; + ret = ACCESS_ONCE(s->sequence); if (unlikely(ret & 1)) { cpu_relax(); goto repeat; --- linux-3.2.0.orig/include/linux/regset.h +++ linux-3.2.0/include/linux/regset.h @@ -335,8 +335,11 @@ { const struct user_regset *regset = &view->regsets[setno]; + if (!regset->get) + return -EOPNOTSUPP; + if (!access_ok(VERIFY_WRITE, data, size)) - return -EIO; + return -EFAULT; return regset->get(target, regset, offset, size, NULL, data); } @@ -358,8 +361,11 @@ { const struct user_regset *regset = &view->regsets[setno]; + if (!regset->set) + return -EOPNOTSUPP; + if (!access_ok(VERIFY_READ, data, size)) - return -EIO; + return -EFAULT; return regset->set(target, regset, offset, size, NULL, data); } --- linux-3.2.0.orig/include/linux/pci-aspm.h +++ linux-3.2.0/include/linux/pci-aspm.h @@ -29,7 +29,7 @@ extern void pcie_aspm_powersave_config_link(struct pci_dev *pdev); extern void pci_disable_link_state(struct pci_dev *pdev, int state); extern void pci_disable_link_state_locked(struct pci_dev *pdev, int state); -extern void pcie_clear_aspm(void); +extern void pcie_clear_aspm(struct pci_bus *bus); extern void pcie_no_aspm(void); #else static inline void pcie_aspm_init_link_state(struct pci_dev *pdev) @@ -47,7 +47,7 @@ static inline void pci_disable_link_state(struct pci_dev *pdev, int state) { } -static inline void pcie_clear_aspm(void) +static inline void pcie_clear_aspm(struct pci_bus *bus) { } static inline void pcie_no_aspm(void) --- linux-3.2.0.orig/include/linux/workqueue.h +++ linux-3.2.0/include/linux/workqueue.h @@ -289,12 +289,16 @@ * * system_freezable_wq is equivalent to system_wq except that it's * freezable. + * + * system_nrt_freezable_wq is equivalent to system_nrt_wq except that + * it's freezable. */ extern struct workqueue_struct *system_wq; extern struct workqueue_struct *system_long_wq; extern struct workqueue_struct *system_nrt_wq; extern struct workqueue_struct *system_unbound_wq; extern struct workqueue_struct *system_freezable_wq; +extern struct workqueue_struct *system_nrt_freezable_wq; extern struct workqueue_struct * __alloc_workqueue_key(const char *name, unsigned int flags, int max_active, --- linux-3.2.0.orig/include/linux/kd.h +++ linux-3.2.0/include/linux/kd.h @@ -45,6 +45,7 @@ #define KD_GRAPHICS 0x01 #define KD_TEXT0 0x02 /* obsolete */ #define KD_TEXT1 0x03 /* obsolete */ +#define KD_TRANSPARENT 0x04 #define KDGETMODE 0x4B3B /* get current mode */ #define KDMAPDISP 0x4B3C /* map display into address space */ --- linux-3.2.0.orig/include/linux/lsm_audit.h +++ linux-3.2.0/include/linux/lsm_audit.h @@ -119,11 +119,22 @@ unsigned long max; } rlim; struct { + const char *src_name; + const char *type; + const char *trans; + const char *data; + unsigned long flags; + } mnt; + struct { const char *target; u32 request; u32 denied; uid_t ouid; } fs; + struct { + int type, protocol; + struct sock *sk; + } net; }; } apparmor_audit_data; #endif --- linux-3.2.0.orig/include/linux/screen_info.h +++ linux-3.2.0/include/linux/screen_info.h @@ -67,6 +67,7 @@ #define VIDEO_TYPE_EFI 0x70 /* EFI graphic mode */ #define VIDEO_FLAGS_NOCURSOR (1 << 0) /* The video mode has no cursor set */ +#define VIDEO_FLAGS_HANDOFF (1 << 1) /* Video buffer is alredy painted */ #ifdef __KERNEL__ extern struct screen_info screen_info; --- linux-3.2.0.orig/include/linux/kvm_host.h +++ linux-3.2.0/include/linux/kvm_host.h @@ -562,6 +562,7 @@ #ifdef CONFIG_IOMMU_API int kvm_iommu_map_pages(struct kvm *kvm, struct kvm_memory_slot *slot); +void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot); int kvm_iommu_map_guest(struct kvm *kvm); int kvm_iommu_unmap_guest(struct kvm *kvm); int kvm_assign_device(struct kvm *kvm, @@ -575,6 +576,11 @@ return 0; } +static inline void kvm_iommu_unmap_pages(struct kvm *kvm, + struct kvm_memory_slot *slot) +{ +} + static inline int kvm_iommu_map_guest(struct kvm *kvm) { return -ENODEV; @@ -738,6 +744,13 @@ { return vcpu->kvm->bsp_vcpu_id == vcpu->vcpu_id; } + +bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu); + +#else + +static inline bool kvm_vcpu_compatible(struct kvm_vcpu *vcpu) { return true; } + #endif #ifdef __KVM_HAVE_DEVICE_ASSIGNMENT --- linux-3.2.0.orig/include/linux/security.h +++ linux-3.2.0/include/linux/security.h @@ -54,8 +54,8 @@ * These functions are in security/capability.c and are used * as the default capabilities functions */ -extern int cap_capable(struct task_struct *tsk, const struct cred *cred, - struct user_namespace *ns, int cap, int audit); +extern int cap_capable(const struct cred *cred, struct user_namespace *ns, + int cap, int audit); extern int cap_settime(const struct timespec *ts, const struct timezone *tz); extern int cap_ptrace_access_check(struct task_struct *child, unsigned int mode); extern int cap_ptrace_traceme(struct task_struct *parent); @@ -130,6 +130,7 @@ #define LSM_UNSAFE_SHARE 1 #define LSM_UNSAFE_PTRACE 2 #define LSM_UNSAFE_PTRACE_CAP 4 +#define LSM_UNSAFE_NO_NEW_PRIVS 8 #ifdef CONFIG_MMU /* @@ -650,6 +651,10 @@ * manual page for definitions of the @clone_flags. * @clone_flags contains the flags indicating what should be shared. * Return 0 if permission is granted. + * @task_free: + * @task task being freed + * Handle release of task-related resources. (Note that this can be called + * from interrupt context.) * @cred_alloc_blank: * @cred points to the credentials. * @gfp indicates the atomicity of any memory allocations. @@ -1266,7 +1271,6 @@ * @capable: * Check whether the @tsk process has the @cap capability in the indicated * credentials. - * @tsk contains the task_struct for the process. * @cred contains the credentials to use. * @ns contains the user namespace we want the capability in * @cap contains the capability . @@ -1390,8 +1394,8 @@ const kernel_cap_t *effective, const kernel_cap_t *inheritable, const kernel_cap_t *permitted); - int (*capable) (struct task_struct *tsk, const struct cred *cred, - struct user_namespace *ns, int cap, int audit); + int (*capable) (const struct cred *cred, struct user_namespace *ns, + int cap, int audit); int (*quotactl) (int cmds, int type, int id, struct super_block *sb); int (*quota_on) (struct dentry *dentry); int (*syslog) (int type); @@ -1424,9 +1428,9 @@ #ifdef CONFIG_SECURITY_PATH int (*path_unlink) (struct path *dir, struct dentry *dentry); - int (*path_mkdir) (struct path *dir, struct dentry *dentry, int mode); + int (*path_mkdir) (struct path *dir, struct dentry *dentry, umode_t mode); int (*path_rmdir) (struct path *dir, struct dentry *dentry); - int (*path_mknod) (struct path *dir, struct dentry *dentry, int mode, + int (*path_mknod) (struct path *dir, struct dentry *dentry, umode_t mode, unsigned int dev); int (*path_truncate) (struct path *path); int (*path_symlink) (struct path *dir, struct dentry *dentry, @@ -1435,8 +1439,7 @@ struct dentry *new_dentry); int (*path_rename) (struct path *old_dir, struct dentry *old_dentry, struct path *new_dir, struct dentry *new_dentry); - int (*path_chmod) (struct dentry *dentry, struct vfsmount *mnt, - mode_t mode); + int (*path_chmod) (struct path *path, umode_t mode); int (*path_chown) (struct path *path, uid_t uid, gid_t gid); int (*path_chroot) (struct path *path); #endif @@ -1500,6 +1503,7 @@ int (*dentry_open) (struct file *file, const struct cred *cred); int (*task_create) (unsigned long clone_flags); + void (*task_free) (struct task_struct *task); int (*cred_alloc_blank) (struct cred *cred, gfp_t gfp); void (*cred_free) (struct cred *cred); int (*cred_prepare)(struct cred *new, const struct cred *old, @@ -1762,6 +1766,7 @@ int security_file_receive(struct file *file); int security_dentry_open(struct file *file, const struct cred *cred); int security_task_create(unsigned long clone_flags); +void security_task_free(struct task_struct *task); int security_cred_alloc_blank(struct cred *cred, gfp_t gfp); void security_cred_free(struct cred *cred); int security_prepare_creds(struct cred *new, const struct cred *old, gfp_t gfp); @@ -1877,7 +1882,7 @@ static inline int security_capable(struct user_namespace *ns, const struct cred *cred, int cap) { - return cap_capable(current, cred, ns, cap, SECURITY_CAP_AUDIT); + return cap_capable(cred, ns, cap, SECURITY_CAP_AUDIT); } static inline int security_real_capable(struct task_struct *tsk, struct user_namespace *ns, int cap) @@ -1885,7 +1890,7 @@ int ret; rcu_read_lock(); - ret = cap_capable(tsk, __task_cred(tsk), ns, cap, SECURITY_CAP_AUDIT); + ret = cap_capable(__task_cred(tsk), ns, cap, SECURITY_CAP_AUDIT); rcu_read_unlock(); return ret; } @@ -1896,8 +1901,7 @@ int ret; rcu_read_lock(); - ret = cap_capable(tsk, __task_cred(tsk), ns, cap, - SECURITY_CAP_NOAUDIT); + ret = cap_capable(__task_cred(tsk), ns, cap, SECURITY_CAP_NOAUDIT); rcu_read_unlock(); return ret; } @@ -2273,6 +2277,9 @@ return 0; } +static inline void security_task_free(struct task_struct *task) +{ } + static inline int security_cred_alloc_blank(struct cred *cred, gfp_t gfp) { return 0; @@ -2855,9 +2862,9 @@ #ifdef CONFIG_SECURITY_PATH int security_path_unlink(struct path *dir, struct dentry *dentry); -int security_path_mkdir(struct path *dir, struct dentry *dentry, int mode); +int security_path_mkdir(struct path *dir, struct dentry *dentry, umode_t mode); int security_path_rmdir(struct path *dir, struct dentry *dentry); -int security_path_mknod(struct path *dir, struct dentry *dentry, int mode, +int security_path_mknod(struct path *dir, struct dentry *dentry, umode_t mode, unsigned int dev); int security_path_truncate(struct path *path); int security_path_symlink(struct path *dir, struct dentry *dentry, @@ -2866,8 +2873,7 @@ struct dentry *new_dentry); int security_path_rename(struct path *old_dir, struct dentry *old_dentry, struct path *new_dir, struct dentry *new_dentry); -int security_path_chmod(struct dentry *dentry, struct vfsmount *mnt, - mode_t mode); +int security_path_chmod(struct path *path, umode_t mode); int security_path_chown(struct path *path, uid_t uid, gid_t gid); int security_path_chroot(struct path *path); #else /* CONFIG_SECURITY_PATH */ @@ -2877,7 +2883,7 @@ } static inline int security_path_mkdir(struct path *dir, struct dentry *dentry, - int mode) + umode_t mode) { return 0; } @@ -2888,7 +2894,7 @@ } static inline int security_path_mknod(struct path *dir, struct dentry *dentry, - int mode, unsigned int dev) + umode_t mode, unsigned int dev) { return 0; } @@ -2919,9 +2925,7 @@ return 0; } -static inline int security_path_chmod(struct dentry *dentry, - struct vfsmount *mnt, - mode_t mode) +static inline int security_path_chmod(struct path *path, umode_t mode) { return 0; } @@ -3010,7 +3014,7 @@ #ifdef CONFIG_SECURITYFS -extern struct dentry *securityfs_create_file(const char *name, mode_t mode, +extern struct dentry *securityfs_create_file(const char *name, umode_t mode, struct dentry *parent, void *data, const struct file_operations *fops); extern struct dentry *securityfs_create_dir(const char *name, struct dentry *parent); @@ -3025,7 +3029,7 @@ } static inline struct dentry *securityfs_create_file(const char *name, - mode_t mode, + umode_t mode, struct dentry *parent, void *data, const struct file_operations *fops) @@ -3061,5 +3065,47 @@ { } #endif /* CONFIG_SECURITY */ +#ifdef CONFIG_SECURITY_YAMA +extern int yama_ptrace_access_check(struct task_struct *child, + unsigned int mode); +extern int yama_path_link(struct dentry *old_dentry, struct path *new_dir, + struct dentry *new_dentry); +extern int yama_inode_follow_link(struct dentry *dentry, + struct nameidata *nameidata); +extern void yama_task_free(struct task_struct *task); +extern int yama_task_prctl(int option, unsigned long arg2, unsigned long arg3, + unsigned long arg4, unsigned long arg5); +#else +static inline int yama_ptrace_access_check(struct task_struct *child, + unsigned int mode) +{ + return 0; +} + +static inline int yama_path_link(struct dentry *old_dentry, + struct path *new_dir, + struct dentry *new_dentry) +{ + return 0; +} + +static inline int yama_inode_follow_link(struct dentry *dentry, + struct nameidata *nameidata) +{ + return 0; +} + +static inline void yama_task_free(struct task_struct *task) +{ +} + +static inline int yama_task_prctl(int option, unsigned long arg2, + unsigned long arg3, unsigned long arg4, + unsigned long arg5) +{ + return -ENOSYS; +} +#endif /* CONFIG_SECURITY_YAMA */ + #endif /* ! __LINUX_SECURITY_H */ --- linux-3.2.0.orig/include/linux/dcache.h +++ linux-3.2.0/include/linux/dcache.h @@ -203,6 +203,7 @@ #define DCACHE_CANT_MOUNT 0x0100 #define DCACHE_GENOCIDE 0x0200 +#define DCACHE_SHRINK_LIST 0x0400 #define DCACHE_NFSFS_RENAMED 0x1000 /* this dentry has been "silly renamed" and has to be deleted on the last --- linux-3.2.0.orig/include/linux/compat.h +++ linux-3.2.0/include/linux/compat.h @@ -561,5 +561,9 @@ unsigned long liovcnt, const struct compat_iovec __user *rvec, unsigned long riovcnt, unsigned long flags); +#else + +#define is_compat_task() (0) + #endif /* CONFIG_COMPAT */ #endif /* _LINUX_COMPAT_H */ --- linux-3.2.0.orig/include/linux/eventpoll.h +++ linux-3.2.0/include/linux/eventpoll.h @@ -61,6 +61,7 @@ static inline void eventpoll_init_file(struct file *file) { INIT_LIST_HEAD(&file->f_ep_links); + INIT_LIST_HEAD(&file->f_tfile_llink); } --- linux-3.2.0.orig/include/linux/fb.h +++ linux-3.2.0/include/linux/fb.h @@ -997,6 +997,7 @@ /* drivers/video/fbmem.c */ extern int register_framebuffer(struct fb_info *fb_info); extern int unregister_framebuffer(struct fb_info *fb_info); +extern int unlink_framebuffer(struct fb_info *fb_info); extern void remove_conflicting_framebuffers(struct apertures_struct *a, const char *name, bool primary); extern int fb_prepare_logo(struct fb_info *fb_info, int rotate); --- linux-3.2.0.orig/include/linux/nfs_xdr.h +++ linux-3.2.0/include/linux/nfs_xdr.h @@ -605,8 +605,13 @@ struct nfs4_sequence_args seq_args; }; +/* getxattr ACL interface flags */ +#define NFS4_ACL_LEN_REQUEST 0x0001 /* zero length getxattr buffer */ struct nfs_getaclres { size_t acl_len; + size_t acl_data_offset; + int acl_flags; + struct page * acl_scratch; struct nfs4_sequence_res seq_res; }; --- linux-3.2.0.orig/include/linux/Kbuild +++ linux-3.2.0/include/linux/Kbuild @@ -327,6 +327,7 @@ header-y += sched.h header-y += screen_info.h header-y += sdla.h +header-y += seccomp.h header-y += securebits.h header-y += selinux_netlink.h header-y += sem.h --- linux-3.2.0.orig/include/linux/sched.h +++ linux-3.2.0/include/linux/sched.h @@ -102,6 +102,9 @@ struct perf_event_context; struct blk_plug; +extern int disable_nx; +extern int print_fatal_signals; + /* * List of flags we want to share for kernel threads, * if only because they are not used by them anyway. @@ -388,6 +391,10 @@ extern unsigned long arch_get_unmapped_area(struct file *, unsigned long, unsigned long, unsigned long, unsigned long); + +extern unsigned long +arch_get_unmapped_exec_area(struct file *, unsigned long, unsigned long, + unsigned long, unsigned long); extern unsigned long arch_get_unmapped_area_topdown(struct file *filp, unsigned long addr, unsigned long len, unsigned long pgoff, @@ -1297,6 +1304,8 @@ * execve */ unsigned in_iowait:1; + /* task may not gain privileges */ + unsigned no_new_privs:1; /* Revert to default priority/policy when forking */ unsigned sched_reset_on_fork:1; @@ -1401,7 +1410,7 @@ uid_t loginuid; unsigned int sessionid; #endif - seccomp_t seccomp; + struct seccomp seccomp; /* Thread group tracking */ u32 parent_exec_id; --- linux-3.2.0.orig/include/linux/mount.h +++ linux-3.2.0/include/linux/mount.h @@ -103,6 +103,9 @@ extern struct vfsmount *do_kern_mount(const char *fstype, int flags, const char *name, void *data); +struct path; +extern struct vfsmount *clone_private_mount(struct path *path); + struct file_system_type; extern struct vfsmount *vfs_kern_mount(struct file_system_type *type, int flags, const char *name, --- linux-3.2.0.orig/include/linux/crash_dump.h +++ linux-3.2.0/include/linux/crash_dump.h @@ -5,6 +5,7 @@ #include #include #include +#include #define ELFCORE_ADDR_MAX (-1ULL) #define ELFCORE_ADDR_ERR (-2ULL) --- linux-3.2.0.orig/include/linux/pid_namespace.h +++ linux-3.2.0/include/linux/pid_namespace.h @@ -30,6 +30,9 @@ #ifdef CONFIG_BSD_PROCESS_ACCT struct bsd_acct_struct *bacct; #endif + gid_t pid_gid; + int hide_pid; + int reboot; }; extern struct pid_namespace init_pid_ns; @@ -45,6 +48,7 @@ extern struct pid_namespace *copy_pid_ns(unsigned long flags, struct pid_namespace *ns); extern void free_pid_ns(struct kref *kref); extern void zap_pid_ns_processes(struct pid_namespace *pid_ns); +extern int reboot_pid_ns(struct pid_namespace *pid_ns, int cmd); static inline void put_pid_ns(struct pid_namespace *ns) { @@ -72,11 +76,15 @@ { } - static inline void zap_pid_ns_processes(struct pid_namespace *ns) { BUG(); } + +static inline int reboot_pid_ns(struct pid_namespace *pid_ns, int cmd) +{ + return 0; +} #endif /* CONFIG_PID_NS */ extern struct pid_namespace *task_active_pid_ns(struct task_struct *tsk); --- linux-3.2.0.orig/include/linux/kgdb.h +++ linux-3.2.0/include/linux/kgdb.h @@ -63,7 +63,8 @@ BP_HARDWARE_BREAKPOINT, BP_WRITE_WATCHPOINT, BP_READ_WATCHPOINT, - BP_ACCESS_WATCHPOINT + BP_ACCESS_WATCHPOINT, + BP_POKE_BREAKPOINT, }; enum kgdb_bpstate { @@ -207,8 +208,8 @@ /* Optional functions. */ extern int kgdb_validate_break_address(unsigned long addr); -extern int kgdb_arch_set_breakpoint(unsigned long addr, char *saved_instr); -extern int kgdb_arch_remove_breakpoint(unsigned long addr, char *bundle); +extern int kgdb_arch_set_breakpoint(struct kgdb_bkpt *bpt); +extern int kgdb_arch_remove_breakpoint(struct kgdb_bkpt *bpt); /** * kgdb_arch_late - Perform any architecture specific initalization. --- linux-3.2.0.orig/include/linux/hyperv.h +++ linux-3.2.0/include/linux/hyperv.h @@ -25,6 +25,173 @@ #ifndef _HYPERV_H #define _HYPERV_H +#include + +/* + * An implementation of HyperV key value pair (KVP) functionality for Linux. + * + * + * Copyright (C) 2010, Novell, Inc. + * Author : K. Y. Srinivasan + * + */ + +/* + * Maximum value size - used for both key names and value data, and includes + * any applicable NULL terminators. + * + * Note: This limit is somewhat arbitrary, but falls easily within what is + * supported for all native guests (back to Win 2000) and what is reasonable + * for the IC KVP exchange functionality. Note that Windows Me/98/95 are + * limited to 255 character key names. + * + * MSDN recommends not storing data values larger than 2048 bytes in the + * registry. + * + * Note: This value is used in defining the KVP exchange message - this value + * cannot be modified without affecting the message size and compatibility. + */ + +/* + * bytes, including any null terminators + */ +#define HV_KVP_EXCHANGE_MAX_VALUE_SIZE (2048) + + +/* + * Maximum key size - the registry limit for the length of an entry name + * is 256 characters, including the null terminator + */ + +#define HV_KVP_EXCHANGE_MAX_KEY_SIZE (512) + +/* + * In Linux, we implement the KVP functionality in two components: + * 1) The kernel component which is packaged as part of the hv_utils driver + * is responsible for communicating with the host and responsible for + * implementing the host/guest protocol. 2) A user level daemon that is + * responsible for data gathering. + * + * Host/Guest Protocol: The host iterates over an index and expects the guest + * to assign a key name to the index and also return the value corresponding to + * the key. The host will have atmost one KVP transaction outstanding at any + * given point in time. The host side iteration stops when the guest returns + * an error. Microsoft has specified the following mapping of key names to + * host specified index: + * + * Index Key Name + * 0 FullyQualifiedDomainName + * 1 IntegrationServicesVersion + * 2 NetworkAddressIPv4 + * 3 NetworkAddressIPv6 + * 4 OSBuildNumber + * 5 OSName + * 6 OSMajorVersion + * 7 OSMinorVersion + * 8 OSVersion + * 9 ProcessorArchitecture + * + * The Windows host expects the Key Name and Key Value to be encoded in utf16. + * + * Guest Kernel/KVP Daemon Protocol: As noted earlier, we implement all of the + * data gathering functionality in a user mode daemon. The user level daemon + * is also responsible for binding the key name to the index as well. The + * kernel and user-level daemon communicate using a connector channel. + * + * The user mode component first registers with the + * the kernel component. Subsequently, the kernel component requests, data + * for the specified keys. In response to this message the user mode component + * fills in the value corresponding to the specified key. We overload the + * sequence field in the cn_msg header to define our KVP message types. + * + * + * The kernel component simply acts as a conduit for communication between the + * Windows host and the user-level daemon. The kernel component passes up the + * index received from the Host to the user-level daemon. If the index is + * valid (supported), the corresponding key as well as its + * value (both are strings) is returned. If the index is invalid + * (not supported), a NULL key string is returned. + */ + + +/* + * Registry value types. + */ + +#define REG_SZ 1 +#define REG_U32 4 +#define REG_U64 8 + +enum hv_kvp_exchg_op { + KVP_OP_GET = 0, + KVP_OP_SET, + KVP_OP_DELETE, + KVP_OP_ENUMERATE, + KVP_OP_REGISTER, + KVP_OP_COUNT /* Number of operations, must be last. */ +}; + +enum hv_kvp_exchg_pool { + KVP_POOL_EXTERNAL = 0, + KVP_POOL_GUEST, + KVP_POOL_AUTO, + KVP_POOL_AUTO_EXTERNAL, + KVP_POOL_AUTO_INTERNAL, + KVP_POOL_COUNT /* Number of pools, must be last. */ +}; + +struct hv_kvp_hdr { + __u8 operation; + __u8 pool; + __u16 pad; +} __attribute__((packed)); + +struct hv_kvp_exchg_msg_value { + __u32 value_type; + __u32 key_size; + __u32 value_size; + __u8 key[HV_KVP_EXCHANGE_MAX_KEY_SIZE]; + union { + __u8 value[HV_KVP_EXCHANGE_MAX_VALUE_SIZE]; + __u32 value_u32; + __u64 value_u64; + }; +} __attribute__((packed)); + +struct hv_kvp_msg_enumerate { + __u32 index; + struct hv_kvp_exchg_msg_value data; +} __attribute__((packed)); + +struct hv_kvp_msg_get { + struct hv_kvp_exchg_msg_value data; +}; + +struct hv_kvp_msg_set { + struct hv_kvp_exchg_msg_value data; +}; + +struct hv_kvp_msg_delete { + __u32 key_size; + __u8 key[HV_KVP_EXCHANGE_MAX_KEY_SIZE]; +}; + +struct hv_kvp_register { + __u8 version[HV_KVP_EXCHANGE_MAX_KEY_SIZE]; +}; + +struct hv_kvp_msg { + struct hv_kvp_hdr kvp_hdr; + union { + struct hv_kvp_msg_get kvp_get; + struct hv_kvp_msg_set kvp_set; + struct hv_kvp_msg_delete kvp_delete; + struct hv_kvp_msg_enumerate kvp_enum_data; + struct hv_kvp_register kvp_register; + } body; +} __attribute__((packed)); + +#ifdef __KERNEL__ #include #include #include @@ -35,7 +202,7 @@ #include -#define MAX_PAGE_BUFFER_COUNT 16 +#define MAX_PAGE_BUFFER_COUNT 19 #define MAX_MULTIPAGE_BUFFER_COUNT 32 /* 128K */ #pragma pack(push, 1) @@ -785,6 +952,7 @@ #define HV_S_OK 0x00000000 #define HV_E_FAIL 0x80004005 +#define HV_S_CONT 0x80070103 #define HV_ERROR_NOT_SUPPORTED 0x80070032 #define HV_ERROR_MACHINE_LOCKED 0x800704F7 @@ -870,4 +1038,9 @@ extern void vmbus_prep_negotiate_resp(struct icmsg_hdr *, struct icmsg_negotiate *, u8 *); +int hv_kvp_init(struct hv_util_service *); +void hv_kvp_deinit(void); +void hv_kvp_onchannelcallback(void *); + +#endif /* __KERNEL__ */ #endif /* _HYPERV_H */ --- linux-3.2.0.orig/include/linux/socket.h +++ linux-3.2.0/include/linux/socket.h @@ -265,7 +265,7 @@ #define MSG_NOSIGNAL 0x4000 /* Do not generate SIGPIPE */ #define MSG_MORE 0x8000 /* Sender will send more */ #define MSG_WAITFORONE 0x10000 /* recvmmsg(): block until 1+ packets avail */ - +#define MSG_SENDPAGE_NOTLAST 0x20000 /* sendpage() internal : not the last page */ #define MSG_EOF MSG_FIN #define MSG_CMSG_CLOEXEC 0x40000000 /* Set close_on_exit for file --- linux-3.2.0.orig/include/linux/hugetlb.h +++ linux-3.2.0/include/linux/hugetlb.h @@ -14,6 +14,15 @@ #include #include +struct hugepage_subpool { + spinlock_t lock; + long count; + long max_hpages, used_hpages; +}; + +struct hugepage_subpool *hugepage_new_subpool(long nr_blocks); +void hugepage_put_subpool(struct hugepage_subpool *spool); + int PageHuge(struct page *page); void reset_vma_resv_huge_pages(struct vm_area_struct *vma); @@ -138,12 +147,11 @@ }; struct hugetlbfs_sb_info { - long max_blocks; /* blocks allowed */ - long free_blocks; /* blocks free */ long max_inodes; /* inodes allowed */ long free_inodes; /* inodes free */ spinlock_t stat_lock; struct hstate *hstate; + struct hugepage_subpool *spool; }; @@ -166,8 +174,6 @@ extern const struct vm_operations_struct hugetlb_vm_ops; struct file *hugetlb_file_setup(const char *name, size_t size, vm_flags_t acct, struct user_struct **user, int creat_flags); -int hugetlb_get_quota(struct address_space *mapping, long delta); -void hugetlb_put_quota(struct address_space *mapping, long delta); static inline int is_file_hugepages(struct file *file) { --- linux-3.2.0.orig/include/linux/kernel.h +++ linux-3.2.0/include/linux/kernel.h @@ -85,6 +85,19 @@ } \ ) +/* + * Multiplies an integer by a fraction, while avoiding unnecessary + * overflow or loss of precision. + */ +#define mult_frac(x, numer, denom)( \ +{ \ + typeof(x) quot = (x) / (denom); \ + typeof(x) rem = (x) % (denom); \ + (quot * (numer)) + ((rem * (numer)) / (denom)); \ +} \ +) + + #define _RET_IP_ (unsigned long)__builtin_return_address(0) #define _THIS_IP_ ({ __label__ __here; __here: (unsigned long)&&__here; }) --- linux-3.2.0.orig/include/linux/kmsg_dump.h +++ linux-3.2.0/include/linux/kmsg_dump.h @@ -15,14 +15,18 @@ #include #include +/* + * Keep this list arranged in rough order of priority. Anything listed after + * KMSG_DUMP_OOPS will not be logged by default unless printk.always_kmsg_dump + * is passed to the kernel. + */ enum kmsg_dump_reason { - KMSG_DUMP_OOPS, KMSG_DUMP_PANIC, - KMSG_DUMP_KEXEC, + KMSG_DUMP_OOPS, + KMSG_DUMP_EMERG, KMSG_DUMP_RESTART, KMSG_DUMP_HALT, KMSG_DUMP_POWEROFF, - KMSG_DUMP_EMERG, }; /** --- linux-3.2.0.orig/include/linux/acpi.h +++ linux-3.2.0/include/linux/acpi.h @@ -151,6 +151,7 @@ extern int ec_transaction(u8 command, const u8 *wdata, unsigned wdata_len, u8 *rdata, unsigned rdata_len); +extern acpi_handle ec_get_handle(void); #if defined(CONFIG_ACPI_WMI) || defined(CONFIG_ACPI_WMI_MODULE) --- linux-3.2.0.orig/include/linux/genhd.h +++ linux-3.2.0/include/linux/genhd.h @@ -222,12 +222,6 @@ } } -static inline char *part_unpack_uuid(const u8 *uuid, char *out) -{ - sprintf(out, "%pU", uuid); - return out; -} - static inline int disk_max_parts(struct gendisk *disk) { if (disk->flags & GENHD_FL_EXT_DEVT) @@ -596,6 +590,7 @@ extern int disk_expand_part_tbl(struct gendisk *disk, int target); extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev); +extern int invalidate_partitions(struct gendisk *disk, struct block_device *bdev); extern struct hd_struct * __must_check add_partition(struct gendisk *disk, int partno, sector_t start, sector_t len, int flags, --- linux-3.2.0.orig/include/linux/netdevice.h +++ linux-3.2.0/include/linux/netdevice.h @@ -1147,8 +1147,8 @@ #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE) struct vlan_group __rcu *vlgrp; /* VLAN group */ #endif -#ifdef CONFIG_NET_DSA - void *dsa_ptr; /* dsa specific data */ +#if IS_ENABLED(CONFIG_NET_DSA) + struct dsa_switch_tree *dsa_ptr; /* dsa specific data */ #endif void *atalk_ptr; /* AppleTalk link */ struct in_device __rcu *ip_ptr; /* IPv4 specific data */ @@ -2536,8 +2536,6 @@ extern void *dev_seq_start(struct seq_file *seq, loff_t *pos); extern void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos); extern void dev_seq_stop(struct seq_file *seq, void *v); -extern int dev_seq_open_ops(struct inode *inode, struct file *file, - const struct seq_operations *ops); #endif extern int netdev_class_create_file(struct class_attribute *class_attr); --- linux-3.2.0.orig/include/linux/ptrace.h +++ linux-3.2.0/include/linux/ptrace.h @@ -62,8 +62,9 @@ #define PTRACE_O_TRACEEXEC 0x00000010 #define PTRACE_O_TRACEVFORKDONE 0x00000020 #define PTRACE_O_TRACEEXIT 0x00000040 +#define PTRACE_O_TRACESECCOMP 0x00000080 -#define PTRACE_O_MASK 0x0000007f +#define PTRACE_O_MASK 0x000000ff /* Wait extended result codes for the above trace options. */ #define PTRACE_EVENT_FORK 1 @@ -73,6 +74,7 @@ #define PTRACE_EVENT_VFORK_DONE 5 #define PTRACE_EVENT_EXIT 6 #define PTRACE_EVENT_STOP 7 +#define PTRACE_EVENT_SECCOMP 8 #include @@ -101,8 +103,9 @@ #define PT_TRACE_EXEC PT_EVENT_FLAG(PTRACE_EVENT_EXEC) #define PT_TRACE_VFORK_DONE PT_EVENT_FLAG(PTRACE_EVENT_VFORK_DONE) #define PT_TRACE_EXIT PT_EVENT_FLAG(PTRACE_EVENT_EXIT) +#define PT_TRACE_SECCOMP PT_EVENT_FLAG(PTRACE_EVENT_SECCOMP) -#define PT_TRACE_MASK 0x000003f4 +#define PT_TRACE_MASK 0x00000bf4 /* single stepping state bits (used on ARM and PA-RISC) */ #define PT_SINGLESTEP_BIT 31 --- linux-3.2.0.orig/include/linux/mtd/map.h +++ linux-3.2.0/include/linux/mtd/map.h @@ -26,7 +26,7 @@ #include #include #include - +#include #include #include --- linux-3.2.0.orig/include/linux/amba/bus.h +++ linux-3.2.0/include/linux/amba/bus.h @@ -16,6 +16,7 @@ #include #include +#include #include #include #include @@ -35,12 +36,6 @@ unsigned int irq[AMBA_NR_IRQS]; }; -struct amba_id { - unsigned int id; - unsigned int mask; - void *data; -}; - struct amba_driver { struct device_driver drv; int (*probe)(struct amba_device *, const struct amba_id *); --- linux-3.2.0.orig/include/linux/mmc/host.h +++ linux-3.2.0/include/linux/mmc/host.h @@ -303,6 +303,7 @@ unsigned int sdio_irqs; struct task_struct *sdio_irq_thread; + bool sdio_irq_pending; atomic_t sdio_irq_thread_abort; mmc_pm_flag_t pm_flags; /* requested pm features */ @@ -356,6 +357,7 @@ static inline void mmc_signal_sdio_irq(struct mmc_host *host) { host->ops->enable_sdio_irq(host, 0); + host->sdio_irq_pending = true; wake_up_process(host->sdio_irq_thread); } --- linux-3.2.0.orig/include/linux/mmc/dw_mmc.h +++ linux-3.2.0/include/linux/mmc/dw_mmc.h @@ -14,6 +14,8 @@ #ifndef LINUX_MMC_DW_MMC_H #define LINUX_MMC_DW_MMC_H +#include + #define MAX_MCI_SLOTS 2 enum dw_mci_state { @@ -40,7 +42,7 @@ * @lock: Spinlock protecting the queue and associated data. * @regs: Pointer to MMIO registers. * @sg: Scatterlist entry currently being processed by PIO code, if any. - * @pio_offset: Offset into the current scatterlist entry. + * @sg_miter: PIO mapping scatterlist iterator. * @cur_slot: The slot which is currently using the controller. * @mrq: The request currently being processed on @cur_slot, * or NULL if the controller is idle. @@ -115,7 +117,7 @@ void __iomem *regs; struct scatterlist *sg; - unsigned int pio_offset; + struct sg_mapping_iter sg_miter; struct dw_mci_slot *cur_slot; struct mmc_request *mrq; --- linux-3.2.0.orig/include/linux/sunrpc/xdr.h +++ linux-3.2.0/include/linux/sunrpc/xdr.h @@ -191,6 +191,8 @@ struct xdr_array2_desc *desc); extern int xdr_encode_array2(struct xdr_buf *buf, unsigned int base, struct xdr_array2_desc *desc); +extern void _copy_from_pages(char *p, struct page **pages, size_t pgbase, + size_t len); /* * Provide some simple tools for XDR buffer overflow-checking etc. --- linux-3.2.0.orig/include/linux/sunrpc/svcsock.h +++ linux-3.2.0/include/linux/sunrpc/svcsock.h @@ -34,7 +34,7 @@ /* * Function prototypes. */ -void svc_close_all(struct list_head *); +void svc_close_all(struct svc_serv *); int svc_recv(struct svc_rqst *, long); int svc_send(struct svc_rqst *); void svc_drop(struct svc_rqst *); --- linux-3.2.0.orig/include/linux/usb/usbnet.h +++ linux-3.2.0/include/linux/usb/usbnet.h @@ -191,7 +191,8 @@ enum skb_state { illegal = 0, tx_start, tx_done, - rx_start, rx_done, rx_cleanup + rx_start, rx_done, rx_cleanup, + unlink_start }; struct skb_data { /* skb->cb is one of these */ --- linux-3.2.0.orig/include/linux/usb/hcd.h +++ linux-3.2.0/include/linux/usb/hcd.h @@ -128,6 +128,8 @@ unsigned wireless:1; /* Wireless USB HCD */ unsigned authorized_default:1; unsigned has_tt:1; /* Integrated TT in root hub */ + unsigned broken_pci_sleep:1; /* Don't put the + controller in PCI-D3 for system sleep */ int irq; /* irq allocated */ void __iomem *regs; /* device memory/io */ --- linux-3.2.0.orig/include/linux/usb/ch11.h +++ linux-3.2.0/include/linux/usb/ch11.h @@ -62,12 +62,6 @@ #define USB_PORT_FEAT_TEST 21 #define USB_PORT_FEAT_INDICATOR 22 #define USB_PORT_FEAT_C_PORT_L1 23 -#define USB_PORT_FEAT_C_PORT_LINK_STATE 25 -#define USB_PORT_FEAT_C_PORT_CONFIG_ERROR 26 -#define USB_PORT_FEAT_PORT_REMOTE_WAKE_MASK 27 -#define USB_PORT_FEAT_BH_PORT_RESET 28 -#define USB_PORT_FEAT_C_BH_PORT_RESET 29 -#define USB_PORT_FEAT_FORCE_LINKPM_ACCEPT 30 /* * Port feature selectors added by USB 3.0 spec. @@ -76,8 +70,8 @@ #define USB_PORT_FEAT_LINK_STATE 5 #define USB_PORT_FEAT_U1_TIMEOUT 23 #define USB_PORT_FEAT_U2_TIMEOUT 24 -#define USB_PORT_FEAT_C_LINK_STATE 25 -#define USB_PORT_FEAT_C_CONFIG_ERR 26 +#define USB_PORT_FEAT_C_PORT_LINK_STATE 25 +#define USB_PORT_FEAT_C_PORT_CONFIG_ERROR 26 #define USB_PORT_FEAT_REMOTE_WAKE_MASK 27 #define USB_PORT_FEAT_BH_PORT_RESET 28 #define USB_PORT_FEAT_C_BH_PORT_RESET 29 --- linux-3.2.0.orig/include/linux/usb/uas.h +++ linux-3.2.0/include/linux/usb/uas.h @@ -0,0 +1,69 @@ +#ifndef __USB_UAS_H__ +#define __USB_UAS_H__ + +#include +#include + +/* Common header for all IUs */ +struct iu { + __u8 iu_id; + __u8 rsvd1; + __be16 tag; +}; + +enum { + IU_ID_COMMAND = 0x01, + IU_ID_STATUS = 0x03, + IU_ID_RESPONSE = 0x04, + IU_ID_TASK_MGMT = 0x05, + IU_ID_READ_READY = 0x06, + IU_ID_WRITE_READY = 0x07, +}; + +struct command_iu { + __u8 iu_id; + __u8 rsvd1; + __be16 tag; + __u8 prio_attr; + __u8 rsvd5; + __u8 len; + __u8 rsvd7; + struct scsi_lun lun; + __u8 cdb[16]; /* XXX: Overflow-checking tools may misunderstand */ +}; + +/* + * Also used for the Read Ready and Write Ready IUs since they have the + * same first four bytes + */ +struct sense_iu { + __u8 iu_id; + __u8 rsvd1; + __be16 tag; + __be16 status_qual; + __u8 status; + __u8 rsvd7[7]; + __be16 len; + __u8 sense[SCSI_SENSE_BUFFERSIZE]; +}; + +struct usb_pipe_usage_descriptor { + __u8 bLength; + __u8 bDescriptorType; + + __u8 bPipeID; + __u8 Reserved; +} __attribute__((__packed__)); + +enum { + CMD_PIPE_ID = 1, + STATUS_PIPE_ID = 2, + DATA_IN_PIPE_ID = 3, + DATA_OUT_PIPE_ID = 4, + + UAS_SIMPLE_TAG = 0, + UAS_HEAD_TAG = 1, + UAS_ORDERED_TAG = 2, + UAS_ACA = 4, +}; +#endif --- linux-3.2.0.orig/include/linux/usb/ch9.h +++ linux-3.2.0/include/linux/usb/ch9.h @@ -589,7 +589,7 @@ */ static inline int usb_endpoint_maxp(const struct usb_endpoint_descriptor *epd) { - return le16_to_cpu(epd->wMaxPacketSize); + return __le16_to_cpu(epd->wMaxPacketSize); } /*-------------------------------------------------------------------------*/ @@ -605,8 +605,26 @@ } __attribute__ ((packed)); #define USB_DT_SS_EP_COMP_SIZE 6 + /* Bits 4:0 of bmAttributes if this is a bulk endpoint */ -#define USB_SS_MAX_STREAMS(p) (1 << ((p) & 0x1f)) +static inline int +usb_ss_max_streams(const struct usb_ss_ep_comp_descriptor *comp) +{ + int max_streams; + + if (!comp) + return 0; + + max_streams = comp->bmAttributes & 0x1f; + + if (!max_streams) + return 0; + + max_streams = 1 << max_streams; + + return max_streams; +} + /* Bits 1:0 of bmAttributes if this is an isoc endpoint */ #define USB_SS_MULT(p) (1 + ((p) & 0x3)) --- linux-3.2.0.orig/include/net/route.h +++ linux-3.2.0/include/net/route.h @@ -270,6 +270,7 @@ if (IS_ERR(rt)) return rt; ip_rt_put(rt); + flowi4_update_output(fl4, oif, tos, fl4->daddr, fl4->saddr); } security_sk_classify_flow(sk, flowi4_to_flowi(fl4)); return ip_route_output_flow(net, fl4, sk); @@ -284,6 +285,9 @@ fl4->fl4_dport = dport; fl4->fl4_sport = sport; ip_rt_put(rt); + flowi4_update_output(fl4, sk->sk_bound_dev_if, + RT_CONN_FLAGS(sk), fl4->daddr, + fl4->saddr); security_sk_classify_flow(sk, flowi4_to_flowi(fl4)); return ip_route_output_flow(sock_net(sk), fl4, sk); } --- linux-3.2.0.orig/include/net/sch_generic.h +++ linux-3.2.0/include/net/sch_generic.h @@ -220,9 +220,16 @@ struct qdisc_skb_cb { unsigned int pkt_len; - long data[]; + unsigned char data[24]; }; +static inline void qdisc_cb_private_validate(const struct sk_buff *skb, int sz) +{ + struct qdisc_skb_cb *qcb; + BUILD_BUG_ON(sizeof(skb->cb) < sizeof(unsigned int) + sz); + BUILD_BUG_ON(sizeof(qcb->data) < sz); +} + static inline int qdisc_qlen(const struct Qdisc *q) { return q->q.qlen; --- linux-3.2.0.orig/include/net/dsa.h +++ linux-3.2.0/include/net/dsa.h @@ -11,6 +11,10 @@ #ifndef __LINUX_NET_DSA_H #define __LINUX_NET_DSA_H +#include +#include +#include + #define DSA_MAX_SWITCHES 4 #define DSA_MAX_PORTS 12 @@ -54,8 +58,143 @@ struct dsa_chip_data *chip; }; -extern bool dsa_uses_dsa_tags(void *dsa_ptr); -extern bool dsa_uses_trailer_tags(void *dsa_ptr); +struct dsa_switch_tree { + /* + * Configuration data for the platform device that owns + * this dsa switch tree instance. + */ + struct dsa_platform_data *pd; + + /* + * Reference to network device to use, and which tagging + * protocol to use. + */ + struct net_device *master_netdev; + __be16 tag_protocol; + + /* + * The switch and port to which the CPU is attached. + */ + s8 cpu_switch; + s8 cpu_port; + + /* + * Link state polling. + */ + int link_poll_needed; + struct work_struct link_poll_work; + struct timer_list link_poll_timer; + + /* + * Data for the individual switch chips. + */ + struct dsa_switch *ds[DSA_MAX_SWITCHES]; +}; + +struct dsa_switch { + /* + * Parent switch tree, and switch index. + */ + struct dsa_switch_tree *dst; + int index; + + /* + * Configuration data for this switch. + */ + struct dsa_chip_data *pd; + + /* + * The used switch driver. + */ + struct dsa_switch_driver *drv; + + /* + * Reference to mii bus to use. + */ + struct mii_bus *master_mii_bus; + + /* + * Slave mii_bus and devices for the individual ports. + */ + u32 dsa_port_mask; + u32 phys_port_mask; + struct mii_bus *slave_mii_bus; + struct net_device *ports[DSA_MAX_PORTS]; +}; + +static inline bool dsa_is_cpu_port(struct dsa_switch *ds, int p) +{ + return !!(ds->index == ds->dst->cpu_switch && p == ds->dst->cpu_port); +} + +static inline u8 dsa_upstream_port(struct dsa_switch *ds) +{ + struct dsa_switch_tree *dst = ds->dst; + + /* + * If this is the root switch (i.e. the switch that connects + * to the CPU), return the cpu port number on this switch. + * Else return the (DSA) port number that connects to the + * switch that is one hop closer to the cpu. + */ + if (dst->cpu_switch == ds->index) + return dst->cpu_port; + else + return ds->pd->rtable[dst->cpu_switch]; +} + +struct dsa_switch_driver { + struct list_head list; + + __be16 tag_protocol; + int priv_size; + + /* + * Probing and setup. + */ + char *(*probe)(struct mii_bus *bus, int sw_addr); + int (*setup)(struct dsa_switch *ds); + int (*set_addr)(struct dsa_switch *ds, u8 *addr); + + /* + * Access to the switch's PHY registers. + */ + int (*phy_read)(struct dsa_switch *ds, int port, int regnum); + int (*phy_write)(struct dsa_switch *ds, int port, + int regnum, u16 val); + + /* + * Link state polling and IRQ handling. + */ + void (*poll_link)(struct dsa_switch *ds); + + /* + * ethtool hardware statistics. + */ + void (*get_strings)(struct dsa_switch *ds, int port, uint8_t *data); + void (*get_ethtool_stats)(struct dsa_switch *ds, + int port, uint64_t *data); + int (*get_sset_count)(struct dsa_switch *ds); +}; + +void register_switch_driver(struct dsa_switch_driver *type); +void unregister_switch_driver(struct dsa_switch_driver *type); +/* + * The original DSA tag format and some other tag formats have no + * ethertype, which means that we need to add a little hack to the + * networking receive path to make sure that received frames get + * the right ->protocol assigned to them when one of those tag + * formats is in use. + */ +static inline bool dsa_uses_dsa_tags(struct dsa_switch_tree *dst) +{ + return !!(dst->tag_protocol == htons(ETH_P_DSA)); +} + +static inline bool dsa_uses_trailer_tags(struct dsa_switch_tree *dst) +{ + return !!(dst->tag_protocol == htons(ETH_P_TRAILER)); +} #endif --- linux-3.2.0.orig/include/net/flow.h +++ linux-3.2.0/include/net/flow.h @@ -90,6 +90,16 @@ fl4->fl4_dport = dport; fl4->fl4_sport = sport; } + +/* Reset some input parameters after previous lookup */ +static inline void flowi4_update_output(struct flowi4 *fl4, int oif, __u8 tos, + __be32 daddr, __be32 saddr) +{ + fl4->flowi4_oif = oif; + fl4->flowi4_tos = tos; + fl4->daddr = daddr; + fl4->saddr = saddr; +} struct flowi6 { --- linux-3.2.0.orig/include/net/netns/generic.h +++ linux-3.2.0/include/net/netns/generic.h @@ -41,6 +41,7 @@ ptr = ng->ptr[id - 1]; rcu_read_unlock(); + BUG_ON(!ptr); return ptr; } #endif --- linux-3.2.0.orig/include/net/bluetooth/hci.h +++ linux-3.2.0/include/net/bluetooth/hci.h @@ -84,6 +84,7 @@ HCI_SERVICE_CACHE, HCI_LINK_KEYS, HCI_DEBUG_KEYS, + HCI_UNREGISTER, HCI_RESET, }; --- linux-3.2.0.orig/crypto/sha512_generic.c +++ linux-3.2.0/crypto/sha512_generic.c @@ -21,8 +21,6 @@ #include #include -static DEFINE_PER_CPU(u64[80], msg_schedule); - static inline u64 Ch(u64 x, u64 y, u64 z) { return z ^ (x & (y ^ z)); @@ -33,11 +31,6 @@ return (x & y) | (z & (x | y)); } -static inline u64 RORu64(u64 x, u64 y) -{ - return (x >> y) | (x << (64 - y)); -} - static const u64 sha512_K[80] = { 0x428a2f98d728ae22ULL, 0x7137449123ef65cdULL, 0xb5c0fbcfec4d3b2fULL, 0xe9b5dba58189dbbcULL, 0x3956c25bf348b538ULL, 0x59f111f1b605d019ULL, @@ -68,10 +61,10 @@ 0x5fcb6fab3ad6faecULL, 0x6c44198c4a475817ULL, }; -#define e0(x) (RORu64(x,28) ^ RORu64(x,34) ^ RORu64(x,39)) -#define e1(x) (RORu64(x,14) ^ RORu64(x,18) ^ RORu64(x,41)) -#define s0(x) (RORu64(x, 1) ^ RORu64(x, 8) ^ (x >> 7)) -#define s1(x) (RORu64(x,19) ^ RORu64(x,61) ^ (x >> 6)) +#define e0(x) (ror64(x,28) ^ ror64(x,34) ^ ror64(x,39)) +#define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41)) +#define s0(x) (ror64(x, 1) ^ ror64(x, 8) ^ (x >> 7)) +#define s1(x) (ror64(x,19) ^ ror64(x,61) ^ (x >> 6)) static inline void LOAD_OP(int I, u64 *W, const u8 *input) { @@ -80,7 +73,7 @@ static inline void BLEND_OP(int I, u64 *W) { - W[I] = s1(W[I-2]) + W[I-7] + s0(W[I-15]) + W[I-16]; + W[I & 15] += s1(W[(I-2) & 15]) + W[(I-7) & 15] + s0(W[(I-15) & 15]); } static void @@ -89,15 +82,7 @@ u64 a, b, c, d, e, f, g, h, t1, t2; int i; - u64 *W = get_cpu_var(msg_schedule); - - /* load the input */ - for (i = 0; i < 16; i++) - LOAD_OP(i, W, input); - - for (i = 16; i < 80; i++) { - BLEND_OP(i, W); - } + u64 W[16]; /* load the state into our registers */ a=state[0]; b=state[1]; c=state[2]; d=state[3]; @@ -105,21 +90,35 @@ /* now iterate */ for (i=0; i<80; i+=8) { - t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[i ]; + if (!(i & 8)) { + int j; + + if (i < 16) { + /* load the input */ + for (j = 0; j < 16; j++) + LOAD_OP(i + j, W, input); + } else { + for (j = 0; j < 16; j++) { + BLEND_OP(i + j, W); + } + } + } + + t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[(i & 15)]; t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2; - t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[i+1]; + t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[(i & 15) + 1]; t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; - t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[i+2]; + t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[(i & 15) + 2]; t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; - t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[i+3]; + t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[(i & 15) + 3]; t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; - t1 = d + e1(a) + Ch(a,b,c) + sha512_K[i+4] + W[i+4]; + t1 = d + e1(a) + Ch(a,b,c) + sha512_K[i+4] + W[(i & 15) + 4]; t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; - t1 = c + e1(h) + Ch(h,a,b) + sha512_K[i+5] + W[i+5]; + t1 = c + e1(h) + Ch(h,a,b) + sha512_K[i+5] + W[(i & 15) + 5]; t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2; - t1 = b + e1(g) + Ch(g,h,a) + sha512_K[i+6] + W[i+6]; + t1 = b + e1(g) + Ch(g,h,a) + sha512_K[i+6] + W[(i & 15) + 6]; t2 = e0(c) + Maj(c,d,e); f+=t1; b=t1+t2; - t1 = a + e1(f) + Ch(f,g,h) + sha512_K[i+7] + W[i+7]; + t1 = a + e1(f) + Ch(f,g,h) + sha512_K[i+7] + W[(i & 15) + 7]; t2 = e0(b) + Maj(b,c,d); e+=t1; a=t1+t2; } @@ -128,8 +127,6 @@ /* erase our data */ a = b = c = d = e = f = g = h = t1 = t2 = 0; - memset(W, 0, sizeof(__get_cpu_var(msg_schedule))); - put_cpu_var(msg_schedule); } static int @@ -177,7 +174,7 @@ index = sctx->count[0] & 0x7f; /* Update number of bytes */ - if (!(sctx->count[0] += len)) + if ((sctx->count[0] += len) < len) sctx->count[1]++; part_len = 128 - index; --- linux-3.2.0.orig/drivers/pnp/quirks.c +++ linux-3.2.0/drivers/pnp/quirks.c @@ -295,6 +295,45 @@ } } +#ifdef CONFIG_AMD_NB + +#include + +static void quirk_amd_mmconfig_area(struct pnp_dev *dev) +{ + resource_size_t start, end; + struct pnp_resource *pnp_res; + struct resource *res; + struct resource mmconfig_res, *mmconfig; + + mmconfig = amd_get_mmconfig_range(&mmconfig_res); + if (!mmconfig) + return; + + list_for_each_entry(pnp_res, &dev->resources, list) { + res = &pnp_res->res; + if (res->end < mmconfig->start || res->start > mmconfig->end || + (res->start == mmconfig->start && res->end == mmconfig->end)) + continue; + + dev_info(&dev->dev, FW_BUG + "%pR covers only part of AMD MMCONFIG area %pR; adding more reservations\n", + res, mmconfig); + if (mmconfig->start < res->start) { + start = mmconfig->start; + end = res->start - 1; + pnp_add_mem_resource(dev, start, end, 0); + } + if (mmconfig->end > res->end) { + start = res->end + 1; + end = mmconfig->end; + pnp_add_mem_resource(dev, start, end, 0); + } + break; + } +} +#endif + /* * PnP Quirks * Cards or devices that need some tweaking due to incomplete resource info @@ -322,6 +361,9 @@ /* PnP resources that might overlap PCI BARs */ {"PNP0c01", quirk_system_pci_resources}, {"PNP0c02", quirk_system_pci_resources}, +#ifdef CONFIG_AMD_NB + {"PNP0c01", quirk_amd_mmconfig_area}, +#endif {""} }; --- linux-3.2.0.orig/drivers/pnp/isapnp/core.c +++ linux-3.2.0/drivers/pnp/isapnp/core.c @@ -41,6 +41,7 @@ #include #include #include +#include #include #include "../base.h" @@ -1001,7 +1002,7 @@ .disable = isapnp_disable_resources, }; -static int __init isapnp_init(void) +static int __init real_isapnp_init(void) { int cards; struct pnp_card *card; @@ -1095,6 +1096,15 @@ return 0; } +static void __init async_isapnp_init(void *unused, async_cookie_t cookie) +{ + (void)real_isapnp_init(); +} + +static int __init isapnp_init(void) +{ + async_schedule(async_isapnp_init, NULL); +} device_initcall(isapnp_init); /* format is: noisapnp */ --- linux-3.2.0.orig/drivers/pnp/pnpacpi/core.c +++ linux-3.2.0/drivers/pnp/pnpacpi/core.c @@ -321,9 +321,14 @@ { struct acpi_device *acpi = to_acpi_device(dev); struct pnp_dev *pnp = _pnp; + struct device *physical_device; + + physical_device = acpi_get_physical_device(acpi->handle); + if (physical_device) + put_device(physical_device); /* true means it matched */ - return !acpi_get_physical_device(acpi->handle) + return !physical_device && compare_pnp_id(pnp->id, acpi_device_hid(acpi)); } --- linux-3.2.0.orig/drivers/misc/kgdbts.c +++ linux-3.2.0/drivers/misc/kgdbts.c @@ -134,12 +134,17 @@ static int hwbreaks_ok; static int hw_break_val; static int hw_break_val2; +static int cont_instead_of_sstep; +static unsigned long cont_thread_id; +static unsigned long sstep_thread_id; #if defined(CONFIG_ARM) || defined(CONFIG_MIPS) || defined(CONFIG_SPARC) static int arch_needs_sstep_emulation = 1; #else static int arch_needs_sstep_emulation; #endif +static unsigned long cont_addr; static unsigned long sstep_addr; +static int restart_from_top_after_write; static int sstep_state; /* Storage for the registers, in GDB format. */ @@ -187,7 +192,8 @@ */ while (!final_ack) msleep_interruptible(1500); - + /* Pause for any other threads to exit after final ack. */ + msleep_interruptible(1000); if (configured) kgdb_unregister_io_module(&kgdbts_io_ops); configured = 0; @@ -211,7 +217,7 @@ if (!strcmp(arg, "kgdbts_break_test")) addr = (unsigned long)kgdbts_break_test; else if (!strcmp(arg, "sys_open")) - addr = (unsigned long)sys_open; + addr = (unsigned long)do_sys_open; else if (!strcmp(arg, "do_fork")) addr = (unsigned long)do_fork; else if (!strcmp(arg, "hw_break_val")) @@ -283,6 +289,16 @@ hw_break_val++; } +static int get_thread_id_continue(char *put_str, char *arg) +{ + char *ptr = &put_str[11]; + + if (put_str[1] != 'T' || put_str[2] != '0') + return 1; + kgdb_hex2long(&ptr, &cont_thread_id); + return 0; +} + static int check_and_rewind_pc(char *put_str, char *arg) { unsigned long addr = lookup_addr(arg); @@ -299,13 +315,21 @@ if (addr + BREAK_INSTR_SIZE == ip) offset = -BREAK_INSTR_SIZE; #endif - if (strcmp(arg, "silent") && ip + offset != addr) { + + if (arch_needs_sstep_emulation && sstep_addr && + ip + offset == sstep_addr && + ((!strcmp(arg, "sys_open") || !strcmp(arg, "do_fork")))) { + /* This is special case for emulated single step */ + v2printk("Emul: rewind hit single step bp\n"); + restart_from_top_after_write = 1; + } else if (strcmp(arg, "silent") && ip + offset != addr) { eprintk("kgdbts: BP mismatch %lx expected %lx\n", ip + offset, addr); return 1; } /* Readjust the instruction pointer if needed */ ip += offset; + cont_addr = ip; #ifdef GDB_ADJUSTS_BREAK_OFFSET instruction_pointer_set(&kgdbts_regs, ip); #endif @@ -315,6 +339,8 @@ static int check_single_step(char *put_str, char *arg) { unsigned long addr = lookup_addr(arg); + static int matched_id; + /* * From an arch indepent point of view the instruction pointer * should be on a different instruction @@ -324,6 +350,29 @@ gdb_regs_to_pt_regs(kgdbts_gdb_regs, &kgdbts_regs); v2printk("Singlestep stopped at IP: %lx\n", instruction_pointer(&kgdbts_regs)); + + if (sstep_thread_id != cont_thread_id) { + /* + * Ensure we stopped in the same thread id as before, else the + * debugger should continue until the original thread that was + * single stepped is scheduled again, emulating gdb's behavior. + */ + v2printk("ThrID does not match: %lx\n", cont_thread_id); + if (arch_needs_sstep_emulation) { + if (matched_id && + instruction_pointer(&kgdbts_regs) != addr) + goto continue_test; + matched_id++; + ts.idx -= 2; + sstep_state = 0; + return 0; + } + cont_instead_of_sstep = 1; + ts.idx -= 4; + return 0; + } +continue_test: + matched_id = 0; if (instruction_pointer(&kgdbts_regs) == addr) { eprintk("kgdbts: SingleStep failed at %lx\n", instruction_pointer(&kgdbts_regs)); @@ -365,10 +414,40 @@ return 1; } +static void get_cont_catch(char *arg) +{ + /* Always send detach because the test is completed at this point */ + fill_get_buf("D"); +} + +static int put_cont_catch(char *put_str, char *arg) +{ + /* This is at the end of the test and we catch any and all input */ + v2printk("kgdbts: cleanup task: %lx\n", sstep_thread_id); + ts.idx--; + return 0; +} + +static int emul_reset(char *put_str, char *arg) +{ + if (strncmp(put_str, "$OK", 3)) + return 1; + if (restart_from_top_after_write) { + restart_from_top_after_write = 0; + ts.idx = -1; + } + return 0; +} + static void emul_sstep_get(char *arg) { if (!arch_needs_sstep_emulation) { - fill_get_buf(arg); + if (cont_instead_of_sstep) { + cont_instead_of_sstep = 0; + fill_get_buf("c"); + } else { + fill_get_buf(arg); + } return; } switch (sstep_state) { @@ -398,9 +477,11 @@ static int emul_sstep_put(char *put_str, char *arg) { if (!arch_needs_sstep_emulation) { - if (!strncmp(put_str+1, arg, 2)) - return 0; - return 1; + char *ptr = &put_str[11]; + if (put_str[1] != 'T' || put_str[2] != '0') + return 1; + kgdb_hex2long(&ptr, &sstep_thread_id); + return 0; } switch (sstep_state) { case 1: @@ -411,8 +492,7 @@ v2printk("Stopped at IP: %lx\n", instruction_pointer(&kgdbts_regs)); /* Want to stop at IP + break instruction size by default */ - sstep_addr = instruction_pointer(&kgdbts_regs) + - BREAK_INSTR_SIZE; + sstep_addr = cont_addr + BREAK_INSTR_SIZE; break; case 2: if (strncmp(put_str, "$OK", 3)) { @@ -424,6 +504,9 @@ if (strncmp(put_str, "$T0", 3)) { eprintk("kgdbts: failed continue sstep\n"); return 1; + } else { + char *ptr = &put_str[11]; + kgdb_hex2long(&ptr, &sstep_thread_id); } break; case 4: @@ -502,10 +585,10 @@ static struct test_struct singlestep_break_test[] = { { "?", "S0*" }, /* Clear break points */ { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */ - { "c", "T0*", }, /* Continue */ + { "c", "T0*", NULL, get_thread_id_continue }, /* Continue */ + { "kgdbts_break_test", "OK", sw_rem_break }, /*remove breakpoint */ { "g", "kgdbts_break_test", NULL, check_and_rewind_pc }, { "write", "OK", write_regs }, /* Write registers */ - { "kgdbts_break_test", "OK", sw_rem_break }, /*remove breakpoint */ { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */ { "g", "kgdbts_break_test", NULL, check_single_step }, { "kgdbts_break_test", "OK", sw_break, }, /* set sw breakpoint */ @@ -523,16 +606,16 @@ static struct test_struct do_fork_test[] = { { "?", "S0*" }, /* Clear break points */ { "do_fork", "OK", sw_break, }, /* set sw breakpoint */ - { "c", "T0*", }, /* Continue */ - { "g", "do_fork", NULL, check_and_rewind_pc }, /* check location */ - { "write", "OK", write_regs }, /* Write registers */ + { "c", "T0*", NULL, get_thread_id_continue }, /* Continue */ { "do_fork", "OK", sw_rem_break }, /*remove breakpoint */ + { "g", "do_fork", NULL, check_and_rewind_pc }, /* check location */ + { "write", "OK", write_regs, emul_reset }, /* Write registers */ { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */ { "g", "do_fork", NULL, check_single_step }, { "do_fork", "OK", sw_break, }, /* set sw breakpoint */ { "7", "T0*", skip_back_repeat_test }, /* Loop based on repeat_test */ { "D", "OK", NULL, final_ack_set }, /* detach and unregister I/O */ - { "", "" }, + { "", "", get_cont_catch, put_cont_catch }, }; /* Test for hitting a breakpoint at sys_open for what ever the number @@ -541,16 +624,16 @@ static struct test_struct sys_open_test[] = { { "?", "S0*" }, /* Clear break points */ { "sys_open", "OK", sw_break, }, /* set sw breakpoint */ - { "c", "T0*", }, /* Continue */ - { "g", "sys_open", NULL, check_and_rewind_pc }, /* check location */ - { "write", "OK", write_regs }, /* Write registers */ + { "c", "T0*", NULL, get_thread_id_continue }, /* Continue */ { "sys_open", "OK", sw_rem_break }, /*remove breakpoint */ + { "g", "sys_open", NULL, check_and_rewind_pc }, /* check location */ + { "write", "OK", write_regs, emul_reset }, /* Write registers */ { "s", "T0*", emul_sstep_get, emul_sstep_put }, /* Single step */ { "g", "sys_open", NULL, check_single_step }, { "sys_open", "OK", sw_break, }, /* set sw breakpoint */ { "7", "T0*", skip_back_repeat_test }, /* Loop based on repeat_test */ { "D", "OK", NULL, final_ack_set }, /* detach and unregister I/O */ - { "", "" }, + { "", "", get_cont_catch, put_cont_catch }, }; /* @@ -693,8 +776,8 @@ /* This callback is a put char which is when kgdb sends data to * this I/O module. */ - if (ts.tst[ts.idx].get[0] == '\0' && - ts.tst[ts.idx].put[0] == '\0') { + if (ts.tst[ts.idx].get[0] == '\0' && ts.tst[ts.idx].put[0] == '\0' && + !ts.tst[ts.idx].get_handler) { eprintk("kgdbts: ERROR: beyond end of test on" " '%s' line %i\n", ts.name, ts.idx); return 0; @@ -907,6 +990,17 @@ if (ptr) sstep_test = simple_strtol(ptr+1, NULL, 10); + /* All HW break point tests */ + if (arch_kgdb_ops.flags & KGDB_HW_BREAKPOINT) { + hwbreaks_ok = 1; + v1printk("kgdbts:RUN hw breakpoint test\n"); + run_breakpoint_test(1); + v1printk("kgdbts:RUN hw write breakpoint test\n"); + run_hw_break_test(1); + v1printk("kgdbts:RUN access write breakpoint test\n"); + run_hw_break_test(0); + } + /* required internal KGDB tests */ v1printk("kgdbts:RUN plant and detach test\n"); run_plant_and_detach_test(0); @@ -924,35 +1018,11 @@ /* ===Optional tests=== */ - /* All HW break point tests */ - if (arch_kgdb_ops.flags & KGDB_HW_BREAKPOINT) { - hwbreaks_ok = 1; - v1printk("kgdbts:RUN hw breakpoint test\n"); - run_breakpoint_test(1); - v1printk("kgdbts:RUN hw write breakpoint test\n"); - run_hw_break_test(1); - v1printk("kgdbts:RUN access write breakpoint test\n"); - run_hw_break_test(0); - } - if (nmi_sleep) { v1printk("kgdbts:RUN NMI sleep %i seconds test\n", nmi_sleep); run_nmi_sleep_test(nmi_sleep); } -#ifdef CONFIG_DEBUG_RODATA - /* Until there is an api to write to read-only text segments, use - * HW breakpoints for the remainder of any tests, else print a - * failure message if hw breakpoints do not work. - */ - if (!(arch_kgdb_ops.flags & KGDB_HW_BREAKPOINT && hwbreaks_ok)) { - eprintk("kgdbts: HW breakpoints do not work," - "skipping remaining tests\n"); - return; - } - force_hwbrks = 1; -#endif /* CONFIG_DEBUG_RODATA */ - /* If the do_fork test is run it will be the last test that is * executed because a kernel thread will be spawned at the very * end to unregister the debug hooks. --- linux-3.2.0.orig/drivers/misc/cs5535-mfgpt.c +++ linux-3.2.0/drivers/misc/cs5535-mfgpt.c @@ -262,7 +262,7 @@ * In other cases (such as with VSAless OpenFirmware), the system firmware * leaves timers available for us to use. */ -static int __init scan_timers(struct cs5535_mfgpt_chip *mfgpt) +static int __devinit scan_timers(struct cs5535_mfgpt_chip *mfgpt) { struct cs5535_mfgpt_timer timer = { .chip = mfgpt }; unsigned long flags; --- linux-3.2.0.orig/drivers/misc/cb710/core.c +++ linux-3.2.0/drivers/misc/cb710/core.c @@ -245,6 +245,7 @@ if (err) return err; + spin_lock_init(&chip->irq_lock); chip->pdev = pdev; chip->iobase = pcim_iomap_table(pdev)[0]; --- linux-3.2.0.orig/drivers/mtd/mtdoops.c +++ linux-3.2.0/drivers/mtd/mtdoops.c @@ -253,6 +253,9 @@ size_t retlen; for (page = 0; page < cxt->oops_pages; page++) { + if (mtd->block_isbad && + mtd->block_isbad(mtd, page * record_size)) + continue; /* Assume the page is used */ mark_page_used(cxt, page); ret = mtd->read(mtd, page * record_size, MTDOOPS_HEADER_SIZE, @@ -308,8 +311,7 @@ char *dst; if (reason != KMSG_DUMP_OOPS && - reason != KMSG_DUMP_PANIC && - reason != KMSG_DUMP_KEXEC) + reason != KMSG_DUMP_PANIC) return; /* Only dump oopses if dump_oops is set */ @@ -369,7 +371,7 @@ /* oops_page_used is a bit field */ cxt->oops_page_used = vmalloc(DIV_ROUND_UP(mtdoops_pages, - BITS_PER_LONG)); + BITS_PER_LONG) * sizeof(unsigned long)); if (!cxt->oops_page_used) { printk(KERN_ERR "mtdoops: could not allocate page array\n"); return; --- linux-3.2.0.orig/drivers/mtd/sm_ftl.c +++ linux-3.2.0/drivers/mtd/sm_ftl.c @@ -1256,7 +1256,7 @@ static struct mtd_blktrans_ops sm_ftl_ops = { .name = "smblk", - .major = -1, + .major = 0, .part_bits = SM_FTL_PARTN_BITS, .blksize = SM_SECTOR_SIZE, .getgeo = sm_getgeo, --- linux-3.2.0.orig/drivers/mtd/mtd_blkdevs.c +++ linux-3.2.0/drivers/mtd/mtd_blkdevs.c @@ -215,7 +215,7 @@ mutex_lock(&dev->lock); - if (dev->open++) + if (dev->open) goto unlock; kref_get(&dev->ref); @@ -235,6 +235,7 @@ goto error_release; unlock: + dev->open++; mutex_unlock(&dev->lock); blktrans_dev_put(dev); return ret; --- linux-3.2.0.orig/drivers/mtd/nand/atmel_nand.c +++ linux-3.2.0/drivers/mtd/nand/atmel_nand.c @@ -161,6 +161,37 @@ !!host->board->rdy_pin_active_low; } +/* + * Minimal-overhead PIO for data access. + */ +static void atmel_read_buf8(struct mtd_info *mtd, u8 *buf, int len) +{ + struct nand_chip *nand_chip = mtd->priv; + + __raw_readsb(nand_chip->IO_ADDR_R, buf, len); +} + +static void atmel_read_buf16(struct mtd_info *mtd, u8 *buf, int len) +{ + struct nand_chip *nand_chip = mtd->priv; + + __raw_readsw(nand_chip->IO_ADDR_R, buf, len / 2); +} + +static void atmel_write_buf8(struct mtd_info *mtd, const u8 *buf, int len) +{ + struct nand_chip *nand_chip = mtd->priv; + + __raw_writesb(nand_chip->IO_ADDR_W, buf, len); +} + +static void atmel_write_buf16(struct mtd_info *mtd, const u8 *buf, int len) +{ + struct nand_chip *nand_chip = mtd->priv; + + __raw_writesw(nand_chip->IO_ADDR_W, buf, len / 2); +} + static void dma_complete_func(void *completion) { complete(completion); @@ -235,27 +266,33 @@ static void atmel_read_buf(struct mtd_info *mtd, u8 *buf, int len) { struct nand_chip *chip = mtd->priv; + struct atmel_nand_host *host = chip->priv; if (use_dma && len > mtd->oobsize) /* only use DMA for bigger than oob size: better performances */ if (atmel_nand_dma_op(mtd, buf, len, 1) == 0) return; - /* if no DMA operation possible, use PIO */ - memcpy_fromio(buf, chip->IO_ADDR_R, len); + if (host->board->bus_width_16) + atmel_read_buf16(mtd, buf, len); + else + atmel_read_buf8(mtd, buf, len); } static void atmel_write_buf(struct mtd_info *mtd, const u8 *buf, int len) { struct nand_chip *chip = mtd->priv; + struct atmel_nand_host *host = chip->priv; if (use_dma && len > mtd->oobsize) /* only use DMA for bigger than oob size: better performances */ if (atmel_nand_dma_op(mtd, (void *)buf, len, 0) == 0) return; - /* if no DMA operation possible, use PIO */ - memcpy_toio(chip->IO_ADDR_W, buf, len); + if (host->board->bus_width_16) + atmel_write_buf16(mtd, buf, len); + else + atmel_write_buf8(mtd, buf, len); } /* --- linux-3.2.0.orig/drivers/mtd/nand/gpmi-nand/gpmi-lib.c +++ linux-3.2.0/drivers/mtd/nand/gpmi-nand/gpmi-lib.c @@ -69,17 +69,19 @@ * [1] enable the module. * [2] reset the module. * - * In most of the cases, it's ok. But there is a hardware bug in the BCH block. + * In most of the cases, it's ok. + * But in MX23, there is a hardware bug in the BCH block (see erratum #2847). * If you try to soft reset the BCH block, it becomes unusable until * the next hard reset. This case occurs in the NAND boot mode. When the board * boots by NAND, the ROM of the chip will initialize the BCH blocks itself. * So If the driver tries to reset the BCH again, the BCH will not work anymore. - * You will see a DMA timeout in this case. + * You will see a DMA timeout in this case. The bug has been fixed + * in the following chips, such as MX28. * * To avoid this bug, just add a new parameter `just_enable` for * the mxs_reset_block(), and rewrite it here. */ -int gpmi_reset_block(void __iomem *reset_addr, bool just_enable) +static int gpmi_reset_block(void __iomem *reset_addr, bool just_enable) { int ret; int timeout = 0x400; @@ -206,7 +208,15 @@ if (ret) goto err_out; - ret = gpmi_reset_block(r->bch_regs, true); + /* + * Due to erratum #2847 of the MX23, the BCH cannot be soft reset on this + * chip, otherwise it will lock up. So we skip resetting BCH on the MX23. + * On the other hand, the MX28 needs the reset, because one case has been + * seen where the BCH produced ECC errors constantly after 10000 + * consecutive reboots. The latter case has not been seen on the MX23 yet, + * still we don't know if it could happen there as well. + */ + ret = gpmi_reset_block(r->bch_regs, GPMI_IS_MX23(this)); if (ret) goto err_out; --- linux-3.2.0.orig/drivers/mtd/nand/gpmi-nand/gpmi-nand.c +++ linux-3.2.0/drivers/mtd/nand/gpmi-nand/gpmi-nand.c @@ -1124,7 +1124,7 @@ chip->bbt[block >> 2] |= 0x01 << ((block & 0x03) << 1); /* Do we have a flash based bad block table ? */ - if (chip->options & NAND_BBT_USE_FLASH) + if (chip->bbt_options & NAND_BBT_USE_FLASH) ret = nand_update_bbt(mtd, ofs); else { chipnr = (int)(ofs >> chip->chip_shift); --- linux-3.2.0.orig/drivers/mtd/tests/mtd_stresstest.c +++ linux-3.2.0/drivers/mtd/tests/mtd_stresstest.c @@ -284,6 +284,12 @@ (unsigned long long)mtd->size, mtd->erasesize, pgsize, ebcnt, pgcnt, mtd->oobsize); + if (ebcnt < 2) { + printk(PRINT_PREF "error: need at least 2 eraseblocks\n"); + err = -ENOSPC; + goto out_put_mtd; + } + /* Read or write up 2 eraseblocks at a time */ bufsize = mtd->erasesize * 2; @@ -322,6 +328,7 @@ kfree(bbt); vfree(writebuf); vfree(readbuf); +out_put_mtd: put_mtd_device(mtd); if (err) printk(PRINT_PREF "error %d occurred\n", err); --- linux-3.2.0.orig/drivers/mtd/maps/ixp4xx.c +++ linux-3.2.0/drivers/mtd/maps/ixp4xx.c @@ -182,6 +182,9 @@ { struct flash_platform_data *plat = dev->dev.platform_data; struct ixp4xx_flash_info *info; + struct mtd_part_parser_data ppdata = { + .origin = dev->resource->start, + }; int err = -1; if (!plat) @@ -247,7 +250,7 @@ /* Use the fast version */ info->map.write = ixp4xx_write16; - err = mtd_device_parse_register(info->mtd, probes, dev->resource->start, + err = mtd_device_parse_register(info->mtd, probes, &ppdata, plat->parts, plat->nr_parts); if (err) { printk(KERN_ERR "Could not parse partitions\n"); --- linux-3.2.0.orig/drivers/mtd/maps/lantiq-flash.c +++ linux-3.2.0/drivers/mtd/maps/lantiq-flash.c @@ -45,6 +45,7 @@ }; static char ltq_map_name[] = "ltq_nor"; +static const char *ltq_probe_types[] __devinitconst = { "cmdlinepart", NULL }; static map_word ltq_read16(struct map_info *map, unsigned long adr) @@ -168,7 +169,7 @@ cfi->addr_unlock1 ^= 1; cfi->addr_unlock2 ^= 1; - err = mtd_device_parse_register(ltq_mtd->mtd, NULL, 0, + err = mtd_device_parse_register(ltq_mtd->mtd, ltq_probe_types, 0, ltq_mtd_data->parts, ltq_mtd_data->nr_parts); if (err) { dev_err(&pdev->dev, "failed to add partitions\n"); --- linux-3.2.0.orig/drivers/mtd/devices/m25p80.c +++ linux-3.2.0/drivers/mtd/devices/m25p80.c @@ -932,6 +932,7 @@ ppdata.of_node = spi->dev.of_node; flash->mtd.dev.parent = &spi->dev; flash->page_size = info->page_size; + flash->mtd.writebufsize = flash->page_size; if (info->addr_width) flash->addr_width = info->addr_width; --- linux-3.2.0.orig/drivers/mtd/devices/lart.c +++ linux-3.2.0/drivers/mtd/devices/lart.c @@ -630,6 +630,7 @@ mtd.name = module_name; mtd.type = MTD_NORFLASH; mtd.writesize = 1; + mtd.writebufsize = 4; mtd.flags = MTD_CAP_NORFLASH; mtd.size = FLASH_BLOCKSIZE_PARAM * FLASH_NUMBLOCKS_16m_PARAM + FLASH_BLOCKSIZE_MAIN * FLASH_NUMBLOCKS_16m_MAIN; mtd.erasesize = FLASH_BLOCKSIZE_MAIN; --- linux-3.2.0.orig/drivers/mtd/devices/sst25l.c +++ linux-3.2.0/drivers/mtd/devices/sst25l.c @@ -402,6 +402,7 @@ flash->mtd.flags = MTD_CAP_NORFLASH; flash->mtd.erasesize = flash_info->erase_size; flash->mtd.writesize = flash_info->page_size; + flash->mtd.writebufsize = flash_info->page_size; flash->mtd.size = flash_info->page_size * flash_info->nr_pages; flash->mtd.erase = sst25l_erase; flash->mtd.read = sst25l_read; --- linux-3.2.0.orig/drivers/mtd/devices/block2mtd.c +++ linux-3.2.0/drivers/mtd/devices/block2mtd.c @@ -284,6 +284,7 @@ dev->mtd.size = dev->blkdev->bd_inode->i_size & PAGE_MASK; dev->mtd.erasesize = erase_size; dev->mtd.writesize = 1; + dev->mtd.writebufsize = PAGE_SIZE; dev->mtd.type = MTD_RAM; dev->mtd.flags = MTD_CAP_RAM; dev->mtd.erase = block2mtd_erase; --- linux-3.2.0.orig/drivers/mtd/ubi/cdev.c +++ linux-3.2.0/drivers/mtd/ubi/cdev.c @@ -632,6 +632,9 @@ if (req->alignment != 1 && n) goto bad; + if (!req->name[0] || !req->name_len) + goto bad; + if (req->name_len > UBI_VOL_NAME_MAX) { err = -ENAMETOOLONG; goto bad; --- linux-3.2.0.orig/drivers/mtd/ubi/eba.c +++ linux-3.2.0/drivers/mtd/ubi/eba.c @@ -1028,12 +1028,14 @@ * 'ubi_wl_put_peb()' function on the @ubi->move_mutex. In turn, we are * holding @ubi->move_mutex and go sleep on the LEB lock. So, if the * LEB is already locked, we just do not move it and return - * %MOVE_CANCEL_RACE, which means that UBI will re-try, but later. + * %MOVE_RETRY. Note, we do not return %MOVE_CANCEL_RACE here because + * we do not know the reasons of the contention - it may be just a + * normal I/O on this LEB, so we want to re-try. */ err = leb_write_trylock(ubi, vol_id, lnum); if (err) { dbg_wl("contention on LEB %d:%d, cancel", vol_id, lnum); - return MOVE_CANCEL_RACE; + return MOVE_RETRY; } /* --- linux-3.2.0.orig/drivers/mtd/ubi/debug.h +++ linux-3.2.0/drivers/mtd/ubi/debug.h @@ -43,7 +43,10 @@ pr_debug("UBI DBG " type ": " fmt "\n", ##__VA_ARGS__) /* Just a debugging messages not related to any specific UBI subsystem */ -#define dbg_msg(fmt, ...) ubi_dbg_msg("msg", fmt, ##__VA_ARGS__) +#define dbg_msg(fmt, ...) \ + printk(KERN_DEBUG "UBI DBG (pid %d): %s: " fmt "\n", \ + current->pid, __func__, ##__VA_ARGS__) + /* General debugging messages */ #define dbg_gen(fmt, ...) ubi_dbg_msg("gen", fmt, ##__VA_ARGS__) /* Messages from the eraseblock association sub-system */ --- linux-3.2.0.orig/drivers/mtd/ubi/wl.c +++ linux-3.2.0/drivers/mtd/ubi/wl.c @@ -389,7 +389,7 @@ */ int ubi_wl_get_peb(struct ubi_device *ubi, int dtype) { - int err, medium_ec; + int err; struct ubi_wl_entry *e, *first, *last; ubi_assert(dtype == UBI_LONGTERM || dtype == UBI_SHORTTERM || @@ -427,7 +427,7 @@ * For unknown data we pick a physical eraseblock with medium * erase counter. But we by no means can pick a physical * eraseblock with erase counter greater or equivalent than the - * lowest erase counter plus %WL_FREE_MAX_DIFF. + * lowest erase counter plus %WL_FREE_MAX_DIFF/2. */ first = rb_entry(rb_first(&ubi->free), struct ubi_wl_entry, u.rb); @@ -436,10 +436,8 @@ if (last->ec - first->ec < WL_FREE_MAX_DIFF) e = rb_entry(ubi->free.rb_node, struct ubi_wl_entry, u.rb); - else { - medium_ec = (first->ec + WL_FREE_MAX_DIFF)/2; - e = find_wl_entry(&ubi->free, medium_ec); - } + else + e = find_wl_entry(&ubi->free, WL_FREE_MAX_DIFF/2); break; case UBI_SHORTTERM: /* @@ -795,7 +793,10 @@ protect = 1; goto out_not_moved; } - + if (err == MOVE_RETRY) { + scrubbing = 1; + goto out_not_moved; + } if (err == MOVE_CANCEL_BITFLIPS || err == MOVE_TARGET_WR_ERR || err == MOVE_TARGET_RD_ERR) { /* @@ -1049,7 +1050,6 @@ ubi_err("failed to erase PEB %d, error %d", pnum, err); kfree(wl_wrk); - kmem_cache_free(ubi_wl_entry_slab, e); if (err == -EINTR || err == -ENOMEM || err == -EAGAIN || err == -EBUSY) { @@ -1062,14 +1062,16 @@ goto out_ro; } return err; - } else if (err != -EIO) { + } + + kmem_cache_free(ubi_wl_entry_slab, e); + if (err != -EIO) /* * If this is not %-EIO, we have no idea what to do. Scheduling * this physical eraseblock for erasure again would cause * errors again and again. Well, lets switch to R/O mode. */ goto out_ro; - } /* It is %-EIO, the PEB went bad */ --- linux-3.2.0.orig/drivers/mtd/ubi/ubi.h +++ linux-3.2.0/drivers/mtd/ubi/ubi.h @@ -120,6 +120,7 @@ * PEB * MOVE_CANCEL_BITFLIPS: canceled because a bit-flip was detected in the * target PEB + * MOVE_RETRY: retry scrubbing the PEB */ enum { MOVE_CANCEL_RACE = 1, @@ -127,6 +128,7 @@ MOVE_TARGET_RD_ERR, MOVE_TARGET_WR_ERR, MOVE_CANCEL_BITFLIPS, + MOVE_RETRY, }; /** --- linux-3.2.0.orig/drivers/mtd/ubi/vtbl.c +++ linux-3.2.0/drivers/mtd/ubi/vtbl.c @@ -306,7 +306,7 @@ int copy, void *vtbl) { int err, tries = 0; - static struct ubi_vid_hdr *vid_hdr; + struct ubi_vid_hdr *vid_hdr; struct ubi_scan_leb *new_seb; ubi_msg("create volume table (copy #%d)", copy + 1); --- linux-3.2.0.orig/drivers/mtd/ubi/scan.c +++ linux-3.2.0/drivers/mtd/ubi/scan.c @@ -1174,7 +1174,7 @@ ech = kzalloc(ubi->ec_hdr_alsize, GFP_KERNEL); if (!ech) - goto out_slab; + goto out_si; vidh = ubi_zalloc_vid_hdr(ubi, GFP_KERNEL); if (!vidh) @@ -1235,8 +1235,6 @@ ubi_free_vid_hdr(ubi, vidh); out_ech: kfree(ech); -out_slab: - kmem_cache_destroy(si->scan_leb_slab); out_si: ubi_scan_destroy_si(si); return ERR_PTR(err); @@ -1325,7 +1323,9 @@ } } - kmem_cache_destroy(si->scan_leb_slab); + if (si->scan_leb_slab) + kmem_cache_destroy(si->scan_leb_slab); + kfree(si); } --- linux-3.2.0.orig/drivers/ide/ide-floppy_ioctl.c +++ linux-3.2.0/drivers/ide/ide-floppy_ioctl.c @@ -292,8 +292,7 @@ * and CDROM_SEND_PACKET (legacy) ioctls */ if (cmd != CDROM_SEND_PACKET && cmd != SCSI_IOCTL_SEND_COMMAND) - err = scsi_cmd_ioctl(bdev->bd_disk->queue, bdev->bd_disk, - mode, cmd, argp); + err = scsi_cmd_blk_ioctl(bdev, mode, cmd, argp); if (err == -ENOTTY) err = generic_ide_ioctl(drive, bdev, cmd, arg); --- linux-3.2.0.orig/drivers/cdrom/cdrom.c +++ linux-3.2.0/drivers/cdrom/cdrom.c @@ -292,7 +292,7 @@ /* default compatibility mode */ static int autoclose=1; static int autoeject; -static int lockdoor = 1; +static int lockdoor = 0; /* will we ever get to use this... sigh. */ static int check_media_type; /* automatically restart mrw format */ @@ -2120,11 +2120,6 @@ if (!nr) return -ENOMEM; - if (!access_ok(VERIFY_WRITE, ubuf, nframes * CD_FRAMESIZE_RAW)) { - ret = -EFAULT; - goto out; - } - cgc.data_direction = CGC_DATA_READ; while (nframes > 0) { if (nr > nframes) @@ -2133,7 +2128,7 @@ ret = cdrom_read_block(cdi, &cgc, lba, nr, 1, CD_FRAMESIZE_RAW); if (ret) break; - if (__copy_to_user(ubuf, cgc.buffer, CD_FRAMESIZE_RAW * nr)) { + if (copy_to_user(ubuf, cgc.buffer, CD_FRAMESIZE_RAW * nr)) { ret = -EFAULT; break; } @@ -2141,7 +2136,6 @@ nframes -= nr; lba += nr; } -out: kfree(cgc.buffer); return ret; } @@ -2747,12 +2741,11 @@ { void __user *argp = (void __user *)arg; int ret; - struct gendisk *disk = bdev->bd_disk; /* * Try the generic SCSI command ioctl's first. */ - ret = scsi_cmd_ioctl(disk->queue, disk, mode, cmd, argp); + ret = scsi_cmd_blk_ioctl(bdev, mode, cmd, argp); if (ret != -ENOTTY) return ret; --- linux-3.2.0.orig/drivers/iommu/intel-iommu.c +++ linux-3.2.0/drivers/iommu/intel-iommu.c @@ -2267,12 +2267,6 @@ if (!info) return -ENOMEM; - ret = domain_context_mapping(domain, pdev, translation); - if (ret) { - free_devinfo_mem(info); - return ret; - } - info->segment = pci_domain_nr(pdev->bus); info->bus = pdev->bus->number; info->devfn = pdev->devfn; @@ -2285,6 +2279,17 @@ pdev->dev.archdata.iommu = info; spin_unlock_irqrestore(&device_domain_lock, flags); + ret = domain_context_mapping(domain, pdev, translation); + if (ret) { + spin_lock_irqsave(&device_domain_lock, flags); + list_del(&info->link); + list_del(&info->global); + pdev->dev.archdata.iommu = NULL; + spin_unlock_irqrestore(&device_domain_lock, flags); + free_devinfo_mem(info); + return ret; + } + return 0; } --- linux-3.2.0.orig/drivers/iommu/dmar.c +++ linux-3.2.0/drivers/iommu/dmar.c @@ -1056,8 +1056,8 @@ const char *dmar_get_fault_reason(u8 fault_reason, int *fault_type) { - if (fault_reason >= 0x20 && (fault_reason <= 0x20 + - ARRAY_SIZE(intr_remap_fault_reasons))) { + if (fault_reason >= 0x20 && (fault_reason - 0x20 < + ARRAY_SIZE(intr_remap_fault_reasons))) { *fault_type = INTR_REMAP; return intr_remap_fault_reasons[fault_reason - 0x20]; } else if (fault_reason < ARRAY_SIZE(dma_remap_fault_reasons)) { --- linux-3.2.0.orig/drivers/iommu/amd_iommu_init.c +++ linux-3.2.0/drivers/iommu/amd_iommu_init.c @@ -268,7 +268,7 @@ } /* Programs the physical address of the device table into the IOMMU hardware */ -static void __init iommu_set_device_table(struct amd_iommu *iommu) +static void iommu_set_device_table(struct amd_iommu *iommu) { u64 entry; @@ -1033,8 +1033,9 @@ { int r; - if (pci_enable_msi(iommu->dev)) - return 1; + r = pci_enable_msi(iommu->dev); + if (r) + return r; r = request_threaded_irq(iommu->dev->irq, amd_iommu_int_handler, @@ -1044,24 +1045,33 @@ if (r) { pci_disable_msi(iommu->dev); - return 1; + return r; } iommu->int_enabled = true; - iommu_feature_enable(iommu, CONTROL_EVT_INT_EN); return 0; } static int iommu_init_msi(struct amd_iommu *iommu) { + int ret; + if (iommu->int_enabled) - return 0; + goto enable_faults; if (pci_find_capability(iommu->dev, PCI_CAP_ID_MSI)) - return iommu_setup_msi(iommu); + ret = iommu_setup_msi(iommu); + else + ret = -ENODEV; - return 1; + if (ret) + return ret; + +enable_faults: + iommu_feature_enable(iommu, CONTROL_EVT_INT_EN); + + return 0; } /**************************************************************************** --- linux-3.2.0.orig/drivers/iommu/amd_iommu.c +++ linux-3.2.0/drivers/iommu/amd_iommu.c @@ -2432,7 +2432,7 @@ * we don't need to preallocate the protection domains anymore. * For now we have to. */ -static void prealloc_protection_domains(void) +static void __init prealloc_protection_domains(void) { struct pci_dev *dev = NULL; struct dma_ops_domain *dma_dom; @@ -2479,6 +2479,9 @@ for_each_pci_dev(pdev) { if (!check_device(&pdev->dev)) { + + iommu_ignore_device(&pdev->dev); + unhandled += 1; continue; } --- linux-3.2.0.orig/drivers/iommu/omap-iommu.c +++ linux-3.2.0/drivers/iommu/omap-iommu.c @@ -1229,7 +1229,8 @@ return platform_driver_register(&omap_iommu_driver); } -module_init(omap_iommu_init); +/* must be ready before omap3isp is probed */ +subsys_initcall(omap_iommu_init); static void __exit omap_iommu_exit(void) { --- linux-3.2.0.orig/drivers/iommu/msm_iommu.c +++ linux-3.2.0/drivers/iommu/msm_iommu.c @@ -481,23 +481,19 @@ priv = domain->priv; - if (!priv) { - ret = -ENODEV; + if (!priv) goto fail; - } fl_table = priv->pgtable; if (len != SZ_16M && len != SZ_1M && len != SZ_64K && len != SZ_4K) { pr_debug("Bad length: %d\n", len); - ret = -EINVAL; goto fail; } if (!fl_table) { pr_debug("Null page table\n"); - ret = -EINVAL; goto fail; } @@ -506,7 +502,6 @@ if (*fl_pte == 0) { pr_debug("First level PTE is 0\n"); - ret = -ENODEV; goto fail; } --- linux-3.2.0.orig/drivers/video/udlfb.c +++ linux-3.2.0/drivers/video/udlfb.c @@ -1739,7 +1739,7 @@ for (i = 0; i < ARRAY_SIZE(fb_device_attrs); i++) device_remove_file(info->dev, &fb_device_attrs[i]); device_remove_bin_file(info->dev, &edid_attr); - + unlink_framebuffer(info); usb_set_intfdata(interface, NULL); /* if clients still have us open, will be freed on last close */ --- linux-3.2.0.orig/drivers/video/Kconfig +++ linux-3.2.0/drivers/video/Kconfig @@ -753,8 +753,8 @@ If unsure, say N. config FB_VESA - bool "VESA VGA graphics support" - depends on (FB = y) && X86 + tristate "VESA VGA graphics support" + depends on FB && X86 select FB_CFB_FILLRECT select FB_CFB_COPYAREA select FB_CFB_IMAGEBLIT --- linux-3.2.0.orig/drivers/video/atmel_lcdfb.c +++ linux-3.2.0/drivers/video/atmel_lcdfb.c @@ -1089,7 +1089,7 @@ */ lcdc_writel(sinfo, ATMEL_LCDC_IDR, ~0UL); - sinfo->saved_lcdcon = lcdc_readl(sinfo, ATMEL_LCDC_CONTRAST_VAL); + sinfo->saved_lcdcon = lcdc_readl(sinfo, ATMEL_LCDC_CONTRAST_CTR); lcdc_writel(sinfo, ATMEL_LCDC_CONTRAST_CTR, 0); if (sinfo->atmel_lcdfb_power_control) sinfo->atmel_lcdfb_power_control(0); --- linux-3.2.0.orig/drivers/video/uvesafb.c +++ linux-3.2.0/drivers/video/uvesafb.c @@ -121,7 +121,7 @@ NULL, }; - return call_usermodehelper(v86d_path, argv, envp, 1); + return call_usermodehelper(v86d_path, argv, envp, UMH_WAIT_PROC); } /* @@ -815,8 +815,15 @@ par->pmi_setpal = pmi_setpal; par->ypan = ypan; - if (par->pmi_setpal || par->ypan) - uvesafb_vbe_getpmi(task, par); + if (par->pmi_setpal || par->ypan) { + if (__supported_pte_mask & _PAGE_NX) { + par->pmi_setpal = par->ypan = 0; + printk(KERN_WARNING "uvesafb: NX protection is actively." + "We have better not to use the PMI.\n"); + } else { + uvesafb_vbe_getpmi(task, par); + } + } #else /* The protected mode interface is not available on non-x86. */ par->pmi_setpal = par->ypan = 0; --- linux-3.2.0.orig/drivers/video/offb.c +++ linux-3.2.0/drivers/video/offb.c @@ -100,36 +100,32 @@ u_int transp, struct fb_info *info) { struct offb_par *par = (struct offb_par *) info->par; - int i, depth; - u32 *pal = info->pseudo_palette; - depth = info->var.bits_per_pixel; - if (depth == 16) - depth = (info->var.green.length == 5) ? 15 : 16; - - if (regno > 255 || - (depth == 16 && regno > 63) || - (depth == 15 && regno > 31)) - return 1; - - if (regno < 16) { - switch (depth) { - case 15: - pal[regno] = (regno << 10) | (regno << 5) | regno; - break; - case 16: - pal[regno] = (regno << 11) | (regno << 5) | regno; - break; - case 24: - pal[regno] = (regno << 16) | (regno << 8) | regno; - break; - case 32: - i = (regno << 8) | regno; - pal[regno] = (i << 16) | i; - break; + if (info->fix.visual == FB_VISUAL_TRUECOLOR) { + u32 *pal = info->pseudo_palette; + u32 cr = red >> (16 - info->var.red.length); + u32 cg = green >> (16 - info->var.green.length); + u32 cb = blue >> (16 - info->var.blue.length); + u32 value; + + if (regno >= 16) + return -EINVAL; + + value = (cr << info->var.red.offset) | + (cg << info->var.green.offset) | + (cb << info->var.blue.offset); + if (info->var.transp.length > 0) { + u32 mask = (1 << info->var.transp.length) - 1; + mask <<= info->var.transp.offset; + value |= mask; } + pal[regno] = value; + return 0; } + if (regno > 255) + return -EINVAL; + red >>= 8; green >>= 8; blue >>= 8; @@ -381,7 +377,7 @@ int pitch, unsigned long address, int foreign_endian, struct device_node *dp) { - unsigned long res_size = pitch * height * (depth + 7) / 8; + unsigned long res_size = pitch * height; struct offb_par *par = &default_par; unsigned long res_start = address; struct fb_fix_screeninfo *fix; --- linux-3.2.0.orig/drivers/video/vesafb.c +++ linux-3.2.0/drivers/video/vesafb.c @@ -27,6 +27,12 @@ #define dac_reg (0x3c8) #define dac_val (0x3c9) +struct vesafb_info +{ + u32 pseudo_palette[256]; + int mtrr_hdl; +}; + /* --------------------------------------------------------------------- */ static struct fb_var_screeninfo vesafb_defined __initdata = { @@ -40,22 +46,43 @@ .vmode = FB_VMODE_NONINTERLACED, }; -static struct fb_fix_screeninfo vesafb_fix __initdata = { +static struct fb_fix_screeninfo vesafb_fix = { .id = "VESA VGA", .type = FB_TYPE_PACKED_PIXELS, .accel = FB_ACCEL_NONE, }; +#ifndef MODULE static int inverse __read_mostly; -static int mtrr __read_mostly; /* disable mtrr */ +#endif +static int mtrr __read_mostly = 3; /* disable mtrr */ static int vram_remap __initdata; /* Set amount of memory to be used */ static int vram_total __initdata; /* Set total amount of memory */ static int pmi_setpal __read_mostly = 1; /* pmi for palette changes ??? */ +static int redraw __read_mostly; static int ypan __read_mostly; /* 0..nothing, 1..ypan, 2..ywrap */ +static int ywrap __read_mostly; static void (*pmi_start)(void) __read_mostly; static void (*pmi_pal) (void) __read_mostly; static int depth __read_mostly; static int vga_compat __read_mostly; + +module_param(redraw, bool, 0); +module_param(ypan, bool, 0); +module_param(ywrap, bool, 0); +module_param_named(vgapal, pmi_setpal, invbool, 0); +MODULE_PARM_DESC(vgapal, "Use VGA for setting palette (default)"); +module_param_named(pmipal, pmi_setpal, bool, 0); +MODULE_PARM_DESC(pmipal, "Use PMI for setting palette"); +module_param(mtrr, uint, 0); +MODULE_PARM_DESC(mtrr, "Enable MTRR support (default)"); +module_param_named(nomtrr, mtrr, invbool, 0); +MODULE_PARM_DESC(nomtrr, "Disable MTRR support"); +module_param(vram_remap, int, 0); +MODULE_PARM_DESC(vram_remap, "Set total amount of memory to be used"); +module_param(vram_total, int, 0); +MODULE_PARM_DESC(vram_total, "Total amount of memory"); + /* --------------------------------------------------------------------- */ static int vesafb_pan_display(struct fb_var_screeninfo *var, @@ -192,6 +219,7 @@ .fb_imageblit = cfb_imageblit, }; +#ifndef MODULE static int __init vesafb_setup(char *options) { char *this_opt; @@ -225,10 +253,12 @@ } return 0; } +#endif static int __init vesafb_probe(struct platform_device *dev) { struct fb_info *info; + struct vesafb_info *vfb_info; int i, err; unsigned int size_vmode; unsigned int size_remap; @@ -287,13 +317,14 @@ spaces our resource handlers simply don't know about */ } - info = framebuffer_alloc(sizeof(u32) * 256, &dev->dev); + info = framebuffer_alloc(sizeof(struct vesafb_info), &dev->dev); if (!info) { release_mem_region(vesafb_fix.smem_start, size_total); return -ENOMEM; } - info->pseudo_palette = info->par; - info->par = NULL; + vfb_info = (struct vesafb_info *) info->par; + vfb_info->mtrr_hdl = -1; + info->pseudo_palette = vfb_info->pseudo_palette; /* set vesafb aperture size for generic probing */ info->apertures = alloc_apertures(1); @@ -423,17 +454,15 @@ } if (type) { - int rc; - /* Find the largest power-of-two */ temp_size = roundup_pow_of_two(temp_size); /* Try and find a power of two to add */ do { - rc = mtrr_add(vesafb_fix.smem_start, temp_size, + vfb_info->mtrr_hdl = mtrr_add(vesafb_fix.smem_start, temp_size, type, 1); temp_size >>= 1; - } while (temp_size >= PAGE_SIZE && rc == -EINVAL); + } while (temp_size >= PAGE_SIZE && vfb_info->mtrr_hdl == -EINVAL); } } #endif @@ -495,7 +524,27 @@ return err; } +static int __exit vesafb_remove(struct platform_device *device) +{ + struct fb_info *info = dev_get_drvdata(&device->dev); + + unregister_framebuffer(info); +#ifdef CONFIG_MTRR + { + struct vesafb_info *vfb_info = (struct vesafb_info *) info->par; + if (vfb_info->mtrr_hdl >= 0) + mtrr_del(vfb_info->mtrr_hdl, 0, 0); + } +#endif + iounmap(info->screen_base); + framebuffer_release(info); + release_mem_region(vesafb_fix.smem_start, vesafb_fix.smem_len); + + return 0; +} + static struct platform_driver vesafb_driver = { + .remove = vesafb_remove, .driver = { .name = "vesafb", }, @@ -506,11 +555,18 @@ static int __init vesafb_init(void) { int ret; +#ifndef MODULE char *option = NULL; /* ignore error return of fb_get_options */ fb_get_options("vesafb", &option); vesafb_setup(option); +#else + if (redraw) + ypan = 0; + if (ywrap) + ypan = 2; +#endif vesafb_device = platform_device_alloc("vesafb", 0); if (!vesafb_device) @@ -530,6 +586,14 @@ return ret; } + +static void __exit vesafb_exit(void) +{ + platform_device_unregister(vesafb_device); + platform_driver_unregister(&vesafb_driver); +} + module_init(vesafb_init); +module_exit(vesafb_exit); MODULE_LICENSE("GPL"); --- linux-3.2.0.orig/drivers/video/fbmem.c +++ linux-3.2.0/drivers/video/fbmem.c @@ -1651,6 +1651,7 @@ if (ret) return -EINVAL; + unlink_framebuffer(fb_info); if (fb_info->pixmap.addr && (fb_info->pixmap.flags & FB_PIXMAP_DEFAULT)) kfree(fb_info->pixmap.addr); @@ -1658,7 +1659,6 @@ registered_fb[i] = NULL; num_registered_fb--; fb_cleanup_device(fb_info); - device_destroy(fb_class, MKDEV(FB_MAJOR, i)); event.info = fb_info; fb_notifier_call_chain(FB_EVENT_FB_UNREGISTERED, &event); @@ -1667,6 +1667,22 @@ return 0; } +int unlink_framebuffer(struct fb_info *fb_info) +{ + int i; + + i = fb_info->node; + if (i < 0 || i >= FB_MAX || registered_fb[i] != fb_info) + return -EINVAL; + + if (fb_info->dev) { + device_destroy(fb_class, MKDEV(FB_MAJOR, i)); + fb_info->dev = NULL; + } + return 0; +} +EXPORT_SYMBOL(unlink_framebuffer); + void remove_conflicting_framebuffers(struct apertures_struct *a, const char *name, bool primary) { --- linux-3.2.0.orig/drivers/video/via/hw.c +++ linux-3.2.0/drivers/video/via/hw.c @@ -1810,7 +1810,11 @@ break; } + /* magic required on VX900 for correct modesetting on IGA1 */ + via_write_reg_mask(VIACR, 0x45, 0x00, 0x01); + /* probably this should go to the scaling code one day */ + via_write_reg_mask(VIACR, 0xFD, 0, 0x80); /* VX900 hw scale on IGA2 */ viafb_write_regx(scaling_parameters, ARRAY_SIZE(scaling_parameters)); /* Fill VPIT Parameters */ --- linux-3.2.0.orig/drivers/video/omap2/dss/ti_hdmi.h +++ linux-3.2.0/drivers/video/omap2/dss/ti_hdmi.h @@ -121,6 +121,10 @@ const struct ti_hdmi_ip_ops *ops; struct hdmi_config cfg; struct hdmi_pll_info pll_data; + + /* ti_hdmi_4xxx_ip private data. These should be in a separate struct */ + int hpd_gpio; + bool phy_tx_enabled; }; int ti_hdmi_4xxx_phy_enable(struct hdmi_ip_data *ip_data); void ti_hdmi_4xxx_phy_disable(struct hdmi_ip_data *ip_data); --- linux-3.2.0.orig/drivers/video/omap2/dss/venc.c +++ linux-3.2.0/drivers/video/omap2/dss/venc.c @@ -679,6 +679,11 @@ { #define DUMPREG(r) seq_printf(s, "%-35s %08x\n", #r, venc_read_reg(r)) + if (cpu_is_omap44xx()) { + seq_printf(s, "VENC currently disabled on OMAP44xx\n"); + return; + } + if (venc_runtime_get()) return; --- linux-3.2.0.orig/drivers/video/omap2/dss/hdmi.c +++ linux-3.2.0/drivers/video/omap2/dss/hdmi.c @@ -490,6 +490,7 @@ int omapdss_hdmi_display_enable(struct omap_dss_device *dssdev) { + struct omap_dss_hdmi_data *priv = dssdev->data; int r = 0; DSSDBG("ENTER hdmi_display_enable\n"); @@ -502,6 +503,8 @@ goto err0; } + hdmi.ip_data.hpd_gpio = priv->hpd_gpio; + r = omap_dss_start_device(dssdev); if (r) { DSSERR("failed to start device\n"); --- linux-3.2.0.orig/drivers/video/omap2/dss/ti_hdmi_4xxx_ip.c +++ linux-3.2.0/drivers/video/omap2/dss/ti_hdmi_4xxx_ip.c @@ -28,6 +28,7 @@ #include #include #include +#include #include "ti_hdmi_4xxx_ip.h" #include "dss.h" @@ -223,6 +224,49 @@ hdmi_set_pll_pwr(ip_data, HDMI_PLLPWRCMD_ALLOFF); } +static int hdmi_check_hpd_state(struct hdmi_ip_data *ip_data) +{ + unsigned long flags; + bool hpd; + int r; + /* this should be in ti_hdmi_4xxx_ip private data */ + static DEFINE_SPINLOCK(phy_tx_lock); + + spin_lock_irqsave(&phy_tx_lock, flags); + + hpd = gpio_get_value(ip_data->hpd_gpio); + + if (hpd == ip_data->phy_tx_enabled) { + spin_unlock_irqrestore(&phy_tx_lock, flags); + return 0; + } + + if (hpd) + r = hdmi_set_phy_pwr(ip_data, HDMI_PHYPWRCMD_TXON); + else + r = hdmi_set_phy_pwr(ip_data, HDMI_PHYPWRCMD_LDOON); + + if (r) { + DSSERR("Failed to %s PHY TX power\n", + hpd ? "enable" : "disable"); + goto err; + } + + ip_data->phy_tx_enabled = hpd; +err: + spin_unlock_irqrestore(&phy_tx_lock, flags); + return r; +} + +static irqreturn_t hpd_irq_handler(int irq, void *data) +{ + struct hdmi_ip_data *ip_data = data; + + hdmi_check_hpd_state(ip_data); + + return IRQ_HANDLED; +} + int ti_hdmi_4xxx_phy_enable(struct hdmi_ip_data *ip_data) { u16 r = 0; @@ -232,10 +276,6 @@ if (r) return r; - r = hdmi_set_phy_pwr(ip_data, HDMI_PHYPWRCMD_TXON); - if (r) - return r; - /* * Read address 0 in order to get the SCP reset done completed * Dummy access performed to make sure reset is done @@ -257,12 +297,32 @@ /* Write to phy address 3 to change the polarity control */ REG_FLD_MOD(phy_base, HDMI_TXPHY_PAD_CFG_CTRL, 0x1, 27, 27); + r = request_threaded_irq(gpio_to_irq(ip_data->hpd_gpio), + NULL, hpd_irq_handler, + IRQF_DISABLED | IRQF_TRIGGER_RISING | + IRQF_TRIGGER_FALLING, "hpd", ip_data); + if (r) { + DSSERR("HPD IRQ request failed\n"); + hdmi_set_phy_pwr(ip_data, HDMI_PHYPWRCMD_OFF); + return r; + } + + r = hdmi_check_hpd_state(ip_data); + if (r) { + free_irq(gpio_to_irq(ip_data->hpd_gpio), ip_data); + hdmi_set_phy_pwr(ip_data, HDMI_PHYPWRCMD_OFF); + return r; + } + return 0; } void ti_hdmi_4xxx_phy_disable(struct hdmi_ip_data *ip_data) { + free_irq(gpio_to_irq(ip_data->hpd_gpio), ip_data); + hdmi_set_phy_pwr(ip_data, HDMI_PHYPWRCMD_OFF); + ip_data->phy_tx_enabled = false; } static int hdmi_core_ddc_init(struct hdmi_ip_data *ip_data) @@ -419,14 +479,7 @@ bool ti_hdmi_4xxx_detect(struct hdmi_ip_data *ip_data) { - int r; - - void __iomem *base = hdmi_core_sys_base(ip_data); - - /* HPD */ - r = REG_GET(base, HDMI_CORE_SYS_SYS_STAT, 1, 1); - - return r == 1; + return gpio_get_value(ip_data->hpd_gpio); } static void hdmi_core_init(struct hdmi_core_video_config *video_cfg, --- linux-3.2.0.orig/drivers/video/omap2/dss/dpi.c +++ linux-3.2.0/drivers/video/omap2/dss/dpi.c @@ -180,6 +180,11 @@ { int r; + if (cpu_is_omap34xx() && !dpi.vdds_dsi_reg) { + DSSERR("no VDSS_DSI regulator\n"); + return -ENODEV; + } + if (dssdev->manager == NULL) { DSSERR("failed to enable display: no manager\n"); return -ENODEV; --- linux-3.2.0.orig/drivers/video/backlight/tosa_lcd.c +++ linux-3.2.0/drivers/video/backlight/tosa_lcd.c @@ -271,7 +271,7 @@ } #else #define tosa_lcd_suspend NULL -#define tosa_lcd_reume NULL +#define tosa_lcd_resume NULL #endif static struct spi_driver tosa_lcd_driver = { --- linux-3.2.0.orig/drivers/video/backlight/apple_bl.c +++ linux-3.2.0/drivers/video/backlight/apple_bl.c @@ -24,6 +24,7 @@ #include #include #include +#include static struct backlight_device *apple_backlight_device; @@ -221,14 +222,32 @@ }, }; +static atomic_t apple_bl_registered = ATOMIC_INIT(0); + +int apple_bl_register(void) +{ + if (atomic_xchg(&apple_bl_registered, 1) == 0) + return acpi_bus_register_driver(&apple_bl_driver); + + return 0; +} +EXPORT_SYMBOL_GPL(apple_bl_register); + +void apple_bl_unregister(void) +{ + if (atomic_xchg(&apple_bl_registered, 0) == 1) + acpi_bus_unregister_driver(&apple_bl_driver); +} +EXPORT_SYMBOL_GPL(apple_bl_unregister); + static int __init apple_bl_init(void) { - return acpi_bus_register_driver(&apple_bl_driver); + return apple_bl_register(); } static void __exit apple_bl_exit(void) { - acpi_bus_unregister_driver(&apple_bl_driver); + apple_bl_unregister(); } module_init(apple_bl_init); --- linux-3.2.0.orig/drivers/crypto/Kconfig +++ linux-3.2.0/drivers/crypto/Kconfig @@ -173,6 +173,7 @@ select CRYPTO_ALGAPI select CRYPTO_AES select CRYPTO_BLKCIPHER2 + select CRYPTO_HASH help This driver allows you to utilize the Cryptographic Engines and Security Accelerator (CESA) which can be found on the Marvell Orion --- linux-3.2.0.orig/drivers/crypto/mv_cesa.c +++ linux-3.2.0/drivers/crypto/mv_cesa.c @@ -714,6 +714,7 @@ { struct mv_req_hash_ctx *ctx = ahash_request_ctx(req); + ahash_request_set_crypt(req, NULL, req->result, 0); mv_update_hash_req_ctx(ctx, 1, 0); return mv_handle_req(&req->base); } --- linux-3.2.0.orig/drivers/amba/bus.c +++ linux-3.2.0/drivers/amba/bus.c @@ -52,6 +52,10 @@ int retval = 0; retval = add_uevent_var(env, "AMBA_ID=%08x", pcdev->periphid); + if (retval) + return retval; + + retval = add_uevent_var(env, "MODALIAS=amba:d%08X", pcdev->periphid); return retval; } #else --- linux-3.2.0.orig/drivers/target/target_core_device.c +++ linux-3.2.0/drivers/target/target_core_device.c @@ -658,7 +658,9 @@ unsigned char *buf; u32 cdb_offset = 0, lun_count = 0, offset = 8, i; - buf = transport_kmap_first_data_page(se_cmd); + buf = transport_kmap_data_sg(se_cmd); + if (!buf) + return -ENOMEM; /* * If no struct se_session pointer is present, this struct se_cmd is @@ -696,12 +698,12 @@ * See SPC3 r07, page 159. */ done: - transport_kunmap_first_data_page(se_cmd); lun_count *= 8; buf[0] = ((lun_count >> 24) & 0xff); buf[1] = ((lun_count >> 16) & 0xff); buf[2] = ((lun_count >> 8) & 0xff); buf[3] = (lun_count & 0xff); + transport_kunmap_data_sg(se_cmd); se_task->task_scsi_status = GOOD; transport_complete_task(se_task, 1); --- linux-3.2.0.orig/drivers/target/target_core_pr.c +++ linux-3.2.0/drivers/target/target_core_pr.c @@ -120,7 +120,7 @@ struct se_node_acl *, struct se_session *); static void core_scsi3_put_pr_reg(struct t10_pr_registration *); -static int target_check_scsi2_reservation_conflict(struct se_cmd *cmd, int *ret) +static int target_check_scsi2_reservation_conflict(struct se_cmd *cmd) { struct se_session *se_sess = cmd->se_sess; struct se_subsystem_dev *su_dev = cmd->se_dev->se_sub_dev; @@ -130,7 +130,7 @@ int conflict = 0; if (!crh) - return false; + return -EINVAL; pr_reg = core_scsi3_locate_pr_reg(cmd->se_dev, se_sess->se_node_acl, se_sess); @@ -158,16 +158,14 @@ */ if (pr_reg->pr_res_holder) { core_scsi3_put_pr_reg(pr_reg); - *ret = 0; - return false; + return 1; } if ((pr_reg->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_REGONLY) || (pr_reg->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_REGONLY) || (pr_reg->pr_res_type == PR_TYPE_WRITE_EXCLUSIVE_ALLREG) || (pr_reg->pr_res_type == PR_TYPE_EXCLUSIVE_ACCESS_ALLREG)) { core_scsi3_put_pr_reg(pr_reg); - *ret = 0; - return true; + return 1; } core_scsi3_put_pr_reg(pr_reg); conflict = 1; @@ -192,10 +190,10 @@ " while active SPC-3 registrations exist," " returning RESERVATION_CONFLICT\n"); cmd->scsi_sense_reason = TCM_RESERVATION_CONFLICT; - return true; + return -EBUSY; } - return false; + return 0; } int target_scsi2_reservation_release(struct se_task *task) @@ -204,12 +202,18 @@ struct se_device *dev = cmd->se_dev; struct se_session *sess = cmd->se_sess; struct se_portal_group *tpg = sess->se_tpg; - int ret = 0; + int ret = 0, rc; if (!sess || !tpg) goto out; - if (target_check_scsi2_reservation_conflict(cmd, &ret)) + rc = target_check_scsi2_reservation_conflict(cmd); + if (rc == 1) + goto out; + else if (rc < 0) { + cmd->scsi_sense_reason = TCM_RESERVATION_CONFLICT; + ret = -EINVAL; goto out; + } ret = 0; spin_lock(&dev->dev_reservation_lock); @@ -219,6 +223,9 @@ if (dev->dev_reserved_node_acl != sess->se_node_acl) goto out_unlock; + if (dev->dev_res_bin_isid != sess->sess_bin_isid) + goto out_unlock; + dev->dev_reserved_node_acl = NULL; dev->dev_flags &= ~DF_SPC2_RESERVATIONS; if (dev->dev_flags & DF_SPC2_RESERVATIONS_WITH_ISID) { @@ -246,7 +253,7 @@ struct se_device *dev = cmd->se_dev; struct se_session *sess = cmd->se_sess; struct se_portal_group *tpg = sess->se_tpg; - int ret = 0; + int ret = 0, rc; if ((cmd->t_task_cdb[1] & 0x01) && (cmd->t_task_cdb[1] & 0x02)) { @@ -262,8 +269,14 @@ */ if (!sess || !tpg) goto out; - if (target_check_scsi2_reservation_conflict(cmd, &ret)) + rc = target_check_scsi2_reservation_conflict(cmd); + if (rc == 1) goto out; + else if (rc < 0) { + cmd->scsi_sense_reason = TCM_RESERVATION_CONFLICT; + ret = -EINVAL; + goto out; + } ret = 0; spin_lock(&dev->dev_reservation_lock); @@ -481,6 +494,7 @@ case READ_MEDIA_SERIAL_NUMBER: case REPORT_LUNS: case REQUEST_SENSE: + case PERSISTENT_RESERVE_IN: ret = 0; /*/ Allowed CDBs */ break; default: @@ -1537,7 +1551,7 @@ tidh_new->dest_local_nexus = 1; list_add_tail(&tidh_new->dest_list, &tid_dest_list); - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); /* * For a PERSISTENT RESERVE OUT specify initiator ports payload, * first extract TransportID Parameter Data Length, and make sure @@ -1788,7 +1802,7 @@ } - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); /* * Go ahead and create a registrations from tid_dest_list for the @@ -1836,7 +1850,7 @@ return 0; out: - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); /* * For the failure case, release everything from tid_dest_list * including *dest_pr_reg and the configfs dependances.. @@ -3138,7 +3152,7 @@ if (!calling_it_nexus) core_scsi3_ua_allocate(pr_reg_nacl, pr_res_mapped_lun, 0x2A, - ASCQ_2AH_RESERVATIONS_PREEMPTED); + ASCQ_2AH_REGISTRATIONS_PREEMPTED); } spin_unlock(&pr_tmpl->registration_lock); /* @@ -3251,7 +3265,7 @@ * additional sense code set to REGISTRATIONS PREEMPTED; */ core_scsi3_ua_allocate(pr_reg_nacl, pr_res_mapped_lun, 0x2A, - ASCQ_2AH_RESERVATIONS_PREEMPTED); + ASCQ_2AH_REGISTRATIONS_PREEMPTED); } spin_unlock(&pr_tmpl->registration_lock); /* @@ -3428,14 +3442,14 @@ * will be moved to for the TransportID containing SCSI initiator WWN * information. */ - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); rtpi = (buf[18] & 0xff) << 8; rtpi |= buf[19] & 0xff; tid_len = (buf[20] & 0xff) << 24; tid_len |= (buf[21] & 0xff) << 16; tid_len |= (buf[22] & 0xff) << 8; tid_len |= buf[23] & 0xff; - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); buf = NULL; if ((tid_len + 24) != cmd->data_length) { @@ -3487,7 +3501,7 @@ return -EINVAL; } - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); proto_ident = (buf[24] & 0x0f); #if 0 pr_debug("SPC-3 PR REGISTER_AND_MOVE: Extracted Protocol Identifier:" @@ -3521,7 +3535,7 @@ goto out; } - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); buf = NULL; pr_debug("SPC-3 PR [%s] Extracted initiator %s identifier: %s" @@ -3786,13 +3800,13 @@ " REGISTER_AND_MOVE\n"); } - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); core_scsi3_put_pr_reg(dest_pr_reg); return 0; out: if (buf) - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); if (dest_se_deve) core_scsi3_lunacl_undepend_item(dest_se_deve); if (dest_node_acl) @@ -3866,7 +3880,7 @@ scope = (cdb[2] & 0xf0); type = (cdb[2] & 0x0f); - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); /* * From PERSISTENT_RESERVE_OUT parameter list (payload) */ @@ -3884,7 +3898,7 @@ aptpl = (buf[17] & 0x01); unreg = (buf[17] & 0x02); } - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); buf = NULL; /* @@ -3984,7 +3998,7 @@ return -EINVAL; } - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); buf[0] = ((su_dev->t10_pr.pr_generation >> 24) & 0xff); buf[1] = ((su_dev->t10_pr.pr_generation >> 16) & 0xff); buf[2] = ((su_dev->t10_pr.pr_generation >> 8) & 0xff); @@ -4018,7 +4032,7 @@ buf[6] = ((add_len >> 8) & 0xff); buf[7] = (add_len & 0xff); - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); return 0; } @@ -4044,7 +4058,7 @@ return -EINVAL; } - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); buf[0] = ((su_dev->t10_pr.pr_generation >> 24) & 0xff); buf[1] = ((su_dev->t10_pr.pr_generation >> 16) & 0xff); buf[2] = ((su_dev->t10_pr.pr_generation >> 8) & 0xff); @@ -4103,7 +4117,7 @@ err: spin_unlock(&se_dev->dev_reservation_lock); - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); return 0; } @@ -4127,7 +4141,7 @@ return -EINVAL; } - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); buf[0] = ((add_len << 8) & 0xff); buf[1] = (add_len & 0xff); @@ -4159,7 +4173,7 @@ buf[4] |= 0x02; /* PR_TYPE_WRITE_EXCLUSIVE */ buf[5] |= 0x01; /* PR_TYPE_EXCLUSIVE_ACCESS_ALLREG */ - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); return 0; } @@ -4189,7 +4203,7 @@ return -EINVAL; } - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); buf[0] = ((su_dev->t10_pr.pr_generation >> 24) & 0xff); buf[1] = ((su_dev->t10_pr.pr_generation >> 16) & 0xff); @@ -4310,7 +4324,7 @@ buf[6] = ((add_len >> 8) & 0xff); buf[7] = (add_len & 0xff); - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); return 0; } --- linux-3.2.0.orig/drivers/target/target_core_cdb.c +++ linux-3.2.0/drivers/target/target_core_cdb.c @@ -82,7 +82,7 @@ return -EINVAL; } - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); if (dev == tpg->tpg_virt_lun0.lun_se_dev) { buf[0] = 0x3f; /* Not connected */ @@ -94,6 +94,18 @@ buf[2] = dev->transport->get_device_rev(dev); /* + * NORMACA and HISUP = 0, RESPONSE DATA FORMAT = 2 + * + * SPC4 says: + * A RESPONSE DATA FORMAT field set to 2h indicates that the + * standard INQUIRY data is in the format defined in this + * standard. Response data format values less than 2h are + * obsolete. Response data format values greater than 2h are + * reserved. + */ + buf[3] = 2; + + /* * Enable SCCS and TPGS fields for Emulated ALUA */ if (dev->se_sub_dev->t10_alua.alua_type == SPC3_ALUA_EMULATED) @@ -104,7 +116,7 @@ goto out; } - buf[7] = 0x32; /* Sync=1 and CmdQue=1 */ + buf[7] = 0x2; /* CmdQue=1 */ /* * Do not include vendor, product, reversion info in INQUIRY @@ -123,7 +135,7 @@ buf[4] = 31; /* Set additional length to 31 */ out: - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); return 0; } @@ -689,6 +701,13 @@ int p, ret; if (!(cdb[1] & 0x1)) { + if (cdb[2]) { + pr_err("INQUIRY with EVPD==0 but PAGE CODE=%02x\n", + cdb[2]); + cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD; + return -EINVAL; + } + ret = target_emulate_inquiry_std(cmd); goto out; } @@ -707,7 +726,7 @@ return -EINVAL; } - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); buf[0] = dev->transport->get_device_type(dev); @@ -720,11 +739,11 @@ } pr_err("Unknown VPD Code: 0x%02x\n", cdb[2]); - cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE; + cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD; ret = -EINVAL; out_unmap: - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); out: if (!ret) { task->task_scsi_status = GOOD; @@ -746,7 +765,7 @@ else blocks = (u32)blocks_long; - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); buf[0] = (blocks >> 24) & 0xff; buf[1] = (blocks >> 16) & 0xff; @@ -762,7 +781,7 @@ if (dev->se_sub_dev->se_dev_attrib.emulate_tpu || dev->se_sub_dev->se_dev_attrib.emulate_tpws) put_unaligned_be32(0xFFFFFFFF, &buf[0]); - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); task->task_scsi_status = GOOD; transport_complete_task(task, 1); @@ -776,7 +795,7 @@ unsigned char *buf; unsigned long long blocks = dev->transport->get_blocks(dev); - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); buf[0] = (blocks >> 56) & 0xff; buf[1] = (blocks >> 48) & 0xff; @@ -797,7 +816,7 @@ if (dev->se_sub_dev->se_dev_attrib.emulate_tpu || dev->se_sub_dev->se_dev_attrib.emulate_tpws) buf[14] = 0x80; - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); task->task_scsi_status = GOOD; transport_complete_task(task, 1); @@ -1010,9 +1029,9 @@ offset = cmd->data_length; } - rbuf = transport_kmap_first_data_page(cmd); + rbuf = transport_kmap_data_sg(cmd); memcpy(rbuf, buf, offset); - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); task->task_scsi_status = GOOD; transport_complete_task(task, 1); @@ -1034,7 +1053,7 @@ return -ENOSYS; } - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); if (!core_scsi3_ua_clear_for_request_sense(cmd, &ua_asc, &ua_ascq)) { /* @@ -1080,7 +1099,7 @@ } end: - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); task->task_scsi_status = GOOD; transport_complete_task(task, 1); return 0; @@ -1114,7 +1133,7 @@ dl = get_unaligned_be16(&cdb[0]); bd_dl = get_unaligned_be16(&cdb[2]); - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); ptr = &buf[offset]; pr_debug("UNMAP: Sub: %s Using dl: %hu bd_dl: %hu size: %hu" @@ -1138,7 +1157,7 @@ } err: - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); if (!ret) { task->task_scsi_status = GOOD; transport_complete_task(task, 1); --- linux-3.2.0.orig/drivers/target/target_core_file.c +++ linux-3.2.0/drivers/target/target_core_file.c @@ -170,6 +170,7 @@ inode = file->f_mapping->host; if (S_ISBLK(inode->i_mode)) { struct request_queue *q; + unsigned long long dev_size; /* * Setup the local scope queue_limits from struct request_queue->limits * to pass into transport_add_device_to_core_hba() as struct se_dev_limits. @@ -184,13 +185,12 @@ * one (1) logical sector from underlying struct block_device */ fd_dev->fd_block_size = bdev_logical_block_size(inode->i_bdev); - fd_dev->fd_dev_size = (i_size_read(file->f_mapping->host) - + dev_size = (i_size_read(file->f_mapping->host) - fd_dev->fd_block_size); pr_debug("FILEIO: Using size: %llu bytes from struct" " block_device blocks: %llu logical_block_size: %d\n", - fd_dev->fd_dev_size, - div_u64(fd_dev->fd_dev_size, fd_dev->fd_block_size), + dev_size, div_u64(dev_size, fd_dev->fd_block_size), fd_dev->fd_block_size); } else { if (!(fd_dev->fbd_flags & FBDF_HAS_SIZE)) { @@ -606,10 +606,20 @@ static sector_t fd_get_blocks(struct se_device *dev) { struct fd_dev *fd_dev = dev->dev_ptr; - unsigned long long blocks_long = div_u64(fd_dev->fd_dev_size, - dev->se_sub_dev->se_dev_attrib.block_size); + struct file *f = fd_dev->fd_file; + struct inode *i = f->f_mapping->host; + unsigned long long dev_size; + /* + * When using a file that references an underlying struct block_device, + * ensure dev_size is always based on the current inode size in order + * to handle underlying block_device resize operations. + */ + if (S_ISBLK(i->i_mode)) + dev_size = (i_size_read(i) - fd_dev->fd_block_size); + else + dev_size = fd_dev->fd_dev_size; - return blocks_long; + return div_u64(dev_size, dev->se_sub_dev->se_dev_attrib.block_size); } static struct se_subsystem_api fileio_template = { --- linux-3.2.0.orig/drivers/target/target_core_pscsi.c +++ linux-3.2.0/drivers/target/target_core_pscsi.c @@ -695,7 +695,7 @@ if (task->task_se_cmd->se_deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY) { - unsigned char *buf = transport_kmap_first_data_page(task->task_se_cmd); + unsigned char *buf = transport_kmap_data_sg(task->task_se_cmd); if (cdb[0] == MODE_SENSE_10) { if (!(buf[3] & 0x80)) @@ -705,7 +705,7 @@ buf[2] |= 0x80; } - transport_kunmap_first_data_page(task->task_se_cmd); + transport_kunmap_data_sg(task->task_se_cmd); } } after_mode_sense: --- linux-3.2.0.orig/drivers/target/target_core_transport.c +++ linux-3.2.0/drivers/target/target_core_transport.c @@ -2507,6 +2507,7 @@ cmd, cdb, pr_reg_type) != 0) { cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION; cmd->se_cmd_flags |= SCF_SCSI_RESERVATION_CONFLICT; + cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT; cmd->scsi_sense_reason = TCM_RESERVATION_CONFLICT; return -EBUSY; } @@ -2665,7 +2666,7 @@ cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; if (target_check_write_same_discard(&cdb[10], dev) < 0) - goto out_invalid_cdb_field; + goto out_unsupported_cdb; if (!passthrough) cmd->execute_task = target_emulate_write_same; break; @@ -2948,7 +2949,7 @@ cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; if (target_check_write_same_discard(&cdb[1], dev) < 0) - goto out_invalid_cdb_field; + goto out_unsupported_cdb; if (!passthrough) cmd->execute_task = target_emulate_write_same; break; @@ -2971,7 +2972,7 @@ * of byte 1 bit 3 UNMAP instead of original reserved field */ if (target_check_write_same_discard(&cdb[1], dev) < 0) - goto out_invalid_cdb_field; + goto out_unsupported_cdb; if (!passthrough) cmd->execute_task = target_emulate_write_same; break; @@ -3053,11 +3054,6 @@ (cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB))) goto out_unsupported_cdb; - /* Let's limit control cdbs to a page, for simplicity's sake. */ - if ((cmd->se_cmd_flags & SCF_SCSI_CONTROL_SG_IO_CDB) && - size > PAGE_SIZE) - goto out_invalid_cdb_field; - transport_set_supported_SAM_opcode(cmd); return ret; @@ -3435,9 +3431,11 @@ } EXPORT_SYMBOL(transport_generic_map_mem_to_cmd); -void *transport_kmap_first_data_page(struct se_cmd *cmd) +void *transport_kmap_data_sg(struct se_cmd *cmd) { struct scatterlist *sg = cmd->t_data_sg; + struct page **pages; + int i; BUG_ON(!sg); /* @@ -3445,15 +3443,41 @@ * tcm_loop who may be using a contig buffer from the SCSI midlayer for * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd() */ - return kmap(sg_page(sg)) + sg->offset; + if (!cmd->t_data_nents) + return NULL; + else if (cmd->t_data_nents == 1) + return kmap(sg_page(sg)) + sg->offset; + + /* >1 page. use vmap */ + pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL); + if (!pages) + return NULL; + + /* convert sg[] to pages[] */ + for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) { + pages[i] = sg_page(sg); + } + + cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL); + kfree(pages); + if (!cmd->t_data_vmap) + return NULL; + + return cmd->t_data_vmap + cmd->t_data_sg[0].offset; } -EXPORT_SYMBOL(transport_kmap_first_data_page); +EXPORT_SYMBOL(transport_kmap_data_sg); -void transport_kunmap_first_data_page(struct se_cmd *cmd) +void transport_kunmap_data_sg(struct se_cmd *cmd) { - kunmap(sg_page(cmd->t_data_sg)); + if (!cmd->t_data_nents) + return; + else if (cmd->t_data_nents == 1) + kunmap(sg_page(cmd->t_data_sg)); + + vunmap(cmd->t_data_vmap); + cmd->t_data_vmap = NULL; } -EXPORT_SYMBOL(transport_kunmap_first_data_page); +EXPORT_SYMBOL(transport_kunmap_data_sg); static int transport_generic_get_mem(struct se_cmd *cmd) @@ -3701,6 +3725,11 @@ struct se_task *task; unsigned long flags; + /* Workaround for handling zero-length control CDBs */ + if ((cmd->se_cmd_flags & SCF_SCSI_CONTROL_SG_IO_CDB) && + !cmd->data_length) + return 0; + task = transport_generic_get_task(cmd, cmd->data_direction); if (!task) return -ENOMEM; @@ -3772,6 +3801,14 @@ else if (!task_cdbs && (cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB)) { cmd->t_state = TRANSPORT_COMPLETE; atomic_set(&cmd->t_transport_active, 1); + + if (cmd->t_task_cdb[0] == REQUEST_SENSE) { + u8 ua_asc = 0, ua_ascq = 0; + + core_scsi3_ua_clear_for_request_sense(cmd, + &ua_asc, &ua_ascq); + } + INIT_WORK(&cmd->work, target_complete_ok_work); queue_work(target_completion_wq, &cmd->work); return 0; @@ -4353,6 +4390,7 @@ case TCM_NON_EXISTENT_LUN: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* ILLEGAL REQUEST */ buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST; /* LOGICAL UNIT NOT SUPPORTED */ @@ -4362,6 +4400,7 @@ case TCM_SECTOR_COUNT_TOO_MANY: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* ILLEGAL REQUEST */ buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST; /* INVALID COMMAND OPERATION CODE */ @@ -4370,6 +4409,7 @@ case TCM_UNKNOWN_MODE_PAGE: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* ILLEGAL REQUEST */ buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST; /* INVALID FIELD IN CDB */ @@ -4378,6 +4418,7 @@ case TCM_CHECK_CONDITION_ABORT_CMD: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* ABORTED COMMAND */ buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; /* BUS DEVICE RESET FUNCTION OCCURRED */ @@ -4387,6 +4428,7 @@ case TCM_INCORRECT_AMOUNT_OF_DATA: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* ABORTED COMMAND */ buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; /* WRITE ERROR */ @@ -4397,22 +4439,25 @@ case TCM_INVALID_CDB_FIELD: /* CURRENT ERROR */ buffer[offset] = 0x70; - /* ABORTED COMMAND */ - buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; + /* ILLEGAL REQUEST */ + buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST; /* INVALID FIELD IN CDB */ buffer[offset+SPC_ASC_KEY_OFFSET] = 0x24; break; case TCM_INVALID_PARAMETER_LIST: /* CURRENT ERROR */ buffer[offset] = 0x70; - /* ABORTED COMMAND */ - buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; + /* ILLEGAL REQUEST */ + buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST; /* INVALID FIELD IN PARAMETER LIST */ buffer[offset+SPC_ASC_KEY_OFFSET] = 0x26; break; case TCM_UNEXPECTED_UNSOLICITED_DATA: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* ABORTED COMMAND */ buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; /* WRITE ERROR */ @@ -4423,6 +4468,7 @@ case TCM_SERVICE_CRC_ERROR: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* ABORTED COMMAND */ buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; /* PROTOCOL SERVICE CRC ERROR */ @@ -4433,6 +4479,7 @@ case TCM_SNACK_REJECTED: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* ABORTED COMMAND */ buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; /* READ ERROR */ @@ -4443,6 +4490,7 @@ case TCM_WRITE_PROTECTED: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* DATA PROTECT */ buffer[offset+SPC_SENSE_KEY_OFFSET] = DATA_PROTECT; /* WRITE PROTECTED */ @@ -4451,6 +4499,7 @@ case TCM_CHECK_CONDITION_UNIT_ATTENTION: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* UNIT ATTENTION */ buffer[offset+SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION; core_scsi3_ua_for_check_condition(cmd, &asc, &ascq); @@ -4460,6 +4509,7 @@ case TCM_CHECK_CONDITION_NOT_READY: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* Not Ready */ buffer[offset+SPC_SENSE_KEY_OFFSET] = NOT_READY; transport_get_sense_codes(cmd, &asc, &ascq); @@ -4470,6 +4520,7 @@ default: /* CURRENT ERROR */ buffer[offset] = 0x70; + buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10; /* ILLEGAL REQUEST */ buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST; /* LOGICAL UNIT COMMUNICATION FAILURE */ --- linux-3.2.0.orig/drivers/target/target_core_alua.c +++ linux-3.2.0/drivers/target/target_core_alua.c @@ -30,6 +30,7 @@ #include #include #include +#include #include #include @@ -79,7 +80,7 @@ return -EINVAL; } - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); spin_lock(&su_dev->t10_alua.tg_pt_gps_lock); list_for_each_entry(tg_pt_gp, &su_dev->t10_alua.tg_pt_gps_list, @@ -164,7 +165,7 @@ buf[2] = ((rd_len >> 8) & 0xff); buf[3] = (rd_len & 0xff); - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); task->task_scsi_status = GOOD; transport_complete_task(task, 1); @@ -195,7 +196,7 @@ cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE; return -EINVAL; } - buf = transport_kmap_first_data_page(cmd); + buf = transport_kmap_data_sg(cmd); /* * Determine if explict ALUA via SET_TARGET_PORT_GROUPS is allowed @@ -268,8 +269,7 @@ * changed. */ if (primary) { - tg_pt_id = ((ptr[2] << 8) & 0xff); - tg_pt_id |= (ptr[3] & 0xff); + tg_pt_id = get_unaligned_be16(ptr + 2); /* * Locate the matching target port group ID from * the global tg_pt_gp list @@ -313,8 +313,7 @@ * the Target Port in question for the the incoming * SET_TARGET_PORT_GROUPS op. */ - rtpi = ((ptr[2] << 8) & 0xff); - rtpi |= (ptr[3] & 0xff); + rtpi = get_unaligned_be16(ptr + 2); /* * Locate the matching relative target port identifer * for the struct se_device storage object. @@ -352,7 +351,7 @@ } out: - transport_kunmap_first_data_page(cmd); + transport_kunmap_data_sg(cmd); task->task_scsi_status = GOOD; transport_complete_task(task, 1); return 0; --- linux-3.2.0.orig/drivers/target/target_core_tpg.c +++ linux-3.2.0/drivers/target/target_core_tpg.c @@ -63,7 +63,6 @@ int i; struct se_dev_entry *deve; struct se_lun *lun; - struct se_lun_acl *acl, *acl_tmp; spin_lock_irq(&nacl->device_list_lock); for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) { @@ -84,28 +83,7 @@ core_update_device_list_for_node(lun, NULL, deve->mapped_lun, TRANSPORT_LUNFLAGS_NO_ACCESS, nacl, tpg, 0); - spin_lock(&lun->lun_acl_lock); - list_for_each_entry_safe(acl, acl_tmp, - &lun->lun_acl_list, lacl_list) { - if (!strcmp(acl->initiatorname, nacl->initiatorname) && - (acl->mapped_lun == deve->mapped_lun)) - break; - } - - if (!acl) { - pr_err("Unable to locate struct se_lun_acl for %s," - " mapped_lun: %u\n", nacl->initiatorname, - deve->mapped_lun); - spin_unlock(&lun->lun_acl_lock); - spin_lock_irq(&nacl->device_list_lock); - continue; - } - - list_del(&acl->lacl_list); - spin_unlock(&lun->lun_acl_lock); - spin_lock_irq(&nacl->device_list_lock); - kfree(acl); } spin_unlock_irq(&nacl->device_list_lock); } --- linux-3.2.0.orig/drivers/target/loopback/tcm_loop.c +++ linux-3.2.0/drivers/target/loopback/tcm_loop.c @@ -866,6 +866,9 @@ sc->result = SAM_STAT_GOOD; set_host_byte(sc, DID_OK); + if ((se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) || + (se_cmd->se_cmd_flags & SCF_UNDERFLOW_BIT)) + scsi_set_resid(sc, se_cmd->residual_count); sc->scsi_done(sc); return 0; } @@ -891,6 +894,9 @@ sc->result = se_cmd->scsi_status; set_host_byte(sc, DID_OK); + if ((se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) || + (se_cmd->se_cmd_flags & SCF_UNDERFLOW_BIT)) + scsi_set_resid(sc, se_cmd->residual_count); sc->scsi_done(sc); return 0; } --- linux-3.2.0.orig/drivers/target/tcm_fc/tfc_conf.c +++ linux-3.2.0/drivers/target/tcm_fc/tfc_conf.c @@ -304,6 +304,7 @@ { struct ft_lport_acl *lacl; struct ft_tpg *tpg; + struct workqueue_struct *wq; unsigned long index; int ret; @@ -325,18 +326,20 @@ tpg->lport_acl = lacl; INIT_LIST_HEAD(&tpg->lun_list); - ret = core_tpg_register(&ft_configfs->tf_ops, wwn, &tpg->se_tpg, - tpg, TRANSPORT_TPG_TYPE_NORMAL); - if (ret < 0) { + wq = alloc_workqueue("tcm_fc", 0, 1); + if (!wq) { kfree(tpg); return NULL; } - tpg->workqueue = alloc_workqueue("tcm_fc", 0, 1); - if (!tpg->workqueue) { + ret = core_tpg_register(&ft_configfs->tf_ops, wwn, &tpg->se_tpg, + tpg, TRANSPORT_TPG_TYPE_NORMAL); + if (ret < 0) { + destroy_workqueue(wq); kfree(tpg); return NULL; } + tpg->workqueue = wq; mutex_lock(&ft_lport_lock); list_add_tail(&tpg->list, &lacl->tpg_list); --- linux-3.2.0.orig/drivers/target/tcm_fc/tcm_fc.h +++ linux-3.2.0/drivers/target/tcm_fc/tcm_fc.h @@ -124,6 +124,7 @@ /* Local sense buffer */ unsigned char ft_sense_buffer[TRANSPORT_SENSE_BUFFER]; u32 was_ddp_setup:1; /* Set only if ddp is setup */ + u32 aborted:1; /* Set if aborted by reset or timeout */ struct scatterlist *sg; /* Set only if DDP is setup */ u32 sg_cnt; /* No. of item in scatterlist */ }; --- linux-3.2.0.orig/drivers/target/tcm_fc/tfc_cmd.c +++ linux-3.2.0/drivers/target/tcm_fc/tfc_cmd.c @@ -130,6 +130,8 @@ struct fc_exch *ep; size_t len; + if (cmd->aborted) + return 0; ft_dump_cmd(cmd, __func__); ep = fc_seq_exch(cmd->seq); lport = ep->lp; @@ -196,6 +198,8 @@ ft_dump_cmd(cmd, __func__); + if (cmd->aborted) + return 0; ep = fc_seq_exch(cmd->seq); lport = ep->lp; fp = fc_frame_alloc(lport, sizeof(*txrdy)); @@ -266,10 +270,10 @@ struct ft_cmd *cmd = arg; struct fc_frame_header *fh; - if (IS_ERR(fp)) { + if (unlikely(IS_ERR(fp))) { /* XXX need to find cmd if queued */ cmd->seq = NULL; - transport_generic_free_cmd(&cmd->se_cmd, 0); + cmd->aborted = true; return; } @@ -329,10 +333,12 @@ fc_fill_reply_hdr(fp, rx_fp, FC_RCTL_DD_CMD_STATUS, 0); sp = fr_seq(fp); - if (sp) + if (sp) { lport->tt.seq_send(lport, sp, fp); - else + lport->tt.exch_done(sp); + } else { lport->tt.frame_send(lport, fp); + } } /* @@ -445,6 +451,8 @@ struct se_tmr_req *tmr = se_cmd->se_tmr_req; enum fcp_resp_rsp_codes code; + if (cmd->aborted) + return 0; switch (tmr->response) { case TMR_FUNCTION_COMPLETE: code = FCP_TMF_CMPL; --- linux-3.2.0.orig/drivers/target/tcm_fc/tfc_io.c +++ linux-3.2.0/drivers/target/tcm_fc/tfc_io.c @@ -84,6 +84,8 @@ void *from; void *to = NULL; + if (cmd->aborted) + return 0; ep = fc_seq_exch(cmd->seq); lport = ep->lp; cmd->seq = lport->tt.seq_start_next(cmd->seq); --- linux-3.2.0.orig/drivers/target/iscsi/iscsi_target_login.c +++ linux-3.2.0/drivers/target/iscsi/iscsi_target_login.c @@ -616,8 +616,8 @@ } pr_debug("iSCSI Login successful on CID: %hu from %s to" - " %s:%hu,%hu\n", conn->cid, conn->login_ip, np->np_ip, - np->np_port, tpg->tpgt); + " %s:%hu,%hu\n", conn->cid, conn->login_ip, + conn->local_ip, conn->local_port, tpg->tpgt); list_add_tail(&conn->conn_list, &sess->sess_conn_list); atomic_inc(&sess->nconn); @@ -659,7 +659,8 @@ sess->session_state = TARG_SESS_STATE_LOGGED_IN; pr_debug("iSCSI Login successful on CID: %hu from %s to %s:%hu,%hu\n", - conn->cid, conn->login_ip, np->np_ip, np->np_port, tpg->tpgt); + conn->cid, conn->login_ip, conn->local_ip, conn->local_port, + tpg->tpgt); spin_lock_bh(&sess->conn_lock); list_add_tail(&conn->conn_list, &sess->sess_conn_list); @@ -1019,6 +1020,18 @@ snprintf(conn->login_ip, sizeof(conn->login_ip), "%pI6c", &sock_in6.sin6_addr.in6_u); conn->login_port = ntohs(sock_in6.sin6_port); + + if (conn->sock->ops->getname(conn->sock, + (struct sockaddr *)&sock_in6, &err, 0) < 0) { + pr_err("sock_ops->getname() failed.\n"); + iscsit_tx_login_rsp(conn, ISCSI_STATUS_CLS_TARGET_ERR, + ISCSI_LOGIN_STATUS_TARGET_ERROR); + goto new_sess_out; + } + snprintf(conn->local_ip, sizeof(conn->local_ip), "%pI6c", + &sock_in6.sin6_addr.in6_u); + conn->local_port = ntohs(sock_in6.sin6_port); + } else { memset(&sock_in, 0, sizeof(struct sockaddr_in)); @@ -1031,6 +1044,16 @@ } sprintf(conn->login_ip, "%pI4", &sock_in.sin_addr.s_addr); conn->login_port = ntohs(sock_in.sin_port); + + if (conn->sock->ops->getname(conn->sock, + (struct sockaddr *)&sock_in, &err, 0) < 0) { + pr_err("sock_ops->getname() failed.\n"); + iscsit_tx_login_rsp(conn, ISCSI_STATUS_CLS_TARGET_ERR, + ISCSI_LOGIN_STATUS_TARGET_ERROR); + goto new_sess_out; + } + sprintf(conn->local_ip, "%pI4", &sock_in.sin_addr.s_addr); + conn->local_port = ntohs(sock_in.sin_port); } conn->network_transport = np->np_network_transport; @@ -1038,7 +1061,7 @@ pr_debug("Received iSCSI login request from %s on %s Network" " Portal %s:%hu\n", conn->login_ip, (conn->network_transport == ISCSI_TCP) ? "TCP" : "SCTP", - np->np_ip, np->np_port); + conn->local_ip, conn->local_port); pr_debug("Moving to TARG_CONN_STATE_IN_LOGIN.\n"); conn->conn_state = TARG_CONN_STATE_IN_LOGIN; --- linux-3.2.0.orig/drivers/target/iscsi/iscsi_target_configfs.c +++ linux-3.2.0/drivers/target/iscsi/iscsi_target_configfs.c @@ -816,9 +816,6 @@ if (!se_nacl_new) return ERR_PTR(-ENOMEM); - acl = container_of(se_nacl_new, struct iscsi_node_acl, - se_node_acl); - cmdsn_depth = ISCSI_TPG_ATTRIB(tpg)->default_cmdsn_depth; /* * se_nacl_new may be released by core_tpg_add_initiator_node_acl() @@ -829,7 +826,8 @@ if (IS_ERR(se_nacl)) return se_nacl; - stats_cg = &acl->se_node_acl.acl_fabric_stat_group; + acl = container_of(se_nacl, struct iscsi_node_acl, se_node_acl); + stats_cg = &se_nacl->acl_fabric_stat_group; stats_cg->default_groups = kzalloc(sizeof(struct config_group) * 2, GFP_KERNEL); --- linux-3.2.0.orig/drivers/target/iscsi/iscsi_target_core.h +++ linux-3.2.0/drivers/target/iscsi/iscsi_target_core.h @@ -508,6 +508,7 @@ u16 cid; /* Remote TCP Port */ u16 login_port; + u16 local_port; int net_size; u32 auth_id; #define CONNFLAG_SCTP_STRUCT_FILE 0x01 @@ -527,6 +528,7 @@ unsigned char bad_hdr[ISCSI_HDR_LEN]; #define IPV6_ADDRESS_SPACE 48 unsigned char login_ip[IPV6_ADDRESS_SPACE]; + unsigned char local_ip[IPV6_ADDRESS_SPACE]; int conn_usage_count; int conn_waiting_on_uc; atomic_t check_immediate_queue; --- linux-3.2.0.orig/drivers/target/iscsi/iscsi_target.c +++ linux-3.2.0/drivers/target/iscsi/iscsi_target.c @@ -781,7 +781,7 @@ struct scatterlist *sgl; u32 length = cmd->se_cmd.data_length; int nents = DIV_ROUND_UP(length, PAGE_SIZE); - int i = 0, ret; + int i = 0, j = 0, ret; /* * If no SCSI payload is present, allocate the default iovecs used for * iSCSI PDU Header @@ -822,17 +822,15 @@ */ ret = iscsit_allocate_iovecs(cmd); if (ret < 0) - goto page_alloc_failed; + return -ENOMEM; return 0; page_alloc_failed: - while (i >= 0) { - __free_page(sg_page(&sgl[i])); - i--; - } - kfree(cmd->t_mem_sg); - cmd->t_mem_sg = NULL; + while (j < i) + __free_page(sg_page(&sgl[j++])); + + kfree(sgl); return -ENOMEM; } @@ -1029,7 +1027,7 @@ return iscsit_add_reject_from_cmd( ISCSI_REASON_BOOKMARK_NO_RESOURCES, 1, 1, buf, cmd); - } else if (transport_ret == -EINVAL) { + } else if (transport_ret < 0) { /* * Unsupported SAM Opcode. CHECK_CONDITION will be sent * in iscsit_execute_cmd() during the CmdSN OOO Execution @@ -1062,7 +1060,7 @@ if (ret < 0) return iscsit_add_reject_from_cmd( ISCSI_REASON_BOOKMARK_NO_RESOURCES, - 1, 1, buf, cmd); + 1, 0, buf, cmd); /* * Check the CmdSN against ExpCmdSN/MaxCmdSN here if * the Immediate Bit is not set, and no Immediate @@ -3165,6 +3163,30 @@ return 0; } +static bool iscsit_check_inaddr_any(struct iscsi_np *np) +{ + bool ret = false; + + if (np->np_sockaddr.ss_family == AF_INET6) { + const struct sockaddr_in6 sin6 = { + .sin6_addr = IN6ADDR_ANY_INIT }; + struct sockaddr_in6 *sock_in6 = + (struct sockaddr_in6 *)&np->np_sockaddr; + + if (!memcmp(sock_in6->sin6_addr.s6_addr, + sin6.sin6_addr.s6_addr, 16)) + ret = true; + } else { + struct sockaddr_in * sock_in = + (struct sockaddr_in *)&np->np_sockaddr; + + if (sock_in->sin_addr.s_addr == INADDR_ANY) + ret = true; + } + + return ret; +} + static int iscsit_build_sendtargets_response(struct iscsi_cmd *cmd) { char *payload = NULL; @@ -3214,12 +3236,17 @@ spin_lock(&tpg->tpg_np_lock); list_for_each_entry(tpg_np, &tpg->tpg_gnp_list, tpg_np_list) { + struct iscsi_np *np = tpg_np->tpg_np; + bool inaddr_any = iscsit_check_inaddr_any(np); + len = sprintf(buf, "TargetAddress=" "%s%s%s:%hu,%hu", - (tpg_np->tpg_np->np_sockaddr.ss_family == AF_INET6) ? - "[" : "", tpg_np->tpg_np->np_ip, - (tpg_np->tpg_np->np_sockaddr.ss_family == AF_INET6) ? - "]" : "", tpg_np->tpg_np->np_port, + (np->np_sockaddr.ss_family == AF_INET6) ? + "[" : "", (inaddr_any == false) ? + np->np_ip : conn->local_ip, + (np->np_sockaddr.ss_family == AF_INET6) ? + "]" : "", (inaddr_any == false) ? + np->np_port : conn->local_port, tpg->tpgt); len += 1; --- linux-3.2.0.orig/drivers/target/iscsi/iscsi_target_util.c +++ linux-3.2.0/drivers/target/iscsi/iscsi_target_util.c @@ -851,6 +851,17 @@ case ISCSI_OP_SCSI_TMFUNC: transport_generic_free_cmd(&cmd->se_cmd, 1); break; + case ISCSI_OP_REJECT: + /* + * Handle special case for REJECT when iscsi_add_reject*() has + * overwritten the original iscsi_opcode assignment, and the + * associated cmd->se_cmd needs to be released. + */ + if (cmd->se_cmd.se_tfo != NULL) { + transport_generic_free_cmd(&cmd->se_cmd, 1); + break; + } + /* Fall-through */ default: iscsit_release_cmd(cmd); break; --- linux-3.2.0.orig/drivers/gpu/drm/drm_auth.c +++ linux-3.2.0/drivers/gpu/drm/drm_auth.c @@ -101,7 +101,7 @@ * Searches and unlinks the entry in drm_device::magiclist with the magic * number hash key, while holding the drm_device::struct_mutex lock. */ -static int drm_remove_magic(struct drm_master *master, drm_magic_t magic) +int drm_remove_magic(struct drm_master *master, drm_magic_t magic) { struct drm_magic_entry *pt; struct drm_hash_item *hash; @@ -136,6 +136,8 @@ * If there is a magic number in drm_file::magic then use it, otherwise * searches an unique non-zero magic number and add it associating it with \p * file_priv. + * This ioctl needs protection by the drm_global_mutex, which protects + * struct drm_file::magic and struct drm_magic_entry::priv. */ int drm_getmagic(struct drm_device *dev, void *data, struct drm_file *file_priv) { @@ -173,6 +175,8 @@ * \return zero if authentication successed, or a negative number otherwise. * * Checks if \p file_priv is associated with the magic number passed in \arg. + * This ioctl needs protection by the drm_global_mutex, which protects + * struct drm_file::magic and struct drm_magic_entry::priv. */ int drm_authmagic(struct drm_device *dev, void *data, struct drm_file *file_priv) --- linux-3.2.0.orig/drivers/gpu/drm/drm_stub.c +++ linux-3.2.0/drivers/gpu/drm/drm_stub.c @@ -356,7 +356,7 @@ new_minor->index = minor_id; INIT_LIST_HEAD(&new_minor->master_list); - idr_replace(&drm_minors_idr, new_minor, minor_id); + idr_replace(&drm_minors_idr, ERR_PTR(-EAGAIN), minor_id); if (type == DRM_MINOR_LEGACY) { ret = drm_proc_init(new_minor, minor_id, drm_proc_root); --- linux-3.2.0.orig/drivers/gpu/drm/drm_edid.c +++ linux-3.2.0/drivers/gpu/drm/drm_edid.c @@ -149,8 +149,7 @@ * Sanity check the EDID block (base or extension). Return 0 if the block * doesn't check out, or 1 if it's valid. */ -static bool -drm_edid_block_valid(u8 *raw_edid) +bool drm_edid_block_valid(u8 *raw_edid) { int i; u8 csum = 0; @@ -203,6 +202,7 @@ } return 0; } +EXPORT_SYMBOL(drm_edid_block_valid); /** * drm_edid_is_valid - sanity check EDID data @@ -266,6 +266,11 @@ } }; ret = i2c_transfer(adapter, msgs, 2); + if (ret == -ENXIO) { + DRM_DEBUG_KMS("drm: skipping non-existent adapter %s\n", + adapter->name); + break; + } } while (ret != 2 && --retries); return ret == 2 ? 0 : -1; --- linux-3.2.0.orig/drivers/gpu/drm/Kconfig +++ linux-3.2.0/drivers/gpu/drm/Kconfig @@ -27,6 +27,18 @@ help FB and CRTC helpers for KMS drivers. +config DRM_LOAD_EDID_FIRMWARE + bool "Allow to specify an EDID data set instead of probing for it" + depends on DRM_KMS_HELPER + help + Say Y here, if you want to use EDID data to be loaded from the + /lib/firmware directory or one of the provided built-in + data sets. This may be necessary, if the graphics adapter or + monitor are unable to provide appropriate EDID data. Since this + feature is provided as a workaround for broken hardware, the + default case is N. Details and instructions how to build your own + EDID data are given in Documentation/EDID/HOWTO.txt. + config DRM_TTM tristate depends on DRM --- linux-3.2.0.orig/drivers/gpu/drm/drm_platform.c +++ linux-3.2.0/drivers/gpu/drm/drm_platform.c @@ -90,6 +90,10 @@ list_add_tail(&dev->driver_item, &driver->device_list); + if (drm_core_check_feature(dev, DRIVER_MODESET)) + idr_replace(&drm_minors_idr, dev->control, dev->control->index); + idr_replace(&drm_minors_idr, dev->primary, dev->primary->index); + mutex_unlock(&drm_global_mutex); DRM_INFO("Initialized %s %d.%d.%d %s on minor %d\n", --- linux-3.2.0.orig/drivers/gpu/drm/drm_fb_helper.c +++ linux-3.2.0/drivers/gpu/drm/drm_fb_helper.c @@ -610,9 +610,13 @@ return -EINVAL; /* Need to resize the fb object !!! */ - if (var->bits_per_pixel > fb->bits_per_pixel || var->xres > fb->width || var->yres > fb->height) { + if (var->bits_per_pixel > fb->bits_per_pixel || + var->xres > fb->width || var->yres > fb->height || + var->xres_virtual > fb->width || var->yres_virtual > fb->height) { DRM_DEBUG("fb userspace requested width/height/bpp is greater than current fb " - "object %dx%d-%d > %dx%d-%d\n", var->xres, var->yres, var->bits_per_pixel, + "request %dx%d-%d (virtual %dx%d) > %dx%d-%d\n", + var->xres, var->yres, var->bits_per_pixel, + var->xres_virtual, var->yres_virtual, fb->width, fb->height, fb->bits_per_pixel); return -EINVAL; } --- linux-3.2.0.orig/drivers/gpu/drm/drm_pci.c +++ linux-3.2.0/drivers/gpu/drm/drm_pci.c @@ -369,6 +369,10 @@ list_add_tail(&dev->driver_item, &driver->device_list); + if (drm_core_check_feature(dev, DRIVER_MODESET)) + idr_replace(&drm_minors_idr, dev->control, dev->control->index); + idr_replace(&drm_minors_idr, dev->primary, dev->primary->index); + DRM_INFO("Initialized %s %d.%d.%d %s for %s on minor %d\n", driver->name, driver->major, driver->minor, driver->patchlevel, driver->date, pci_name(pdev), dev->primary->index); --- linux-3.2.0.orig/drivers/gpu/drm/drm_edid_load.c +++ linux-3.2.0/drivers/gpu/drm/drm_edid_load.c @@ -0,0 +1,250 @@ +/* + drm_edid_load.c: use a built-in EDID data set or load it via the firmware + interface + + Copyright (C) 2012 Carsten Emde + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + +#include +#include +#include "drmP.h" +#include "drm_crtc.h" +#include "drm_crtc_helper.h" +#include "drm_edid.h" + +static char edid_firmware[PATH_MAX]; +module_param_string(edid_firmware, edid_firmware, sizeof(edid_firmware), 0644); +MODULE_PARM_DESC(edid_firmware, "Do not probe monitor, use specified EDID blob " + "from built-in data or /lib/firmware instead. "); + +#define GENERIC_EDIDS 4 +static char *generic_edid_name[GENERIC_EDIDS] = { + "edid/1024x768.bin", + "edid/1280x1024.bin", + "edid/1680x1050.bin", + "edid/1920x1080.bin", +}; + +static u8 generic_edid[GENERIC_EDIDS][128] = { + { + 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, + 0x31, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x05, 0x16, 0x01, 0x03, 0x6d, 0x23, 0x1a, 0x78, + 0xea, 0x5e, 0xc0, 0xa4, 0x59, 0x4a, 0x98, 0x25, + 0x20, 0x50, 0x54, 0x00, 0x08, 0x00, 0x61, 0x40, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x64, 0x19, + 0x00, 0x40, 0x41, 0x00, 0x26, 0x30, 0x08, 0x90, + 0x36, 0x00, 0x63, 0x0a, 0x11, 0x00, 0x00, 0x18, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x4c, 0x69, 0x6e, + 0x75, 0x78, 0x20, 0x23, 0x30, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x3b, + 0x3d, 0x2f, 0x31, 0x07, 0x00, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0xfc, + 0x00, 0x4c, 0x69, 0x6e, 0x75, 0x78, 0x20, 0x58, + 0x47, 0x41, 0x0a, 0x20, 0x20, 0x20, 0x00, 0x55, + }, + { + 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, + 0x31, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x05, 0x16, 0x01, 0x03, 0x6d, 0x2c, 0x23, 0x78, + 0xea, 0x5e, 0xc0, 0xa4, 0x59, 0x4a, 0x98, 0x25, + 0x20, 0x50, 0x54, 0x00, 0x00, 0x00, 0x81, 0x80, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x30, 0x2a, + 0x00, 0x98, 0x51, 0x00, 0x2a, 0x40, 0x30, 0x70, + 0x13, 0x00, 0xbc, 0x63, 0x11, 0x00, 0x00, 0x1e, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x4c, 0x69, 0x6e, + 0x75, 0x78, 0x20, 0x23, 0x30, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x3b, + 0x3d, 0x3e, 0x40, 0x0b, 0x00, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0xfc, + 0x00, 0x4c, 0x69, 0x6e, 0x75, 0x78, 0x20, 0x53, + 0x58, 0x47, 0x41, 0x0a, 0x20, 0x20, 0x00, 0xa0, + }, + { + 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, + 0x31, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x05, 0x16, 0x01, 0x03, 0x6d, 0x2b, 0x1b, 0x78, + 0xea, 0x5e, 0xc0, 0xa4, 0x59, 0x4a, 0x98, 0x25, + 0x20, 0x50, 0x54, 0x00, 0x00, 0x00, 0xb3, 0x00, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x21, 0x39, + 0x90, 0x30, 0x62, 0x1a, 0x27, 0x40, 0x68, 0xb0, + 0x36, 0x00, 0xb5, 0x11, 0x11, 0x00, 0x00, 0x1e, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x4c, 0x69, 0x6e, + 0x75, 0x78, 0x20, 0x23, 0x30, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x3b, + 0x3d, 0x40, 0x42, 0x0f, 0x00, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0xfc, + 0x00, 0x4c, 0x69, 0x6e, 0x75, 0x78, 0x20, 0x57, + 0x53, 0x58, 0x47, 0x41, 0x0a, 0x20, 0x00, 0x26, + }, + { + 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, + 0x31, 0xd8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x05, 0x16, 0x01, 0x03, 0x6d, 0x32, 0x1c, 0x78, + 0xea, 0x5e, 0xc0, 0xa4, 0x59, 0x4a, 0x98, 0x25, + 0x20, 0x50, 0x54, 0x00, 0x00, 0x00, 0xd1, 0xc0, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, + 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x02, 0x3a, + 0x80, 0x18, 0x71, 0x38, 0x2d, 0x40, 0x58, 0x2c, + 0x45, 0x00, 0xf4, 0x19, 0x11, 0x00, 0x00, 0x1e, + 0x00, 0x00, 0x00, 0xff, 0x00, 0x4c, 0x69, 0x6e, + 0x75, 0x78, 0x20, 0x23, 0x30, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x3b, + 0x3d, 0x42, 0x44, 0x0f, 0x00, 0x0a, 0x20, 0x20, + 0x20, 0x20, 0x20, 0x20, 0x00, 0x00, 0x00, 0xfc, + 0x00, 0x4c, 0x69, 0x6e, 0x75, 0x78, 0x20, 0x46, + 0x48, 0x44, 0x0a, 0x20, 0x20, 0x20, 0x00, 0x05, + }, +}; + +static int edid_load(struct drm_connector *connector, char *name, + char *connector_name) +{ + const struct firmware *fw; + struct platform_device *pdev; + u8 *fwdata = NULL, *edid; + int fwsize, expected; + int builtin = 0, err = 0; + int i, valid_extensions = 0; + + pdev = platform_device_register_simple(connector_name, -1, NULL, 0); + if (IS_ERR(pdev)) { + DRM_ERROR("Failed to register EDID firmware platform device " + "for connector \"%s\"\n", connector_name); + err = -EINVAL; + goto out; + } + + err = request_firmware(&fw, name, &pdev->dev); + platform_device_unregister(pdev); + + if (err) { + i = 0; + while (i < GENERIC_EDIDS && strcmp(name, generic_edid_name[i])) + i++; + if (i < GENERIC_EDIDS) { + err = 0; + builtin = 1; + fwdata = generic_edid[i]; + fwsize = sizeof(generic_edid[i]); + } + } + + if (err) { + DRM_ERROR("Requesting EDID firmware \"%s\" failed (err=%d)\n", + name, err); + goto out; + } + + if (fwdata == NULL) { + fwdata = (u8 *) fw->data; + fwsize = fw->size; + } + + expected = (fwdata[0x7e] + 1) * EDID_LENGTH; + if (expected != fwsize) { + DRM_ERROR("Size of EDID firmware \"%s\" is invalid " + "(expected %d, got %d)\n", name, expected, (int) fwsize); + err = -EINVAL; + goto relfw_out; + } + + edid = kmalloc(fwsize, GFP_KERNEL); + if (edid == NULL) { + err = -ENOMEM; + goto relfw_out; + } + memcpy(edid, fwdata, fwsize); + + if (!drm_edid_block_valid(edid)) { + DRM_ERROR("Base block of EDID firmware \"%s\" is invalid ", + name); + kfree(edid); + err = -EINVAL; + goto relfw_out; + } + + for (i = 1; i <= edid[0x7e]; i++) { + if (i != valid_extensions + 1) + memcpy(edid + (valid_extensions + 1) * EDID_LENGTH, + edid + i * EDID_LENGTH, EDID_LENGTH); + if (drm_edid_block_valid(edid + i * EDID_LENGTH)) + valid_extensions++; + } + + if (valid_extensions != edid[0x7e]) { + edid[EDID_LENGTH-1] += edid[0x7e] - valid_extensions; + DRM_INFO("Found %d valid extensions instead of %d in EDID data " + "\"%s\" for connector \"%s\"\n", valid_extensions, + edid[0x7e], name, connector_name); + edid[0x7e] = valid_extensions; + edid = krealloc(edid, (valid_extensions + 1) * EDID_LENGTH, + GFP_KERNEL); + if (edid == NULL) { + err = -ENOMEM; + goto relfw_out; + } + } + + connector->display_info.raw_edid = edid; + DRM_INFO("Got %s EDID base block and %d extension%s from " + "\"%s\" for connector \"%s\"\n", builtin ? "built-in" : + "external", valid_extensions, valid_extensions == 1 ? "" : "s", + name, connector_name); + +relfw_out: + release_firmware(fw); + +out: + return err; +} + +int drm_load_edid_firmware(struct drm_connector *connector) +{ + char *connector_name = drm_get_connector_name(connector); + char *edidname = edid_firmware, *last, *colon; + int ret = 0; + + if (*edidname == '\0') + return ret; + + colon = strchr(edidname, ':'); + if (colon != NULL) { + if (strncmp(connector_name, edidname, colon - edidname)) + return ret; + edidname = colon + 1; + if (*edidname == '\0') + return ret; + } + + last = edidname + strlen(edidname) - 1; + if (*last == '\n') + *last = '\0'; + + ret = edid_load(connector, edidname, connector_name); + if (ret) + return 0; + + drm_mode_connector_update_edid_property(connector, + (struct edid *) connector->display_info.raw_edid); + + return drm_add_edid_modes(connector, (struct edid *) + connector->display_info.raw_edid); +} --- linux-3.2.0.orig/drivers/gpu/drm/drm_crtc_helper.c +++ linux-3.2.0/drivers/gpu/drm/drm_crtc_helper.c @@ -36,6 +36,7 @@ #include "drm_crtc.h" #include "drm_crtc_helper.h" #include "drm_fb_helper.h" +#include "drm_edid.h" static bool drm_kms_helper_poll = true; module_param_named(poll, drm_kms_helper_poll, bool, 0600); @@ -117,7 +118,12 @@ goto prune; } - count = (*connector_funcs->get_modes)(connector); +#ifdef CONFIG_DRM_LOAD_EDID_FIRMWARE + count = drm_load_edid_firmware(connector); + if (count == 0) +#endif + count = (*connector_funcs->get_modes)(connector); + if (count == 0 && connector->status == connector_status_connected) count = drm_add_modes_noedid(connector, 1024, 768); if (count == 0) --- linux-3.2.0.orig/drivers/gpu/drm/Makefile +++ linux-3.2.0/drivers/gpu/drm/Makefile @@ -17,6 +17,7 @@ drm-$(CONFIG_COMPAT) += drm_ioc32.o drm_kms_helper-y := drm_fb_helper.o drm_crtc_helper.o drm_dp_i2c_helper.o +drm_kms_helper-$(CONFIG_DRM_LOAD_EDID_FIRMWARE) += drm_edid_load.o obj-$(CONFIG_DRM_KMS_HELPER) += drm_kms_helper.o --- linux-3.2.0.orig/drivers/gpu/drm/drm_fops.c +++ linux-3.2.0/drivers/gpu/drm/drm_fops.c @@ -129,7 +129,8 @@ minor = idr_find(&drm_minors_idr, minor_id); if (!minor) return -ENODEV; - + if (IS_ERR(minor)) + return PTR_ERR(minor); if (!(dev = minor->dev)) return -ENODEV; @@ -177,7 +178,10 @@ minor = idr_find(&drm_minors_idr, minor_id); if (!minor) goto out; - + if (IS_ERR(minor)) { + err = PTR_ERR(minor); + goto out; + } if (!(dev = minor->dev)) goto out; @@ -487,6 +491,11 @@ (long)old_encode_dev(file_priv->minor->device), dev->open_count); + /* Release any auth tokens that might point to this file_priv, + (do that under the drm_global_mutex) */ + if (file_priv->magic) + (void) drm_remove_magic(file_priv->master, file_priv->magic); + /* if the master has gone away we can't do anything with the lock */ if (file_priv->minor->master) drm_master_release(dev, filp); --- linux-3.2.0.orig/drivers/gpu/drm/i915/i915_irq.c +++ linux-3.2.0/drivers/gpu/drm/i915/i915_irq.c @@ -424,14 +424,11 @@ mutex_unlock(&dev_priv->dev->struct_mutex); } -static void pch_irq_handler(struct drm_device *dev) +static void pch_irq_handler(struct drm_device *dev, u32 pch_iir) { drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; - u32 pch_iir; int pipe; - pch_iir = I915_READ(SDEIIR); - if (pch_iir & SDE_AUDIO_POWER_MASK) DRM_DEBUG_DRIVER("PCH audio power change on port %d\n", (pch_iir & SDE_AUDIO_POWER_MASK) >> @@ -529,7 +526,7 @@ if (de_iir & DE_PCH_EVENT_IVB) { if (pch_iir & SDE_HOTPLUG_MASK_CPT) queue_work(dev_priv->wq, &dev_priv->hotplug_work); - pch_irq_handler(dev); + pch_irq_handler(dev, pch_iir); } if (pm_iir & GEN6_PM_DEFERRED_EVENTS) { @@ -629,7 +626,7 @@ if (de_iir & DE_PCH_EVENT) { if (pch_iir & hotplug_mask) queue_work(dev_priv->wq, &dev_priv->hotplug_work); - pch_irq_handler(dev); + pch_irq_handler(dev, pch_iir); } if (de_iir & DE_PCU_EVENT) { @@ -1669,7 +1666,7 @@ { struct drm_device *dev = (struct drm_device *)data; drm_i915_private_t *dev_priv = dev->dev_private; - uint32_t acthd, instdone, instdone1; + uint32_t acthd, instdone, instdone1, acthd_bsd, acthd_blt; bool err = false; if (!i915_enable_hangcheck) @@ -1686,16 +1683,21 @@ } if (INTEL_INFO(dev)->gen < 4) { - acthd = I915_READ(ACTHD); instdone = I915_READ(INSTDONE); instdone1 = 0; } else { - acthd = I915_READ(ACTHD_I965); instdone = I915_READ(INSTDONE_I965); instdone1 = I915_READ(INSTDONE1); } + acthd = intel_ring_get_active_head(&dev_priv->ring[RCS]); + acthd_bsd = HAS_BSD(dev) ? + intel_ring_get_active_head(&dev_priv->ring[VCS]) : 0; + acthd_blt = HAS_BLT(dev) ? + intel_ring_get_active_head(&dev_priv->ring[BCS]) : 0; if (dev_priv->last_acthd == acthd && + dev_priv->last_acthd_bsd == acthd_bsd && + dev_priv->last_acthd_blt == acthd_blt && dev_priv->last_instdone == instdone && dev_priv->last_instdone1 == instdone1) { if (dev_priv->hangcheck_count++ > 1) { @@ -1727,6 +1729,8 @@ dev_priv->hangcheck_count = 0; dev_priv->last_acthd = acthd; + dev_priv->last_acthd_bsd = acthd_bsd; + dev_priv->last_acthd_blt = acthd_blt; dev_priv->last_instdone = instdone; dev_priv->last_instdone1 = instdone1; } --- linux-3.2.0.orig/drivers/gpu/drm/i915/intel_fb.c +++ linux-3.2.0/drivers/gpu/drm/i915/intel_fb.c @@ -257,6 +257,16 @@ kfree(dev_priv->fbdev); dev_priv->fbdev = NULL; } + +void intel_fbdev_set_suspend(struct drm_device *dev, int state) +{ + drm_i915_private_t *dev_priv = dev->dev_private; + if (!dev_priv->fbdev) + return; + + fb_set_suspend(dev_priv->fbdev->helper.fbdev, state); +} + MODULE_LICENSE("GPL and additional rights"); void intel_fb_output_poll_changed(struct drm_device *dev) --- linux-3.2.0.orig/drivers/gpu/drm/i915/intel_bios.c +++ linux-3.2.0/drivers/gpu/drm/i915/intel_bios.c @@ -24,6 +24,7 @@ * Eric Anholt * */ +#include #include #include "drmP.h" #include "drm.h" @@ -621,6 +622,26 @@ dev_priv->edp.bpp = 18; } +static int __init intel_no_opregion_vbt_callback(const struct dmi_system_id *id) +{ + DRM_DEBUG_KMS("Falling back to manually reading VBT from " + "VBIOS ROM for %s\n", + id->ident); + return 1; +} + +static const struct dmi_system_id intel_no_opregion_vbt[] = { + { + .callback = intel_no_opregion_vbt_callback, + .ident = "ThinkCentre A57", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), + DMI_MATCH(DMI_PRODUCT_NAME, "97027RG"), + }, + }, + { } +}; + /** * intel_parse_bios - find VBT and initialize settings from the BIOS * @dev: DRM device @@ -641,7 +662,7 @@ init_vbt_defaults(dev_priv); /* XXX Should this validation be moved to intel_opregion.c? */ - if (dev_priv->opregion.vbt) { + if (!dmi_check_system(intel_no_opregion_vbt) && dev_priv->opregion.vbt) { struct vbt_header *vbt = dev_priv->opregion.vbt; if (memcmp(vbt->signature, "$VBT", 4) == 0) { DRM_DEBUG_KMS("Using VBT from OpRegion: %20s\n", --- linux-3.2.0.orig/drivers/gpu/drm/i915/i915_drv.h +++ linux-3.2.0/drivers/gpu/drm/i915/i915_drv.h @@ -286,7 +286,13 @@ int relative_constants_mode; void __iomem *regs; - u32 gt_fifo_count; + /** gt_fifo_count and the subsequent register write are synchronized + * with dev->struct_mutex. */ + unsigned gt_fifo_count; + /** forcewake_count is protected by gt_lock */ + unsigned forcewake_count; + /** gt_lock is also taken in irq contexts. */ + struct spinlock gt_lock; struct intel_gmbus { struct i2c_adapter adapter; @@ -337,6 +343,8 @@ struct timer_list hangcheck_timer; int hangcheck_count; uint32_t last_acthd; + uint32_t last_acthd_bsd; + uint32_t last_acthd_blt; uint32_t last_instdone; uint32_t last_instdone1; @@ -736,8 +744,6 @@ struct drm_property *broadcast_rgb_property; struct drm_property *force_audio_property; - - atomic_t forcewake_count; } drm_i915_private_t; enum i915_cache_level { --- linux-3.2.0.orig/drivers/gpu/drm/i915/i915_gem_execbuffer.c +++ linux-3.2.0/drivers/gpu/drm/i915/i915_gem_execbuffer.c @@ -984,6 +984,7 @@ struct intel_ring_buffer *ring; u32 exec_start, exec_len; u32 seqno; + u32 mask; int ret, mode, i; if (!i915_gem_check_execbuffer(args)) { @@ -1021,6 +1022,7 @@ } mode = args->flags & I915_EXEC_CONSTANTS_MASK; + mask = I915_EXEC_CONSTANTS_MASK; switch (mode) { case I915_EXEC_CONSTANTS_REL_GENERAL: case I915_EXEC_CONSTANTS_ABSOLUTE: @@ -1034,18 +1036,9 @@ mode == I915_EXEC_CONSTANTS_REL_SURFACE) return -EINVAL; - ret = intel_ring_begin(ring, 4); - if (ret) - return ret; - - intel_ring_emit(ring, MI_NOOP); - intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1)); - intel_ring_emit(ring, INSTPM); - intel_ring_emit(ring, - I915_EXEC_CONSTANTS_MASK << 16 | mode); - intel_ring_advance(ring); - - dev_priv->relative_constants_mode = mode; + /* The HW changed the meaning on this bit on gen6 */ + if (INTEL_INFO(dev)->gen >= 6) + mask &= ~I915_EXEC_CONSTANTS_REL_SURFACE; } break; default: @@ -1064,6 +1057,11 @@ return -EINVAL; } + if (args->num_cliprects > UINT_MAX / sizeof(*cliprects)) { + DRM_DEBUG("execbuf with %u cliprects\n", + args->num_cliprects); + return -EINVAL; + } cliprects = kmalloc(args->num_cliprects * sizeof(*cliprects), GFP_KERNEL); if (cliprects == NULL) { @@ -1176,6 +1174,21 @@ } } + if (ring == &dev_priv->ring[RCS] && + mode != dev_priv->relative_constants_mode) { + ret = intel_ring_begin(ring, 4); + if (ret) + goto err; + + intel_ring_emit(ring, MI_NOOP); + intel_ring_emit(ring, MI_LOAD_REGISTER_IMM(1)); + intel_ring_emit(ring, INSTPM); + intel_ring_emit(ring, mask << 16 | mode); + intel_ring_advance(ring); + + dev_priv->relative_constants_mode = mode; + } + trace_i915_gem_ring_dispatch(ring, seqno); exec_start = batch_obj->gtt_offset + args->batch_start_offset; @@ -1314,7 +1327,8 @@ struct drm_i915_gem_exec_object2 *exec2_list = NULL; int ret; - if (args->buffer_count < 1) { + if (args->buffer_count < 1 || + args->buffer_count > UINT_MAX / sizeof(*exec2_list)) { DRM_ERROR("execbuf2 with %d buffers\n", args->buffer_count); return -EINVAL; } --- linux-3.2.0.orig/drivers/gpu/drm/i915/i915_drv.c +++ linux-3.2.0/drivers/gpu/drm/i915/i915_drv.c @@ -64,7 +64,7 @@ "Use semaphores for inter-ring sync (default: -1 (use per-chip defaults))"); int i915_enable_rc6 __read_mostly = -1; -module_param_named(i915_enable_rc6, i915_enable_rc6, int, 0600); +module_param_named(i915_enable_rc6, i915_enable_rc6, int, 0400); MODULE_PARM_DESC(i915_enable_rc6, "Enable power-saving render C-state 6 (default: -1 (use per-chip default)"); @@ -368,11 +368,12 @@ */ void gen6_gt_force_wake_get(struct drm_i915_private *dev_priv) { - WARN_ON(!mutex_is_locked(&dev_priv->dev->struct_mutex)); + unsigned long irqflags; - /* Forcewake is atomic in case we get in here without the lock */ - if (atomic_add_return(1, &dev_priv->forcewake_count) == 1) + spin_lock_irqsave(&dev_priv->gt_lock, irqflags); + if (dev_priv->forcewake_count++ == 0) dev_priv->display.force_wake_get(dev_priv); + spin_unlock_irqrestore(&dev_priv->gt_lock, irqflags); } void __gen6_gt_force_wake_put(struct drm_i915_private *dev_priv) @@ -392,10 +393,12 @@ */ void gen6_gt_force_wake_put(struct drm_i915_private *dev_priv) { - WARN_ON(!mutex_is_locked(&dev_priv->dev->struct_mutex)); + unsigned long irqflags; - if (atomic_dec_and_test(&dev_priv->forcewake_count)) + spin_lock_irqsave(&dev_priv->gt_lock, irqflags); + if (--dev_priv->forcewake_count == 0) dev_priv->display.force_wake_put(dev_priv); + spin_unlock_irqrestore(&dev_priv->gt_lock, irqflags); } void __gen6_gt_wait_for_fifo(struct drm_i915_private *dev_priv) @@ -439,6 +442,10 @@ /* Modeset on resume, not lid events */ dev_priv->modeset_on_lid = 0; + console_lock(); + intel_fbdev_set_suspend(dev, 1); + console_unlock(); + return 0; } @@ -501,7 +508,9 @@ drm_irq_install(dev); /* Resume the modeset for every activated CRTC */ + mutex_lock(&dev->mode_config.mutex); drm_helper_resume_force_mode(dev); + mutex_unlock(&dev->mode_config.mutex); if (IS_IRONLAKE_M(dev)) ironlake_enable_rc6(dev); @@ -511,6 +520,9 @@ dev_priv->modeset_on_lid = 0; + console_lock(); + intel_fbdev_set_suspend(dev, 0); + console_unlock(); return error; } @@ -626,6 +638,7 @@ * need to */ bool need_display = true; + unsigned long irqflags; int ret; if (!i915_try_reset) @@ -644,8 +657,10 @@ case 6: ret = gen6_do_reset(dev, flags); /* If reset with a user forcewake, try to restore */ - if (atomic_read(&dev_priv->forcewake_count)) - __gen6_gt_force_wake_get(dev_priv); + spin_lock_irqsave(&dev_priv->gt_lock, irqflags); + if (dev_priv->forcewake_count) + dev_priv->display.force_wake_get(dev_priv); + spin_unlock_irqrestore(&dev_priv->gt_lock, irqflags); break; case 5: ret = ironlake_do_reset(dev, flags); --- linux-3.2.0.orig/drivers/gpu/drm/i915/intel_hdmi.c +++ linux-3.2.0/drivers/gpu/drm/i915/intel_hdmi.c @@ -136,7 +136,7 @@ val &= ~VIDEO_DIP_SELECT_MASK; - I915_WRITE(VIDEO_DIP_CTL, val | port | flags); + I915_WRITE(VIDEO_DIP_CTL, VIDEO_DIP_ENABLE | val | port | flags); for (i = 0; i < len; i += 4) { I915_WRITE(VIDEO_DIP_DATA, *data); @@ -269,6 +269,10 @@ struct drm_i915_private *dev_priv = dev->dev_private; struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder); u32 temp; + u32 enable_bits = SDVO_ENABLE; + + if (intel_hdmi->has_audio) + enable_bits |= SDVO_AUDIO_ENABLE; temp = I915_READ(intel_hdmi->sdvox_reg); @@ -281,9 +285,9 @@ } if (mode != DRM_MODE_DPMS_ON) { - temp &= ~SDVO_ENABLE; + temp &= ~enable_bits; } else { - temp |= SDVO_ENABLE; + temp |= enable_bits; } I915_WRITE(intel_hdmi->sdvox_reg, temp); --- linux-3.2.0.orig/drivers/gpu/drm/i915/i915_gem.c +++ linux-3.2.0/drivers/gpu/drm/i915/i915_gem.c @@ -3084,10 +3084,13 @@ return ret; } + ret = i915_gem_object_wait_rendering(obj); + if (ret) + return ret; + /* Ensure that we invalidate the GPU's caches and TLBs. */ obj->base.read_domains &= ~I915_GEM_GPU_DOMAINS; - - return i915_gem_object_wait_rendering(obj); + return 0; } /** --- linux-3.2.0.orig/drivers/gpu/drm/i915/intel_drv.h +++ linux-3.2.0/drivers/gpu/drm/i915/intel_drv.h @@ -364,7 +364,7 @@ struct drm_i915_gem_object *obj); extern int intel_fbdev_init(struct drm_device *dev); extern void intel_fbdev_fini(struct drm_device *dev); - +extern void intel_fbdev_set_suspend(struct drm_device *dev, int state); extern void intel_prepare_page_flip(struct drm_device *dev, int plane); extern void intel_finish_page_flip(struct drm_device *dev, int pipe); extern void intel_finish_page_flip_plane(struct drm_device *dev, int plane); --- linux-3.2.0.orig/drivers/gpu/drm/i915/i915_suspend.c +++ linux-3.2.0/drivers/gpu/drm/i915/i915_suspend.c @@ -34,6 +34,10 @@ struct drm_i915_private *dev_priv = dev->dev_private; u32 dpll_reg; + /* On IVB, 3rd pipe shares PLL with another one */ + if (pipe > 1) + return false; + if (HAS_PCH_SPLIT(dev)) dpll_reg = (pipe == PIPE_A) ? _PCH_DPLL_A : _PCH_DPLL_B; else @@ -822,7 +826,7 @@ if (IS_IRONLAKE_M(dev)) ironlake_disable_drps(dev); - if (IS_GEN6(dev)) + if (INTEL_INFO(dev)->gen >= 6) gen6_disable_rps(dev); /* Cache mode state */ @@ -881,7 +885,7 @@ intel_init_emon(dev); } - if (IS_GEN6(dev)) { + if (INTEL_INFO(dev)->gen >= 6) { gen6_enable_rps(dev_priv); gen6_update_ring_freq(dev_priv); } --- linux-3.2.0.orig/drivers/gpu/drm/i915/i915_dma.c +++ linux-3.2.0/drivers/gpu/drm/i915/i915_dma.c @@ -2042,6 +2042,7 @@ if (!IS_I945G(dev) && !IS_I945GM(dev)) pci_enable_msi(dev->pdev); + spin_lock_init(&dev_priv->gt_lock); spin_lock_init(&dev_priv->irq_lock); spin_lock_init(&dev_priv->error_lock); spin_lock_init(&dev_priv->rps_lock); --- linux-3.2.0.orig/drivers/gpu/drm/i915/intel_ringbuffer.c +++ linux-3.2.0/drivers/gpu/drm/i915/intel_ringbuffer.c @@ -414,6 +414,22 @@ return ret; } + + if (IS_GEN6(dev)) { + /* From the Sandybridge PRM, volume 1 part 3, page 24: + * "If this bit is set, STCunit will have LRA as replacement + * policy. [...] This bit must be reset. LRA replacement + * policy is not supported." + */ + I915_WRITE(CACHE_MODE_0, + CM0_STC_EVICT_DISABLE_LRA_SNB << CM0_MASK_SHIFT); + } + + if (INTEL_INFO(dev)->gen >= 6) { + I915_WRITE(INSTPM, + INSTPM_FORCE_ORDERING << 16 | INSTPM_FORCE_ORDERING); + } + return ret; } @@ -631,6 +647,19 @@ } static u32 +gen6_ring_get_seqno(struct intel_ring_buffer *ring) +{ + struct drm_device *dev = ring->dev; + + /* Workaround to force correct ordering between irq and seqno writes on + * ivb (and maybe also on snb) by reading from a CS register (like + * ACTHD) before reading the status page. */ + if (IS_GEN7(dev)) + intel_ring_get_active_head(ring); + return intel_read_status_page(ring, I915_GEM_HWS_INDEX); +} + +static u32 ring_get_seqno(struct intel_ring_buffer *ring) { return intel_read_status_page(ring, I915_GEM_HWS_INDEX); @@ -795,6 +824,12 @@ if (!dev->irq_enabled) return false; + /* It looks like we need to prevent the gt from suspending while waiting + * for an notifiy irq, otherwise irqs seem to get lost on at least the + * blt/bsd rings on ivb. */ + if (IS_GEN7(dev)) + gen6_gt_force_wake_get(dev_priv); + spin_lock(&ring->irq_lock); if (ring->irq_refcount++ == 0) { ring->irq_mask &= ~rflag; @@ -819,6 +854,9 @@ ironlake_disable_irq(dev_priv, gflag); } spin_unlock(&ring->irq_lock); + + if (IS_GEN7(dev)) + gen6_gt_force_wake_put(dev_priv); } static bool @@ -1030,7 +1068,7 @@ * of the buffer. */ ring->effective_size = ring->size; - if (IS_I830(ring->dev)) + if (IS_I830(ring->dev) || IS_845G(ring->dev)) ring->effective_size -= 128; return 0; @@ -1316,7 +1354,7 @@ .write_tail = gen6_bsd_ring_write_tail, .flush = gen6_ring_flush, .add_request = gen6_add_request, - .get_seqno = ring_get_seqno, + .get_seqno = gen6_ring_get_seqno, .irq_get = gen6_bsd_ring_get_irq, .irq_put = gen6_bsd_ring_put_irq, .dispatch_execbuffer = gen6_ring_dispatch_execbuffer, @@ -1451,7 +1489,7 @@ .write_tail = ring_write_tail, .flush = blt_ring_flush, .add_request = gen6_add_request, - .get_seqno = ring_get_seqno, + .get_seqno = gen6_ring_get_seqno, .irq_get = blt_ring_get_irq, .irq_put = blt_ring_put_irq, .dispatch_execbuffer = gen6_ring_dispatch_execbuffer, @@ -1474,6 +1512,7 @@ ring->flush = gen6_render_ring_flush; ring->irq_get = gen6_render_ring_get_irq; ring->irq_put = gen6_render_ring_put_irq; + ring->get_seqno = gen6_ring_get_seqno; } else if (IS_GEN5(dev)) { ring->add_request = pc_render_add_request; ring->get_seqno = pc_render_get_seqno; --- linux-3.2.0.orig/drivers/gpu/drm/i915/intel_display.c +++ linux-3.2.0/drivers/gpu/drm/i915/intel_display.c @@ -1864,7 +1864,7 @@ if (enable_fbc < 0) { DRM_DEBUG_KMS("fbc set to per-chip default\n"); enable_fbc = 1; - if (INTEL_INFO(dev)->gen <= 5) + if (INTEL_INFO(dev)->gen <= 6) enable_fbc = 0; } if (!enable_fbc) { @@ -5646,12 +5646,15 @@ if (is_lvds) { temp = I915_READ(PCH_LVDS); temp |= LVDS_PORT_EN | LVDS_A0A2_CLKA_POWER_UP; - if (HAS_PCH_CPT(dev)) + if (HAS_PCH_CPT(dev)) { + temp &= ~PORT_TRANS_SEL_MASK; temp |= PORT_TRANS_SEL_CPT(pipe); - else if (pipe == 1) - temp |= LVDS_PIPEB_SELECT; - else - temp &= ~LVDS_PIPEB_SELECT; + } else { + if (pipe == 1) + temp |= LVDS_PIPEB_SELECT; + else + temp &= ~LVDS_PIPEB_SELECT; + } /* set the corresponsding LVDS_BORDER bit */ temp |= dev_priv->lvds_border_bits; @@ -5876,14 +5879,14 @@ int aud_cntl_st; int aud_cntrl_st2; - if (IS_IVYBRIDGE(connector->dev)) { - hdmiw_hdmiedid = GEN7_HDMIW_HDMIEDID_A; - aud_cntl_st = GEN7_AUD_CNTRL_ST_A; - aud_cntrl_st2 = GEN7_AUD_CNTRL_ST2; - } else { + if (HAS_PCH_IBX(connector->dev)) { hdmiw_hdmiedid = GEN5_HDMIW_HDMIEDID_A; aud_cntl_st = GEN5_AUD_CNTL_ST_A; aud_cntrl_st2 = GEN5_AUD_CNTL_ST2; + } else { + hdmiw_hdmiedid = GEN7_HDMIW_HDMIEDID_A; + aud_cntl_st = GEN7_AUD_CNTRL_ST_A; + aud_cntrl_st2 = GEN7_AUD_CNTRL_ST2; } i = to_intel_crtc(crtc)->pipe; @@ -5965,7 +5968,7 @@ int i; /* The clocks have to be on to load the palette. */ - if (!crtc->enabled) + if (!crtc->enabled || !intel_crtc->active) return; /* use legacy palette for Ironlake */ @@ -7277,6 +7280,13 @@ { struct drm_i915_private *dev_priv = dev->dev_private; u32 reg, val; + int i; + + /* Clear any frame start delays used for debugging left by the BIOS */ + for_each_pipe(i) { + reg = PIPECONF(i); + I915_WRITE(reg, I915_READ(reg) & ~PIPECONF_FRAME_START_DELAY_MASK); + } if (HAS_PCH_SPLIT(dev)) return; @@ -7921,13 +7931,6 @@ if (INTEL_INFO(dev)->gen == 5) return 0; - /* - * Disable rc6 on Sandybridge - */ - if (INTEL_INFO(dev)->gen == 6) { - DRM_DEBUG_DRIVER("Sandybridge: RC6 disabled\n"); - return 0; - } DRM_DEBUG_DRIVER("RC6 enabled\n"); return 1; } @@ -7969,8 +7972,8 @@ I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */ if (intel_enable_rc6(dev_priv->dev)) - rc6_mask = GEN6_RC_CTL_RC6p_ENABLE | - GEN6_RC_CTL_RC6_ENABLE; + rc6_mask = GEN6_RC_CTL_RC6_ENABLE | + ((IS_GEN7(dev_priv->dev)) ? GEN6_RC_CTL_RC6p_ENABLE : 0); I915_WRITE(GEN6_RC_CONTROL, rc6_mask | @@ -8236,6 +8239,18 @@ } } +static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv) +{ + uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE); + + reg &= ~GEN7_FF_SCHED_MASK; + reg |= GEN7_FF_TS_SCHED_HW; + reg |= GEN7_FF_VS_SCHED_HW; + reg |= GEN7_FF_DS_SCHED_HW; + + I915_WRITE(GEN7_FF_THREAD_MODE, reg); +} + static void ivybridge_init_clock_gating(struct drm_device *dev) { struct drm_i915_private *dev_priv = dev->dev_private; @@ -8248,14 +8263,36 @@ I915_WRITE(WM2_LP_ILK, 0); I915_WRITE(WM1_LP_ILK, 0); + /* According to the spec, bit 13 (RCZUNIT) must be set on IVB. + * This implements the WaDisableRCZUnitClockGating workaround. + */ + I915_WRITE(GEN6_UCGCTL2, GEN6_RCZUNIT_CLOCK_GATE_DISABLE); + I915_WRITE(ILK_DSPCLK_GATE, IVB_VRHUNIT_CLK_GATE); + /* Apply the WaDisableRHWOOptimizationForRenderHang workaround. */ + I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1, + GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC); + + /* WaApplyL3ControlAndL3ChickenMode requires those two on Ivy Bridge */ + I915_WRITE(GEN7_L3CNTLREG1, + GEN7_WA_FOR_GEN7_L3_CONTROL); + I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER, + GEN7_WA_L3_CHICKEN_MODE); + + /* This is required by WaCatErrorRejectionIssue */ + I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, + I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | + GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); + for_each_pipe(pipe) { I915_WRITE(DSPCNTR(pipe), I915_READ(DSPCNTR(pipe)) | DISPPLANE_TRICKLE_FEED_DISABLE); intel_flush_display_plane(dev_priv, pipe); } + + gen7_setup_fixed_func_scheduler(dev_priv); } static void g4x_init_clock_gating(struct drm_device *dev) @@ -8702,8 +8739,6 @@ }; struct intel_quirk intel_quirks[] = { - /* HP Compaq 2730p needs pipe A force quirk (LP: #291555) */ - { 0x2a42, 0x103c, 0x30eb, quirk_pipea_force }, /* HP Mini needs pipe A force quirk (LP: #322104) */ { 0x27ae, 0x103c, 0x361a, quirk_pipea_force }, --- linux-3.2.0.orig/drivers/gpu/drm/i915/intel_tv.c +++ linux-3.2.0/drivers/gpu/drm/i915/intel_tv.c @@ -417,7 +417,7 @@ { .name = "NTSC-M", .clock = 108000, - .refresh = 29970, + .refresh = 59940, .oversample = TV_OVERSAMPLE_8X, .component_only = 0, /* 525 Lines, 60 Fields, 15.734KHz line, Sub-Carrier 3.580MHz */ @@ -460,7 +460,7 @@ { .name = "NTSC-443", .clock = 108000, - .refresh = 29970, + .refresh = 59940, .oversample = TV_OVERSAMPLE_8X, .component_only = 0, /* 525 Lines, 60 Fields, 15.734KHz line, Sub-Carrier 4.43MHz */ @@ -502,7 +502,7 @@ { .name = "NTSC-J", .clock = 108000, - .refresh = 29970, + .refresh = 59940, .oversample = TV_OVERSAMPLE_8X, .component_only = 0, @@ -545,7 +545,7 @@ { .name = "PAL-M", .clock = 108000, - .refresh = 29970, + .refresh = 59940, .oversample = TV_OVERSAMPLE_8X, .component_only = 0, @@ -589,7 +589,7 @@ /* 625 Lines, 50 Fields, 15.625KHz line, Sub-Carrier 4.434MHz */ .name = "PAL-N", .clock = 108000, - .refresh = 25000, + .refresh = 50000, .oversample = TV_OVERSAMPLE_8X, .component_only = 0, @@ -634,7 +634,7 @@ /* 625 Lines, 50 Fields, 15.625KHz line, Sub-Carrier 4.434MHz */ .name = "PAL", .clock = 108000, - .refresh = 25000, + .refresh = 50000, .oversample = TV_OVERSAMPLE_8X, .component_only = 0, @@ -821,7 +821,7 @@ { .name = "1080i@50Hz", .clock = 148800, - .refresh = 25000, + .refresh = 50000, .oversample = TV_OVERSAMPLE_2X, .component_only = 1, @@ -847,7 +847,7 @@ { .name = "1080i@60Hz", .clock = 148800, - .refresh = 30000, + .refresh = 60000, .oversample = TV_OVERSAMPLE_2X, .component_only = 1, @@ -1275,6 +1275,15 @@ DAC_B_0_7_V | DAC_C_0_7_V); + + /* + * The TV sense state should be cleared to zero on cantiga platform. Otherwise + * the TV is misdetected. This is hardware requirement. + */ + if (IS_GM45(dev)) + tv_dac &= ~(TVDAC_STATE_CHG_EN | TVDAC_A_SENSE_CTL | + TVDAC_B_SENSE_CTL | TVDAC_C_SENSE_CTL); + I915_WRITE(TV_CTL, tv_ctl); I915_WRITE(TV_DAC, tv_dac); POSTING_READ(TV_DAC); --- linux-3.2.0.orig/drivers/gpu/drm/i915/i915_debugfs.c +++ linux-3.2.0/drivers/gpu/drm/i915/i915_debugfs.c @@ -1314,9 +1314,13 @@ struct drm_info_node *node = (struct drm_info_node *) m->private; struct drm_device *dev = node->minor->dev; struct drm_i915_private *dev_priv = dev->dev_private; + unsigned forcewake_count; - seq_printf(m, "forcewake count = %d\n", - atomic_read(&dev_priv->forcewake_count)); + spin_lock_irq(&dev_priv->gt_lock); + forcewake_count = dev_priv->forcewake_count; + spin_unlock_irq(&dev_priv->gt_lock); + + seq_printf(m, "forcewake count = %u\n", forcewake_count); return 0; } --- linux-3.2.0.orig/drivers/gpu/drm/i915/intel_dp.c +++ linux-3.2.0/drivers/gpu/drm/i915/intel_dp.c @@ -208,17 +208,8 @@ */ static int -intel_dp_link_required(struct intel_dp *intel_dp, int pixel_clock, int check_bpp) +intel_dp_link_required(int pixel_clock, int bpp) { - struct drm_crtc *crtc = intel_dp->base.base.crtc; - struct intel_crtc *intel_crtc = to_intel_crtc(crtc); - int bpp = 24; - - if (check_bpp) - bpp = check_bpp; - else if (intel_crtc) - bpp = intel_crtc->bpp; - return (pixel_clock * bpp + 9) / 10; } @@ -228,14 +219,38 @@ return (max_link_clock * max_lanes * 8) / 10; } +static bool +intel_dp_adjust_dithering(struct intel_dp *intel_dp, + struct drm_display_mode *mode, + struct drm_display_mode *adjusted_mode) +{ + int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp)); + int max_lanes = intel_dp_max_lane_count(intel_dp); + int max_rate, mode_rate; + + mode_rate = intel_dp_link_required(mode->clock, 24); + max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes); + + if (mode_rate > max_rate) { + mode_rate = intel_dp_link_required(mode->clock, 18); + if (mode_rate > max_rate) + return false; + + if (adjusted_mode) + adjusted_mode->private_flags + |= INTEL_MODE_DP_FORCE_6BPC; + + return true; + } + + return true; +} + static int intel_dp_mode_valid(struct drm_connector *connector, struct drm_display_mode *mode) { struct intel_dp *intel_dp = intel_attached_dp(connector); - int max_link_clock = intel_dp_link_clock(intel_dp_max_link_bw(intel_dp)); - int max_lanes = intel_dp_max_lane_count(intel_dp); - int max_rate, mode_rate; if (is_edp(intel_dp) && intel_dp->panel_fixed_mode) { if (mode->hdisplay > intel_dp->panel_fixed_mode->hdisplay) @@ -245,17 +260,8 @@ return MODE_PANEL; } - mode_rate = intel_dp_link_required(intel_dp, mode->clock, 0); - max_rate = intel_dp_max_data_rate(max_link_clock, max_lanes); - - if (mode_rate > max_rate) { - mode_rate = intel_dp_link_required(intel_dp, - mode->clock, 18); - if (mode_rate > max_rate) - return MODE_CLOCK_HIGH; - else - mode->private_flags |= INTEL_MODE_DP_FORCE_6BPC; - } + if (!intel_dp_adjust_dithering(intel_dp, mode, NULL)) + return MODE_CLOCK_HIGH; if (mode->clock < 10000) return MODE_CLOCK_LOW; @@ -683,7 +689,7 @@ int lane_count, clock; int max_lane_count = intel_dp_max_lane_count(intel_dp); int max_clock = intel_dp_max_link_bw(intel_dp) == DP_LINK_BW_2_7 ? 1 : 0; - int bpp = mode->private_flags & INTEL_MODE_DP_FORCE_6BPC ? 18 : 0; + int bpp; static int bws[2] = { DP_LINK_BW_1_62, DP_LINK_BW_2_7 }; if (is_edp(intel_dp) && intel_dp->panel_fixed_mode) { @@ -697,11 +703,16 @@ mode->clock = intel_dp->panel_fixed_mode->clock; } + if (!intel_dp_adjust_dithering(intel_dp, mode, adjusted_mode)) + return false; + + bpp = adjusted_mode->private_flags & INTEL_MODE_DP_FORCE_6BPC ? 18 : 24; + for (lane_count = 1; lane_count <= max_lane_count; lane_count <<= 1) { for (clock = 0; clock <= max_clock; clock++) { int link_avail = intel_dp_max_data_rate(intel_dp_link_clock(bws[clock]), lane_count); - if (intel_dp_link_required(intel_dp, mode->clock, bpp) + if (intel_dp_link_required(mode->clock, bpp) <= link_avail) { intel_dp->link_bw = bws[clock]; intel_dp->lane_count = lane_count; @@ -1926,6 +1937,7 @@ intel_wait_for_vblank(dev, to_intel_crtc(crtc)->pipe); } + DP &= ~DP_AUDIO_OUTPUT_ENABLE; I915_WRITE(intel_dp->output_reg, DP & ~DP_PORT_EN); POSTING_READ(intel_dp->output_reg); msleep(intel_dp->panel_power_down_delay); --- linux-3.2.0.orig/drivers/gpu/drm/i915/intel_sdvo.c +++ linux-3.2.0/drivers/gpu/drm/i915/intel_sdvo.c @@ -731,6 +731,7 @@ uint16_t width, height; uint16_t h_blank_len, h_sync_len, v_blank_len, v_sync_len; uint16_t h_sync_offset, v_sync_offset; + int mode_clock; width = mode->crtc_hdisplay; height = mode->crtc_vdisplay; @@ -745,7 +746,11 @@ h_sync_offset = mode->crtc_hsync_start - mode->crtc_hblank_start; v_sync_offset = mode->crtc_vsync_start - mode->crtc_vblank_start; - dtd->part1.clock = mode->clock / 10; + mode_clock = mode->clock; + mode_clock /= intel_mode_get_pixel_multiplier(mode) ?: 1; + mode_clock /= 10; + dtd->part1.clock = mode_clock; + dtd->part1.h_active = width & 0xff; dtd->part1.h_blank = h_blank_len & 0xff; dtd->part1.h_high = (((width >> 8) & 0xf) << 4) | @@ -997,7 +1002,7 @@ struct intel_sdvo *intel_sdvo = to_intel_sdvo(encoder); u32 sdvox; struct intel_sdvo_in_out_map in_out; - struct intel_sdvo_dtd input_dtd; + struct intel_sdvo_dtd input_dtd, output_dtd; int pixel_multiplier = intel_mode_get_pixel_multiplier(adjusted_mode); int rate; @@ -1022,20 +1027,13 @@ intel_sdvo->attached_output)) return; - /* We have tried to get input timing in mode_fixup, and filled into - * adjusted_mode. - */ - if (intel_sdvo->is_tv || intel_sdvo->is_lvds) { - input_dtd = intel_sdvo->input_dtd; - } else { - /* Set the output timing to the screen */ - if (!intel_sdvo_set_target_output(intel_sdvo, - intel_sdvo->attached_output)) - return; - - intel_sdvo_get_dtd_from_mode(&input_dtd, adjusted_mode); - (void) intel_sdvo_set_output_timing(intel_sdvo, &input_dtd); - } + /* lvds has a special fixed output timing. */ + if (intel_sdvo->is_lvds) + intel_sdvo_get_dtd_from_mode(&output_dtd, + intel_sdvo->sdvo_lvds_fixed_mode); + else + intel_sdvo_get_dtd_from_mode(&output_dtd, mode); + (void) intel_sdvo_set_output_timing(intel_sdvo, &output_dtd); /* Set the input timing to the screen. Assume always input 0. */ if (!intel_sdvo_set_target_input(intel_sdvo)) @@ -1053,6 +1051,10 @@ !intel_sdvo_set_tv_format(intel_sdvo)) return; + /* We have tried to get input timing in mode_fixup, and filled into + * adjusted_mode. + */ + intel_sdvo_get_dtd_from_mode(&input_dtd, adjusted_mode); (void) intel_sdvo_set_input_timing(intel_sdvo, &input_dtd); switch (pixel_multiplier) { @@ -1066,15 +1068,13 @@ /* Set the SDVO control regs. */ if (INTEL_INFO(dev)->gen >= 4) { - sdvox = 0; + /* The real mode polarity is set by the SDVO commands, using + * struct intel_sdvo_dtd. */ + sdvox = SDVO_VSYNC_ACTIVE_HIGH | SDVO_HSYNC_ACTIVE_HIGH; if (intel_sdvo->is_hdmi) sdvox |= intel_sdvo->color_range; if (INTEL_INFO(dev)->gen < 5) sdvox |= SDVO_BORDER_ENABLE; - if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC) - sdvox |= SDVO_VSYNC_ACTIVE_HIGH; - if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC) - sdvox |= SDVO_HSYNC_ACTIVE_HIGH; } else { sdvox = I915_READ(intel_sdvo->sdvo_reg); switch (intel_sdvo->sdvo_reg) { @@ -1221,8 +1221,14 @@ static int intel_sdvo_supports_hotplug(struct intel_sdvo *intel_sdvo) { + struct drm_device *dev = intel_sdvo->base.base.dev; u8 response[2]; + /* HW Erratum: SDVO Hotplug is broken on all i945G chips, there's noise + * on the line. */ + if (IS_I945G(dev) || IS_I945GM(dev)) + return false; + return intel_sdvo_get_value(intel_sdvo, SDVO_CMD_GET_HOT_PLUG_SUPPORT, &response, 2) && response[0]; } --- linux-3.2.0.orig/drivers/gpu/drm/i915/intel_lvds.c +++ linux-3.2.0/drivers/gpu/drm/i915/intel_lvds.c @@ -694,6 +694,14 @@ }, { .callback = intel_no_lvds_dmi_callback, + .ident = "AOpen i45GMx-I", + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"), + DMI_MATCH(DMI_BOARD_NAME, "i45GMx-I"), + }, + }, + { + .callback = intel_no_lvds_dmi_callback, .ident = "Aopen i945GTt-VFA", .matches = { DMI_MATCH(DMI_PRODUCT_VERSION, "AO00001JW"), @@ -708,6 +716,14 @@ }, }, { + .callback = intel_no_lvds_dmi_callback, + .ident = "Clientron E830", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Clientron"), + DMI_MATCH(DMI_PRODUCT_NAME, "E830"), + }, + }, + { .callback = intel_no_lvds_dmi_callback, .ident = "Asus EeeBox PC EB1007", .matches = { @@ -723,6 +739,30 @@ DMI_MATCH(DMI_BOARD_NAME, "AT5NM10T-I"), }, }, + { + .callback = intel_no_lvds_dmi_callback, + .ident = "Hewlett-Packard t5745", + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"), + DMI_MATCH(DMI_BOARD_NAME, "hp t5745"), + }, + }, + { + .callback = intel_no_lvds_dmi_callback, + .ident = "Hewlett-Packard st5747", + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "Hewlett-Packard"), + DMI_MATCH(DMI_BOARD_NAME, "hp st5747"), + }, + }, + { + .callback = intel_no_lvds_dmi_callback, + .ident = "MSI Wind Box DC500", + .matches = { + DMI_MATCH(DMI_BOARD_VENDOR, "MICRO-STAR INTERNATIONAL CO., LTD"), + DMI_MATCH(DMI_BOARD_NAME, "MS-7469"), + }, + }, { } /* terminating entry */ }; --- linux-3.2.0.orig/drivers/gpu/drm/i915/i915_reg.h +++ linux-3.2.0/drivers/gpu/drm/i915/i915_reg.h @@ -442,6 +442,7 @@ #define INSTPM_AGPBUSY_DIS (1<<11) /* gen3: when disabled, pending interrupts will not assert AGPBUSY# and will only be delivered when out of C3. */ +#define INSTPM_FORCE_ORDERING (1<<7) /* GEN6+ */ #define ACTHD 0x020c8 #define FW_BLC 0x020d8 #define FW_BLC2 0x020dc @@ -522,6 +523,7 @@ #define CM0_MASK_SHIFT 16 #define CM0_IZ_OPT_DISABLE (1<<6) #define CM0_ZR_OPT_DISABLE (1<<5) +#define CM0_STC_EVICT_DISABLE_LRA_SNB (1<<5) #define CM0_DEPTH_EVICT_DISABLE (1<<4) #define CM0_COLOR_EVICT_DISABLE (1<<3) #define CM0_DEPTH_WRITE_DISABLE (1<<1) @@ -568,6 +570,21 @@ #define GEN6_BSD_RNCID 0x12198 +#define GEN7_FF_THREAD_MODE 0x20a0 +#define GEN7_FF_SCHED_MASK 0x0077070 +#define GEN7_FF_TS_SCHED_HS1 (0x5<<16) +#define GEN7_FF_TS_SCHED_HS0 (0x3<<16) +#define GEN7_FF_TS_SCHED_LOAD_BALANCE (0x1<<16) +#define GEN7_FF_TS_SCHED_HW (0x0<<16) /* Default */ +#define GEN7_FF_VS_SCHED_HS1 (0x5<<12) +#define GEN7_FF_VS_SCHED_HS0 (0x3<<12) +#define GEN7_FF_VS_SCHED_LOAD_BALANCE (0x1<<12) /* Default */ +#define GEN7_FF_VS_SCHED_HW (0x0<<12) +#define GEN7_FF_DS_SCHED_HS1 (0x5<<4) +#define GEN7_FF_DS_SCHED_HS0 (0x3<<4) +#define GEN7_FF_DS_SCHED_LOAD_BALANCE (0x1<<4) /* Default */ +#define GEN7_FF_DS_SCHED_HW (0x0<<4) + /* * Framebuffer compression (915+ only) */ @@ -2312,6 +2329,7 @@ #define PIPECONF_DISABLE 0 #define PIPECONF_DOUBLE_WIDE (1<<30) #define I965_PIPECONF_ACTIVE (1<<30) +#define PIPECONF_FRAME_START_DELAY_MASK (3<<27) #define PIPECONF_SINGLE_WIDE 0 #define PIPECONF_PIPE_UNLOCKED 0 #define PIPECONF_PIPE_LOCKED (1<<25) @@ -2886,6 +2904,20 @@ #define DISP_TILE_SURFACE_SWIZZLING (1<<13) #define DISP_FBC_WM_DIS (1<<15) +/* GEN7 chicken */ +#define GEN7_COMMON_SLICE_CHICKEN1 0x7010 +# define GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC ((1<<10) | (1<<26)) + +#define GEN7_L3CNTLREG1 0xB01C +#define GEN7_WA_FOR_GEN7_L3_CONTROL 0x3C4FFF8C + +#define GEN7_L3_CHICKEN_MODE_REGISTER 0xB030 +#define GEN7_WA_L3_CHICKEN_MODE 0x20000000 + +/* WaCatErrorRejectionIssue */ +#define GEN7_SQ_CHICKEN_MBCUNIT_CONFIG 0x9030 +#define GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB (1<<11) + /* PCH */ /* south display engine interrupt */ @@ -3476,6 +3508,7 @@ #define GT_FIFO_NUM_RESERVED_ENTRIES 20 #define GEN6_UCGCTL2 0x9404 +# define GEN6_RCZUNIT_CLOCK_GATE_DISABLE (1 << 13) # define GEN6_RCPBUNIT_CLOCK_GATE_DISABLE (1 << 12) # define GEN6_RCCUNIT_CLOCK_GATE_DISABLE (1 << 11) --- linux-3.2.0.orig/drivers/gpu/drm/radeon/radeon_device.c +++ linux-3.2.0/drivers/gpu/drm/radeon/radeon_device.c @@ -224,8 +224,11 @@ if (radeon_no_wb == 1) rdev->wb.enabled = false; else { - /* often unreliable on AGP */ if (rdev->flags & RADEON_IS_AGP) { + /* often unreliable on AGP */ + rdev->wb.enabled = false; + } else if (rdev->family < CHIP_R300) { + /* often unreliable on pre-r300 */ rdev->wb.enabled = false; } else { rdev->wb.enabled = true; @@ -861,6 +864,8 @@ if (dev->switch_power_state == DRM_SWITCH_POWER_OFF) return 0; + drm_kms_helper_poll_disable(dev); + /* turn off display hw */ list_for_each_entry(connector, &dev->mode_config.connector_list, head) { drm_helper_connector_dpms(connector, DRM_MODE_DPMS_OFF); @@ -947,6 +952,8 @@ list_for_each_entry(connector, &dev->mode_config.connector_list, head) { drm_helper_connector_dpms(connector, DRM_MODE_DPMS_ON); } + + drm_kms_helper_poll_enable(dev); return 0; } --- linux-3.2.0.orig/drivers/gpu/drm/radeon/r600_blit_shaders.c +++ linux-3.2.0/drivers/gpu/drm/radeon/r600_blit_shaders.c @@ -314,6 +314,10 @@ 0x00000000, /* VGT_VTX_CNT_EN */ 0xc0016900, + 0x000000d4, + 0x00000000, /* SX_MISC */ + + 0xc0016900, 0x000002c8, 0x00000000, /* VGT_STRMOUT_BUFFER_EN */ @@ -626,6 +630,10 @@ 0x00000000, /* VGT_VTX_CNT_EN */ 0xc0016900, + 0x000000d4, + 0x00000000, /* SX_MISC */ + + 0xc0016900, 0x000002c8, 0x00000000, /* VGT_STRMOUT_BUFFER_EN */ --- linux-3.2.0.orig/drivers/gpu/drm/radeon/radeon_mode.h +++ linux-3.2.0/drivers/gpu/drm/radeon/radeon_mode.h @@ -362,6 +362,7 @@ struct backlight_device *bl_dev; int dpms_mode; uint8_t backlight_level; + int panel_mode; }; struct radeon_encoder_atom_dac { @@ -482,6 +483,8 @@ extern bool radeon_dp_needs_link_train(struct radeon_connector *radeon_connector); extern u8 radeon_dp_getsinktype(struct radeon_connector *radeon_connector); extern bool radeon_dp_getdpcd(struct radeon_connector *radeon_connector); +extern int radeon_dp_get_panel_mode(struct drm_encoder *encoder, + struct drm_connector *connector); extern void atombios_dig_encoder_setup(struct drm_encoder *encoder, int action, int panel_mode); extern void radeon_atom_encoder_init(struct radeon_device *rdev); extern void atombios_dig_transmitter_setup(struct drm_encoder *encoder, --- linux-3.2.0.orig/drivers/gpu/drm/radeon/radeon_object.c +++ linux-3.2.0/drivers/gpu/drm/radeon/radeon_object.c @@ -204,7 +204,8 @@ *bo = NULL; } -int radeon_bo_pin(struct radeon_bo *bo, u32 domain, u64 *gpu_addr) +int radeon_bo_pin_restricted(struct radeon_bo *bo, u32 domain, u64 max_offset, + u64 *gpu_addr) { int r, i; @@ -212,6 +213,7 @@ bo->pin_count++; if (gpu_addr) *gpu_addr = radeon_bo_gpu_offset(bo); + WARN_ON_ONCE(max_offset != 0); return 0; } radeon_ttm_placement_from_domain(bo, domain); @@ -219,6 +221,15 @@ /* force to pin into visible video ram */ bo->placement.lpfn = bo->rdev->mc.visible_vram_size >> PAGE_SHIFT; } + if (max_offset) { + u64 lpfn = max_offset >> PAGE_SHIFT; + + if (!bo->placement.lpfn) + bo->placement.lpfn = bo->rdev->mc.gtt_size >> PAGE_SHIFT; + + if (lpfn < bo->placement.lpfn) + bo->placement.lpfn = lpfn; + } for (i = 0; i < bo->placement.num_placement; i++) bo->placements[i] |= TTM_PL_FLAG_NO_EVICT; r = ttm_bo_validate(&bo->tbo, &bo->placement, false, false, false); @@ -232,6 +243,11 @@ return r; } +int radeon_bo_pin(struct radeon_bo *bo, u32 domain, u64 *gpu_addr) +{ + return radeon_bo_pin_restricted(bo, domain, 0, gpu_addr); +} + int radeon_bo_unpin(struct radeon_bo *bo) { int r, i; --- linux-3.2.0.orig/drivers/gpu/drm/radeon/atom.h +++ linux-3.2.0/drivers/gpu/drm/radeon/atom.h @@ -44,6 +44,7 @@ #define ATOM_CMD_SETSCLK 0x0A #define ATOM_CMD_SETMCLK 0x0B #define ATOM_CMD_SETPCLK 0x0C +#define ATOM_CMD_SPDFANCNTL 0x39 #define ATOM_DATA_FWI_PTR 0xC #define ATOM_DATA_IIO_PTR 0x32 --- linux-3.2.0.orig/drivers/gpu/drm/radeon/radeon_i2c.c +++ linux-3.2.0/drivers/gpu/drm/radeon/radeon_i2c.c @@ -890,6 +890,10 @@ struct radeon_i2c_chan *i2c; int ret; + /* don't add the mm_i2c bus unless hw_i2c is enabled */ + if (rec->mm_i2c && (radeon_hw_i2c == 0)) + return NULL; + i2c = kzalloc(sizeof(struct radeon_i2c_chan), GFP_KERNEL); if (i2c == NULL) return NULL; --- linux-3.2.0.orig/drivers/gpu/drm/radeon/atombios_dp.c +++ linux-3.2.0/drivers/gpu/drm/radeon/atombios_dp.c @@ -549,8 +549,8 @@ return false; } -static void radeon_dp_set_panel_mode(struct drm_encoder *encoder, - struct drm_connector *connector) +int radeon_dp_get_panel_mode(struct drm_encoder *encoder, + struct drm_connector *connector) { struct drm_device *dev = encoder->dev; struct radeon_device *rdev = dev->dev_private; @@ -558,28 +558,33 @@ int panel_mode = DP_PANEL_MODE_EXTERNAL_DP_MODE; if (!ASIC_IS_DCE4(rdev)) - return; + return panel_mode; if (radeon_connector_encoder_get_dp_bridge_encoder_id(connector) == ENCODER_OBJECT_ID_NUTMEG) panel_mode = DP_PANEL_MODE_INTERNAL_DP1_MODE; else if (radeon_connector_encoder_get_dp_bridge_encoder_id(connector) == - ENCODER_OBJECT_ID_TRAVIS) - panel_mode = DP_PANEL_MODE_INTERNAL_DP2_MODE; - else if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) { + ENCODER_OBJECT_ID_TRAVIS) { + u8 id[6]; + int i; + for (i = 0; i < 6; i++) + id[i] = radeon_read_dpcd_reg(radeon_connector, 0x503 + i); + if (id[0] == 0x73 && + id[1] == 0x69 && + id[2] == 0x76 && + id[3] == 0x61 && + id[4] == 0x72 && + id[5] == 0x54) + panel_mode = DP_PANEL_MODE_INTERNAL_DP1_MODE; + else + panel_mode = DP_PANEL_MODE_INTERNAL_DP2_MODE; + } else if (connector->connector_type == DRM_MODE_CONNECTOR_eDP) { u8 tmp = radeon_read_dpcd_reg(radeon_connector, DP_EDP_CONFIGURATION_CAP); if (tmp & 1) panel_mode = DP_PANEL_MODE_INTERNAL_DP2_MODE; } - atombios_dig_encoder_setup(encoder, - ATOM_ENCODER_CMD_SETUP_PANEL_MODE, - panel_mode); - - if ((connector->connector_type == DRM_MODE_CONNECTOR_eDP) && - (panel_mode == DP_PANEL_MODE_INTERNAL_DP2_MODE)) { - radeon_write_dpcd_reg(radeon_connector, DP_EDP_CONFIGURATION_SET, 1); - } + return panel_mode; } void radeon_dp_set_link_config(struct drm_connector *connector, @@ -717,6 +722,8 @@ static int radeon_dp_link_train_init(struct radeon_dp_link_train_info *dp_info) { + struct radeon_encoder *radeon_encoder = to_radeon_encoder(dp_info->encoder); + struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; u8 tmp; /* power up the sink */ @@ -732,7 +739,10 @@ radeon_write_dpcd_reg(dp_info->radeon_connector, DP_DOWNSPREAD_CTRL, 0); - radeon_dp_set_panel_mode(dp_info->encoder, dp_info->connector); + if ((dp_info->connector->connector_type == DRM_MODE_CONNECTOR_eDP) && + (dig->panel_mode == DP_PANEL_MODE_INTERNAL_DP2_MODE)) { + radeon_write_dpcd_reg(dp_info->radeon_connector, DP_EDP_CONFIGURATION_SET, 1); + } /* set the lane count on the sink */ tmp = dp_info->dp_lane_count; --- linux-3.2.0.orig/drivers/gpu/drm/radeon/atombios_crtc.c +++ linux-3.2.0/drivers/gpu/drm/radeon/atombios_crtc.c @@ -917,8 +917,8 @@ break; } - if (radeon_encoder->active_device & - (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) { + if ((radeon_encoder->active_device & (ATOM_DEVICE_LCD_SUPPORT | ATOM_DEVICE_DFP_SUPPORT)) || + (radeon_encoder_get_dp_bridge_encoder_id(encoder) != ENCODER_OBJECT_ID_NONE)) { struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; struct drm_connector *connector = radeon_get_connector_for_encoder(encoder); @@ -1189,7 +1189,7 @@ WREG32(EVERGREEN_GRPH_ENABLE + radeon_crtc->crtc_offset, 1); WREG32(EVERGREEN_DESKTOP_HEIGHT + radeon_crtc->crtc_offset, - crtc->mode.vdisplay); + target_fb->height); x &= ~3; y &= ~1; WREG32(EVERGREEN_VIEWPORT_START + radeon_crtc->crtc_offset, @@ -1358,7 +1358,7 @@ WREG32(AVIVO_D1GRPH_ENABLE + radeon_crtc->crtc_offset, 1); WREG32(AVIVO_D1MODE_DESKTOP_HEIGHT + radeon_crtc->crtc_offset, - crtc->mode.vdisplay); + target_fb->height); x &= ~3; y &= ~1; WREG32(AVIVO_D1MODE_VIEWPORT_START + radeon_crtc->crtc_offset, --- linux-3.2.0.orig/drivers/gpu/drm/radeon/atom.c +++ linux-3.2.0/drivers/gpu/drm/radeon/atom.c @@ -1304,8 +1304,11 @@ int atom_asic_init(struct atom_context *ctx) { + struct radeon_device *rdev = ctx->card->dev->dev_private; int hwi = CU16(ctx->data_table + ATOM_DATA_FWI_PTR); uint32_t ps[16]; + int ret; + memset(ps, 0, 64); ps[0] = cpu_to_le32(CU32(hwi + ATOM_FWI_DEFSCLK_PTR)); @@ -1315,7 +1318,17 @@ if (!CU16(ctx->cmd_table + 4 + 2 * ATOM_CMD_INIT)) return 1; - return atom_execute_table(ctx, ATOM_CMD_INIT, ps); + ret = atom_execute_table(ctx, ATOM_CMD_INIT, ps); + if (ret) + return ret; + + memset(ps, 0, 64); + + if (rdev->family < CHIP_R600) { + if (CU16(ctx->cmd_table + 4 + 2 * ATOM_CMD_SPDFANCNTL)) + atom_execute_table(ctx, ATOM_CMD_SPDFANCNTL, ps); + } + return ret; } void atom_destroy(struct atom_context *ctx) --- linux-3.2.0.orig/drivers/gpu/drm/radeon/radeon_connectors.c +++ linux-3.2.0/drivers/gpu/drm/radeon/radeon_connectors.c @@ -946,6 +946,10 @@ encoder = obj_to_encoder(obj); + if (encoder->encoder_type != DRM_MODE_ENCODER_DAC && + encoder->encoder_type != DRM_MODE_ENCODER_TVDAC) + continue; + encoder_funcs = encoder->helper_private; if (encoder_funcs->detect) { if (ret != connector_status_connected) { @@ -972,6 +976,7 @@ * cases the DVI port is actually a virtual KVM port connected to the service * processor. */ +out: if ((!rdev->is_atom_bios) && (ret == connector_status_disconnected) && rdev->mode_info.bios_hardcoded_edid_size) { @@ -979,7 +984,6 @@ ret = connector_status_connected; } -out: /* updated in get modes as well since we need to know if it's analog or digital */ radeon_connector_update_scratch_regs(connector, ret); return ret; --- linux-3.2.0.orig/drivers/gpu/drm/radeon/rs600.c +++ linux-3.2.0/drivers/gpu/drm/radeon/rs600.c @@ -324,10 +324,10 @@ void rs600_bm_disable(struct radeon_device *rdev) { - u32 tmp; + u16 tmp; /* disable bus mastering */ - pci_read_config_word(rdev->pdev, 0x4, (u16*)&tmp); + pci_read_config_word(rdev->pdev, 0x4, &tmp); pci_write_config_word(rdev->pdev, 0x4, tmp & 0xFFFB); mdelay(1); } @@ -693,9 +693,7 @@ WREG32(RADEON_BUS_CNTL, msi_rearm | RS600_MSI_REARM); break; default: - msi_rearm = RREG32(RADEON_MSI_REARM_EN) & ~RV370_MSI_REARM_EN; - WREG32(RADEON_MSI_REARM_EN, msi_rearm); - WREG32(RADEON_MSI_REARM_EN, msi_rearm | RV370_MSI_REARM_EN); + WREG32(RADEON_MSI_REARM_EN, RV370_MSI_REARM_EN); break; } } --- linux-3.2.0.orig/drivers/gpu/drm/radeon/r100.c +++ linux-3.2.0/drivers/gpu/drm/radeon/r100.c @@ -789,9 +789,7 @@ WREG32(RADEON_AIC_CNTL, msi_rearm | RS400_MSI_REARM); break; default: - msi_rearm = RREG32(RADEON_MSI_REARM_EN) & ~RV370_MSI_REARM_EN; - WREG32(RADEON_MSI_REARM_EN, msi_rearm); - WREG32(RADEON_MSI_REARM_EN, msi_rearm | RV370_MSI_REARM_EN); + WREG32(RADEON_MSI_REARM_EN, RV370_MSI_REARM_EN); break; } } @@ -2177,6 +2175,7 @@ void r100_bm_disable(struct radeon_device *rdev) { u32 tmp; + u16 tmp16; /* disable bus mastering */ tmp = RREG32(R_000030_BUS_CNTL); @@ -2187,8 +2186,8 @@ WREG32(R_000030_BUS_CNTL, (tmp & 0xFFFFFFFF) | 0x00000040); tmp = RREG32(RADEON_BUS_CNTL); mdelay(1); - pci_read_config_word(rdev->pdev, 0x4, (u16*)&tmp); - pci_write_config_word(rdev->pdev, 0x4, tmp & 0xFFFB); + pci_read_config_word(rdev->pdev, 0x4, &tmp16); + pci_write_config_word(rdev->pdev, 0x4, tmp16 & 0xFFFB); mdelay(1); } --- linux-3.2.0.orig/drivers/gpu/drm/radeon/radeon_irq_kms.c +++ linux-3.2.0/drivers/gpu/drm/radeon/radeon_irq_kms.c @@ -134,9 +134,21 @@ /* Dell RS690 only seems to work with MSIs. */ if ((rdev->pdev->device == 0x791f) && (rdev->pdev->subsystem_vendor == 0x1028) && + (rdev->pdev->subsystem_device == 0x01fc)) + return true; + + /* Dell RS690 only seems to work with MSIs. */ + if ((rdev->pdev->device == 0x791f) && + (rdev->pdev->subsystem_vendor == 0x1028) && (rdev->pdev->subsystem_device == 0x01fd)) return true; + /* RV515 seems to have MSI issues where it loses + * MSI rearms occasionally. This leads to lockups and freezes. + * disable it by default. + */ + if (rdev->family == CHIP_RV515) + return false; if (rdev->flags & RADEON_IS_IGP) { /* APUs work fine with MSIs */ if (rdev->family >= CHIP_PALM) --- linux-3.2.0.orig/drivers/gpu/drm/radeon/radeon_atombios.c +++ linux-3.2.0/drivers/gpu/drm/radeon/radeon_atombios.c @@ -442,6 +442,20 @@ struct radeon_device *rdev = dev->dev_private; *i2c_bus = radeon_lookup_i2c_gpio(rdev, 0x93); } + + /* Fujitsu D3003-S2 board lists DVI-I as DVI-D and VGA */ + if ((dev->pdev->device == 0x9802) && + (dev->pdev->subsystem_vendor == 0x1734) && + (dev->pdev->subsystem_device == 0x11bd)) { + if (*connector_type == DRM_MODE_CONNECTOR_VGA) { + *connector_type = DRM_MODE_CONNECTOR_DVII; + *line_mux = 0x3103; + } else if (*connector_type == DRM_MODE_CONNECTOR_DVID) { + *connector_type = DRM_MODE_CONNECTOR_DVII; + } + } + + return true; } --- linux-3.2.0.orig/drivers/gpu/drm/radeon/r600_hdmi.c +++ linux-3.2.0/drivers/gpu/drm/radeon/r600_hdmi.c @@ -196,6 +196,13 @@ frame[0xD] = (right_bar >> 8); r600_hdmi_infoframe_checksum(0x82, 0x02, 0x0D, frame); + /* Our header values (type, version, length) should be alright, Intel + * is using the same. Checksum function also seems to be OK, it works + * fine for audio infoframe. However calculated value is always lower + * by 2 in comparison to fglrx. It breaks displaying anything in case + * of TVs that strictly check the checksum. Hack it manually here to + * workaround this issue. */ + frame[0x0] += 2; WREG32(offset+R600_HDMI_VIDEOINFOFRAME_0, frame[0x0] | (frame[0x1] << 8) | (frame[0x2] << 16) | (frame[0x3] << 24)); --- linux-3.2.0.orig/drivers/gpu/drm/radeon/radeon_cursor.c +++ linux-3.2.0/drivers/gpu/drm/radeon/radeon_cursor.c @@ -151,7 +151,9 @@ uint32_t height) { struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); + struct radeon_device *rdev = crtc->dev->dev_private; struct drm_gem_object *obj; + struct radeon_bo *robj; uint64_t gpu_addr; int ret; @@ -173,7 +175,15 @@ return -ENOENT; } - ret = radeon_gem_object_pin(obj, RADEON_GEM_DOMAIN_VRAM, &gpu_addr); + robj = gem_to_radeon_bo(obj); + ret = radeon_bo_reserve(robj, false); + if (unlikely(ret != 0)) + goto fail; + /* Only 27 bit offset for legacy cursor */ + ret = radeon_bo_pin_restricted(robj, RADEON_GEM_DOMAIN_VRAM, + ASIC_IS_AVIVO(rdev) ? 0 : 1 << 27, + &gpu_addr); + radeon_bo_unreserve(robj); if (ret) goto fail; @@ -181,7 +191,6 @@ radeon_crtc->cursor_height = height; radeon_lock_cursor(crtc, true); - /* XXX only 27 bit offset for legacy cursor */ radeon_set_cursor(crtc, obj, gpu_addr); radeon_show_cursor(crtc); radeon_lock_cursor(crtc, false); --- linux-3.2.0.orig/drivers/gpu/drm/radeon/radeon_object.h +++ linux-3.2.0/drivers/gpu/drm/radeon/radeon_object.h @@ -108,6 +108,8 @@ extern void radeon_bo_kunmap(struct radeon_bo *bo); extern void radeon_bo_unref(struct radeon_bo **bo); extern int radeon_bo_pin(struct radeon_bo *bo, u32 domain, u64 *gpu_addr); +extern int radeon_bo_pin_restricted(struct radeon_bo *bo, u32 domain, + u64 max_offset, u64 *gpu_addr); extern int radeon_bo_unpin(struct radeon_bo *bo); extern int radeon_bo_evict_vram(struct radeon_device *rdev); extern void radeon_bo_force_delete(struct radeon_device *rdev); --- linux-3.2.0.orig/drivers/gpu/drm/radeon/atombios_encoders.c +++ linux-3.2.0/drivers/gpu/drm/radeon/atombios_encoders.c @@ -246,6 +246,10 @@ if (!atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev)) return; + /* some R4xx chips have the wrong frev */ + if (rdev->family <= CHIP_RV410) + frev = 1; + switch (frev) { case 1: switch (crev) { @@ -1352,7 +1356,8 @@ switch (mode) { case DRM_MODE_DPMS_ON: /* some early dce3.2 boards have a bug in their transmitter control table */ - if ((rdev->family == CHIP_RV710) || (rdev->family == CHIP_RV730)) + if ((rdev->family == CHIP_RV710) || (rdev->family == CHIP_RV730) || + ASIC_IS_DCE41(rdev) || ASIC_IS_DCE5(rdev)) atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_ENABLE, 0, 0); else atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_ENABLE_OUTPUT, 0, 0); @@ -1362,8 +1367,6 @@ ATOM_TRANSMITTER_ACTION_POWER_ON); radeon_dig_connector->edp_on = true; } - if (ASIC_IS_DCE4(rdev)) - atombios_dig_encoder_setup(encoder, ATOM_ENCODER_CMD_DP_VIDEO_OFF, 0); radeon_dp_link_train(encoder, connector); if (ASIC_IS_DCE4(rdev)) atombios_dig_encoder_setup(encoder, ATOM_ENCODER_CMD_DP_VIDEO_ON, 0); @@ -1374,7 +1377,10 @@ case DRM_MODE_DPMS_STANDBY: case DRM_MODE_DPMS_SUSPEND: case DRM_MODE_DPMS_OFF: - atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_DISABLE_OUTPUT, 0, 0); + if (ASIC_IS_DCE41(rdev) || ASIC_IS_DCE5(rdev)) + atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_DISABLE, 0, 0); + else + atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_DISABLE_OUTPUT, 0, 0); if (ENCODER_MODE_IS_DP(atombios_get_encoder_mode(encoder)) && connector) { if (ASIC_IS_DCE4(rdev)) atombios_dig_encoder_setup(encoder, ATOM_ENCODER_CMD_DP_VIDEO_OFF, 0); @@ -1821,7 +1827,21 @@ case ENCODER_OBJECT_ID_INTERNAL_UNIPHY1: case ENCODER_OBJECT_ID_INTERNAL_UNIPHY2: case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_LVTMA: - if (ASIC_IS_DCE4(rdev)) { + if (ASIC_IS_DCE41(rdev) || ASIC_IS_DCE5(rdev)) { + struct drm_connector *connector = radeon_get_connector_for_encoder(encoder); + struct radeon_encoder_atom_dig *dig = radeon_encoder->enc_priv; + + if (!connector) + dig->panel_mode = DP_PANEL_MODE_EXTERNAL_DP_MODE; + else + dig->panel_mode = radeon_dp_get_panel_mode(encoder, connector); + + /* setup and enable the encoder */ + atombios_dig_encoder_setup(encoder, ATOM_ENCODER_CMD_SETUP, 0); + atombios_dig_encoder_setup(encoder, + ATOM_ENCODER_CMD_SETUP_PANEL_MODE, + dig->panel_mode); + } else if (ASIC_IS_DCE4(rdev)) { /* disable the transmitter */ atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_DISABLE, 0, 0); /* setup and enable the encoder */ --- linux-3.2.0.orig/drivers/gpu/drm/nouveau/nouveau_acpi.c +++ linux-3.2.0/drivers/gpu/drm/nouveau/nouveau_acpi.c @@ -18,12 +18,6 @@ #include -#define NOUVEAU_DSM_SUPPORTED 0x00 -#define NOUVEAU_DSM_SUPPORTED_FUNCTIONS 0x00 - -#define NOUVEAU_DSM_ACTIVE 0x01 -#define NOUVEAU_DSM_ACTIVE_QUERY 0x00 - #define NOUVEAU_DSM_LED 0x02 #define NOUVEAU_DSM_LED_STATE 0x00 #define NOUVEAU_DSM_LED_OFF 0x10 @@ -35,6 +29,9 @@ #define NOUVEAU_DSM_POWER_SPEED 0x01 #define NOUVEAU_DSM_POWER_STAMINA 0x02 +#define NOUVEAU_DSM_OPTIMUS_FN 0x1A +#define NOUVEAU_DSM_OPTIMUS_ARGS 0x03000001 + static struct nouveau_dsm_priv { bool dsm_detected; bool optimus_detected; @@ -61,7 +58,8 @@ struct acpi_object_list input; union acpi_object params[4]; union acpi_object *obj; - int err; + int i, err; + char args_buff[4]; input.count = 4; input.pointer = params; @@ -73,7 +71,11 @@ params[2].type = ACPI_TYPE_INTEGER; params[2].integer.value = func; params[3].type = ACPI_TYPE_BUFFER; - params[3].buffer.length = 0; + params[3].buffer.length = 4; + /* ACPI is little endian, AABBCCDD becomes {DD,CC,BB,AA} */ + for (i = 0; i < 4; i++) + args_buff[i] = (arg >> i * 8) & 0xFF; + params[3].buffer.pointer = args_buff; err = acpi_evaluate_object(handle, "_DSM", &input, &output); if (err) { @@ -148,6 +150,23 @@ return 0; } +/* Returns 1 if a DSM function is usable and 0 otherwise */ +static int nouveau_test_dsm(acpi_handle test_handle, + int (*dsm_func)(acpi_handle, int, int, uint32_t *), + int sfnc) +{ + u32 result = 0; + + /* Function 0 returns a Buffer containing available functions. The args + * parameter is ignored for function 0, so just put 0 in it */ + if (dsm_func(test_handle, 0, 0, &result)) + return 0; + + /* ACPI Spec v4 9.14.1: if bit 0 is zero, no function is supported. If + * the n-th bit is enabled, function n is supported */ + return result & 1 && result & (1 << sfnc); +} + static int nouveau_dsm_switch_mux(acpi_handle handle, int mux_id) { mxm_wmi_call_mxmx(mux_id == NOUVEAU_DSM_LED_STAMINA ? MXM_MXDS_ADAPTER_IGD : MXM_MXDS_ADAPTER_0); @@ -168,6 +187,10 @@ static int nouveau_dsm_switchto(enum vga_switcheroo_client_id id) { + /* perhaps the _DSM functions are mutually exclusive, but prepare for + * the future */ + if (!nouveau_dsm_priv.dsm_detected && nouveau_dsm_priv.optimus_detected) + return 0; if (id == VGA_SWITCHEROO_IGD) return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_STAMINA); else @@ -180,6 +203,11 @@ if (id == VGA_SWITCHEROO_IGD) return 0; + /* Optimus laptops have the card already disabled in + * nouveau_switcheroo_set_state */ + if (!nouveau_dsm_priv.dsm_detected && nouveau_dsm_priv.optimus_detected) + return 0; + return nouveau_dsm_set_discrete_state(nouveau_dsm_priv.dhandle, state); } @@ -212,8 +240,7 @@ { acpi_handle dhandle, nvidia_handle; acpi_status status; - int ret, retval = 0; - uint32_t result; + int retval = 0; dhandle = DEVICE_ACPI_HANDLE(&pdev->dev); if (!dhandle) @@ -224,13 +251,11 @@ return false; } - ret = nouveau_dsm(dhandle, NOUVEAU_DSM_SUPPORTED, - NOUVEAU_DSM_SUPPORTED_FUNCTIONS, &result); - if (ret == 0) + if (nouveau_test_dsm(dhandle, nouveau_dsm, NOUVEAU_DSM_POWER)) retval |= NOUVEAU_DSM_HAS_MUX; - ret = nouveau_optimus_dsm(dhandle, 0, 0, &result); - if (ret == 0) + if (nouveau_test_dsm(dhandle, nouveau_optimus_dsm, + NOUVEAU_DSM_OPTIMUS_FN)) retval |= NOUVEAU_DSM_HAS_OPT; if (retval) @@ -245,7 +270,7 @@ struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name}; struct pci_dev *pdev = NULL; int has_dsm = 0; - int has_optimus; + int has_optimus = 0; int vga_count = 0; bool guid_valid; int retval; @@ -269,15 +294,22 @@ } if (vga_count == 2 && has_dsm && guid_valid) { - acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME, &buffer); + acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME, + &buffer); printk(KERN_INFO "VGA switcheroo: detected DSM switching method %s handle\n", - acpi_method_name); + acpi_method_name); nouveau_dsm_priv.dsm_detected = true; ret = true; } - if (has_optimus == 1) + if (has_optimus == 1) { + acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME, + &buffer); + printk(KERN_INFO "VGA switcheroo: detected Optimus DSM method %s handle\n", + acpi_method_name); nouveau_dsm_priv.optimus_detected = true; + ret = true; + } return ret; } @@ -293,6 +325,17 @@ vga_switcheroo_register_handler(&nouveau_dsm_handler); } +/* Must be called for Optimus models before the card can be turned off */ +void nouveau_switcheroo_optimus_dsm(void) +{ + u32 result = 0; + if (!nouveau_dsm_priv.optimus_detected) + return; + + nouveau_optimus_dsm(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_OPTIMUS_FN, + NOUVEAU_DSM_OPTIMUS_ARGS, &result); +} + void nouveau_unregister_dsm_handler(void) { vga_switcheroo_unregister_handler(); --- linux-3.2.0.orig/drivers/gpu/drm/nouveau/nouveau_drv.h +++ linux-3.2.0/drivers/gpu/drm/nouveau/nouveau_drv.h @@ -1041,12 +1041,14 @@ #if defined(CONFIG_ACPI) void nouveau_register_dsm_handler(void); void nouveau_unregister_dsm_handler(void); +void nouveau_switcheroo_optimus_dsm(void); int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len); bool nouveau_acpi_rom_supported(struct pci_dev *pdev); int nouveau_acpi_edid(struct drm_device *, struct drm_connector *); #else static inline void nouveau_register_dsm_handler(void) {} static inline void nouveau_unregister_dsm_handler(void) {} +static inline void nouveau_switcheroo_optimus_dsm(void) {} static inline bool nouveau_acpi_rom_supported(struct pci_dev *pdev) { return false; } static inline int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len) { return -EINVAL; } static inline int nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector) { return -EINVAL; } --- linux-3.2.0.orig/drivers/gpu/drm/nouveau/nouveau_state.c +++ linux-3.2.0/drivers/gpu/drm/nouveau/nouveau_state.c @@ -525,6 +525,7 @@ printk(KERN_ERR "VGA switcheroo: switched nouveau off\n"); dev->switch_power_state = DRM_SWITCH_POWER_CHANGING; drm_kms_helper_poll_disable(dev); + nouveau_switcheroo_optimus_dsm(); nouveau_pci_suspend(pdev, pmm); dev->switch_power_state = DRM_SWITCH_POWER_OFF; } --- linux-3.2.0.orig/drivers/gpu/drm/nouveau/nouveau_gem.c +++ linux-3.2.0/drivers/gpu/drm/nouveau/nouveau_gem.c @@ -380,6 +380,25 @@ } static int +validate_sync(struct nouveau_channel *chan, struct nouveau_bo *nvbo) +{ + struct nouveau_fence *fence = NULL; + int ret = 0; + + spin_lock(&nvbo->bo.bdev->fence_lock); + if (nvbo->bo.sync_obj) + fence = nouveau_fence_ref(nvbo->bo.sync_obj); + spin_unlock(&nvbo->bo.bdev->fence_lock); + + if (fence) { + ret = nouveau_fence_sync(fence, chan); + nouveau_fence_unref(&fence); + } + + return ret; +} + +static int validate_list(struct nouveau_channel *chan, struct list_head *list, struct drm_nouveau_gem_pushbuf_bo *pbbo, uint64_t user_pbbo_ptr) { @@ -393,7 +412,7 @@ list_for_each_entry(nvbo, list, entry) { struct drm_nouveau_gem_pushbuf_bo *b = &pbbo[nvbo->pbbo_index]; - ret = nouveau_fence_sync(nvbo->bo.sync_obj, chan); + ret = validate_sync(chan, nvbo); if (unlikely(ret)) { NV_ERROR(dev, "fail pre-validate sync\n"); return ret; @@ -416,7 +435,7 @@ return ret; } - ret = nouveau_fence_sync(nvbo->bo.sync_obj, chan); + ret = validate_sync(chan, nvbo); if (unlikely(ret)) { NV_ERROR(dev, "fail post-validate sync\n"); return ret; --- linux-3.2.0.orig/drivers/gpu/drm/nouveau/nouveau_bo.c +++ linux-3.2.0/drivers/gpu/drm/nouveau/nouveau_bo.c @@ -1024,7 +1024,7 @@ nvbo->placement.fpfn = 0; nvbo->placement.lpfn = dev_priv->fb_mappable_pages; - nouveau_bo_placement_set(nvbo, TTM_PL_VRAM, 0); + nouveau_bo_placement_set(nvbo, TTM_PL_FLAG_VRAM, 0); return nouveau_bo_validate(nvbo, false, true, false); } --- linux-3.2.0.orig/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c +++ linux-3.2.0/drivers/gpu/drm/vmwgfx/vmwgfx_kms.c @@ -378,7 +378,7 @@ unsigned int *handle) { if (handle) - handle = 0; + *handle = 0; return 0; } --- linux-3.2.0.orig/drivers/media/video/v4l2-ioctl.c +++ linux-3.2.0/drivers/media/video/v4l2-ioctl.c @@ -2226,6 +2226,10 @@ struct v4l2_ext_controls *ctrls = parg; if (ctrls->count != 0) { + if (ctrls->count > V4L2_CID_MAX_CTRLS) { + ret = -EINVAL; + break; + } *user_ptr = (void __user *)ctrls->controls; *kernel_ptr = (void *)&ctrls->controls; *array_size = sizeof(struct v4l2_ext_control) --- linux-3.2.0.orig/drivers/media/video/uvc/uvc_v4l2.c +++ linux-3.2.0/drivers/media/video/uvc/uvc_v4l2.c @@ -58,6 +58,15 @@ break; case V4L2_CTRL_TYPE_MENU: + /* Prevent excessive memory consumption, as well as integer + * overflows. + */ + if (xmap->menu_count == 0 || + xmap->menu_count > UVC_MAX_CONTROL_MENU_ENTRIES) { + ret = -EINVAL; + goto done; + } + size = xmap->menu_count * sizeof(*map->menu_info); map->menu_info = kmalloc(size, GFP_KERNEL); if (map->menu_info == NULL) { @@ -680,7 +689,7 @@ break; } pin = iterm->id; - } else if (pin < selector->bNrInPins) { + } else if (index < selector->bNrInPins) { pin = selector->baSourceID[index]; list_for_each_entry(iterm, &chain->entities, chain) { if (!UVC_ENTITY_IS_ITERM(iterm)) --- linux-3.2.0.orig/drivers/media/video/uvc/uvcvideo.h +++ linux-3.2.0/drivers/media/video/uvc/uvcvideo.h @@ -113,6 +113,7 @@ /* Maximum allowed number of control mappings per device */ #define UVC_MAX_CONTROL_MAPPINGS 1024 +#define UVC_MAX_CONTROL_MENU_ENTRIES 32 /* Devices quirks */ #define UVC_QUIRK_STATUS_INTERVAL 0x00000001 --- linux-3.2.0.orig/drivers/media/video/s5p-fimc/fimc-capture.c +++ linux-3.2.0/drivers/media/video/s5p-fimc/fimc-capture.c @@ -1304,7 +1304,7 @@ fimc_capture_try_crop(ctx, r, crop->pad); if (crop->which == V4L2_SUBDEV_FORMAT_TRY) { - mutex_lock(&fimc->lock); + mutex_unlock(&fimc->lock); *v4l2_subdev_get_try_crop(fh, crop->pad) = *r; return 0; } --- linux-3.2.0.orig/drivers/media/video/hdpvr/hdpvr-video.c +++ linux-3.2.0/drivers/media/video/hdpvr/hdpvr-video.c @@ -283,12 +283,13 @@ hdpvr_config_call(dev, CTRL_START_STREAMING_VALUE, 0x00); + dev->status = STATUS_STREAMING; + INIT_WORK(&dev->worker, hdpvr_transmit_buffers); queue_work(dev->workqueue, &dev->worker); v4l2_dbg(MSG_BUFFER, hdpvr_debug, &dev->v4l2_dev, "streaming started\n"); - dev->status = STATUS_STREAMING; return 0; } --- linux-3.2.0.orig/drivers/media/video/cx23885/cx23885-dvb.c +++ linux-3.2.0/drivers/media/video/cx23885/cx23885-dvb.c @@ -940,6 +940,11 @@ fe = dvb_attach(xc4000_attach, fe0->dvb.frontend, &dev->i2c_bus[1].i2c_adap, &cfg); + if (!fe) { + printk(KERN_ERR "%s/2: xc4000 attach failed\n", + dev->name); + goto frontend_detach; + } } break; case CX23885_BOARD_TBS_6920: --- linux-3.2.0.orig/drivers/media/video/omap3isp/ispccdc.c +++ linux-3.2.0/drivers/media/video/omap3isp/ispccdc.c @@ -1406,8 +1406,7 @@ static void ccdc_hs_vs_isr(struct isp_ccdc_device *ccdc) { - struct isp_pipeline *pipe = - to_isp_pipeline(&ccdc->video_out.video.entity); + struct isp_pipeline *pipe = to_isp_pipeline(&ccdc->subdev.entity); struct video_device *vdev = ccdc->subdev.devnode; struct v4l2_event event; --- linux-3.2.0.orig/drivers/media/video/marvell-ccic/mmp-driver.c +++ linux-3.2.0/drivers/media/video/marvell-ccic/mmp-driver.c @@ -175,7 +175,6 @@ INIT_LIST_HEAD(&cam->devlist); mcam = &cam->mcam; - mcam->platform = MHP_Armada610; mcam->plat_power_up = mmpcam_power_up; mcam->plat_power_down = mmpcam_power_down; mcam->dev = &pdev->dev; --- linux-3.2.0.orig/drivers/media/video/cx88/cx88-cards.c +++ linux-3.2.0/drivers/media/video/cx88/cx88-cards.c @@ -1573,8 +1573,8 @@ .name = "Pinnacle Hybrid PCTV", .tuner_type = TUNER_XC2028, .tuner_addr = 0x61, - .radio_type = TUNER_XC2028, - .radio_addr = 0x61, + .radio_type = UNSET, + .radio_addr = ADDR_UNSET, .input = { { .type = CX88_VMUX_TELEVISION, .vmux = 0, @@ -1611,8 +1611,8 @@ .name = "Leadtek TV2000 XP Global", .tuner_type = TUNER_XC2028, .tuner_addr = 0x61, - .radio_type = TUNER_XC2028, - .radio_addr = 0x61, + .radio_type = UNSET, + .radio_addr = ADDR_UNSET, .input = { { .type = CX88_VMUX_TELEVISION, .vmux = 0, @@ -2043,8 +2043,8 @@ .name = "Terratec Cinergy HT PCI MKII", .tuner_type = TUNER_XC2028, .tuner_addr = 0x61, - .radio_type = TUNER_XC2028, - .radio_addr = 0x61, + .radio_type = UNSET, + .radio_addr = ADDR_UNSET, .input = { { .type = CX88_VMUX_TELEVISION, .vmux = 0, @@ -2082,9 +2082,9 @@ [CX88_BOARD_WINFAST_DTV1800H] = { .name = "Leadtek WinFast DTV1800 Hybrid", .tuner_type = TUNER_XC2028, - .radio_type = TUNER_XC2028, + .radio_type = UNSET, .tuner_addr = 0x61, - .radio_addr = 0x61, + .radio_addr = ADDR_UNSET, /* * GPIO setting * @@ -2123,9 +2123,9 @@ [CX88_BOARD_WINFAST_DTV1800H_XC4000] = { .name = "Leadtek WinFast DTV1800 H (XC4000)", .tuner_type = TUNER_XC4000, - .radio_type = TUNER_XC4000, + .radio_type = UNSET, .tuner_addr = 0x61, - .radio_addr = 0x61, + .radio_addr = ADDR_UNSET, /* * GPIO setting * @@ -2164,9 +2164,9 @@ [CX88_BOARD_WINFAST_DTV2000H_PLUS] = { .name = "Leadtek WinFast DTV2000 H PLUS", .tuner_type = TUNER_XC4000, - .radio_type = TUNER_XC4000, + .radio_type = UNSET, .tuner_addr = 0x61, - .radio_addr = 0x61, + .radio_addr = ADDR_UNSET, /* * GPIO * 2: 1: mute audio --- linux-3.2.0.orig/drivers/media/video/pvrusb2/pvrusb2-devattr.c +++ linux-3.2.0/drivers/media/video/pvrusb2/pvrusb2-devattr.c @@ -320,7 +320,17 @@ .probe_tuner = TDA829X_DONT_PROBE, }; +static struct tda18271_std_map hauppauge_tda18271_dvbt_std_map = { + .dvbt_6 = { .if_freq = 3300, .agc_mode = 3, .std = 4, + .if_lvl = 1, .rfagc_top = 0x37, }, + .dvbt_7 = { .if_freq = 3800, .agc_mode = 3, .std = 5, + .if_lvl = 1, .rfagc_top = 0x37, }, + .dvbt_8 = { .if_freq = 4300, .agc_mode = 3, .std = 6, + .if_lvl = 1, .rfagc_top = 0x37, }, +}; + static struct tda18271_config hauppauge_tda18271_dvb_config = { + .std_map = &hauppauge_tda18271_dvbt_std_map, .gate = TDA18271_GATE_ANALOG, .output_opt = TDA18271_OUTPUT_LT_OFF, }; --- linux-3.2.0.orig/drivers/media/dvb/siano/smsusb.c +++ linux-3.2.0/drivers/media/dvb/siano/smsusb.c @@ -542,6 +542,8 @@ .driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM }, { USB_DEVICE(0x2040, 0xc090), .driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM }, + { USB_DEVICE(0x2040, 0xc0a0), + .driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM }, { } /* Terminating entry */ }; --- linux-3.2.0.orig/drivers/media/dvb/dvb-usb/mxl111sf.c +++ linux-3.2.0/drivers/media/dvb/dvb-usb/mxl111sf.c @@ -351,15 +351,13 @@ adap_state->ep6_clockphase, 0, 0); mxl_fail(ret); +#if 0 } else { ret = mxl111sf_disable_656_port(state); mxl_fail(ret); +#endif } - mxl111sf_read_reg(state, 0x12, &tmp); - tmp &= ~0x04; - mxl111sf_write_reg(state, 0x12, tmp); - return ret; } --- linux-3.2.0.orig/drivers/media/dvb/frontends/lgdt330x.c +++ linux-3.2.0/drivers/media/dvb/frontends/lgdt330x.c @@ -104,8 +104,8 @@ * then reads the data returned for (len) bytes. */ -static u8 i2c_read_demod_bytes (struct lgdt330x_state* state, - enum I2C_REG reg, u8* buf, int len) +static int i2c_read_demod_bytes(struct lgdt330x_state *state, + enum I2C_REG reg, u8 *buf, int len) { u8 wr [] = { reg }; struct i2c_msg msg [] = { @@ -118,6 +118,8 @@ ret = i2c_transfer(state->i2c, msg, 2); if (ret != 2) { printk(KERN_WARNING "lgdt330x: %s: addr 0x%02x select 0x%02x error (ret == %i)\n", __func__, state->config->demod_address, reg, ret); + if (ret >= 0) + ret = -EIO; } else { ret = 0; } --- linux-3.2.0.orig/drivers/media/dvb/frontends/drxk_hard.c +++ linux-3.2.0/drivers/media/dvb/frontends/drxk_hard.c @@ -1523,8 +1523,10 @@ dprintk(1, "\n"); if ((cmd == 0) || ((parameterLen > 0) && (parameter == NULL)) || - ((resultLen > 0) && (result == NULL))) - goto error; + ((resultLen > 0) && (result == NULL))) { + printk(KERN_ERR "drxk: Error %d on %s\n", status, __func__); + return status; + } mutex_lock(&state->mutex); --- linux-3.2.0.orig/drivers/media/rc/nuvoton-cir.c +++ linux-3.2.0/drivers/media/rc/nuvoton-cir.c @@ -1021,24 +1021,6 @@ spin_lock_init(&nvt->nvt_lock); spin_lock_init(&nvt->tx.lock); - ret = -EBUSY; - /* now claim resources */ - if (!request_region(nvt->cir_addr, - CIR_IOREG_LENGTH, NVT_DRIVER_NAME)) - goto failure; - - if (request_irq(nvt->cir_irq, nvt_cir_isr, IRQF_SHARED, - NVT_DRIVER_NAME, (void *)nvt)) - goto failure; - - if (!request_region(nvt->cir_wake_addr, - CIR_IOREG_LENGTH, NVT_DRIVER_NAME)) - goto failure; - - if (request_irq(nvt->cir_wake_irq, nvt_cir_wake_isr, IRQF_SHARED, - NVT_DRIVER_NAME, (void *)nvt)) - goto failure; - pnp_set_drvdata(pdev, nvt); nvt->pdev = pdev; @@ -1085,6 +1067,24 @@ rdev->tx_resolution = XYZ; #endif + ret = -EBUSY; + /* now claim resources */ + if (!request_region(nvt->cir_addr, + CIR_IOREG_LENGTH, NVT_DRIVER_NAME)) + goto failure; + + if (request_irq(nvt->cir_irq, nvt_cir_isr, IRQF_SHARED, + NVT_DRIVER_NAME, (void *)nvt)) + goto failure; + + if (!request_region(nvt->cir_wake_addr, + CIR_IOREG_LENGTH, NVT_DRIVER_NAME)) + goto failure; + + if (request_irq(nvt->cir_wake_irq, nvt_cir_wake_isr, IRQF_SHARED, + NVT_DRIVER_NAME, (void *)nvt)) + goto failure; + ret = rc_register_device(rdev); if (ret) goto failure; --- linux-3.2.0.orig/drivers/media/rc/fintek-cir.c +++ linux-3.2.0/drivers/media/rc/fintek-cir.c @@ -504,16 +504,6 @@ spin_lock_init(&fintek->fintek_lock); - ret = -EBUSY; - /* now claim resources */ - if (!request_region(fintek->cir_addr, - fintek->cir_port_len, FINTEK_DRIVER_NAME)) - goto failure; - - if (request_irq(fintek->cir_irq, fintek_cir_isr, IRQF_SHARED, - FINTEK_DRIVER_NAME, (void *)fintek)) - goto failure; - pnp_set_drvdata(pdev, fintek); fintek->pdev = pdev; @@ -548,6 +538,16 @@ /* rx resolution is hardwired to 50us atm, 1, 25, 100 also possible */ rdev->rx_resolution = US_TO_NS(CIR_SAMPLE_PERIOD); + ret = -EBUSY; + /* now claim resources */ + if (!request_region(fintek->cir_addr, + fintek->cir_port_len, FINTEK_DRIVER_NAME)) + goto failure; + + if (request_irq(fintek->cir_irq, fintek_cir_isr, IRQF_SHARED, + FINTEK_DRIVER_NAME, (void *)fintek)) + goto failure; + ret = rc_register_device(rdev); if (ret) goto failure; --- linux-3.2.0.orig/drivers/media/rc/winbond-cir.c +++ linux-3.2.0/drivers/media/rc/winbond-cir.c @@ -991,39 +991,10 @@ "(w: 0x%lX, e: 0x%lX, s: 0x%lX, i: %u)\n", data->wbase, data->ebase, data->sbase, data->irq); - if (!request_region(data->wbase, WAKEUP_IOMEM_LEN, DRVNAME)) { - dev_err(dev, "Region 0x%lx-0x%lx already in use!\n", - data->wbase, data->wbase + WAKEUP_IOMEM_LEN - 1); - err = -EBUSY; - goto exit_free_data; - } - - if (!request_region(data->ebase, EHFUNC_IOMEM_LEN, DRVNAME)) { - dev_err(dev, "Region 0x%lx-0x%lx already in use!\n", - data->ebase, data->ebase + EHFUNC_IOMEM_LEN - 1); - err = -EBUSY; - goto exit_release_wbase; - } - - if (!request_region(data->sbase, SP_IOMEM_LEN, DRVNAME)) { - dev_err(dev, "Region 0x%lx-0x%lx already in use!\n", - data->sbase, data->sbase + SP_IOMEM_LEN - 1); - err = -EBUSY; - goto exit_release_ebase; - } - - err = request_irq(data->irq, wbcir_irq_handler, - IRQF_DISABLED, DRVNAME, device); - if (err) { - dev_err(dev, "Failed to claim IRQ %u\n", data->irq); - err = -EBUSY; - goto exit_release_sbase; - } - led_trigger_register_simple("cir-tx", &data->txtrigger); if (!data->txtrigger) { err = -ENOMEM; - goto exit_free_irq; + goto exit_free_data; } led_trigger_register_simple("cir-rx", &data->rxtrigger); @@ -1046,6 +1017,7 @@ goto exit_unregister_led; } + data->dev->driver_type = RC_DRIVER_IR_RAW; data->dev->driver_name = WBCIR_NAME; data->dev->input_name = WBCIR_NAME; data->dev->input_phys = "wbcir/cir0"; @@ -1061,9 +1033,38 @@ data->dev->priv = data; data->dev->dev.parent = &device->dev; + if (!request_region(data->wbase, WAKEUP_IOMEM_LEN, DRVNAME)) { + dev_err(dev, "Region 0x%lx-0x%lx already in use!\n", + data->wbase, data->wbase + WAKEUP_IOMEM_LEN - 1); + err = -EBUSY; + goto exit_free_rc; + } + + if (!request_region(data->ebase, EHFUNC_IOMEM_LEN, DRVNAME)) { + dev_err(dev, "Region 0x%lx-0x%lx already in use!\n", + data->ebase, data->ebase + EHFUNC_IOMEM_LEN - 1); + err = -EBUSY; + goto exit_release_wbase; + } + + if (!request_region(data->sbase, SP_IOMEM_LEN, DRVNAME)) { + dev_err(dev, "Region 0x%lx-0x%lx already in use!\n", + data->sbase, data->sbase + SP_IOMEM_LEN - 1); + err = -EBUSY; + goto exit_release_ebase; + } + + err = request_irq(data->irq, wbcir_irq_handler, + IRQF_DISABLED, DRVNAME, device); + if (err) { + dev_err(dev, "Failed to claim IRQ %u\n", data->irq); + err = -EBUSY; + goto exit_release_sbase; + } + err = rc_register_device(data->dev); if (err) - goto exit_free_rc; + goto exit_free_irq; device_init_wakeup(&device->dev, 1); @@ -1071,14 +1072,6 @@ return 0; -exit_free_rc: - rc_free_device(data->dev); -exit_unregister_led: - led_classdev_unregister(&data->led); -exit_unregister_rxtrigger: - led_trigger_unregister_simple(data->rxtrigger); -exit_unregister_txtrigger: - led_trigger_unregister_simple(data->txtrigger); exit_free_irq: free_irq(data->irq, device); exit_release_sbase: @@ -1087,6 +1080,14 @@ release_region(data->ebase, EHFUNC_IOMEM_LEN); exit_release_wbase: release_region(data->wbase, WAKEUP_IOMEM_LEN); +exit_free_rc: + rc_free_device(data->dev); +exit_unregister_led: + led_classdev_unregister(&data->led); +exit_unregister_rxtrigger: + led_trigger_unregister_simple(data->rxtrigger); +exit_unregister_txtrigger: + led_trigger_unregister_simple(data->txtrigger); exit_free_data: kfree(data); pnp_set_drvdata(device, NULL); --- linux-3.2.0.orig/drivers/media/rc/ene_ir.c +++ linux-3.2.0/drivers/media/rc/ene_ir.c @@ -1018,22 +1018,6 @@ spin_lock_init(&dev->hw_lock); - /* claim the resources */ - error = -EBUSY; - dev->hw_io = pnp_port_start(pnp_dev, 0); - if (!request_region(dev->hw_io, ENE_IO_SIZE, ENE_DRIVER_NAME)) { - dev->hw_io = -1; - dev->irq = -1; - goto error; - } - - dev->irq = pnp_irq(pnp_dev, 0); - if (request_irq(dev->irq, ene_isr, - IRQF_SHARED, ENE_DRIVER_NAME, (void *)dev)) { - dev->irq = -1; - goto error; - } - pnp_set_drvdata(pnp_dev, dev); dev->pnp_dev = pnp_dev; @@ -1086,6 +1070,22 @@ device_set_wakeup_capable(&pnp_dev->dev, true); device_set_wakeup_enable(&pnp_dev->dev, true); + /* claim the resources */ + error = -EBUSY; + dev->hw_io = pnp_port_start(pnp_dev, 0); + if (!request_region(dev->hw_io, ENE_IO_SIZE, ENE_DRIVER_NAME)) { + dev->hw_io = -1; + dev->irq = -1; + goto error; + } + + dev->irq = pnp_irq(pnp_dev, 0); + if (request_irq(dev->irq, ene_isr, + IRQF_SHARED, ENE_DRIVER_NAME, (void *)dev)) { + dev->irq = -1; + goto error; + } + error = rc_register_device(rdev); if (error < 0) goto error; --- linux-3.2.0.orig/drivers/media/rc/imon.c +++ linux-3.2.0/drivers/media/rc/imon.c @@ -47,7 +47,7 @@ #define MOD_AUTHOR "Jarod Wilson " #define MOD_DESC "Driver for SoundGraph iMON MultiMedia IR/Display" #define MOD_NAME "imon" -#define MOD_VERSION "0.9.3" +#define MOD_VERSION "0.9.4" #define DISPLAY_MINOR_BASE 144 #define DEVICE_NAME "lcd%d" @@ -1658,9 +1658,17 @@ return; ictx = (struct imon_context *)urb->context; - if (!ictx || !ictx->dev_present_intf0) + if (!ictx) return; + /* + * if we get a callback before we're done configuring the hardware, we + * can't yet process the data, as there's nowhere to send it, but we + * still need to submit a new rx URB to avoid wedging the hardware + */ + if (!ictx->dev_present_intf0) + goto out; + switch (urb->status) { case -ENOENT: /* usbcore unlink successful! */ return; @@ -1678,6 +1686,7 @@ break; } +out: usb_submit_urb(ictx->rx_urb_intf0, GFP_ATOMIC); } @@ -1690,9 +1699,17 @@ return; ictx = (struct imon_context *)urb->context; - if (!ictx || !ictx->dev_present_intf1) + if (!ictx) return; + /* + * if we get a callback before we're done configuring the hardware, we + * can't yet process the data, as there's nowhere to send it, but we + * still need to submit a new rx URB to avoid wedging the hardware + */ + if (!ictx->dev_present_intf1) + goto out; + switch (urb->status) { case -ENOENT: /* usbcore unlink successful! */ return; @@ -1710,6 +1727,7 @@ break; } +out: usb_submit_urb(ictx->rx_urb_intf1, GFP_ATOMIC); } @@ -2242,7 +2260,7 @@ mutex_unlock(&ictx->lock); usb_free_urb(rx_urb); rx_urb_alloc_failed: - dev_err(ictx->dev, "unable to initialize intf0, err %d\n", ret); + dev_err(ictx->dev, "unable to initialize intf1, err %d\n", ret); return NULL; } --- linux-3.2.0.orig/drivers/media/rc/ite-cir.c +++ linux-3.2.0/drivers/media/rc/ite-cir.c @@ -1515,16 +1515,6 @@ /* initialize raw event */ init_ir_raw_event(&itdev->rawir); - ret = -EBUSY; - /* now claim resources */ - if (!request_region(itdev->cir_addr, - dev_desc->io_region_size, ITE_DRIVER_NAME)) - goto failure; - - if (request_irq(itdev->cir_irq, ite_cir_isr, IRQF_SHARED, - ITE_DRIVER_NAME, (void *)itdev)) - goto failure; - /* set driver data into the pnp device */ pnp_set_drvdata(pdev, itdev); itdev->pdev = pdev; @@ -1600,6 +1590,16 @@ rdev->driver_name = ITE_DRIVER_NAME; rdev->map_name = RC_MAP_RC6_MCE; + ret = -EBUSY; + /* now claim resources */ + if (!request_region(itdev->cir_addr, + dev_desc->io_region_size, ITE_DRIVER_NAME)) + goto failure; + + if (request_irq(itdev->cir_irq, ite_cir_isr, IRQF_SHARED, + ITE_DRIVER_NAME, (void *)itdev)) + goto failure; + ret = rc_register_device(rdev); if (ret) goto failure; --- linux-3.2.0.orig/drivers/spi/Kconfig +++ linux-3.2.0/drivers/spi/Kconfig @@ -346,14 +346,14 @@ serial port. config SPI_TOPCLIFF_PCH - tristate "Intel EG20T PCH/OKI SEMICONDUCTOR ML7213 IOH SPI controller" + tristate "Intel EG20T PCH/LAPIS Semicon IOH(ML7213/ML7223/ML7831) SPI" depends on PCI help SPI driver for the Topcliff PCH (Platform Controller Hub) SPI bus used in some x86 embedded processors. - This driver also supports the ML7213, a companion chip for the - Atom E6xx series and compatible with the Intel EG20T PCH. + This driver also supports the ML7213/ML7223/ML7831, a companion chip + for the Atom E6xx series and compatible with the Intel EG20T PCH. config SPI_TXX9 tristate "Toshiba TXx9 SPI controller" --- linux-3.2.0.orig/drivers/spi/spi-topcliff-pch.c +++ linux-3.2.0/drivers/spi/spi-topcliff-pch.c @@ -95,16 +95,18 @@ #define PCH_CLOCK_HZ 50000000 #define PCH_MAX_SPBR 1023 -/* Definition for ML7213 by OKI SEMICONDUCTOR */ +/* Definition for ML7213/ML7831 by OKI SEMICONDUCTOR */ #define PCI_VENDOR_ID_ROHM 0x10DB #define PCI_DEVICE_ID_ML7213_SPI 0x802c #define PCI_DEVICE_ID_ML7223_SPI 0x800F +#define PCI_DEVICE_ID_ML7831_SPI 0x8816 /* * Set the number of SPI instance max * Intel EG20T PCH : 1ch * OKI SEMICONDUCTOR ML7213 IOH : 2ch * OKI SEMICONDUCTOR ML7223 IOH : 1ch + * OKI SEMICONDUCTOR ML7831 IOH : 1ch */ #define PCH_SPI_MAX_DEV 2 @@ -194,6 +196,7 @@ struct pch_spi_dma_ctrl dma; int use_dma; u8 irq_reg_sts; + int save_total_len; }; /** @@ -218,6 +221,7 @@ { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_GE_SPI), 1, }, { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7213_SPI), 2, }, { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7223_SPI), 1, }, + { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7831_SPI), 1, }, { } }; @@ -315,22 +319,23 @@ data->tx_index = tx_index; data->rx_index = rx_index; - } - - /* if transfer complete interrupt */ - if (reg_spsr_val & SPSR_FI_BIT) { - if ((tx_index == bpw_len) && (rx_index == tx_index)) { - /* disable interrupts */ - pch_spi_setclr_reg(data->master, PCH_SPCR, 0, PCH_ALL); - - /* transfer is completed; - inform pch_spi_process_messages */ - data->transfer_complete = true; - data->transfer_active = false; - wake_up(&data->wait); - } else { - dev_err(&data->master->dev, - "%s : Transfer is not completed", __func__); + /* if transfer complete interrupt */ + if (reg_spsr_val & SPSR_FI_BIT) { + if ((tx_index == bpw_len) && (rx_index == tx_index)) { + /* disable interrupts */ + pch_spi_setclr_reg(data->master, PCH_SPCR, 0, + PCH_ALL); + + /* transfer is completed; + inform pch_spi_process_messages */ + data->transfer_complete = true; + data->transfer_active = false; + wake_up(&data->wait); + } else { + dev_err(&data->master->dev, + "%s : Transfer is not completed", + __func__); + } } } } @@ -819,11 +824,13 @@ rx_dma_buf = data->dma.rx_buf_virt; for (j = 0; j < data->bpw_len; j++) *rx_buf++ = *rx_dma_buf++ & 0xFF; + data->cur_trans->rx_buf = rx_buf; } else { rx_sbuf = data->cur_trans->rx_buf; rx_dma_sbuf = data->dma.rx_buf_virt; for (j = 0; j < data->bpw_len; j++) *rx_sbuf++ = *rx_dma_sbuf++; + data->cur_trans->rx_buf = rx_sbuf; } } @@ -849,6 +856,9 @@ rtn = wait_event_interruptible_timeout(data->wait, data->transfer_complete, msecs_to_jiffies(2 * HZ)); + if (!rtn) + dev_err(&data->master->dev, + "%s wait-event timeout\n", __func__); dma_sync_sg_for_cpu(&data->master->dev, dma->sg_rx_p, dma->nent, DMA_FROM_DEVICE); @@ -920,7 +930,8 @@ dma_cap_set(DMA_SLAVE, mask); /* Get DMA's dev information */ - dma_dev = pci_get_bus_and_slot(2, PCI_DEVFN(12, 0)); + dma_dev = pci_get_bus_and_slot(data->board_dat->pdev->bus->number, + PCI_DEVFN(12, 0)); /* Set Tx DMA */ param = &dma->param_tx; @@ -984,6 +995,7 @@ int i; int size; int rem; + int head; unsigned long flags; struct pch_spi_dma_ctrl *dma; @@ -1012,6 +1024,11 @@ } data->bpw_len = data->cur_trans->len / (*bpw / 8); + if (data->bpw_len > PCH_BUF_SIZE) { + data->bpw_len = PCH_BUF_SIZE; + data->cur_trans->len -= PCH_BUF_SIZE; + } + /* copy Tx Data */ if (data->cur_trans->tx_buf != NULL) { if (*bpw == 8) { @@ -1026,10 +1043,17 @@ *tx_dma_sbuf++ = *tx_sbuf++; } } + + /* Calculate Rx parameter for DMA transmitting */ if (data->bpw_len > PCH_DMA_TRANS_SIZE) { - num = data->bpw_len / PCH_DMA_TRANS_SIZE + 1; + if (data->bpw_len % PCH_DMA_TRANS_SIZE) { + num = data->bpw_len / PCH_DMA_TRANS_SIZE + 1; + rem = data->bpw_len % PCH_DMA_TRANS_SIZE; + } else { + num = data->bpw_len / PCH_DMA_TRANS_SIZE; + rem = PCH_DMA_TRANS_SIZE; + } size = PCH_DMA_TRANS_SIZE; - rem = data->bpw_len % PCH_DMA_TRANS_SIZE; } else { num = 1; size = data->bpw_len; @@ -1089,15 +1113,23 @@ dma->nent = num; dma->desc_rx = desc_rx; - /* TX */ - if (data->bpw_len > PCH_DMA_TRANS_SIZE) { - num = data->bpw_len / PCH_DMA_TRANS_SIZE; + /* Calculate Tx parameter for DMA transmitting */ + if (data->bpw_len > PCH_MAX_FIFO_DEPTH) { + head = PCH_MAX_FIFO_DEPTH - PCH_DMA_TRANS_SIZE; + if (data->bpw_len % PCH_DMA_TRANS_SIZE > 4) { + num = data->bpw_len / PCH_DMA_TRANS_SIZE + 1; + rem = data->bpw_len % PCH_DMA_TRANS_SIZE - head; + } else { + num = data->bpw_len / PCH_DMA_TRANS_SIZE; + rem = data->bpw_len % PCH_DMA_TRANS_SIZE + + PCH_DMA_TRANS_SIZE - head; + } size = PCH_DMA_TRANS_SIZE; - rem = 16; } else { num = 1; size = data->bpw_len; rem = data->bpw_len; + head = 0; } dma->sg_tx_p = kzalloc(sizeof(struct scatterlist)*num, GFP_ATOMIC); @@ -1107,11 +1139,17 @@ for (i = 0; i < num; i++, sg++) { if (i == 0) { sg->offset = 0; + sg_set_page(sg, virt_to_page(dma->tx_buf_virt), size + head, + sg->offset); + sg_dma_len(sg) = size + head; + } else if (i == (num - 1)) { + sg->offset = head + size * i; + sg->offset = sg->offset * (*bpw / 8); sg_set_page(sg, virt_to_page(dma->tx_buf_virt), rem, sg->offset); sg_dma_len(sg) = rem; } else { - sg->offset = rem + size * (i - 1); + sg->offset = head + size * i; sg->offset = sg->offset * (*bpw / 8); sg_set_page(sg, virt_to_page(dma->tx_buf_virt), size, sg->offset); @@ -1199,6 +1237,7 @@ data->current_msg->spi->bits_per_word); pch_spi_writereg(data->master, PCH_SSNXCR, SSN_NO_CONTROL); do { + int cnt; /* If we are already processing a message get the next transfer structure from the message otherwise retrieve the 1st transfer request from the message. */ @@ -1218,11 +1257,28 @@ } spin_unlock(&data->lock); + if (!data->cur_trans->len) + goto out; + cnt = (data->cur_trans->len - 1) / PCH_BUF_SIZE + 1; + data->save_total_len = data->cur_trans->len; if (data->use_dma) { - pch_spi_handle_dma(data, &bpw); - if (!pch_spi_start_transfer(data)) - goto out; - pch_spi_copy_rx_data_for_dma(data, bpw); + int i; + char *save_rx_buf = data->cur_trans->rx_buf; + for (i = 0; i < cnt; i ++) { + pch_spi_handle_dma(data, &bpw); + if (!pch_spi_start_transfer(data)) { + data->transfer_complete = true; + data->current_msg->status = -EIO; + data->current_msg->complete + (data->current_msg->context); + data->bcurrent_msg_processing = false; + data->current_msg = NULL; + data->cur_trans = NULL; + goto out; + } + pch_spi_copy_rx_data_for_dma(data, bpw); + } + data->cur_trans->rx_buf = save_rx_buf; } else { pch_spi_set_tx(data, &bpw); pch_spi_set_ir(data); @@ -1233,6 +1289,7 @@ data->pkt_tx_buff = NULL; } /* increment message count */ + data->cur_trans->len = data->save_total_len; data->current_msg->actual_length += data->cur_trans->len; dev_dbg(&data->master->dev, @@ -1385,6 +1442,7 @@ master->num_chipselect = PCH_MAX_CS; master->setup = pch_spi_setup; master->transfer = pch_spi_transfer; + master->mode_bits = SPI_CPOL | SPI_CPHA | SPI_LSB_FIRST; data->board_dat = board_dat; data->plat_dev = plat_dev; @@ -1717,7 +1775,7 @@ #endif -static struct pci_driver pch_spi_pcidev = { +static struct pci_driver pch_spi_pcidev_driver = { .name = "pch_spi", .id_table = pch_spi_pcidev_id, .probe = pch_spi_probe, @@ -1733,7 +1791,7 @@ if (ret) return ret; - ret = pci_register_driver(&pch_spi_pcidev); + ret = pci_register_driver(&pch_spi_pcidev_driver); if (ret) return ret; @@ -1743,7 +1801,7 @@ static void __exit pch_spi_exit(void) { - pci_unregister_driver(&pch_spi_pcidev); + pci_unregister_driver(&pch_spi_pcidev_driver); platform_driver_unregister(&pch_spi_pd_driver); } module_exit(pch_spi_exit); --- linux-3.2.0.orig/drivers/spi/spi.c +++ linux-3.2.0/drivers/spi/spi.c @@ -319,7 +319,7 @@ } spi->master = master; - spi->dev.parent = dev; + spi->dev.parent = &master->dev; spi->dev.bus = &spi_bus_type; spi->dev.release = spidev_release; device_initialize(&spi->dev); --- linux-3.2.0.orig/drivers/spi/spi-fsl-spi.c +++ linux-3.2.0/drivers/spi/spi-fsl-spi.c @@ -139,10 +139,12 @@ static void fsl_spi_chipselect(struct spi_device *spi, int value) { struct mpc8xxx_spi *mpc8xxx_spi = spi_master_get_devdata(spi->master); - struct fsl_spi_platform_data *pdata = spi->dev.parent->platform_data; + struct fsl_spi_platform_data *pdata; bool pol = spi->mode & SPI_CS_HIGH; struct spi_mpc8xxx_cs *cs = spi->controller_state; + pdata = spi->dev.parent->parent->platform_data; + if (value == BITBANG_CS_INACTIVE) { if (pdata->cs_control) pdata->cs_control(spi, !pol); @@ -931,7 +933,7 @@ static void fsl_spi_cs_control(struct spi_device *spi, bool on) { - struct device *dev = spi->dev.parent; + struct device *dev = spi->dev.parent->parent; struct mpc8xxx_spi_probe_info *pinfo = to_of_pinfo(dev->platform_data); u16 cs = spi->chip_select; int gpio = pinfo->gpios[cs]; --- linux-3.2.0.orig/drivers/base/Kconfig +++ linux-3.2.0/drivers/base/Kconfig @@ -174,4 +174,12 @@ source "drivers/base/regmap/Kconfig" +config SR_REPORT_TIME_LIMIT + int "Default low threshold" + depends on PM + default 100 + help + Print suspend/resume information for driver/device for time greater + then default msec, ie 100 msec. + endmenu --- linux-3.2.0.orig/drivers/base/firmware_class.c +++ linux-3.2.0/drivers/base/firmware_class.c @@ -226,13 +226,13 @@ int loading = simple_strtol(buf, NULL, 10); int i; + mutex_lock(&fw_lock); + + if (!fw_priv->fw) + goto out; + switch (loading) { case 1: - mutex_lock(&fw_lock); - if (!fw_priv->fw) { - mutex_unlock(&fw_lock); - break; - } firmware_free_data(fw_priv->fw); memset(fw_priv->fw, 0, sizeof(struct firmware)); /* If the pages are not owned by 'struct firmware' */ @@ -243,7 +243,6 @@ fw_priv->page_array_size = 0; fw_priv->nr_pages = 0; set_bit(FW_STATUS_LOADING, &fw_priv->status); - mutex_unlock(&fw_lock); break; case 0: if (test_bit(FW_STATUS_LOADING, &fw_priv->status)) { @@ -274,7 +273,8 @@ fw_load_abort(fw_priv); break; } - +out: + mutex_unlock(&fw_lock); return count; } --- linux-3.2.0.orig/drivers/base/regmap/regcache.c +++ linux-3.2.0/drivers/base/regmap/regcache.c @@ -54,7 +54,7 @@ for (count = 0, i = 0; i < map->num_reg_defaults_raw; i++) { val = regcache_get_val(map->reg_defaults_raw, i, map->cache_word_size); - if (!val) + if (regmap_volatile(map, i)) continue; count++; } @@ -69,7 +69,7 @@ for (i = 0, j = 0; i < map->num_reg_defaults_raw; i++) { val = regcache_get_val(map->reg_defaults_raw, i, map->cache_word_size); - if (!val) + if (regmap_volatile(map, i)) continue; map->reg_defaults[j].reg = i; map->reg_defaults[j].def = val; --- linux-3.2.0.orig/drivers/base/power/domain.c +++ linux-3.2.0/drivers/base/power/domain.c @@ -751,7 +751,8 @@ if (IS_ERR(genpd)) return -EINVAL; - if (genpd->suspend_power_off) + if (genpd->suspend_power_off + || (dev->power.wakeup_path && genpd_dev_active_wakeup(genpd, dev))) return 0; /* --- linux-3.2.0.orig/drivers/base/power/main.c +++ linux-3.2.0/drivers/base/power/main.c @@ -396,6 +396,24 @@ dev_name(dev), pm_verb(state.event), info, error); } +static void device_show_time(struct device *dev, ktime_t starttime, pm_message_t state, char *info) +{ + ktime_t calltime; + s64 usecs64; + int usecs; + + calltime = ktime_get(); + usecs64 = ktime_to_ns(ktime_sub(calltime, starttime)); + do_div(usecs64, NSEC_PER_USEC); + usecs = usecs64; + if (usecs == 0) + usecs = 1; + if ((usecs / USEC_PER_MSEC) > CONFIG_SR_REPORT_TIME_LIMIT) + pr_info("PM: %s%s%s of drv:%s dev:%s complete after %ld.%03ld msecs\n", info ?: "", info ? " " : "", pm_verb(state.event), + dev_driver_string(dev), dev_name(dev), usecs / USEC_PER_MSEC, + usecs % USEC_PER_MSEC); +} + static void dpm_show_time(ktime_t starttime, pm_message_t state, char *info) { ktime_t calltime; @@ -426,6 +444,7 @@ static int device_resume_noirq(struct device *dev, pm_message_t state) { int error = 0; + ktime_t starttime = ktime_get(); TRACE_DEVICE(dev); TRACE_RESUME(0); @@ -433,6 +452,7 @@ if (dev->pm_domain) { pm_dev_dbg(dev, state, "EARLY power domain "); error = pm_noirq_op(dev, &dev->pm_domain->ops, state); + device_show_time(dev, starttime, state, "early"); } else if (dev->type && dev->type->pm) { pm_dev_dbg(dev, state, "EARLY type "); error = pm_noirq_op(dev, dev->type->pm, state); @@ -515,6 +535,7 @@ { int error = 0; bool put = false; + ktime_t starttime = ktime_get(); TRACE_DEVICE(dev); TRACE_RESUME(0); @@ -568,6 +589,7 @@ } } + device_show_time(dev, starttime, state, NULL); End: dev->power.is_suspended = false; @@ -764,6 +786,7 @@ static int device_suspend_noirq(struct device *dev, pm_message_t state) { int error; + ktime_t starttime = ktime_get(); if (dev->pm_domain) { pm_dev_dbg(dev, state, "LATE power domain "); @@ -785,6 +808,7 @@ error = pm_noirq_op(dev, dev->bus->pm, state); if (error) return error; + device_show_time(dev, starttime, state, "late"); } return 0; @@ -865,6 +889,7 @@ static int __device_suspend(struct device *dev, pm_message_t state, bool async) { int error = 0; + ktime_t starttime = ktime_get(); dpm_wait_for_children(dev, async); @@ -917,6 +942,7 @@ } } + device_show_time(dev, starttime, state, NULL); End: if (!error) { dev->power.is_suspended = true; --- linux-3.2.0.orig/drivers/isdn/gigaset/ev-layer.c +++ linux-3.2.0/drivers/isdn/gigaset/ev-layer.c @@ -190,6 +190,7 @@ ACT_INIT} }, {RSP_OK, 121, 121, -1, 0, 0, {ACT_GOTVER, ACT_INIT} }, +{RSP_NONE, 121, 121, -1, 120, 0, {ACT_GETSTRING} }, /* leave dle mode */ {RSP_INIT, 0, 0, SEQ_DLE0, 201, 5, {0}, "^SDLE=0\r"}, @@ -1314,8 +1315,9 @@ s = ev->ptr; if (!strcmp(s, "OK")) { + /* OK without version string: assume old response */ *p_genresp = 1; - *p_resp_code = RSP_ERROR; + *p_resp_code = RSP_NONE; break; } --- linux-3.2.0.orig/drivers/isdn/gigaset/capi.c +++ linux-3.2.0/drivers/isdn/gigaset/capi.c @@ -14,6 +14,7 @@ #include "gigaset.h" #include #include +#include #include #include #include @@ -223,10 +224,14 @@ static inline void dump_cmsg(enum debuglevel level, const char *tag, _cmsg *p) { #ifdef CONFIG_GIGASET_DEBUG + /* dump at most 20 messages in 20 secs */ + static DEFINE_RATELIMIT_STATE(msg_dump_ratelimit, 20 * HZ, 20); _cdebbuf *cdb; if (!(gigaset_debuglevel & level)) return; + if (!___ratelimit(&msg_dump_ratelimit, tag)) + return; cdb = capi_cmsg2str(p); if (cdb) { @@ -1882,6 +1887,9 @@ /* check for active logical connection */ if (bcs->apconnstate >= APCONN_ACTIVE) { + /* clear it */ + bcs->apconnstate = APCONN_SETUP; + /* * emit DISCONNECT_B3_IND with cause 0x3301 * use separate cmsg structure, as the content of iif->acmsg @@ -1906,6 +1914,7 @@ } capi_cmsg2message(b3cmsg, __skb_put(b3skb, CAPI_DISCONNECT_B3_IND_BASELEN)); + dump_cmsg(DEBUG_CMD, __func__, b3cmsg); kfree(b3cmsg); capi_ctr_handle_message(&iif->ctr, ap->id, b3skb); } @@ -2059,12 +2068,6 @@ } /* - * dump unsupported/ignored messages at most twice per minute, - * some apps send those very frequently - */ -static unsigned long ignored_msg_dump_time; - -/* * unsupported CAPI message handler */ static void do_unsupported(struct gigaset_capi_ctr *iif, @@ -2073,8 +2076,7 @@ { /* decode message */ capi_message2cmsg(&iif->acmsg, skb->data); - if (printk_timed_ratelimit(&ignored_msg_dump_time, 30 * 1000)) - dump_cmsg(DEBUG_CMD, __func__, &iif->acmsg); + dump_cmsg(DEBUG_CMD, __func__, &iif->acmsg); send_conf(iif, ap, skb, CapiMessageNotSupportedInCurrentState); } @@ -2085,11 +2087,9 @@ struct gigaset_capi_appl *ap, struct sk_buff *skb) { - if (printk_timed_ratelimit(&ignored_msg_dump_time, 30 * 1000)) { - /* decode message */ - capi_message2cmsg(&iif->acmsg, skb->data); - dump_cmsg(DEBUG_CMD, __func__, &iif->acmsg); - } + /* decode message */ + capi_message2cmsg(&iif->acmsg, skb->data); + dump_cmsg(DEBUG_CMD, __func__, &iif->acmsg); dev_kfree_skb_any(skb); } --- linux-3.2.0.orig/drivers/md/dm-linear.c +++ linux-3.2.0/drivers/md/dm-linear.c @@ -116,7 +116,17 @@ unsigned long arg) { struct linear_c *lc = (struct linear_c *) ti->private; - return __blkdev_driver_ioctl(lc->dev->bdev, lc->dev->mode, cmd, arg); + struct dm_dev *dev = lc->dev; + int r = 0; + + /* + * Only pass ioctls through if the device sizes match exactly. + */ + if (lc->start || + ti->len != i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT) + r = scsi_verify_blk_ioctl(NULL, cmd); + + return r ? : __blkdev_driver_ioctl(dev->bdev, dev->mode, cmd, arg); } static int linear_merge(struct dm_target *ti, struct bvec_merge_data *bvm, --- linux-3.2.0.orig/drivers/md/bitmap.c +++ linux-3.2.0/drivers/md/bitmap.c @@ -1819,7 +1819,9 @@ * re-add of a missing device */ start = mddev->recovery_cp; + mutex_lock(&mddev->bitmap_info.mutex); err = bitmap_init_from_disk(bitmap, start); + mutex_unlock(&mddev->bitmap_info.mutex); if (err) goto out; @@ -1904,6 +1906,8 @@ if (mddev->pers) { mddev->pers->quiesce(mddev, 1); rv = bitmap_create(mddev); + if (!rv) + rv = bitmap_load(mddev); if (rv) { bitmap_destroy(mddev); mddev->bitmap_info.offset = 0; --- linux-3.2.0.orig/drivers/md/dm-crypt.c +++ linux-3.2.0/drivers/md/dm-crypt.c @@ -176,7 +176,6 @@ #define MIN_IOS 16 #define MIN_POOL_PAGES 32 -#define MIN_BIO_PAGES 8 static struct kmem_cache *_crypt_io_pool; @@ -848,12 +847,11 @@ } /* - * if additional pages cannot be allocated without waiting, - * return a partially allocated bio, the caller will then try - * to allocate additional bios while submitting this partial bio + * If additional pages cannot be allocated without waiting, + * return a partially-allocated bio. The caller will then try + * to allocate more bios while submitting this partial bio. */ - if (i == (MIN_BIO_PAGES - 1)) - gfp_mask = (gfp_mask | __GFP_NOWARN) & ~__GFP_WAIT; + gfp_mask = (gfp_mask | __GFP_NOWARN) & ~__GFP_WAIT; len = (size > PAGE_SIZE) ? PAGE_SIZE : size; @@ -1046,16 +1044,14 @@ queue_work(cc->io_queue, &io->work); } -static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io, - int error, int async) +static void kcryptd_crypt_write_io_submit(struct dm_crypt_io *io, int async) { struct bio *clone = io->ctx.bio_out; struct crypt_config *cc = io->target->private; - if (unlikely(error < 0)) { + if (unlikely(io->error < 0)) { crypt_free_buffer_pages(cc, clone); bio_put(clone); - io->error = -EIO; crypt_dec_pending(io); return; } @@ -1106,12 +1102,16 @@ sector += bio_sectors(clone); crypt_inc_pending(io); + r = crypt_convert(cc, &io->ctx); + if (r < 0) + io->error = -EIO; + crypt_finished = atomic_dec_and_test(&io->ctx.pending); /* Encryption was already finished, submit io now */ if (crypt_finished) { - kcryptd_crypt_write_io_submit(io, r, 0); + kcryptd_crypt_write_io_submit(io, 0); /* * If there was an error, do not try next fragments. @@ -1162,11 +1162,8 @@ crypt_dec_pending(io); } -static void kcryptd_crypt_read_done(struct dm_crypt_io *io, int error) +static void kcryptd_crypt_read_done(struct dm_crypt_io *io) { - if (unlikely(error < 0)) - io->error = -EIO; - crypt_dec_pending(io); } @@ -1181,9 +1178,11 @@ io->sector); r = crypt_convert(cc, &io->ctx); + if (r < 0) + io->error = -EIO; if (atomic_dec_and_test(&io->ctx.pending)) - kcryptd_crypt_read_done(io, r); + kcryptd_crypt_read_done(io); crypt_dec_pending(io); } @@ -1204,15 +1203,18 @@ if (!error && cc->iv_gen_ops && cc->iv_gen_ops->post) error = cc->iv_gen_ops->post(cc, iv_of_dmreq(cc, dmreq), dmreq); + if (error < 0) + io->error = -EIO; + mempool_free(req_of_dmreq(cc, dmreq), cc->req_pool); if (!atomic_dec_and_test(&ctx->pending)) return; if (bio_data_dir(io->base_bio) == READ) - kcryptd_crypt_read_done(io, error); + kcryptd_crypt_read_done(io); else - kcryptd_crypt_write_io_submit(io, error, 1); + kcryptd_crypt_write_io_submit(io, 1); } static void kcryptd_crypt(struct work_struct *work) --- linux-3.2.0.orig/drivers/md/dm-raid.c +++ linux-3.2.0/drivers/md/dm-raid.c @@ -667,7 +667,14 @@ return ret; sb = page_address(rdev->sb_page); - if (sb->magic != cpu_to_le32(DM_RAID_MAGIC)) { + + /* + * Two cases that we want to write new superblocks and rebuild: + * 1) New device (no matching magic number) + * 2) Device specified for rebuild (!In_sync w/ offset == 0) + */ + if ((sb->magic != cpu_to_le32(DM_RAID_MAGIC)) || + (!test_bit(In_sync, &rdev->flags) && !rdev->recovery_offset)) { super_sync(rdev->mddev, rdev); set_bit(FirstUse, &rdev->flags); @@ -744,11 +751,8 @@ */ rdev_for_each(r, t, mddev) { if (!test_bit(In_sync, &r->flags)) { - if (!test_bit(FirstUse, &r->flags)) - DMERR("Superblock area of " - "rebuild device %d should have been " - "cleared.", r->raid_disk); - set_bit(FirstUse, &r->flags); + DMINFO("Device %d specified for rebuild: " + "Clearing superblock", r->raid_disk); rebuilds++; } else if (test_bit(FirstUse, &r->flags)) new_devs++; @@ -970,6 +974,7 @@ INIT_WORK(&rs->md.event_work, do_table_event); ti->private = rs; + ti->num_flush_requests = 1; mutex_lock(&rs->md.reconfig_mutex); ret = md_run(&rs->md); --- linux-3.2.0.orig/drivers/md/dm-io.c +++ linux-3.2.0/drivers/md/dm-io.c @@ -296,6 +296,8 @@ unsigned offset; unsigned num_bvecs; sector_t remaining = where->count; + struct request_queue *q = bdev_get_queue(where->bdev); + sector_t discard_sectors; /* * where->count may be zero if rw holds a flush and we need to @@ -305,9 +307,12 @@ /* * Allocate a suitably sized-bio. */ - num_bvecs = dm_sector_div_up(remaining, - (PAGE_SIZE >> SECTOR_SHIFT)); - num_bvecs = min_t(int, bio_get_nr_vecs(where->bdev), num_bvecs); + if (rw & REQ_DISCARD) + num_bvecs = 1; + else + num_bvecs = min_t(int, bio_get_nr_vecs(where->bdev), + dm_sector_div_up(remaining, (PAGE_SIZE >> SECTOR_SHIFT))); + bio = bio_alloc_bioset(GFP_NOIO, num_bvecs, io->client->bios); bio->bi_sector = where->sector + (where->count - remaining); bio->bi_bdev = where->bdev; @@ -315,10 +320,14 @@ bio->bi_destructor = dm_bio_destructor; store_io_and_region_in_bio(bio, io, region); - /* - * Try and add as many pages as possible. - */ - while (remaining) { + if (rw & REQ_DISCARD) { + discard_sectors = min_t(sector_t, q->limits.max_discard_sectors, remaining); + bio->bi_size = discard_sectors << SECTOR_SHIFT; + remaining -= discard_sectors; + } else while (remaining) { + /* + * Try and add as many pages as possible. + */ dp->get_page(dp, &page, &len, &offset); len = min(len, to_bytes(remaining)); if (!bio_add_page(bio, page, len, offset)) --- linux-3.2.0.orig/drivers/md/raid1.c +++ linux-3.2.0/drivers/md/raid1.c @@ -525,8 +525,17 @@ if (test_bit(WriteMostly, &rdev->flags)) { /* Don't balance among write-mostly, just * use the first as a last resort */ - if (best_disk < 0) + if (best_disk < 0) { + if (is_badblock(rdev, this_sector, sectors, + &first_bad, &bad_sectors)) { + if (first_bad < this_sector) + /* Cannot use this */ + continue; + best_good_sectors = first_bad - this_sector; + } else + best_good_sectors = sectors; best_disk = disk; + } continue; } /* This is a reasonable device to use. It might @@ -722,9 +731,22 @@ spin_lock_irq(&conf->resync_lock); if (conf->barrier) { conf->nr_waiting++; - wait_event_lock_irq(conf->wait_barrier, !conf->barrier, + /* Wait for the barrier to drop. + * However if there are already pending + * requests (preventing the barrier from + * rising completely), and the + * pre-process bio queue isn't empty, + * then don't wait, as we need to empty + * that queue to get the nr_pending + * count down. + */ + wait_event_lock_irq(conf->wait_barrier, + !conf->barrier || + (conf->nr_pending && + current->bio_list && + !bio_list_empty(current->bio_list)), conf->resync_lock, - ); + ); conf->nr_waiting--; } conf->nr_pending++; --- linux-3.2.0.orig/drivers/md/dm-thin.c +++ linux-3.2.0/drivers/md/dm-thin.c @@ -124,7 +124,7 @@ struct hlist_node list; struct bio_prison *prison; struct cell_key key; - unsigned count; + struct bio *holder; struct bio_list bios; }; @@ -220,54 +220,59 @@ * This may block if a new cell needs allocating. You must ensure that * cells will be unlocked even if the calling thread is blocked. * - * Returns the number of entries in the cell prior to the new addition - * or < 0 on failure. + * Returns 1 if the cell was already held, 0 if @inmate is the new holder. */ static int bio_detain(struct bio_prison *prison, struct cell_key *key, struct bio *inmate, struct cell **ref) { - int r; + int r = 1; unsigned long flags; uint32_t hash = hash_key(prison, key); - struct cell *uninitialized_var(cell), *cell2 = NULL; + struct cell *cell, *cell2; BUG_ON(hash > prison->nr_buckets); spin_lock_irqsave(&prison->lock, flags); - cell = __search_bucket(prison->cells + hash, key); - if (!cell) { - /* - * Allocate a new cell - */ - spin_unlock_irqrestore(&prison->lock, flags); - cell2 = mempool_alloc(prison->cell_pool, GFP_NOIO); - spin_lock_irqsave(&prison->lock, flags); - - /* - * We've been unlocked, so we have to double check that - * nobody else has inserted this cell in the meantime. - */ - cell = __search_bucket(prison->cells + hash, key); - - if (!cell) { - cell = cell2; - cell2 = NULL; - - cell->prison = prison; - memcpy(&cell->key, key, sizeof(cell->key)); - cell->count = 0; - bio_list_init(&cell->bios); - hlist_add_head(&cell->list, prison->cells + hash); - } + cell = __search_bucket(prison->cells + hash, key); + if (cell) { + bio_list_add(&cell->bios, inmate); + goto out; } - r = cell->count++; - bio_list_add(&cell->bios, inmate); + /* + * Allocate a new cell + */ spin_unlock_irqrestore(&prison->lock, flags); + cell2 = mempool_alloc(prison->cell_pool, GFP_NOIO); + spin_lock_irqsave(&prison->lock, flags); - if (cell2) + /* + * We've been unlocked, so we have to double check that + * nobody else has inserted this cell in the meantime. + */ + cell = __search_bucket(prison->cells + hash, key); + if (cell) { mempool_free(cell2, prison->cell_pool); + bio_list_add(&cell->bios, inmate); + goto out; + } + + /* + * Use new cell. + */ + cell = cell2; + + cell->prison = prison; + memcpy(&cell->key, key, sizeof(cell->key)); + cell->holder = inmate; + bio_list_init(&cell->bios); + hlist_add_head(&cell->list, prison->cells + hash); + + r = 0; + +out: + spin_unlock_irqrestore(&prison->lock, flags); *ref = cell; @@ -283,8 +288,8 @@ hlist_del(&cell->list); - if (inmates) - bio_list_merge(inmates, &cell->bios); + bio_list_add(inmates, cell->holder); + bio_list_merge(inmates, &cell->bios); mempool_free(cell, prison->cell_pool); } @@ -305,22 +310,44 @@ * bio may be in the cell. This function releases the cell, and also does * a sanity check. */ +static void __cell_release_singleton(struct cell *cell, struct bio *bio) +{ + hlist_del(&cell->list); + BUG_ON(cell->holder != bio); + BUG_ON(!bio_list_empty(&cell->bios)); +} + static void cell_release_singleton(struct cell *cell, struct bio *bio) { - struct bio_prison *prison = cell->prison; - struct bio_list bios; - struct bio *b; unsigned long flags; - - bio_list_init(&bios); + struct bio_prison *prison = cell->prison; spin_lock_irqsave(&prison->lock, flags); - __cell_release(cell, &bios); + __cell_release_singleton(cell, bio); spin_unlock_irqrestore(&prison->lock, flags); +} + +/* + * Sometimes we don't want the holder, just the additional bios. + */ +static void __cell_release_no_holder(struct cell *cell, struct bio_list *inmates) +{ + struct bio_prison *prison = cell->prison; + + hlist_del(&cell->list); + bio_list_merge(inmates, &cell->bios); + + mempool_free(cell, prison->cell_pool); +} + +static void cell_release_no_holder(struct cell *cell, struct bio_list *inmates) +{ + unsigned long flags; + struct bio_prison *prison = cell->prison; - b = bio_list_pop(&bios); - BUG_ON(b != bio); - BUG_ON(!bio_list_empty(&bios)); + spin_lock_irqsave(&prison->lock, flags); + __cell_release_no_holder(cell, inmates); + spin_unlock_irqrestore(&prison->lock, flags); } static void cell_error(struct cell *cell) @@ -800,21 +827,16 @@ * Same as cell_defer above, except it omits one particular detainee, * a write bio that covers the block and has already been processed. */ -static void cell_defer_except(struct thin_c *tc, struct cell *cell, - struct bio *exception) +static void cell_defer_except(struct thin_c *tc, struct cell *cell) { struct bio_list bios; - struct bio *bio; struct pool *pool = tc->pool; unsigned long flags; bio_list_init(&bios); - cell_release(cell, &bios); spin_lock_irqsave(&pool->lock, flags); - while ((bio = bio_list_pop(&bios))) - if (bio != exception) - bio_list_add(&pool->deferred_bios, bio); + cell_release_no_holder(cell, &pool->deferred_bios); spin_unlock_irqrestore(&pool->lock, flags); wake_worker(pool); @@ -854,7 +876,7 @@ * the bios in the cell. */ if (bio) { - cell_defer_except(tc, m->cell, bio); + cell_defer_except(tc, m->cell); bio_endio(bio, 0); } else cell_defer(tc, m->cell, m->data_block); --- linux-3.2.0.orig/drivers/md/dm-flakey.c +++ linux-3.2.0/drivers/md/dm-flakey.c @@ -323,7 +323,7 @@ * Corrupt successful READs while in down state. * If flags were specified, only corrupt those that match. */ - if (!error && bio_submitted_while_down && + if (fc->corrupt_bio_byte && !error && bio_submitted_while_down && (bio_data_dir(bio) == READ) && (fc->corrupt_bio_rw == READ) && all_corrupt_bio_flags_match(bio, fc)) corrupt_bio_data(bio, fc); @@ -368,8 +368,17 @@ static int flakey_ioctl(struct dm_target *ti, unsigned int cmd, unsigned long arg) { struct flakey_c *fc = ti->private; + struct dm_dev *dev = fc->dev; + int r = 0; - return __blkdev_driver_ioctl(fc->dev->bdev, fc->dev->mode, cmd, arg); + /* + * Only pass ioctls through if the device sizes match exactly. + */ + if (fc->start || + ti->len != i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT) + r = scsi_verify_blk_ioctl(NULL, cmd); + + return r ? : __blkdev_driver_ioctl(dev->bdev, dev->mode, cmd, arg); } static int flakey_merge(struct dm_target *ti, struct bvec_merge_data *bvm, --- linux-3.2.0.orig/drivers/md/dm-mpath.c +++ linux-3.2.0/drivers/md/dm-mpath.c @@ -698,8 +698,8 @@ return 0; m->hw_handler_name = kstrdup(dm_shift_arg(as), GFP_KERNEL); - request_module("scsi_dh_%s", m->hw_handler_name); - if (scsi_dh_handler_exist(m->hw_handler_name) == 0) { + if (!try_then_request_module(scsi_dh_handler_exist(m->hw_handler_name), + "scsi_dh_%s", m->hw_handler_name)) { ti->error = "unknown hardware handler type"; ret = -EINVAL; goto fail; @@ -1520,6 +1520,12 @@ spin_unlock_irqrestore(&m->lock, flags); + /* + * Only pass ioctls through if the device sizes match exactly. + */ + if (!r && ti->len != i_size_read(bdev->bd_inode) >> SECTOR_SHIFT) + r = scsi_verify_blk_ioctl(NULL, cmd); + return r ? : __blkdev_driver_ioctl(bdev, mode, cmd, arg); } --- linux-3.2.0.orig/drivers/md/dm.c +++ linux-3.2.0/drivers/md/dm.c @@ -2653,6 +2653,7 @@ { return md->disk; } +EXPORT_SYMBOL_GPL(dm_disk); struct kobject *dm_kobject(struct mapped_device *md) { --- linux-3.2.0.orig/drivers/md/raid10.c +++ linux-3.2.0/drivers/md/raid10.c @@ -790,9 +790,22 @@ spin_lock_irq(&conf->resync_lock); if (conf->barrier) { conf->nr_waiting++; - wait_event_lock_irq(conf->wait_barrier, !conf->barrier, + /* Wait for the barrier to drop. + * However if there are already pending + * requests (preventing the barrier from + * rising completely), and the + * pre-process bio queue isn't empty, + * then don't wait, as we need to empty + * that queue to get the nr_pending + * count down. + */ + wait_event_lock_irq(conf->wait_barrier, + !conf->barrier || + (conf->nr_pending && + current->bio_list && + !bio_list_empty(current->bio_list)), conf->resync_lock, - ); + ); conf->nr_waiting--; } conf->nr_pending++; --- linux-3.2.0.orig/drivers/md/dm-thin-metadata.c +++ linux-3.2.0/drivers/md/dm-thin-metadata.c @@ -385,6 +385,7 @@ data_sm = dm_sm_disk_create(tm, nr_blocks); if (IS_ERR(data_sm)) { DMERR("sm_disk_create failed"); + dm_tm_unlock(tm, sblock); r = PTR_ERR(data_sm); goto bad; } @@ -789,6 +790,11 @@ return 0; } +/* + * __open_device: Returns @td corresponding to device with id @dev, + * creating it if @create is set and incrementing @td->open_count. + * On failure, @td is undefined. + */ static int __open_device(struct dm_pool_metadata *pmd, dm_thin_id dev, int create, struct dm_thin_device **td) @@ -799,10 +805,16 @@ struct disk_device_details details_le; /* - * Check the device isn't already open. + * If the device is already open, return it. */ list_for_each_entry(td2, &pmd->thin_devices, list) if (td2->id == dev) { + /* + * May not create an already-open device. + */ + if (create) + return -EEXIST; + td2->open_count++; *td = td2; return 0; @@ -817,6 +829,9 @@ if (r != -ENODATA || !create) return r; + /* + * Create new device. + */ changed = 1; details_le.mapped_blocks = 0; details_le.transaction_id = cpu_to_le64(pmd->trans_id); @@ -882,12 +897,10 @@ r = __open_device(pmd, dev, 1, &td); if (r) { - __close_device(td); dm_btree_remove(&pmd->tl_info, pmd->root, &key, &pmd->root); dm_btree_del(&pmd->bl_info, dev_root); return r; } - td->changed = 1; __close_device(td); return r; @@ -967,14 +980,14 @@ goto bad; r = __set_snapshot_details(pmd, td, origin, pmd->time); + __close_device(td); + if (r) goto bad; - __close_device(td); return 0; bad: - __close_device(td); dm_btree_remove(&pmd->tl_info, pmd->root, &key, &pmd->root); dm_btree_remove(&pmd->details_info, pmd->details_root, &key, &pmd->details_root); @@ -1211,6 +1224,8 @@ if (r) return r; + td->mapped_blocks--; + td->changed = 1; pmd->need_commit = 1; return 0; --- linux-3.2.0.orig/drivers/md/dm-exception-store.c +++ linux-3.2.0/drivers/md/dm-exception-store.c @@ -283,7 +283,7 @@ return 0; persistent_fail: - dm_persistent_snapshot_exit(); + dm_transient_snapshot_exit(); transient_fail: return r; } --- linux-3.2.0.orig/drivers/md/dm-ioctl.c +++ linux-3.2.0/drivers/md/dm-ioctl.c @@ -1437,7 +1437,7 @@ if (!argc) { DMWARN("Empty message received."); - goto out; + goto out_argv; } table = dm_get_live_table(md); --- linux-3.2.0.orig/drivers/md/md.c +++ linux-3.2.0/drivers/md/md.c @@ -392,6 +392,8 @@ synchronize_rcu(); wait_event(mddev->sb_wait, atomic_read(&mddev->active_io) == 0); mddev->pers->quiesce(mddev, 1); + + del_timer_sync(&mddev->safemode_timer); } EXPORT_SYMBOL_GPL(mddev_suspend); @@ -451,7 +453,7 @@ atomic_inc(&rdev->nr_pending); atomic_inc(&rdev->nr_pending); rcu_read_unlock(); - bi = bio_alloc_mddev(GFP_KERNEL, 0, mddev); + bi = bio_alloc_mddev(GFP_NOIO, 0, mddev); bi->bi_end_io = md_end_flush; bi->bi_private = rdev; bi->bi_bdev = rdev->bdev; @@ -1801,13 +1803,13 @@ | BB_LEN(internal_bb)); *bbp++ = cpu_to_le64(store_bb); } + bb->changed = 0; if (read_seqretry(&bb->lock, seq)) goto retry; bb->sector = (rdev->sb_start + (int)le32_to_cpu(sb->bblog_offset)); bb->size = le16_to_cpu(sb->bblog_size); - bb->changed = 0; } } @@ -2362,6 +2364,7 @@ clear_bit(MD_CHANGE_PENDING, &mddev->flags); list_for_each_entry(rdev, &mddev->disks, same_set) { if (rdev->badblocks.changed) { + rdev->badblocks.changed = 0; md_ack_all_badblocks(&rdev->badblocks); md_error(mddev, rdev); } @@ -8097,30 +8100,24 @@ struct mddev *mddev; int need_delay = 0; - if ((code == SYS_DOWN) || (code == SYS_HALT) || (code == SYS_POWER_OFF)) { - - printk(KERN_INFO "md: stopping all md devices.\n"); - - for_each_mddev(mddev, tmp) { - if (mddev_trylock(mddev)) { - /* Force a switch to readonly even array - * appears to still be in use. Hence - * the '100'. - */ - md_set_readonly(mddev, 100); - mddev_unlock(mddev); - } - need_delay = 1; + for_each_mddev(mddev, tmp) { + if (mddev_trylock(mddev)) { + if (mddev->pers) + __md_stop_writes(mddev); + mddev->safemode = 2; + mddev_unlock(mddev); } - /* - * certain more exotic SCSI devices are known to be - * volatile wrt too early system reboots. While the - * right place to handle this issue is the given - * driver, we do want to have a safe RAID driver ... - */ - if (need_delay) - mdelay(1000*1); + need_delay = 1; } + /* + * certain more exotic SCSI devices are known to be + * volatile wrt too early system reboots. While the + * right place to handle this issue is the given + * driver, we do want to have a safe RAID driver ... + */ + if (need_delay) + mdelay(1000*1); + return NOTIFY_DONE; } --- linux-3.2.0.orig/drivers/md/persistent-data/dm-btree-remove.c +++ linux-3.2.0/drivers/md/persistent-data/dm-btree-remove.c @@ -128,18 +128,9 @@ n->header.nr_entries = cpu_to_le32(nr_entries - 1); } -static unsigned del_threshold(struct node *n) -{ - return le32_to_cpu(n->header.max_entries) / 3; -} - static unsigned merge_threshold(struct node *n) { - /* - * The extra one is because we know we're potentially going to - * delete an entry. - */ - return 2 * (le32_to_cpu(n->header.max_entries) / 3) + 1; + return le32_to_cpu(n->header.max_entries) / 3; } struct child { @@ -188,6 +179,15 @@ static void shift(struct node *left, struct node *right, int count) { + uint32_t nr_left = le32_to_cpu(left->header.nr_entries); + uint32_t nr_right = le32_to_cpu(right->header.nr_entries); + uint32_t max_entries = le32_to_cpu(left->header.max_entries); + uint32_t r_max_entries = le32_to_cpu(right->header.max_entries); + + BUG_ON(max_entries != r_max_entries); + BUG_ON(nr_left - count > max_entries); + BUG_ON(nr_right + count > max_entries); + if (!count) return; @@ -199,13 +199,8 @@ node_shift(right, count); } - left->header.nr_entries = - cpu_to_le32(le32_to_cpu(left->header.nr_entries) - count); - BUG_ON(le32_to_cpu(left->header.nr_entries) > le32_to_cpu(left->header.max_entries)); - - right->header.nr_entries = - cpu_to_le32(le32_to_cpu(right->header.nr_entries) + count); - BUG_ON(le32_to_cpu(right->header.nr_entries) > le32_to_cpu(right->header.max_entries)); + left->header.nr_entries = cpu_to_le32(nr_left - count); + right->header.nr_entries = cpu_to_le32(nr_right + count); } static void __rebalance2(struct dm_btree_info *info, struct node *parent, @@ -215,8 +210,9 @@ struct node *right = r->n; uint32_t nr_left = le32_to_cpu(left->header.nr_entries); uint32_t nr_right = le32_to_cpu(right->header.nr_entries); + unsigned threshold = 2 * merge_threshold(left) + 1; - if (nr_left + nr_right <= merge_threshold(left)) { + if (nr_left + nr_right < threshold) { /* * Merge */ @@ -234,9 +230,6 @@ * Rebalance. */ unsigned target_left = (nr_left + nr_right) / 2; - unsigned shift_ = nr_left - target_left; - BUG_ON(le32_to_cpu(left->header.max_entries) <= nr_left - shift_); - BUG_ON(le32_to_cpu(right->header.max_entries) <= nr_right + shift_); shift(left, right, nr_left - target_left); *key_ptr(parent, r->index) = right->keys[0]; } @@ -272,6 +265,84 @@ return exit_child(info, &right); } +/* + * We dump as many entries from center as possible into left, then the rest + * in right, then rebalance2. This wastes some cpu, but I want something + * simple atm. + */ +static void delete_center_node(struct dm_btree_info *info, struct node *parent, + struct child *l, struct child *c, struct child *r, + struct node *left, struct node *center, struct node *right, + uint32_t nr_left, uint32_t nr_center, uint32_t nr_right) +{ + uint32_t max_entries = le32_to_cpu(left->header.max_entries); + unsigned shift = min(max_entries - nr_left, nr_center); + + BUG_ON(nr_left + shift > max_entries); + node_copy(left, center, -shift); + left->header.nr_entries = cpu_to_le32(nr_left + shift); + + if (shift != nr_center) { + shift = nr_center - shift; + BUG_ON((nr_right + shift) > max_entries); + node_shift(right, shift); + node_copy(center, right, shift); + right->header.nr_entries = cpu_to_le32(nr_right + shift); + } + *key_ptr(parent, r->index) = right->keys[0]; + + delete_at(parent, c->index); + r->index--; + + dm_tm_dec(info->tm, dm_block_location(c->block)); + __rebalance2(info, parent, l, r); +} + +/* + * Redistributes entries among 3 sibling nodes. + */ +static void redistribute3(struct dm_btree_info *info, struct node *parent, + struct child *l, struct child *c, struct child *r, + struct node *left, struct node *center, struct node *right, + uint32_t nr_left, uint32_t nr_center, uint32_t nr_right) +{ + int s; + uint32_t max_entries = le32_to_cpu(left->header.max_entries); + unsigned target = (nr_left + nr_center + nr_right) / 3; + BUG_ON(target > max_entries); + + if (nr_left < nr_right) { + s = nr_left - target; + + if (s < 0 && nr_center < -s) { + /* not enough in central node */ + shift(left, center, nr_center); + s = nr_center - target; + shift(left, right, s); + nr_right += s; + } else + shift(left, center, s); + + shift(center, right, target - nr_right); + + } else { + s = target - nr_right; + if (s > 0 && nr_center < s) { + /* not enough in central node */ + shift(center, right, nr_center); + s = target - nr_center; + shift(left, right, s); + nr_left -= s; + } else + shift(center, right, s); + + shift(left, center, nr_left - target); + } + + *key_ptr(parent, c->index) = center->keys[0]; + *key_ptr(parent, r->index) = right->keys[0]; +} + static void __rebalance3(struct dm_btree_info *info, struct node *parent, struct child *l, struct child *c, struct child *r) { @@ -282,62 +353,18 @@ uint32_t nr_left = le32_to_cpu(left->header.nr_entries); uint32_t nr_center = le32_to_cpu(center->header.nr_entries); uint32_t nr_right = le32_to_cpu(right->header.nr_entries); - uint32_t max_entries = le32_to_cpu(left->header.max_entries); - unsigned target; + unsigned threshold = merge_threshold(left) * 4 + 1; BUG_ON(left->header.max_entries != center->header.max_entries); BUG_ON(center->header.max_entries != right->header.max_entries); - if (((nr_left + nr_center + nr_right) / 2) < merge_threshold(center)) { - /* - * Delete center node: - * - * We dump as many entries from center as possible into - * left, then the rest in right, then rebalance2. This - * wastes some cpu, but I want something simple atm. - */ - unsigned shift = min(max_entries - nr_left, nr_center); - - BUG_ON(nr_left + shift > max_entries); - node_copy(left, center, -shift); - left->header.nr_entries = cpu_to_le32(nr_left + shift); - - if (shift != nr_center) { - shift = nr_center - shift; - BUG_ON((nr_right + shift) >= max_entries); - node_shift(right, shift); - node_copy(center, right, shift); - right->header.nr_entries = cpu_to_le32(nr_right + shift); - } - *key_ptr(parent, r->index) = right->keys[0]; - - delete_at(parent, c->index); - r->index--; - - dm_tm_dec(info->tm, dm_block_location(c->block)); - __rebalance2(info, parent, l, r); - - return; - } - - /* - * Rebalance - */ - target = (nr_left + nr_center + nr_right) / 3; - BUG_ON(target > max_entries); - - /* - * Adjust the left node - */ - shift(left, center, nr_left - target); - - /* - * Adjust the right node - */ - shift(center, right, target - nr_right); - *key_ptr(parent, c->index) = center->keys[0]; - *key_ptr(parent, r->index) = right->keys[0]; + if ((nr_left + nr_center + nr_right) < threshold) + delete_center_node(info, parent, l, c, r, left, center, right, + nr_left, nr_center, nr_right); + else + redistribute3(info, parent, l, c, r, left, center, right, + nr_left, nr_center, nr_right); } static int rebalance3(struct shadow_spine *s, struct dm_btree_info *info, @@ -441,9 +468,6 @@ if (r) return r; - if (child_entries > del_threshold(n)) - return 0; - has_left_sibling = i > 0; has_right_sibling = i < (le32_to_cpu(n->header.nr_entries) - 1); --- linux-3.2.0.orig/drivers/platform/x86/toshiba_acpi.c +++ linux-3.2.0/drivers/platform/x86/toshiba_acpi.c @@ -52,6 +52,8 @@ #include #include #include +#include +#include #include @@ -61,6 +63,11 @@ MODULE_DESCRIPTION("Toshiba Laptop ACPI Extras Driver"); MODULE_LICENSE("GPL"); +#define TOSHIBA_WMI_EVENT_GUID "59142400-C6A3-40FA-BADB-8A2652834100" + +/* Scan code for Fn key on TOS1900 models */ +#define TOS1900_FN_SCAN 0x6e + /* Toshiba ACPI method paths */ #define METHOD_VIDEO_OUT "\\_SB_.VALX.DSSX" @@ -95,6 +102,8 @@ #define HCI_WIRELESS 0x0056 /* field definitions */ +#define HCI_HOTKEY_DISABLE 0x0b +#define HCI_HOTKEY_ENABLE 0x09 #define HCI_LCD_BRIGHTNESS_BITS 3 #define HCI_LCD_BRIGHTNESS_SHIFT (16-HCI_LCD_BRIGHTNESS_BITS) #define HCI_LCD_BRIGHTNESS_LEVELS (1 << HCI_LCD_BRIGHTNESS_BITS) @@ -111,6 +120,7 @@ const char *method_hci; struct rfkill *bt_rfk; struct input_dev *hotkey_dev; + struct work_struct hotkey_work; struct backlight_device *backlight_dev; struct led_classdev led_dev; @@ -118,14 +128,18 @@ int last_key_event; int key_event_valid; - int illumination_supported:1; - int video_supported:1; - int fan_supported:1; - int system_event_supported:1; + unsigned int illumination_supported:1; + unsigned int video_supported:1; + unsigned int fan_supported:1; + unsigned int system_event_supported:1; + unsigned int ntfy_supported:1; + unsigned int info_supported:1; struct mutex mutex; }; +static struct toshiba_acpi_dev *toshiba_acpi; + static const struct acpi_device_id toshiba_device_ids[] = { {"TOS6200", 0}, {"TOS6208", 0}, @@ -138,6 +152,8 @@ { KE_KEY, 0x101, { KEY_MUTE } }, { KE_KEY, 0x102, { KEY_ZOOMOUT } }, { KE_KEY, 0x103, { KEY_ZOOMIN } }, + { KE_KEY, 0x12c, { KEY_KBDILLUMTOGGLE } }, + { KE_KEY, 0x139, { KEY_ZOOMRESET } }, { KE_KEY, 0x13b, { KEY_COFFEE } }, { KE_KEY, 0x13c, { KEY_BATTERY } }, { KE_KEY, 0x13d, { KEY_SLEEP } }, @@ -146,7 +162,7 @@ { KE_KEY, 0x140, { KEY_BRIGHTNESSDOWN } }, { KE_KEY, 0x141, { KEY_BRIGHTNESSUP } }, { KE_KEY, 0x142, { KEY_WLAN } }, - { KE_KEY, 0x143, { KEY_PROG1 } }, + { KE_KEY, 0x143, { KEY_TOUCHPAD_TOGGLE } }, { KE_KEY, 0x17f, { KEY_FN } }, { KE_KEY, 0xb05, { KEY_PROG2 } }, { KE_KEY, 0xb06, { KEY_WWW } }, @@ -156,6 +172,7 @@ { KE_KEY, 0xb32, { KEY_NEXTSONG } }, { KE_KEY, 0xb33, { KEY_PLAYPAUSE } }, { KE_KEY, 0xb5a, { KEY_MEDIA } }, + { KE_IGNORE, 0x1430, { KEY_RESERVED } }, { KE_END, 0 }, }; @@ -847,10 +864,78 @@ .update_status = set_lcd_status, }; +static bool toshiba_acpi_i8042_filter(unsigned char data, unsigned char str, + struct serio *port) +{ + if (str & 0x20) + return false; + + if (unlikely(data == 0xe0)) + return false; + + if ((data & 0x7f) == TOS1900_FN_SCAN) { + schedule_work(&toshiba_acpi->hotkey_work); + return true; + } + + return false; +} + +static void toshiba_acpi_hotkey_work(struct work_struct *work) +{ + acpi_handle ec_handle = ec_get_handle(); + acpi_status status; + + if (!ec_handle) + return; + + status = acpi_evaluate_object(ec_handle, "NTFY", NULL, NULL); + if (ACPI_FAILURE(status)) + pr_err("ACPI NTFY method execution failed\n"); +} + +/* + * Returns hotkey scancode, or < 0 on failure. + */ +static int toshiba_acpi_query_hotkey(struct toshiba_acpi_dev *dev) +{ + struct acpi_buffer buf; + union acpi_object out_obj; + acpi_status status; + + buf.pointer = &out_obj; + buf.length = sizeof(out_obj); + + status = acpi_evaluate_object(dev->acpi_dev->handle, "INFO", + NULL, &buf); + if (ACPI_FAILURE(status) || out_obj.type != ACPI_TYPE_INTEGER) { + pr_err("ACPI INFO method execution failed\n"); + return -EIO; + } + + return out_obj.integer.value; +} + +static void toshiba_acpi_report_hotkey(struct toshiba_acpi_dev *dev, + int scancode) +{ + if (scancode == 0x100) + return; + + /* act on key press; ignore key release */ + if (scancode & 0x80) + return; + + if (!sparse_keymap_report_event(dev->hotkey_dev, scancode, 1, true)) + pr_info("Unknown key %x\n", scancode); +} + static int __devinit toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev *dev) { acpi_status status; + acpi_handle ec_handle, handle; int error; + u32 hci_result; dev->hotkey_dev = input_allocate_device(); if (!dev->hotkey_dev) { @@ -866,21 +951,67 @@ if (error) goto err_free_dev; + /* + * For some machines the SCI responsible for providing hotkey + * notification doesn't fire. We can trigger the notification + * whenever the Fn key is pressed using the NTFY method, if + * supported, so if it's present set up an i8042 key filter + * for this purpose. + */ + status = AE_ERROR; + ec_handle = ec_get_handle(); + if (ec_handle) + status = acpi_get_handle(ec_handle, "NTFY", &handle); + + if (ACPI_SUCCESS(status)) { + INIT_WORK(&dev->hotkey_work, toshiba_acpi_hotkey_work); + + error = i8042_install_filter(toshiba_acpi_i8042_filter); + if (error) { + pr_err("Error installing key filter\n"); + goto err_free_keymap; + } + + dev->ntfy_supported = 1; + } + + /* + * Determine hotkey query interface. Prefer using the INFO + * method when it is available. + */ + status = acpi_get_handle(dev->acpi_dev->handle, "INFO", &handle); + if (ACPI_SUCCESS(status)) { + dev->info_supported = 1; + } else { + hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result); + if (hci_result == HCI_SUCCESS) + dev->system_event_supported = 1; + } + + if (!dev->info_supported && !dev->system_event_supported) { + pr_warn("No hotkey query interface found\n"); + goto err_remove_filter; + } + status = acpi_evaluate_object(dev->acpi_dev->handle, "ENAB", NULL, NULL); if (ACPI_FAILURE(status)) { pr_info("Unable to enable hotkeys\n"); error = -ENODEV; - goto err_free_keymap; + goto err_remove_filter; } error = input_register_device(dev->hotkey_dev); if (error) { pr_info("Unable to register input device\n"); - goto err_free_keymap; + goto err_remove_filter; } + hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &hci_result); return 0; + err_remove_filter: + if (dev->ntfy_supported) + i8042_remove_filter(toshiba_acpi_i8042_filter); err_free_keymap: sparse_keymap_free(dev->hotkey_dev); err_free_dev: @@ -895,6 +1026,11 @@ remove_toshiba_proc_entries(dev); + if (dev->ntfy_supported) { + i8042_remove_filter(toshiba_acpi_i8042_filter); + cancel_work_sync(&dev->hotkey_work); + } + if (dev->hotkey_dev) { input_unregister_device(dev->hotkey_dev); sparse_keymap_free(dev->hotkey_dev); @@ -911,6 +1047,9 @@ if (dev->illumination_supported) led_classdev_unregister(&dev->led_dev); + if (toshiba_acpi) + toshiba_acpi = NULL; + kfree(dev); return 0; @@ -936,12 +1075,14 @@ { struct toshiba_acpi_dev *dev; const char *hci_method; - u32 hci_result; u32 dummy; bool bt_present; int ret = 0; struct backlight_properties props; + if (toshiba_acpi) + return -EBUSY; + pr_info("Toshiba Laptop ACPI Extras version %s\n", TOSHIBA_ACPI_VERSION); @@ -963,11 +1104,6 @@ mutex_init(&dev->mutex); - /* enable event fifo */ - hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result); - if (hci_result == HCI_SUCCESS) - dev->system_event_supported = 1; - props.type = BACKLIGHT_PLATFORM; props.max_brightness = HCI_LCD_BRIGHTNESS_LEVELS - 1; dev->backlight_dev = backlight_device_register("toshiba", @@ -1024,6 +1160,8 @@ create_toshiba_proc_entries(dev); + toshiba_acpi = dev; + return 0; error: @@ -1036,40 +1174,64 @@ struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev); u32 hci_result, value; int retries = 3; + int scancode; - if (!dev->system_event_supported || event != 0x80) + if (event != 0x80) return; - do { - hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result); - switch (hci_result) { - case HCI_SUCCESS: - if (value == 0x100) - continue; - /* act on key press; ignore key release */ - if (value & 0x80) - continue; - - if (!sparse_keymap_report_event(dev->hotkey_dev, - value, 1, true)) { - pr_info("Unknown key %x\n", - value); + if (dev->info_supported) { + scancode = toshiba_acpi_query_hotkey(dev); + if (scancode < 0) + pr_err("Failed to query hotkey event\n"); + else if (scancode != 0) + toshiba_acpi_report_hotkey(dev, scancode); + } else if (dev->system_event_supported) { + do { + hci_read1(dev, HCI_SYSTEM_EVENT, &value, &hci_result); + switch (hci_result) { + case HCI_SUCCESS: + toshiba_acpi_report_hotkey(dev, (int)value); + break; + case HCI_NOT_SUPPORTED: + /* + * This is a workaround for an unresolved + * issue on some machines where system events + * sporadically become disabled. + */ + hci_write1(dev, HCI_SYSTEM_EVENT, 1, + &hci_result); + pr_notice("Re-enabled hotkeys\n"); + /* fall through */ + default: + retries--; + break; } - break; - case HCI_NOT_SUPPORTED: - /* This is a workaround for an unresolved issue on - * some machines where system events sporadically - * become disabled. */ - hci_write1(dev, HCI_SYSTEM_EVENT, 1, &hci_result); - pr_notice("Re-enabled hotkeys\n"); - /* fall through */ - default: - retries--; - break; - } - } while (retries && hci_result != HCI_EMPTY); + } while (retries && hci_result != HCI_EMPTY); + } +} + +static int toshiba_acpi_suspend(struct acpi_device *acpi_dev, + pm_message_t state) +{ + struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev); + u32 result; + + if (dev->hotkey_dev) + hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_DISABLE, &result); + + return 0; } +static int toshiba_acpi_resume(struct acpi_device *acpi_dev) +{ + struct toshiba_acpi_dev *dev = acpi_driver_data(acpi_dev); + u32 result; + + if (dev->hotkey_dev) + hci_write1(dev, HCI_HOTKEY_EVENT, HCI_HOTKEY_ENABLE, &result); + + return 0; +} static struct acpi_driver toshiba_acpi_driver = { .name = "Toshiba ACPI driver", @@ -1080,6 +1242,8 @@ .add = toshiba_acpi_add, .remove = toshiba_acpi_remove, .notify = toshiba_acpi_notify, + .suspend = toshiba_acpi_suspend, + .resume = toshiba_acpi_resume, }, }; @@ -1087,6 +1251,14 @@ { int ret; + /* + * Machines with this WMI guid aren't supported due to bugs in + * their AML. This check relies on wmi initializing before + * toshiba_acpi to guarantee guids have been identified. + */ + if (wmi_has_guid(TOSHIBA_WMI_EVENT_GUID)) + return -ENODEV; + toshiba_proc_dir = proc_mkdir(PROC_TOSHIBA, acpi_root_dir); if (!toshiba_proc_dir) { pr_err("Unable to create proc dir " PROC_TOSHIBA "\n"); --- linux-3.2.0.orig/drivers/platform/x86/eeepc-wmi.c +++ linux-3.2.0/drivers/platform/x86/eeepc-wmi.c @@ -32,6 +32,7 @@ #include #include #include +#include #include #include "asus-wmi.h" @@ -87,6 +88,69 @@ { KE_END, 0}, }; +static struct quirk_entry quirk_asus_unknown = { +}; + +static struct quirk_entry quirk_asus_1000h = { + .hotplug_wireless = true, +}; + +static struct quirk_entry quirk_asus_et2012_type1 = { + .store_backlight_power = true, +}; + +static struct quirk_entry quirk_asus_et2012_type3 = { + .scalar_panel_brightness = true, + .store_backlight_power = true, +}; + +static struct quirk_entry *quirks; + +static int dmi_matched(const struct dmi_system_id *dmi) +{ + char *model; + quirks = dmi->driver_data; + + model = (char *)dmi->matches[1].substr; + if (unlikely(strncmp(model, "ET2012", 6) == 0)) { + const struct dmi_device *dev = NULL; + char oemstring[30]; + while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, + NULL, dev))) { + if (sscanf(dev->name, "AEMS%24c", oemstring) == 1) { + if (oemstring[18] == '1') + quirks = &quirk_asus_et2012_type1; + else if (oemstring[18] == '3') + quirks = &quirk_asus_et2012_type3; + break; + } + } + } + return 1; +} + +static struct dmi_system_id asus_quirks[] = { + { + .callback = dmi_matched, + .ident = "ASUSTeK Computer INC. 1000H", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "1000H"), + }, + .driver_data = &quirk_asus_1000h, + }, + { + .callback = dmi_matched, + .ident = "ASUSTeK Computer INC. ET2012E/I", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "ET2012"), + }, + .driver_data = &quirk_asus_unknown, + }, + {}, +}; + static void eeepc_wmi_key_filter(struct asus_wmi_driver *asus_wmi, int *code, unsigned int *value, bool *autorelease) { @@ -141,33 +205,16 @@ return 0; } -static void eeepc_dmi_check(struct asus_wmi_driver *driver) +static void eeepc_wmi_quirks(struct asus_wmi_driver *driver) { - const char *model; + quirks = &quirk_asus_unknown; + quirks->hotplug_wireless = hotplug_wireless; - model = dmi_get_system_info(DMI_PRODUCT_NAME); - if (!model) - return; - - /* - * Whitelist for wlan hotplug - * - * Asus 1000H needs the current hotplug code to handle - * Fn+F2 correctly. We may add other Asus here later, but - * it seems that most of the laptops supported by asus-wmi - * don't need to be on this list - */ - if (strcmp(model, "1000H") == 0) { - driver->hotplug_wireless = true; - pr_info("wlan hotplug enabled\n"); - } -} + dmi_check_system(asus_quirks); -static void eeepc_wmi_quirks(struct asus_wmi_driver *driver) -{ - driver->hotplug_wireless = hotplug_wireless; - driver->wapf = -1; - eeepc_dmi_check(driver); + driver->quirks = quirks; + driver->quirks->wapf = -1; + driver->panel_power = FB_BLANK_UNBLANK; } static struct asus_wmi_driver asus_wmi_driver = { @@ -179,7 +226,7 @@ .input_phys = EEEPC_WMI_FILE "/input0", .key_filter = eeepc_wmi_key_filter, .probe = eeepc_wmi_probe, - .quirks = eeepc_wmi_quirks, + .detect_quirks = eeepc_wmi_quirks, }; --- linux-3.2.0.orig/drivers/platform/x86/thinkpad_acpi.c +++ linux-3.2.0/drivers/platform/x86/thinkpad_acpi.c @@ -8661,7 +8661,7 @@ } s = dmi_get_system_info(DMI_PRODUCT_VERSION); - if (s && !strnicmp(s, "ThinkPad", 8)) { + if (s && !(strnicmp(s, "ThinkPad", 8) && strnicmp(s, "Lenovo", 6))) { tp->model_str = kstrdup(s, GFP_KERNEL); if (!tp->model_str) return -ENOMEM; --- linux-3.2.0.orig/drivers/platform/x86/sony-laptop.c +++ linux-3.2.0/drivers/platform/x86/sony-laptop.c @@ -127,7 +127,7 @@ "default is -1 (automatic)"); #endif -static int kbd_backlight; /* = 1 */ +static int kbd_backlight = 1; module_param(kbd_backlight, int, 0444); MODULE_PARM_DESC(kbd_backlight, "set this to 0 to disable keyboard backlight, " @@ -1879,6 +1879,10 @@ struct sonypi_event *events; }; +struct sony_pic_quirk_entry { + u8 set_wwan_power; +}; + struct sony_pic_dev { struct acpi_device *acpi_dev; struct sony_pic_irq *cur_irq; @@ -1889,6 +1893,7 @@ struct sonypi_eventtypes *event_types; int (*handle_irq)(const u8, const u8); int model; + struct sony_pic_quirk_entry *quirks; u16 evport_offset; u8 camera_power; u8 bluetooth_power; @@ -3315,6 +3320,12 @@ if (result) goto err_remove_pf; + if (spic_dev.quirks && spic_dev.quirks->set_wwan_power) { + /* + * Power isn't enabled by default. + */ + __sony_pic_set_wwanpower(1); + } return 0; err_remove_pf: @@ -3385,6 +3396,16 @@ }, }; +static struct sony_pic_quirk_entry sony_pic_vaio_vgn = { + .set_wwan_power = 1, +}; + +static int dmi_matched(const struct dmi_system_id *dmi) +{ + spic_dev.quirks = dmi->driver_data; + return 0; +} + static struct dmi_system_id __initdata sonypi_dmi_table[] = { { .ident = "Sony Vaio", @@ -3399,6 +3420,8 @@ DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), DMI_MATCH(DMI_PRODUCT_NAME, "VGN-"), }, + .callback = dmi_matched, + .driver_data = &sony_pic_vaio_vgn, }, { } }; --- linux-3.2.0.orig/drivers/platform/x86/dell-laptop.c +++ linux-3.2.0/drivers/platform/x86/dell-laptop.c @@ -119,6 +119,21 @@ }; static struct dmi_system_id __devinitdata dell_blacklist[] = { + /* dell_laptop breaks rfkill behavior (LP: #901410) */ + { + .ident = "Dell XPS 13z", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Dell System XPS L321X"), + }, + }, + { + .ident = "Dell XPS 15", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Dell System XPS L502X"), + }, + }, /* Supported by compal-laptop */ { .ident = "Dell Mini 9", @@ -184,6 +199,34 @@ }, .driver_data = &quirk_dell_vostro_v130, }, + { + .callback = dmi_matched, + .ident = "Dell Vostro 3555", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 3555"), + }, + .driver_data = &quirk_dell_vostro_v130, + }, + { + .callback = dmi_matched, + .ident = "Dell Inspiron N311z", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron N311z"), + }, + .driver_data = &quirk_dell_vostro_v130, + }, + { + .callback = dmi_matched, + .ident = "Dell Inspiron M5110", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron M5110"), + }, + .driver_data = &quirk_dell_vostro_v130, + }, + { } }; static struct calling_interface_buffer *buffer; @@ -615,6 +658,7 @@ static struct led_classdev touchpad_led = { .name = "dell-laptop::touchpad", .brightness_set = touchpad_led_set, + .flags = LED_CORE_SUSPENDRESUME, }; static int __devinit touchpad_led_init(struct device *dev) --- linux-3.2.0.orig/drivers/platform/x86/Kconfig +++ linux-3.2.0/drivers/platform/x86/Kconfig @@ -580,6 +580,7 @@ config ACPI_TOSHIBA tristate "Toshiba Laptop Extras" depends on ACPI + depends on ACPI_WMI select LEDS_CLASS select NEW_LEDS depends on BACKLIGHT_CLASS_DEVICE @@ -779,4 +780,14 @@ This driver provides support for backlight control on Samsung Q10 and related laptops, including Dell Latitude X200. +config APPLE_GMUX + tristate "Apple Gmux Driver" + depends on PNP + select BACKLIGHT_CLASS_DEVICE + ---help--- + This driver provides support for the gmux device found on many + Apple laptops, which controls the display mux for the hybrid + graphics as well as the backlight. Currently only backlight + control is supported by the driver. + endif # X86_PLATFORM_DEVICES --- linux-3.2.0.orig/drivers/platform/x86/asus-nb-wmi.c +++ linux-3.2.0/drivers/platform/x86/asus-nb-wmi.c @@ -51,9 +51,13 @@ module_param(wapf, uint, 0444); MODULE_PARM_DESC(wapf, "WAPF value"); +static struct quirk_entry quirk_asus_unknown = { +}; + static void asus_nb_wmi_quirks(struct asus_wmi_driver *driver) { - driver->wapf = wapf; + driver->quirks = &quirk_asus_unknown; + driver->quirks->wapf = wapf; } static const struct key_entry asus_nb_wmi_keymap[] = { @@ -99,7 +103,7 @@ .keymap = asus_nb_wmi_keymap, .input_name = "Asus WMI hotkeys", .input_phys = ASUS_NB_WMI_FILE "/input0", - .quirks = asus_nb_wmi_quirks, + .detect_quirks = asus_nb_wmi_quirks, }; --- linux-3.2.0.orig/drivers/platform/x86/Makefile +++ linux-3.2.0/drivers/platform/x86/Makefile @@ -29,7 +29,11 @@ obj-$(CONFIG_MSI_WMI) += msi-wmi.o obj-$(CONFIG_ACPI_ASUS) += asus_acpi.o obj-$(CONFIG_TOPSTAR_LAPTOP) += topstar-laptop.o + +# toshiba_acpi must link after wmi to ensure that wmi devices are found +# before toshiba_acpi initializes obj-$(CONFIG_ACPI_TOSHIBA) += toshiba_acpi.o + obj-$(CONFIG_TOSHIBA_BT_RFKILL) += toshiba_bluetooth.o obj-$(CONFIG_INTEL_SCU_IPC) += intel_scu_ipc.o obj-$(CONFIG_INTEL_SCU_IPC_UTIL) += intel_scu_ipcutil.o @@ -45,3 +49,4 @@ obj-$(CONFIG_INTEL_MID_POWER_BUTTON) += intel_mid_powerbtn.o obj-$(CONFIG_INTEL_OAKTRAIL) += intel_oaktrail.o obj-$(CONFIG_SAMSUNG_Q10) += samsung-q10.o +obj-$(CONFIG_APPLE_GMUX) += apple-gmux.o --- linux-3.2.0.orig/drivers/platform/x86/apple-gmux.c +++ linux-3.2.0/drivers/platform/x86/apple-gmux.c @@ -0,0 +1,242 @@ +/* + * Gmux driver for Apple laptops + * + * Copyright (C) Canonical Ltd. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + +#include +#include +#include +#include +#include +#include +#include +#include + +struct apple_gmux_data { + unsigned long iostart; + unsigned long iolen; + + struct backlight_device *bdev; +}; + +/* + * gmux port offsets. Many of these are not yet used, but may be in the + * future, and it's useful to have them documented here anyhow. + */ +#define GMUX_PORT_VERSION_MAJOR 0x04 +#define GMUX_PORT_VERSION_MINOR 0x05 +#define GMUX_PORT_VERSION_RELEASE 0x06 +#define GMUX_PORT_SWITCH_DISPLAY 0x10 +#define GMUX_PORT_SWITCH_GET_DISPLAY 0x11 +#define GMUX_PORT_INTERRUPT_ENABLE 0x14 +#define GMUX_PORT_INTERRUPT_STATUS 0x16 +#define GMUX_PORT_SWITCH_DDC 0x28 +#define GMUX_PORT_SWITCH_EXTERNAL 0x40 +#define GMUX_PORT_SWITCH_GET_EXTERNAL 0x41 +#define GMUX_PORT_DISCRETE_POWER 0x50 +#define GMUX_PORT_MAX_BRIGHTNESS 0x70 +#define GMUX_PORT_BRIGHTNESS 0x74 + +#define GMUX_MIN_IO_LEN (GMUX_PORT_BRIGHTNESS + 4) + +#define GMUX_INTERRUPT_ENABLE 0xff +#define GMUX_INTERRUPT_DISABLE 0x00 + +#define GMUX_INTERRUPT_STATUS_ACTIVE 0 +#define GMUX_INTERRUPT_STATUS_DISPLAY (1 << 0) +#define GMUX_INTERRUPT_STATUS_POWER (1 << 2) +#define GMUX_INTERRUPT_STATUS_HOTPLUG (1 << 3) + +#define GMUX_BRIGHTNESS_MASK 0x00ffffff +#define GMUX_MAX_BRIGHTNESS GMUX_BRIGHTNESS_MASK + +static inline u8 gmux_read8(struct apple_gmux_data *gmux_data, int port) +{ + return inb(gmux_data->iostart + port); +} + +static inline void gmux_write8(struct apple_gmux_data *gmux_data, int port, + u8 val) +{ + outb(val, gmux_data->iostart + port); +} + +static inline u32 gmux_read32(struct apple_gmux_data *gmux_data, int port) +{ + return inl(gmux_data->iostart + port); +} + +static int gmux_get_brightness(struct backlight_device *bd) +{ + struct apple_gmux_data *gmux_data = bl_get_data(bd); + return gmux_read32(gmux_data, GMUX_PORT_BRIGHTNESS) & + GMUX_BRIGHTNESS_MASK; +} + +static int gmux_update_status(struct backlight_device *bd) +{ + struct apple_gmux_data *gmux_data = bl_get_data(bd); + u32 brightness = bd->props.brightness; + + /* + * Older gmux versions require writing out lower bytes first then + * setting the upper byte to 0 to flush the values. Newer versions + * accept a single u32 write, but the old method also works, so we + * just use the old method for all gmux versions. + */ + gmux_write8(gmux_data, GMUX_PORT_BRIGHTNESS, brightness); + gmux_write8(gmux_data, GMUX_PORT_BRIGHTNESS + 1, brightness >> 8); + gmux_write8(gmux_data, GMUX_PORT_BRIGHTNESS + 2, brightness >> 16); + gmux_write8(gmux_data, GMUX_PORT_BRIGHTNESS + 3, 0); + + return 0; +} + +static const struct backlight_ops gmux_bl_ops = { + .get_brightness = gmux_get_brightness, + .update_status = gmux_update_status, +}; + +static int __devinit gmux_probe(struct pnp_dev *pnp, + const struct pnp_device_id *id) +{ + struct apple_gmux_data *gmux_data; + struct resource *res; + struct backlight_properties props; + struct backlight_device *bdev; + u8 ver_major, ver_minor, ver_release; + int ret = -ENXIO; + + gmux_data = kzalloc(sizeof(*gmux_data), GFP_KERNEL); + if (!gmux_data) + return -ENOMEM; + pnp_set_drvdata(pnp, gmux_data); + + res = pnp_get_resource(pnp, IORESOURCE_IO, 0); + if (!res) { + pr_err("Failed to find gmux I/O resource\n"); + goto err_free; + } + + gmux_data->iostart = res->start; + gmux_data->iolen = res->end - res->start; + + if (gmux_data->iolen < GMUX_MIN_IO_LEN) { + pr_err("gmux I/O region too small (%lu < %u)\n", + gmux_data->iolen, GMUX_MIN_IO_LEN); + goto err_free; + } + + if (!request_region(gmux_data->iostart, gmux_data->iolen, + "Apple gmux")) { + pr_err("gmux I/O already in use\n"); + goto err_free; + } + + /* + * On some machines the gmux is in ACPI even thought the machine + * doesn't really have a gmux. Check for invalid version information + * to detect this. + */ + ver_major = gmux_read8(gmux_data, GMUX_PORT_VERSION_MAJOR); + ver_minor = gmux_read8(gmux_data, GMUX_PORT_VERSION_MINOR); + ver_release = gmux_read8(gmux_data, GMUX_PORT_VERSION_RELEASE); + if (ver_major == 0xff && ver_minor == 0xff && ver_release == 0xff) { + pr_info("gmux device not present\n"); + ret = -ENODEV; + goto err_release; + } + + pr_info("Found gmux version %d.%d.%d\n", ver_major, ver_minor, + ver_release); + + memset(&props, 0, sizeof(props)); + props.type = BACKLIGHT_PLATFORM; + props.max_brightness = gmux_read32(gmux_data, GMUX_PORT_MAX_BRIGHTNESS); + + /* + * Currently it's assumed that the maximum brightness is less than + * 2^24 for compatibility with old gmux versions. Cap the max + * brightness at this value, but print a warning if the hardware + * reports something higher so that it can be fixed. + */ + if (WARN_ON(props.max_brightness > GMUX_MAX_BRIGHTNESS)) + props.max_brightness = GMUX_MAX_BRIGHTNESS; + + bdev = backlight_device_register("gmux_backlight", &pnp->dev, + gmux_data, &gmux_bl_ops, &props); + if (IS_ERR(bdev)) { + ret = PTR_ERR(bdev); + goto err_release; + } + + gmux_data->bdev = bdev; + bdev->props.brightness = gmux_get_brightness(bdev); + backlight_update_status(bdev); + + /* + * The backlight situation on Macs is complicated. If the gmux is + * present it's the best choice, because it always works for + * backlight control and supports more levels than other options. + * Disable the other backlight choices. + */ + acpi_video_unregister(); + apple_bl_unregister(); + + return 0; + +err_release: + release_region(gmux_data->iostart, gmux_data->iolen); +err_free: + kfree(gmux_data); + return ret; +} + +static void __devexit gmux_remove(struct pnp_dev *pnp) +{ + struct apple_gmux_data *gmux_data = pnp_get_drvdata(pnp); + + backlight_device_unregister(gmux_data->bdev); + release_region(gmux_data->iostart, gmux_data->iolen); + kfree(gmux_data); + + acpi_video_register(); + apple_bl_register(); +} + +static const struct pnp_device_id gmux_device_ids[] = { + {"APP000B", 0}, + {"", 0} +}; + +static struct pnp_driver gmux_pnp_driver = { + .name = "apple-gmux", + .probe = gmux_probe, + .remove = __devexit_p(gmux_remove), + .id_table = gmux_device_ids, +}; + +static int __init apple_gmux_init(void) +{ + return pnp_register_driver(&gmux_pnp_driver); +} + +static void __exit apple_gmux_exit(void) +{ + pnp_unregister_driver(&gmux_pnp_driver); +} + +module_init(apple_gmux_init); +module_exit(apple_gmux_exit); + +MODULE_AUTHOR("Seth Forshee "); +MODULE_DESCRIPTION("Apple Gmux Driver"); +MODULE_LICENSE("GPL"); +MODULE_DEVICE_TABLE(pnp, gmux_device_ids); --- linux-3.2.0.orig/drivers/platform/x86/dell-wmi.c +++ linux-3.2.0/drivers/platform/x86/dell-wmi.c @@ -165,7 +165,7 @@ u16 *buffer_entry = (u16 *)obj->buffer.pointer; if (dell_new_hk_type && (buffer_entry[1] != 0x10)) { - pr_info("Received unknown WMI event (0x%x)\n", + pr_debug("Received unknown WMI event (0x%x)\n", buffer_entry[1]); kfree(obj); return; --- linux-3.2.0.orig/drivers/platform/x86/asus-wmi.h +++ linux-3.2.0/drivers/platform/x86/asus-wmi.h @@ -35,9 +35,16 @@ struct key_entry; struct asus_wmi; +struct quirk_entry { + bool hotplug_wireless; + bool scalar_panel_brightness; + bool store_backlight_power; + int wapf; +}; + struct asus_wmi_driver { - bool hotplug_wireless; - int wapf; + int brightness; + int panel_power; const char *name; struct module *owner; @@ -47,13 +54,14 @@ const struct key_entry *keymap; const char *input_name; const char *input_phys; + struct quirk_entry *quirks; /* Returns new code, value, and autorelease values in arguments. * Return ASUS_WMI_KEY_IGNORE in code if event should be ignored. */ void (*key_filter) (struct asus_wmi_driver *driver, int *code, unsigned int *value, bool *autorelease); int (*probe) (struct platform_device *device); - void (*quirks) (struct asus_wmi_driver *driver); + void (*detect_quirks) (struct asus_wmi_driver *driver); struct platform_driver platform_driver; struct platform_device *platform_device; --- linux-3.2.0.orig/drivers/platform/x86/acer-wmi.c +++ linux-3.2.0/drivers/platform/x86/acer-wmi.c @@ -105,6 +105,7 @@ {KE_KEY, 0x22, {KEY_PROG2} }, /* Arcade */ {KE_KEY, 0x23, {KEY_PROG3} }, /* P_Key */ {KE_KEY, 0x24, {KEY_PROG4} }, /* Social networking_Key */ + {KE_KEY, 0x29, {KEY_PROG3} }, /* P_Key for TM8372 */ {KE_IGNORE, 0x41, {KEY_MUTE} }, {KE_IGNORE, 0x42, {KEY_PREVIOUSSONG} }, {KE_IGNORE, 0x43, {KEY_NEXTSONG} }, @@ -679,6 +680,33 @@ return AE_OK; } +static int AMW0_set_cap_acpi_check_device_found; + +static acpi_status AMW0_set_cap_acpi_check_device_cb(acpi_handle handle, + u32 level, void *context, void **retval) +{ + AMW0_set_cap_acpi_check_device_found = 1; + return AE_OK; +} + +static const struct acpi_device_id norfkill_ids[] = { + { "VPC2004", 0}, + { "IBM0068", 0}, + { "LEN0068", 0}, + { "SNY5001", 0}, /* sony-laptop in charge */ + { "", 0}, +}; + +static int AMW0_set_cap_acpi_check_device(void) +{ + const struct acpi_device_id *id; + + for (id = norfkill_ids; id->id[0]; id++) + acpi_get_devices(id->id, AMW0_set_cap_acpi_check_device_cb, + NULL, NULL); + return AMW0_set_cap_acpi_check_device_found; +} + static acpi_status AMW0_set_capabilities(void) { struct wmab_args args; @@ -692,7 +720,9 @@ * work. */ if (wmi_has_guid(AMW0_GUID2)) { - interface->capability |= ACER_CAP_WIRELESS; + if ((quirks != &quirk_unknown) || + !AMW0_set_cap_acpi_check_device()) + interface->capability |= ACER_CAP_WIRELESS; return AE_OK; } --- linux-3.2.0.orig/drivers/platform/x86/asus-wmi.c +++ linux-3.2.0/drivers/platform/x86/asus-wmi.c @@ -784,7 +784,8 @@ arfkill->dev_id = dev_id; arfkill->asus = asus; - if (dev_id == ASUS_WMI_DEVID_WLAN && asus->driver->hotplug_wireless) + if (dev_id == ASUS_WMI_DEVID_WLAN && + asus->driver->quirks->hotplug_wireless) *rfkill = rfkill_alloc(name, &asus->platform_device->dev, type, &asus_rfkill_wlan_ops, arfkill); else @@ -895,7 +896,7 @@ if (result && result != -ENODEV) goto exit; - if (!asus->driver->hotplug_wireless) + if (!asus->driver->quirks->hotplug_wireless) goto exit; result = asus_setup_pci_hotplug(asus); @@ -1075,7 +1076,12 @@ */ static int read_backlight_power(struct asus_wmi *asus) { - int ret = asus_wmi_get_devstate_simple(asus, ASUS_WMI_DEVID_BACKLIGHT); + int ret; + if (asus->driver->quirks->store_backlight_power) + ret = !asus->driver->panel_power; + else + ret = asus_wmi_get_devstate_simple(asus, + ASUS_WMI_DEVID_BACKLIGHT); if (ret < 0) return ret; @@ -1116,25 +1122,44 @@ return retval & ASUS_WMI_DSTS_BRIGHTNESS_MASK; } -static int update_bl_status(struct backlight_device *bd) +static u32 get_scalar_command(struct backlight_device *bd) { struct asus_wmi *asus = bl_get_data(bd); - u32 ctrl_param; - int power, err; + u32 ctrl_param = 0; - ctrl_param = bd->props.brightness; + if ((asus->driver->brightness < bd->props.brightness) || + bd->props.brightness == bd->props.max_brightness) + ctrl_param = 0x00008001; + else if ((asus->driver->brightness > bd->props.brightness) || + bd->props.brightness == 0) + ctrl_param = 0x00008000; - err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BRIGHTNESS, - ctrl_param, NULL); + asus->driver->brightness = bd->props.brightness; - if (err < 0) - return err; + return ctrl_param; +} + +static int update_bl_status(struct backlight_device *bd) +{ + struct asus_wmi *asus = bl_get_data(bd); + u32 ctrl_param; + int power, err = 0; power = read_backlight_power(asus); if (power != -ENODEV && bd->props.power != power) { ctrl_param = !!(bd->props.power == FB_BLANK_UNBLANK); err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BACKLIGHT, ctrl_param, NULL); + if (asus->driver->quirks->store_backlight_power) + asus->driver->panel_power = bd->props.power; + } else { + if (asus->driver->quirks->scalar_panel_brightness) + ctrl_param = get_scalar_command(bd); + else + ctrl_param = bd->props.brightness; + + err = asus_wmi_set_devstate(ASUS_WMI_DEVID_BRIGHTNESS, + ctrl_param, NULL); } return err; } @@ -1196,10 +1221,15 @@ asus->backlight_device = bd; + if (asus->driver->quirks->store_backlight_power) + asus->driver->panel_power = power; + bd->props.brightness = read_brightness(bd); bd->props.power = power; backlight_update_status(bd); + asus->driver->brightness = bd->props.brightness; + return 0; } @@ -1441,9 +1471,9 @@ /* CWAP allow to define the behavior of the Fn+F2 key, * this method doesn't seems to be present on Eee PCs */ - if (asus->driver->wapf >= 0) + if (asus->driver->quirks->wapf >= 0) asus_wmi_set_devstate(ASUS_WMI_DEVID_CWAP, - asus->driver->wapf, NULL); + asus->driver->quirks->wapf, NULL); return asus_wmi_sysfs_init(asus->platform_device); } @@ -1622,8 +1652,8 @@ wdrv->platform_device = pdev; platform_set_drvdata(asus->platform_device, asus); - if (wdrv->quirks) - wdrv->quirks(asus->driver); + if (wdrv->detect_quirks) + wdrv->detect_quirks(asus->driver); err = asus_wmi_platform_init(asus); if (err) --- linux-3.2.0.orig/drivers/platform/x86/samsung-laptop.c +++ linux-3.2.0/drivers/platform/x86/samsung-laptop.c @@ -579,6 +579,16 @@ .callback = dmi_check_cb, }, { + .ident = "N150P", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, + "SAMSUNG ELECTRONICS CO., LTD."), + DMI_MATCH(DMI_PRODUCT_NAME, "N150P"), + DMI_MATCH(DMI_BOARD_NAME, "N150P"), + }, + .callback = dmi_check_cb, + }, + { .ident = "X125", .matches = { DMI_MATCH(DMI_SYS_VENDOR, --- linux-3.2.0.orig/drivers/input/keyboard/Kconfig +++ linux-3.2.0/drivers/input/keyboard/Kconfig @@ -203,6 +203,17 @@ To compile this driver as a module, choose M here: the module will be called gpio_keys_polled. +config KEYBOARD_HIGHBANK + tristate "Calxeda Highbank Virtual Keys" + depends on ARCH_HIGHBANK + default y + help + This driver implements support for virtual power keys on Calxeda + Highbank systems. + + To compile this driver as a module, choose M here: the + module will be called highbank_keys. + config KEYBOARD_TCA6416 tristate "TCA6416/TCA6408A Keypad Support" depends on I2C --- linux-3.2.0.orig/drivers/input/keyboard/highbank_keys.c +++ linux-3.2.0/drivers/input/keyboard/highbank_keys.c @@ -0,0 +1,141 @@ +/* + * Copyright 2011 Calxeda, Inc. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see . + */ +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +struct hb_keys_drvdata { + struct input_dev *input; + struct notifier_block nb; +}; + +int hb_keys_notifier(struct notifier_block *nb, unsigned long event, void *data) +{ + struct hb_keys_drvdata *ddata = container_of(nb, struct hb_keys_drvdata, nb); + struct input_dev *input = ddata->input; + u32 *d = data; + u32 key = d[0]; + + if (event != 0x1000 /*HB_IPC_KEY*/) + return 0; + + input_event(input, EV_KEY, key, 1); + input_event(input, EV_KEY, key, 0); + input_sync(input); + return 0; +} + +static int hb_keys_open(struct input_dev *input) +{ + struct hb_keys_drvdata *ddata = input_get_drvdata(input); + return pl320_ipc_register_notifier(&ddata->nb); +} + +static void hb_keys_close(struct input_dev *input) +{ + struct hb_keys_drvdata *ddata = input_get_drvdata(input); + pl320_ipc_unregister_notifier(&ddata->nb); +} + +static int __devinit hb_keys_probe(struct platform_device *pdev) +{ + struct hb_keys_drvdata *ddata; + struct device *dev = &pdev->dev; + struct input_dev *input; + int error; + + ddata = kzalloc(sizeof(*ddata), GFP_KERNEL); + if (!ddata) + return -ENOMEM; + + input = input_allocate_device(); + if (!input) { + dev_err(dev, "failed to allocate state\n"); + error = -ENOMEM; + goto fail1; + } + + platform_set_drvdata(pdev, ddata); + input_set_drvdata(input, ddata); + + ddata->input = input; + ddata->nb.notifier_call = hb_keys_notifier; + + input->name = pdev->name; + input->phys = "highbank/input0"; + input->dev.parent = &pdev->dev; + input->open = hb_keys_open; + input->close = hb_keys_close; + + input->id.bustype = BUS_HOST; + input->id.vendor = 0x0001; + input->id.product = 0x0001; + input->id.version = 0x0100; + + input_set_capability(input, EV_KEY, KEY_POWER); + input_set_capability(input, EV_KEY, KEY_SLEEP); + + error = input_register_device(input); + if (error) { + dev_err(dev, "Unable to register input device, error: %d\n", + error); + goto fail2; + } + + return 0; + + fail2: + input_free_device(input); + fail1: + kfree(ddata); + return error; +} + +static int __devexit hb_keys_remove(struct platform_device *pdev) +{ + struct hb_keys_drvdata *ddata = platform_get_drvdata(pdev); + input_unregister_device(ddata->input); + kfree(ddata); + return 0; +} + +static struct of_device_id hb_keys_of_match[] = { + { .compatible = "calxeda,hb-keys", }, + { }, +}; +MODULE_DEVICE_TABLE(of, hb_keys_of_match); + +static struct platform_driver hb_keys_driver = { + .probe = hb_keys_probe, + .remove = __devexit_p(hb_keys_remove), + .driver = { + .name = "hb-keys", + .of_match_table = hb_keys_of_match, + } +}; + +module_platform_driver(hb_keys_driver); + +MODULE_LICENSE("GPL"); +MODULE_AUTHOR("Calxeda, Inc."); +MODULE_DESCRIPTION("Keys driver for Calxeda Highbank"); --- linux-3.2.0.orig/drivers/input/keyboard/Makefile +++ linux-3.2.0/drivers/input/keyboard/Makefile @@ -15,6 +15,7 @@ obj-$(CONFIG_KEYBOARD_EP93XX) += ep93xx_keypad.o obj-$(CONFIG_KEYBOARD_GPIO) += gpio_keys.o obj-$(CONFIG_KEYBOARD_GPIO_POLLED) += gpio_keys_polled.o +obj-$(CONFIG_KEYBOARD_HIGHBANK) += highbank_keys.o obj-$(CONFIG_KEYBOARD_TCA6416) += tca6416-keypad.o obj-$(CONFIG_KEYBOARD_HIL) += hil_kbd.o obj-$(CONFIG_KEYBOARD_HIL_OLD) += hilkbd.o --- linux-3.2.0.orig/drivers/input/tablet/wacom_wac.h +++ linux-3.2.0/drivers/input/tablet/wacom_wac.h @@ -12,7 +12,7 @@ #include /* maximum packet length for USB devices */ -#define WACOM_PKGLEN_MAX 32 +#define WACOM_PKGLEN_MAX 64 /* packet length for individual models */ #define WACOM_PKGLEN_PENPRTN 7 @@ -22,6 +22,8 @@ #define WACOM_PKGLEN_TPC1FG 5 #define WACOM_PKGLEN_TPC2FG 14 #define WACOM_PKGLEN_BBTOUCH 20 +#define WACOM_PKGLEN_BBTOUCH3 64 +#define WACOM_PKGLEN_BBPEN 10 /* device IDs */ #define STYLUS_DEVICE_ID 0x02 @@ -57,6 +59,7 @@ INTUOS4S, INTUOS4, INTUOS4L, + WACOM_24HD, WACOM_21UX2, CINTIQ, WACOM_BEE, --- linux-3.2.0.orig/drivers/input/tablet/Kconfig +++ linux-3.2.0/drivers/input/tablet/Kconfig @@ -77,6 +77,8 @@ tristate "Wacom Intuos/Graphire tablet support (USB)" depends on USB_ARCH_HAS_HCD select USB + select NEW_LEDS + select LEDS_CLASS help Say Y here if you want to use the USB version of the Wacom Intuos or Graphire tablet. Make sure to say Y to "Mouse support" --- linux-3.2.0.orig/drivers/input/tablet/wacom_wac.c +++ linux-3.2.0/drivers/input/tablet/wacom_wac.c @@ -452,7 +452,7 @@ if ((data[1] & 0xb8) == 0xa0) { t = (data[6] << 2) | ((data[7] >> 6) & 3); if ((features->type >= INTUOS4S && features->type <= INTUOS4L) || - features->type == WACOM_21UX2) { + features->type == WACOM_21UX2 || features->type == WACOM_24HD) { t = (t << 1) | (data[1] & 1); } input_report_abs(input, ABS_PRESSURE, t); @@ -519,6 +519,56 @@ input_report_key(input, wacom->tool[1], 0); input_report_abs(input, ABS_MISC, 0); } + } else if (features->type == WACOM_24HD) { + input_report_key(input, BTN_0, (data[6] & 0x01)); + input_report_key(input, BTN_1, (data[6] & 0x02)); + input_report_key(input, BTN_2, (data[6] & 0x04)); + input_report_key(input, BTN_3, (data[6] & 0x08)); + input_report_key(input, BTN_4, (data[6] & 0x10)); + input_report_key(input, BTN_5, (data[6] & 0x20)); + input_report_key(input, BTN_6, (data[6] & 0x40)); + input_report_key(input, BTN_7, (data[6] & 0x80)); + input_report_key(input, BTN_8, (data[8] & 0x01)); + input_report_key(input, BTN_9, (data[8] & 0x02)); + input_report_key(input, BTN_A, (data[8] & 0x04)); + input_report_key(input, BTN_B, (data[8] & 0x08)); + input_report_key(input, BTN_C, (data[8] & 0x10)); + input_report_key(input, BTN_X, (data[8] & 0x20)); + input_report_key(input, BTN_Y, (data[8] & 0x40)); + input_report_key(input, BTN_Z, (data[8] & 0x80)); + + /* + * Three "buttons" are available on the 24HD which are + * physically implemented as a touchstrip. Each button + * is approximately 3 bits wide with a 2 bit spacing. + * The raw touchstrip bits are stored at: + * ((data[3] & 0x1f) << 8) | data[4]) + */ + input_report_key(input, KEY_PROG1, data[4] & 0x07); + input_report_key(input, KEY_PROG2, data[4] & 0xE0); + input_report_key(input, KEY_PROG3, data[3] & 0x1C); + + if (data[1] & 0x80) { + input_report_abs(input, ABS_WHEEL, (data[1] & 0x7f)); + } else { + /* Out of proximity, clear wheel value. */ + input_report_abs(input, ABS_WHEEL, 0); + } + + if (data[2] & 0x80) { + input_report_abs(input, ABS_THROTTLE, (data[2] & 0x7f)); + } else { + /* Out of proximity, clear second wheel value. */ + input_report_abs(input, ABS_THROTTLE, 0); + } + + if (data[1] | data[2] | (data[3] & 0x1f) | data[4] | data[6] | data[8]) { + input_report_key(input, wacom->tool[1], 1); + input_report_abs(input, ABS_MISC, PAD_DEVICE_ID); + } else { + input_report_key(input, wacom->tool[1], 0); + input_report_abs(input, ABS_MISC, 0); + } } else { if (features->type == WACOM_21UX2) { input_report_key(input, BTN_0, (data[5] & 0x01)); @@ -799,6 +849,9 @@ unsigned char *data = wacom->data; int i; + if (data[0] != 0x02) + return 0; + for (i = 0; i < 2; i++) { int offset = (data[1] & 0x80) ? (8 * i) : (9 * i); bool touch = data[offset + 3] & 0x80; @@ -837,18 +890,77 @@ return 0; } +static void wacom_bpt3_touch_msg(struct wacom_wac *wacom, unsigned char *data) +{ + struct input_dev *input = wacom->input; + int slot_id = data[0] - 2; /* data[0] is between 2 and 17 */ + bool touch = data[1] & 0x80; + + touch = touch && !wacom->shared->stylus_in_proximity; + + input_mt_slot(input, slot_id); + input_mt_report_slot_state(input, MT_TOOL_FINGER, touch); + + if (touch) { + int x = (data[2] << 4) | (data[4] >> 4); + int y = (data[3] << 4) | (data[4] & 0x0f); + int w = data[6]; + + input_report_abs(input, ABS_MT_POSITION_X, x); + input_report_abs(input, ABS_MT_POSITION_Y, y); + input_report_abs(input, ABS_MT_TOUCH_MAJOR, w); + } +} + +static void wacom_bpt3_button_msg(struct wacom_wac *wacom, unsigned char *data) +{ + struct input_dev *input = wacom->input; + + input_report_key(input, BTN_LEFT, (data[1] & 0x08) != 0); + input_report_key(input, BTN_FORWARD, (data[1] & 0x04) != 0); + input_report_key(input, BTN_BACK, (data[1] & 0x02) != 0); + input_report_key(input, BTN_RIGHT, (data[1] & 0x01) != 0); +} + +static int wacom_bpt3_touch(struct wacom_wac *wacom) +{ + struct input_dev *input = wacom->input; + unsigned char *data = wacom->data; + int count = data[1] & 0x07; + int i; + + if (data[0] != 0x02) + return 0; + + /* data has up to 7 fixed sized 8-byte messages starting at data[2] */ + for (i = 0; i < count; i++) { + int offset = (8 * i) + 2; + int msg_id = data[offset]; + + if (msg_id >= 2 && msg_id <= 17) + wacom_bpt3_touch_msg(wacom, data + offset); + else if (msg_id == 128) + wacom_bpt3_button_msg(wacom, data + offset); + + } + + input_mt_report_pointer_emulation(input, true); + + input_sync(input); + + return 0; +} + static int wacom_bpt_pen(struct wacom_wac *wacom) { struct input_dev *input = wacom->input; unsigned char *data = wacom->data; int prox = 0, x = 0, y = 0, p = 0, d = 0, pen = 0, btn1 = 0, btn2 = 0; - /* - * Similar to Graphire protocol, data[1] & 0x20 is proximity and - * data[1] & 0x18 is tool ID. 0x30 is safety check to ignore - * 2 unused tool ID's. - */ - prox = (data[1] & 0x30) == 0x30; + if (data[0] != 0x02) + return 0; + + prox = (data[1] & 0x20) == 0x20; /* * All reports shared between PEN and RUBBER tool must be @@ -912,7 +1024,9 @@ { if (len == WACOM_PKGLEN_BBTOUCH) return wacom_bpt_touch(wacom); - else if (len == WACOM_PKGLEN_BBFUN) + else if (len == WACOM_PKGLEN_BBTOUCH3) + return wacom_bpt3_touch(wacom); + else if (len == WACOM_PKGLEN_BBFUN || len == WACOM_PKGLEN_BBPEN) return wacom_bpt_pen(wacom); return 0; @@ -955,6 +1069,7 @@ case CINTIQ: case WACOM_BEE: case WACOM_21UX2: + case WACOM_24HD: sync = wacom_intuos_irq(wacom_wac); break; @@ -1031,9 +1146,9 @@ features->type == BAMBOO_PT) features->quirks |= WACOM_QUIRK_MULTI_INPUT; - /* quirks for bamboo touch */ + /* quirk for bamboo touch with 2 low res touches */ if (features->type == BAMBOO_PT && - features->device_type == BTN_TOOL_DOUBLETAP) { + features->pktlen == WACOM_PKGLEN_BBTOUCH) { features->x_max <<= 5; features->y_max <<= 5; features->x_fuzz <<= 5; @@ -1110,6 +1225,26 @@ __set_bit(INPUT_PROP_POINTER, input_dev->propbit); break; + case WACOM_24HD: + __set_bit(BTN_A, input_dev->keybit); + __set_bit(BTN_B, input_dev->keybit); + __set_bit(BTN_C, input_dev->keybit); + __set_bit(BTN_X, input_dev->keybit); + __set_bit(BTN_Y, input_dev->keybit); + __set_bit(BTN_Z, input_dev->keybit); + + for (i = 0; i < 10; i++) + __set_bit(BTN_0 + i, input_dev->keybit); + + __set_bit(KEY_PROG1, input_dev->keybit); + __set_bit(KEY_PROG2, input_dev->keybit); + __set_bit(KEY_PROG3, input_dev->keybit); + + input_set_abs_params(input_dev, ABS_Z, -900, 899, 0, 0); + input_set_abs_params(input_dev, ABS_THROTTLE, 0, 71, 0, 0); + wacom_setup_cintiq(wacom_wac); + break; + case WACOM_21UX2: __set_bit(BTN_A, input_dev->keybit); __set_bit(BTN_B, input_dev->keybit); @@ -1240,7 +1375,21 @@ __set_bit(BTN_TOOL_FINGER, input_dev->keybit); __set_bit(BTN_TOOL_DOUBLETAP, input_dev->keybit); - input_mt_init_slots(input_dev, 2); + if (features->pktlen == WACOM_PKGLEN_BBTOUCH3) { + __set_bit(BTN_TOOL_TRIPLETAP, + input_dev->keybit); + __set_bit(BTN_TOOL_QUADTAP, + input_dev->keybit); + + input_mt_init_slots(input_dev, 16); + + input_set_abs_params(input_dev, + ABS_MT_TOUCH_MAJOR, + 0, 255, 0, 0); + } else { + input_mt_init_slots(input_dev, 2); + } + input_set_abs_params(input_dev, ABS_MT_POSITION_X, 0, features->x_max, features->x_fuzz, 0); @@ -1425,6 +1574,9 @@ static const struct wacom_features wacom_features_0xBC = { "Wacom Intuos4 WL", WACOM_PKGLEN_INTUOS, 40840, 25400, 2047, 63, INTUOS4, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; +static const struct wacom_features wacom_features_0xF4 = + { "Wacom Cintiq 24HD", WACOM_PKGLEN_INTUOS, 104480, 65600, 2047, + 63, WACOM_24HD, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; static const struct wacom_features wacom_features_0x3F = { "Wacom Cintiq 21UX", WACOM_PKGLEN_INTUOS, 87200, 65600, 1023, 63, CINTIQ, WACOM_INTUOS3_RES, WACOM_INTUOS3_RES }; @@ -1509,6 +1661,15 @@ static struct wacom_features wacom_features_0xDB = { "Wacom Bamboo 2FG 6x8 SE", WACOM_PKGLEN_BBFUN, 21648, 13700, 1023, 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; +static const struct wacom_features wacom_features_0xDD = + { "Wacom Bamboo Connect", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023, + 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; +static const struct wacom_features wacom_features_0xDE = + { "Wacom Bamboo 16FG 4x5", WACOM_PKGLEN_BBPEN, 14720, 9200, 1023, + 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; +static const struct wacom_features wacom_features_0xDF = + { "Wacom Bamboo 16FG 6x8", WACOM_PKGLEN_BBPEN, 21648, 13700, 1023, + 31, BAMBOO_PT, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; static const struct wacom_features wacom_features_0x6004 = { "ISD-V4", WACOM_PKGLEN_GRAPHIRE, 12800, 8000, 255, 0, TABLETPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; @@ -1604,6 +1765,9 @@ { USB_DEVICE_WACOM(0xD8) }, { USB_DEVICE_WACOM(0xDA) }, { USB_DEVICE_WACOM(0xDB) }, + { USB_DEVICE_WACOM(0xDD) }, + { USB_DEVICE_WACOM(0xDE) }, + { USB_DEVICE_WACOM(0xDF) }, { USB_DEVICE_WACOM(0xF0) }, { USB_DEVICE_WACOM(0xCC) }, { USB_DEVICE_WACOM(0x90) }, @@ -1616,6 +1780,7 @@ { USB_DEVICE_WACOM(0xE6) }, { USB_DEVICE_WACOM(0xEC) }, { USB_DEVICE_WACOM(0x47) }, + { USB_DEVICE_WACOM(0xF4) }, { USB_DEVICE_LENOVO(0x6004) }, { } }; --- linux-3.2.0.orig/drivers/input/tablet/wacom_sys.c +++ linux-3.2.0/drivers/input/tablet/wacom_sys.c @@ -28,7 +28,9 @@ #define HID_USAGE_Y_TILT 0x3e #define HID_USAGE_FINGER 0x22 #define HID_USAGE_STYLUS 0x20 -#define HID_COLLECTION 0xc0 +#define HID_COLLECTION 0xa1 +#define HID_COLLECTION_LOGICAL 0x02 +#define HID_COLLECTION_END 0xc0 enum { WCM_UNDEFINED = 0, @@ -66,7 +68,8 @@ do { retval = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), USB_REQ_GET_REPORT, - USB_TYPE_CLASS | USB_RECIP_INTERFACE, + USB_DIR_IN | USB_TYPE_CLASS | + USB_RECIP_INTERFACE, (type << 8) + id, intf->altsetting[0].desc.bInterfaceNumber, buf, size, 100); @@ -164,7 +167,70 @@ usb_autopm_put_interface(wacom->intf); } -static int wacom_parse_hid(struct usb_interface *intf, struct hid_descriptor *hid_desc, +static int wacom_parse_logical_collection(unsigned char *report, + struct wacom_features *features) +{ + int length = 0; + + if (features->type == BAMBOO_PT) { + + /* Logical collection is only used by 3rd gen Bamboo Touch */ + features->pktlen = WACOM_PKGLEN_BBTOUCH3; + features->device_type = BTN_TOOL_DOUBLETAP; + + /* + * Stylus and Touch have same active area + * so compute physical size based on stylus + * data before its overwritten. + */ + features->x_phy = + (features->x_max * features->x_resolution) / 100; + features->y_phy = + (features->y_max * features->y_resolution) / 100; + + features->x_max = features->y_max = + get_unaligned_le16(&report[10]); + + length = 11; + } + return length; +} + +/* + * Interface Descriptor of wacom devices can be incomplete and + * inconsistent so wacom_features table is used to store stylus + * device's packet lengths, various maximum values, and tablet + * resolution based on product ID's. + * + * For devices that contain 2 interfaces, wacom_features table is + * inaccurate for the touch interface. Since the Interface Descriptor + * for touch interfaces has pretty complete data, this function exists + * to query tablet for this missing information instead of hard coding in + * an additional table. + * + * A typical Interface Descriptor for a stylus will contain a + * boot mouse application collection that is not of interest and this + * function will ignore it. + * + * It also contains a digitizer application collection that also is not + * of interest since any information it contains would be duplicate + * of what is in wacom_features. Usually it defines a report of an array + * of bytes that could be used as max length of the stylus packet returned. + * If it happens to define a Digitizer-Stylus Physical Collection then + * the X and Y logical values contain valid data but it is ignored. + * + * A typical Interface Descriptor for a touch interface will contain a + * Digitizer-Finger Physical Collection which will define both logical + * X/Y maximum as well as the physical size of tablet. Since touch + * interfaces haven't supported pressure or distance, this is enough + * information to override invalid values in the wacom_features table. + * + * 3rd gen Bamboo Touch no longer define a Digitizer-Finger Pysical + * Collection. Instead they define a Logical Collection with a single + * Logical Maximum for both X and Y. + */ +static int wacom_parse_hid(struct usb_interface *intf, + struct hid_descriptor *hid_desc, struct wacom_features *features) { struct usb_device *dev = interface_to_usbdev(intf); @@ -244,8 +310,6 @@ /* penabled only accepts exact bytes of data */ if (features->type == TABLETPC2FG) features->pktlen = WACOM_PKGLEN_GRAPHIRE; - if (features->type == BAMBOO_PT) - features->pktlen = WACOM_PKGLEN_BBFUN; features->device_type = BTN_TOOL_PEN; features->x_max = get_unaligned_le16(&report[i + 3]); @@ -287,8 +351,6 @@ /* penabled only accepts exact bytes of data */ if (features->type == TABLETPC2FG) features->pktlen = WACOM_PKGLEN_GRAPHIRE; - if (features->type == BAMBOO_PT) - features->pktlen = WACOM_PKGLEN_BBFUN; features->device_type = BTN_TOOL_PEN; features->y_max = get_unaligned_le16(&report[i + 3]); @@ -302,6 +364,11 @@ i++; break; + /* + * Requiring Stylus Usage will ignore boot mouse + * X/Y values and some cases of invalid Digitizer X/Y + * values commonly reported. + */ case HID_USAGE_STYLUS: pen = 1; i++; @@ -309,10 +376,20 @@ } break; - case HID_COLLECTION: + case HID_COLLECTION_END: /* reset UsagePage and Finger */ finger = usage = 0; break; + + case HID_COLLECTION: + i++; + switch (report[i]) { + case HID_COLLECTION_LOGICAL: + i += wacom_parse_logical_collection(&report[i], + features); + break; + } + break; } } @@ -348,7 +425,8 @@ WAC_HID_FEATURE_REPORT, report_id, rep_data, 4, 1); } while ((error < 0 || rep_data[1] != 4) && limit++ < WAC_MSG_RETRIES); - } else if (features->type != TABLETPC) { + } else if (features->type != TABLETPC && + features->device_type == BTN_TOOL_PEN) { do { rep_data[0] = 2; rep_data[1] = 2; @@ -485,7 +563,8 @@ if (!buf) return -ENOMEM; - if (wacom->wacom_wac.features.type == WACOM_21UX2) + if (wacom->wacom_wac.features.type == WACOM_21UX2 || + wacom->wacom_wac.features.type == WACOM_24HD) led = (wacom->led.select[1] << 4) | 0x40; led |= wacom->led.select[0] | 0x4; @@ -704,6 +783,7 @@ &intuos4_led_attr_group); break; + case WACOM_24HD: case WACOM_21UX2: wacom->led.select[0] = 0; wacom->led.select[1] = 0; @@ -738,6 +818,7 @@ &intuos4_led_attr_group); break; + case WACOM_24HD: case WACOM_21UX2: sysfs_remove_group(&wacom->intf->dev.kobj, &cintiq_led_attr_group); --- linux-3.2.0.orig/drivers/input/mouse/synaptics.c +++ linux-3.2.0/drivers/input/mouse/synaptics.c @@ -1202,7 +1202,9 @@ /* Clickpads report only left button */ __clear_bit(BTN_RIGHT, dev->keybit); __clear_bit(BTN_MIDDLE, dev->keybit); - } + } else if (SYN_CAP_CLICKPAD2BTN(priv->ext_cap_0c) || + SYN_CAP_CLICKPAD2BTN2(priv->ext_cap_0c)) + __set_bit(INPUT_PROP_BUTTONPAD, dev->propbit); } static void synaptics_disconnect(struct psmouse *psmouse) --- linux-3.2.0.orig/drivers/input/mouse/alps.h +++ linux-3.2.0/drivers/input/mouse/alps.h @@ -12,20 +12,39 @@ #ifndef _ALPS_H #define _ALPS_H +#define ALPS_PROTO_V1 0 +#define ALPS_PROTO_V2 1 +#define ALPS_PROTO_V3 2 +#define ALPS_PROTO_V4 3 + struct alps_model_info { unsigned char signature[3]; + unsigned char command_mode_resp; /* v3/v4 only */ + unsigned char proto_version; unsigned char byte0, mask0; unsigned char flags; }; +struct alps_nibble_commands { + int command; + unsigned char data; +}; + struct alps_data { struct input_dev *dev2; /* Relative device */ char phys[32]; /* Phys */ const struct alps_model_info *i;/* Info */ + const struct alps_nibble_commands *nibble_commands; + int addr_command; /* Command to set register address */ int prev_fin; /* Finger bit from previous packet */ + int multi_packet; /* Multi-packet data in progress */ + unsigned char multi_data[6]; /* Saved multi-packet data */ + u8 quirks; struct timer_list timer; }; +#define ALPS_QUIRK_TRACKSTICK_BUTTONS 1 /* trakcstick buttons in trackstick packet */ + #ifdef CONFIG_MOUSE_PS2_ALPS int alps_detect(struct psmouse *psmouse, bool set_properties); int alps_init(struct psmouse *psmouse); --- linux-3.2.0.orig/drivers/input/mouse/psmouse-base.c +++ linux-3.2.0/drivers/input/mouse/psmouse-base.c @@ -1011,28 +1011,33 @@ * psmouse_activate() enables the mouse so that we get motion reports from it. */ -static void psmouse_activate(struct psmouse *psmouse) +int psmouse_activate(struct psmouse *psmouse) { - if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE)) + if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE)) { psmouse_warn(psmouse, "Failed to enable mouse on %s\n", psmouse->ps2dev.serio->phys); + return -1; + } psmouse_set_state(psmouse, PSMOUSE_ACTIVATED); + return 0; } - /* * psmouse_deactivate() puts the mouse into poll mode so that we don't get motion * reports from it unless we explicitly request it. */ -static void psmouse_deactivate(struct psmouse *psmouse) +int psmouse_deactivate(struct psmouse *psmouse) { - if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_DISABLE)) + if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_DISABLE)) { psmouse_warn(psmouse, "Failed to deactivate mouse on %s\n", psmouse->ps2dev.serio->phys); + return -1; + } psmouse_set_state(psmouse, PSMOUSE_CMD_MODE); + return 0; } /* --- linux-3.2.0.orig/drivers/input/mouse/sentelic.h +++ linux-3.2.0/drivers/input/mouse/sentelic.h @@ -2,7 +2,7 @@ * Finger Sensing Pad PS/2 mouse driver. * * Copyright (C) 2005-2007 Asia Vital Components Co., Ltd. - * Copyright (C) 2005-2011 Tai-hwa Liang, Sentelic Corporation. + * Copyright (C) 2005-2012 Tai-hwa Liang, Sentelic Corporation. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -55,6 +55,16 @@ #define FSP_BIT_FIX_HSCR BIT(5) #define FSP_BIT_DRAG_LOCK BIT(6) +#define FSP_REG_SWC1 (0x90) +#define FSP_BIT_SWC1_EN_ABS_1F BIT(0) +#define FSP_BIT_SWC1_EN_GID BIT(1) +#define FSP_BIT_SWC1_EN_ABS_2F BIT(2) +#define FSP_BIT_SWC1_EN_FUP_OUT BIT(3) +#define FSP_BIT_SWC1_EN_ABS_CON BIT(4) +#define FSP_BIT_SWC1_GST_GRP0 BIT(5) +#define FSP_BIT_SWC1_GST_GRP1 BIT(6) +#define FSP_BIT_SWC1_BX_COMPAT BIT(7) + /* Finger-sensing Pad packet formating related definitions */ /* absolute packet type */ @@ -64,12 +74,32 @@ #define FSP_PKT_TYPE_NORMAL_OPC (0x03) #define FSP_PKT_TYPE_SHIFT (6) +/* bit definitions for the first byte of report packet */ +#define FSP_PB0_LBTN BIT(0) +#define FSP_PB0_RBTN BIT(1) +#define FSP_PB0_MBTN BIT(2) +#define FSP_PB0_MFMC_FGR2 FSP_PB0_MBTN +#define FSP_PB0_MUST_SET BIT(3) +#define FSP_PB0_PHY_BTN BIT(4) +#define FSP_PB0_MFMC BIT(5) + +/* hardware revisions */ +#define FSP_VER_STL3888_A4 (0xC1) +#define FSP_VER_STL3888_B0 (0xD0) +#define FSP_VER_STL3888_B1 (0xD1) +#define FSP_VER_STL3888_B2 (0xD2) +#define FSP_VER_STL3888_C0 (0xE0) +#define FSP_VER_STL3888_C1 (0xE1) +#define FSP_VER_STL3888_D0 (0xE2) +#define FSP_VER_STL3888_D1 (0xE3) +#define FSP_VER_STL3888_E0 (0xE4) + #ifdef __KERNEL__ struct fsp_data { unsigned char ver; /* hardware version */ unsigned char rev; /* hardware revison */ - unsigned char buttons; /* Number of buttons */ + unsigned int buttons; /* Number of buttons */ unsigned int flags; #define FSPDRV_FLAG_EN_OPC (0x001) /* enable on-pad clicking */ @@ -78,6 +108,7 @@ unsigned char last_reg; /* Last register we requested read from */ unsigned char last_val; + unsigned int last_mt_fgr; /* Last seen finger(multitouch) */ }; #ifdef CONFIG_MOUSE_PS2_SENTELIC --- linux-3.2.0.orig/drivers/input/mouse/sentelic.c +++ linux-3.2.0/drivers/input/mouse/sentelic.c @@ -2,7 +2,7 @@ * Finger Sensing Pad PS/2 mouse driver. * * Copyright (C) 2005-2007 Asia Vital Components Co., Ltd. - * Copyright (C) 2005-2011 Tai-hwa Liang, Sentelic Corporation. + * Copyright (C) 2005-2012 Tai-hwa Liang, Sentelic Corporation. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -21,6 +21,7 @@ #include #include +#include #include #include #include @@ -36,6 +37,9 @@ #define FSP_CMD_TIMEOUT 200 #define FSP_CMD_TIMEOUT2 30 +#define GET_ABS_X(packet) ((packet[1] << 2) | ((packet[3] >> 2) & 0x03)) +#define GET_ABS_Y(packet) ((packet[2] << 2) | (packet[3] & 0x03)) + /** Driver version. */ static const char fsp_drv_ver[] = "1.0.0-K"; @@ -90,8 +94,7 @@ * to do that for writes because sysfs set helper does this for * us. */ - ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE); - psmouse_set_state(psmouse, PSMOUSE_CMD_MODE); + psmouse_deactivate(psmouse); ps2_begin_command(ps2dev); @@ -128,10 +131,10 @@ out: ps2_end_command(ps2dev); - ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE); - psmouse_set_state(psmouse, PSMOUSE_ACTIVATED); - dev_dbg(&ps2dev->serio->dev, "READ REG: 0x%02x is 0x%02x (rc = %d)\n", - reg_addr, *reg_val, rc); + psmouse_activate(psmouse); + psmouse_dbg(psmouse, + "READ REG: 0x%02x is 0x%02x (rc = %d)\n", + reg_addr, *reg_val, rc); return rc; } @@ -181,8 +184,9 @@ out: ps2_end_command(ps2dev); - dev_dbg(&ps2dev->serio->dev, "WRITE REG: 0x%02x to 0x%02x (rc = %d)\n", - reg_addr, reg_val, rc); + psmouse_dbg(psmouse, + "WRITE REG: 0x%02x to 0x%02x (rc = %d)\n", + reg_addr, reg_val, rc); return rc; } @@ -213,8 +217,7 @@ unsigned char param[3]; int rc = -1; - ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE); - psmouse_set_state(psmouse, PSMOUSE_CMD_MODE); + psmouse_deactivate(psmouse); ps2_begin_command(ps2dev); @@ -239,10 +242,10 @@ out: ps2_end_command(ps2dev); - ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE); - psmouse_set_state(psmouse, PSMOUSE_ACTIVATED); - dev_dbg(&ps2dev->serio->dev, "READ PAGE REG: 0x%02x (rc = %d)\n", - *reg_val, rc); + psmouse_activate(psmouse); + psmouse_dbg(psmouse, + "READ PAGE REG: 0x%02x (rc = %d)\n", + *reg_val, rc); return rc; } @@ -278,8 +281,9 @@ out: ps2_end_command(ps2dev); - dev_dbg(&ps2dev->serio->dev, "WRITE PAGE REG: to 0x%02x (rc = %d)\n", - reg_val, rc); + psmouse_dbg(psmouse, + "WRITE PAGE REG: to 0x%02x (rc = %d)\n", + reg_val, rc); return rc; } @@ -323,7 +327,7 @@ int res = 0; if (fsp_reg_read(psmouse, FSP_REG_OPC_QDOWN, &v) == -1) { - dev_err(&psmouse->ps2dev.serio->dev, "Unable get OPC state.\n"); + psmouse_err(psmouse, "Unable get OPC state.\n"); return -EIO; } @@ -340,8 +344,7 @@ } if (res != 0) { - dev_err(&psmouse->ps2dev.serio->dev, - "Unable to enable OPC tag.\n"); + psmouse_err(psmouse, "Unable to enable OPC tag.\n"); res = -EIO; } @@ -598,18 +601,40 @@ .attrs = fsp_attributes, }; -#ifdef FSP_DEBUG -static void fsp_packet_debug(unsigned char packet[]) +#ifdef FSP_DEBUG +static void fsp_packet_debug(struct psmouse *psmouse, unsigned char packet[]) { static unsigned int ps2_packet_cnt; static unsigned int ps2_last_second; unsigned int jiffies_msec; + const char *packet_type = "UNKNOWN"; + unsigned short abs_x = 0, abs_y = 0; + + /* Interpret & dump the packet data. */ + switch (packet[0] >> FSP_PKT_TYPE_SHIFT) { + case FSP_PKT_TYPE_ABS: + packet_type = "Absolute"; + abs_x = GET_ABS_X(packet); + abs_y = GET_ABS_Y(packet); + break; + case FSP_PKT_TYPE_NORMAL: + packet_type = "Normal"; + break; + case FSP_PKT_TYPE_NOTIFY: + packet_type = "Notify"; + break; + case FSP_PKT_TYPE_NORMAL_OPC: + packet_type = "Normal-OPC"; + break; + } ps2_packet_cnt++; jiffies_msec = jiffies_to_msecs(jiffies); psmouse_dbg(psmouse, - "%08dms PS/2 packets: %02x, %02x, %02x, %02x\n", - jiffies_msec, packet[0], packet[1], packet[2], packet[3]); + "%08dms %s packets: %02x, %02x, %02x, %02x; " + "abs_x: %d, abs_y: %d\n", + jiffies_msec, packet_type, + packet[0], packet[1], packet[2], packet[3], abs_x, abs_y); if (jiffies_msec - ps2_last_second > 1000) { psmouse_dbg(psmouse, "PS/2 packets/sec = %d\n", ps2_packet_cnt); @@ -618,17 +643,29 @@ } } #else -static void fsp_packet_debug(unsigned char packet[]) +static void fsp_packet_debug(struct psmouse *psmouse, unsigned char packet[]) { } #endif +static void fsp_set_slot(struct input_dev *dev, int slot, bool active, + unsigned int x, unsigned int y) +{ + input_mt_slot(dev, slot); + input_mt_report_slot_state(dev, MT_TOOL_FINGER, active); + if (active) { + input_report_abs(dev, ABS_MT_POSITION_X, x); + input_report_abs(dev, ABS_MT_POSITION_Y, y); + } +} + static psmouse_ret_t fsp_process_byte(struct psmouse *psmouse) { struct input_dev *dev = psmouse->dev; struct fsp_data *ad = psmouse->private; unsigned char *packet = psmouse->packet; unsigned char button_status = 0, lscroll = 0, rscroll = 0; + unsigned short abs_x, abs_y, fgrs = 0; int rel_x, rel_y; if (psmouse->pktcnt < 4) @@ -638,16 +675,84 @@ * Full packet accumulated, process it */ + fsp_packet_debug(psmouse, packet); + switch (psmouse->packet[0] >> FSP_PKT_TYPE_SHIFT) { case FSP_PKT_TYPE_ABS: - dev_warn(&psmouse->ps2dev.serio->dev, - "Unexpected absolute mode packet, ignored.\n"); + abs_x = GET_ABS_X(packet); + abs_y = GET_ABS_Y(packet); + + if (packet[0] & FSP_PB0_MFMC) { + /* + * MFMC packet: assume that there are two fingers on + * pad + */ + fgrs = 2; + + /* MFMC packet */ + if (packet[0] & FSP_PB0_MFMC_FGR2) { + /* 2nd finger */ + if (ad->last_mt_fgr == 2) { + /* + * workaround for buggy firmware + * which doesn't clear MFMC bit if + * the 1st finger is up + */ + fgrs = 1; + fsp_set_slot(dev, 0, false, 0, 0); + } + ad->last_mt_fgr = 2; + + fsp_set_slot(dev, 1, fgrs == 2, abs_x, abs_y); + } else { + /* 1st finger */ + if (ad->last_mt_fgr == 1) { + /* + * workaround for buggy firmware + * which doesn't clear MFMC bit if + * the 2nd finger is up + */ + fgrs = 1; + fsp_set_slot(dev, 1, false, 0, 0); + } + ad->last_mt_fgr = 1; + fsp_set_slot(dev, 0, fgrs != 0, abs_x, abs_y); + } + } else { + /* SFAC packet */ + if ((packet[0] & (FSP_PB0_LBTN|FSP_PB0_PHY_BTN)) == + FSP_PB0_LBTN) { + /* On-pad click in SFAC mode should be handled + * by userspace. On-pad clicks in MFMC mode + * are real clickpad clicks, and not ignored. + */ + packet[0] &= ~FSP_PB0_LBTN; + } + + /* no multi-finger information */ + ad->last_mt_fgr = 0; + + if (abs_x != 0 && abs_y != 0) + fgrs = 1; + + fsp_set_slot(dev, 0, fgrs > 0, abs_x, abs_y); + fsp_set_slot(dev, 1, false, 0, 0); + } + if (fgrs > 0) { + input_report_abs(dev, ABS_X, abs_x); + input_report_abs(dev, ABS_Y, abs_y); + } + input_report_key(dev, BTN_LEFT, packet[0] & 0x01); + input_report_key(dev, BTN_RIGHT, packet[0] & 0x02); + input_report_key(dev, BTN_TOUCH, fgrs); + input_report_key(dev, BTN_TOOL_FINGER, fgrs == 1); + input_report_key(dev, BTN_TOOL_DOUBLETAP, fgrs == 2); break; case FSP_PKT_TYPE_NORMAL_OPC: /* on-pad click, filter it if necessary */ if ((ad->flags & FSPDRV_FLAG_EN_OPC) != FSPDRV_FLAG_EN_OPC) - packet[0] &= ~BIT(0); + packet[0] &= ~FSP_PB0_LBTN; /* fall through */ case FSP_PKT_TYPE_NORMAL: @@ -694,8 +799,6 @@ input_sync(dev); - fsp_packet_debug(packet); - return PSMOUSE_FULL_PACKET; } @@ -719,42 +822,106 @@ ps2_command(ps2dev, param, PSMOUSE_CMD_GETID); if (param[0] != 0x04) { - dev_err(&psmouse->ps2dev.serio->dev, - "Unable to enable 4 bytes packet format.\n"); + psmouse_err(psmouse, + "Unable to enable 4 bytes packet format.\n"); return -EIO; } - if (fsp_reg_read(psmouse, FSP_REG_SYSCTL5, &val)) { - dev_err(&psmouse->ps2dev.serio->dev, - "Unable to read SYSCTL5 register.\n"); - return -EIO; - } + if (pad->ver < FSP_VER_STL3888_C0) { + /* Preparing relative coordinates output for older hardware */ + if (fsp_reg_read(psmouse, FSP_REG_SYSCTL5, &val)) { + psmouse_err(psmouse, + "Unable to read SYSCTL5 register.\n"); + return -EIO; + } - val &= ~(FSP_BIT_EN_MSID7 | FSP_BIT_EN_MSID8 | FSP_BIT_EN_AUTO_MSID8); - /* Ensure we are not in absolute mode */ - val &= ~FSP_BIT_EN_PKT_G0; - if (pad->buttons == 0x06) { - /* Left/Middle/Right & Scroll Up/Down/Right/Left */ - val |= FSP_BIT_EN_MSID6; - } + if (fsp_get_buttons(psmouse, &pad->buttons)) { + psmouse_err(psmouse, + "Unable to retrieve number of buttons.\n"); + return -EIO; + } - if (fsp_reg_write(psmouse, FSP_REG_SYSCTL5, val)) { - dev_err(&psmouse->ps2dev.serio->dev, - "Unable to set up required mode bits.\n"); - return -EIO; + val &= ~(FSP_BIT_EN_MSID7 | FSP_BIT_EN_MSID8 | FSP_BIT_EN_AUTO_MSID8); + /* Ensure we are not in absolute mode */ + val &= ~FSP_BIT_EN_PKT_G0; + if (pad->buttons == 0x06) { + /* Left/Middle/Right & Scroll Up/Down/Right/Left */ + val |= FSP_BIT_EN_MSID6; + } + + if (fsp_reg_write(psmouse, FSP_REG_SYSCTL5, val)) { + psmouse_err(psmouse, + "Unable to set up required mode bits.\n"); + return -EIO; + } + + /* + * Enable OPC tags such that driver can tell the difference + * between on-pad and real button click + */ + if (fsp_opc_tag_enable(psmouse, true)) + psmouse_warn(psmouse, + "Failed to enable OPC tag mode.\n"); + /* enable on-pad click by default */ + pad->flags |= FSPDRV_FLAG_EN_OPC; + + /* Enable on-pad vertical and horizontal scrolling */ + fsp_onpad_vscr(psmouse, true); + fsp_onpad_hscr(psmouse, true); + } else { + /* Enable absolute coordinates output for Cx/Dx hardware */ + if (fsp_reg_write(psmouse, FSP_REG_SWC1, + FSP_BIT_SWC1_EN_ABS_1F | + FSP_BIT_SWC1_EN_ABS_2F | + FSP_BIT_SWC1_EN_FUP_OUT | + FSP_BIT_SWC1_EN_ABS_CON)) { + psmouse_err(psmouse, + "Unable to enable absolute coordinates output.\n"); + return -EIO; + } } - /* - * Enable OPC tags such that driver can tell the difference between - * on-pad and real button click - */ - if (fsp_opc_tag_enable(psmouse, true)) - dev_warn(&psmouse->ps2dev.serio->dev, - "Failed to enable OPC tag mode.\n"); - - /* Enable on-pad vertical and horizontal scrolling */ - fsp_onpad_vscr(psmouse, true); - fsp_onpad_hscr(psmouse, true); + return 0; +} + +static int fsp_set_input_params(struct psmouse *psmouse) +{ + struct input_dev *dev = psmouse->dev; + struct fsp_data *pad = psmouse->private; + + if (pad->ver < FSP_VER_STL3888_C0) { + __set_bit(BTN_MIDDLE, dev->keybit); + __set_bit(BTN_BACK, dev->keybit); + __set_bit(BTN_FORWARD, dev->keybit); + __set_bit(REL_WHEEL, dev->relbit); + __set_bit(REL_HWHEEL, dev->relbit); + } else { + /* + * Hardware prior to Cx performs much better in relative mode; + * hence, only enable absolute coordinates output as well as + * multi-touch output for the newer hardware. + * + * Maximum coordinates can be computed as: + * + * number of scanlines * 64 - 57 + * + * where number of X/Y scanline lines are 16/12. + */ + int abs_x = 967, abs_y = 711; + + __set_bit(EV_ABS, dev->evbit); + __clear_bit(EV_REL, dev->evbit); + __set_bit(BTN_TOUCH, dev->keybit); + __set_bit(BTN_TOOL_FINGER, dev->keybit); + __set_bit(BTN_TOOL_DOUBLETAP, dev->keybit); + __set_bit(INPUT_PROP_SEMI_MT, dev->propbit); + + input_set_abs_params(dev, ABS_X, 0, abs_x, 0, 0); + input_set_abs_params(dev, ABS_Y, 0, abs_y, 0, 0); + input_mt_init_slots(dev, 2); + input_set_abs_params(dev, ABS_MT_POSITION_X, 0, abs_x, 0, 0); + input_set_abs_params(dev, ABS_MT_POSITION_Y, 0, abs_y, 0, 0); + } return 0; } @@ -812,18 +979,16 @@ int fsp_init(struct psmouse *psmouse) { struct fsp_data *priv; - int ver, rev, buttons; + int ver, rev; int error; if (fsp_get_version(psmouse, &ver) || - fsp_get_revision(psmouse, &rev) || - fsp_get_buttons(psmouse, &buttons)) { + fsp_get_revision(psmouse, &rev)) { return -ENODEV; } - psmouse_info(psmouse, - "Finger Sensing Pad, hw: %d.%d.%d, sw: %s, buttons: %d\n", - ver >> 4, ver & 0x0F, rev, fsp_drv_ver, buttons & 7); + psmouse_info(psmouse, "Finger Sensing Pad, hw: %d.%d.%d, sw: %s\n", + ver >> 4, ver & 0x0F, rev, fsp_drv_ver); psmouse->private = priv = kzalloc(sizeof(struct fsp_data), GFP_KERNEL); if (!priv) @@ -831,17 +996,6 @@ priv->ver = ver; priv->rev = rev; - priv->buttons = buttons; - - /* enable on-pad click by default */ - priv->flags |= FSPDRV_FLAG_EN_OPC; - - /* Set up various supported input event bits */ - __set_bit(BTN_MIDDLE, psmouse->dev->keybit); - __set_bit(BTN_BACK, psmouse->dev->keybit); - __set_bit(BTN_FORWARD, psmouse->dev->keybit); - __set_bit(REL_WHEEL, psmouse->dev->relbit); - __set_bit(REL_HWHEEL, psmouse->dev->relbit); psmouse->protocol_handler = fsp_process_byte; psmouse->disconnect = fsp_disconnect; @@ -849,16 +1003,20 @@ psmouse->cleanup = fsp_reset; psmouse->pktsize = 4; - /* set default packet output based on number of buttons we found */ error = fsp_activate_protocol(psmouse); if (error) goto err_out; + /* Set up various supported input event bits */ + error = fsp_set_input_params(psmouse); + if (error) + goto err_out; + error = sysfs_create_group(&psmouse->ps2dev.serio->dev.kobj, &fsp_attribute_group); if (error) { - dev_err(&psmouse->ps2dev.serio->dev, - "Failed to create sysfs attributes (%d)", error); + psmouse_err(psmouse, + "Failed to create sysfs attributes (%d)", error); goto err_out; } --- linux-3.2.0.orig/drivers/input/mouse/bcm5974.c +++ linux-3.2.0/drivers/input/mouse/bcm5974.c @@ -433,6 +433,9 @@ __set_bit(BTN_TOOL_QUADTAP, input_dev->keybit); __set_bit(BTN_LEFT, input_dev->keybit); + if (cfg->caps & HAS_INTEGRATED_BUTTON) + __set_bit(INPUT_PROP_BUTTONPAD, input_dev->propbit); + input_set_events_per_packet(input_dev, 60); } --- linux-3.2.0.orig/drivers/input/mouse/psmouse.h +++ linux-3.2.0/drivers/input/mouse/psmouse.h @@ -8,6 +8,7 @@ #define PSMOUSE_CMD_SETSTREAM 0x00ea #define PSMOUSE_CMD_SETPOLL 0x00f0 #define PSMOUSE_CMD_POLL 0x00eb /* caller sets number of bytes to receive */ +#define PSMOUSE_CMD_RESET_WRAP 0x00ec #define PSMOUSE_CMD_GETID 0x02f2 #define PSMOUSE_CMD_SETRATE 0x10f3 #define PSMOUSE_CMD_ENABLE 0x00f4 @@ -102,6 +103,8 @@ int psmouse_reset(struct psmouse *psmouse); void psmouse_set_state(struct psmouse *psmouse, enum psmouse_state new_state); void psmouse_set_resolution(struct psmouse *psmouse, unsigned int resolution); +int psmouse_activate(struct psmouse *psmouse); +int psmouse_deactivate(struct psmouse *psmouse); struct psmouse_attribute { struct device_attribute dattr; --- linux-3.2.0.orig/drivers/input/mouse/hgpk.c +++ linux-3.2.0/drivers/input/mouse/hgpk.c @@ -640,7 +640,6 @@ static int hgpk_force_recalibrate(struct psmouse *psmouse) { - struct ps2dev *ps2dev = &psmouse->ps2dev; struct hgpk_data *priv = psmouse->private; int err; @@ -669,12 +668,9 @@ * we don't have a good way to deal with it. The 2s window stuff * (below) is our best option for now. */ - - if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE)) + if (psmouse_activate(psmouse)) return -1; - psmouse_set_state(psmouse, PSMOUSE_ACTIVATED); - if (tpdebug) psmouse_dbg(psmouse, "touchpad reactivated\n"); @@ -733,8 +729,7 @@ } /* should be all set, enable the touchpad */ - ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_ENABLE); - psmouse_set_state(psmouse, PSMOUSE_ACTIVATED); + psmouse_activate(psmouse); psmouse_dbg(psmouse, "Touchpad powered up.\n"); } else { psmouse_dbg(psmouse, "Powering off touchpad.\n"); --- linux-3.2.0.orig/drivers/input/mouse/synaptics.h +++ linux-3.2.0/drivers/input/mouse/synaptics.h @@ -80,6 +80,7 @@ */ #define SYN_CAP_CLICKPAD(ex0c) ((ex0c) & 0x100000) /* 1-button ClickPad */ #define SYN_CAP_CLICKPAD2BTN(ex0c) ((ex0c) & 0x000100) /* 2-button ClickPad */ +#define SYN_CAP_CLICKPAD2BTN2(ex0c) ((ex0c) & 0x200000) /* 2-button ClickPad */ #define SYN_CAP_MAX_DIMENSIONS(ex0c) ((ex0c) & 0x020000) #define SYN_CAP_MIN_DIMENSIONS(ex0c) ((ex0c) & 0x002000) #define SYN_CAP_ADV_GESTURE(ex0c) ((ex0c) & 0x080000) --- linux-3.2.0.orig/drivers/input/mouse/alps.c +++ linux-3.2.0/drivers/input/mouse/alps.c @@ -17,13 +17,63 @@ #include #include +#include #include #include #include "psmouse.h" #include "alps.h" -#define ALPS_OLDPROTO 0x01 /* old style input */ +/* + * Definitions for ALPS version 3 and 4 command mode protocol + */ +#define ALPS_V3_X_MAX 2000 +#define ALPS_V3_Y_MAX 1400 + +#define ALPS_BITMAP_X_BITS 15 +#define ALPS_BITMAP_Y_BITS 11 + +#define ALPS_CMD_NIBBLE_10 0x01f2 + +static const struct alps_nibble_commands alps_v3_nibble_commands[] = { + { PSMOUSE_CMD_SETPOLL, 0x00 }, /* 0 */ + { PSMOUSE_CMD_RESET_DIS, 0x00 }, /* 1 */ + { PSMOUSE_CMD_SETSCALE21, 0x00 }, /* 2 */ + { PSMOUSE_CMD_SETRATE, 0x0a }, /* 3 */ + { PSMOUSE_CMD_SETRATE, 0x14 }, /* 4 */ + { PSMOUSE_CMD_SETRATE, 0x28 }, /* 5 */ + { PSMOUSE_CMD_SETRATE, 0x3c }, /* 6 */ + { PSMOUSE_CMD_SETRATE, 0x50 }, /* 7 */ + { PSMOUSE_CMD_SETRATE, 0x64 }, /* 8 */ + { PSMOUSE_CMD_SETRATE, 0xc8 }, /* 9 */ + { ALPS_CMD_NIBBLE_10, 0x00 }, /* a */ + { PSMOUSE_CMD_SETRES, 0x00 }, /* b */ + { PSMOUSE_CMD_SETRES, 0x01 }, /* c */ + { PSMOUSE_CMD_SETRES, 0x02 }, /* d */ + { PSMOUSE_CMD_SETRES, 0x03 }, /* e */ + { PSMOUSE_CMD_SETSCALE11, 0x00 }, /* f */ +}; + +static const struct alps_nibble_commands alps_v4_nibble_commands[] = { + { PSMOUSE_CMD_ENABLE, 0x00 }, /* 0 */ + { PSMOUSE_CMD_RESET_DIS, 0x00 }, /* 1 */ + { PSMOUSE_CMD_SETSCALE21, 0x00 }, /* 2 */ + { PSMOUSE_CMD_SETRATE, 0x0a }, /* 3 */ + { PSMOUSE_CMD_SETRATE, 0x14 }, /* 4 */ + { PSMOUSE_CMD_SETRATE, 0x28 }, /* 5 */ + { PSMOUSE_CMD_SETRATE, 0x3c }, /* 6 */ + { PSMOUSE_CMD_SETRATE, 0x50 }, /* 7 */ + { PSMOUSE_CMD_SETRATE, 0x64 }, /* 8 */ + { PSMOUSE_CMD_SETRATE, 0xc8 }, /* 9 */ + { ALPS_CMD_NIBBLE_10, 0x00 }, /* a */ + { PSMOUSE_CMD_SETRES, 0x00 }, /* b */ + { PSMOUSE_CMD_SETRES, 0x01 }, /* c */ + { PSMOUSE_CMD_SETRES, 0x02 }, /* d */ + { PSMOUSE_CMD_SETRES, 0x03 }, /* e */ + { PSMOUSE_CMD_SETSCALE11, 0x00 }, /* f */ +}; + + #define ALPS_DUALPOINT 0x02 /* touchpad has trackstick */ #define ALPS_PASS 0x04 /* device has a pass-through port */ @@ -35,30 +85,33 @@ 6-byte ALPS packet */ static const struct alps_model_info alps_model_data[] = { - { { 0x32, 0x02, 0x14 }, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT }, /* Toshiba Salellite Pro M10 */ - { { 0x33, 0x02, 0x0a }, 0x88, 0xf8, ALPS_OLDPROTO }, /* UMAX-530T */ - { { 0x53, 0x02, 0x0a }, 0xf8, 0xf8, 0 }, - { { 0x53, 0x02, 0x14 }, 0xf8, 0xf8, 0 }, - { { 0x60, 0x03, 0xc8 }, 0xf8, 0xf8, 0 }, /* HP ze1115 */ - { { 0x63, 0x02, 0x0a }, 0xf8, 0xf8, 0 }, - { { 0x63, 0x02, 0x14 }, 0xf8, 0xf8, 0 }, - { { 0x63, 0x02, 0x28 }, 0xf8, 0xf8, ALPS_FW_BK_2 }, /* Fujitsu Siemens S6010 */ - { { 0x63, 0x02, 0x3c }, 0x8f, 0x8f, ALPS_WHEEL }, /* Toshiba Satellite S2400-103 */ - { { 0x63, 0x02, 0x50 }, 0xef, 0xef, ALPS_FW_BK_1 }, /* NEC Versa L320 */ - { { 0x63, 0x02, 0x64 }, 0xf8, 0xf8, 0 }, - { { 0x63, 0x03, 0xc8 }, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT }, /* Dell Latitude D800 */ - { { 0x73, 0x00, 0x0a }, 0xf8, 0xf8, ALPS_DUALPOINT }, /* ThinkPad R61 8918-5QG */ - { { 0x73, 0x02, 0x0a }, 0xf8, 0xf8, 0 }, - { { 0x73, 0x02, 0x14 }, 0xf8, 0xf8, ALPS_FW_BK_2 }, /* Ahtec Laptop */ - { { 0x20, 0x02, 0x0e }, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT }, /* XXX */ - { { 0x22, 0x02, 0x0a }, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT }, - { { 0x22, 0x02, 0x14 }, 0xff, 0xff, ALPS_PASS | ALPS_DUALPOINT }, /* Dell Latitude D600 */ + { { 0x32, 0x02, 0x14 }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT }, /* Toshiba Salellite Pro M10 */ + { { 0x33, 0x02, 0x0a }, 0x00, ALPS_PROTO_V1, 0x88, 0xf8, 0 }, /* UMAX-530T */ + { { 0x53, 0x02, 0x0a }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, 0 }, + { { 0x53, 0x02, 0x14 }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, 0 }, + { { 0x60, 0x03, 0xc8 }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, 0 }, /* HP ze1115 */ + { { 0x63, 0x02, 0x0a }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, 0 }, + { { 0x63, 0x02, 0x14 }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, 0 }, + { { 0x63, 0x02, 0x28 }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_FW_BK_2 }, /* Fujitsu Siemens S6010 */ + { { 0x63, 0x02, 0x3c }, 0x00, ALPS_PROTO_V2, 0x8f, 0x8f, ALPS_WHEEL }, /* Toshiba Satellite S2400-103 */ + { { 0x63, 0x02, 0x50 }, 0x00, ALPS_PROTO_V2, 0xef, 0xef, ALPS_FW_BK_1 }, /* NEC Versa L320 */ + { { 0x63, 0x02, 0x64 }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, 0 }, + { { 0x63, 0x03, 0xc8 }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT }, /* Dell Latitude D800 */ + { { 0x73, 0x00, 0x0a }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_DUALPOINT }, /* ThinkPad R61 8918-5QG */ + { { 0x73, 0x02, 0x0a }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, 0 }, + { { 0x73, 0x02, 0x14 }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_FW_BK_2 }, /* Ahtec Laptop */ + { { 0x20, 0x02, 0x0e }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT }, /* XXX */ + { { 0x22, 0x02, 0x0a }, 0x00, ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT }, + { { 0x22, 0x02, 0x14 }, 0x00, ALPS_PROTO_V2, 0xff, 0xff, ALPS_PASS | ALPS_DUALPOINT }, /* Dell Latitude D600 */ /* Dell Latitude E5500, E6400, E6500, Precision M4400 */ - { { 0x62, 0x02, 0x14 }, 0xcf, 0xcf, + { { 0x62, 0x02, 0x14 }, 0x00, ALPS_PROTO_V2, 0xcf, 0xcf, ALPS_PASS | ALPS_DUALPOINT | ALPS_PS2_INTERLEAVED }, - { { 0x73, 0x02, 0x50 }, 0xcf, 0xcf, ALPS_FOUR_BUTTONS }, /* Dell Vostro 1400 */ - { { 0x52, 0x01, 0x14 }, 0xff, 0xff, - ALPS_PASS | ALPS_DUALPOINT | ALPS_PS2_INTERLEAVED }, /* Toshiba Tecra A11-11L */ + { { 0x73, 0x02, 0x50 }, 0x00, ALPS_PROTO_V2, 0xcf, 0xcf, ALPS_FOUR_BUTTONS }, /* Dell Vostro 1400 */ + { { 0x52, 0x01, 0x14 }, 0x00, ALPS_PROTO_V2, 0xff, 0xff, + ALPS_PASS | ALPS_DUALPOINT | ALPS_PS2_INTERLEAVED }, /* Toshiba Tecra A11-11L */ + { { 0x73, 0x02, 0x64 }, 0x9b, ALPS_PROTO_V3, 0x8f, 0x8f, ALPS_DUALPOINT }, + { { 0x73, 0x02, 0x64 }, 0x9d, ALPS_PROTO_V3, 0x8f, 0x8f, ALPS_DUALPOINT }, + { { 0x73, 0x02, 0x64 }, 0x8a, ALPS_PROTO_V4, 0x8f, 0x8f, 0 }, }; /* @@ -67,42 +120,7 @@ * isn't valid per PS/2 spec. */ -/* - * PS/2 packet format - * - * byte 0: 0 0 YSGN XSGN 1 M R L - * byte 1: X7 X6 X5 X4 X3 X2 X1 X0 - * byte 2: Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 - * - * Note that the device never signals overflow condition. - * - * ALPS absolute Mode - new format - * - * byte 0: 1 ? ? ? 1 ? ? ? - * byte 1: 0 x6 x5 x4 x3 x2 x1 x0 - * byte 2: 0 x10 x9 x8 x7 ? fin ges - * byte 3: 0 y9 y8 y7 1 M R L - * byte 4: 0 y6 y5 y4 y3 y2 y1 y0 - * byte 5: 0 z6 z5 z4 z3 z2 z1 z0 - * - * Dualpoint device -- interleaved packet format - * - * byte 0: 1 1 0 0 1 1 1 1 - * byte 1: 0 x6 x5 x4 x3 x2 x1 x0 - * byte 2: 0 x10 x9 x8 x7 0 fin ges - * byte 3: 0 0 YSGN XSGN 1 1 1 1 - * byte 4: X7 X6 X5 X4 X3 X2 X1 X0 - * byte 5: Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 - * byte 6: 0 y9 y8 y7 1 m r l - * byte 7: 0 y6 y5 y4 y3 y2 y1 y0 - * byte 8: 0 z6 z5 z4 z3 z2 z1 z0 - * - * CAPITALS = stick, miniscules = touchpad - * - * ?'s can have different meanings on different models, - * such as wheel rotation, extra buttons, stick buttons - * on a dualpoint, etc. - */ +/* Packet formats are described in Documentation/input/alps.txt */ static bool alps_is_valid_first_byte(const struct alps_model_info *model, unsigned char data) @@ -137,7 +155,7 @@ input_sync(dev2); } -static void alps_process_packet(struct psmouse *psmouse) +static void alps_process_packet_v1_v2(struct psmouse *psmouse) { struct alps_data *priv = psmouse->private; const struct alps_model_info *model = priv->i; @@ -147,7 +165,7 @@ int x, y, z, ges, fin, left, right, middle; int back = 0, forward = 0; - if (model->flags & ALPS_OLDPROTO) { + if (model->proto_version == ALPS_PROTO_V1) { left = packet[2] & 0x10; right = packet[2] & 0x08; middle = 0; @@ -239,6 +257,403 @@ input_sync(dev); } +/* + * Process bitmap data from v3 and v4 protocols. Returns the number of + * fingers detected. A return value of 0 means at least one of the + * bitmaps was empty. + * + * The bitmaps don't have enough data to track fingers, so this function + * only generates points representing a bounding box of all contacts. + * These points are returned in x1, y1, x2, and y2 when the return value + * is greater than 0. + */ +static int alps_process_bitmap(unsigned int x_map, unsigned int y_map, + int *x1, int *y1, int *x2, int *y2) +{ + struct alps_bitmap_point { + int start_bit; + int num_bits; + }; + + int fingers_x = 0, fingers_y = 0, fingers; + int i, bit, prev_bit; + struct alps_bitmap_point x_low = {0,}, x_high = {0,}; + struct alps_bitmap_point y_low = {0,}, y_high = {0,}; + struct alps_bitmap_point *point; + + if (!x_map || !y_map) + return 0; + + *x1 = *y1 = *x2 = *y2 = 0; + + prev_bit = 0; + point = &x_low; + for (i = 0; x_map != 0; i++, x_map >>= 1) { + bit = x_map & 1; + if (bit) { + if (!prev_bit) { + point->start_bit = i; + fingers_x++; + } + point->num_bits++; + } else { + if (prev_bit) + point = &x_high; + else + point->num_bits = 0; + } + prev_bit = bit; + } + + /* + * y bitmap is reversed for what we need (lower positions are in + * higher bits), so we process from the top end. + */ + y_map = y_map << (sizeof(y_map) * BITS_PER_BYTE - ALPS_BITMAP_Y_BITS); + prev_bit = 0; + point = &y_low; + for (i = 0; y_map != 0; i++, y_map <<= 1) { + bit = y_map & (1 << (sizeof(y_map) * BITS_PER_BYTE - 1)); + if (bit) { + if (!prev_bit) { + point->start_bit = i; + fingers_y++; + } + point->num_bits++; + } else { + if (prev_bit) + point = &y_high; + else + point->num_bits = 0; + } + prev_bit = bit; + } + + /* + * Fingers can overlap, so we use the maximum count of fingers + * on either axis as the finger count. + */ + fingers = max(fingers_x, fingers_y); + + /* + * If total fingers is > 1 but either axis reports only a single + * contact, we have overlapping or adjacent fingers. For the + * purposes of creating a bounding box, divide the single contact + * (roughly) equally between the two points. + */ + if (fingers > 1) { + if (fingers_x == 1) { + i = x_low.num_bits / 2; + x_low.num_bits = x_low.num_bits - i; + x_high.start_bit = x_low.start_bit + i; + x_high.num_bits = max(i, 1); + } else if (fingers_y == 1) { + i = y_low.num_bits / 2; + y_low.num_bits = y_low.num_bits - i; + y_high.start_bit = y_low.start_bit + i; + y_high.num_bits = max(i, 1); + } + } + + *x1 = (ALPS_V3_X_MAX * (2 * x_low.start_bit + x_low.num_bits - 1)) / + (2 * (ALPS_BITMAP_X_BITS - 1)); + *y1 = (ALPS_V3_Y_MAX * (2 * y_low.start_bit + y_low.num_bits - 1)) / + (2 * (ALPS_BITMAP_Y_BITS - 1)); + + if (fingers > 1) { + *x2 = (ALPS_V3_X_MAX * (2 * x_high.start_bit + x_high.num_bits - 1)) / + (2 * (ALPS_BITMAP_X_BITS - 1)); + *y2 = (ALPS_V3_Y_MAX * (2 * y_high.start_bit + y_high.num_bits - 1)) / + (2 * (ALPS_BITMAP_Y_BITS - 1)); + } + + return fingers; +} + +static void alps_set_slot(struct input_dev *dev, int slot, bool active, + int x, int y) +{ + input_mt_slot(dev, slot); + input_mt_report_slot_state(dev, MT_TOOL_FINGER, active); + if (active) { + input_report_abs(dev, ABS_MT_POSITION_X, x); + input_report_abs(dev, ABS_MT_POSITION_Y, y); + } +} + +static void alps_report_semi_mt_data(struct input_dev *dev, int num_fingers, + int x1, int y1, int x2, int y2) +{ + alps_set_slot(dev, 0, num_fingers != 0, x1, y1); + alps_set_slot(dev, 1, num_fingers == 2, x2, y2); +} + +static void alps_process_trackstick_packet_v3(struct psmouse *psmouse) +{ + struct alps_data *priv = psmouse->private; + unsigned char *packet = psmouse->packet; + struct input_dev *dev = priv->dev2; + int x, y, z, left, right, middle; + + /* Sanity check packet */ + if (!(packet[0] & 0x40)) { + psmouse_dbg(psmouse, "Bad trackstick packet, discarding\n"); + return; + } + + /* + * There's a special packet that seems to indicate the end + * of a stream of trackstick data. Filter these out. + */ + if (packet[1] == 0x7f && packet[2] == 0x7f && packet[4] == 0x7f) + return; + + x = (s8)(((packet[0] & 0x20) << 2) | (packet[1] & 0x7f)); + y = (s8)(((packet[0] & 0x10) << 3) | (packet[2] & 0x7f)); + z = (packet[4] & 0x7c) >> 2; + + /* + * The x and y values tend to be quite large, and when used + * alone the trackstick is difficult to use. Scale them down + * to compensate. + */ + x /= 8; + y /= 8; + + input_report_rel(dev, REL_X, x); + input_report_rel(dev, REL_Y, -y); + + /* + * Most ALPS models report the trackstick buttons in the touchpad + * packets, but a few report them here. No reliable way has been + * found to differentiate between the models upfront, so we enable + * the quirk in response to seeing a button press in the trackstick + * packet. + */ + left = packet[3] & 0x01; + right = packet[3] & 0x02; + middle = packet[3] & 0x04; + + if (!(priv->quirks & ALPS_QUIRK_TRACKSTICK_BUTTONS) && + (left || right || middle)) + priv->quirks |= ALPS_QUIRK_TRACKSTICK_BUTTONS; + + if (priv->quirks & ALPS_QUIRK_TRACKSTICK_BUTTONS) { + input_report_key(dev, BTN_LEFT, left); + input_report_key(dev, BTN_RIGHT, right); + input_report_key(dev, BTN_MIDDLE, middle); + } + + input_sync(dev); + return; +} + +static void alps_process_touchpad_packet_v3(struct psmouse *psmouse) +{ + struct alps_data *priv = psmouse->private; + unsigned char *packet = psmouse->packet; + struct input_dev *dev = psmouse->dev; + struct input_dev *dev2 = priv->dev2; + int x, y, z; + int left, right, middle; + int x1 = 0, y1 = 0, x2 = 0, y2 = 0; + int fingers = 0, bmap_fingers; + unsigned int x_bitmap, y_bitmap; + + /* + * There's no single feature of touchpad position and bitmap packets + * that can be used to distinguish between them. We rely on the fact + * that a bitmap packet should always follow a position packet with + * bit 6 of packet[4] set. + */ + if (priv->multi_packet) { + /* + * Sometimes a position packet will indicate a multi-packet + * sequence, but then what follows is another position + * packet. Check for this, and when it happens process the + * position packet as usual. + */ + if (packet[0] & 0x40) { + fingers = (packet[5] & 0x3) + 1; + x_bitmap = ((packet[4] & 0x7e) << 8) | + ((packet[1] & 0x7f) << 2) | + ((packet[0] & 0x30) >> 4); + y_bitmap = ((packet[3] & 0x70) << 4) | + ((packet[2] & 0x7f) << 1) | + (packet[4] & 0x01); + + bmap_fingers = alps_process_bitmap(x_bitmap, y_bitmap, + &x1, &y1, &x2, &y2); + + /* + * We shouldn't report more than one finger if + * we don't have two coordinates. + */ + if (fingers > 1 && bmap_fingers < 2) + fingers = bmap_fingers; + + /* Now process position packet */ + packet = priv->multi_data; + } else { + priv->multi_packet = 0; + } + } + + /* + * Bit 6 of byte 0 is not usually set in position packets. The only + * times it seems to be set is in situations where the data is + * suspect anyway, e.g. a palm resting flat on the touchpad. Given + * this combined with the fact that this bit is useful for filtering + * out misidentified bitmap packets, we reject anything with this + * bit set. + */ + if (packet[0] & 0x40) + return; + + if (!priv->multi_packet && (packet[4] & 0x40)) { + priv->multi_packet = 1; + memcpy(priv->multi_data, packet, sizeof(priv->multi_data)); + return; + } + + priv->multi_packet = 0; + + left = packet[3] & 0x01; + right = packet[3] & 0x02; + middle = packet[3] & 0x04; + + x = ((packet[1] & 0x7f) << 4) | ((packet[4] & 0x30) >> 2) | + ((packet[0] & 0x30) >> 4); + y = ((packet[2] & 0x7f) << 4) | (packet[4] & 0x0f); + z = packet[5] & 0x7f; + + /* + * Sometimes the hardware sends a single packet with z = 0 + * in the middle of a stream. Real releases generate packets + * with x, y, and z all zero, so these seem to be flukes. + * Ignore them. + */ + if (x && y && !z) + return; + + /* + * If we don't have MT data or the bitmaps were empty, we have + * to rely on ST data. + */ + if (!fingers) { + x1 = x; + y1 = y; + fingers = z > 0 ? 1 : 0; + } + + if (z >= 64) + input_report_key(dev, BTN_TOUCH, 1); + else + input_report_key(dev, BTN_TOUCH, 0); + + alps_report_semi_mt_data(dev, fingers, x1, y1, x2, y2); + + input_report_key(dev, BTN_TOOL_FINGER, fingers == 1); + input_report_key(dev, BTN_TOOL_DOUBLETAP, fingers == 2); + input_report_key(dev, BTN_TOOL_TRIPLETAP, fingers == 3); + input_report_key(dev, BTN_TOOL_QUADTAP, fingers == 4); + + input_report_key(dev, BTN_LEFT, left); + input_report_key(dev, BTN_RIGHT, right); + input_report_key(dev, BTN_MIDDLE, middle); + + if (z > 0) { + input_report_abs(dev, ABS_X, x); + input_report_abs(dev, ABS_Y, y); + } + input_report_abs(dev, ABS_PRESSURE, z); + + input_sync(dev); + + if (!(priv->quirks & ALPS_QUIRK_TRACKSTICK_BUTTONS)) { + left = packet[3] & 0x10; + right = packet[3] & 0x20; + middle = packet[3] & 0x40; + + input_report_key(dev2, BTN_LEFT, left); + input_report_key(dev2, BTN_RIGHT, right); + input_report_key(dev2, BTN_MIDDLE, middle); + input_sync(dev2); + } +} + +static void alps_process_packet_v3(struct psmouse *psmouse) +{ + unsigned char *packet = psmouse->packet; + + /* + * v3 protocol packets come in three types, two representing + * touchpad data and one representing trackstick data. + * Trackstick packets seem to be distinguished by always + * having 0x3f in the last byte. This value has never been + * observed in the last byte of either of the other types + * of packets. + */ + if (packet[5] == 0x3f) { + alps_process_trackstick_packet_v3(psmouse); + return; + } + + alps_process_touchpad_packet_v3(psmouse); +} + +static void alps_process_packet_v4(struct psmouse *psmouse) +{ + unsigned char *packet = psmouse->packet; + struct input_dev *dev = psmouse->dev; + int x, y, z; + int left, right; + + left = packet[4] & 0x01; + right = packet[4] & 0x02; + + x = ((packet[1] & 0x7f) << 4) | ((packet[3] & 0x30) >> 2) | + ((packet[0] & 0x30) >> 4); + y = ((packet[2] & 0x7f) << 4) | (packet[3] & 0x0f); + z = packet[5] & 0x7f; + + if (z >= 64) + input_report_key(dev, BTN_TOUCH, 1); + else + input_report_key(dev, BTN_TOUCH, 0); + + if (z > 0) { + input_report_abs(dev, ABS_X, x); + input_report_abs(dev, ABS_Y, y); + } + input_report_abs(dev, ABS_PRESSURE, z); + + input_report_key(dev, BTN_TOOL_FINGER, z > 0); + input_report_key(dev, BTN_LEFT, left); + input_report_key(dev, BTN_RIGHT, right); + + input_sync(dev); +} + +static void alps_process_packet(struct psmouse *psmouse) +{ + struct alps_data *priv = psmouse->private; + const struct alps_model_info *model = priv->i; + + switch (model->proto_version) { + case ALPS_PROTO_V1: + case ALPS_PROTO_V2: + alps_process_packet_v1_v2(psmouse); + break; + case ALPS_PROTO_V3: + alps_process_packet_v3(psmouse); + break; + case ALPS_PROTO_V4: + alps_process_packet_v4(psmouse); + break; + } +} + static void alps_report_bare_ps2_packet(struct psmouse *psmouse, unsigned char packet[], bool report_buttons) @@ -344,7 +759,7 @@ serio_pause_rx(psmouse->ps2dev.serio); - if (psmouse->pktcnt == 6) { + if (psmouse->pktcnt == psmouse->pktsize) { /* * We did not any more data in reasonable amount of time. @@ -395,8 +810,8 @@ return PSMOUSE_BAD_DATA; } - /* Bytes 2 - 6 should have 0 in the highest bit */ - if (psmouse->pktcnt >= 2 && psmouse->pktcnt <= 6 && + /* Bytes 2 - pktsize should have 0 in the highest bit */ + if (psmouse->pktcnt >= 2 && psmouse->pktcnt <= psmouse->pktsize && (psmouse->packet[psmouse->pktcnt - 1] & 0x80)) { psmouse_dbg(psmouse, "refusing packet[%i] = %x\n", psmouse->pktcnt - 1, @@ -404,7 +819,7 @@ return PSMOUSE_BAD_DATA; } - if (psmouse->pktcnt == 6) { + if (psmouse->pktcnt == psmouse->pktsize) { alps_process_packet(psmouse); return PSMOUSE_FULL_PACKET; } @@ -412,16 +827,134 @@ return PSMOUSE_GOOD_DATA; } +static int alps_command_mode_send_nibble(struct psmouse *psmouse, int nibble) +{ + struct ps2dev *ps2dev = &psmouse->ps2dev; + struct alps_data *priv = psmouse->private; + int command; + unsigned char *param; + unsigned char dummy[4]; + + BUG_ON(nibble > 0xf); + + command = priv->nibble_commands[nibble].command; + param = (command & 0x0f00) ? + dummy : (unsigned char *)&priv->nibble_commands[nibble].data; + + if (ps2_command(ps2dev, param, command)) + return -1; + + return 0; +} + +static int alps_command_mode_set_addr(struct psmouse *psmouse, int addr) +{ + struct ps2dev *ps2dev = &psmouse->ps2dev; + struct alps_data *priv = psmouse->private; + int i, nibble; + + if (ps2_command(ps2dev, NULL, priv->addr_command)) + return -1; + + for (i = 12; i >= 0; i -= 4) { + nibble = (addr >> i) & 0xf; + if (alps_command_mode_send_nibble(psmouse, nibble)) + return -1; + } + + return 0; +} + +static int __alps_command_mode_read_reg(struct psmouse *psmouse, int addr) +{ + struct ps2dev *ps2dev = &psmouse->ps2dev; + unsigned char param[4]; + + if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) + return -1; + + /* + * The address being read is returned in the first two bytes + * of the result. Check that this address matches the expected + * address. + */ + if (addr != ((param[0] << 8) | param[1])) + return -1; + + return param[2]; +} + +static int alps_command_mode_read_reg(struct psmouse *psmouse, int addr) +{ + if (alps_command_mode_set_addr(psmouse, addr)) + return -1; + return __alps_command_mode_read_reg(psmouse, addr); +} + +static int __alps_command_mode_write_reg(struct psmouse *psmouse, u8 value) +{ + if (alps_command_mode_send_nibble(psmouse, (value >> 4) & 0xf)) + return -1; + if (alps_command_mode_send_nibble(psmouse, value & 0xf)) + return -1; + return 0; +} + +static int alps_command_mode_write_reg(struct psmouse *psmouse, int addr, + u8 value) +{ + if (alps_command_mode_set_addr(psmouse, addr)) + return -1; + return __alps_command_mode_write_reg(psmouse, value); +} + +static int alps_enter_command_mode(struct psmouse *psmouse, + unsigned char *resp) +{ + unsigned char param[4]; + struct ps2dev *ps2dev = &psmouse->ps2dev; + + if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_WRAP) || + ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_WRAP) || + ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_WRAP) || + ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) { + psmouse_err(psmouse, "failed to enter command mode\n"); + return -1; + } + + if (param[0] != 0x88 && param[1] != 0x07) { + psmouse_dbg(psmouse, + "unknown response while entering command mode: %2.2x %2.2x %2.2x\n", + param[0], param[1], param[2]); + return -1; + } + + if (resp) + *resp = param[2]; + return 0; +} + +static inline int alps_exit_command_mode(struct psmouse *psmouse) +{ + struct ps2dev *ps2dev = &psmouse->ps2dev; + if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM)) + return -1; + return 0; +} + static const struct alps_model_info *alps_get_model(struct psmouse *psmouse, int *version) { struct ps2dev *ps2dev = &psmouse->ps2dev; static const unsigned char rates[] = { 0, 10, 20, 40, 60, 80, 100, 200 }; unsigned char param[4]; + const struct alps_model_info *model = NULL; int i; /* * First try "E6 report". - * ALPS should return 0,0,10 or 0,0,100 + * ALPS should return 0,0,10 or 0,0,100 if no buttons are pressed. + * The bits 0-2 of the first byte will be 1s if some buttons are + * pressed. */ param[0] = 0; if (ps2_command(ps2dev, param, PSMOUSE_CMD_SETRES) || @@ -437,7 +970,8 @@ psmouse_dbg(psmouse, "E6 report: %2.2x %2.2x %2.2x", param[0], param[1], param[2]); - if (param[0] != 0 || param[1] != 0 || (param[2] != 10 && param[2] != 100)) + if ((param[0] & 0xf8) != 0 || param[1] != 0 || + (param[2] != 10 && param[2] != 100)) return NULL; /* @@ -464,12 +998,41 @@ *version = (param[0] << 8) | (param[1] << 4) | i; } - for (i = 0; i < ARRAY_SIZE(alps_model_data); i++) + for (i = 0; i < ARRAY_SIZE(alps_model_data); i++) { if (!memcmp(param, alps_model_data[i].signature, - sizeof(alps_model_data[i].signature))) - return alps_model_data + i; + sizeof(alps_model_data[i].signature))) { + model = alps_model_data + i; + break; + } + } + + if (model && model->proto_version > ALPS_PROTO_V2) { + /* + * Need to check command mode response to identify + * model + */ + model = NULL; + if (alps_enter_command_mode(psmouse, param)) { + psmouse_warn(psmouse, + "touchpad failed to enter command mode\n"); + } else { + for (i = 0; i < ARRAY_SIZE(alps_model_data); i++) { + if (alps_model_data[i].proto_version > ALPS_PROTO_V2 && + alps_model_data[i].command_mode_resp == param[0]) { + model = alps_model_data + i; + break; + } + } + alps_exit_command_mode(psmouse); + + if (!model) + psmouse_dbg(psmouse, + "Unknown command mode response %2.2x\n", + param[0]); + } + } - return NULL; + return model; } /* @@ -477,7 +1040,7 @@ * subsequent commands. It looks like glidepad is behind stickpointer, * I'd thought it would be other way around... */ -static int alps_passthrough_mode(struct psmouse *psmouse, bool enable) +static int alps_passthrough_mode_v2(struct psmouse *psmouse, bool enable) { struct ps2dev *ps2dev = &psmouse->ps2dev; int cmd = enable ? PSMOUSE_CMD_SETSCALE21 : PSMOUSE_CMD_SETSCALE11; @@ -494,7 +1057,7 @@ return 0; } -static int alps_absolute_mode(struct psmouse *psmouse) +static int alps_absolute_mode_v1_v2(struct psmouse *psmouse) { struct ps2dev *ps2dev = &psmouse->ps2dev; @@ -565,17 +1128,17 @@ static int alps_poll(struct psmouse *psmouse) { struct alps_data *priv = psmouse->private; - unsigned char buf[6]; + unsigned char buf[sizeof(psmouse->packet)]; bool poll_failed; if (priv->i->flags & ALPS_PASS) - alps_passthrough_mode(psmouse, true); + alps_passthrough_mode_v2(psmouse, true); poll_failed = ps2_command(&psmouse->ps2dev, buf, PSMOUSE_CMD_POLL | (psmouse->pktsize << 8)) < 0; if (priv->i->flags & ALPS_PASS) - alps_passthrough_mode(psmouse, false); + alps_passthrough_mode_v2(psmouse, false); if (poll_failed || (buf[0] & priv->i->mask0) != priv->i->byte0) return -1; @@ -592,13 +1155,13 @@ return 0; } -static int alps_hw_init(struct psmouse *psmouse) +static int alps_hw_init_v1_v2(struct psmouse *psmouse) { struct alps_data *priv = psmouse->private; const struct alps_model_info *model = priv->i; if ((model->flags & ALPS_PASS) && - alps_passthrough_mode(psmouse, true)) { + alps_passthrough_mode_v2(psmouse, true)) { return -1; } @@ -607,13 +1170,13 @@ return -1; } - if (alps_absolute_mode(psmouse)) { + if (alps_absolute_mode_v1_v2(psmouse)) { psmouse_err(psmouse, "Failed to enable absolute mode\n"); return -1; } if ((model->flags & ALPS_PASS) && - alps_passthrough_mode(psmouse, false)) { + alps_passthrough_mode_v2(psmouse, false)) { return -1; } @@ -626,6 +1189,297 @@ return 0; } +/* + * Enable or disable passthrough mode to the trackstick. Must be in + * command mode when calling this function. + */ +static int alps_passthrough_mode_v3(struct psmouse *psmouse, bool enable) +{ + int reg_val; + + reg_val = alps_command_mode_read_reg(psmouse, 0x0008); + if (reg_val == -1) + return -1; + + if (enable) + reg_val |= 0x01; + else + reg_val &= ~0x01; + + if (__alps_command_mode_write_reg(psmouse, reg_val)) + return -1; + + return 0; +} + +/* Must be in command mode when calling this function */ +static int alps_absolute_mode_v3(struct psmouse *psmouse) +{ + int reg_val; + + reg_val = alps_command_mode_read_reg(psmouse, 0x0004); + if (reg_val == -1) + return -1; + + reg_val |= 0x06; + if (__alps_command_mode_write_reg(psmouse, reg_val)) + return -1; + + return 0; +} + +static int alps_hw_init_v3(struct psmouse *psmouse) +{ + struct alps_data *priv = psmouse->private; + struct ps2dev *ps2dev = &psmouse->ps2dev; + int reg_val; + unsigned char param[4]; + + priv->nibble_commands = alps_v3_nibble_commands; + priv->addr_command = PSMOUSE_CMD_RESET_WRAP; + + if (alps_enter_command_mode(psmouse, NULL)) + goto error; + + /* Check for trackstick */ + reg_val = alps_command_mode_read_reg(psmouse, 0x0008); + if (reg_val == -1) + goto error; + if (reg_val & 0x80) { + if (alps_passthrough_mode_v3(psmouse, true)) + goto error; + if (alps_exit_command_mode(psmouse)) + goto error; + + /* + * E7 report for the trackstick + * + * There have been reports of failures to seem to trace back + * to the above trackstick check failing. When these occur + * this E7 report fails, so when that happens we continue + * with the assumption that there isn't a trackstick after + * all. + */ + param[0] = 0x64; + if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE21) || + ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE21) || + ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE21) || + ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) { + psmouse_warn(psmouse, "trackstick E7 report failed\n"); + } else { + psmouse_dbg(psmouse, + "trackstick E7 report: %2.2x %2.2x %2.2x\n", + param[0], param[1], param[2]); + + /* + * Not sure what this does, but it is absolutely + * essential. Without it, the touchpad does not + * work at all and the trackstick just emits normal + * PS/2 packets. + */ + if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) || + ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) || + ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) || + alps_command_mode_send_nibble(psmouse, 0x9) || + alps_command_mode_send_nibble(psmouse, 0x4)) { + psmouse_err(psmouse, + "Error sending magic E6 sequence\n"); + goto error_passthrough; + } + } + + if (alps_enter_command_mode(psmouse, NULL)) + goto error_passthrough; + if (alps_passthrough_mode_v3(psmouse, false)) + goto error; + } + + if (alps_absolute_mode_v3(psmouse)) { + psmouse_err(psmouse, "Failed to enter absolute mode\n"); + goto error; + } + + reg_val = alps_command_mode_read_reg(psmouse, 0x0006); + if (reg_val == -1) + goto error; + if (__alps_command_mode_write_reg(psmouse, reg_val | 0x01)) + goto error; + + reg_val = alps_command_mode_read_reg(psmouse, 0x0007); + if (reg_val == -1) + goto error; + if (__alps_command_mode_write_reg(psmouse, reg_val | 0x01)) + goto error; + + if (alps_command_mode_read_reg(psmouse, 0x0144) == -1) + goto error; + if (__alps_command_mode_write_reg(psmouse, 0x04)) + goto error; + + if (alps_command_mode_read_reg(psmouse, 0x0159) == -1) + goto error; + if (__alps_command_mode_write_reg(psmouse, 0x03)) + goto error; + + if (alps_command_mode_read_reg(psmouse, 0x0163) == -1) + goto error; + if (alps_command_mode_write_reg(psmouse, 0x0163, 0x03)) + goto error; + + if (alps_command_mode_read_reg(psmouse, 0x0162) == -1) + goto error; + if (alps_command_mode_write_reg(psmouse, 0x0162, 0x04)) + goto error; + + /* + * This ensures the trackstick packets are in the format + * supported by this driver. If bit 1 isn't set the packet + * format is different. + */ + if (alps_command_mode_write_reg(psmouse, 0x0008, 0x82)) + goto error; + + alps_exit_command_mode(psmouse); + + /* Set rate and enable data reporting */ + param[0] = 0x64; + if (ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE) || + ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE)) { + psmouse_err(psmouse, "Failed to enable data reporting\n"); + return -1; + } + + return 0; + +error_passthrough: + /* Something failed while in passthrough mode, so try to get out */ + if (!alps_enter_command_mode(psmouse, NULL)) + alps_passthrough_mode_v3(psmouse, false); +error: + /* + * Leaving the touchpad in command mode will essentially render + * it unusable until the machine reboots, so exit it here just + * to be safe + */ + alps_exit_command_mode(psmouse); + return -1; +} + +/* Must be in command mode when calling this function */ +static int alps_absolute_mode_v4(struct psmouse *psmouse) +{ + int reg_val; + + reg_val = alps_command_mode_read_reg(psmouse, 0x0004); + if (reg_val == -1) + return -1; + + reg_val |= 0x02; + if (__alps_command_mode_write_reg(psmouse, reg_val)) + return -1; + + return 0; +} + +static int alps_hw_init_v4(struct psmouse *psmouse) +{ + struct alps_data *priv = psmouse->private; + struct ps2dev *ps2dev = &psmouse->ps2dev; + unsigned char param[4]; + + priv->nibble_commands = alps_v4_nibble_commands; + priv->addr_command = PSMOUSE_CMD_DISABLE; + + if (alps_enter_command_mode(psmouse, NULL)) + goto error; + + if (alps_absolute_mode_v4(psmouse)) { + psmouse_err(psmouse, "Failed to enter absolute mode\n"); + goto error; + } + + if (alps_command_mode_write_reg(psmouse, 0x0007, 0x8c)) + goto error; + + if (alps_command_mode_write_reg(psmouse, 0x0149, 0x03)) + goto error; + + if (alps_command_mode_write_reg(psmouse, 0x0160, 0x03)) + goto error; + + if (alps_command_mode_write_reg(psmouse, 0x017f, 0x15)) + goto error; + + if (alps_command_mode_write_reg(psmouse, 0x0151, 0x01)) + goto error; + + if (alps_command_mode_write_reg(psmouse, 0x0168, 0x03)) + goto error; + + if (alps_command_mode_write_reg(psmouse, 0x014a, 0x03)) + goto error; + + if (alps_command_mode_write_reg(psmouse, 0x0161, 0x03)) + goto error; + + alps_exit_command_mode(psmouse); + + /* + * This sequence changes the output from a 9-byte to an + * 8-byte format. All the same data seems to be present, + * just in a more compact format. + */ + param[0] = 0xc8; + param[1] = 0x64; + param[2] = 0x50; + if (ps2_command(ps2dev, ¶m[0], PSMOUSE_CMD_SETRATE) || + ps2_command(ps2dev, ¶m[1], PSMOUSE_CMD_SETRATE) || + ps2_command(ps2dev, ¶m[2], PSMOUSE_CMD_SETRATE) || + ps2_command(ps2dev, param, PSMOUSE_CMD_GETID)) + return -1; + + /* Set rate and enable data reporting */ + param[0] = 0x64; + if (ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE) || + ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE)) { + psmouse_err(psmouse, "Failed to enable data reporting\n"); + return -1; + } + + return 0; + +error: + /* + * Leaving the touchpad in command mode will essentially render + * it unusable until the machine reboots, so exit it here just + * to be safe + */ + alps_exit_command_mode(psmouse); + return -1; +} + +static int alps_hw_init(struct psmouse *psmouse) +{ + struct alps_data *priv = psmouse->private; + const struct alps_model_info *model = priv->i; + int ret = -1; + + switch (model->proto_version) { + case ALPS_PROTO_V1: + case ALPS_PROTO_V2: + ret = alps_hw_init_v1_v2(psmouse); + break; + case ALPS_PROTO_V3: + ret = alps_hw_init_v3(psmouse); + break; + case ALPS_PROTO_V4: + ret = alps_hw_init_v4(psmouse); + break; + } + + return ret; +} + static int alps_reconnect(struct psmouse *psmouse) { const struct alps_model_info *model; @@ -666,6 +1520,8 @@ psmouse->private = priv; + psmouse_reset(psmouse); + model = alps_get_model(psmouse, &version); if (!model) goto init_fail; @@ -693,8 +1549,29 @@ BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_RIGHT); dev1->evbit[BIT_WORD(EV_ABS)] |= BIT_MASK(EV_ABS); - input_set_abs_params(dev1, ABS_X, 0, 1023, 0, 0); - input_set_abs_params(dev1, ABS_Y, 0, 767, 0, 0); + + switch (model->proto_version) { + case ALPS_PROTO_V1: + case ALPS_PROTO_V2: + input_set_abs_params(dev1, ABS_X, 0, 1023, 0, 0); + input_set_abs_params(dev1, ABS_Y, 0, 767, 0, 0); + break; + case ALPS_PROTO_V3: + set_bit(INPUT_PROP_SEMI_MT, dev1->propbit); + input_mt_init_slots(dev1, 2); + input_set_abs_params(dev1, ABS_MT_POSITION_X, 0, ALPS_V3_X_MAX, 0, 0); + input_set_abs_params(dev1, ABS_MT_POSITION_Y, 0, ALPS_V3_Y_MAX, 0, 0); + + set_bit(BTN_TOOL_DOUBLETAP, dev1->keybit); + set_bit(BTN_TOOL_TRIPLETAP, dev1->keybit); + set_bit(BTN_TOOL_QUADTAP, dev1->keybit); + /* fall through */ + case ALPS_PROTO_V4: + input_set_abs_params(dev1, ABS_X, 0, ALPS_V3_X_MAX, 0, 0); + input_set_abs_params(dev1, ABS_Y, 0, ALPS_V3_Y_MAX, 0, 0); + break; + } + input_set_abs_params(dev1, ABS_PRESSURE, 0, 127, 0, 0); if (model->flags & ALPS_WHEEL) { @@ -737,7 +1614,7 @@ psmouse->poll = alps_poll; psmouse->disconnect = alps_disconnect; psmouse->reconnect = alps_reconnect; - psmouse->pktsize = 6; + psmouse->pktsize = model->proto_version == ALPS_PROTO_V4 ? 8 : 6; /* We are having trouble resyncing ALPS touchpads so disable it for now */ psmouse->resync_time = 0; --- linux-3.2.0.orig/drivers/power/power_supply_core.c +++ linux-3.2.0/drivers/power/power_supply_core.c @@ -147,6 +147,12 @@ } EXPORT_SYMBOL_GPL(power_supply_get_by_name); +int power_supply_powers(struct power_supply *psy, struct device *dev) +{ + return sysfs_create_link(&psy->dev->kobj, &dev->kobj, "powers"); +} +EXPORT_SYMBOL_GPL(power_supply_powers); + static void power_supply_dev_release(struct device *dev) { pr_debug("device: '%s': %s\n", dev_name(dev), __func__); @@ -202,6 +208,7 @@ void power_supply_unregister(struct power_supply *psy) { cancel_work_sync(&psy->changed_work); + sysfs_remove_link(&psy->dev->kobj, "powers"); power_supply_remove_triggers(psy); device_unregister(psy->dev); } --- linux-3.2.0.orig/drivers/mmc/card/block.c +++ linux-3.2.0/drivers/mmc/card/block.c @@ -266,6 +266,9 @@ goto idata_err; } + if (!idata->buf_bytes) + return idata; + idata->buf = kzalloc(idata->buf_bytes, GFP_KERNEL); if (!idata->buf) { err = -ENOMEM; @@ -312,25 +315,6 @@ if (IS_ERR(idata)) return PTR_ERR(idata); - cmd.opcode = idata->ic.opcode; - cmd.arg = idata->ic.arg; - cmd.flags = idata->ic.flags; - - data.sg = &sg; - data.sg_len = 1; - data.blksz = idata->ic.blksz; - data.blocks = idata->ic.blocks; - - sg_init_one(data.sg, idata->buf, idata->buf_bytes); - - if (idata->ic.write_flag) - data.flags = MMC_DATA_WRITE; - else - data.flags = MMC_DATA_READ; - - mrq.cmd = &cmd; - mrq.data = &data; - md = mmc_blk_get(bdev->bd_disk); if (!md) { err = -EINVAL; @@ -343,6 +327,48 @@ goto cmd_done; } + cmd.opcode = idata->ic.opcode; + cmd.arg = idata->ic.arg; + cmd.flags = idata->ic.flags; + + if (idata->buf_bytes) { + data.sg = &sg; + data.sg_len = 1; + data.blksz = idata->ic.blksz; + data.blocks = idata->ic.blocks; + + sg_init_one(data.sg, idata->buf, idata->buf_bytes); + + if (idata->ic.write_flag) + data.flags = MMC_DATA_WRITE; + else + data.flags = MMC_DATA_READ; + + /* data.flags must already be set before doing this. */ + mmc_set_data_timeout(&data, card); + + /* Allow overriding the timeout_ns for empirical tuning. */ + if (idata->ic.data_timeout_ns) + data.timeout_ns = idata->ic.data_timeout_ns; + + if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) { + /* + * Pretend this is a data transfer and rely on the + * host driver to compute timeout. When all host + * drivers support cmd.cmd_timeout for R1B, this + * can be changed to: + * + * mrq.data = NULL; + * cmd.cmd_timeout = idata->ic.cmd_timeout_ms; + */ + data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000; + } + + mrq.data = &data; + } + + mrq.cmd = &cmd; + mmc_claim_host(card->host); if (idata->ic.is_acmd) { @@ -351,24 +377,6 @@ goto cmd_rel_host; } - /* data.flags must already be set before doing this. */ - mmc_set_data_timeout(&data, card); - /* Allow overriding the timeout_ns for empirical tuning. */ - if (idata->ic.data_timeout_ns) - data.timeout_ns = idata->ic.data_timeout_ns; - - if ((cmd.flags & MMC_RSP_R1B) == MMC_RSP_R1B) { - /* - * Pretend this is a data transfer and rely on the host driver - * to compute timeout. When all host drivers support - * cmd.cmd_timeout for R1B, this can be changed to: - * - * mrq.data = NULL; - * cmd.cmd_timeout = idata->ic.cmd_timeout_ms; - */ - data.timeout_ns = idata->ic.cmd_timeout_ms * 1000000; - } - mmc_wait_for_req(card->host, &mrq); if (cmd.error) { @@ -791,7 +799,7 @@ { struct mmc_blk_data *md = mq->data; struct mmc_card *card = md->queue.card; - unsigned int from, nr, arg; + unsigned int from, nr, arg, trim_arg, erase_arg; int err = 0, type = MMC_BLK_SECDISCARD; if (!(mmc_can_secure_erase_trim(card) || mmc_can_sanitize(card))) { @@ -799,20 +807,26 @@ goto out; } + from = blk_rq_pos(req); + nr = blk_rq_sectors(req); + /* The sanitize operation is supported at v4.5 only */ if (mmc_can_sanitize(card)) { - err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, - EXT_CSD_SANITIZE_START, 1, 0); - goto out; + erase_arg = MMC_ERASE_ARG; + trim_arg = MMC_TRIM_ARG; + } else { + erase_arg = MMC_SECURE_ERASE_ARG; + trim_arg = MMC_SECURE_TRIM1_ARG; } - from = blk_rq_pos(req); - nr = blk_rq_sectors(req); - - if (mmc_can_trim(card) && !mmc_erase_group_aligned(card, from, nr)) - arg = MMC_SECURE_TRIM1_ARG; - else - arg = MMC_SECURE_ERASE_ARG; + if (mmc_erase_group_aligned(card, from, nr)) + arg = erase_arg; + else if (mmc_can_trim(card)) + arg = trim_arg; + else { + err = -EINVAL; + goto out; + } retry: if (card->quirks & MMC_QUIRK_INAND_CMD38) { err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, @@ -822,25 +836,41 @@ INAND_CMD38_ARG_SECERASE, 0); if (err) - goto out; + goto out_retry; } + err = mmc_erase(card, from, nr, arg); - if (!err && arg == MMC_SECURE_TRIM1_ARG) { + if (err == -EIO) + goto out_retry; + if (err) + goto out; + + if (arg == MMC_SECURE_TRIM1_ARG) { if (card->quirks & MMC_QUIRK_INAND_CMD38) { err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, INAND_CMD38_ARG_EXT_CSD, INAND_CMD38_ARG_SECTRIM2, 0); if (err) - goto out; + goto out_retry; } + err = mmc_erase(card, from, nr, MMC_SECURE_TRIM2_ARG); + if (err == -EIO) + goto out_retry; + if (err) + goto out; } -out: - if (err == -EIO && !mmc_blk_reset(md, card->host, type)) + + if (mmc_can_sanitize(card)) + err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, + EXT_CSD_SANITIZE_START, 1, 0); +out_retry: + if (err && !mmc_blk_reset(md, card->host, type)) goto retry; if (!err) mmc_blk_reset_success(md, type); +out: spin_lock_irq(&md->lock); __blk_end_request(req, err, blk_rq_bytes(req)); spin_unlock_irq(&md->lock); --- linux-3.2.0.orig/drivers/mmc/card/queue.c +++ linux-3.2.0/drivers/mmc/card/queue.c @@ -134,7 +134,7 @@ queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q); q->limits.max_discard_sectors = max_discard; - if (card->erased_byte == 0) + if (card->erased_byte == 0 && !mmc_can_discard(card)) q->limits.discard_zeroes_data = 1; q->limits.discard_granularity = card->pref_erase << 9; /* granularity must not be greater than max. discard */ --- linux-3.2.0.orig/drivers/mmc/host/sdhci.c +++ linux-3.2.0/drivers/mmc/host/sdhci.c @@ -1364,8 +1364,7 @@ if ((ios->timing == MMC_TIMING_UHS_SDR50) || (ios->timing == MMC_TIMING_UHS_SDR104) || (ios->timing == MMC_TIMING_UHS_DDR50) || - (ios->timing == MMC_TIMING_UHS_SDR25) || - (ios->timing == MMC_TIMING_UHS_SDR12)) + (ios->timing == MMC_TIMING_UHS_SDR25)) ctrl |= SDHCI_CTRL_HISPD; ctrl_2 = sdhci_readw(host, SDHCI_HOST_CONTROL2); @@ -2336,9 +2335,8 @@ /* Disable tuning since we are suspending */ if (host->version >= SDHCI_SPEC_300 && host->tuning_count && host->tuning_mode == SDHCI_TUNING_MODE_1) { + del_timer_sync(&host->tuning_timer); host->flags &= ~SDHCI_NEEDS_RETUNING; - mod_timer(&host->tuning_timer, jiffies + - host->tuning_count * HZ); } ret = mmc_suspend_host(host->mmc); --- linux-3.2.0.orig/drivers/mmc/host/sdhci-esdhc-imx.c +++ linux-3.2.0/drivers/mmc/host/sdhci-esdhc-imx.c @@ -269,8 +269,9 @@ imx_data->scratchpad = val; return; case SDHCI_COMMAND: - if ((host->cmd->opcode == MMC_STOP_TRANSMISSION) - && (imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)) + if ((host->cmd->opcode == MMC_STOP_TRANSMISSION || + host->cmd->opcode == MMC_SET_BLOCK_COUNT) && + (imx_data->flags & ESDHC_FLAG_MULTIBLK_NO_INT)) val |= SDHCI_CMD_ABORTCMD; if (is_imx6q_usdhc(imx_data)) { @@ -466,8 +467,7 @@ clk_enable(clk); pltfm_host->clk = clk; - if (!is_imx25_esdhc(imx_data)) - host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL; + host->quirks |= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL; if (is_imx25_esdhc(imx_data) || is_imx35_esdhc(imx_data)) /* Fix errata ENGcm07207 present on i.MX25 and i.MX35 */ --- linux-3.2.0.orig/drivers/mmc/host/omap_hsmmc.c +++ linux-3.2.0/drivers/mmc/host/omap_hsmmc.c @@ -1915,7 +1915,7 @@ host->slot_id = 0; host->mapbase = res->start; host->base = ioremap(host->mapbase, SZ_4K); - host->power_mode = MMC_POWER_OFF; + host->power_mode = -1; host->next_data.cookie = 1; platform_set_drvdata(pdev, host); --- linux-3.2.0.orig/drivers/mmc/host/dw_mmc.c +++ linux-3.2.0/drivers/mmc/host/dw_mmc.c @@ -22,7 +22,6 @@ #include #include #include -#include #include #include #include @@ -502,8 +501,14 @@ host->dir_status = DW_MCI_SEND_STATUS; if (dw_mci_submit_data_dma(host, data)) { + int flags = SG_MITER_ATOMIC; + if (host->data->flags & MMC_DATA_READ) + flags |= SG_MITER_TO_SG; + else + flags |= SG_MITER_FROM_SG; + + sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags); host->sg = data->sg; - host->pio_offset = 0; host->part_buf_start = 0; host->part_buf_count = 0; @@ -953,6 +958,7 @@ * generates a block interrupt, hence setting * the scatter-gather pointer to NULL. */ + sg_miter_stop(&host->sg_miter); host->sg = NULL; ctrl = mci_readl(host, CTRL); ctrl |= SDMMC_CTRL_FIFO_RESET; @@ -1286,54 +1292,44 @@ static void dw_mci_read_data_pio(struct dw_mci *host) { - struct scatterlist *sg = host->sg; - void *buf = sg_virt(sg); - unsigned int offset = host->pio_offset; + struct sg_mapping_iter *sg_miter = &host->sg_miter; + void *buf; + unsigned int offset; struct mmc_data *data = host->data; int shift = host->data_shift; u32 status; unsigned int nbytes = 0, len; + unsigned int remain, fcnt; do { - len = host->part_buf_count + - (SDMMC_GET_FCNT(mci_readl(host, STATUS)) << shift); - if (offset + len <= sg->length) { - dw_mci_pull_data(host, (void *)(buf + offset), len); + if (!sg_miter_next(sg_miter)) + goto done; + host->sg = sg_miter->__sg; + buf = sg_miter->addr; + remain = sg_miter->length; + offset = 0; + + do { + fcnt = (SDMMC_GET_FCNT(mci_readl(host, STATUS)) + << shift) + host->part_buf_count; + len = min(remain, fcnt); + if (!len) + break; + dw_mci_pull_data(host, (void *)(buf + offset), len); offset += len; nbytes += len; - - if (offset == sg->length) { - flush_dcache_page(sg_page(sg)); - host->sg = sg = sg_next(sg); - if (!sg) - goto done; - - offset = 0; - buf = sg_virt(sg); - } - } else { - unsigned int remaining = sg->length - offset; - dw_mci_pull_data(host, (void *)(buf + offset), - remaining); - nbytes += remaining; - - flush_dcache_page(sg_page(sg)); - host->sg = sg = sg_next(sg); - if (!sg) - goto done; - - offset = len - remaining; - buf = sg_virt(sg); - dw_mci_pull_data(host, buf, offset); - nbytes += offset; - } + remain -= len; + } while (remain); + sg_miter->consumed = offset; status = mci_readl(host, MINTSTS); mci_writel(host, RINTSTS, SDMMC_INT_RXDR); if (status & DW_MCI_DATA_ERROR_FLAGS) { host->data_status = status; data->bytes_xfered += nbytes; + sg_miter_stop(sg_miter); + host->sg = NULL; smp_wmb(); set_bit(EVENT_DATA_ERROR, &host->pending_events); @@ -1342,65 +1338,66 @@ return; } } while (status & SDMMC_INT_RXDR); /*if the RXDR is ready read again*/ - host->pio_offset = offset; data->bytes_xfered += nbytes; + + if (!remain) { + if (!sg_miter_next(sg_miter)) + goto done; + sg_miter->consumed = 0; + } + sg_miter_stop(sg_miter); return; done: data->bytes_xfered += nbytes; + sg_miter_stop(sg_miter); + host->sg = NULL; smp_wmb(); set_bit(EVENT_XFER_COMPLETE, &host->pending_events); } static void dw_mci_write_data_pio(struct dw_mci *host) { - struct scatterlist *sg = host->sg; - void *buf = sg_virt(sg); - unsigned int offset = host->pio_offset; + struct sg_mapping_iter *sg_miter = &host->sg_miter; + void *buf; + unsigned int offset; struct mmc_data *data = host->data; int shift = host->data_shift; u32 status; unsigned int nbytes = 0, len; + unsigned int fifo_depth = host->fifo_depth; + unsigned int remain, fcnt; do { - len = ((host->fifo_depth - - SDMMC_GET_FCNT(mci_readl(host, STATUS))) << shift) - - host->part_buf_count; - if (offset + len <= sg->length) { - host->push_data(host, (void *)(buf + offset), len); + if (!sg_miter_next(sg_miter)) + goto done; + host->sg = sg_miter->__sg; + buf = sg_miter->addr; + remain = sg_miter->length; + offset = 0; + + do { + fcnt = ((fifo_depth - + SDMMC_GET_FCNT(mci_readl(host, STATUS))) + << shift) - host->part_buf_count; + len = min(remain, fcnt); + if (!len) + break; + host->push_data(host, (void *)(buf + offset), len); offset += len; nbytes += len; - if (offset == sg->length) { - host->sg = sg = sg_next(sg); - if (!sg) - goto done; - - offset = 0; - buf = sg_virt(sg); - } - } else { - unsigned int remaining = sg->length - offset; - - host->push_data(host, (void *)(buf + offset), - remaining); - nbytes += remaining; - - host->sg = sg = sg_next(sg); - if (!sg) - goto done; - - offset = len - remaining; - buf = sg_virt(sg); - host->push_data(host, (void *)buf, offset); - nbytes += offset; - } + remain -= len; + } while (remain); + sg_miter->consumed = offset; status = mci_readl(host, MINTSTS); mci_writel(host, RINTSTS, SDMMC_INT_TXDR); if (status & DW_MCI_DATA_ERROR_FLAGS) { host->data_status = status; data->bytes_xfered += nbytes; + sg_miter_stop(sg_miter); + host->sg = NULL; smp_wmb(); @@ -1410,12 +1407,20 @@ return; } } while (status & SDMMC_INT_TXDR); /* if TXDR write again */ - host->pio_offset = offset; data->bytes_xfered += nbytes; + + if (!remain) { + if (!sg_miter_next(sg_miter)) + goto done; + sg_miter->consumed = 0; + } + sg_miter_stop(sg_miter); return; done: data->bytes_xfered += nbytes; + sg_miter_stop(sg_miter); + host->sg = NULL; smp_wmb(); set_bit(EVENT_XFER_COMPLETE, &host->pending_events); } @@ -1618,6 +1623,7 @@ * block interrupt, hence setting the * scatter-gather pointer to NULL. */ + sg_miter_stop(&host->sg_miter); host->sg = NULL; ctrl = mci_readl(host, CTRL); --- linux-3.2.0.orig/drivers/mmc/host/atmel-mci.c +++ linux-3.2.0/drivers/mmc/host/atmel-mci.c @@ -480,7 +480,14 @@ static inline unsigned int atmci_ns_to_clocks(struct atmel_mci *host, unsigned int ns) { - return (ns * (host->bus_hz / 1000000) + 999) / 1000; + /* + * It is easier here to use us instead of ns for the timeout, + * it prevents from overflows during calculation. + */ + unsigned int us = DIV_ROUND_UP(ns, 1000); + + /* Maximum clock frequency is host->bus_hz/2 */ + return us * (DIV_ROUND_UP(host->bus_hz, 2000000)); } static void atmci_set_timeout(struct atmel_mci *host, @@ -965,11 +972,14 @@ host->data_status = 0; if (host->need_reset) { + iflags = atmci_readl(host, ATMCI_IMR); + iflags &= (ATMCI_SDIOIRQA | ATMCI_SDIOIRQB); atmci_writel(host, ATMCI_CR, ATMCI_CR_SWRST); atmci_writel(host, ATMCI_CR, ATMCI_CR_MCIEN); atmci_writel(host, ATMCI_MR, host->mode_reg); if (host->caps.has_cfg_reg) atmci_writel(host, ATMCI_CFG, host->cfg_reg); + atmci_writel(host, ATMCI_IER, iflags); host->need_reset = false; } atmci_writel(host, ATMCI_SDCR, slot->sdc_reg); @@ -1941,12 +1951,12 @@ } } -static void atmci_configure_dma(struct atmel_mci *host) +static bool atmci_configure_dma(struct atmel_mci *host) { struct mci_platform_data *pdata; if (host == NULL) - return; + return false; pdata = host->pdev->dev.platform_data; @@ -1963,12 +1973,15 @@ host->dma.chan = dma_request_channel(mask, atmci_filter, pdata->dma_slave); } - if (!host->dma.chan) - dev_notice(&host->pdev->dev, "DMA not available, using PIO\n"); - else + if (!host->dma.chan) { + dev_warn(&host->pdev->dev, "no DMA channel available\n"); + return false; + } else { dev_info(&host->pdev->dev, "Using %s for DMA transfers\n", dma_chan_name(host->dma.chan)); + return true; + } } static inline unsigned int atmci_get_version(struct atmel_mci *host) @@ -2078,8 +2091,7 @@ /* Get MCI capabilities and set operations according to it */ atmci_get_cap(host); - if (host->caps.has_dma) { - dev_info(&pdev->dev, "using DMA\n"); + if (host->caps.has_dma && atmci_configure_dma(host)) { host->prepare_data = &atmci_prepare_data_dma; host->submit_data = &atmci_submit_data_dma; host->stop_transfer = &atmci_stop_transfer_dma; @@ -2089,15 +2101,12 @@ host->submit_data = &atmci_submit_data_pdc; host->stop_transfer = &atmci_stop_transfer_pdc; } else { - dev_info(&pdev->dev, "no DMA, no PDC\n"); + dev_info(&pdev->dev, "using PIO\n"); host->prepare_data = &atmci_prepare_data; host->submit_data = &atmci_submit_data; host->stop_transfer = &atmci_stop_transfer; } - if (host->caps.has_dma) - atmci_configure_dma(host); - platform_set_drvdata(pdev, host); /* We need at least one slot to succeed */ --- linux-3.2.0.orig/drivers/mmc/host/sdhci-dove.c +++ linux-3.2.0/drivers/mmc/host/sdhci-dove.c @@ -20,6 +20,7 @@ */ #include +#include #include #include "sdhci-pltfm.h" --- linux-3.2.0.orig/drivers/mmc/core/core.c +++ linux-3.2.0/drivers/mmc/core/core.c @@ -1516,7 +1516,10 @@ { unsigned int erase_timeout; - if (card->ext_csd.erase_group_def & 1) { + if (arg == MMC_DISCARD_ARG || + (arg == MMC_TRIM_ARG && card->ext_csd.rev >= 6)) { + erase_timeout = card->ext_csd.trim_timeout; + } else if (card->ext_csd.erase_group_def & 1) { /* High Capacity Erase Group Size uses HC timeouts */ if (arg == MMC_TRIM_ARG) erase_timeout = card->ext_csd.trim_timeout; @@ -1788,8 +1791,6 @@ { if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_GB_CL_EN) return 1; - if (mmc_can_discard(card)) - return 1; return 0; } EXPORT_SYMBOL(mmc_can_trim); @@ -1808,6 +1809,8 @@ int mmc_can_sanitize(struct mmc_card *card) { + if (!mmc_can_trim(card) && !mmc_can_erase(card)) + return 0; if (card->ext_csd.sec_feature_support & EXT_CSD_SEC_SANITIZE) return 1; return 0; --- linux-3.2.0.orig/drivers/mmc/core/sdio_irq.c +++ linux-3.2.0/drivers/mmc/core/sdio_irq.c @@ -28,18 +28,20 @@ #include "sdio_ops.h" -static int process_sdio_pending_irqs(struct mmc_card *card) +static int process_sdio_pending_irqs(struct mmc_host *host) { + struct mmc_card *card = host->card; int i, ret, count; unsigned char pending; struct sdio_func *func; /* * Optimization, if there is only 1 function interrupt registered - * call irq handler directly + * and we know an IRQ was signaled then call irq handler directly. + * Otherwise do the full probe. */ func = card->sdio_single_irq; - if (func) { + if (func && host->sdio_irq_pending) { func->irq_handler(func); return 1; } @@ -116,7 +118,8 @@ ret = __mmc_claim_host(host, &host->sdio_irq_thread_abort); if (ret) break; - ret = process_sdio_pending_irqs(host->card); + ret = process_sdio_pending_irqs(host); + host->sdio_irq_pending = false; mmc_release_host(host); /* --- linux-3.2.0.orig/drivers/mmc/core/sdio.c +++ linux-3.2.0/drivers/mmc/core/sdio.c @@ -663,7 +663,7 @@ } if (!err && host->sdio_irqs) - mmc_signal_sdio_irq(host); + wake_up_process(host->sdio_irq_thread); mmc_release_host(host); /* --- linux-3.2.0.orig/drivers/mmc/core/mmc.c +++ linux-3.2.0/drivers/mmc/core/mmc.c @@ -1048,7 +1048,7 @@ * * WARNING: eMMC rules are NOT the same as SD DDR */ - if (ddr == EXT_CSD_CARD_TYPE_DDR_1_2V) { + if (ddr == MMC_1_2V_DDR_MODE) { err = mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_120, 0); if (err) --- linux-3.2.0.orig/drivers/mmc/core/host.c +++ linux-3.2.0/drivers/mmc/core/host.c @@ -386,3 +386,4 @@ } EXPORT_SYMBOL(mmc_free_host); + --- linux-3.2.0.orig/drivers/pcmcia/ds.c +++ linux-3.2.0/drivers/pcmcia/ds.c @@ -1269,10 +1269,8 @@ static int pcmcia_bus_early_resume(struct pcmcia_socket *skt) { - if (!verify_cis_cache(skt)) { - pcmcia_put_socket(skt); + if (!verify_cis_cache(skt)) return 0; - } dev_dbg(&skt->dev, "cis mismatch - different card\n"); --- linux-3.2.0.orig/drivers/ata/ata_piix.c +++ linux-3.2.0/drivers/ata/ata_piix.c @@ -94,6 +94,9 @@ #include #include #include +#ifdef CONFIG_X86 +#include +#endif #define DRV_NAME "ata_piix" #define DRV_VERSION "2.13" @@ -188,6 +191,29 @@ static unsigned int in_module_init = 1; +static int prefer_ms_hyperv = 1; + +unsigned int ata_piix_read_id(struct ata_device *dev, + struct ata_taskfile *tf, u16 *id) +{ + int ret = ata_do_dev_read_id(dev, tf, id); + +#ifdef CONFIG_X86 + /* XXX: note that the device id is in little-endian order, the caller + * will shift it to host order, but we are working with little-endian. + * As this is _only_ used on x86 we can actually directly access it + * as host is also little-endian. + */ + if (!ret && prefer_ms_hyperv && x86_hyper == &x86_hyper_ms_hyperv && + ata_id_is_ata(id)) { + ata_dev_printk(dev, KERN_WARNING, "ATA disk ignored deferring to Hyper-V paravirt driver\n"); + + return AC_ERR_DEV|AC_ERR_NODEV_HINT; + } +#endif + return ret; +} + static const struct pci_device_id piix_pci_tbl[] = { /* Intel PIIX3 for the 430HX etc */ { 0x8086, 0x7010, PCI_ANY_ID, PCI_ANY_ID, 0, 0, piix_pata_mwdma }, @@ -321,6 +347,14 @@ { 0x8086, 0x1e08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata }, /* SATA Controller IDE (Panther Point) */ { 0x8086, 0x1e09, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata }, + /* SATA Controller IDE (Lynx Point) */ + { 0x8086, 0x8c00, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_snb }, + /* SATA Controller IDE (Lynx Point) */ + { 0x8086, 0x8c01, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_snb }, + /* SATA Controller IDE (Lynx Point) */ + { 0x8086, 0x8c08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata }, + /* SATA Controller IDE (Lynx Point) */ + { 0x8086, 0x8c09, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata }, { } /* terminate list */ }; @@ -351,6 +385,7 @@ .set_piomode = piix_set_piomode, .set_dmamode = piix_set_dmamode, .prereset = piix_pata_prereset, + .read_id = ata_piix_read_id, }; static struct ata_port_operations piix_vmw_ops = { @@ -1117,6 +1152,13 @@ }, }, { + .ident = "Satellite Pro A120", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), + DMI_MATCH(DMI_PRODUCT_NAME, "Satellite Pro A120"), + }, + }, + { .ident = "Portege M500", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), @@ -1666,10 +1708,16 @@ ata_pci_remove_one(pdev); } +static bool disable_driver = 0; static int __init piix_init(void) { int rc; + if (disable_driver) { + printk(KERN_WARNING "ata_piix: driver disabled completely\n"); + return 0; + } + DPRINTK("pci_register_driver\n"); rc = pci_register_driver(&piix_pci_driver); if (rc) @@ -1688,3 +1736,6 @@ module_init(piix_init); module_exit(piix_exit); + +module_param(prefer_ms_hyperv, int, 0); +module_param(disable_driver, bool, 0); --- linux-3.2.0.orig/drivers/ata/libata-eh.c +++ linux-3.2.0/drivers/ata/libata-eh.c @@ -3500,7 +3500,8 @@ u64 now = get_jiffies_64(); int *trials = void_arg; - if (ent->timestamp < now - min(now, interval)) + if ((ent->eflags & ATA_EFLAG_OLD_ER) || + (ent->timestamp < now - min(now, interval))) return -1; (*trials)++; --- linux-3.2.0.orig/drivers/ata/pata_legacy.c +++ linux-3.2.0/drivers/ata/pata_legacy.c @@ -401,8 +401,7 @@ ata_timing_compute(adev, adev->pio_mode, &t, 20000, 1000); active = clamp_val(t.active, 2, 15); - recover = clamp_val(t.recover, 2, 16); - recover &= 0x15; + recover = clamp_val(t.recover, 2, 16) & 0x0F; inb(0x3E6); inb(0x3E6); --- linux-3.2.0.orig/drivers/ata/ahci.c +++ linux-3.2.0/drivers/ata/ahci.c @@ -260,6 +260,14 @@ { PCI_VDEVICE(INTEL, 0x1e06), board_ahci }, /* Panther Point RAID */ { PCI_VDEVICE(INTEL, 0x1e07), board_ahci }, /* Panther Point RAID */ { PCI_VDEVICE(INTEL, 0x1e0e), board_ahci }, /* Panther Point RAID */ + { PCI_VDEVICE(INTEL, 0x8c02), board_ahci }, /* Lynx Point AHCI */ + { PCI_VDEVICE(INTEL, 0x8c03), board_ahci }, /* Lynx Point AHCI */ + { PCI_VDEVICE(INTEL, 0x8c04), board_ahci }, /* Lynx Point RAID */ + { PCI_VDEVICE(INTEL, 0x8c05), board_ahci }, /* Lynx Point RAID */ + { PCI_VDEVICE(INTEL, 0x8c06), board_ahci }, /* Lynx Point RAID */ + { PCI_VDEVICE(INTEL, 0x8c07), board_ahci }, /* Lynx Point RAID */ + { PCI_VDEVICE(INTEL, 0x8c0e), board_ahci }, /* Lynx Point RAID */ + { PCI_VDEVICE(INTEL, 0x8c0f), board_ahci }, /* Lynx Point RAID */ /* JMicron 360/1/3/5/6, match class to avoid IDE function */ { PCI_VENDOR_ID_JMICRON, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, @@ -384,6 +392,8 @@ .driver_data = board_ahci_yes_fbs }, /* 88se9128 */ { PCI_DEVICE(0x1b4b, 0x9125), .driver_data = board_ahci_yes_fbs }, /* 88se9125 */ + { PCI_DEVICE(0x1b4b, 0x917a), + .driver_data = board_ahci_yes_fbs }, /* 88se9172 */ { PCI_DEVICE(0x1b4b, 0x91a3), .driver_data = board_ahci_yes_fbs }, --- linux-3.2.0.orig/drivers/watchdog/hpwdt.c +++ linux-3.2.0/drivers/watchdog/hpwdt.c @@ -231,7 +231,7 @@ cmn_regs.u1.reax = CRU_BIOS_SIGNATURE_VALUE; - set_memory_x((unsigned long)bios32_entrypoint, (2 * PAGE_SIZE)); + set_memory_x((unsigned long)bios32_map, 2); asminline_call(&cmn_regs, bios32_entrypoint); if (cmn_regs.u1.ral != 0) { @@ -250,7 +250,8 @@ cru_rom_addr = ioremap(cru_physical_address, cru_length); if (cru_rom_addr) { - set_memory_x((unsigned long)cru_rom_addr, cru_length); + set_memory_x((unsigned long)cru_rom_addr & PAGE_MASK, + (cru_length + PAGE_SIZE - 1) >> PAGE_SHIFT); retval = 0; } } --- linux-3.2.0.orig/drivers/watchdog/iTCO_wdt.c +++ linux-3.2.0/drivers/watchdog/iTCO_wdt.c @@ -36,6 +36,7 @@ * document number TBD : Patsburg (PBG) * document number TBD : DH89xxCC * document number TBD : Panther Point + * document number TBD : Lynx Point */ /* @@ -126,6 +127,7 @@ TCO_PBG, /* Patsburg */ TCO_DH89XXCC, /* DH89xxCC */ TCO_PPT, /* Panther Point */ + TCO_LPT, /* Lynx Point */ }; static struct { @@ -189,6 +191,7 @@ {"Patsburg", 2}, {"DH89xxCC", 2}, {"Panther Point", 2}, + {"Lynx Point", 2}, {NULL, 0} }; @@ -331,6 +334,38 @@ { PCI_VDEVICE(INTEL, 0x1e5d), TCO_PPT}, { PCI_VDEVICE(INTEL, 0x1e5e), TCO_PPT}, { PCI_VDEVICE(INTEL, 0x1e5f), TCO_PPT}, + { PCI_VDEVICE(INTEL, 0x8c40), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c41), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c42), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c43), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c44), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c45), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c46), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c47), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c48), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c49), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c4a), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c4b), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c4c), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c4d), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c4e), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c4f), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c50), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c51), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c52), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c53), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c54), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c55), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c56), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c57), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c58), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c59), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c5a), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c5b), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c5c), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c5d), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c5e), TCO_LPT}, + { PCI_VDEVICE(INTEL, 0x8c5f), TCO_LPT}, { 0, }, /* End of list */ }; MODULE_DEVICE_TABLE(pci, iTCO_wdt_pci_tbl); --- linux-3.2.0.orig/drivers/infiniband/ulp/iser/iscsi_iser.c +++ linux-3.2.0/drivers/infiniband/ulp/iser/iscsi_iser.c @@ -364,6 +364,9 @@ } ib_conn = ep->dd_data; + if (iser_alloc_rx_descriptors(ib_conn)) + return -ENOMEM; + /* binds the iSER connection retrieved from the previously * connected ep_handle to the iSCSI layer connection. exchanges * connection pointers */ @@ -398,19 +401,6 @@ iser_conn->ib_conn = NULL; } -static int -iscsi_iser_conn_start(struct iscsi_cls_conn *cls_conn) -{ - struct iscsi_conn *conn = cls_conn->dd_data; - int err; - - err = iser_conn_set_full_featured_mode(conn); - if (err) - return err; - - return iscsi_conn_start(cls_conn); -} - static void iscsi_iser_session_destroy(struct iscsi_cls_session *cls_session) { struct Scsi_Host *shost = iscsi_session_to_shost(cls_session); @@ -724,7 +714,7 @@ .get_conn_param = iscsi_conn_get_param, .get_ep_param = iscsi_iser_get_ep_param, .get_session_param = iscsi_session_get_param, - .start_conn = iscsi_iser_conn_start, + .start_conn = iscsi_conn_start, .stop_conn = iscsi_iser_conn_stop, /* iscsi host params */ .get_host_param = iscsi_host_get_param, --- linux-3.2.0.orig/drivers/infiniband/ulp/iser/iser_initiator.c +++ linux-3.2.0/drivers/infiniband/ulp/iser/iser_initiator.c @@ -170,7 +170,7 @@ } -static int iser_alloc_rx_descriptors(struct iser_conn *ib_conn) +int iser_alloc_rx_descriptors(struct iser_conn *ib_conn) { int i, j; u64 dma_addr; @@ -242,23 +242,24 @@ kfree(ib_conn->rx_descs); } -/** - * iser_conn_set_full_featured_mode - (iSER API) - */ -int iser_conn_set_full_featured_mode(struct iscsi_conn *conn) +static int iser_post_rx_bufs(struct iscsi_conn *conn, struct iscsi_hdr *req) { struct iscsi_iser_conn *iser_conn = conn->dd_data; - iser_dbg("Initially post: %d\n", ISER_MIN_POSTED_RX); + iser_dbg("req op %x flags %x\n", req->opcode, req->flags); + /* check if this is the last login - going to full feature phase */ + if ((req->flags & ISCSI_FULL_FEATURE_PHASE) != ISCSI_FULL_FEATURE_PHASE) + return 0; - /* Check that there is no posted recv or send buffers left - */ - /* they must be consumed during the login phase */ - BUG_ON(iser_conn->ib_conn->post_recv_buf_count != 0); - BUG_ON(atomic_read(&iser_conn->ib_conn->post_send_buf_count) != 0); - - if (iser_alloc_rx_descriptors(iser_conn->ib_conn)) - return -ENOMEM; + /* + * Check that there is one posted recv buffer (for the last login + * response) and no posted send buffers left - they must have been + * consumed during previous login phases. + */ + WARN_ON(iser_conn->ib_conn->post_recv_buf_count != 1); + WARN_ON(atomic_read(&iser_conn->ib_conn->post_send_buf_count) != 0); + iser_dbg("Initially post: %d\n", ISER_MIN_POSTED_RX); /* Initial post receive buffers */ if (iser_post_recvm(iser_conn->ib_conn, ISER_MIN_POSTED_RX)) return -ENOMEM; @@ -438,6 +439,9 @@ err = iser_post_recvl(iser_conn->ib_conn); if (err) goto send_control_error; + err = iser_post_rx_bufs(conn, task->hdr); + if (err) + goto send_control_error; } err = iser_post_send(iser_conn->ib_conn, mdesc); --- linux-3.2.0.orig/drivers/infiniband/ulp/iser/iscsi_iser.h +++ linux-3.2.0/drivers/infiniband/ulp/iser/iscsi_iser.h @@ -366,4 +366,5 @@ void iser_dma_unmap_task_data(struct iscsi_iser_task *iser_task); int iser_initialize_task_headers(struct iscsi_task *task, struct iser_tx_desc *tx_desc); +int iser_alloc_rx_descriptors(struct iser_conn *ib_conn); #endif --- linux-3.2.0.orig/drivers/infiniband/ulp/ipoib/ipoib_multicast.c +++ linux-3.2.0/drivers/infiniband/ulp/ipoib/ipoib_multicast.c @@ -262,21 +262,14 @@ netif_tx_lock_bh(dev); while (!skb_queue_empty(&mcast->pkt_queue)) { struct sk_buff *skb = skb_dequeue(&mcast->pkt_queue); - struct dst_entry *dst = skb_dst(skb); - struct neighbour *n = NULL; netif_tx_unlock_bh(dev); skb->dev = dev; - if (dst) - n = dst_get_neighbour_raw(dst); - if (!dst || !n) { - /* put pseudoheader back on for next time */ - skb_push(skb, sizeof (struct ipoib_pseudoheader)); - } if (dev_queue_xmit(skb)) ipoib_warn(priv, "dev_queue_xmit failed to requeue packet\n"); + netif_tx_lock_bh(dev); } netif_tx_unlock_bh(dev); --- linux-3.2.0.orig/drivers/infiniband/ulp/ipoib/ipoib.h +++ linux-3.2.0/drivers/infiniband/ulp/ipoib/ipoib.h @@ -44,6 +44,7 @@ #include #include +#include #include @@ -117,8 +118,9 @@ u16 reserved; }; -struct ipoib_pseudoheader { - u8 hwaddr[INFINIBAND_ALEN]; +struct ipoib_cb { + struct qdisc_skb_cb qdisc_cb; + u8 hwaddr[INFINIBAND_ALEN]; }; /* Used for all multicast joins (broadcast, IPv4 mcast and IPv6 mcast) */ --- linux-3.2.0.orig/drivers/infiniband/ulp/ipoib/ipoib_main.c +++ linux-3.2.0/drivers/infiniband/ulp/ipoib/ipoib_main.c @@ -658,7 +658,7 @@ } static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev, - struct ipoib_pseudoheader *phdr) + struct ipoib_cb *cb) { struct ipoib_dev_priv *priv = netdev_priv(dev); struct ipoib_path *path; @@ -666,17 +666,15 @@ spin_lock_irqsave(&priv->lock, flags); - path = __path_find(dev, phdr->hwaddr + 4); + path = __path_find(dev, cb->hwaddr + 4); if (!path || !path->valid) { int new_path = 0; if (!path) { - path = path_rec_create(dev, phdr->hwaddr + 4); + path = path_rec_create(dev, cb->hwaddr + 4); new_path = 1; } if (path) { - /* put pseudoheader back on for next time */ - skb_push(skb, sizeof *phdr); __skb_queue_tail(&path->queue, skb); if (!path->query && path_rec_start(dev, path)) { @@ -700,12 +698,10 @@ be16_to_cpu(path->pathrec.dlid)); spin_unlock_irqrestore(&priv->lock, flags); - ipoib_send(dev, skb, path->ah, IPOIB_QPN(phdr->hwaddr)); + ipoib_send(dev, skb, path->ah, IPOIB_QPN(cb->hwaddr)); return; } else if ((path->query || !path_rec_start(dev, path)) && skb_queue_len(&path->queue) < IPOIB_MAX_PATH_REC_QUEUE) { - /* put pseudoheader back on for next time */ - skb_push(skb, sizeof *phdr); __skb_queue_tail(&path->queue, skb); } else { ++dev->stats.tx_dropped; @@ -774,16 +770,14 @@ dev_kfree_skb_any(skb); } } else { - struct ipoib_pseudoheader *phdr = - (struct ipoib_pseudoheader *) skb->data; - skb_pull(skb, sizeof *phdr); + struct ipoib_cb *cb = (struct ipoib_cb *) skb->cb; - if (phdr->hwaddr[4] == 0xff) { + if (cb->hwaddr[4] == 0xff) { /* Add in the P_Key for multicast*/ - phdr->hwaddr[8] = (priv->pkey >> 8) & 0xff; - phdr->hwaddr[9] = priv->pkey & 0xff; + cb->hwaddr[8] = (priv->pkey >> 8) & 0xff; + cb->hwaddr[9] = priv->pkey & 0xff; - ipoib_mcast_send(dev, phdr->hwaddr + 4, skb); + ipoib_mcast_send(dev, cb->hwaddr + 4, skb); } else { /* unicast GID -- should be ARP or RARP reply */ @@ -792,14 +786,14 @@ ipoib_warn(priv, "Unicast, no %s: type %04x, QPN %06x %pI6\n", skb_dst(skb) ? "neigh" : "dst", be16_to_cpup((__be16 *) skb->data), - IPOIB_QPN(phdr->hwaddr), - phdr->hwaddr + 4); + IPOIB_QPN(cb->hwaddr), + cb->hwaddr + 4); dev_kfree_skb_any(skb); ++dev->stats.tx_dropped; goto unlock; } - unicast_arp_send(skb, dev, phdr); + unicast_arp_send(skb, dev, cb); } } unlock: @@ -825,8 +819,6 @@ const void *daddr, const void *saddr, unsigned len) { struct ipoib_header *header; - struct dst_entry *dst; - struct neighbour *n; header = (struct ipoib_header *) skb_push(skb, sizeof *header); @@ -834,18 +826,13 @@ header->reserved = 0; /* - * If we don't have a neighbour structure, stuff the - * destination address onto the front of the skb so we can - * figure out where to send the packet later. + * If we don't have a dst_entry structure, stuff the + * destination address into skb->cb so we can figure out where + * to send the packet later. */ - dst = skb_dst(skb); - n = NULL; - if (dst) - n = dst_get_neighbour_raw(dst); - if ((!dst || !n) && daddr) { - struct ipoib_pseudoheader *phdr = - (struct ipoib_pseudoheader *) skb_push(skb, sizeof *phdr); - memcpy(phdr->hwaddr, daddr, INFINIBAND_ALEN); + if (!skb_dst(skb)) { + struct ipoib_cb *cb = (struct ipoib_cb *) skb->cb; + memcpy(cb->hwaddr, daddr, INFINIBAND_ALEN); } return 0; @@ -1021,11 +1008,7 @@ dev->flags |= IFF_BROADCAST | IFF_MULTICAST; - /* - * We add in INFINIBAND_ALEN to allow for the destination - * address "pseudoheader" for skbs without neighbour struct. - */ - dev->hard_header_len = IPOIB_ENCAP_LEN + INFINIBAND_ALEN; + dev->hard_header_len = IPOIB_ENCAP_LEN; dev->addr_len = INFINIBAND_ALEN; dev->type = ARPHRD_INFINIBAND; dev->tx_queue_len = ipoib_sendq_size * 2; --- linux-3.2.0.orig/drivers/infiniband/hw/cxgb4/cm.c +++ linux-3.2.0/drivers/infiniband/hw/cxgb4/cm.c @@ -2714,6 +2714,12 @@ unsigned int tid = GET_TID(req); ep = lookup_tid(t, tid); + if (!ep) { + printk(KERN_WARNING MOD + "Abort on non-existent endpoint, tid %d\n", tid); + kfree_skb(skb); + return 0; + } if (is_neg_adv_abort(req->status)) { PDBG("%s neg_adv_abort ep %p tid %u\n", __func__, ep, ep->hwtid); @@ -2725,11 +2731,8 @@ /* * Wake up any threads in rdma_init() or rdma_fini(). - * However, this is not needed if com state is just - * MPA_REQ_SENT */ - if (ep->com.state != MPA_REQ_SENT) - c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET); + c4iw_wake_up(&ep->com.wr_wait, -ECONNRESET); sched(dev, skb); return 0; } --- linux-3.2.0.orig/drivers/infiniband/hw/mlx4/mad.c +++ linux-3.2.0/drivers/infiniband/hw/mlx4/mad.c @@ -256,12 +256,9 @@ return IB_MAD_RESULT_SUCCESS; /* - * Don't process SMInfo queries or vendor-specific - * MADs -- the SMA can't handle them. + * Don't process SMInfo queries -- the SMA can't handle them. */ - if (in_mad->mad_hdr.attr_id == IB_SMP_ATTR_SM_INFO || - ((in_mad->mad_hdr.attr_id & IB_SMP_ATTR_VENDOR_MASK) == - IB_SMP_ATTR_VENDOR_MASK)) + if (in_mad->mad_hdr.attr_id == IB_SMP_ATTR_SM_INFO) return IB_MAD_RESULT_SUCCESS; } else if (in_mad->mad_hdr.mgmt_class == IB_MGMT_CLASS_PERF_MGMT || in_mad->mad_hdr.mgmt_class == MLX4_IB_VENDOR_CLASS1 || --- linux-3.2.0.orig/drivers/infiniband/hw/qib/qib_iba7322.c +++ linux-3.2.0/drivers/infiniband/hw/qib/qib_iba7322.c @@ -4082,10 +4082,12 @@ */ if (hd >> IBA7322_HDRHEAD_PKTINT_SHIFT) adjust_rcv_timeout(rcd, npkts); - qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); - qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); if (updegr) qib_write_ureg(rcd->dd, ur_rcvegrindexhead, egrhd, rcd->ctxt); + mmiowb(); + qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); + qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); + mmiowb(); } static u32 qib_7322_hdrqempty(struct qib_ctxtdata *rcd) --- linux-3.2.0.orig/drivers/infiniband/hw/qib/qib_iba7220.c +++ linux-3.2.0/drivers/infiniband/hw/qib/qib_iba7220.c @@ -2725,9 +2725,11 @@ static void qib_update_7220_usrhead(struct qib_ctxtdata *rcd, u64 hd, u32 updegr, u32 egrhd, u32 npkts) { - qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); if (updegr) qib_write_ureg(rcd->dd, ur_rcvegrindexhead, egrhd, rcd->ctxt); + mmiowb(); + qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); + mmiowb(); } static u32 qib_7220_hdrqempty(struct qib_ctxtdata *rcd) --- linux-3.2.0.orig/drivers/infiniband/hw/qib/qib_iba6120.c +++ linux-3.2.0/drivers/infiniband/hw/qib/qib_iba6120.c @@ -2076,9 +2076,11 @@ static void qib_update_6120_usrhead(struct qib_ctxtdata *rcd, u64 hd, u32 updegr, u32 egrhd, u32 npkts) { - qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); if (updegr) qib_write_ureg(rcd->dd, ur_rcvegrindexhead, egrhd, rcd->ctxt); + mmiowb(); + qib_write_ureg(rcd->dd, ur_rcvhdrhead, hd, rcd->ctxt); + mmiowb(); } static u32 qib_6120_hdrqempty(struct qib_ctxtdata *rcd) --- linux-3.2.0.orig/drivers/infiniband/core/uverbs_cmd.c +++ linux-3.2.0/drivers/infiniband/core/uverbs_cmd.c @@ -241,11 +241,24 @@ return idr_read_obj(&ib_uverbs_qp_idr, qp_handle, context, 0); } +static struct ib_qp *idr_write_qp(int qp_handle, struct ib_ucontext *context) +{ + struct ib_uobject *uobj; + + uobj = idr_write_uobj(&ib_uverbs_qp_idr, qp_handle, context); + return uobj ? uobj->object : NULL; +} + static void put_qp_read(struct ib_qp *qp) { put_uobj_read(qp->uobject); } +static void put_qp_write(struct ib_qp *qp) +{ + put_uobj_write(qp->uobject); +} + static struct ib_srq *idr_read_srq(int srq_handle, struct ib_ucontext *context) { return idr_read_obj(&ib_uverbs_srq_idr, srq_handle, context, 0); @@ -1472,6 +1485,7 @@ qp->event_handler = attr.event_handler; qp->qp_context = attr.qp_context; qp->qp_type = attr.qp_type; + atomic_set(&qp->usecnt, 0); atomic_inc(&pd->usecnt); atomic_inc(&attr.send_cq->usecnt); if (attr.recv_cq) @@ -2375,7 +2389,7 @@ if (copy_from_user(&cmd, buf, sizeof cmd)) return -EFAULT; - qp = idr_read_qp(cmd.qp_handle, file->ucontext); + qp = idr_write_qp(cmd.qp_handle, file->ucontext); if (!qp) return -EINVAL; @@ -2404,7 +2418,7 @@ kfree(mcast); out_put: - put_qp_read(qp); + put_qp_write(qp); return ret ? ret : in_len; } @@ -2422,7 +2436,7 @@ if (copy_from_user(&cmd, buf, sizeof cmd)) return -EFAULT; - qp = idr_read_qp(cmd.qp_handle, file->ucontext); + qp = idr_write_qp(cmd.qp_handle, file->ucontext); if (!qp) return -EINVAL; @@ -2441,7 +2455,7 @@ } out_put: - put_qp_read(qp); + put_qp_write(qp); return ret ? ret : in_len; } --- linux-3.2.0.orig/drivers/infiniband/core/umem.c +++ linux-3.2.0/drivers/infiniband/core/umem.c @@ -269,7 +269,7 @@ } else down_write(&mm->mmap_sem); - current->mm->locked_vm -= diff; + current->mm->pinned_vm -= diff; up_write(&mm->mmap_sem); mmput(mm); kfree(umem); --- linux-3.2.0.orig/drivers/infiniband/core/verbs.c +++ linux-3.2.0/drivers/infiniband/core/verbs.c @@ -421,6 +421,7 @@ qp->uobject = NULL; qp->qp_type = qp_init_attr->qp_type; + atomic_set(&qp->usecnt, 0); if (qp_init_attr->qp_type == IB_QPT_XRC_TGT) { qp->event_handler = __ib_shared_qp_event_handler; qp->qp_context = qp; @@ -430,7 +431,6 @@ qp->xrcd = qp_init_attr->xrcd; atomic_inc(&qp_init_attr->xrcd->usecnt); INIT_LIST_HEAD(&qp->open_list); - atomic_set(&qp->usecnt, 0); real_qp = qp; qp = __ib_open_qp(real_qp, qp_init_attr->event_handler, --- linux-3.2.0.orig/drivers/regulator/core.c +++ linux-3.2.0/drivers/regulator/core.c @@ -2765,6 +2765,8 @@ unset_regulator_supplies(rdev); scrub: + if (rdev->supply) + regulator_put(rdev->supply); kfree(rdev->constraints); device_unregister(&rdev->dev); /* device core frees rdev */ --- linux-3.2.0.orig/drivers/regulator/tps6524x-regulator.c +++ linux-3.2.0/drivers/regulator/tps6524x-regulator.c @@ -481,7 +481,7 @@ if (i >= info->n_voltages) i = info->n_voltages - 1; - *selector = info->voltages[i]; + *selector = i; return write_field(hw, &info->voltage, i); } --- linux-3.2.0.orig/drivers/regulator/88pm8607.c +++ linux-3.2.0/drivers/regulator/88pm8607.c @@ -196,7 +196,7 @@ }; static const unsigned int LDO13_table[] = { - 1300000, 1800000, 2000000, 2500000, 2800000, 3000000, 0, 0, + 1200000, 1300000, 1800000, 2000000, 2500000, 2800000, 3000000, 0, }; static const unsigned int LDO13_suspend_table[] = { @@ -389,10 +389,10 @@ PM8607_LDO( 7, LDO7, 0, 3, SUPPLIES_EN12, 1), PM8607_LDO( 8, LDO8, 0, 3, SUPPLIES_EN12, 2), PM8607_LDO( 9, LDO9, 0, 3, SUPPLIES_EN12, 3), - PM8607_LDO(10, LDO10, 0, 3, SUPPLIES_EN12, 4), + PM8607_LDO(10, LDO10, 0, 4, SUPPLIES_EN12, 4), PM8607_LDO(12, LDO12, 0, 4, SUPPLIES_EN12, 5), PM8607_LDO(13, VIBRATOR_SET, 1, 3, VIBRATOR_SET, 0), - PM8607_LDO(14, LDO14, 0, 4, SUPPLIES_EN12, 6), + PM8607_LDO(14, LDO14, 0, 3, SUPPLIES_EN12, 6), }; static int __devinit pm8607_regulator_probe(struct platform_device *pdev) --- linux-3.2.0.orig/drivers/regulator/max8997.c +++ linux-3.2.0/drivers/regulator/max8997.c @@ -689,7 +689,7 @@ } new_val++; - } while (desc->min + desc->step + new_val <= desc->max); + } while (desc->min + desc->step * new_val <= desc->max); new_idx = tmp_idx; new_val = tmp_val; --- linux-3.2.0.orig/drivers/dma/at_hdmac_regs.h +++ linux-3.2.0/drivers/dma/at_hdmac_regs.h @@ -326,28 +326,27 @@ } -static void atc_setup_irq(struct at_dma_chan *atchan, int on) +static void atc_setup_irq(struct at_dma *atdma, int chan_id, int on) { - struct at_dma *atdma = to_at_dma(atchan->chan_common.device); - u32 ebci; + u32 ebci; /* enable interrupts on buffer transfer completion & error */ - ebci = AT_DMA_BTC(atchan->chan_common.chan_id) - | AT_DMA_ERR(atchan->chan_common.chan_id); + ebci = AT_DMA_BTC(chan_id) + | AT_DMA_ERR(chan_id); if (on) dma_writel(atdma, EBCIER, ebci); else dma_writel(atdma, EBCIDR, ebci); } -static inline void atc_enable_irq(struct at_dma_chan *atchan) +static void atc_enable_chan_irq(struct at_dma *atdma, int chan_id) { - atc_setup_irq(atchan, 1); + atc_setup_irq(atdma, chan_id, 1); } -static inline void atc_disable_irq(struct at_dma_chan *atchan) +static void atc_disable_chan_irq(struct at_dma *atdma, int chan_id) { - atc_setup_irq(atchan, 0); + atc_setup_irq(atdma, chan_id, 0); } --- linux-3.2.0.orig/drivers/dma/at_hdmac.c +++ linux-3.2.0/drivers/dma/at_hdmac.c @@ -239,10 +239,6 @@ vdbg_dump_regs(atchan); - /* clear any pending interrupt */ - while (dma_readl(atdma, EBCISR)) - cpu_relax(); - channel_writel(atchan, SADDR, 0); channel_writel(atchan, DADDR, 0); channel_writel(atchan, CTRLA, 0); @@ -1286,7 +1282,7 @@ tasklet_init(&atchan->tasklet, atc_tasklet, (unsigned long)atchan); - atc_enable_irq(atchan); + atc_enable_chan_irq(atdma, i); } /* set base routines */ @@ -1353,7 +1349,7 @@ struct at_dma_chan *atchan = to_at_dma_chan(chan); /* Disable interrupts */ - atc_disable_irq(atchan); + atc_disable_chan_irq(atdma, chan->chan_id); tasklet_disable(&atchan->tasklet); tasklet_kill(&atchan->tasklet); --- linux-3.2.0.orig/drivers/dma/Kconfig +++ linux-3.2.0/drivers/dma/Kconfig @@ -201,18 +201,17 @@ platform_data for a dma-pl330 device. config PCH_DMA - tristate "Intel EG20T PCH / OKI Semi IOH(ML7213/ML7223) DMA support" + tristate "Intel EG20T PCH / OKI Semi IOH(ML7213/ML7223/ML7831) DMA support" depends on PCI && X86 select DMA_ENGINE help Enable support for Intel EG20T PCH DMA engine. - This driver also can be used for OKI SEMICONDUCTOR IOH(Input/ - Output Hub), ML7213 and ML7223. - ML7213 IOH is for IVI(In-Vehicle Infotainment) use and ML7223 IOH is - for MP(Media Phone) use. - ML7213/ML7223 is companion chip for Intel Atom E6xx series. - ML7213/ML7223 is completely compatible for Intel EG20T PCH. + Output Hub), ML7213, ML7223 and ML7831. + ML7213 IOH is for IVI(In-Vehicle Infotainment) use, ML7223 IOH is + for MP(Media Phone) use and ML7831 IOH is for general purpose use. + ML7213/ML7223/ML7831 is companion chip for Intel Atom E6xx series. + ML7213/ML7223/ML7831 is completely compatible for Intel EG20T PCH. config IMX_SDMA tristate "i.MX SDMA support" --- linux-3.2.0.orig/drivers/dma/pch_dma.c +++ linux-3.2.0/drivers/dma/pch_dma.c @@ -1018,6 +1018,8 @@ #define PCI_DEVICE_ID_ML7223_DMA2_4CH 0x800E #define PCI_DEVICE_ID_ML7223_DMA3_4CH 0x8017 #define PCI_DEVICE_ID_ML7223_DMA4_4CH 0x803B +#define PCI_DEVICE_ID_ML7831_DMA1_8CH 0x8810 +#define PCI_DEVICE_ID_ML7831_DMA2_4CH 0x8815 DEFINE_PCI_DEVICE_TABLE(pch_dma_id_table) = { { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_EG20T_PCH_DMA_8CH), 8 }, @@ -1030,6 +1032,8 @@ { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7223_DMA2_4CH), 4}, /* Video SPI */ { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7223_DMA3_4CH), 4}, /* Security */ { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7223_DMA4_4CH), 4}, /* FPGA */ + { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7831_DMA1_8CH), 8}, /* UART */ + { PCI_VDEVICE(ROHM, PCI_DEVICE_ID_ML7831_DMA2_4CH), 4}, /* SPI */ { 0, }, }; @@ -1057,7 +1061,7 @@ module_init(pch_dma_init); module_exit(pch_dma_exit); -MODULE_DESCRIPTION("Intel EG20T PCH / OKI SEMICONDUCTOR ML7213 IOH " - "DMA controller driver"); +MODULE_DESCRIPTION("Intel EG20T PCH / OKI SEMICON ML7213/ML7223/ML7831 IOH" + "DMA controller driver"); MODULE_AUTHOR("Yong Wang "); MODULE_LICENSE("GPL v2"); --- linux-3.2.0.orig/drivers/dma/pl330.c +++ linux-3.2.0/drivers/dma/pl330.c @@ -990,6 +990,8 @@ { 0, 0 }, }; +MODULE_DEVICE_TABLE(amba, pl330_ids); + #ifdef CONFIG_PM_RUNTIME static int pl330_runtime_suspend(struct device *dev) { --- linux-3.2.0.orig/drivers/dma/ioat/dma_v2.c +++ linux-3.2.0/drivers/dma/ioat/dma_v2.c @@ -126,7 +126,7 @@ spin_unlock_bh(&ioat->prep_lock); } -static void __cleanup(struct ioat2_dma_chan *ioat, unsigned long phys_complete) +static void __cleanup(struct ioat2_dma_chan *ioat, dma_addr_t phys_complete) { struct ioat_chan_common *chan = &ioat->base; struct dma_async_tx_descriptor *tx; @@ -178,7 +178,7 @@ static void ioat2_cleanup(struct ioat2_dma_chan *ioat) { struct ioat_chan_common *chan = &ioat->base; - unsigned long phys_complete; + dma_addr_t phys_complete; spin_lock_bh(&chan->cleanup_lock); if (ioat_cleanup_preamble(chan, &phys_complete)) @@ -259,7 +259,7 @@ static void ioat2_restart_channel(struct ioat2_dma_chan *ioat) { struct ioat_chan_common *chan = &ioat->base; - unsigned long phys_complete; + dma_addr_t phys_complete; ioat2_quiesce(chan, 0); if (ioat_cleanup_preamble(chan, &phys_complete)) @@ -274,7 +274,7 @@ struct ioat_chan_common *chan = &ioat->base; if (test_bit(IOAT_COMPLETION_PENDING, &chan->state)) { - unsigned long phys_complete; + dma_addr_t phys_complete; u64 status; status = ioat_chansts(chan); --- linux-3.2.0.orig/drivers/dma/ioat/dma.c +++ linux-3.2.0/drivers/dma/ioat/dma.c @@ -548,9 +548,9 @@ PCI_DMA_TODEVICE, flags, 0); } -unsigned long ioat_get_current_completion(struct ioat_chan_common *chan) +dma_addr_t ioat_get_current_completion(struct ioat_chan_common *chan) { - unsigned long phys_complete; + dma_addr_t phys_complete; u64 completion; completion = *chan->completion; @@ -571,7 +571,7 @@ } bool ioat_cleanup_preamble(struct ioat_chan_common *chan, - unsigned long *phys_complete) + dma_addr_t *phys_complete) { *phys_complete = ioat_get_current_completion(chan); if (*phys_complete == chan->last_completion) @@ -582,14 +582,14 @@ return true; } -static void __cleanup(struct ioat_dma_chan *ioat, unsigned long phys_complete) +static void __cleanup(struct ioat_dma_chan *ioat, dma_addr_t phys_complete) { struct ioat_chan_common *chan = &ioat->base; struct list_head *_desc, *n; struct dma_async_tx_descriptor *tx; - dev_dbg(to_dev(chan), "%s: phys_complete: %lx\n", - __func__, phys_complete); + dev_dbg(to_dev(chan), "%s: phys_complete: %llx\n", + __func__, (unsigned long long) phys_complete); list_for_each_safe(_desc, n, &ioat->used_desc) { struct ioat_desc_sw *desc; @@ -655,7 +655,7 @@ static void ioat1_cleanup(struct ioat_dma_chan *ioat) { struct ioat_chan_common *chan = &ioat->base; - unsigned long phys_complete; + dma_addr_t phys_complete; prefetch(chan->completion); @@ -701,7 +701,7 @@ mod_timer(&chan->timer, jiffies + COMPLETION_TIMEOUT); spin_unlock_bh(&ioat->desc_lock); } else if (test_bit(IOAT_COMPLETION_PENDING, &chan->state)) { - unsigned long phys_complete; + dma_addr_t phys_complete; spin_lock_bh(&ioat->desc_lock); /* if we haven't made progress and we have already --- linux-3.2.0.orig/drivers/dma/ioat/dma_v3.c +++ linux-3.2.0/drivers/dma/ioat/dma_v3.c @@ -256,7 +256,7 @@ * The difference from the dma_v2.c __cleanup() is that this routine * handles extended descriptors and dma-unmapping raid operations. */ -static void __cleanup(struct ioat2_dma_chan *ioat, unsigned long phys_complete) +static void __cleanup(struct ioat2_dma_chan *ioat, dma_addr_t phys_complete) { struct ioat_chan_common *chan = &ioat->base; struct ioat_ring_ent *desc; @@ -314,7 +314,7 @@ static void ioat3_cleanup(struct ioat2_dma_chan *ioat) { struct ioat_chan_common *chan = &ioat->base; - unsigned long phys_complete; + dma_addr_t phys_complete; spin_lock_bh(&chan->cleanup_lock); if (ioat_cleanup_preamble(chan, &phys_complete)) @@ -333,7 +333,7 @@ static void ioat3_restart_channel(struct ioat2_dma_chan *ioat) { struct ioat_chan_common *chan = &ioat->base; - unsigned long phys_complete; + dma_addr_t phys_complete; ioat2_quiesce(chan, 0); if (ioat_cleanup_preamble(chan, &phys_complete)) @@ -348,7 +348,7 @@ struct ioat_chan_common *chan = &ioat->base; if (test_bit(IOAT_COMPLETION_PENDING, &chan->state)) { - unsigned long phys_complete; + dma_addr_t phys_complete; u64 status; status = ioat_chansts(chan); --- linux-3.2.0.orig/drivers/dma/ioat/dma.h +++ linux-3.2.0/drivers/dma/ioat/dma.h @@ -88,7 +88,7 @@ struct ioat_chan_common { struct dma_chan common; void __iomem *reg_base; - unsigned long last_completion; + dma_addr_t last_completion; spinlock_t cleanup_lock; dma_cookie_t completed_cookie; unsigned long state; @@ -333,7 +333,7 @@ void __devexit ioat_dma_remove(struct ioatdma_device *device); struct dca_provider * __devinit ioat_dca_init(struct pci_dev *pdev, void __iomem *iobase); -unsigned long ioat_get_current_completion(struct ioat_chan_common *chan); +dma_addr_t ioat_get_current_completion(struct ioat_chan_common *chan); void ioat_init_channel(struct ioatdma_device *device, struct ioat_chan_common *chan, int idx); enum dma_status ioat_dma_tx_status(struct dma_chan *c, dma_cookie_t cookie, @@ -341,7 +341,7 @@ void ioat_dma_unmap(struct ioat_chan_common *chan, enum dma_ctrl_flags flags, size_t len, struct ioat_dma_descriptor *hw); bool ioat_cleanup_preamble(struct ioat_chan_common *chan, - unsigned long *phys_complete); + dma_addr_t *phys_complete); void ioat_kobject_add(struct ioatdma_device *device, struct kobj_type *type); void ioat_kobject_del(struct ioatdma_device *device); extern const struct sysfs_ops ioat_sysfs_ops; --- linux-3.2.0.orig/drivers/mfd/mfd-core.c +++ linux-3.2.0/drivers/mfd/mfd-core.c @@ -123,7 +123,7 @@ } if (!cell->ignore_resource_conflicts) { - ret = acpi_check_resource_conflict(res); + ret = acpi_check_resource_conflict(&res[r]); if (ret) goto fail_res; } --- linux-3.2.0.orig/drivers/mfd/cs5535-mfd.c +++ linux-3.2.0/drivers/mfd/cs5535-mfd.c @@ -179,7 +179,7 @@ }; MODULE_DEVICE_TABLE(pci, cs5535_mfd_pci_tbl); -static struct pci_driver cs5535_mfd_drv = { +static struct pci_driver cs5535_mfd_driver = { .name = DRV_NAME, .id_table = cs5535_mfd_pci_tbl, .probe = cs5535_mfd_probe, @@ -188,12 +188,12 @@ static int __init cs5535_mfd_init(void) { - return pci_register_driver(&cs5535_mfd_drv); + return pci_register_driver(&cs5535_mfd_driver); } static void __exit cs5535_mfd_exit(void) { - pci_unregister_driver(&cs5535_mfd_drv); + pci_unregister_driver(&cs5535_mfd_driver); } module_init(cs5535_mfd_init); --- linux-3.2.0.orig/drivers/mfd/twl6030-irq.c +++ linux-3.2.0/drivers/mfd/twl6030-irq.c @@ -187,8 +187,17 @@ } local_irq_enable(); } - ret = twl_i2c_write(TWL_MODULE_PIH, sts.bytes, - REG_INT_STS_A, 3); /* clear INT_STS_A */ + + /* + * NOTE: + * Simulation confirms that documentation is wrong w.r.t the + * interrupt status clear operation. A single *byte* write to + * any one of STS_A to STS_C register results in all three + * STS registers being reset. Since it does not matter which + * value is written, all three registers are cleared on a + * single byte write, so we just use 0x0 to clear. + */ + ret = twl_i2c_write_u8(TWL_MODULE_PIH, 0x00, REG_INT_STS_A); if (ret) pr_warning("twl6030: I2C error in clearing PIH ISR\n"); --- linux-3.2.0.orig/drivers/bluetooth/ath3k.c +++ linux-3.2.0/drivers/bluetooth/ath3k.c @@ -64,12 +64,16 @@ { USB_DEVICE(0x0CF3, 0x3002) }, { USB_DEVICE(0x13d3, 0x3304) }, { USB_DEVICE(0x0930, 0x0215) }, + { USB_DEVICE(0x0489, 0xE03D) }, /* Atheros AR9285 Malbec with sflash firmware */ { USB_DEVICE(0x03F0, 0x311D) }, /* Atheros AR3012 with sflash firmware*/ { USB_DEVICE(0x0CF3, 0x3004) }, + { USB_DEVICE(0x0CF3, 0x311D) }, + { USB_DEVICE(0x13d3, 0x3375) }, + { USB_DEVICE(0x04CA, 0x3005) }, /* Atheros AR5BBU12 with sflash firmware */ { USB_DEVICE(0x0489, 0xE02C) }, @@ -86,6 +90,9 @@ /* Atheros AR3012 with sflash firmware*/ { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x0cf3, 0x311D), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 }, { } /* Terminating entry */ }; --- linux-3.2.0.orig/drivers/bluetooth/btusb.c +++ linux-3.2.0/drivers/bluetooth/btusb.c @@ -101,6 +101,11 @@ { USB_DEVICE(0x0c10, 0x0000) }, /* Broadcom BCM20702A0 */ + { USB_DEVICE(0x0489, 0xe042) }, + { USB_DEVICE(0x0a5c, 0x21e1) }, + { USB_DEVICE(0x0a5c, 0x21e3) }, + { USB_DEVICE(0x0a5c, 0x21e6) }, + { USB_DEVICE(0x0a5c, 0x21f3) }, { USB_DEVICE(0x413c, 0x8197) }, { } /* Terminating entry */ @@ -119,12 +124,16 @@ { USB_DEVICE(0x0cf3, 0x3002), .driver_info = BTUSB_IGNORE }, { USB_DEVICE(0x13d3, 0x3304), .driver_info = BTUSB_IGNORE }, { USB_DEVICE(0x0930, 0x0215), .driver_info = BTUSB_IGNORE }, + { USB_DEVICE(0x0489, 0xe03d), .driver_info = BTUSB_IGNORE }, /* Atheros AR9285 Malbec with sflash firmware */ { USB_DEVICE(0x03f0, 0x311d), .driver_info = BTUSB_IGNORE }, /* Atheros 3012 with sflash firmware */ { USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 }, + { USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 }, /* Atheros AR5BBU12 with sflash firmware */ { USB_DEVICE(0x0489, 0xe02c), .driver_info = BTUSB_IGNORE }, @@ -506,15 +515,10 @@ pipe = usb_rcvisocpipe(data->udev, data->isoc_rx_ep->bEndpointAddress); - urb->dev = data->udev; - urb->pipe = pipe; - urb->context = hdev; - urb->complete = btusb_isoc_complete; - urb->interval = data->isoc_rx_ep->bInterval; + usb_fill_int_urb(urb, data->udev, pipe, buf, size, btusb_isoc_complete, + hdev, data->isoc_rx_ep->bInterval); urb->transfer_flags = URB_FREE_BUFFER | URB_ISO_ASAP; - urb->transfer_buffer = buf; - urb->transfer_buffer_length = size; __fill_isoc_descriptor(urb, size, le16_to_cpu(data->isoc_rx_ep->wMaxPacketSize)); --- linux-3.2.0.orig/drivers/bluetooth/hci_ldisc.c +++ linux-3.2.0/drivers/bluetooth/hci_ldisc.c @@ -237,7 +237,6 @@ return; BT_DBG("%s", hdev->name); - kfree(hdev->driver_data); } /* ------ LDISC part ------ */ @@ -310,12 +309,13 @@ hci_uart_close(hdev); if (test_and_clear_bit(HCI_UART_PROTO_SET, &hu->flags)) { - hu->proto->close(hu); if (hdev) { hci_unregister_dev(hdev); hci_free_dev(hdev); } + hu->proto->close(hu); } + kfree(hu); } } --- linux-3.2.0.orig/drivers/parport/Kconfig +++ linux-3.2.0/drivers/parport/Kconfig @@ -36,7 +36,7 @@ config PARPORT_PC tristate "PC-style hardware" depends on (!SPARC64 || PCI) && !SPARC32 && !M32R && !FRV && \ - (!M68K || ISA) && !MN10300 && !AVR32 && !BLACKFIN + (!M68K || ISA) && !MN10300 && !AVR32 && !BLACKFIN && !ARCH_OMAP ---help--- You should say Y here if you have a PC-style parallel port. All IBM PC compatible computers and some Alphas have PC-style --- linux-3.2.0.orig/drivers/block/xen-blkfront.c +++ linux-3.2.0/drivers/block/xen-blkfront.c @@ -72,7 +72,8 @@ static DEFINE_MUTEX(blkfront_mutex); static const struct block_device_operations xlvbd_block_fops; -#define BLK_RING_SIZE __CONST_RING_SIZE(blkif, PAGE_SIZE) +#define BLK_MAX_RING_AREA_SIZE (BLKIF_MAX_NUM_RING_PAGES * PAGE_SIZE) +#define BLK_MAX_RING_SIZE __CONST_RING_SIZE(blkif, BLK_MAX_RING_AREA_SIZE) /* * We have one of these per vbd, whether ide, scsi or 'other'. They @@ -87,14 +88,15 @@ int vdevice; blkif_vdev_t handle; enum blkif_state connected; - int ring_ref; + int num_ring_pages; + int ring_ref[BLKIF_MAX_NUM_RING_PAGES]; struct blkif_front_ring ring; struct scatterlist sg[BLKIF_MAX_SEGMENTS_PER_REQUEST]; unsigned int evtchn, irq; struct request_queue *rq; struct work_struct work; struct gnttab_free_callback callback; - struct blk_shadow shadow[BLK_RING_SIZE]; + struct blk_shadow shadow[BLK_MAX_RING_SIZE]; unsigned long shadow_free; unsigned int feature_flush; unsigned int flush_op; @@ -134,7 +136,8 @@ static int get_id_from_freelist(struct blkfront_info *info) { unsigned long free = info->shadow_free; - BUG_ON(free >= BLK_RING_SIZE); + int ring_size = __RING_SIZE((struct blkif_sring *)0, info->num_ring_pages * PAGE_SIZE); + BUG_ON(free >= ring_size); info->shadow_free = info->shadow[free].req.id; info->shadow[free].req.id = 0x0fffffee; /* debug */ return free; @@ -675,6 +678,8 @@ static void blkif_free(struct blkfront_info *info, int suspend) { + int i; + /* Prevent new requests being issued until we fix things up. */ spin_lock_irq(&blkif_io_lock); info->connected = suspend ? @@ -690,10 +695,17 @@ flush_work_sync(&info->work); /* Free resources associated with old device channel. */ - if (info->ring_ref != GRANT_INVALID_REF) { - gnttab_end_foreign_access(info->ring_ref, 0, - (unsigned long)info->ring.sring); - info->ring_ref = GRANT_INVALID_REF; + for (i = 0; i < info->num_ring_pages; i++) { + /* Free resources associated with old device channel. */ + if (info->ring_ref[i] != GRANT_INVALID_REF) { + gnttab_end_foreign_access(info->ring_ref[i], 0, 0L); + info->ring_ref[i] = GRANT_INVALID_REF; + } + } + if (info->ring.sring) { + int ring_area_size = info->num_ring_pages * PAGE_SIZE; + free_pages((unsigned long)info->ring.sring, + get_order(ring_area_size)); info->ring.sring = NULL; } if (info->irq) @@ -813,27 +825,32 @@ struct blkfront_info *info) { struct blkif_sring *sring; - int err; + int i, order, err; + int ring_area_size = info->num_ring_pages * PAGE_SIZE; - info->ring_ref = GRANT_INVALID_REF; + for (i = 0; i < info->num_ring_pages; i++) { + info->ring_ref[i] = GRANT_INVALID_REF; + } - sring = (struct blkif_sring *)__get_free_page(GFP_NOIO | __GFP_HIGH); + order = get_order(ring_area_size); + sring = (struct blkif_sring *)__get_free_pages(GFP_KERNEL, order); if (!sring) { xenbus_dev_fatal(dev, -ENOMEM, "allocating shared ring"); return -ENOMEM; } SHARED_RING_INIT(sring); - FRONT_RING_INIT(&info->ring, sring, PAGE_SIZE); + FRONT_RING_INIT(&info->ring, sring, ring_area_size); - sg_init_table(info->sg, BLKIF_MAX_SEGMENTS_PER_REQUEST); - - err = xenbus_grant_ring(dev, virt_to_mfn(info->ring.sring)); - if (err < 0) { - free_page((unsigned long)sring); - info->ring.sring = NULL; - goto fail; + for (i = 0; i < info->num_ring_pages; i++) { + unsigned long addr = (unsigned long)info->ring.sring + i * PAGE_SIZE; + err = xenbus_grant_ring(dev, virt_to_mfn(addr)); + if (err < 0) { + free_pages((unsigned long)sring, order); + info->ring.sring = NULL; + goto fail; + } + info->ring_ref[i] = err; } - info->ring_ref = err; err = xenbus_alloc_evtchn(dev, &info->evtchn); if (err) @@ -862,7 +879,13 @@ { const char *message = NULL; struct xenbus_transaction xbt; - int err; + int err, i; + + BUILD_BUG_ON(BLKIF_MAX_NUM_RING_PAGES != 1 && + BLKIF_MAX_NUM_RING_PAGES != 2 && + BLKIF_MAX_NUM_RING_PAGES != 4 && + BLKIF_MAX_NUM_RING_PAGES != 8 && + BLKIF_MAX_NUM_RING_PAGES != 16); /* Create shared ring, alloc event channel. */ err = setup_blkring(dev, info); @@ -876,11 +899,30 @@ goto destroy_blkring; } - err = xenbus_printf(xbt, dev->nodename, - "ring-ref", "%u", info->ring_ref); - if (err) { - message = "writing ring-ref"; - goto abort_transaction; + if (info->num_ring_pages == 1) { + err = xenbus_printf(xbt, dev->nodename, + "ring-ref", "%u", info->ring_ref[0]); + if (err) { + message = "writing ring-ref"; + goto abort_transaction; + } + } else { + err = xenbus_printf(xbt, dev->nodename, "num-ring-pages", "%u", + info->num_ring_pages); + if (err) { + message = "writing num-ring-pages"; + goto abort_transaction; + } + for (i = 0; i < info->num_ring_pages; i++) { + char buf[16]; + snprintf(buf, sizeof(buf), "ring-ref%d", i); + err = xenbus_printf(xbt, dev->nodename, buf, "%u", + info->ring_ref[i]); + if (err) { + message = "writing ring-refs"; + goto abort_transaction; + } + } } err = xenbus_printf(xbt, dev->nodename, "event-channel", "%u", info->evtchn); @@ -928,6 +970,7 @@ { int err, vdevice, i; struct blkfront_info *info; + int ring_size, max_ring_pages; /* FIXME: Use dynamic device id if this is not set. */ err = xenbus_scanf(XBT_NIL, dev->nodename, @@ -941,6 +984,10 @@ return err; } } + err = xenbus_scanf(XBT_NIL, dev->otherend, + "max-ring-pages", "%u", &max_ring_pages); + if (err != 1) + max_ring_pages = 1; if (xen_hvm_domain()) { char *type; @@ -983,9 +1030,13 @@ info->connected = BLKIF_STATE_DISCONNECTED; INIT_WORK(&info->work, blkif_restart_queue); - for (i = 0; i < BLK_RING_SIZE; i++) + info->num_ring_pages = min(max_ring_pages, BLKIF_MAX_NUM_RING_PAGES); + + ring_size = __RING_SIZE((struct blkif_sring *)0, + info->num_ring_pages * PAGE_SIZE); + for (i = 0; i < ring_size; i++) info->shadow[i].req.id = i+1; - info->shadow[BLK_RING_SIZE-1].req.id = 0x0fffffff; + info->shadow[ring_size-1].req.id = 0x0fffffff; /* Front end dir is a number, which is used as the id. */ info->handle = simple_strtoul(strrchr(dev->nodename, '/')+1, NULL, 0); @@ -998,6 +1049,9 @@ return err; } + printk(KERN_INFO "blkfront %s num-ring-pages %d nr_ents %d.\n", + dev->nodename, info->num_ring_pages, ring_size); + return 0; } @@ -1008,6 +1062,7 @@ struct blkif_request *req; struct blk_shadow *copy; int j; + int ring_size = __RING_SIZE((struct blkif_sring *)0, info->num_ring_pages * PAGE_SIZE); /* Stage 1: Make a safe copy of the shadow state. */ copy = kmalloc(sizeof(info->shadow), @@ -1018,13 +1073,13 @@ /* Stage 2: Set up free list. */ memset(&info->shadow, 0, sizeof(info->shadow)); - for (i = 0; i < BLK_RING_SIZE; i++) + for (i = 0; i < ring_size; i++) info->shadow[i].req.id = i+1; info->shadow_free = info->ring.req_prod_pvt; - info->shadow[BLK_RING_SIZE-1].req.id = 0x0fffffff; + info->shadow[ring_size-1].req.id = 0x0fffffff; /* Stage 3: Find pending requests and requeue them. */ - for (i = 0; i < BLK_RING_SIZE; i++) { + for (i = 0; i < ring_size; i++) { /* Not in use? */ if (!copy[i].request) continue; @@ -1483,3 +1538,4 @@ MODULE_ALIAS_BLOCKDEV_MAJOR(XENVBD_MAJOR); MODULE_ALIAS("xen:vbd"); MODULE_ALIAS("xenblk"); + --- linux-3.2.0.orig/drivers/block/cciss_scsi.c +++ linux-3.2.0/drivers/block/cciss_scsi.c @@ -866,6 +866,7 @@ sh->can_queue = cciss_tape_cmds; sh->sg_tablesize = h->maxsgentries; sh->max_cmd_len = MAX_COMMAND_SIZE; + sh->max_sectors = h->cciss_max_sectors; ((struct cciss_scsi_adapter_data_t *) h->scsi_ctlr)->scsi_host = sh; @@ -1410,7 +1411,7 @@ /* track how many SG entries we are using */ if (request_nsgs > h->maxSG) h->maxSG = request_nsgs; - c->Header.SGTotal = (__u8) request_nsgs + chained; + c->Header.SGTotal = (u16) request_nsgs + chained; if (request_nsgs > h->max_cmd_sgentries) c->Header.SGList = h->max_cmd_sgentries; else --- linux-3.2.0.orig/drivers/block/Kconfig +++ linux-3.2.0/drivers/block/Kconfig @@ -116,6 +116,8 @@ source "drivers/block/paride/Kconfig" +source "drivers/block/mtip32xx/Kconfig" + config BLK_CPQ_DA tristate "Compaq SMART2 support" depends on PCI && VIRT_TO_BUS --- linux-3.2.0.orig/drivers/block/virtio_blk.c +++ linux-3.2.0/drivers/block/virtio_blk.c @@ -243,8 +243,8 @@ if (!virtio_has_feature(vblk->vdev, VIRTIO_BLK_F_SCSI)) return -ENOTTY; - return scsi_cmd_ioctl(disk->queue, disk, mode, cmd, - (void __user *)data); + return scsi_cmd_blk_ioctl(bdev, mode, cmd, + (void __user *)data); } /* We provide getgeo only to please some old bootloader/partitioning tools */ --- linux-3.2.0.orig/drivers/block/Makefile +++ linux-3.2.0/drivers/block/Makefile @@ -39,5 +39,6 @@ obj-$(CONFIG_XEN_BLKDEV_BACKEND) += xen-blkback/ obj-$(CONFIG_BLK_DEV_DRBD) += drbd/ obj-$(CONFIG_BLK_DEV_RBD) += rbd.o +obj-$(CONFIG_BLK_DEV_PCIESSD_MTIP32XX) += mtip32xx/ swim_mod-y := swim.o swim_asm.o --- linux-3.2.0.orig/drivers/block/cciss.c +++ linux-3.2.0/drivers/block/cciss.c @@ -1735,7 +1735,7 @@ case CCISS_BIG_PASSTHRU: return cciss_bigpassthru(h, argp); - /* scsi_cmd_ioctl handles these, below, though some are not */ + /* scsi_cmd_blk_ioctl handles these, below, though some are not */ /* very meaningful for cciss. SG_IO is the main one people want. */ case SG_GET_VERSION_NUM: @@ -1746,9 +1746,9 @@ case SG_EMULATED_HOST: case SG_IO: case SCSI_IOCTL_SEND_COMMAND: - return scsi_cmd_ioctl(disk->queue, disk, mode, cmd, argp); + return scsi_cmd_blk_ioctl(bdev, mode, cmd, argp); - /* scsi_cmd_ioctl would normally handle these, below, but */ + /* scsi_cmd_blk_ioctl would normally handle these, below, but */ /* they aren't a good fit for cciss, as CD-ROMs are */ /* not supported, and we don't have any bus/target/lun */ /* which we present to the kernel. */ --- linux-3.2.0.orig/drivers/block/ub.c +++ linux-3.2.0/drivers/block/ub.c @@ -1744,12 +1744,11 @@ static int ub_bd_ioctl(struct block_device *bdev, fmode_t mode, unsigned int cmd, unsigned long arg) { - struct gendisk *disk = bdev->bd_disk; void __user *usermem = (void __user *) arg; int ret; mutex_lock(&ub_mutex); - ret = scsi_cmd_ioctl(disk->queue, disk, mode, cmd, usermem); + ret = scsi_cmd_blk_ioctl(bdev, mode, cmd, usermem); mutex_unlock(&ub_mutex); return ret; --- linux-3.2.0.orig/drivers/block/sx8.c +++ linux-3.2.0/drivers/block/sx8.c @@ -1116,7 +1116,7 @@ break; case MISC_GET_FW_VER: { struct carm_fw_ver *ver = (struct carm_fw_ver *) - mem + sizeof(struct carm_msg_get_fw_ver); + (mem + sizeof(struct carm_msg_get_fw_ver)); if (!error) { host->fw_ver = le32_to_cpu(ver->version); host->flags |= (ver->features & FL_FW_VER_MASK); --- linux-3.2.0.orig/drivers/block/nbd.c +++ linux-3.2.0/drivers/block/nbd.c @@ -58,7 +58,7 @@ static unsigned int nbds_max = 16; static struct nbd_device *nbd_dev; -static int max_part; +static int max_part = 15; /* * Use just one lock (or at most 1 per NIC). Two arguments for this: --- linux-3.2.0.orig/drivers/block/drbd/drbd_nl.c +++ linux-3.2.0/drivers/block/drbd/drbd_nl.c @@ -179,7 +179,7 @@ dev_info(DEV, "helper command: %s %s %s\n", usermode_helper, cmd, mb); drbd_bcast_ev_helper(mdev, cmd); - ret = call_usermodehelper(usermode_helper, argv, envp, 1); + ret = call_usermodehelper(usermode_helper, argv, envp, UMH_WAIT_PROC); if (ret) dev_warn(DEV, "helper command: %s %s %s exit code %u (0x%x)\n", usermode_helper, cmd, mb, --- linux-3.2.0.orig/drivers/block/mtip32xx/mtip32xx.c +++ linux-3.2.0/drivers/block/mtip32xx/mtip32xx.c @@ -0,0 +1,3651 @@ +/* + * Driver for the Micron P320 SSD + * Copyright (C) 2011 Micron Technology, Inc. + * + * Portions of this code were derived from works subjected to the + * following copyright: + * Copyright (C) 2009 Integrated Device Technology, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include <../drivers/ata/ahci.h> +#include "mtip32xx.h" + +#define HW_CMD_SLOT_SZ (MTIP_MAX_COMMAND_SLOTS * 32) +#define HW_CMD_TBL_SZ (AHCI_CMD_TBL_HDR_SZ + (MTIP_MAX_SG * 16)) +#define HW_CMD_TBL_AR_SZ (HW_CMD_TBL_SZ * MTIP_MAX_COMMAND_SLOTS) +#define HW_PORT_PRIV_DMA_SZ \ + (HW_CMD_SLOT_SZ + HW_CMD_TBL_AR_SZ + AHCI_RX_FIS_SZ) + +#define HOST_HSORG 0xFC +#define HSORG_DISABLE_SLOTGRP_INTR (1<<24) +#define HSORG_DISABLE_SLOTGRP_PXIS (1<<16) +#define HSORG_HWREV 0xFF00 +#define HSORG_STYLE 0x8 +#define HSORG_SLOTGROUPS 0x7 + +#define PORT_COMMAND_ISSUE 0x38 +#define PORT_SDBV 0x7C + +#define PORT_OFFSET 0x100 +#define PORT_MEM_SIZE 0x80 + +#define PORT_IRQ_ERR \ + (PORT_IRQ_HBUS_ERR | PORT_IRQ_IF_ERR | PORT_IRQ_CONNECT | \ + PORT_IRQ_PHYRDY | PORT_IRQ_UNK_FIS | PORT_IRQ_BAD_PMP | \ + PORT_IRQ_TF_ERR | PORT_IRQ_HBUS_DATA_ERR | PORT_IRQ_IF_NONFATAL | \ + PORT_IRQ_OVERFLOW) +#define PORT_IRQ_LEGACY \ + (PORT_IRQ_PIOS_FIS | PORT_IRQ_D2H_REG_FIS) +#define PORT_IRQ_HANDLED \ + (PORT_IRQ_SDB_FIS | PORT_IRQ_LEGACY | \ + PORT_IRQ_TF_ERR | PORT_IRQ_IF_ERR | \ + PORT_IRQ_CONNECT | PORT_IRQ_PHYRDY) +#define DEF_PORT_IRQ \ + (PORT_IRQ_ERR | PORT_IRQ_LEGACY | PORT_IRQ_SDB_FIS) + +/* product numbers */ +#define MTIP_PRODUCT_UNKNOWN 0x00 +#define MTIP_PRODUCT_ASICFPGA 0x11 + +/* Device instance number, incremented each time a device is probed. */ +static int instance; + +/* + * Global variable used to hold the major block device number + * allocated in mtip_init(). + */ +static int mtip_major; + +static DEFINE_SPINLOCK(rssd_index_lock); +static DEFINE_IDA(rssd_index_ida); + +static int mtip_block_initialize(struct driver_data *dd); + +#ifdef CONFIG_COMPAT +struct mtip_compat_ide_task_request_s { + __u8 io_ports[8]; + __u8 hob_ports[8]; + ide_reg_valid_t out_flags; + ide_reg_valid_t in_flags; + int data_phase; + int req_cmd; + compat_ulong_t out_size; + compat_ulong_t in_size; +}; +#endif + +/* + * This function check_for_surprise_removal is called + * while card is removed from the system and it will + * read the vendor id from the configration space + * + * @pdev Pointer to the pci_dev structure. + * + * return value + * true if device removed, else false + */ +static bool mtip_check_surprise_removal(struct pci_dev *pdev) +{ + u16 vendor_id = 0; + + /* Read the vendorID from the configuration space */ + pci_read_config_word(pdev, 0x00, &vendor_id); + if (vendor_id == 0xFFFF) + return true; /* device removed */ + + return false; /* device present */ +} + +/* + * This function is called for clean the pending command in the + * command slot during the surprise removal of device and return + * error to the upper layer. + * + * @dd Pointer to the DRIVER_DATA structure. + * + * return value + * None + */ +static void mtip_command_cleanup(struct driver_data *dd) +{ + int group = 0, commandslot = 0, commandindex = 0; + struct mtip_cmd *command; + struct mtip_port *port = dd->port; + + for (group = 0; group < 4; group++) { + for (commandslot = 0; commandslot < 32; commandslot++) { + if (!(port->allocated[group] & (1 << commandslot))) + continue; + + commandindex = group << 5 | commandslot; + command = &port->commands[commandindex]; + + if (atomic_read(&command->active) + && (command->async_callback)) { + command->async_callback(command->async_data, + -ENODEV); + command->async_callback = NULL; + command->async_data = NULL; + } + + dma_unmap_sg(&port->dd->pdev->dev, + command->sg, + command->scatter_ents, + command->direction); + } + } + + up(&port->cmd_slot); + + atomic_set(&dd->drv_cleanup_done, true); +} + +/* + * Obtain an empty command slot. + * + * This function needs to be reentrant since it could be called + * at the same time on multiple CPUs. The allocation of the + * command slot must be atomic. + * + * @port Pointer to the port data structure. + * + * return value + * >= 0 Index of command slot obtained. + * -1 No command slots available. + */ +static int get_slot(struct mtip_port *port) +{ + int slot, i; + unsigned int num_command_slots = port->dd->slot_groups * 32; + + /* + * Try 10 times, because there is a small race here. + * that's ok, because it's still cheaper than a lock. + * + * Race: Since this section is not protected by lock, same bit + * could be chosen by different process contexts running in + * different processor. So instead of costly lock, we are going + * with loop. + */ + for (i = 0; i < 10; i++) { + slot = find_next_zero_bit(port->allocated, + num_command_slots, 1); + if ((slot < num_command_slots) && + (!test_and_set_bit(slot, port->allocated))) + return slot; + } + dev_warn(&port->dd->pdev->dev, "Failed to get a tag.\n"); + + if (mtip_check_surprise_removal(port->dd->pdev)) { + /* Device not present, clean outstanding commands */ + mtip_command_cleanup(port->dd); + } + return -1; +} + +/* + * Release a command slot. + * + * @port Pointer to the port data structure. + * @tag Tag of command to release + * + * return value + * None + */ +static inline void release_slot(struct mtip_port *port, int tag) +{ + smp_mb__before_clear_bit(); + clear_bit(tag, port->allocated); + smp_mb__after_clear_bit(); +} + +/* + * Reset the HBA (without sleeping) + * + * Just like hba_reset, except does not call sleep, so can be + * run from interrupt/tasklet context. + * + * @dd Pointer to the driver data structure. + * + * return value + * 0 The reset was successful. + * -1 The HBA Reset bit did not clear. + */ +static int hba_reset_nosleep(struct driver_data *dd) +{ + unsigned long timeout; + + /* Chip quirk: quiesce any chip function */ + mdelay(10); + + /* Set the reset bit */ + writel(HOST_RESET, dd->mmio + HOST_CTL); + + /* Flush */ + readl(dd->mmio + HOST_CTL); + + /* + * Wait 10ms then spin for up to 1 second + * waiting for reset acknowledgement + */ + timeout = jiffies + msecs_to_jiffies(1000); + mdelay(10); + while ((readl(dd->mmio + HOST_CTL) & HOST_RESET) + && time_before(jiffies, timeout)) + mdelay(1); + + if (readl(dd->mmio + HOST_CTL) & HOST_RESET) + return -1; + + return 0; +} + +/* + * Issue a command to the hardware. + * + * Set the appropriate bit in the s_active and Command Issue hardware + * registers, causing hardware command processing to begin. + * + * @port Pointer to the port structure. + * @tag The tag of the command to be issued. + * + * return value + * None + */ +static inline void mtip_issue_ncq_command(struct mtip_port *port, int tag) +{ + unsigned long flags = 0; + + atomic_set(&port->commands[tag].active, 1); + + spin_lock_irqsave(&port->cmd_issue_lock, flags); + + writel((1 << MTIP_TAG_BIT(tag)), + port->s_active[MTIP_TAG_INDEX(tag)]); + writel((1 << MTIP_TAG_BIT(tag)), + port->cmd_issue[MTIP_TAG_INDEX(tag)]); + + spin_unlock_irqrestore(&port->cmd_issue_lock, flags); +} + +/* + * Enable/disable the reception of FIS + * + * @port Pointer to the port data structure + * @enable 1 to enable, 0 to disable + * + * return value + * Previous state: 1 enabled, 0 disabled + */ +static int mtip_enable_fis(struct mtip_port *port, int enable) +{ + u32 tmp; + + /* enable FIS reception */ + tmp = readl(port->mmio + PORT_CMD); + if (enable) + writel(tmp | PORT_CMD_FIS_RX, port->mmio + PORT_CMD); + else + writel(tmp & ~PORT_CMD_FIS_RX, port->mmio + PORT_CMD); + + /* Flush */ + readl(port->mmio + PORT_CMD); + + return (((tmp & PORT_CMD_FIS_RX) == PORT_CMD_FIS_RX)); +} + +/* + * Enable/disable the DMA engine + * + * @port Pointer to the port data structure + * @enable 1 to enable, 0 to disable + * + * return value + * Previous state: 1 enabled, 0 disabled. + */ +static int mtip_enable_engine(struct mtip_port *port, int enable) +{ + u32 tmp; + + /* enable FIS reception */ + tmp = readl(port->mmio + PORT_CMD); + if (enable) + writel(tmp | PORT_CMD_START, port->mmio + PORT_CMD); + else + writel(tmp & ~PORT_CMD_START, port->mmio + PORT_CMD); + + readl(port->mmio + PORT_CMD); + return (((tmp & PORT_CMD_START) == PORT_CMD_START)); +} + +/* + * Enables the port DMA engine and FIS reception. + * + * return value + * None + */ +static inline void mtip_start_port(struct mtip_port *port) +{ + /* Enable FIS reception */ + mtip_enable_fis(port, 1); + + /* Enable the DMA engine */ + mtip_enable_engine(port, 1); +} + +/* + * Deinitialize a port by disabling port interrupts, the DMA engine, + * and FIS reception. + * + * @port Pointer to the port structure + * + * return value + * None + */ +static inline void mtip_deinit_port(struct mtip_port *port) +{ + /* Disable interrupts on this port */ + writel(0, port->mmio + PORT_IRQ_MASK); + + /* Disable the DMA engine */ + mtip_enable_engine(port, 0); + + /* Disable FIS reception */ + mtip_enable_fis(port, 0); +} + +/* + * Initialize a port. + * + * This function deinitializes the port by calling mtip_deinit_port() and + * then initializes it by setting the command header and RX FIS addresses, + * clearing the SError register and any pending port interrupts before + * re-enabling the default set of port interrupts. + * + * @port Pointer to the port structure. + * + * return value + * None + */ +static void mtip_init_port(struct mtip_port *port) +{ + int i; + mtip_deinit_port(port); + + /* Program the command list base and FIS base addresses */ + if (readl(port->dd->mmio + HOST_CAP) & HOST_CAP_64) { + writel((port->command_list_dma >> 16) >> 16, + port->mmio + PORT_LST_ADDR_HI); + writel((port->rxfis_dma >> 16) >> 16, + port->mmio + PORT_FIS_ADDR_HI); + } + + writel(port->command_list_dma & 0xFFFFFFFF, + port->mmio + PORT_LST_ADDR); + writel(port->rxfis_dma & 0xFFFFFFFF, port->mmio + PORT_FIS_ADDR); + + /* Clear SError */ + writel(readl(port->mmio + PORT_SCR_ERR), port->mmio + PORT_SCR_ERR); + + /* reset the completed registers.*/ + for (i = 0; i < port->dd->slot_groups; i++) + writel(0xFFFFFFFF, port->completed[i]); + + /* Clear any pending interrupts for this port */ + writel(readl(port->mmio + PORT_IRQ_STAT), port->mmio + PORT_IRQ_STAT); + + /* Enable port interrupts */ + writel(DEF_PORT_IRQ, port->mmio + PORT_IRQ_MASK); +} + +/* + * Restart a port + * + * @port Pointer to the port data structure. + * + * return value + * None + */ +static void mtip_restart_port(struct mtip_port *port) +{ + unsigned long timeout; + + /* Disable the DMA engine */ + mtip_enable_engine(port, 0); + + /* Chip quirk: wait up to 500ms for PxCMD.CR == 0 */ + timeout = jiffies + msecs_to_jiffies(500); + while ((readl(port->mmio + PORT_CMD) & PORT_CMD_LIST_ON) + && time_before(jiffies, timeout)) + ; + + /* + * Chip quirk: escalate to hba reset if + * PxCMD.CR not clear after 500 ms + */ + if (readl(port->mmio + PORT_CMD) & PORT_CMD_LIST_ON) { + dev_warn(&port->dd->pdev->dev, + "PxCMD.CR not clear, escalating reset\n"); + + if (hba_reset_nosleep(port->dd)) + dev_err(&port->dd->pdev->dev, + "HBA reset escalation failed.\n"); + + /* 30 ms delay before com reset to quiesce chip */ + mdelay(30); + } + + dev_warn(&port->dd->pdev->dev, "Issuing COM reset\n"); + + /* Set PxSCTL.DET */ + writel(readl(port->mmio + PORT_SCR_CTL) | + 1, port->mmio + PORT_SCR_CTL); + readl(port->mmio + PORT_SCR_CTL); + + /* Wait 1 ms to quiesce chip function */ + timeout = jiffies + msecs_to_jiffies(1); + while (time_before(jiffies, timeout)) + ; + + /* Clear PxSCTL.DET */ + writel(readl(port->mmio + PORT_SCR_CTL) & ~1, + port->mmio + PORT_SCR_CTL); + readl(port->mmio + PORT_SCR_CTL); + + /* Wait 500 ms for bit 0 of PORT_SCR_STS to be set */ + timeout = jiffies + msecs_to_jiffies(500); + while (((readl(port->mmio + PORT_SCR_STAT) & 0x01) == 0) + && time_before(jiffies, timeout)) + ; + + if ((readl(port->mmio + PORT_SCR_STAT) & 0x01) == 0) + dev_warn(&port->dd->pdev->dev, + "COM reset failed\n"); + + /* Clear SError, the PxSERR.DIAG.x should be set so clear it */ + writel(readl(port->mmio + PORT_SCR_ERR), port->mmio + PORT_SCR_ERR); + + /* Enable the DMA engine */ + mtip_enable_engine(port, 1); +} + +/* + * Called periodically to see if any read/write commands are + * taking too long to complete. + * + * @data Pointer to the PORT data structure. + * + * return value + * None + */ +static void mtip_timeout_function(unsigned long int data) +{ + struct mtip_port *port = (struct mtip_port *) data; + struct host_to_dev_fis *fis; + struct mtip_cmd *command; + int tag, cmdto_cnt = 0; + unsigned int bit, group; + unsigned int num_command_slots = port->dd->slot_groups * 32; + + if (unlikely(!port)) + return; + + if (atomic_read(&port->dd->resumeflag) == true) { + mod_timer(&port->cmd_timer, + jiffies + msecs_to_jiffies(30000)); + return; + } + + for (tag = 0; tag < num_command_slots; tag++) { + /* + * Skip internal command slot as it has + * its own timeout mechanism + */ + if (tag == MTIP_TAG_INTERNAL) + continue; + + if (atomic_read(&port->commands[tag].active) && + (time_after(jiffies, port->commands[tag].comp_time))) { + group = tag >> 5; + bit = tag & 0x1F; + + command = &port->commands[tag]; + fis = (struct host_to_dev_fis *) command->command; + + dev_warn(&port->dd->pdev->dev, + "Timeout for command tag %d\n", tag); + + cmdto_cnt++; + if (cmdto_cnt == 1) + set_bit(MTIP_FLAG_EH_ACTIVE_BIT, &port->flags); + + /* + * Clear the completed bit. This should prevent + * any interrupt handlers from trying to retire + * the command. + */ + writel(1 << bit, port->completed[group]); + + /* Call the async completion callback. */ + if (likely(command->async_callback)) + command->async_callback(command->async_data, + -EIO); + command->async_callback = NULL; + command->comp_func = NULL; + + /* Unmap the DMA scatter list entries */ + dma_unmap_sg(&port->dd->pdev->dev, + command->sg, + command->scatter_ents, + command->direction); + + /* + * Clear the allocated bit and active tag for the + * command. + */ + atomic_set(&port->commands[tag].active, 0); + release_slot(port, tag); + + up(&port->cmd_slot); + } + } + + if (cmdto_cnt) { + dev_warn(&port->dd->pdev->dev, + "%d commands timed out: restarting port", + cmdto_cnt); + mtip_restart_port(port); + clear_bit(MTIP_FLAG_EH_ACTIVE_BIT, &port->flags); + wake_up_interruptible(&port->svc_wait); + } + + /* Restart the timer */ + mod_timer(&port->cmd_timer, + jiffies + msecs_to_jiffies(MTIP_TIMEOUT_CHECK_PERIOD)); +} + +/* + * IO completion function. + * + * This completion function is called by the driver ISR when a + * command that was issued by the kernel completes. It first calls the + * asynchronous completion function which normally calls back into the block + * layer passing the asynchronous callback data, then unmaps the + * scatter list associated with the completed command, and finally + * clears the allocated bit associated with the completed command. + * + * @port Pointer to the port data structure. + * @tag Tag of the command. + * @data Pointer to driver_data. + * @status Completion status. + * + * return value + * None + */ +static void mtip_async_complete(struct mtip_port *port, + int tag, + void *data, + int status) +{ + struct mtip_cmd *command; + struct driver_data *dd = data; + int cb_status = status ? -EIO : 0; + + if (unlikely(!dd) || unlikely(!port)) + return; + + command = &port->commands[tag]; + + if (unlikely(status == PORT_IRQ_TF_ERR)) { + dev_warn(&port->dd->pdev->dev, + "Command tag %d failed due to TFE\n", tag); + } + + /* Upper layer callback */ + if (likely(command->async_callback)) + command->async_callback(command->async_data, cb_status); + + command->async_callback = NULL; + command->comp_func = NULL; + + /* Unmap the DMA scatter list entries */ + dma_unmap_sg(&dd->pdev->dev, + command->sg, + command->scatter_ents, + command->direction); + + /* Clear the allocated and active bits for the command */ + atomic_set(&port->commands[tag].active, 0); + release_slot(port, tag); + + up(&port->cmd_slot); +} + +/* + * Internal command completion callback function. + * + * This function is normally called by the driver ISR when an internal + * command completed. This function signals the command completion by + * calling complete(). + * + * @port Pointer to the port data structure. + * @tag Tag of the command that has completed. + * @data Pointer to a completion structure. + * @status Completion status. + * + * return value + * None + */ +static void mtip_completion(struct mtip_port *port, + int tag, + void *data, + int status) +{ + struct mtip_cmd *command = &port->commands[tag]; + struct completion *waiting = data; + if (unlikely(status == PORT_IRQ_TF_ERR)) + dev_warn(&port->dd->pdev->dev, + "Internal command %d completed with TFE\n", tag); + + command->async_callback = NULL; + command->comp_func = NULL; + + complete(waiting); +} + +/* + * Helper function for tag logging + */ +static void print_tags(struct driver_data *dd, + char *msg, + unsigned long *tagbits) +{ + unsigned int tag, count = 0; + + for (tag = 0; tag < (dd->slot_groups) * 32; tag++) { + if (test_bit(tag, tagbits)) + count++; + } + if (count) + dev_info(&dd->pdev->dev, "%s [%i tags]\n", msg, count); +} + +/* + * Handle an error. + * + * @dd Pointer to the DRIVER_DATA structure. + * + * return value + * None + */ +static void mtip_handle_tfe(struct driver_data *dd) +{ + int group, tag, bit, reissue; + struct mtip_port *port; + struct mtip_cmd *command; + u32 completed; + struct host_to_dev_fis *fis; + unsigned long tagaccum[SLOTBITS_IN_LONGS]; + + dev_warn(&dd->pdev->dev, "Taskfile error\n"); + + port = dd->port; + + /* Stop the timer to prevent command timeouts. */ + del_timer(&port->cmd_timer); + + /* Set eh_active */ + set_bit(MTIP_FLAG_EH_ACTIVE_BIT, &port->flags); + + /* Loop through all the groups */ + for (group = 0; group < dd->slot_groups; group++) { + completed = readl(port->completed[group]); + + /* clear completed status register in the hardware.*/ + writel(completed, port->completed[group]); + + /* clear the tag accumulator */ + memset(tagaccum, 0, SLOTBITS_IN_LONGS * sizeof(long)); + + /* Process successfully completed commands */ + for (bit = 0; bit < 32 && completed; bit++) { + if (!(completed & (1<commands[tag]; + if (likely(command->comp_func)) { + set_bit(tag, tagaccum); + atomic_set(&port->commands[tag].active, 0); + command->comp_func(port, + tag, + command->comp_data, + 0); + } else { + dev_err(&port->dd->pdev->dev, + "Missing completion func for tag %d", + tag); + if (mtip_check_surprise_removal(dd->pdev)) { + mtip_command_cleanup(dd); + /* don't proceed further */ + return; + } + } + } + } + print_tags(dd, "TFE tags completed:", tagaccum); + + /* Restart the port */ + mdelay(20); + mtip_restart_port(port); + + /* clear the tag accumulator */ + memset(tagaccum, 0, SLOTBITS_IN_LONGS * sizeof(long)); + + /* Loop through all the groups */ + for (group = 0; group < dd->slot_groups; group++) { + for (bit = 0; bit < 32; bit++) { + reissue = 1; + tag = (group << 5) + bit; + + /* If the active bit is set re-issue the command */ + if (atomic_read(&port->commands[tag].active) == 0) + continue; + + fis = (struct host_to_dev_fis *) + port->commands[tag].command; + + /* Should re-issue? */ + if (tag == MTIP_TAG_INTERNAL || + fis->command == ATA_CMD_SET_FEATURES) + reissue = 0; + + /* + * First check if this command has + * exceeded its retries. + */ + if (reissue && + (port->commands[tag].retries-- > 0)) { + + set_bit(tag, tagaccum); + + /* Update the timeout value. */ + port->commands[tag].comp_time = + jiffies + msecs_to_jiffies( + MTIP_NCQ_COMMAND_TIMEOUT_MS); + /* Re-issue the command. */ + mtip_issue_ncq_command(port, tag); + + continue; + } + + /* Retire a command that will not be reissued */ + dev_warn(&port->dd->pdev->dev, + "retiring tag %d\n", tag); + atomic_set(&port->commands[tag].active, 0); + + if (port->commands[tag].comp_func) + port->commands[tag].comp_func( + port, + tag, + port->commands[tag].comp_data, + PORT_IRQ_TF_ERR); + else + dev_warn(&port->dd->pdev->dev, + "Bad completion for tag %d\n", + tag); + } + } + print_tags(dd, "TFE tags reissued:", tagaccum); + + /* clear eh_active */ + clear_bit(MTIP_FLAG_EH_ACTIVE_BIT, &port->flags); + wake_up_interruptible(&port->svc_wait); + + mod_timer(&port->cmd_timer, + jiffies + msecs_to_jiffies(MTIP_TIMEOUT_CHECK_PERIOD)); +} + +/* + * Handle a set device bits interrupt + */ +static inline void mtip_process_sdbf(struct driver_data *dd) +{ + struct mtip_port *port = dd->port; + int group, tag, bit; + u32 completed; + struct mtip_cmd *command; + + /* walk all bits in all slot groups */ + for (group = 0; group < dd->slot_groups; group++) { + completed = readl(port->completed[group]); + + /* clear completed status register in the hardware.*/ + writel(completed, port->completed[group]); + + /* Process completed commands. */ + for (bit = 0; + (bit < 32) && completed; + bit++, completed >>= 1) { + if (completed & 0x01) { + tag = (group << 5) | bit; + + /* skip internal command slot. */ + if (unlikely(tag == MTIP_TAG_INTERNAL)) + continue; + + command = &port->commands[tag]; + /* make internal callback */ + if (likely(command->comp_func)) { + command->comp_func( + port, + tag, + command->comp_data, + 0); + } else { + dev_warn(&dd->pdev->dev, + "Null completion " + "for tag %d", + tag); + + if (mtip_check_surprise_removal( + dd->pdev)) { + mtip_command_cleanup(dd); + return; + } + } + } + } + } +} + +/* + * Process legacy pio and d2h interrupts + */ +static inline void mtip_process_legacy(struct driver_data *dd, u32 port_stat) +{ + struct mtip_port *port = dd->port; + struct mtip_cmd *cmd = &port->commands[MTIP_TAG_INTERNAL]; + + if (test_bit(MTIP_FLAG_IC_ACTIVE_BIT, &port->flags) && + (cmd != NULL) && !(readl(port->cmd_issue[MTIP_TAG_INTERNAL]) + & (1 << MTIP_TAG_INTERNAL))) { + if (cmd->comp_func) { + cmd->comp_func(port, + MTIP_TAG_INTERNAL, + cmd->comp_data, + 0); + return; + } + } + + dev_warn(&dd->pdev->dev, "IRQ status 0x%x ignored.\n", port_stat); + + return; +} + +/* + * Demux and handle errors + */ +static inline void mtip_process_errors(struct driver_data *dd, u32 port_stat) +{ + if (likely(port_stat & (PORT_IRQ_TF_ERR | PORT_IRQ_IF_ERR))) + mtip_handle_tfe(dd); + + if (unlikely(port_stat & PORT_IRQ_CONNECT)) { + dev_warn(&dd->pdev->dev, + "Clearing PxSERR.DIAG.x\n"); + writel((1 << 26), dd->port->mmio + PORT_SCR_ERR); + } + + if (unlikely(port_stat & PORT_IRQ_PHYRDY)) { + dev_warn(&dd->pdev->dev, + "Clearing PxSERR.DIAG.n\n"); + writel((1 << 16), dd->port->mmio + PORT_SCR_ERR); + } + + if (unlikely(port_stat & ~PORT_IRQ_HANDLED)) { + dev_warn(&dd->pdev->dev, + "Port stat errors %x unhandled\n", + (port_stat & ~PORT_IRQ_HANDLED)); + } +} + +static inline irqreturn_t mtip_handle_irq(struct driver_data *data) +{ + struct driver_data *dd = (struct driver_data *) data; + struct mtip_port *port = dd->port; + u32 hba_stat, port_stat; + int rv = IRQ_NONE; + + hba_stat = readl(dd->mmio + HOST_IRQ_STAT); + if (hba_stat) { + rv = IRQ_HANDLED; + + /* Acknowledge the interrupt status on the port.*/ + port_stat = readl(port->mmio + PORT_IRQ_STAT); + writel(port_stat, port->mmio + PORT_IRQ_STAT); + + /* Demux port status */ + if (likely(port_stat & PORT_IRQ_SDB_FIS)) + mtip_process_sdbf(dd); + + if (unlikely(port_stat & PORT_IRQ_ERR)) { + if (unlikely(mtip_check_surprise_removal(dd->pdev))) { + mtip_command_cleanup(dd); + /* don't proceed further */ + return IRQ_HANDLED; + } + + mtip_process_errors(dd, port_stat & PORT_IRQ_ERR); + } + + if (unlikely(port_stat & PORT_IRQ_LEGACY)) + mtip_process_legacy(dd, port_stat & PORT_IRQ_LEGACY); + } + + /* acknowledge interrupt */ + writel(hba_stat, dd->mmio + HOST_IRQ_STAT); + + return rv; +} + +/* + * Wrapper for mtip_handle_irq + * (ignores return code) + */ +static void mtip_tasklet(unsigned long data) +{ + mtip_handle_irq((struct driver_data *) data); +} + +/* + * HBA interrupt subroutine. + * + * @irq IRQ number. + * @instance Pointer to the driver data structure. + * + * return value + * IRQ_HANDLED A HBA interrupt was pending and handled. + * IRQ_NONE This interrupt was not for the HBA. + */ +static irqreturn_t mtip_irq_handler(int irq, void *instance) +{ + struct driver_data *dd = instance; + tasklet_schedule(&dd->tasklet); + return IRQ_HANDLED; +} + +static void mtip_issue_non_ncq_command(struct mtip_port *port, int tag) +{ + atomic_set(&port->commands[tag].active, 1); + writel(1 << MTIP_TAG_BIT(tag), + port->cmd_issue[MTIP_TAG_INDEX(tag)]); +} + +/* + * Wait for port to quiesce + * + * @port Pointer to port data structure + * @timeout Max duration to wait (ms) + * + * return value + * 0 Success + * -EBUSY Commands still active + */ +static int mtip_quiesce_io(struct mtip_port *port, unsigned long timeout) +{ + unsigned long to; + unsigned int n; + unsigned int active = 1; + + to = jiffies + msecs_to_jiffies(timeout); + do { + if (test_bit(MTIP_FLAG_SVC_THD_ACTIVE_BIT, &port->flags) && + test_bit(MTIP_FLAG_ISSUE_CMDS_BIT, &port->flags)) { + msleep(20); + continue; /* svc thd is actively issuing commands */ + } + /* + * Ignore s_active bit 0 of array element 0. + * This bit will always be set + */ + active = readl(port->s_active[0]) & 0xFFFFFFFE; + for (n = 1; n < port->dd->slot_groups; n++) + active |= readl(port->s_active[n]); + + if (!active) + break; + + msleep(20); + } while (time_before(jiffies, to)); + + return active ? -EBUSY : 0; +} + +/* + * Execute an internal command and wait for the completion. + * + * @port Pointer to the port data structure. + * @fis Pointer to the FIS that describes the command. + * @fis_len Length in WORDS of the FIS. + * @buffer DMA accessible for command data. + * @buf_len Length, in bytes, of the data buffer. + * @opts Command header options, excluding the FIS length + * and the number of PRD entries. + * @timeout Time in ms to wait for the command to complete. + * + * return value + * 0 Command completed successfully. + * -EFAULT The buffer address is not correctly aligned. + * -EBUSY Internal command or other IO in progress. + * -EAGAIN Time out waiting for command to complete. + */ +static int mtip_exec_internal_command(struct mtip_port *port, + void *fis, + int fis_len, + dma_addr_t buffer, + int buf_len, + u32 opts, + gfp_t atomic, + unsigned long timeout) +{ + struct mtip_cmd_sg *command_sg; + DECLARE_COMPLETION_ONSTACK(wait); + int rv = 0; + struct mtip_cmd *int_cmd = &port->commands[MTIP_TAG_INTERNAL]; + + /* Make sure the buffer is 8 byte aligned. This is asic specific. */ + if (buffer & 0x00000007) { + dev_err(&port->dd->pdev->dev, + "SG buffer is not 8 byte aligned\n"); + return -EFAULT; + } + + /* Only one internal command should be running at a time */ + if (test_and_set_bit(MTIP_TAG_INTERNAL, port->allocated)) { + dev_warn(&port->dd->pdev->dev, + "Internal command already active\n"); + return -EBUSY; + } + set_bit(MTIP_FLAG_IC_ACTIVE_BIT, &port->flags); + + if (atomic == GFP_KERNEL) { + /* wait for io to complete if non atomic */ + if (mtip_quiesce_io(port, 5000) < 0) { + dev_warn(&port->dd->pdev->dev, + "Failed to quiesce IO\n"); + release_slot(port, MTIP_TAG_INTERNAL); + clear_bit(MTIP_FLAG_IC_ACTIVE_BIT, &port->flags); + wake_up_interruptible(&port->svc_wait); + return -EBUSY; + } + + /* Set the completion function and data for the command. */ + int_cmd->comp_data = &wait; + int_cmd->comp_func = mtip_completion; + + } else { + /* Clear completion - we're going to poll */ + int_cmd->comp_data = NULL; + int_cmd->comp_func = NULL; + } + + /* Copy the command to the command table */ + memcpy(int_cmd->command, fis, fis_len*4); + + /* Populate the SG list */ + int_cmd->command_header->opts = + __force_bit2int cpu_to_le32(opts | fis_len); + if (buf_len) { + command_sg = int_cmd->command + AHCI_CMD_TBL_HDR_SZ; + + command_sg->info = + __force_bit2int cpu_to_le32((buf_len-1) & 0x3FFFFF); + command_sg->dba = + __force_bit2int cpu_to_le32(buffer & 0xFFFFFFFF); + command_sg->dba_upper = + __force_bit2int cpu_to_le32((buffer >> 16) >> 16); + + int_cmd->command_header->opts |= + __force_bit2int cpu_to_le32((1 << 16)); + } + + /* Populate the command header */ + int_cmd->command_header->byte_count = 0; + + /* Issue the command to the hardware */ + mtip_issue_non_ncq_command(port, MTIP_TAG_INTERNAL); + + /* Poll if atomic, wait_for_completion otherwise */ + if (atomic == GFP_KERNEL) { + /* Wait for the command to complete or timeout. */ + if (wait_for_completion_timeout( + &wait, + msecs_to_jiffies(timeout)) == 0) { + dev_err(&port->dd->pdev->dev, + "Internal command did not complete [%d] " + "within timeout of %lu ms\n", + atomic, timeout); + rv = -EAGAIN; + } + + if (readl(port->cmd_issue[MTIP_TAG_INTERNAL]) + & (1 << MTIP_TAG_INTERNAL)) { + dev_warn(&port->dd->pdev->dev, + "Retiring internal command but CI is 1.\n"); + } + + } else { + /* Spin for checking if command still outstanding */ + timeout = jiffies + msecs_to_jiffies(timeout); + + while ((readl( + port->cmd_issue[MTIP_TAG_INTERNAL]) + & (1 << MTIP_TAG_INTERNAL)) + && time_before(jiffies, timeout)) + ; + + if (readl(port->cmd_issue[MTIP_TAG_INTERNAL]) + & (1 << MTIP_TAG_INTERNAL)) { + dev_err(&port->dd->pdev->dev, + "Internal command did not complete [%d]\n", + atomic); + rv = -EAGAIN; + } + } + + /* Clear the allocated and active bits for the internal command. */ + atomic_set(&int_cmd->active, 0); + release_slot(port, MTIP_TAG_INTERNAL); + clear_bit(MTIP_FLAG_IC_ACTIVE_BIT, &port->flags); + wake_up_interruptible(&port->svc_wait); + + return rv; +} + +/* + * Byte-swap ATA ID strings. + * + * ATA identify data contains strings in byte-swapped 16-bit words. + * They must be swapped (on all architectures) to be usable as C strings. + * This function swaps bytes in-place. + * + * @buf The buffer location of the string + * @len The number of bytes to swap + * + * return value + * None + */ +static inline void ata_swap_string(u16 *buf, unsigned int len) +{ + int i; + for (i = 0; i < (len/2); i++) + be16_to_cpus(&buf[i]); +} + +/* + * Request the device identity information. + * + * If a user space buffer is not specified, i.e. is NULL, the + * identify information is still read from the drive and placed + * into the identify data buffer (@e port->identify) in the + * port data structure. + * When the identify buffer contains valid identify information @e + * port->identify_valid is non-zero. + * + * @port Pointer to the port structure. + * @user_buffer A user space buffer where the identify data should be + * copied. + * + * return value + * 0 Command completed successfully. + * -EFAULT An error occurred while coping data to the user buffer. + * -1 Command failed. + */ +static int mtip_get_identify(struct mtip_port *port, void __user *user_buffer) +{ + int rv = 0; + struct host_to_dev_fis fis; + + /* Build the FIS. */ + memset(&fis, 0, sizeof(struct host_to_dev_fis)); + fis.type = 0x27; + fis.opts = 1 << 7; + fis.command = ATA_CMD_ID_ATA; + + /* Set the identify information as invalid. */ + port->identify_valid = 0; + + /* Clear the identify information. */ + memset(port->identify, 0, sizeof(u16) * ATA_ID_WORDS); + + /* Execute the command. */ + if (mtip_exec_internal_command(port, + &fis, + 5, + port->identify_dma, + sizeof(u16) * ATA_ID_WORDS, + 0, + GFP_KERNEL, + MTIP_INTERNAL_COMMAND_TIMEOUT_MS) + < 0) { + rv = -1; + goto out; + } + + /* + * Perform any necessary byte-swapping. Yes, the kernel does in fact + * perform field-sensitive swapping on the string fields. + * See the kernel use of ata_id_string() for proof of this. + */ +#ifdef __LITTLE_ENDIAN + ata_swap_string(port->identify + 27, 40); /* model string*/ + ata_swap_string(port->identify + 23, 8); /* firmware string*/ + ata_swap_string(port->identify + 10, 20); /* serial# string*/ +#else + { + int i; + for (i = 0; i < ATA_ID_WORDS; i++) + port->identify[i] = le16_to_cpu(port->identify[i]); + } +#endif + + /* Set the identify buffer as valid. */ + port->identify_valid = 1; + + if (user_buffer) { + if (copy_to_user( + user_buffer, + port->identify, + ATA_ID_WORDS * sizeof(u16))) { + rv = -EFAULT; + goto out; + } + } + +out: + return rv; +} + +/* + * Issue a standby immediate command to the device. + * + * @port Pointer to the port structure. + * + * return value + * 0 Command was executed successfully. + * -1 An error occurred while executing the command. + */ +static int mtip_standby_immediate(struct mtip_port *port) +{ + int rv; + struct host_to_dev_fis fis; + + /* Build the FIS. */ + memset(&fis, 0, sizeof(struct host_to_dev_fis)); + fis.type = 0x27; + fis.opts = 1 << 7; + fis.command = ATA_CMD_STANDBYNOW1; + + /* Execute the command. Use a 15-second timeout for large drives. */ + rv = mtip_exec_internal_command(port, + &fis, + 5, + 0, + 0, + 0, + GFP_KERNEL, + 15000); + + return rv; +} + +/* + * Get the drive capacity. + * + * @dd Pointer to the device data structure. + * @sectors Pointer to the variable that will receive the sector count. + * + * return value + * 1 Capacity was returned successfully. + * 0 The identify information is invalid. + */ +static bool mtip_hw_get_capacity(struct driver_data *dd, sector_t *sectors) +{ + struct mtip_port *port = dd->port; + u64 total, raw0, raw1, raw2, raw3; + raw0 = port->identify[100]; + raw1 = port->identify[101]; + raw2 = port->identify[102]; + raw3 = port->identify[103]; + total = raw0 | raw1<<16 | raw2<<32 | raw3<<48; + *sectors = total; + return (bool) !!port->identify_valid; +} + +/* + * Reset the HBA. + * + * Resets the HBA by setting the HBA Reset bit in the Global + * HBA Control register. After setting the HBA Reset bit the + * function waits for 1 second before reading the HBA Reset + * bit to make sure it has cleared. If HBA Reset is not clear + * an error is returned. Cannot be used in non-blockable + * context. + * + * @dd Pointer to the driver data structure. + * + * return value + * 0 The reset was successful. + * -1 The HBA Reset bit did not clear. + */ +static int mtip_hba_reset(struct driver_data *dd) +{ + mtip_deinit_port(dd->port); + + /* Set the reset bit */ + writel(HOST_RESET, dd->mmio + HOST_CTL); + + /* Flush */ + readl(dd->mmio + HOST_CTL); + + /* Wait for reset to clear */ + ssleep(1); + + /* Check the bit has cleared */ + if (readl(dd->mmio + HOST_CTL) & HOST_RESET) { + dev_err(&dd->pdev->dev, + "Reset bit did not clear.\n"); + return -1; + } + + return 0; +} + +/* + * Display the identify command data. + * + * @port Pointer to the port data structure. + * + * return value + * None + */ +static void mtip_dump_identify(struct mtip_port *port) +{ + sector_t sectors; + unsigned short revid; + char cbuf[42]; + + if (!port->identify_valid) + return; + + strlcpy(cbuf, (char *)(port->identify+10), 21); + dev_info(&port->dd->pdev->dev, + "Serial No.: %s\n", cbuf); + + strlcpy(cbuf, (char *)(port->identify+23), 9); + dev_info(&port->dd->pdev->dev, + "Firmware Ver.: %s\n", cbuf); + + strlcpy(cbuf, (char *)(port->identify+27), 41); + dev_info(&port->dd->pdev->dev, "Model: %s\n", cbuf); + + if (mtip_hw_get_capacity(port->dd, §ors)) + dev_info(&port->dd->pdev->dev, + "Capacity: %llu sectors (%llu MB)\n", + (u64)sectors, + ((u64)sectors) * ATA_SECT_SIZE >> 20); + + pci_read_config_word(port->dd->pdev, PCI_REVISION_ID, &revid); + switch (revid & 0xFF) { + case 0x1: + strlcpy(cbuf, "A0", 3); + break; + case 0x3: + strlcpy(cbuf, "A2", 3); + break; + default: + strlcpy(cbuf, "?", 2); + break; + } + dev_info(&port->dd->pdev->dev, + "Card Type: %s\n", cbuf); +} + +/* + * Map the commands scatter list into the command table. + * + * @command Pointer to the command. + * @nents Number of scatter list entries. + * + * return value + * None + */ +static inline void fill_command_sg(struct driver_data *dd, + struct mtip_cmd *command, + int nents) +{ + int n; + unsigned int dma_len; + struct mtip_cmd_sg *command_sg; + struct scatterlist *sg = command->sg; + + command_sg = command->command + AHCI_CMD_TBL_HDR_SZ; + + for (n = 0; n < nents; n++) { + dma_len = sg_dma_len(sg); + if (dma_len > 0x400000) + dev_err(&dd->pdev->dev, + "DMA segment length truncated\n"); + command_sg->info = __force_bit2int + cpu_to_le32((dma_len-1) & 0x3FFFFF); + command_sg->dba = __force_bit2int + cpu_to_le32(sg_dma_address(sg)); + command_sg->dba_upper = __force_bit2int + cpu_to_le32((sg_dma_address(sg) >> 16) >> 16); + command_sg++; + sg++; + } +} + +/* + * @brief Execute a drive command. + * + * return value 0 The command completed successfully. + * return value -1 An error occurred while executing the command. + */ +static int exec_drive_task(struct mtip_port *port, u8 *command) +{ + struct host_to_dev_fis fis; + struct host_to_dev_fis *reply = (port->rxfis + RX_FIS_D2H_REG); + + /* Build the FIS. */ + memset(&fis, 0, sizeof(struct host_to_dev_fis)); + fis.type = 0x27; + fis.opts = 1 << 7; + fis.command = command[0]; + fis.features = command[1]; + fis.sect_count = command[2]; + fis.sector = command[3]; + fis.cyl_low = command[4]; + fis.cyl_hi = command[5]; + fis.device = command[6] & ~0x10; /* Clear the dev bit*/ + + + dbg_printk(MTIP_DRV_NAME "%s: User Command: cmd %x, feat %x, " + "nsect %x, sect %x, lcyl %x, " + "hcyl %x, sel %x\n", + __func__, + command[0], + command[1], + command[2], + command[3], + command[4], + command[5], + command[6]); + + /* Execute the command. */ + if (mtip_exec_internal_command(port, + &fis, + 5, + 0, + 0, + 0, + GFP_KERNEL, + MTIP_IOCTL_COMMAND_TIMEOUT_MS) < 0) { + return -1; + } + + command[0] = reply->command; /* Status*/ + command[1] = reply->features; /* Error*/ + command[4] = reply->cyl_low; + command[5] = reply->cyl_hi; + + dbg_printk(MTIP_DRV_NAME "%s: Completion Status: stat %x, " + "err %x , cyl_lo %x cyl_hi %x\n", + __func__, + command[0], + command[1], + command[4], + command[5]); + + return 0; +} + +/* + * @brief Execute a drive command. + * + * @param port Pointer to the port data structure. + * @param command Pointer to the user specified command parameters. + * @param user_buffer Pointer to the user space buffer where read sector + * data should be copied. + * + * return value 0 The command completed successfully. + * return value -EFAULT An error occurred while copying the completion + * data to the user space buffer. + * return value -1 An error occurred while executing the command. + */ +static int exec_drive_command(struct mtip_port *port, u8 *command, + void __user *user_buffer) +{ + struct host_to_dev_fis fis; + struct host_to_dev_fis *reply = (port->rxfis + RX_FIS_D2H_REG); + + /* Build the FIS. */ + memset(&fis, 0, sizeof(struct host_to_dev_fis)); + fis.type = 0x27; + fis.opts = 1 << 7; + fis.command = command[0]; + fis.features = command[2]; + fis.sect_count = command[3]; + if (fis.command == ATA_CMD_SMART) { + fis.sector = command[1]; + fis.cyl_low = 0x4F; + fis.cyl_hi = 0xC2; + } + + dbg_printk(MTIP_DRV_NAME + "%s: User Command: cmd %x, sect %x, " + "feat %x, sectcnt %x\n", + __func__, + command[0], + command[1], + command[2], + command[3]); + + memset(port->sector_buffer, 0x00, ATA_SECT_SIZE); + + /* Execute the command. */ + if (mtip_exec_internal_command(port, + &fis, + 5, + port->sector_buffer_dma, + (command[3] != 0) ? ATA_SECT_SIZE : 0, + 0, + GFP_KERNEL, + MTIP_IOCTL_COMMAND_TIMEOUT_MS) + < 0) { + return -1; + } + + /* Collect the completion status. */ + command[0] = reply->command; /* Status*/ + command[1] = reply->features; /* Error*/ + command[2] = command[3]; + + dbg_printk(MTIP_DRV_NAME + "%s: Completion Status: stat %x, " + "err %x, cmd %x\n", + __func__, + command[0], + command[1], + command[2]); + + if (user_buffer && command[3]) { + if (copy_to_user(user_buffer, + port->sector_buffer, + ATA_SECT_SIZE * command[3])) { + return -EFAULT; + } + } + + return 0; +} + +/* + * Indicates whether a command has a single sector payload. + * + * @command passed to the device to perform the certain event. + * @features passed to the device to perform the certain event. + * + * return value + * 1 command is one that always has a single sector payload, + * regardless of the value in the Sector Count field. + * 0 otherwise + * + */ +static unsigned int implicit_sector(unsigned char command, + unsigned char features) +{ + unsigned int rv = 0; + + /* list of commands that have an implicit sector count of 1 */ + switch (command) { + case ATA_CMD_SEC_SET_PASS: + case ATA_CMD_SEC_UNLOCK: + case ATA_CMD_SEC_ERASE_PREP: + case ATA_CMD_SEC_ERASE_UNIT: + case ATA_CMD_SEC_FREEZE_LOCK: + case ATA_CMD_SEC_DISABLE_PASS: + case ATA_CMD_PMP_READ: + case ATA_CMD_PMP_WRITE: + rv = 1; + break; + case ATA_CMD_SET_MAX: + if (features == ATA_SET_MAX_UNLOCK) + rv = 1; + break; + case ATA_CMD_SMART: + if ((features == ATA_SMART_READ_VALUES) || + (features == ATA_SMART_READ_THRESHOLDS)) + rv = 1; + break; + case ATA_CMD_CONF_OVERLAY: + if ((features == ATA_DCO_IDENTIFY) || + (features == ATA_DCO_SET)) + rv = 1; + break; + } + return rv; +} + +/* + * Executes a taskfile + * See ide_taskfile_ioctl() for derivation + */ +static int exec_drive_taskfile(struct driver_data *dd, + void __user *buf, + ide_task_request_t *req_task, + int outtotal) +{ + struct host_to_dev_fis fis; + struct host_to_dev_fis *reply; + u8 *outbuf = NULL; + u8 *inbuf = NULL; + dma_addr_t outbuf_dma = 0; + dma_addr_t inbuf_dma = 0; + dma_addr_t dma_buffer = 0; + int err = 0; + unsigned int taskin = 0; + unsigned int taskout = 0; + u8 nsect = 0; + unsigned int timeout = MTIP_IOCTL_COMMAND_TIMEOUT_MS; + unsigned int force_single_sector; + unsigned int transfer_size; + unsigned long task_file_data; + int intotal = outtotal + req_task->out_size; + + taskout = req_task->out_size; + taskin = req_task->in_size; + /* 130560 = 512 * 0xFF*/ + if (taskin > 130560 || taskout > 130560) { + err = -EINVAL; + goto abort; + } + + if (taskout) { + outbuf = kzalloc(taskout, GFP_KERNEL); + if (outbuf == NULL) { + err = -ENOMEM; + goto abort; + } + if (copy_from_user(outbuf, buf + outtotal, taskout)) { + err = -EFAULT; + goto abort; + } + outbuf_dma = pci_map_single(dd->pdev, + outbuf, + taskout, + DMA_TO_DEVICE); + if (outbuf_dma == 0) { + err = -ENOMEM; + goto abort; + } + dma_buffer = outbuf_dma; + } + + if (taskin) { + inbuf = kzalloc(taskin, GFP_KERNEL); + if (inbuf == NULL) { + err = -ENOMEM; + goto abort; + } + + if (copy_from_user(inbuf, buf + intotal, taskin)) { + err = -EFAULT; + goto abort; + } + inbuf_dma = pci_map_single(dd->pdev, + inbuf, + taskin, DMA_FROM_DEVICE); + if (inbuf_dma == 0) { + err = -ENOMEM; + goto abort; + } + dma_buffer = inbuf_dma; + } + + /* only supports PIO and non-data commands from this ioctl. */ + switch (req_task->data_phase) { + case TASKFILE_OUT: + nsect = taskout / ATA_SECT_SIZE; + reply = (dd->port->rxfis + RX_FIS_PIO_SETUP); + break; + case TASKFILE_IN: + reply = (dd->port->rxfis + RX_FIS_PIO_SETUP); + break; + case TASKFILE_NO_DATA: + reply = (dd->port->rxfis + RX_FIS_D2H_REG); + break; + default: + err = -EINVAL; + goto abort; + } + + /* Build the FIS. */ + memset(&fis, 0, sizeof(struct host_to_dev_fis)); + + fis.type = 0x27; + fis.opts = 1 << 7; + fis.command = req_task->io_ports[7]; + fis.features = req_task->io_ports[1]; + fis.sect_count = req_task->io_ports[2]; + fis.lba_low = req_task->io_ports[3]; + fis.lba_mid = req_task->io_ports[4]; + fis.lba_hi = req_task->io_ports[5]; + /* Clear the dev bit*/ + fis.device = req_task->io_ports[6] & ~0x10; + + if ((req_task->in_flags.all == 0) && (req_task->out_flags.all & 1)) { + req_task->in_flags.all = + IDE_TASKFILE_STD_IN_FLAGS | + (IDE_HOB_STD_IN_FLAGS << 8); + fis.lba_low_ex = req_task->hob_ports[3]; + fis.lba_mid_ex = req_task->hob_ports[4]; + fis.lba_hi_ex = req_task->hob_ports[5]; + fis.features_ex = req_task->hob_ports[1]; + fis.sect_cnt_ex = req_task->hob_ports[2]; + + } else { + req_task->in_flags.all = IDE_TASKFILE_STD_IN_FLAGS; + } + + force_single_sector = implicit_sector(fis.command, fis.features); + + if ((taskin || taskout) && (!fis.sect_count)) { + if (nsect) + fis.sect_count = nsect; + else { + if (!force_single_sector) { + dev_warn(&dd->pdev->dev, + "data movement but " + "sect_count is 0\n"); + err = -EINVAL; + goto abort; + } + } + } + + dbg_printk(MTIP_DRV_NAME + "taskfile: cmd %x, feat %x, nsect %x," + " sect/lbal %x, lcyl/lbam %x, hcyl/lbah %x," + " head/dev %x\n", + fis.command, + fis.features, + fis.sect_count, + fis.lba_low, + fis.lba_mid, + fis.lba_hi, + fis.device); + + switch (fis.command) { + case ATA_CMD_DOWNLOAD_MICRO: + /* Change timeout for Download Microcode to 60 seconds.*/ + timeout = 60000; + break; + case ATA_CMD_SEC_ERASE_UNIT: + /* Change timeout for Security Erase Unit to 4 minutes.*/ + timeout = 240000; + break; + case ATA_CMD_STANDBYNOW1: + /* Change timeout for standby immediate to 10 seconds.*/ + timeout = 10000; + break; + case 0xF7: + case 0xFA: + /* Change timeout for vendor unique command to 10 secs */ + timeout = 10000; + break; + case ATA_CMD_SMART: + /* Change timeout for vendor unique command to 10 secs */ + timeout = 10000; + break; + default: + timeout = MTIP_IOCTL_COMMAND_TIMEOUT_MS; + break; + } + + /* Determine the correct transfer size.*/ + if (force_single_sector) + transfer_size = ATA_SECT_SIZE; + else + transfer_size = ATA_SECT_SIZE * fis.sect_count; + + /* Execute the command.*/ + if (mtip_exec_internal_command(dd->port, + &fis, + 5, + dma_buffer, + transfer_size, + 0, + GFP_KERNEL, + timeout) < 0) { + err = -EIO; + goto abort; + } + + task_file_data = readl(dd->port->mmio+PORT_TFDATA); + + if ((req_task->data_phase == TASKFILE_IN) && !(task_file_data & 1)) { + reply = dd->port->rxfis + RX_FIS_PIO_SETUP; + req_task->io_ports[7] = reply->control; + } else { + reply = dd->port->rxfis + RX_FIS_D2H_REG; + req_task->io_ports[7] = reply->command; + } + + /* reclaim the DMA buffers.*/ + if (inbuf_dma) + pci_unmap_single(dd->pdev, inbuf_dma, + taskin, DMA_FROM_DEVICE); + if (outbuf_dma) + pci_unmap_single(dd->pdev, outbuf_dma, + taskout, DMA_TO_DEVICE); + inbuf_dma = 0; + outbuf_dma = 0; + + /* return the ATA registers to the caller.*/ + req_task->io_ports[1] = reply->features; + req_task->io_ports[2] = reply->sect_count; + req_task->io_ports[3] = reply->lba_low; + req_task->io_ports[4] = reply->lba_mid; + req_task->io_ports[5] = reply->lba_hi; + req_task->io_ports[6] = reply->device; + + if (req_task->out_flags.all & 1) { + + req_task->hob_ports[3] = reply->lba_low_ex; + req_task->hob_ports[4] = reply->lba_mid_ex; + req_task->hob_ports[5] = reply->lba_hi_ex; + req_task->hob_ports[1] = reply->features_ex; + req_task->hob_ports[2] = reply->sect_cnt_ex; + } + + /* Com rest after secure erase or lowlevel format */ + if (((fis.command == ATA_CMD_SEC_ERASE_UNIT) || + ((fis.command == 0xFC) && + (fis.features == 0x27 || fis.features == 0x72 || + fis.features == 0x62 || fis.features == 0x26))) && + !(reply->command & 1)) { + mtip_restart_port(dd->port); + } + + dbg_printk(MTIP_DRV_NAME + "%s: Completion: stat %x," + "err %x, sect_cnt %x, lbalo %x," + "lbamid %x, lbahi %x, dev %x\n", + __func__, + req_task->io_ports[7], + req_task->io_ports[1], + req_task->io_ports[2], + req_task->io_ports[3], + req_task->io_ports[4], + req_task->io_ports[5], + req_task->io_ports[6]); + + if (taskout) { + if (copy_to_user(buf + outtotal, outbuf, taskout)) { + err = -EFAULT; + goto abort; + } + } + if (taskin) { + if (copy_to_user(buf + intotal, inbuf, taskin)) { + err = -EFAULT; + goto abort; + } + } +abort: + if (inbuf_dma) + pci_unmap_single(dd->pdev, inbuf_dma, + taskin, DMA_FROM_DEVICE); + if (outbuf_dma) + pci_unmap_single(dd->pdev, outbuf_dma, + taskout, DMA_TO_DEVICE); + kfree(outbuf); + kfree(inbuf); + + return err; +} + +/* + * Handle IOCTL calls from the Block Layer. + * + * This function is called by the Block Layer when it receives an IOCTL + * command that it does not understand. If the IOCTL command is not supported + * this function returns -ENOTTY. + * + * @dd Pointer to the driver data structure. + * @cmd IOCTL command passed from the Block Layer. + * @arg IOCTL argument passed from the Block Layer. + * + * return value + * 0 The IOCTL completed successfully. + * -ENOTTY The specified command is not supported. + * -EFAULT An error occurred copying data to a user space buffer. + * -EIO An error occurred while executing the command. + */ +static int mtip_hw_ioctl(struct driver_data *dd, unsigned int cmd, + unsigned long arg) +{ + switch (cmd) { + case HDIO_GET_IDENTITY: + if (mtip_get_identify(dd->port, (void __user *) arg) < 0) { + dev_warn(&dd->pdev->dev, + "Unable to read identity\n"); + return -EIO; + } + + break; + case HDIO_DRIVE_CMD: + { + u8 drive_command[4]; + + /* Copy the user command info to our buffer. */ + if (copy_from_user(drive_command, + (void __user *) arg, + sizeof(drive_command))) + return -EFAULT; + + /* Execute the drive command. */ + if (exec_drive_command(dd->port, + drive_command, + (void __user *) (arg+4))) + return -EIO; + + /* Copy the status back to the users buffer. */ + if (copy_to_user((void __user *) arg, + drive_command, + sizeof(drive_command))) + return -EFAULT; + + break; + } + case HDIO_DRIVE_TASK: + { + u8 drive_command[7]; + + /* Copy the user command info to our buffer. */ + if (copy_from_user(drive_command, + (void __user *) arg, + sizeof(drive_command))) + return -EFAULT; + + /* Execute the drive command. */ + if (exec_drive_task(dd->port, drive_command)) + return -EIO; + + /* Copy the status back to the users buffer. */ + if (copy_to_user((void __user *) arg, + drive_command, + sizeof(drive_command))) + return -EFAULT; + + break; + } + case HDIO_DRIVE_TASKFILE: { + ide_task_request_t req_task; + int ret, outtotal; + + if (copy_from_user(&req_task, (void __user *) arg, + sizeof(req_task))) + return -EFAULT; + + outtotal = sizeof(req_task); + + ret = exec_drive_taskfile(dd, (void __user *) arg, + &req_task, outtotal); + + if (copy_to_user((void __user *) arg, &req_task, + sizeof(req_task))) + return -EFAULT; + + return ret; + } + + default: + return -EINVAL; + } + return 0; +} + +/* + * Submit an IO to the hw + * + * This function is called by the block layer to issue an io + * to the device. Upon completion, the callback function will + * be called with the data parameter passed as the callback data. + * + * @dd Pointer to the driver data structure. + * @start First sector to read. + * @nsect Number of sectors to read. + * @nents Number of entries in scatter list for the read command. + * @tag The tag of this read command. + * @callback Pointer to the function that should be called + * when the read completes. + * @data Callback data passed to the callback function + * when the read completes. + * @barrier If non-zero, this command must be completed before + * issuing any other commands. + * @dir Direction (read or write) + * + * return value + * None + */ +static void mtip_hw_submit_io(struct driver_data *dd, sector_t start, + int nsect, int nents, int tag, void *callback, + void *data, int barrier, int dir) +{ + struct host_to_dev_fis *fis; + struct mtip_port *port = dd->port; + struct mtip_cmd *command = &port->commands[tag]; + + /* Map the scatter list for DMA access */ + if (dir == READ) + nents = dma_map_sg(&dd->pdev->dev, command->sg, + nents, DMA_FROM_DEVICE); + else + nents = dma_map_sg(&dd->pdev->dev, command->sg, + nents, DMA_TO_DEVICE); + + command->scatter_ents = nents; + + /* + * The number of retries for this command before it is + * reported as a failure to the upper layers. + */ + command->retries = MTIP_MAX_RETRIES; + + /* Fill out fis */ + fis = command->command; + fis->type = 0x27; + fis->opts = 1 << 7; + fis->command = + (dir == READ ? ATA_CMD_FPDMA_READ : ATA_CMD_FPDMA_WRITE); + *((unsigned int *) &fis->lba_low) = (start & 0xFFFFFF); + *((unsigned int *) &fis->lba_low_ex) = ((start >> 24) & 0xFFFFFF); + fis->device = 1 << 6; + if (barrier) + fis->device |= FUA_BIT; + fis->features = nsect & 0xFF; + fis->features_ex = (nsect >> 8) & 0xFF; + fis->sect_count = ((tag << 3) | (tag >> 5)); + fis->sect_cnt_ex = 0; + fis->control = 0; + fis->res2 = 0; + fis->res3 = 0; + fill_command_sg(dd, command, nents); + + /* Populate the command header */ + command->command_header->opts = + __force_bit2int cpu_to_le32( + (nents << 16) | 5 | AHCI_CMD_PREFETCH); + command->command_header->byte_count = 0; + + /* + * Set the completion function and data for the command + * within this layer. + */ + command->comp_data = dd; + command->comp_func = mtip_async_complete; + command->direction = (dir == READ ? DMA_FROM_DEVICE : DMA_TO_DEVICE); + + /* + * Set the completion function and data for the command passed + * from the upper layer. + */ + command->async_data = data; + command->async_callback = callback; + + /* + * To prevent this command from being issued + * if an internal command is in progress or error handling is active. + */ + if (unlikely(test_bit(MTIP_FLAG_IC_ACTIVE_BIT, &port->flags) || + test_bit(MTIP_FLAG_EH_ACTIVE_BIT, &port->flags))) { + set_bit(tag, port->cmds_to_issue); + set_bit(MTIP_FLAG_ISSUE_CMDS_BIT, &port->flags); + return; + } + + /* Issue the command to the hardware */ + mtip_issue_ncq_command(port, tag); + + /* Set the command's timeout value.*/ + port->commands[tag].comp_time = jiffies + msecs_to_jiffies( + MTIP_NCQ_COMMAND_TIMEOUT_MS); +} + +/* + * Release a command slot. + * + * @dd Pointer to the driver data structure. + * @tag Slot tag + * + * return value + * None + */ +static void mtip_hw_release_scatterlist(struct driver_data *dd, int tag) +{ + release_slot(dd->port, tag); +} + +/* + * Obtain a command slot and return its associated scatter list. + * + * @dd Pointer to the driver data structure. + * @tag Pointer to an int that will receive the allocated command + * slot tag. + * + * return value + * Pointer to the scatter list for the allocated command slot + * or NULL if no command slots are available. + */ +static struct scatterlist *mtip_hw_get_scatterlist(struct driver_data *dd, + int *tag) +{ + /* + * It is possible that, even with this semaphore, a thread + * may think that no command slots are available. Therefore, we + * need to make an attempt to get_slot(). + */ + down(&dd->port->cmd_slot); + *tag = get_slot(dd->port); + + if (unlikely(*tag < 0)) + return NULL; + + return dd->port->commands[*tag].sg; +} + +/* + * Sysfs register/status dump. + * + * @dev Pointer to the device structure, passed by the kernrel. + * @attr Pointer to the device_attribute structure passed by the kernel. + * @buf Pointer to the char buffer that will receive the stats info. + * + * return value + * The size, in bytes, of the data copied into buf. + */ +static ssize_t hw_show_registers(struct device *dev, + struct device_attribute *attr, + char *buf) +{ + u32 group_allocated; + struct driver_data *dd = dev_to_disk(dev)->private_data; + int size = 0; + int n; + + size += sprintf(&buf[size], "%s:\ns_active:\n", __func__); + + for (n = 0; n < dd->slot_groups; n++) + size += sprintf(&buf[size], "0x%08x\n", + readl(dd->port->s_active[n])); + + size += sprintf(&buf[size], "Command Issue:\n"); + + for (n = 0; n < dd->slot_groups; n++) + size += sprintf(&buf[size], "0x%08x\n", + readl(dd->port->cmd_issue[n])); + + size += sprintf(&buf[size], "Allocated:\n"); + + for (n = 0; n < dd->slot_groups; n++) { + if (sizeof(long) > sizeof(u32)) + group_allocated = + dd->port->allocated[n/2] >> (32*(n&1)); + else + group_allocated = dd->port->allocated[n]; + size += sprintf(&buf[size], "0x%08x\n", + group_allocated); + } + + size += sprintf(&buf[size], "completed:\n"); + + for (n = 0; n < dd->slot_groups; n++) + size += sprintf(&buf[size], "0x%08x\n", + readl(dd->port->completed[n])); + + size += sprintf(&buf[size], "PORT_IRQ_STAT 0x%08x\n", + readl(dd->port->mmio + PORT_IRQ_STAT)); + size += sprintf(&buf[size], "HOST_IRQ_STAT 0x%08x\n", + readl(dd->mmio + HOST_IRQ_STAT)); + + return size; +} +static DEVICE_ATTR(registers, S_IRUGO, hw_show_registers, NULL); + +/* + * Create the sysfs related attributes. + * + * @dd Pointer to the driver data structure. + * @kobj Pointer to the kobj for the block device. + * + * return value + * 0 Operation completed successfully. + * -EINVAL Invalid parameter. + */ +static int mtip_hw_sysfs_init(struct driver_data *dd, struct kobject *kobj) +{ + if (!kobj || !dd) + return -EINVAL; + + if (sysfs_create_file(kobj, &dev_attr_registers.attr)) + dev_warn(&dd->pdev->dev, + "Error creating registers sysfs entry\n"); + return 0; +} + +/* + * Remove the sysfs related attributes. + * + * @dd Pointer to the driver data structure. + * @kobj Pointer to the kobj for the block device. + * + * return value + * 0 Operation completed successfully. + * -EINVAL Invalid parameter. + */ +static int mtip_hw_sysfs_exit(struct driver_data *dd, struct kobject *kobj) +{ + if (!kobj || !dd) + return -EINVAL; + + sysfs_remove_file(kobj, &dev_attr_registers.attr); + + return 0; +} + +/* + * Perform any init/resume time hardware setup + * + * @dd Pointer to the driver data structure. + * + * return value + * None + */ +static inline void hba_setup(struct driver_data *dd) +{ + u32 hwdata; + hwdata = readl(dd->mmio + HOST_HSORG); + + /* interrupt bug workaround: use only 1 IS bit.*/ + writel(hwdata | + HSORG_DISABLE_SLOTGRP_INTR | + HSORG_DISABLE_SLOTGRP_PXIS, + dd->mmio + HOST_HSORG); +} + +/* + * Detect the details of the product, and store anything needed + * into the driver data structure. This includes product type and + * version and number of slot groups. + * + * @dd Pointer to the driver data structure. + * + * return value + * None + */ +static void mtip_detect_product(struct driver_data *dd) +{ + u32 hwdata; + unsigned int rev, slotgroups; + + /* + * HBA base + 0xFC [15:0] - vendor-specific hardware interface + * info register: + * [15:8] hardware/software interface rev# + * [ 3] asic-style interface + * [ 2:0] number of slot groups, minus 1 (only valid for asic-style). + */ + hwdata = readl(dd->mmio + HOST_HSORG); + + dd->product_type = MTIP_PRODUCT_UNKNOWN; + dd->slot_groups = 1; + + if (hwdata & 0x8) { + dd->product_type = MTIP_PRODUCT_ASICFPGA; + rev = (hwdata & HSORG_HWREV) >> 8; + slotgroups = (hwdata & HSORG_SLOTGROUPS) + 1; + dev_info(&dd->pdev->dev, + "ASIC-FPGA design, HS rev 0x%x, " + "%i slot groups [%i slots]\n", + rev, + slotgroups, + slotgroups * 32); + + if (slotgroups > MTIP_MAX_SLOT_GROUPS) { + dev_warn(&dd->pdev->dev, + "Warning: driver only supports " + "%i slot groups.\n", MTIP_MAX_SLOT_GROUPS); + slotgroups = MTIP_MAX_SLOT_GROUPS; + } + dd->slot_groups = slotgroups; + return; + } + + dev_warn(&dd->pdev->dev, "Unrecognized product id\n"); +} + +/* + * Blocking wait for FTL rebuild to complete + * + * @dd Pointer to the DRIVER_DATA structure. + * + * return value + * 0 FTL rebuild completed successfully + * -EFAULT FTL rebuild error/timeout/interruption + */ +static int mtip_ftl_rebuild_poll(struct driver_data *dd) +{ + unsigned long timeout, cnt = 0, start; + + dev_warn(&dd->pdev->dev, + "FTL rebuild in progress. Polling for completion.\n"); + + start = jiffies; + dd->ftlrebuildflag = 1; + timeout = jiffies + msecs_to_jiffies(MTIP_FTL_REBUILD_TIMEOUT_MS); + + do { + if (mtip_check_surprise_removal(dd->pdev)) + return -EFAULT; + + if (mtip_get_identify(dd->port, NULL) < 0) + return -EFAULT; + + if (*(dd->port->identify + MTIP_FTL_REBUILD_OFFSET) == + MTIP_FTL_REBUILD_MAGIC) { + ssleep(1); + /* Print message every 3 minutes */ + if (cnt++ >= 180) { + dev_warn(&dd->pdev->dev, + "FTL rebuild in progress (%d secs).\n", + jiffies_to_msecs(jiffies - start) / 1000); + cnt = 0; + } + } else { + dev_warn(&dd->pdev->dev, + "FTL rebuild complete (%d secs).\n", + jiffies_to_msecs(jiffies - start) / 1000); + dd->ftlrebuildflag = 0; + mtip_block_initialize(dd); + break; + } + ssleep(10); + } while (time_before(jiffies, timeout)); + + /* Check for timeout */ + if (dd->ftlrebuildflag) { + dev_err(&dd->pdev->dev, + "Timed out waiting for FTL rebuild to complete (%d secs).\n", + jiffies_to_msecs(jiffies - start) / 1000); + return -EFAULT; + } + + return 0; +} + +/* + * service thread to issue queued commands + * + * @data Pointer to the driver data structure. + * + * return value + * 0 + */ + +static int mtip_service_thread(void *data) +{ + struct driver_data *dd = (struct driver_data *)data; + unsigned long slot, slot_start, slot_wrap; + unsigned int num_cmd_slots = dd->slot_groups * 32; + struct mtip_port *port = dd->port; + + while (1) { + /* + * the condition is to check neither an internal command is + * is in progress nor error handling is active + */ + wait_event_interruptible(port->svc_wait, (port->flags) && + !test_bit(MTIP_FLAG_IC_ACTIVE_BIT, &port->flags) && + !test_bit(MTIP_FLAG_EH_ACTIVE_BIT, &port->flags)); + + if (kthread_should_stop()) + break; + + set_bit(MTIP_FLAG_SVC_THD_ACTIVE_BIT, &port->flags); + if (test_bit(MTIP_FLAG_ISSUE_CMDS_BIT, &port->flags)) { + slot = 1; + /* used to restrict the loop to one iteration */ + slot_start = num_cmd_slots; + slot_wrap = 0; + while (1) { + slot = find_next_bit(port->cmds_to_issue, + num_cmd_slots, slot); + if (slot_wrap == 1) { + if ((slot_start >= slot) || + (slot >= num_cmd_slots)) + break; + } + if (unlikely(slot_start == num_cmd_slots)) + slot_start = slot; + + if (unlikely(slot == num_cmd_slots)) { + slot = 1; + slot_wrap = 1; + continue; + } + + /* Issue the command to the hardware */ + mtip_issue_ncq_command(port, slot); + + /* Set the command's timeout value.*/ + port->commands[slot].comp_time = jiffies + + msecs_to_jiffies(MTIP_NCQ_COMMAND_TIMEOUT_MS); + + clear_bit(slot, port->cmds_to_issue); + } + + clear_bit(MTIP_FLAG_ISSUE_CMDS_BIT, &port->flags); + } else if (test_bit(MTIP_FLAG_REBUILD_BIT, &port->flags)) { + mtip_ftl_rebuild_poll(dd); + clear_bit(MTIP_FLAG_REBUILD_BIT, &port->flags); + } + clear_bit(MTIP_FLAG_SVC_THD_ACTIVE_BIT, &port->flags); + + if (test_bit(MTIP_FLAG_SVC_THD_SHOULD_STOP_BIT, &port->flags)) + break; + } + return 0; +} + +/* + * Called once for each card. + * + * @dd Pointer to the driver data structure. + * + * return value + * 0 on success, else an error code. + */ +static int mtip_hw_init(struct driver_data *dd) +{ + int i; + int rv; + unsigned int num_command_slots; + + dd->mmio = pcim_iomap_table(dd->pdev)[MTIP_ABAR]; + + mtip_detect_product(dd); + if (dd->product_type == MTIP_PRODUCT_UNKNOWN) { + rv = -EIO; + goto out1; + } + num_command_slots = dd->slot_groups * 32; + + hba_setup(dd); + + tasklet_init(&dd->tasklet, mtip_tasklet, (unsigned long)dd); + + dd->port = kzalloc(sizeof(struct mtip_port), GFP_KERNEL); + if (!dd->port) { + dev_err(&dd->pdev->dev, + "Memory allocation: port structure\n"); + return -ENOMEM; + } + + /* Counting semaphore to track command slot usage */ + sema_init(&dd->port->cmd_slot, num_command_slots - 1); + + /* Spinlock to prevent concurrent issue */ + spin_lock_init(&dd->port->cmd_issue_lock); + + /* Set the port mmio base address. */ + dd->port->mmio = dd->mmio + PORT_OFFSET; + dd->port->dd = dd; + + /* Allocate memory for the command list. */ + dd->port->command_list = + dmam_alloc_coherent(&dd->pdev->dev, + HW_PORT_PRIV_DMA_SZ + (ATA_SECT_SIZE * 2), + &dd->port->command_list_dma, + GFP_KERNEL); + if (!dd->port->command_list) { + dev_err(&dd->pdev->dev, + "Memory allocation: command list\n"); + rv = -ENOMEM; + goto out1; + } + + /* Clear the memory we have allocated. */ + memset(dd->port->command_list, + 0, + HW_PORT_PRIV_DMA_SZ + (ATA_SECT_SIZE * 2)); + + /* Setup the addresse of the RX FIS. */ + dd->port->rxfis = dd->port->command_list + HW_CMD_SLOT_SZ; + dd->port->rxfis_dma = dd->port->command_list_dma + HW_CMD_SLOT_SZ; + + /* Setup the address of the command tables. */ + dd->port->command_table = dd->port->rxfis + AHCI_RX_FIS_SZ; + dd->port->command_tbl_dma = dd->port->rxfis_dma + AHCI_RX_FIS_SZ; + + /* Setup the address of the identify data. */ + dd->port->identify = dd->port->command_table + + HW_CMD_TBL_AR_SZ; + dd->port->identify_dma = dd->port->command_tbl_dma + + HW_CMD_TBL_AR_SZ; + + /* Setup the address of the sector buffer. */ + dd->port->sector_buffer = (void *) dd->port->identify + ATA_SECT_SIZE; + dd->port->sector_buffer_dma = dd->port->identify_dma + ATA_SECT_SIZE; + + /* Point the command headers at the command tables. */ + for (i = 0; i < num_command_slots; i++) { + dd->port->commands[i].command_header = + dd->port->command_list + + (sizeof(struct mtip_cmd_hdr) * i); + dd->port->commands[i].command_header_dma = + dd->port->command_list_dma + + (sizeof(struct mtip_cmd_hdr) * i); + + dd->port->commands[i].command = + dd->port->command_table + (HW_CMD_TBL_SZ * i); + dd->port->commands[i].command_dma = + dd->port->command_tbl_dma + (HW_CMD_TBL_SZ * i); + + if (readl(dd->mmio + HOST_CAP) & HOST_CAP_64) + dd->port->commands[i].command_header->ctbau = + __force_bit2int cpu_to_le32( + (dd->port->commands[i].command_dma >> 16) >> 16); + dd->port->commands[i].command_header->ctba = + __force_bit2int cpu_to_le32( + dd->port->commands[i].command_dma & 0xFFFFFFFF); + + /* + * If this is not done, a bug is reported by the stock + * FC11 i386. Due to the fact that it has lots of kernel + * debugging enabled. + */ + sg_init_table(dd->port->commands[i].sg, MTIP_MAX_SG); + + /* Mark all commands as currently inactive.*/ + atomic_set(&dd->port->commands[i].active, 0); + } + + /* Setup the pointers to the extended s_active and CI registers. */ + for (i = 0; i < dd->slot_groups; i++) { + dd->port->s_active[i] = + dd->port->mmio + i*0x80 + PORT_SCR_ACT; + dd->port->cmd_issue[i] = + dd->port->mmio + i*0x80 + PORT_COMMAND_ISSUE; + dd->port->completed[i] = + dd->port->mmio + i*0x80 + PORT_SDBV; + } + + /* Reset the HBA. */ + if (mtip_hba_reset(dd) < 0) { + dev_err(&dd->pdev->dev, + "Card did not reset within timeout\n"); + rv = -EIO; + goto out2; + } + + mtip_init_port(dd->port); + mtip_start_port(dd->port); + + /* Setup the ISR and enable interrupts. */ + rv = devm_request_irq(&dd->pdev->dev, + dd->pdev->irq, + mtip_irq_handler, + IRQF_SHARED, + dev_driver_string(&dd->pdev->dev), + dd); + + if (rv) { + dev_err(&dd->pdev->dev, + "Unable to allocate IRQ %d\n", dd->pdev->irq); + goto out2; + } + + /* Enable interrupts on the HBA. */ + writel(readl(dd->mmio + HOST_CTL) | HOST_IRQ_EN, + dd->mmio + HOST_CTL); + + init_timer(&dd->port->cmd_timer); + init_waitqueue_head(&dd->port->svc_wait); + + dd->port->cmd_timer.data = (unsigned long int) dd->port; + dd->port->cmd_timer.function = mtip_timeout_function; + mod_timer(&dd->port->cmd_timer, + jiffies + msecs_to_jiffies(MTIP_TIMEOUT_CHECK_PERIOD)); + + if (mtip_get_identify(dd->port, NULL) < 0) { + rv = -EFAULT; + goto out3; + } + + if (*(dd->port->identify + MTIP_FTL_REBUILD_OFFSET) == + MTIP_FTL_REBUILD_MAGIC) { + set_bit(MTIP_FLAG_REBUILD_BIT, &dd->port->flags); + return MTIP_FTL_REBUILD_MAGIC; + } + mtip_dump_identify(dd->port); + return rv; + +out3: + del_timer_sync(&dd->port->cmd_timer); + + /* Disable interrupts on the HBA. */ + writel(readl(dd->mmio + HOST_CTL) & ~HOST_IRQ_EN, + dd->mmio + HOST_CTL); + + /*Release the IRQ. */ + devm_free_irq(&dd->pdev->dev, dd->pdev->irq, dd); + +out2: + mtip_deinit_port(dd->port); + + /* Free the command/command header memory. */ + dmam_free_coherent(&dd->pdev->dev, + HW_PORT_PRIV_DMA_SZ + (ATA_SECT_SIZE * 2), + dd->port->command_list, + dd->port->command_list_dma); +out1: + /* Free the memory allocated for the for structure. */ + kfree(dd->port); + + return rv; +} + +/* + * Called to deinitialize an interface. + * + * @dd Pointer to the driver data structure. + * + * return value + * 0 + */ +static int mtip_hw_exit(struct driver_data *dd) +{ + /* + * Send standby immediate (E0h) to the drive so that it + * saves its state. + */ + if (atomic_read(&dd->drv_cleanup_done) != true) { + + mtip_standby_immediate(dd->port); + + /* de-initialize the port. */ + mtip_deinit_port(dd->port); + + /* Disable interrupts on the HBA. */ + writel(readl(dd->mmio + HOST_CTL) & ~HOST_IRQ_EN, + dd->mmio + HOST_CTL); + } + + del_timer_sync(&dd->port->cmd_timer); + + /* Release the IRQ. */ + devm_free_irq(&dd->pdev->dev, dd->pdev->irq, dd); + + /* Stop the bottom half tasklet. */ + tasklet_kill(&dd->tasklet); + + /* Free the command/command header memory. */ + dmam_free_coherent(&dd->pdev->dev, + HW_PORT_PRIV_DMA_SZ + (ATA_SECT_SIZE * 2), + dd->port->command_list, + dd->port->command_list_dma); + /* Free the memory allocated for the for structure. */ + kfree(dd->port); + + return 0; +} + +/* + * Issue a Standby Immediate command to the device. + * + * This function is called by the Block Layer just before the + * system powers off during a shutdown. + * + * @dd Pointer to the driver data structure. + * + * return value + * 0 + */ +static int mtip_hw_shutdown(struct driver_data *dd) +{ + /* + * Send standby immediate (E0h) to the drive so that it + * saves its state. + */ + mtip_standby_immediate(dd->port); + + return 0; +} + +/* + * Suspend function + * + * This function is called by the Block Layer just before the + * system hibernates. + * + * @dd Pointer to the driver data structure. + * + * return value + * 0 Suspend was successful + * -EFAULT Suspend was not successful + */ +static int mtip_hw_suspend(struct driver_data *dd) +{ + /* + * Send standby immediate (E0h) to the drive + * so that it saves its state. + */ + if (mtip_standby_immediate(dd->port) != 0) { + dev_err(&dd->pdev->dev, + "Failed standby-immediate command\n"); + return -EFAULT; + } + + /* Disable interrupts on the HBA.*/ + writel(readl(dd->mmio + HOST_CTL) & ~HOST_IRQ_EN, + dd->mmio + HOST_CTL); + mtip_deinit_port(dd->port); + + return 0; +} + +/* + * Resume function + * + * This function is called by the Block Layer as the + * system resumes. + * + * @dd Pointer to the driver data structure. + * + * return value + * 0 Resume was successful + * -EFAULT Resume was not successful + */ +static int mtip_hw_resume(struct driver_data *dd) +{ + /* Perform any needed hardware setup steps */ + hba_setup(dd); + + /* Reset the HBA */ + if (mtip_hba_reset(dd) != 0) { + dev_err(&dd->pdev->dev, + "Unable to reset the HBA\n"); + return -EFAULT; + } + + /* + * Enable the port, DMA engine, and FIS reception specific + * h/w in controller. + */ + mtip_init_port(dd->port); + mtip_start_port(dd->port); + + /* Enable interrupts on the HBA.*/ + writel(readl(dd->mmio + HOST_CTL) | HOST_IRQ_EN, + dd->mmio + HOST_CTL); + + return 0; +} + +/* + * Helper function for reusing disk name + * upon hot insertion. + */ +static int rssd_disk_name_format(char *prefix, + int index, + char *buf, + int buflen) +{ + const int base = 'z' - 'a' + 1; + char *begin = buf + strlen(prefix); + char *end = buf + buflen; + char *p; + int unit; + + p = end - 1; + *p = '\0'; + unit = base; + do { + if (p == begin) + return -EINVAL; + *--p = 'a' + (index % unit); + index = (index / unit) - 1; + } while (index >= 0); + + memmove(begin, p, end - p); + memcpy(buf, prefix, strlen(prefix)); + + return 0; +} + +/* + * Block layer IOCTL handler. + * + * @dev Pointer to the block_device structure. + * @mode ignored + * @cmd IOCTL command passed from the user application. + * @arg Argument passed from the user application. + * + * return value + * 0 IOCTL completed successfully. + * -ENOTTY IOCTL not supported or invalid driver data + * structure pointer. + */ +static int mtip_block_ioctl(struct block_device *dev, + fmode_t mode, + unsigned cmd, + unsigned long arg) +{ + struct driver_data *dd = dev->bd_disk->private_data; + + if (!capable(CAP_SYS_ADMIN)) + return -EACCES; + + if (!dd) + return -ENOTTY; + + switch (cmd) { + case BLKFLSBUF: + return -ENOTTY; + default: + return mtip_hw_ioctl(dd, cmd, arg); + } +} + +#ifdef CONFIG_COMPAT +/* + * Block layer compat IOCTL handler. + * + * @dev Pointer to the block_device structure. + * @mode ignored + * @cmd IOCTL command passed from the user application. + * @arg Argument passed from the user application. + * + * return value + * 0 IOCTL completed successfully. + * -ENOTTY IOCTL not supported or invalid driver data + * structure pointer. + */ +static int mtip_block_compat_ioctl(struct block_device *dev, + fmode_t mode, + unsigned cmd, + unsigned long arg) +{ + struct driver_data *dd = dev->bd_disk->private_data; + + if (!capable(CAP_SYS_ADMIN)) + return -EACCES; + + if (!dd) + return -ENOTTY; + + switch (cmd) { + case BLKFLSBUF: + return -ENOTTY; + case HDIO_DRIVE_TASKFILE: { + struct mtip_compat_ide_task_request_s __user *compat_req_task; + ide_task_request_t req_task; + int compat_tasksize, outtotal, ret; + + compat_tasksize = + sizeof(struct mtip_compat_ide_task_request_s); + + compat_req_task = + (struct mtip_compat_ide_task_request_s __user *) arg; + + if (copy_from_user(&req_task, (void __user *) arg, + compat_tasksize - (2 * sizeof(compat_long_t)))) + return -EFAULT; + + if (get_user(req_task.out_size, &compat_req_task->out_size)) + return -EFAULT; + + if (get_user(req_task.in_size, &compat_req_task->in_size)) + return -EFAULT; + + outtotal = sizeof(struct mtip_compat_ide_task_request_s); + + ret = exec_drive_taskfile(dd, (void __user *) arg, + &req_task, outtotal); + + if (copy_to_user((void __user *) arg, &req_task, + compat_tasksize - + (2 * sizeof(compat_long_t)))) + return -EFAULT; + + if (put_user(req_task.out_size, &compat_req_task->out_size)) + return -EFAULT; + + if (put_user(req_task.in_size, &compat_req_task->in_size)) + return -EFAULT; + + return ret; + } + default: + return mtip_hw_ioctl(dd, cmd, arg); + } +} +#endif + +/* + * Obtain the geometry of the device. + * + * You may think that this function is obsolete, but some applications, + * fdisk for example still used CHS values. This function describes the + * device as having 224 heads and 56 sectors per cylinder. These values are + * chosen so that each cylinder is aligned on a 4KB boundary. Since a + * partition is described in terms of a start and end cylinder this means + * that each partition is also 4KB aligned. Non-aligned partitions adversely + * affects performance. + * + * @dev Pointer to the block_device strucutre. + * @geo Pointer to a hd_geometry structure. + * + * return value + * 0 Operation completed successfully. + * -ENOTTY An error occurred while reading the drive capacity. + */ +static int mtip_block_getgeo(struct block_device *dev, + struct hd_geometry *geo) +{ + struct driver_data *dd = dev->bd_disk->private_data; + sector_t capacity; + + if (!dd) + return -ENOTTY; + + if (!(mtip_hw_get_capacity(dd, &capacity))) { + dev_warn(&dd->pdev->dev, + "Could not get drive capacity.\n"); + return -ENOTTY; + } + + geo->heads = 224; + geo->sectors = 56; + sector_div(capacity, (geo->heads * geo->sectors)); + geo->cylinders = capacity; + return 0; +} + +/* + * Block device operation function. + * + * This structure contains pointers to the functions required by the block + * layer. + */ +static const struct block_device_operations mtip_block_ops = { + .ioctl = mtip_block_ioctl, +#ifdef CONFIG_COMPAT + .compat_ioctl = mtip_block_compat_ioctl, +#endif + .getgeo = mtip_block_getgeo, + .owner = THIS_MODULE +}; + +/* + * Block layer make request function. + * + * This function is called by the kernel to process a BIO for + * the P320 device. + * + * @queue Pointer to the request queue. Unused other than to obtain + * the driver data structure. + * @bio Pointer to the BIO. + * + */ +static void mtip_make_request(struct request_queue *queue, struct bio *bio) +{ + struct driver_data *dd = queue->queuedata; + struct scatterlist *sg; + struct bio_vec *bvec; + int nents = 0; + int tag = 0; + + if (unlikely(!bio_has_data(bio))) { + blk_queue_flush(queue, 0); + bio_endio(bio, 0); + return; + } + + sg = mtip_hw_get_scatterlist(dd, &tag); + if (likely(sg != NULL)) { + blk_queue_bounce(queue, &bio); + + if (unlikely((bio)->bi_vcnt > MTIP_MAX_SG)) { + dev_warn(&dd->pdev->dev, + "Maximum number of SGL entries exceeded"); + bio_io_error(bio); + mtip_hw_release_scatterlist(dd, tag); + return; + } + + /* Create the scatter list for this bio. */ + bio_for_each_segment(bvec, bio, nents) { + sg_set_page(&sg[nents], + bvec->bv_page, + bvec->bv_len, + bvec->bv_offset); + } + + /* Issue the read/write. */ + mtip_hw_submit_io(dd, + bio->bi_sector, + bio_sectors(bio), + nents, + tag, + bio_endio, + bio, + bio->bi_rw & REQ_FUA, + bio_data_dir(bio)); + } else + bio_io_error(bio); +} + +/* + * Block layer initialization function. + * + * This function is called once by the PCI layer for each P320 + * device that is connected to the system. + * + * @dd Pointer to the driver data structure. + * + * return value + * 0 on success else an error code. + */ +static int mtip_block_initialize(struct driver_data *dd) +{ + int rv = 0, wait_for_rebuild = 0; + sector_t capacity; + unsigned int index = 0; + struct kobject *kobj; + unsigned char thd_name[16]; + + if (dd->disk) + goto skip_create_disk; /* hw init done, before rebuild */ + + /* Initialize the protocol layer. */ + wait_for_rebuild = mtip_hw_init(dd); + if (wait_for_rebuild < 0) { + dev_err(&dd->pdev->dev, + "Protocol layer initialization failed\n"); + rv = -EINVAL; + goto protocol_init_error; + } + + dd->disk = alloc_disk(MTIP_MAX_MINORS); + if (dd->disk == NULL) { + dev_err(&dd->pdev->dev, + "Unable to allocate gendisk structure\n"); + rv = -EINVAL; + goto alloc_disk_error; + } + + /* Generate the disk name, implemented same as in sd.c */ + do { + if (!ida_pre_get(&rssd_index_ida, GFP_KERNEL)) + goto ida_get_error; + + spin_lock(&rssd_index_lock); + rv = ida_get_new(&rssd_index_ida, &index); + spin_unlock(&rssd_index_lock); + } while (rv == -EAGAIN); + + if (rv) + goto ida_get_error; + + rv = rssd_disk_name_format("rssd", + index, + dd->disk->disk_name, + DISK_NAME_LEN); + if (rv) + goto disk_index_error; + + dd->disk->driverfs_dev = &dd->pdev->dev; + dd->disk->major = dd->major; + dd->disk->first_minor = dd->instance * MTIP_MAX_MINORS; + dd->disk->fops = &mtip_block_ops; + dd->disk->private_data = dd; + dd->index = index; + + /* + * if rebuild pending, start the service thread, and delay the block + * queue creation and add_disk() + */ + if (wait_for_rebuild == MTIP_FTL_REBUILD_MAGIC) + goto start_service_thread; + +skip_create_disk: + /* Allocate the request queue. */ + dd->queue = blk_alloc_queue(GFP_KERNEL); + if (dd->queue == NULL) { + dev_err(&dd->pdev->dev, + "Unable to allocate request queue\n"); + rv = -ENOMEM; + goto block_queue_alloc_init_error; + } + + /* Attach our request function to the request queue. */ + blk_queue_make_request(dd->queue, mtip_make_request); + + dd->disk->queue = dd->queue; + dd->queue->queuedata = dd; + + /* Set device limits. */ + set_bit(QUEUE_FLAG_NONROT, &dd->queue->queue_flags); + blk_queue_max_segments(dd->queue, MTIP_MAX_SG); + blk_queue_physical_block_size(dd->queue, 4096); + blk_queue_io_min(dd->queue, 4096); + blk_queue_flush(dd->queue, 0); + + /* Set the capacity of the device in 512 byte sectors. */ + if (!(mtip_hw_get_capacity(dd, &capacity))) { + dev_warn(&dd->pdev->dev, + "Could not read drive capacity\n"); + rv = -EIO; + goto read_capacity_error; + } + set_capacity(dd->disk, capacity); + + /* Enable the block device and add it to /dev */ + add_disk(dd->disk); + + /* + * Now that the disk is active, initialize any sysfs attributes + * managed by the protocol layer. + */ + kobj = kobject_get(&disk_to_dev(dd->disk)->kobj); + if (kobj) { + mtip_hw_sysfs_init(dd, kobj); + kobject_put(kobj); + } + + if (dd->mtip_svc_handler) + return rv; /* service thread created for handling rebuild */ + +start_service_thread: + sprintf(thd_name, "mtip_svc_thd_%02d", index); + + dd->mtip_svc_handler = kthread_run(mtip_service_thread, + dd, thd_name); + + if (IS_ERR(dd->mtip_svc_handler)) { + printk(KERN_ERR "mtip32xx: service thread failed to start\n"); + dd->mtip_svc_handler = NULL; + rv = -EFAULT; + goto kthread_run_error; + } + + return rv; + +kthread_run_error: + /* Delete our gendisk. This also removes the device from /dev */ + del_gendisk(dd->disk); + +read_capacity_error: + blk_cleanup_queue(dd->queue); + +block_queue_alloc_init_error: +disk_index_error: + spin_lock(&rssd_index_lock); + ida_remove(&rssd_index_ida, index); + spin_unlock(&rssd_index_lock); + +ida_get_error: + put_disk(dd->disk); + +alloc_disk_error: + mtip_hw_exit(dd); /* De-initialize the protocol layer. */ + +protocol_init_error: + return rv; +} + +/* + * Block layer deinitialization function. + * + * Called by the PCI layer as each P320 device is removed. + * + * @dd Pointer to the driver data structure. + * + * return value + * 0 + */ +static int mtip_block_remove(struct driver_data *dd) +{ + struct kobject *kobj; + + if (dd->mtip_svc_handler) { + set_bit(MTIP_FLAG_SVC_THD_SHOULD_STOP_BIT, &dd->port->flags); + wake_up_interruptible(&dd->port->svc_wait); + kthread_stop(dd->mtip_svc_handler); + } + + /* Clean up the sysfs attributes managed by the protocol layer. */ + kobj = kobject_get(&disk_to_dev(dd->disk)->kobj); + if (kobj) { + mtip_hw_sysfs_exit(dd, kobj); + kobject_put(kobj); + } + + /* + * Delete our gendisk structure. This also removes the device + * from /dev + */ + del_gendisk(dd->disk); + blk_cleanup_queue(dd->queue); + dd->disk = NULL; + dd->queue = NULL; + + /* De-initialize the protocol layer. */ + mtip_hw_exit(dd); + + return 0; +} + +/* + * Function called by the PCI layer when just before the + * machine shuts down. + * + * If a protocol layer shutdown function is present it will be called + * by this function. + * + * @dd Pointer to the driver data structure. + * + * return value + * 0 + */ +static int mtip_block_shutdown(struct driver_data *dd) +{ + dev_info(&dd->pdev->dev, + "Shutting down %s ...\n", dd->disk->disk_name); + + /* Delete our gendisk structure, and cleanup the blk queue. */ + del_gendisk(dd->disk); + blk_cleanup_queue(dd->queue); + dd->disk = NULL; + dd->queue = NULL; + + mtip_hw_shutdown(dd); + return 0; +} + +static int mtip_block_suspend(struct driver_data *dd) +{ + dev_info(&dd->pdev->dev, + "Suspending %s ...\n", dd->disk->disk_name); + mtip_hw_suspend(dd); + return 0; +} + +static int mtip_block_resume(struct driver_data *dd) +{ + dev_info(&dd->pdev->dev, "Resuming %s ...\n", + dd->disk->disk_name); + mtip_hw_resume(dd); + return 0; +} + +/* + * Called for each supported PCI device detected. + * + * This function allocates the private data structure, enables the + * PCI device and then calls the block layer initialization function. + * + * return value + * 0 on success else an error code. + */ +static int mtip_pci_probe(struct pci_dev *pdev, + const struct pci_device_id *ent) +{ + int rv = 0; + struct driver_data *dd = NULL; + + /* Allocate memory for this devices private data. */ + dd = kzalloc(sizeof(struct driver_data), GFP_KERNEL); + if (dd == NULL) { + dev_err(&pdev->dev, + "Unable to allocate memory for driver data\n"); + return -ENOMEM; + } + + /* Set the atomic variable as 1 in case of SRSI */ + atomic_set(&dd->drv_cleanup_done, true); + + atomic_set(&dd->resumeflag, false); + + /* Attach the private data to this PCI device. */ + pci_set_drvdata(pdev, dd); + + rv = pcim_enable_device(pdev); + if (rv < 0) { + dev_err(&pdev->dev, "Unable to enable device\n"); + goto iomap_err; + } + + /* Map BAR5 to memory. */ + rv = pcim_iomap_regions(pdev, 1 << MTIP_ABAR, MTIP_DRV_NAME); + if (rv < 0) { + dev_err(&pdev->dev, "Unable to map regions\n"); + goto iomap_err; + } + + if (!pci_set_dma_mask(pdev, DMA_BIT_MASK(64))) { + rv = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)); + + if (rv) { + rv = pci_set_consistent_dma_mask(pdev, + DMA_BIT_MASK(32)); + if (rv) { + dev_warn(&pdev->dev, + "64-bit DMA enable failed\n"); + goto setmask_err; + } + } + } + + pci_set_master(pdev); + + if (pci_enable_msi(pdev)) { + dev_warn(&pdev->dev, + "Unable to enable MSI interrupt.\n"); + goto block_initialize_err; + } + + /* Copy the info we may need later into the private data structure. */ + dd->major = mtip_major; + dd->instance = instance; + dd->pdev = pdev; + + /* Initialize the block layer. */ + rv = mtip_block_initialize(dd); + if (rv < 0) { + dev_err(&pdev->dev, + "Unable to initialize block layer\n"); + goto block_initialize_err; + } + + /* + * Increment the instance count so that each device has a unique + * instance number. + */ + instance++; + + goto done; + +block_initialize_err: + pci_disable_msi(pdev); + +setmask_err: + pcim_iounmap_regions(pdev, 1 << MTIP_ABAR); + +iomap_err: + kfree(dd); + pci_set_drvdata(pdev, NULL); + return rv; +done: + /* Set the atomic variable as 0 in case of SRSI */ + atomic_set(&dd->drv_cleanup_done, true); + + return rv; +} + +/* + * Called for each probed device when the device is removed or the + * driver is unloaded. + * + * return value + * None + */ +static void mtip_pci_remove(struct pci_dev *pdev) +{ + struct driver_data *dd = pci_get_drvdata(pdev); + int counter = 0; + + if (mtip_check_surprise_removal(pdev)) { + while (atomic_read(&dd->drv_cleanup_done) == false) { + counter++; + msleep(20); + if (counter == 10) { + /* Cleanup the outstanding commands */ + mtip_command_cleanup(dd); + break; + } + } + } + /* Set the atomic variable as 1 in case of SRSI */ + atomic_set(&dd->drv_cleanup_done, true); + + /* Clean up the block layer. */ + mtip_block_remove(dd); + + pci_disable_msi(pdev); + + kfree(dd); + pcim_iounmap_regions(pdev, 1 << MTIP_ABAR); +} + +/* + * Called for each probed device when the device is suspended. + * + * return value + * 0 Success + * <0 Error + */ +static int mtip_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) +{ + int rv = 0; + struct driver_data *dd = pci_get_drvdata(pdev); + + if (!dd) { + dev_err(&pdev->dev, + "Driver private datastructure is NULL\n"); + return -EFAULT; + } + + atomic_set(&dd->resumeflag, true); + + /* Disable ports & interrupts then send standby immediate */ + rv = mtip_block_suspend(dd); + if (rv < 0) { + dev_err(&pdev->dev, + "Failed to suspend controller\n"); + return rv; + } + + /* + * Save the pci config space to pdev structure & + * disable the device + */ + pci_save_state(pdev); + pci_disable_device(pdev); + + /* Move to Low power state*/ + pci_set_power_state(pdev, PCI_D3hot); + + return rv; +} + +/* + * Called for each probed device when the device is resumed. + * + * return value + * 0 Success + * <0 Error + */ +static int mtip_pci_resume(struct pci_dev *pdev) +{ + int rv = 0; + struct driver_data *dd; + + dd = pci_get_drvdata(pdev); + if (!dd) { + dev_err(&pdev->dev, + "Driver private datastructure is NULL\n"); + return -EFAULT; + } + + /* Move the device to active State */ + pci_set_power_state(pdev, PCI_D0); + + /* Restore PCI configuration space */ + pci_restore_state(pdev); + + /* Enable the PCI device*/ + rv = pcim_enable_device(pdev); + if (rv < 0) { + dev_err(&pdev->dev, + "Failed to enable card during resume\n"); + goto err; + } + pci_set_master(pdev); + + /* + * Calls hbaReset, initPort, & startPort function + * then enables interrupts + */ + rv = mtip_block_resume(dd); + if (rv < 0) + dev_err(&pdev->dev, "Unable to resume\n"); + +err: + atomic_set(&dd->resumeflag, false); + + return rv; +} + +/* + * Shutdown routine + * + * return value + * None + */ +static void mtip_pci_shutdown(struct pci_dev *pdev) +{ + struct driver_data *dd = pci_get_drvdata(pdev); + if (dd) + mtip_block_shutdown(dd); +} + +/* Table of device ids supported by this driver. */ +static DEFINE_PCI_DEVICE_TABLE(mtip_pci_tbl) = { + { PCI_DEVICE(PCI_VENDOR_ID_MICRON, P320_DEVICE_ID) }, + { 0 } +}; + +/* Structure that describes the PCI driver functions. */ +static struct pci_driver mtip_pci_driver = { + .name = MTIP_DRV_NAME, + .id_table = mtip_pci_tbl, + .probe = mtip_pci_probe, + .remove = mtip_pci_remove, + .suspend = mtip_pci_suspend, + .resume = mtip_pci_resume, + .shutdown = mtip_pci_shutdown, +}; + +MODULE_DEVICE_TABLE(pci, mtip_pci_tbl); + +/* + * Module initialization function. + * + * Called once when the module is loaded. This function allocates a major + * block device number to the Cyclone devices and registers the PCI layer + * of the driver. + * + * Return value + * 0 on success else error code. + */ +static int __init mtip_init(void) +{ + printk(KERN_INFO MTIP_DRV_NAME " Version " MTIP_DRV_VERSION "\n"); + + /* Allocate a major block device number to use with this driver. */ + mtip_major = register_blkdev(0, MTIP_DRV_NAME); + if (mtip_major < 0) { + printk(KERN_ERR "Unable to register block device (%d)\n", + mtip_major); + return -EBUSY; + } + + /* Register our PCI operations. */ + return pci_register_driver(&mtip_pci_driver); +} + +/* + * Module de-initialization function. + * + * Called once when the module is unloaded. This function deallocates + * the major block device number allocated by mtip_init() and + * unregisters the PCI layer of the driver. + * + * Return value + * none + */ +static void __exit mtip_exit(void) +{ + /* Release the allocated major block device number. */ + unregister_blkdev(mtip_major, MTIP_DRV_NAME); + + /* Unregister the PCI driver. */ + pci_unregister_driver(&mtip_pci_driver); +} + +MODULE_AUTHOR("Micron Technology, Inc"); +MODULE_DESCRIPTION("Micron RealSSD PCIe Block Driver"); +MODULE_LICENSE("GPL"); +MODULE_VERSION(MTIP_DRV_VERSION); + +module_init(mtip_init); +module_exit(mtip_exit); --- linux-3.2.0.orig/drivers/block/mtip32xx/mtip32xx.h +++ linux-3.2.0/drivers/block/mtip32xx/mtip32xx.h @@ -0,0 +1,423 @@ +/* + * mtip32xx.h - Header file for the P320 SSD Block Driver + * Copyright (C) 2011 Micron Technology, Inc. + * + * Portions of this code were derived from works subjected to the + * following copyright: + * Copyright (C) 2009 Integrated Device Technology, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + */ + +#ifndef __MTIP32XX_H__ +#define __MTIP32XX_H__ + +#include +#include +#include +#include +#include +#include + +/* Offset of Subsystem Device ID in pci confoguration space */ +#define PCI_SUBSYSTEM_DEVICEID 0x2E + +/* offset of Device Control register in PCIe extended capabilites space */ +#define PCIE_CONFIG_EXT_DEVICE_CONTROL_OFFSET 0x48 + +/* # of times to retry timed out IOs */ +#define MTIP_MAX_RETRIES 5 + +/* Various timeout values in ms */ +#define MTIP_NCQ_COMMAND_TIMEOUT_MS 5000 +#define MTIP_IOCTL_COMMAND_TIMEOUT_MS 5000 +#define MTIP_INTERNAL_COMMAND_TIMEOUT_MS 5000 + +/* check for timeouts every 500ms */ +#define MTIP_TIMEOUT_CHECK_PERIOD 500 + +/* ftl rebuild */ +#define MTIP_FTL_REBUILD_OFFSET 142 +#define MTIP_FTL_REBUILD_MAGIC 0xED51 +#define MTIP_FTL_REBUILD_TIMEOUT_MS 2400000 + +/* Macro to extract the tag bit number from a tag value. */ +#define MTIP_TAG_BIT(tag) (tag & 0x1F) + +/* + * Macro to extract the tag index from a tag value. The index + * is used to access the correct s_active/Command Issue register based + * on the tag value. + */ +#define MTIP_TAG_INDEX(tag) (tag >> 5) + +/* + * Maximum number of scatter gather entries + * a single command may have. + */ +#define MTIP_MAX_SG 128 + +/* + * Maximum number of slot groups (Command Issue & s_active registers) + * NOTE: This is the driver maximum; check dd->slot_groups for actual value. + */ +#define MTIP_MAX_SLOT_GROUPS 8 + +/* Internal command tag. */ +#define MTIP_TAG_INTERNAL 0 + +/* Micron Vendor ID & P320x SSD Device ID */ +#define PCI_VENDOR_ID_MICRON 0x1344 +#define P320_DEVICE_ID 0x5150 + +/* Driver name and version strings */ +#define MTIP_DRV_NAME "mtip32xx" +#define MTIP_DRV_VERSION "1.2.6os3" + +/* Maximum number of minor device numbers per device. */ +#define MTIP_MAX_MINORS 16 + +/* Maximum number of supported command slots. */ +#define MTIP_MAX_COMMAND_SLOTS (MTIP_MAX_SLOT_GROUPS * 32) + +/* + * Per-tag bitfield size in longs. + * Linux bit manipulation functions + * (i.e. test_and_set_bit, find_next_zero_bit) + * manipulate memory in longs, so we try to make the math work. + * take the slot groups and find the number of longs, rounding up. + * Careful! i386 and x86_64 use different size longs! + */ +#define U32_PER_LONG (sizeof(long) / sizeof(u32)) +#define SLOTBITS_IN_LONGS ((MTIP_MAX_SLOT_GROUPS + \ + (U32_PER_LONG-1))/U32_PER_LONG) + +/* BAR number used to access the HBA registers. */ +#define MTIP_ABAR 5 + +/* Forced Unit Access Bit */ +#define FUA_BIT 0x80 + +#ifdef DEBUG + #define dbg_printk(format, arg...) \ + printk(pr_fmt(format), ##arg); +#else + #define dbg_printk(format, arg...) +#endif + +#define __force_bit2int (unsigned int __force) + +/* below are bit numbers in 'flags' defined in mtip_port */ +#define MTIP_FLAG_IC_ACTIVE_BIT 0 +#define MTIP_FLAG_EH_ACTIVE_BIT 1 +#define MTIP_FLAG_SVC_THD_ACTIVE_BIT 2 +#define MTIP_FLAG_ISSUE_CMDS_BIT 4 +#define MTIP_FLAG_REBUILD_BIT 5 +#define MTIP_FLAG_SVC_THD_SHOULD_STOP_BIT 8 + +/* Register Frame Information Structure (FIS), host to device. */ +struct host_to_dev_fis { + /* + * FIS type. + * - 27h Register FIS, host to device. + * - 34h Register FIS, device to host. + * - 39h DMA Activate FIS, device to host. + * - 41h DMA Setup FIS, bi-directional. + * - 46h Data FIS, bi-directional. + * - 58h BIST Activate FIS, bi-directional. + * - 5Fh PIO Setup FIS, device to host. + * - A1h Set Device Bits FIS, device to host. + */ + unsigned char type; + unsigned char opts; + unsigned char command; + unsigned char features; + + union { + unsigned char lba_low; + unsigned char sector; + }; + union { + unsigned char lba_mid; + unsigned char cyl_low; + }; + union { + unsigned char lba_hi; + unsigned char cyl_hi; + }; + union { + unsigned char device; + unsigned char head; + }; + + union { + unsigned char lba_low_ex; + unsigned char sector_ex; + }; + union { + unsigned char lba_mid_ex; + unsigned char cyl_low_ex; + }; + union { + unsigned char lba_hi_ex; + unsigned char cyl_hi_ex; + }; + unsigned char features_ex; + + unsigned char sect_count; + unsigned char sect_cnt_ex; + unsigned char res2; + unsigned char control; + + unsigned int res3; +}; + +/* Command header structure. */ +struct mtip_cmd_hdr { + /* + * Command options. + * - Bits 31:16 Number of PRD entries. + * - Bits 15:8 Unused in this implementation. + * - Bit 7 Prefetch bit, informs the drive to prefetch PRD entries. + * - Bit 6 Write bit, should be set when writing data to the device. + * - Bit 5 Unused in this implementation. + * - Bits 4:0 Length of the command FIS in DWords (DWord = 4 bytes). + */ + unsigned int opts; + /* This field is unsed when using NCQ. */ + union { + unsigned int byte_count; + unsigned int status; + }; + /* + * Lower 32 bits of the command table address associated with this + * header. The command table addresses must be 128 byte aligned. + */ + unsigned int ctba; + /* + * If 64 bit addressing is used this field is the upper 32 bits + * of the command table address associated with this command. + */ + unsigned int ctbau; + /* Reserved and unused. */ + unsigned int res[4]; +}; + +/* Command scatter gather structure (PRD). */ +struct mtip_cmd_sg { + /* + * Low 32 bits of the data buffer address. For P320 this + * address must be 8 byte aligned signified by bits 2:0 being + * set to 0. + */ + unsigned int dba; + /* + * When 64 bit addressing is used this field is the upper + * 32 bits of the data buffer address. + */ + unsigned int dba_upper; + /* Unused. */ + unsigned int reserved; + /* + * Bit 31: interrupt when this data block has been transferred. + * Bits 30..22: reserved + * Bits 21..0: byte count (minus 1). For P320 the byte count must be + * 8 byte aligned signified by bits 2:0 being set to 1. + */ + unsigned int info; +}; +struct mtip_port; + +/* Structure used to describe a command. */ +struct mtip_cmd { + + struct mtip_cmd_hdr *command_header; /* ptr to command header entry */ + + dma_addr_t command_header_dma; /* corresponding physical address */ + + void *command; /* ptr to command table entry */ + + dma_addr_t command_dma; /* corresponding physical address */ + + void *comp_data; /* data passed to completion function comp_func() */ + /* + * Completion function called by the ISR upon completion of + * a command. + */ + void (*comp_func)(struct mtip_port *port, + int tag, + void *data, + int status); + /* Additional callback function that may be called by comp_func() */ + void (*async_callback)(void *data, int status); + + void *async_data; /* Addl. data passed to async_callback() */ + + int scatter_ents; /* Number of scatter list entries used */ + + struct scatterlist sg[MTIP_MAX_SG]; /* Scatter list entries */ + + int retries; /* The number of retries left for this command. */ + + int direction; /* Data transfer direction */ + + unsigned long comp_time; /* command completion time, in jiffies */ + + atomic_t active; /* declares if this command sent to the drive. */ +}; + +/* Structure used to describe a port. */ +struct mtip_port { + /* Pointer back to the driver data for this port. */ + struct driver_data *dd; + /* + * Used to determine if the data pointed to by the + * identify field is valid. + */ + unsigned long identify_valid; + /* Base address of the memory mapped IO for the port. */ + void __iomem *mmio; + /* Array of pointers to the memory mapped s_active registers. */ + void __iomem *s_active[MTIP_MAX_SLOT_GROUPS]; + /* Array of pointers to the memory mapped completed registers. */ + void __iomem *completed[MTIP_MAX_SLOT_GROUPS]; + /* Array of pointers to the memory mapped Command Issue registers. */ + void __iomem *cmd_issue[MTIP_MAX_SLOT_GROUPS]; + /* + * Pointer to the beginning of the command header memory as used + * by the driver. + */ + void *command_list; + /* + * Pointer to the beginning of the command header memory as used + * by the DMA. + */ + dma_addr_t command_list_dma; + /* + * Pointer to the beginning of the RX FIS memory as used + * by the driver. + */ + void *rxfis; + /* + * Pointer to the beginning of the RX FIS memory as used + * by the DMA. + */ + dma_addr_t rxfis_dma; + /* + * Pointer to the beginning of the command table memory as used + * by the driver. + */ + void *command_table; + /* + * Pointer to the beginning of the command table memory as used + * by the DMA. + */ + dma_addr_t command_tbl_dma; + /* + * Pointer to the beginning of the identify data memory as used + * by the driver. + */ + u16 *identify; + /* + * Pointer to the beginning of the identify data memory as used + * by the DMA. + */ + dma_addr_t identify_dma; + /* + * Pointer to the beginning of a sector buffer that is used + * by the driver when issuing internal commands. + */ + u16 *sector_buffer; + /* + * Pointer to the beginning of a sector buffer that is used + * by the DMA when the driver issues internal commands. + */ + dma_addr_t sector_buffer_dma; + /* + * Bit significant, used to determine if a command slot has + * been allocated. i.e. the slot is in use. Bits are cleared + * when the command slot and all associated data structures + * are no longer needed. + */ + unsigned long allocated[SLOTBITS_IN_LONGS]; + /* + * used to queue commands when an internal command is in progress + * or error handling is active + */ + unsigned long cmds_to_issue[SLOTBITS_IN_LONGS]; + /* + * Array of command slots. Structure includes pointers to the + * command header and command table, and completion function and data + * pointers. + */ + struct mtip_cmd commands[MTIP_MAX_COMMAND_SLOTS]; + /* Used by mtip_service_thread to wait for an event */ + wait_queue_head_t svc_wait; + /* + * indicates the state of the port. Also, helps the service thread + * to determine its action on wake up. + */ + unsigned long flags; + /* + * Timer used to complete commands that have been active for too long. + */ + struct timer_list cmd_timer; + /* + * Semaphore used to block threads if there are no + * command slots available. + */ + struct semaphore cmd_slot; + /* Spinlock for working around command-issue bug. */ + spinlock_t cmd_issue_lock; +}; + +/* + * Driver private data structure. + * + * One structure is allocated per probed device. + */ +struct driver_data { + void __iomem *mmio; /* Base address of the HBA registers. */ + + int major; /* Major device number. */ + + int instance; /* Instance number. First device probed is 0, ... */ + + struct gendisk *disk; /* Pointer to our gendisk structure. */ + + struct pci_dev *pdev; /* Pointer to the PCI device structure. */ + + struct request_queue *queue; /* Our request queue. */ + + struct mtip_port *port; /* Pointer to the port data structure. */ + + /* Tasklet used to process the bottom half of the ISR. */ + struct tasklet_struct tasklet; + + unsigned product_type; /* magic value declaring the product type */ + + unsigned slot_groups; /* number of slot groups the product supports */ + + atomic_t drv_cleanup_done; /* Atomic variable for SRSI */ + + unsigned long index; /* Index to determine the disk name */ + + unsigned int ftlrebuildflag; /* FTL rebuild flag */ + + atomic_t resumeflag; /* Atomic variable to track suspend/resume */ + + atomic_t eh_active; /* Flag for error handling tracking */ + + struct task_struct *mtip_svc_handler; /* task_struct of svc thd */ +}; + +#endif --- linux-3.2.0.orig/drivers/block/mtip32xx/Kconfig +++ linux-3.2.0/drivers/block/mtip32xx/Kconfig @@ -0,0 +1,9 @@ +# +# mtip32xx device driver configuration +# + +config BLK_DEV_PCIESSD_MTIP32XX + tristate "Block Device Driver for Micron PCIe SSDs" + depends on HOTPLUG_PCI_PCIE + help + This enables the block driver for Micron PCIe SSDs. --- linux-3.2.0.orig/drivers/block/mtip32xx/Makefile +++ linux-3.2.0/drivers/block/mtip32xx/Makefile @@ -0,0 +1,5 @@ +# +# Makefile for Block device driver for Micron PCIe SSD +# + +obj-$(CONFIG_BLK_DEV_PCIESSD_MTIP32XX) += mtip32xx.o --- linux-3.2.0.orig/drivers/bcma/bcma_private.h +++ linux-3.2.0/drivers/bcma/bcma_private.h @@ -18,6 +18,9 @@ int __init bcma_bus_early_register(struct bcma_bus *bus, struct bcma_device *core_cc, struct bcma_device *core_mips); +#ifdef CONFIG_PM +int bcma_bus_resume(struct bcma_bus *bus); +#endif /* scan.c */ int bcma_bus_scan(struct bcma_bus *bus); --- linux-3.2.0.orig/drivers/bcma/main.c +++ linux-3.2.0/drivers/bcma/main.c @@ -240,6 +240,22 @@ return 0; } +#ifdef CONFIG_PM +int bcma_bus_resume(struct bcma_bus *bus) +{ + struct bcma_device *core; + + /* Init CC core */ + core = bcma_find_core(bus, BCMA_CORE_CHIPCOMMON); + if (core) { + bus->drv_cc.setup_done = false; + bcma_core_chipcommon_init(&bus->drv_cc); + } + + return 0; +} +#endif + int __bcma_driver_register(struct bcma_driver *drv, struct module *owner) { drv->drv.name = drv->name; --- linux-3.2.0.orig/drivers/bcma/host_pci.c +++ linux-3.2.0/drivers/bcma/host_pci.c @@ -224,6 +224,44 @@ pci_set_drvdata(dev, NULL); } +#ifdef CONFIG_PM +static int bcma_host_pci_suspend(struct pci_dev *dev, pm_message_t state) +{ + struct bcma_bus *bus = pci_get_drvdata(dev); + + /* Host specific */ + pci_save_state(dev); + pci_disable_device(dev); + pci_set_power_state(dev, pci_choose_state(dev, state)); + + bus->mapped_core = NULL; + return 0; +} + +static int bcma_host_pci_resume(struct pci_dev *dev) +{ + struct bcma_bus *bus = pci_get_drvdata(dev); + int err; + + /* Host specific */ + pci_set_power_state(dev, 0); + err = pci_enable_device(dev); + if (err) + return err; + pci_restore_state(dev); + + /* Bus specific */ + err = bcma_bus_resume(bus); + if (err) + return err; + + return 0; +} +#else /* CONFIG_PM */ +# define bcma_host_pci_suspend NULL +# define bcma_host_pci_resume NULL +#endif /* CONFIG_PM */ + static DEFINE_PCI_DEVICE_TABLE(bcma_pci_bridge_tbl) = { { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x0576) }, { PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, 0x4331) }, @@ -239,6 +277,8 @@ .id_table = bcma_pci_bridge_tbl, .probe = bcma_host_pci_probe, .remove = bcma_host_pci_remove, + .suspend = bcma_host_pci_suspend, + .resume = bcma_host_pci_resume, }; int __init bcma_host_pci_init(void) --- linux-3.2.0.orig/drivers/char/ramoops.c +++ linux-3.2.0/drivers/char/ramoops.c @@ -83,8 +83,7 @@ struct timeval timestamp; if (reason != KMSG_DUMP_OOPS && - reason != KMSG_DUMP_PANIC && - reason != KMSG_DUMP_KEXEC) + reason != KMSG_DUMP_PANIC) return; /* Only dump oopses if dump_oops is set */ --- linux-3.2.0.orig/drivers/char/tpm/Kconfig +++ linux-3.2.0/drivers/char/tpm/Kconfig @@ -5,7 +5,6 @@ menuconfig TCG_TPM tristate "TPM Hardware Support" depends on HAS_IOMEM - depends on EXPERIMENTAL select SECURITYFS ---help--- If you have a TPM security chip in your system, which --- linux-3.2.0.orig/drivers/char/tpm/tpm_tis.c +++ linux-3.2.0/drivers/char/tpm/tpm_tis.c @@ -432,6 +432,9 @@ out: itpm = rem_itpm; tpm_tis_ready(chip); + /* some TPMs need a break here otherwise they will not work + * correctly on the immediately subsequent command */ + msleep(chip->vendor.timeout_b); release_locality(chip, chip->vendor.locality, 0); return rc; --- linux-3.2.0.orig/drivers/char/tpm/tpm.c +++ linux-3.2.0/drivers/char/tpm/tpm.c @@ -1115,12 +1115,13 @@ ret_size = atomic_read(&chip->data_pending); atomic_set(&chip->data_pending, 0); if (ret_size > 0) { /* relay data */ + ssize_t orig_ret_size = ret_size; if (size < ret_size) ret_size = size; mutex_lock(&chip->buffer_mutex); rc = copy_to_user(buf, chip->data_buffer, ret_size); - memset(chip->data_buffer, 0, ret_size); + memset(chip->data_buffer, 0, orig_ret_size); if (rc) ret_size = -EFAULT; --- linux-3.2.0.orig/drivers/cpufreq/powernow-k8.c +++ linux-3.2.0/drivers/cpufreq/powernow-k8.c @@ -54,6 +54,9 @@ static int cpu_family = CPU_OPTERON; +/* array to map SW pstate number to acpi state */ +static u32 ps_to_as[8]; + /* core performance boost */ static bool cpb_capable, cpb_enabled; static struct msr __percpu *msrs; @@ -80,9 +83,9 @@ } static u32 find_khz_freq_from_pstate(struct cpufreq_frequency_table *data, - u32 pstate) + u32 pstate) { - return data[pstate].frequency; + return data[ps_to_as[pstate]].frequency; } /* Return the vco fid for an input fid @@ -926,23 +929,27 @@ invalidate_entry(powernow_table, i); continue; } - rdmsr(MSR_PSTATE_DEF_BASE + index, lo, hi); - if (!(hi & HW_PSTATE_VALID_MASK)) { - pr_debug("invalid pstate %d, ignoring\n", index); - invalidate_entry(powernow_table, i); - continue; - } - powernow_table[i].index = index; + ps_to_as[index] = i; /* Frequency may be rounded for these */ if ((boot_cpu_data.x86 == 0x10 && boot_cpu_data.x86_model < 10) || boot_cpu_data.x86 == 0x11) { + + rdmsr(MSR_PSTATE_DEF_BASE + index, lo, hi); + if (!(hi & HW_PSTATE_VALID_MASK)) { + pr_debug("invalid pstate %d, ignoring\n", index); + invalidate_entry(powernow_table, i); + continue; + } + powernow_table[i].frequency = freq_from_fid_did(lo & 0x3f, (lo >> 6) & 7); } else powernow_table[i].frequency = data->acpi_data.states[i].core_frequency * 1000; + + powernow_table[i].index = index; } return 0; } @@ -1189,7 +1196,8 @@ powernow_k8_acpi_pst_values(data, newstate); if (cpu_family == CPU_HW_PSTATE) - ret = transition_frequency_pstate(data, newstate); + ret = transition_frequency_pstate(data, + data->powernow_table[newstate].index); else ret = transition_frequency_fidvid(data, newstate); if (ret) { @@ -1202,7 +1210,7 @@ if (cpu_family == CPU_HW_PSTATE) pol->cur = find_khz_freq_from_pstate(data->powernow_table, - newstate); + data->powernow_table[newstate].index); else pol->cur = find_khz_freq_from_fid(data->currfid); ret = 0; --- linux-3.2.0.orig/drivers/cpufreq/cpufreq.c +++ linux-3.2.0/drivers/cpufreq/cpufreq.c @@ -126,6 +126,15 @@ } pure_initcall(init_cpufreq_transition_notifier_list); +static int off __read_mostly; +int cpufreq_disabled(void) +{ + return off; +} +void disable_cpufreq(void) +{ + off = 1; +} static LIST_HEAD(cpufreq_governor_list); static DEFINE_MUTEX(cpufreq_governor_mutex); @@ -1440,6 +1449,9 @@ { int retval = -EINVAL; + if (cpufreq_disabled()) + return -ENODEV; + pr_debug("target for CPU %u: %u kHz, relation %u\n", policy->cpu, target_freq, relation); if (cpu_online(policy->cpu) && cpufreq_driver->target) @@ -1548,6 +1560,9 @@ if (!governor) return -EINVAL; + if (cpufreq_disabled()) + return -ENODEV; + mutex_lock(&cpufreq_governor_mutex); err = -EBUSY; @@ -1571,6 +1586,9 @@ if (!governor) return; + if (cpufreq_disabled()) + return; + #ifdef CONFIG_HOTPLUG_CPU for_each_present_cpu(cpu) { if (cpu_online(cpu)) @@ -1798,6 +1816,20 @@ * REGISTER / UNREGISTER CPUFREQ DRIVER * *********************************************************************/ +static char cpufreq_driver_name[CPUFREQ_NAME_LEN]; + +static int __init cpufreq_driver_setup(char *str) +{ + strlcpy(cpufreq_driver_name, str, CPUFREQ_NAME_LEN); + return 1; +} + +/* + * Set this name to only allow one specific cpu freq driver, e.g., + * cpufreq_driver=powernow-k8 + */ +__setup("cpufreq_driver=", cpufreq_driver_setup); + /** * cpufreq_register_driver - register a CPU Frequency driver * @driver_data: A struct cpufreq_driver containing the values# @@ -1813,11 +1845,20 @@ unsigned long flags; int ret; + if (cpufreq_disabled()) + return -ENODEV; + if (!driver_data || !driver_data->verify || !driver_data->init || ((!driver_data->setpolicy) && (!driver_data->target))) return -EINVAL; - pr_debug("trying to register driver %s\n", driver_data->name); + pr_debug("trying to register driver %s, cpufreq_driver=%s\n", + driver_data->name, cpufreq_driver_name); + + if (cpufreq_driver_name[0]) + if (!driver_data->name || + strcmp(cpufreq_driver_name, driver_data->name)) + return -EINVAL; if (driver_data->setpolicy) driver_data->flags |= CPUFREQ_CONST_LOOPS; @@ -1902,6 +1943,9 @@ { int cpu; + if (cpufreq_disabled()) + return -ENODEV; + for_each_possible_cpu(cpu) { per_cpu(cpufreq_policy_cpu, cpu) = -1; init_rwsem(&per_cpu(cpu_policy_rwsem, cpu)); --- linux-3.2.0.orig/drivers/uwb/neh.c +++ linux-3.2.0/drivers/uwb/neh.c @@ -107,6 +107,7 @@ u8 evt_type; __le16 evt; u8 context; + u8 completed; uwb_rc_cmd_cb_f cb; void *arg; @@ -409,6 +410,7 @@ struct device *dev = &rc->uwb_dev.dev; struct uwb_rc_neh *neh; struct uwb_rceb *notif; + unsigned long flags; if (rceb->bEventContext == 0) { notif = kmalloc(size, GFP_ATOMIC); @@ -422,7 +424,11 @@ } else { neh = uwb_rc_neh_lookup(rc, rceb); if (neh) { - del_timer_sync(&neh->timer); + spin_lock_irqsave(&rc->neh_lock, flags); + /* to guard against a timeout */ + neh->completed = 1; + del_timer(&neh->timer); + spin_unlock_irqrestore(&rc->neh_lock, flags); uwb_rc_neh_cb(neh, rceb, size); } else dev_warn(dev, "event 0x%02x/%04x/%02x (%zu bytes): nobody cared\n", @@ -568,6 +574,10 @@ unsigned long flags; spin_lock_irqsave(&rc->neh_lock, flags); + if (neh->completed) { + spin_unlock_irqrestore(&rc->neh_lock, flags); + return; + } if (neh->context) __uwb_rc_neh_rm(rc, neh); else --- linux-3.2.0.orig/drivers/uwb/hwa-rc.c +++ linux-3.2.0/drivers/uwb/hwa-rc.c @@ -645,7 +645,8 @@ dev_err(dev, "NEEP: URB error %d\n", urb->status); } result = usb_submit_urb(urb, GFP_ATOMIC); - if (result < 0) { + if (result < 0 && result != -ENODEV && result != -EPERM) { + /* ignoring unrecoverable errors */ dev_err(dev, "NEEP: Can't resubmit URB (%d) resetting device\n", result); goto error; --- linux-3.2.0.orig/drivers/acpi/processor_core.c +++ linux-3.2.0/drivers/acpi/processor_core.c @@ -173,8 +173,30 @@ apic_id = map_mat_entry(handle, type, acpi_id); if (apic_id == -1) apic_id = map_madt_entry(type, acpi_id); - if (apic_id == -1) - return apic_id; + if (apic_id == -1) { + /* + * On UP processor, there is no _MAT or MADT table. + * So above apic_id is always set to -1. + * + * BIOS may define multiple CPU handles even for UP processor. + * For example, + * + * Scope (_PR) + * { + * Processor (CPU0, 0x00, 0x00000410, 0x06) {} + * Processor (CPU1, 0x01, 0x00000410, 0x06) {} + * Processor (CPU2, 0x02, 0x00000410, 0x06) {} + * Processor (CPU3, 0x03, 0x00000410, 0x06) {} + * } + * + * Ignores apic_id and always return 0 for CPU0's handle. + * Return -1 for other CPU's handle. + */ + if (acpi_id == 0) + return acpi_id; + else + return apic_id; + } #ifdef CONFIG_SMP for_each_possible_cpu(i) { --- linux-3.2.0.orig/drivers/acpi/numa.c +++ linux-3.2.0/drivers/acpi/numa.c @@ -45,6 +45,8 @@ static int node_to_pxm_map[MAX_NUMNODES] = { [0 ... MAX_NUMNODES - 1] = PXM_INVAL }; +unsigned char acpi_srat_revision __initdata; + int pxm_to_node(int pxm) { if (pxm < 0) @@ -255,9 +257,13 @@ static int __init acpi_parse_srat(struct acpi_table_header *table) { + struct acpi_table_srat *srat; if (!table) return -EINVAL; + srat = (struct acpi_table_srat *)table; + acpi_srat_revision = srat->header.revision; + /* Real work done in acpi_table_parse_srat below. */ return 0; --- linux-3.2.0.orig/drivers/acpi/processor_thermal.c +++ linux-3.2.0/drivers/acpi/processor_thermal.c @@ -58,6 +58,27 @@ static DEFINE_PER_CPU(unsigned int, cpufreq_thermal_reduction_pctg); static unsigned int acpi_thermal_cpufreq_is_init = 0; +#define reduction_pctg(cpu) \ + per_cpu(cpufreq_thermal_reduction_pctg, phys_package_first_cpu(cpu)) + +/* + * Emulate "per package data" using per cpu data (which should really be + * provided elsewhere) + * + * Note we can lose a CPU on cpu hotunplug, in this case we forget the state + * temporarily. Fortunately that's not a big issue here (I hope) + */ +static int phys_package_first_cpu(int cpu) +{ + int i; + int id = topology_physical_package_id(cpu); + + for_each_online_cpu(i) + if (topology_physical_package_id(i) == id) + return i; + return 0; +} + static int cpu_has_cpufreq(unsigned int cpu) { struct cpufreq_policy policy; @@ -77,7 +98,7 @@ max_freq = ( policy->cpuinfo.max_freq * - (100 - per_cpu(cpufreq_thermal_reduction_pctg, policy->cpu) * 20) + (100 - reduction_pctg(policy->cpu) * 20) ) / 100; cpufreq_verify_within_limits(policy, 0, max_freq); @@ -103,16 +124,28 @@ if (!cpu_has_cpufreq(cpu)) return 0; - return per_cpu(cpufreq_thermal_reduction_pctg, cpu); + return reduction_pctg(cpu); } static int cpufreq_set_cur_state(unsigned int cpu, int state) { + int i; + if (!cpu_has_cpufreq(cpu)) return 0; - per_cpu(cpufreq_thermal_reduction_pctg, cpu) = state; - cpufreq_update_policy(cpu); + reduction_pctg(cpu) = state; + + /* + * Update all the CPUs in the same package because they all + * contribute to the temperature and often share the same + * frequency. + */ + for_each_online_cpu(i) { + if (topology_physical_package_id(i) == + topology_physical_package_id(cpu)) + cpufreq_update_policy(i); + } return 0; } @@ -120,10 +153,6 @@ { int i; - for (i = 0; i < nr_cpu_ids; i++) - if (cpu_present(i)) - per_cpu(cpufreq_thermal_reduction_pctg, i) = 0; - i = cpufreq_register_notifier(&acpi_thermal_cpufreq_notifier_block, CPUFREQ_POLICY_NOTIFIER); if (!i) --- linux-3.2.0.orig/drivers/acpi/battery.c +++ linux-3.2.0/drivers/acpi/battery.c @@ -968,6 +968,18 @@ return 0; } +static LIST_HEAD(acpi_battery_domain); + +static void acpi_battery_update_async(struct acpi_device *device, async_cookie_t cookie) +{ + struct acpi_battery *battery = acpi_driver_data(device); + + acpi_battery_update(battery); + printk(KERN_INFO PREFIX "%s Slot [%s] (battery %s)\n", + ACPI_BATTERY_DEVICE_NAME, acpi_device_bid(device), + device->status.battery_present ? "present" : "absent"); +} + static int acpi_battery_add(struct acpi_device *device) { int result = 0; @@ -987,13 +999,16 @@ if (ACPI_SUCCESS(acpi_get_handle(battery->device->handle, "_BIX", &handle))) set_bit(ACPI_BATTERY_XINFO_PRESENT, &battery->flags); - result = acpi_battery_update(battery); - if (result) - goto fail; + + /* Mark the battery for update at first access. */ + battery->update_time = 0; #ifdef CONFIG_ACPI_PROCFS_POWER result = acpi_battery_add_fs(device); #endif - if (result) { + if (!result) { + async_schedule_domain(acpi_battery_update_async, device, &acpi_battery_domain); + + } else { #ifdef CONFIG_ACPI_PROCFS_POWER acpi_battery_remove_fs(device); #endif @@ -1023,6 +1038,10 @@ if (!device || !acpi_driver_data(device)) return -EINVAL; + + /* Ensure all async updates are complete before freeing the battery. */ + async_synchronize_full_domain(&acpi_battery_domain); + battery = acpi_driver_data(device); unregister_pm_notifier(&battery->pm_nb); #ifdef CONFIG_ACPI_PROCFS_POWER @@ -1060,27 +1079,21 @@ }, }; -static void __init acpi_battery_init_async(void *unused, async_cookie_t cookie) +static int __init acpi_battery_init(void) { if (acpi_disabled) return; #ifdef CONFIG_ACPI_PROCFS_POWER acpi_battery_dir = acpi_lock_battery_dir(); if (!acpi_battery_dir) - return; + return -1; #endif if (acpi_bus_register_driver(&acpi_battery_driver) < 0) { #ifdef CONFIG_ACPI_PROCFS_POWER acpi_unlock_battery_dir(acpi_battery_dir); #endif - return; + return -1; } - return; -} - -static int __init acpi_battery_init(void) -{ - async_schedule(acpi_battery_init_async, NULL); return 0; } --- linux-3.2.0.orig/drivers/acpi/pci_root.c +++ linux-3.2.0/drivers/acpi/pci_root.c @@ -596,6 +596,13 @@ if (ACPI_SUCCESS(status)) { dev_info(root->bus->bridge, "ACPI _OSC control (0x%02x) granted\n", flags); + if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) { + /* + * We have ASPM control, but the FADT indicates + * that it's unsupported. Clear it. + */ + pcie_clear_aspm(root->bus); + } } else { dev_info(root->bus->bridge, "ACPI _OSC request failed (%s), " --- linux-3.2.0.orig/drivers/acpi/sleep.c +++ linux-3.2.0/drivers/acpi/sleep.c @@ -438,6 +438,14 @@ }, { .callback = init_nvs_nosave, + .ident = "Sony Vaio VPCCW29FX", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), + DMI_MATCH(DMI_PRODUCT_NAME, "VPCCW29FX"), + }, + }, + { + .callback = init_nvs_nosave, .ident = "Averatec AV1020-ED2", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "AVERATEC"), @@ -476,6 +484,22 @@ DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW520F"), }, }, + { + .callback = init_nvs_nosave, + .ident = "Asus K54C", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "K54C"), + }, + }, + { + .callback = init_nvs_nosave, + .ident = "Asus K54HR", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "K54HR"), + }, + }, {}, }; #endif /* CONFIG_SUSPEND */ --- linux-3.2.0.orig/drivers/acpi/ec.c +++ linux-3.2.0/drivers/acpi/ec.c @@ -445,6 +445,16 @@ EXPORT_SYMBOL(ec_transaction); +/* Get the handle to the EC device */ +acpi_handle ec_get_handle(void) +{ + if (!first_ec) + return NULL; + return first_ec->handle; +} + +EXPORT_SYMBOL(ec_get_handle); + void acpi_ec_block_transactions(void) { struct acpi_ec *ec = first_ec; --- linux-3.2.0.orig/drivers/acpi/video.c +++ linux-3.2.0/drivers/acpi/video.c @@ -73,6 +73,14 @@ module_param(brightness_switch_enabled, bool, 0644); /* + * The Default is to let the OS handle brightness autoswitching due to + * AC/battery status changes. On some laptops (MSI Wind) this doesn't + * work so we need a workaround. + */ +static int brightness_autoswitch_via_bios = 0; +module_param(brightness_autoswitch_via_bios, bool, 0644); + +/* * By default, we don't allow duplicate ACPI video bus devices * under the same VGA controller */ @@ -1421,7 +1429,7 @@ static int acpi_video_bus_start_devices(struct acpi_video_bus *video) { - return acpi_video_bus_DOS(video, 0, 0); + return acpi_video_bus_DOS(video, 0, !brightness_autoswitch_via_bios); } static int acpi_video_bus_stop_devices(struct acpi_video_bus *video) --- linux-3.2.0.orig/drivers/acpi/acpica/acobject.h +++ linux-3.2.0/drivers/acpi/acpica/acobject.h @@ -358,6 +358,7 @@ */ struct acpi_object_extra { ACPI_OBJECT_COMMON_HEADER struct acpi_namespace_node *method_REG; /* _REG method for this region (if any) */ + struct acpi_namespace_node *scope_node; void *region_context; /* Region-specific data */ u8 *aml_start; u32 aml_length; --- linux-3.2.0.orig/drivers/acpi/acpica/dsargs.c +++ linux-3.2.0/drivers/acpi/acpica/dsargs.c @@ -384,8 +384,32 @@ /* Execute the argument AML */ - status = acpi_ds_execute_arguments(node, node->parent, + status = acpi_ds_execute_arguments(node, extra_desc->extra.scope_node, extra_desc->extra.aml_length, extra_desc->extra.aml_start); + if (ACPI_FAILURE(status)) { + return_ACPI_STATUS(status); + } + + /* Validate the region address/length via the host OS */ + + status = acpi_os_validate_address(obj_desc->region.space_id, + obj_desc->region.address, + (acpi_size) obj_desc->region.length, + acpi_ut_get_node_name(node)); + + if (ACPI_FAILURE(status)) { + /* + * Invalid address/length. We will emit an error message and mark + * the region as invalid, so that it will cause an additional error if + * it is ever used. Then return AE_OK. + */ + ACPI_EXCEPTION((AE_INFO, status, + "During address validation of OpRegion [%4.4s]", + node->name.ascii)); + obj_desc->common.flags |= AOPOBJ_INVALID; + status = AE_OK; + } + return_ACPI_STATUS(status); } --- linux-3.2.0.orig/drivers/acpi/acpica/excreate.c +++ linux-3.2.0/drivers/acpi/acpica/excreate.c @@ -330,6 +330,12 @@ region_obj2 = obj_desc->common.next_object; region_obj2->extra.aml_start = aml_start; region_obj2->extra.aml_length = aml_length; + if (walk_state->scope_info) { + region_obj2->extra.scope_node = + walk_state->scope_info->scope.node; + } else { + region_obj2->extra.scope_node = node; + } /* Init the region from the operands */ --- linux-3.2.0.orig/drivers/acpi/acpica/tbfadt.c +++ linux-3.2.0/drivers/acpi/acpica/tbfadt.c @@ -350,10 +350,6 @@ u32 address32; u32 i; - /* Update the local FADT table header length */ - - acpi_gbl_FADT.header.length = sizeof(struct acpi_table_fadt); - /* * Expand the 32-bit FACS and DSDT addresses to 64-bit as necessary. * Later code will always use the X 64-bit field. Also, check for an @@ -395,6 +391,10 @@ acpi_gbl_FADT.boot_flags = 0; } + /* Update the local FADT table header length */ + + acpi_gbl_FADT.header.length = sizeof(struct acpi_table_fadt); + /* * Expand the ACPI 1.0 32-bit addresses to the ACPI 2.0 64-bit "X" * generic address structures as necessary. Later code will always use --- linux-3.2.0.orig/drivers/xen/events.c +++ linux-3.2.0/drivers/xen/events.c @@ -600,7 +600,7 @@ disable_dynirq(data); } -static int find_irq_by_gsi(unsigned gsi) +int xen_irq_from_gsi(unsigned gsi) { struct irq_info *info; @@ -614,6 +614,7 @@ return -1; } +EXPORT_SYMBOL_GPL(xen_irq_from_gsi); /* * Do not make any assumptions regarding the relationship between the @@ -633,7 +634,7 @@ mutex_lock(&irq_mapping_update_lock); - irq = find_irq_by_gsi(gsi); + irq = xen_irq_from_gsi(gsi); if (irq != -1) { printk(KERN_INFO "xen_map_pirq_gsi: returning irq %d for gsi %u\n", irq, gsi); --- linux-3.2.0.orig/drivers/xen/Kconfig +++ linux-3.2.0/drivers/xen/Kconfig @@ -171,4 +171,21 @@ xen-pciback.hide=(03:00.0)(04:00.0) If in doubt, say m. + +config XEN_ACPI_PROCESSOR + tristate "Xen ACPI processor" + depends on XEN && X86 && ACPI_PROCESSOR && CPU_FREQ + default m + help + This ACPI processor uploads Power Management information to the Xen hypervisor. + + To do that the driver parses the Power Management data and uploads said + information to the Xen hypervisor. Then the Xen hypervisor can select the + proper Cx and Pxx states. It also registers itslef as the SMM so that + other drivers (such as ACPI cpufreq scaling driver) will not load. + + To compile this driver as a module, choose M here: the + module will be called xen_acpi_processor If you do not know what to choose, + select M here. If the CPUFREQ drivers are built in, select Y here. + endmenu --- linux-3.2.0.orig/drivers/xen/gntdev.c +++ linux-3.2.0/drivers/xen/gntdev.c @@ -692,7 +692,7 @@ vma->vm_flags |= VM_RESERVED|VM_DONTEXPAND; if (use_ptemod) - vma->vm_flags |= VM_DONTCOPY|VM_PFNMAP; + vma->vm_flags |= VM_DONTCOPY; vma->vm_private_data = map; --- linux-3.2.0.orig/drivers/xen/xen-acpi-processor.c +++ linux-3.2.0/drivers/xen/xen-acpi-processor.c @@ -0,0 +1,562 @@ +/* + * Copyright 2012 by Oracle Inc + * Author: Konrad Rzeszutek Wilk + * + * This code borrows ideas from https://lkml.org/lkml/2011/11/30/249 + * so many thanks go to Kevin Tian + * and Yu Ke . + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#define DRV_NAME "xen-acpi-processor: " + +static int no_hypercall; +MODULE_PARM_DESC(off, "Inhibit the hypercall."); +module_param_named(off, no_hypercall, int, 0400); + +/* + * Note: Do not convert the acpi_id* below to cpumask_var_t or use cpumask_bit + * - as those shrink to nr_cpu_bits (which is dependent on possible_cpu), which + * can be less than what we want to put in. Instead use the 'nr_acpi_bits' + * which is dynamically computed based on the MADT or x2APIC table. + */ +static unsigned int nr_acpi_bits; +/* Mutex to protect the acpi_ids_done - for CPU hotplug use. */ +static DEFINE_MUTEX(acpi_ids_mutex); +/* Which ACPI ID we have processed from 'struct acpi_processor'. */ +static unsigned long *acpi_ids_done; +/* Which ACPI ID exist in the SSDT/DSDT processor definitions. */ +static unsigned long __initdata *acpi_id_present; +/* And if there is an _CST definition (or a PBLK) for the ACPI IDs */ +static unsigned long __initdata *acpi_id_cst_present; + +static int push_cxx_to_hypervisor(struct acpi_processor *_pr) +{ + struct xen_platform_op op = { + .cmd = XENPF_set_processor_pminfo, + .interface_version = XENPF_INTERFACE_VERSION, + .u.set_pminfo.id = _pr->acpi_id, + .u.set_pminfo.type = XEN_PM_CX, + }; + struct xen_processor_cx *dst_cx, *dst_cx_states = NULL; + struct acpi_processor_cx *cx; + unsigned int i, ok; + int ret = 0; + + dst_cx_states = kcalloc(_pr->power.count, + sizeof(struct xen_processor_cx), GFP_KERNEL); + if (!dst_cx_states) + return -ENOMEM; + + for (ok = 0, i = 1; i <= _pr->power.count; i++) { + cx = &_pr->power.states[i]; + if (!cx->valid) + continue; + + dst_cx = &(dst_cx_states[ok++]); + + dst_cx->reg.space_id = ACPI_ADR_SPACE_SYSTEM_IO; + if (cx->entry_method == ACPI_CSTATE_SYSTEMIO) { + dst_cx->reg.bit_width = 8; + dst_cx->reg.bit_offset = 0; + dst_cx->reg.access_size = 1; + } else { + dst_cx->reg.space_id = ACPI_ADR_SPACE_FIXED_HARDWARE; + if (cx->entry_method == ACPI_CSTATE_FFH) { + /* NATIVE_CSTATE_BEYOND_HALT */ + dst_cx->reg.bit_offset = 2; + dst_cx->reg.bit_width = 1; /* VENDOR_INTEL */ + } + dst_cx->reg.access_size = 0; + } + dst_cx->reg.address = cx->address; + + dst_cx->type = cx->type; + dst_cx->latency = cx->latency; + dst_cx->power = cx->power; + + dst_cx->dpcnt = 0; + set_xen_guest_handle(dst_cx->dp, NULL); + } + if (!ok) { + pr_debug(DRV_NAME "No _Cx for ACPI CPU %u\n", _pr->acpi_id); + kfree(dst_cx_states); + return -EINVAL; + } + op.u.set_pminfo.power.count = ok; + op.u.set_pminfo.power.flags.bm_control = _pr->flags.bm_control; + op.u.set_pminfo.power.flags.bm_check = _pr->flags.bm_check; + op.u.set_pminfo.power.flags.has_cst = _pr->flags.has_cst; + op.u.set_pminfo.power.flags.power_setup_done = + _pr->flags.power_setup_done; + + set_xen_guest_handle(op.u.set_pminfo.power.states, dst_cx_states); + + if (!no_hypercall) + ret = HYPERVISOR_dom0_op(&op); + + if (!ret) { + pr_debug("ACPI CPU%u - C-states uploaded.\n", _pr->acpi_id); + for (i = 1; i <= _pr->power.count; i++) { + cx = &_pr->power.states[i]; + if (!cx->valid) + continue; + pr_debug(" C%d: %s %d uS\n", + cx->type, cx->desc, (u32)cx->latency); + } + } else + pr_err(DRV_NAME "(CX): Hypervisor error (%d) for ACPI CPU%u\n", + ret, _pr->acpi_id); + + kfree(dst_cx_states); + + return ret; +} +static struct xen_processor_px * +xen_copy_pss_data(struct acpi_processor *_pr, + struct xen_processor_performance *dst_perf) +{ + struct xen_processor_px *dst_states = NULL; + unsigned int i; + + BUILD_BUG_ON(sizeof(struct xen_processor_px) != + sizeof(struct acpi_processor_px)); + + dst_states = kcalloc(_pr->performance->state_count, + sizeof(struct xen_processor_px), GFP_KERNEL); + if (!dst_states) + return ERR_PTR(-ENOMEM); + + dst_perf->state_count = _pr->performance->state_count; + for (i = 0; i < _pr->performance->state_count; i++) { + /* Fortunatly for us, they are both the same size */ + memcpy(&(dst_states[i]), &(_pr->performance->states[i]), + sizeof(struct acpi_processor_px)); + } + return dst_states; +} +static int xen_copy_psd_data(struct acpi_processor *_pr, + struct xen_processor_performance *dst) +{ + struct acpi_psd_package *pdomain; + + BUILD_BUG_ON(sizeof(struct xen_psd_package) != + sizeof(struct acpi_psd_package)); + + /* This information is enumerated only if acpi_processor_preregister_performance + * has been called. + */ + dst->shared_type = _pr->performance->shared_type; + + pdomain = &(_pr->performance->domain_info); + + /* 'acpi_processor_preregister_performance' does not parse if the + * num_processors <= 1, but Xen still requires it. Do it manually here. + */ + if (pdomain->num_processors <= 1) { + if (pdomain->coord_type == DOMAIN_COORD_TYPE_SW_ALL) + dst->shared_type = CPUFREQ_SHARED_TYPE_ALL; + else if (pdomain->coord_type == DOMAIN_COORD_TYPE_HW_ALL) + dst->shared_type = CPUFREQ_SHARED_TYPE_HW; + else if (pdomain->coord_type == DOMAIN_COORD_TYPE_SW_ANY) + dst->shared_type = CPUFREQ_SHARED_TYPE_ANY; + + } + memcpy(&(dst->domain_info), pdomain, sizeof(struct acpi_psd_package)); + return 0; +} +static int xen_copy_pct_data(struct acpi_pct_register *pct, + struct xen_pct_register *dst_pct) +{ + /* It would be nice if you could just do 'memcpy(pct, dst_pct') but + * sadly the Xen structure did not have the proper padding so the + * descriptor field takes two (dst_pct) bytes instead of one (pct). + */ + dst_pct->descriptor = pct->descriptor; + dst_pct->length = pct->length; + dst_pct->space_id = pct->space_id; + dst_pct->bit_width = pct->bit_width; + dst_pct->bit_offset = pct->bit_offset; + dst_pct->reserved = pct->reserved; + dst_pct->address = pct->address; + return 0; +} +static int push_pxx_to_hypervisor(struct acpi_processor *_pr) +{ + int ret = 0; + struct xen_platform_op op = { + .cmd = XENPF_set_processor_pminfo, + .interface_version = XENPF_INTERFACE_VERSION, + .u.set_pminfo.id = _pr->acpi_id, + .u.set_pminfo.type = XEN_PM_PX, + }; + struct xen_processor_performance *dst_perf; + struct xen_processor_px *dst_states = NULL; + + dst_perf = &op.u.set_pminfo.perf; + + dst_perf->platform_limit = _pr->performance_platform_limit; + dst_perf->flags |= XEN_PX_PPC; + xen_copy_pct_data(&(_pr->performance->control_register), + &dst_perf->control_register); + xen_copy_pct_data(&(_pr->performance->status_register), + &dst_perf->status_register); + dst_perf->flags |= XEN_PX_PCT; + dst_states = xen_copy_pss_data(_pr, dst_perf); + if (!IS_ERR_OR_NULL(dst_states)) { + set_xen_guest_handle(dst_perf->states, dst_states); + dst_perf->flags |= XEN_PX_PSS; + } + if (!xen_copy_psd_data(_pr, dst_perf)) + dst_perf->flags |= XEN_PX_PSD; + + if (dst_perf->flags != (XEN_PX_PSD | XEN_PX_PSS | XEN_PX_PCT | XEN_PX_PPC)) { + pr_warn(DRV_NAME "ACPI CPU%u missing some P-state data (%x), skipping.\n", + _pr->acpi_id, dst_perf->flags); + ret = -ENODEV; + goto err_free; + } + + if (!no_hypercall) + ret = HYPERVISOR_dom0_op(&op); + + if (!ret) { + struct acpi_processor_performance *perf; + unsigned int i; + + perf = _pr->performance; + pr_debug("ACPI CPU%u - P-states uploaded.\n", _pr->acpi_id); + for (i = 0; i < perf->state_count; i++) { + pr_debug(" %cP%d: %d MHz, %d mW, %d uS\n", + (i == perf->state ? '*' : ' '), i, + (u32) perf->states[i].core_frequency, + (u32) perf->states[i].power, + (u32) perf->states[i].transition_latency); + } + } else if (ret != -EINVAL) + /* EINVAL means the ACPI ID is incorrect - meaning the ACPI + * table is referencing a non-existing CPU - which can happen + * with broken ACPI tables. */ + pr_warn(DRV_NAME "(_PXX): Hypervisor error (%d) for ACPI CPU%u\n", + ret, _pr->acpi_id); +err_free: + if (!IS_ERR_OR_NULL(dst_states)) + kfree(dst_states); + + return ret; +} +static int upload_pm_data(struct acpi_processor *_pr) +{ + int err = 0; + + mutex_lock(&acpi_ids_mutex); + if (__test_and_set_bit(_pr->acpi_id, acpi_ids_done)) { + mutex_unlock(&acpi_ids_mutex); + return -EBUSY; + } + if (_pr->flags.power) + err = push_cxx_to_hypervisor(_pr); + + if (_pr->performance && _pr->performance->states) + err |= push_pxx_to_hypervisor(_pr); + + mutex_unlock(&acpi_ids_mutex); + return err; +} +static unsigned int __init get_max_acpi_id(void) +{ + struct xenpf_pcpuinfo *info; + struct xen_platform_op op = { + .cmd = XENPF_get_cpuinfo, + .interface_version = XENPF_INTERFACE_VERSION, + }; + int ret = 0; + unsigned int i, last_cpu, max_acpi_id = 0; + + info = &op.u.pcpu_info; + info->xen_cpuid = 0; + + ret = HYPERVISOR_dom0_op(&op); + if (ret) + return NR_CPUS; + + /* The max_present is the same irregardless of the xen_cpuid */ + last_cpu = op.u.pcpu_info.max_present; + for (i = 0; i <= last_cpu; i++) { + info->xen_cpuid = i; + ret = HYPERVISOR_dom0_op(&op); + if (ret) + continue; + max_acpi_id = max(info->acpi_id, max_acpi_id); + } + max_acpi_id *= 2; /* Slack for CPU hotplug support. */ + pr_debug(DRV_NAME "Max ACPI ID: %u\n", max_acpi_id); + return max_acpi_id; +} +/* + * The read_acpi_id and check_acpi_ids are there to support the Xen + * oddity of virtual CPUs != physical CPUs in the initial domain. + * The user can supply 'xen_max_vcpus=X' on the Xen hypervisor line + * which will band the amount of CPUs the initial domain can see. + * In general that is OK, except it plays havoc with any of the + * for_each_[present|online]_cpu macros which are banded to the virtual + * CPU amount. + */ +static acpi_status __init +read_acpi_id(acpi_handle handle, u32 lvl, void *context, void **rv) +{ + u32 acpi_id; + acpi_status status; + acpi_object_type acpi_type; + unsigned long long tmp; + union acpi_object object = { 0 }; + struct acpi_buffer buffer = { sizeof(union acpi_object), &object }; + acpi_io_address pblk = 0; + + status = acpi_get_type(handle, &acpi_type); + if (ACPI_FAILURE(status)) + return AE_OK; + + switch (acpi_type) { + case ACPI_TYPE_PROCESSOR: + status = acpi_evaluate_object(handle, NULL, NULL, &buffer); + if (ACPI_FAILURE(status)) + return AE_OK; + acpi_id = object.processor.proc_id; + pblk = object.processor.pblk_address; + break; + case ACPI_TYPE_DEVICE: + status = acpi_evaluate_integer(handle, "_UID", NULL, &tmp); + if (ACPI_FAILURE(status)) + return AE_OK; + acpi_id = tmp; + break; + default: + return AE_OK; + } + /* There are more ACPI Processor objects than in x2APIC or MADT. + * This can happen with incorrect ACPI SSDT declerations. */ + if (acpi_id > nr_acpi_bits) { + pr_debug(DRV_NAME "We only have %u, trying to set %u\n", + nr_acpi_bits, acpi_id); + return AE_OK; + } + /* OK, There is a ACPI Processor object */ + __set_bit(acpi_id, acpi_id_present); + + pr_debug(DRV_NAME "ACPI CPU%u w/ PBLK:0x%lx\n", acpi_id, + (unsigned long)pblk); + + status = acpi_evaluate_object(handle, "_CST", NULL, &buffer); + if (ACPI_FAILURE(status)) { + if (!pblk) + return AE_OK; + } + /* .. and it has a C-state */ + __set_bit(acpi_id, acpi_id_cst_present); + + return AE_OK; +} +static int __init check_acpi_ids(struct acpi_processor *pr_backup) +{ + + if (!pr_backup) + return -ENODEV; + + /* All online CPUs have been processed at this stage. Now verify + * whether in fact "online CPUs" == physical CPUs. + */ + acpi_id_present = kcalloc(BITS_TO_LONGS(nr_acpi_bits), sizeof(unsigned long), GFP_KERNEL); + if (!acpi_id_present) + return -ENOMEM; + + acpi_id_cst_present = kcalloc(BITS_TO_LONGS(nr_acpi_bits), sizeof(unsigned long), GFP_KERNEL); + if (!acpi_id_cst_present) { + kfree(acpi_id_present); + return -ENOMEM; + } + + acpi_walk_namespace(ACPI_TYPE_PROCESSOR, ACPI_ROOT_OBJECT, + ACPI_UINT32_MAX, + read_acpi_id, NULL, NULL, NULL); + acpi_get_devices("ACPI0007", read_acpi_id, NULL, NULL); + + if (!bitmap_equal(acpi_id_present, acpi_ids_done, nr_acpi_bits)) { + unsigned int i; + for_each_set_bit(i, acpi_id_present, nr_acpi_bits) { + pr_backup->acpi_id = i; + /* Mask out C-states if there are no _CST or PBLK */ + pr_backup->flags.power = test_bit(i, acpi_id_cst_present); + (void)upload_pm_data(pr_backup); + } + } + kfree(acpi_id_present); + acpi_id_present = NULL; + kfree(acpi_id_cst_present); + acpi_id_cst_present = NULL; + return 0; +} +static int __init check_prereq(void) +{ + struct cpuinfo_x86 *c = &cpu_data(0); + + if (!xen_initial_domain()) + return -ENODEV; + + if (!acpi_gbl_FADT.smi_command) + return -ENODEV; + + if (c->x86_vendor == X86_VENDOR_INTEL) { + if (!cpu_has(c, X86_FEATURE_EST)) + return -ENODEV; + + return 0; + } + if (c->x86_vendor == X86_VENDOR_AMD) { + /* Copied from powernow-k8.h, can't include ../cpufreq/powernow + * as we get compile warnings for the static functions. + */ +#define CPUID_FREQ_VOLT_CAPABILITIES 0x80000007 +#define USE_HW_PSTATE 0x00000080 + u32 eax, ebx, ecx, edx; + cpuid(CPUID_FREQ_VOLT_CAPABILITIES, &eax, &ebx, &ecx, &edx); + if ((edx & USE_HW_PSTATE) != USE_HW_PSTATE) + return -ENODEV; + return 0; + } + return -ENODEV; +} +/* acpi_perf_data is a pointer to percpu data. */ +static struct acpi_processor_performance __percpu *acpi_perf_data; + +static void free_acpi_perf_data(void) +{ + unsigned int i; + + /* Freeing a NULL pointer is OK, and alloc_percpu zeroes. */ + for_each_possible_cpu(i) + free_cpumask_var(per_cpu_ptr(acpi_perf_data, i) + ->shared_cpu_map); + free_percpu(acpi_perf_data); +} + +static int __init xen_acpi_processor_init(void) +{ + struct acpi_processor *pr_backup = NULL; + unsigned int i; + int rc = check_prereq(); + + if (rc) + return rc; + + nr_acpi_bits = get_max_acpi_id() + 1; + acpi_ids_done = kcalloc(BITS_TO_LONGS(nr_acpi_bits), sizeof(unsigned long), GFP_KERNEL); + if (!acpi_ids_done) + return -ENOMEM; + + acpi_perf_data = alloc_percpu(struct acpi_processor_performance); + if (!acpi_perf_data) { + pr_debug(DRV_NAME "Memory allocation error for acpi_perf_data.\n"); + kfree(acpi_ids_done); + return -ENOMEM; + } + for_each_possible_cpu(i) { + if (!zalloc_cpumask_var_node( + &per_cpu_ptr(acpi_perf_data, i)->shared_cpu_map, + GFP_KERNEL, cpu_to_node(i))) { + rc = -ENOMEM; + goto err_out; + } + } + + /* Do initialization in ACPI core. It is OK to fail here. */ + (void)acpi_processor_preregister_performance(acpi_perf_data); + + for_each_possible_cpu(i) { + struct acpi_processor_performance *perf; + + perf = per_cpu_ptr(acpi_perf_data, i); + rc = acpi_processor_register_performance(perf, i); + if (rc) + goto err_out; + } + rc = acpi_processor_notify_smm(THIS_MODULE); + if (rc) + goto err_unregister; + + for_each_possible_cpu(i) { + struct acpi_processor *_pr; + _pr = per_cpu(processors, i /* APIC ID */); + if (!_pr) + continue; + + if (!pr_backup) { + pr_backup = kzalloc(sizeof(struct acpi_processor), GFP_KERNEL); + memcpy(pr_backup, _pr, sizeof(struct acpi_processor)); + } + (void)upload_pm_data(_pr); + } + rc = check_acpi_ids(pr_backup); + if (rc) + goto err_unregister; + + kfree(pr_backup); + + return 0; +err_unregister: + for_each_possible_cpu(i) { + struct acpi_processor_performance *perf; + perf = per_cpu_ptr(acpi_perf_data, i); + acpi_processor_unregister_performance(perf, i); + } +err_out: + /* Freeing a NULL pointer is OK: alloc_percpu zeroes. */ + free_acpi_perf_data(); + kfree(acpi_ids_done); + return rc; +} +static void __exit xen_acpi_processor_exit(void) +{ + int i; + + kfree(acpi_ids_done); + for_each_possible_cpu(i) { + struct acpi_processor_performance *perf; + perf = per_cpu_ptr(acpi_perf_data, i); + acpi_processor_unregister_performance(perf, i); + } + free_acpi_perf_data(); +} + +MODULE_AUTHOR("Konrad Rzeszutek Wilk "); +MODULE_DESCRIPTION("Xen ACPI Processor P-states (and Cx) driver which uploads PM data to Xen hypervisor"); +MODULE_LICENSE("GPL"); + +/* We want to be loaded before the CPU freq scaling drivers are loaded. + * They are loaded in late_initcall. */ +device_initcall(xen_acpi_processor_init); +module_exit(xen_acpi_processor_exit); --- linux-3.2.0.orig/drivers/xen/Makefile +++ linux-3.2.0/drivers/xen/Makefile @@ -19,7 +19,7 @@ obj-$(CONFIG_SWIOTLB_XEN) += swiotlb-xen.o obj-$(CONFIG_XEN_DOM0) += pci.o obj-$(CONFIG_XEN_PCIDEV_BACKEND) += xen-pciback/ - +obj-$(CONFIG_XEN_ACPI_PROCESSOR) += xen-acpi-processor.o xen-evtchn-y := evtchn.o xen-gntdev-y := gntdev.o xen-gntalloc-y := gntalloc.o --- linux-3.2.0.orig/drivers/xen/xenbus/xenbus_probe_frontend.c +++ linux-3.2.0/drivers/xen/xenbus/xenbus_probe_frontend.c @@ -129,7 +129,7 @@ return xenbus_read_otherend_details(xendev, "backend-id", "backend"); } -static int is_device_connecting(struct device *dev, void *data) +static int is_device_connecting(struct device *dev, void *data, bool ignore_nonessential) { struct xenbus_device *xendev = to_xenbus_device(dev); struct device_driver *drv = data; @@ -146,16 +146,41 @@ if (drv && (dev->driver != drv)) return 0; + if (ignore_nonessential) { + /* With older QEMU, for PVonHVM guests the guest config files + * could contain: vfb = [ 'vnc=1, vnclisten=0.0.0.0'] + * which is nonsensical as there is no PV FB (there can be + * a PVKB) running as HVM guest. */ + + if ((strncmp(xendev->nodename, "device/vkbd", 11) == 0)) + return 0; + + if ((strncmp(xendev->nodename, "device/vfb", 10) == 0)) + return 0; + } xendrv = to_xenbus_driver(dev->driver); return (xendev->state < XenbusStateConnected || (xendev->state == XenbusStateConnected && xendrv->is_ready && !xendrv->is_ready(xendev))); } +static int essential_device_connecting(struct device *dev, void *data) +{ + return is_device_connecting(dev, data, true /* ignore PV[KBB+FB] */); +} +static int non_essential_device_connecting(struct device *dev, void *data) +{ + return is_device_connecting(dev, data, false); +} -static int exists_connecting_device(struct device_driver *drv) +static int exists_essential_connecting_device(struct device_driver *drv) { return bus_for_each_dev(&xenbus_frontend.bus, NULL, drv, - is_device_connecting); + essential_device_connecting); +} +static int exists_non_essential_connecting_device(struct device_driver *drv) +{ + return bus_for_each_dev(&xenbus_frontend.bus, NULL, drv, + non_essential_device_connecting); } static int print_device_status(struct device *dev, void *data) @@ -186,6 +211,23 @@ /* We only wait for device setup after most initcalls have run. */ static int ready_to_wait_for_devices; +static bool wait_loop(unsigned long start, unsigned int max_delay, + unsigned int *seconds_waited) +{ + if (time_after(jiffies, start + (*seconds_waited+5)*HZ)) { + if (!*seconds_waited) + printk(KERN_WARNING "XENBUS: Waiting for " + "devices to initialise: "); + *seconds_waited += 5; + printk("%us...", max_delay - *seconds_waited); + if (*seconds_waited == max_delay) + return true; + } + + schedule_timeout_interruptible(HZ/10); + + return false; +} /* * On a 5-minute timeout, wait for all devices currently configured. We need * to do this to guarantee that the filesystems and / or network devices @@ -209,19 +251,14 @@ if (!ready_to_wait_for_devices || !xen_domain()) return; - while (exists_connecting_device(drv)) { - if (time_after(jiffies, start + (seconds_waited+5)*HZ)) { - if (!seconds_waited) - printk(KERN_WARNING "XENBUS: Waiting for " - "devices to initialise: "); - seconds_waited += 5; - printk("%us...", 300 - seconds_waited); - if (seconds_waited == 300) - break; - } - - schedule_timeout_interruptible(HZ/10); - } + while (exists_non_essential_connecting_device(drv)) + if (wait_loop(start, 30, &seconds_waited)) + break; + + /* Skips PVKB and PVFB check.*/ + while (exists_essential_connecting_device(drv)) + if (wait_loop(start, 270, &seconds_waited)) + break; if (seconds_waited) printk("\n"); --- linux-3.2.0.orig/drivers/xen/xenbus/xenbus_xs.c +++ linux-3.2.0/drivers/xen/xenbus/xenbus_xs.c @@ -801,6 +801,12 @@ goto out; } + if (msg->hdr.len > XENSTORE_PAYLOAD_MAX) { + kfree(msg); + err = -EINVAL; + goto out; + } + body = kmalloc(msg->hdr.len + 1, GFP_NOIO | __GFP_HIGH); if (body == NULL) { kfree(msg); --- linux-3.2.0.orig/drivers/s390/block/dasd_ioctl.c +++ linux-3.2.0/drivers/s390/block/dasd_ioctl.c @@ -13,6 +13,7 @@ #define KMSG_COMPONENT "dasd" #include +#include #include #include #include --- linux-3.2.0.orig/drivers/s390/block/dasd_eckd.c +++ linux-3.2.0/drivers/s390/block/dasd_eckd.c @@ -18,12 +18,12 @@ #include /* HDIO_GETGEO */ #include #include +#include #include #include #include #include -#include #include #include #include --- linux-3.2.0.orig/drivers/s390/char/fs3270.c +++ linux-3.2.0/drivers/s390/char/fs3270.c @@ -11,6 +11,7 @@ #include #include #include +#include #include #include #include --- linux-3.2.0.orig/drivers/s390/char/vmcp.c +++ linux-3.2.0/drivers/s390/char/vmcp.c @@ -13,6 +13,7 @@ #include #include +#include #include #include #include --- linux-3.2.0.orig/drivers/s390/cio/qdio_main.c +++ linux-3.2.0/drivers/s390/cio/qdio_main.c @@ -167,7 +167,7 @@ DBF_ERROR("%4x EQBS ERROR", SCH_NO(q)); DBF_ERROR("%3d%3d%2d", count, tmp_count, nr); q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION, - 0, -1, -1, q->irq_ptr->int_parm); + q->nr, q->first_to_kick, count, q->irq_ptr->int_parm); return 0; } @@ -215,7 +215,7 @@ DBF_ERROR("%4x SQBS ERROR", SCH_NO(q)); DBF_ERROR("%3d%3d%2d", count, tmp_count, nr); q->handler(q->irq_ptr->cdev, QDIO_ERROR_ACTIVATE_CHECK_CONDITION, - 0, -1, -1, q->irq_ptr->int_parm); + q->nr, q->first_to_kick, count, q->irq_ptr->int_parm); return 0; } --- linux-3.2.0.orig/drivers/s390/cio/chsc_sch.c +++ linux-3.2.0/drivers/s390/cio/chsc_sch.c @@ -8,6 +8,7 @@ */ #include +#include #include #include #include --- linux-3.2.0.orig/drivers/s390/scsi/zfcp_cfdc.c +++ linux-3.2.0/drivers/s390/scsi/zfcp_cfdc.c @@ -11,6 +11,7 @@ #define KMSG_COMPONENT "zfcp" #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt +#include #include #include #include --- linux-3.2.0.orig/drivers/staging/Kconfig +++ linux-3.2.0/drivers/staging/Kconfig @@ -80,8 +80,6 @@ source "drivers/staging/vt6656/Kconfig" -source "drivers/staging/hv/Kconfig" - source "drivers/staging/vme/Kconfig" source "drivers/staging/sep/Kconfig" --- linux-3.2.0.orig/drivers/staging/Makefile +++ linux-3.2.0/drivers/staging/Makefile @@ -30,8 +30,7 @@ obj-$(CONFIG_USB_SERIAL_QUATECH_USB2) += quatech_usb2/ obj-$(CONFIG_OCTEON_ETHERNET) += octeon/ obj-$(CONFIG_VT6655) += vt6655/ -obj-$(CONFIG_VT6656) += vt6656/ -obj-$(CONFIG_HYPERV) += hv/ +#obj-$(CONFIG_VT6656) += vt6656/ obj-$(CONFIG_VME_BUS) += vme/ obj-$(CONFIG_DX_SEP) += sep/ obj-$(CONFIG_IIO) += iio/ --- linux-3.2.0.orig/drivers/staging/media/lirc/lirc_serial.c +++ linux-3.2.0/drivers/staging/media/lirc/lirc_serial.c @@ -836,25 +836,22 @@ return 0; } -static int init_port(void) +static int __devinit lirc_serial_probe(struct platform_device *dev) { int i, nlow, nhigh, result; result = request_irq(irq, irq_handler, (share_irq ? IRQF_SHARED : 0), LIRC_DRIVER_NAME, (void *)&hardware); - - switch (result) { - case -EBUSY: - printk(KERN_ERR LIRC_DRIVER_NAME ": IRQ %d busy\n", irq); - return -EBUSY; - case -EINVAL: - printk(KERN_ERR LIRC_DRIVER_NAME - ": Bad irq number or handler\n"); - return -EINVAL; - default: - break; - }; + if (result < 0) { + if (result == -EBUSY) + printk(KERN_ERR LIRC_DRIVER_NAME ": IRQ %d busy\n", + irq); + else if (result == -EINVAL) + printk(KERN_ERR LIRC_DRIVER_NAME + ": Bad irq number or handler\n"); + return result; + } /* Reserve io region. */ /* @@ -875,11 +872,14 @@ ": or compile the serial port driver as module and\n"); printk(KERN_WARNING LIRC_DRIVER_NAME ": make sure this module is loaded first\n"); - return -EBUSY; + result = -EBUSY; + goto exit_free_irq; } - if (hardware_init_port() < 0) - return -EINVAL; + if (hardware_init_port() < 0) { + result = -EINVAL; + goto exit_release_region; + } /* Initialize pulse/space widths */ init_timing_params(duty_cycle, freq); @@ -911,6 +911,28 @@ dprintk("Interrupt %d, port %04x obtained\n", irq, io); return 0; + +exit_release_region: + if (iommap != 0) + release_mem_region(iommap, 8 << ioshift); + else + release_region(io, 8); +exit_free_irq: + free_irq(irq, (void *)&hardware); + + return result; +} + +static int __devexit lirc_serial_remove(struct platform_device *dev) +{ + free_irq(irq, (void *)&hardware); + + if (iommap != 0) + release_mem_region(iommap, 8 << ioshift); + else + release_region(io, 8); + + return 0; } static int set_use_inc(void *data) @@ -1076,16 +1098,6 @@ static struct platform_device *lirc_serial_dev; -static int __devinit lirc_serial_probe(struct platform_device *dev) -{ - return 0; -} - -static int __devexit lirc_serial_remove(struct platform_device *dev) -{ - return 0; -} - static int lirc_serial_suspend(struct platform_device *dev, pm_message_t state) { @@ -1112,10 +1124,8 @@ { unsigned long flags; - if (hardware_init_port() < 0) { - lirc_serial_exit(); + if (hardware_init_port() < 0) return -EINVAL; - } spin_lock_irqsave(&hardware[type].lock, flags); /* Enable Interrupt */ @@ -1188,10 +1198,6 @@ { int result; - result = lirc_serial_init(); - if (result) - return result; - switch (type) { case LIRC_HOMEBREW: case LIRC_IRDEO: @@ -1211,8 +1217,7 @@ break; #endif default: - result = -EINVAL; - goto exit_serial_exit; + return -EINVAL; } if (!softcarrier) { switch (type) { @@ -1228,37 +1233,26 @@ } } - result = init_port(); - if (result < 0) - goto exit_serial_exit; + result = lirc_serial_init(); + if (result) + return result; + driver.features = hardware[type].features; driver.dev = &lirc_serial_dev->dev; driver.minor = lirc_register_driver(&driver); if (driver.minor < 0) { printk(KERN_ERR LIRC_DRIVER_NAME ": register_chrdev failed!\n"); - result = -EIO; - goto exit_release; + lirc_serial_exit(); + return -EIO; } return 0; -exit_release: - release_region(io, 8); -exit_serial_exit: - lirc_serial_exit(); - return result; } static void __exit lirc_serial_exit_module(void) { - lirc_serial_exit(); - - free_irq(irq, (void *)&hardware); - - if (iommap != 0) - release_mem_region(iommap, 8 << ioshift); - else - release_region(io, 8); lirc_unregister_driver(driver.minor); + lirc_serial_exit(); dprintk("cleaned up module\n"); } --- linux-3.2.0.orig/drivers/staging/asus_oled/asus_oled.c +++ linux-3.2.0/drivers/staging/asus_oled/asus_oled.c @@ -355,7 +355,14 @@ static int append_values(struct asus_oled_dev *odev, uint8_t val, size_t count) { - while (count-- > 0 && val) { + odev->last_val = val; + + if (val == 0) { + odev->buf_offs += count; + return 0; + } + + while (count-- > 0) { size_t x = odev->buf_offs % odev->width; size_t y = odev->buf_offs / odev->width; size_t i; @@ -406,7 +413,6 @@ ; } - odev->last_val = val; odev->buf_offs++; } @@ -805,10 +811,9 @@ static void __exit asus_oled_exit(void) { + usb_deregister(&oled_driver); class_remove_file(oled_class, &class_attr_version.attr); class_destroy(oled_class); - - usb_deregister(&oled_driver); } module_init(asus_oled_init); --- linux-3.2.0.orig/drivers/staging/rtl8192e/rtl_dm.c +++ linux-3.2.0/drivers/staging/rtl8192e/rtl_dm.c @@ -208,7 +208,7 @@ if (priv->rtllib->state != RTLLIB_LINKED) return; - call_usermodehelper(ac_dc_check_script_path, argv, envp, 1); + call_usermodehelper(ac_dc_check_script_path, argv, envp, UMH_WAIT_PROC); return; }; @@ -2296,7 +2296,7 @@ argv[0] = RadioPowerPath; argv[2] = NULL; - call_usermodehelper(RadioPowerPath, argv, envp, 1); + call_usermodehelper(RadioPowerPath, argv, envp, UMH_WAIT_PROC); } } --- linux-3.2.0.orig/drivers/staging/iio/magnetometer/hmc5843.c +++ linux-3.2.0/drivers/staging/iio/magnetometer/hmc5843.c @@ -521,7 +521,9 @@ /* Called when we have found a new HMC5843. */ static void hmc5843_init_client(struct i2c_client *client) { - struct hmc5843_data *data = i2c_get_clientdata(client); + struct iio_dev *indio_dev = i2c_get_clientdata(client); + struct hmc5843_data *data = iio_priv(indio_dev); + hmc5843_set_meas_conf(client, data->meas_conf); hmc5843_set_rate(client, data->rate); hmc5843_configure(client, data->operating_mode); --- linux-3.2.0.orig/drivers/staging/zcache/zcache-main.c +++ linux-3.2.0/drivers/staging/zcache/zcache-main.c @@ -299,10 +299,12 @@ struct zbud_page *zbpg = container_of(zh, struct zbud_page, buddy[budnum]); + spin_lock(&zbud_budlists_spinlock); spin_lock(&zbpg->lock); if (list_empty(&zbpg->bud_list)) { /* ignore zombie page... see zbud_evict_pages() */ spin_unlock(&zbpg->lock); + spin_unlock(&zbud_budlists_spinlock); return; } size = zbud_free(zh); @@ -310,7 +312,6 @@ zh_other = &zbpg->buddy[(budnum == 0) ? 1 : 0]; if (zh_other->size == 0) { /* was unbuddied: unlist and free */ chunks = zbud_size_to_chunks(size) ; - spin_lock(&zbud_budlists_spinlock); BUG_ON(list_empty(&zbud_unbuddied[chunks].list)); list_del_init(&zbpg->bud_list); zbud_unbuddied[chunks].count--; @@ -318,7 +319,6 @@ zbud_free_raw_page(zbpg); } else { /* was buddied: move remaining buddy to unbuddied list */ chunks = zbud_size_to_chunks(zh_other->size) ; - spin_lock(&zbud_budlists_spinlock); list_del_init(&zbpg->bud_list); zcache_zbud_buddied_count--; list_add_tail(&zbpg->bud_list, &zbud_unbuddied[chunks].list); @@ -358,8 +358,8 @@ if (unlikely(zbpg == NULL)) goto out; /* ok, have a page, now compress the data before taking locks */ - spin_lock(&zbpg->lock); spin_lock(&zbud_budlists_spinlock); + spin_lock(&zbpg->lock); list_add_tail(&zbpg->bud_list, &zbud_unbuddied[nchunks].list); zbud_unbuddied[nchunks].count++; zh = &zbpg->buddy[0]; @@ -389,12 +389,11 @@ zh->oid = *oid; zh->pool_id = pool_id; zh->client_id = client_id; - /* can wait to copy the data until the list locks are dropped */ - spin_unlock(&zbud_budlists_spinlock); - to = zbud_data(zh, size); memcpy(to, cdata, size); spin_unlock(&zbpg->lock); + spin_unlock(&zbud_budlists_spinlock); + zbud_cumul_chunk_counts[nchunks]++; atomic_inc(&zcache_zbud_curr_zpages); zcache_zbud_cumul_zpages++; @@ -1782,9 +1781,9 @@ * Swizzling increases objects per swaptype, increasing tmem concurrency * for heavy swaploads. Later, larger nr_cpus -> larger SWIZ_BITS * Setting SWIZ_BITS to 27 basically reconstructs the swap entry from - * frontswap_get_page() + * frontswap_get_page(), but has side-effects. Hence using 8. */ -#define SWIZ_BITS 27 +#define SWIZ_BITS 8 #define SWIZ_MASK ((1 << SWIZ_BITS) - 1) #define _oswiz(_type, _ind) ((_type << SWIZ_BITS) | (_ind & SWIZ_MASK)) #define iswiz(_ind) (_ind >> SWIZ_BITS) --- linux-3.2.0.orig/drivers/staging/rtl8712/os_intfs.c +++ linux-3.2.0/drivers/staging/rtl8712/os_intfs.c @@ -31,6 +31,7 @@ #include #include #include +#include #include "osdep_service.h" #include "drv_types.h" #include "xmit_osdep.h" @@ -264,12 +265,12 @@ void r8712_stop_drv_timers(struct _adapter *padapter) { _cancel_timer_ex(&padapter->mlmepriv.assoc_timer); - _cancel_timer_ex(&padapter->mlmepriv.sitesurveyctrl. - sitesurvey_ctrl_timer); _cancel_timer_ex(&padapter->securitypriv.tkip_timer); _cancel_timer_ex(&padapter->mlmepriv.scan_to_timer); _cancel_timer_ex(&padapter->mlmepriv.dhcp_timer); _cancel_timer_ex(&padapter->mlmepriv.wdg_timer); + _cancel_timer_ex(&padapter->mlmepriv.sitesurveyctrl. + sitesurvey_ctrl_timer); } static u8 init_default_value(struct _adapter *padapter) @@ -347,7 +348,8 @@ r8712_free_mlme_priv(&padapter->mlmepriv); r8712_free_io_queue(padapter); _free_xmit_priv(&padapter->xmitpriv); - _r8712_free_sta_priv(&padapter->stapriv); + if (padapter->fw_found) + _r8712_free_sta_priv(&padapter->stapriv); _r8712_free_recv_priv(&padapter->recvpriv); mp871xdeinit(padapter); if (pnetdev) @@ -388,6 +390,7 @@ { struct _adapter *padapter = (struct _adapter *)netdev_priv(pnetdev); + mutex_lock(&padapter->mutex_start); if (padapter->bup == false) { padapter->bDriverStopped = false; padapter->bSurpriseRemoved = false; @@ -435,11 +438,13 @@ /* start driver mlme relation timer */ start_drv_timers(padapter); padapter->ledpriv.LedControlHandler(padapter, LED_CTL_NO_LINK); + mutex_unlock(&padapter->mutex_start); return 0; netdev_open_error: padapter->bup = false; netif_carrier_off(pnetdev); netif_stop_queue(pnetdev); + mutex_unlock(&padapter->mutex_start); return -1; } @@ -471,8 +476,6 @@ r8712_free_assoc_resources(padapter); /*s2-4.*/ r8712_free_network_queue(padapter); - /* The interface is no longer Up: */ - padapter->bup = false; return 0; } --- linux-3.2.0.orig/drivers/staging/rtl8712/Kconfig +++ linux-3.2.0/drivers/staging/rtl8712/Kconfig @@ -9,13 +9,6 @@ This option adds the Realtek RTL8712 USB device such as the D-Link DWA-130. If built as a module, it will be called r8712u. -config R8712_AP - bool "Realtek RTL8712U AP code" - depends on R8712U - default N - ---help--- - This option allows the Realtek RTL8712 USB device to be an Access Point. - config R8712_TX_AGGR bool "Realtek RTL8712U Transmit Aggregation code" depends on R8712U && BROKEN --- linux-3.2.0.orig/drivers/staging/rtl8712/rtl8712_hal.h +++ linux-3.2.0/drivers/staging/rtl8712/rtl8712_hal.h @@ -145,5 +145,6 @@ }; uint rtl8712_hal_init(struct _adapter *padapter); +int rtl871x_load_fw(struct _adapter *padapter); #endif --- linux-3.2.0.orig/drivers/staging/rtl8712/drv_types.h +++ linux-3.2.0/drivers/staging/rtl8712/drv_types.h @@ -37,6 +37,8 @@ #include "wlan_bssdef.h" #include "rtl8712_spec.h" #include "rtl8712_hal.h" +#include +#include enum _NIC_VERSION { RTL8711_NIC, @@ -168,6 +170,7 @@ s32 bSurpriseRemoved; u32 IsrContent; u32 ImrContent; + bool fw_found; u8 EepromAddressSize; u8 hw_init_completed; struct task_struct *cmdThread; @@ -184,6 +187,10 @@ _workitem wkFilterRxFF0; u8 blnEnableRxFF0Filter; spinlock_t lockRxFF0Filter; + const struct firmware *fw; + struct usb_interface *pusb_intf; + struct mutex mutex_start; + struct completion rtl8712_fw_ready; }; static inline u8 *myid(struct eeprom_priv *peepriv) --- linux-3.2.0.orig/drivers/staging/rtl8712/sta_info.h +++ linux-3.2.0/drivers/staging/rtl8712/sta_info.h @@ -90,7 +90,6 @@ * curr_network(mlme_priv/security_priv/qos/ht) : AP CAP/INFO * sta_info: (AP & STA) CAP/INFO */ -#ifdef CONFIG_R8712_AP struct list_head asoc_list; struct list_head auth_list; unsigned int expire_to; @@ -98,7 +97,6 @@ unsigned int authalg; unsigned char chg_txt[128]; unsigned int tx_ra_bitmap; -#endif }; struct sta_priv { @@ -111,13 +109,11 @@ struct __queue sleep_q; struct __queue wakeup_q; struct _adapter *padapter; -#ifdef CONFIG_R8712_AP struct list_head asoc_list; struct list_head auth_list; unsigned int auth_to; /* sec, time to expire in authenticating. */ unsigned int assoc_to; /* sec, time to expire before associating. */ unsigned int expire_to; /* sec , time to expire after associated. */ -#endif }; static inline u32 wifi_mac_hash(u8 *mac) --- linux-3.2.0.orig/drivers/staging/rtl8712/rtl871x_ioctl_linux.c +++ linux-3.2.0/drivers/staging/rtl8712/rtl871x_ioctl_linux.c @@ -2380,13 +2380,7 @@ tmp_qual = padapter->recvpriv.signal; tmp_noise = padapter->recvpriv.noise; piwstats->qual.level = tmp_level; - /*piwstats->qual.qual = tmp_qual; - * The NetworkManager of Fedora 10, 13 will use the link - * quality for its display. - * So, use the fw_rssi on link quality variable because - * fw_rssi will be updated per 2 seconds. - */ - piwstats->qual.qual = tmp_level; + piwstats->qual.qual = tmp_qual; piwstats->qual.noise = tmp_noise; } piwstats->qual.updated = IW_QUAL_ALL_UPDATED; --- linux-3.2.0.orig/drivers/staging/rtl8712/hal_init.c +++ linux-3.2.0/drivers/staging/rtl8712/hal_init.c @@ -42,29 +42,56 @@ #define FWBUFF_ALIGN_SZ 512 #define MAX_DUMP_FWSZ 49152 /*default = 49152 (48k)*/ -static u32 rtl871x_open_fw(struct _adapter *padapter, void **pphfwfile_hdl, - const u8 **ppmappedfw) +static void rtl871x_load_fw_cb(const struct firmware *firmware, void *context) { + struct _adapter *padapter = context; + + complete(&padapter->rtl8712_fw_ready); + if (!firmware) { + struct usb_device *udev = padapter->dvobjpriv.pusbdev; + struct usb_interface *pusb_intf = padapter->pusb_intf; + printk(KERN_ERR "r8712u: Firmware request failed\n"); + padapter->fw_found = false; + usb_put_dev(udev); + usb_set_intfdata(pusb_intf, NULL); + return; + } + padapter->fw = firmware; + padapter->fw_found = true; + /* firmware available - start netdev */ + register_netdev(padapter->pnetdev); +} + +static const char firmware_file[] = "rtlwifi/rtl8712u.bin"; + +int rtl871x_load_fw(struct _adapter *padapter) +{ + struct device *dev = &padapter->dvobjpriv.pusbdev->dev; int rc; - const char firmware_file[] = "rtlwifi/rtl8712u.bin"; - const struct firmware **praw = (const struct firmware **) - (pphfwfile_hdl); - struct dvobj_priv *pdvobjpriv = (struct dvobj_priv *) - (&padapter->dvobjpriv); - struct usb_device *pusbdev = pdvobjpriv->pusbdev; + init_completion(&padapter->rtl8712_fw_ready); printk(KERN_INFO "r8712u: Loading firmware from \"%s\"\n", firmware_file); - rc = request_firmware(praw, firmware_file, &pusbdev->dev); - if (rc < 0) { - printk(KERN_ERR "r8712u: Unable to load firmware\n"); - printk(KERN_ERR "r8712u: Install latest linux-firmware\n"); + rc = request_firmware_nowait(THIS_MODULE, 1, firmware_file, dev, + GFP_KERNEL, padapter, rtl871x_load_fw_cb); + if (rc) + printk(KERN_ERR "r8712u: Firmware request error %d\n", rc); + return rc; +} +MODULE_FIRMWARE("rtlwifi/rtl8712u.bin"); + +static u32 rtl871x_open_fw(struct _adapter *padapter, const u8 **ppmappedfw) +{ + const struct firmware **praw = &padapter->fw; + + if (padapter->fw->size > 200000) { + printk(KERN_ERR "r8172u: Badfw->size of %d\n", + (int)padapter->fw->size); return 0; } *ppmappedfw = (u8 *)((*praw)->data); return (*praw)->size; } -MODULE_FIRMWARE("rtlwifi/rtl8712u.bin"); static void fill_fwpriv(struct _adapter *padapter, struct fw_priv *pfwpriv) { @@ -142,18 +169,17 @@ uint dump_imem_sz, imem_sz, dump_emem_sz, emem_sz; /* max = 49152; */ struct fw_hdr fwhdr; u32 ulfilelength; /* FW file size */ - void *phfwfile_hdl = NULL; const u8 *pmappedfw = NULL; u8 *ptmpchar = NULL, *ppayload, *ptr; struct tx_desc *ptx_desc; u32 txdscp_sz = sizeof(struct tx_desc); u8 ret = _FAIL; - ulfilelength = rtl871x_open_fw(padapter, &phfwfile_hdl, &pmappedfw); + ulfilelength = rtl871x_open_fw(padapter, &pmappedfw); if (pmappedfw && (ulfilelength > 0)) { update_fwhdr(&fwhdr, pmappedfw); if (chk_fwhdr(&fwhdr, ulfilelength) == _FAIL) - goto firmware_rel; + return ret; fill_fwpriv(padapter, &fwhdr.fwpriv); /* firmware check ok */ maxlen = (fwhdr.img_IMEM_size > fwhdr.img_SRAM_size) ? @@ -161,7 +187,7 @@ maxlen += txdscp_sz; ptmpchar = _malloc(maxlen + FWBUFF_ALIGN_SZ); if (ptmpchar == NULL) - goto firmware_rel; + return ret; ptx_desc = (struct tx_desc *)(ptmpchar + FWBUFF_ALIGN_SZ - ((addr_t)(ptmpchar) & (FWBUFF_ALIGN_SZ - 1))); @@ -297,8 +323,6 @@ exit_fail: kfree(ptmpchar); -firmware_rel: - release_firmware((struct firmware *)phfwfile_hdl); return ret; } --- linux-3.2.0.orig/drivers/staging/rtl8712/rtl871x_sta_mgt.c +++ linux-3.2.0/drivers/staging/rtl8712/rtl871x_sta_mgt.c @@ -42,9 +42,8 @@ _init_listhead(&psta->hash_list); _r8712_init_sta_xmit_priv(&psta->sta_xmitpriv); _r8712_init_sta_recv_priv(&psta->sta_recvpriv); -#ifdef CONFIG_R8712_AP + _init_listhead(&psta->asoc_list); _init_listhead(&psta->auth_list); -#endif } u32 _r8712_init_sta_priv(struct sta_priv *pstapriv) @@ -71,10 +70,8 @@ get_list_head(&pstapriv->free_sta_queue)); psta++; } -#ifdef CONFIG_R8712_AP _init_listhead(&pstapriv->asoc_list); _init_listhead(&pstapriv->auth_list); -#endif return _SUCCESS; } --- linux-3.2.0.orig/drivers/staging/rtl8712/usb_intf.c +++ linux-3.2.0/drivers/staging/rtl8712/usb_intf.c @@ -30,6 +30,7 @@ #include #include +#include #include "osdep_service.h" #include "drv_types.h" @@ -89,6 +90,7 @@ {USB_DEVICE(0x0DF6, 0x0045)}, {USB_DEVICE(0x0DF6, 0x0059)}, /* 11n mode disable */ {USB_DEVICE(0x0DF6, 0x004B)}, + {USB_DEVICE(0x0DF6, 0x005B)}, {USB_DEVICE(0x0DF6, 0x005D)}, {USB_DEVICE(0x0DF6, 0x0063)}, /* Sweex */ @@ -389,6 +391,7 @@ pdvobjpriv = &padapter->dvobjpriv; pdvobjpriv->padapter = padapter; padapter->dvobjpriv.pusbdev = udev; + padapter->pusb_intf = pusb_intf; usb_set_intfdata(pusb_intf, pnetdev); SET_NETDEV_DEV(pnetdev, &pusb_intf->dev); /* step 2. */ @@ -595,10 +598,11 @@ "%pM\n", mac); memcpy(pnetdev->dev_addr, mac, ETH_ALEN); } - /* step 6. Tell the network stack we exist */ - if (register_netdev(pnetdev) != 0) + /* step 6. Load the firmware asynchronously */ + if (rtl871x_load_fw(padapter)) goto error; spin_lock_init(&padapter->lockRxFF0Filter); + mutex_init(&padapter->mutex_start); return 0; error: usb_put_dev(udev); @@ -618,6 +622,10 @@ struct _adapter *padapter = netdev_priv(pnetdev); struct usb_device *udev = interface_to_usbdev(pusb_intf); + if (padapter->fw_found) + release_firmware(padapter->fw); + /* never exit with a firmware callback pending */ + wait_for_completion(&padapter->rtl8712_fw_ready); usb_set_intfdata(pusb_intf, NULL); if (padapter) { if (drvpriv.drv_registered == true) @@ -629,7 +637,8 @@ flush_scheduled_work(); udelay(1); /*Stop driver mlme relation timer */ - r8712_stop_drv_timers(padapter); + if (padapter->fw_found) + r8712_stop_drv_timers(padapter); r871x_dev_unload(padapter); r8712_free_drv_sw(padapter); } --- linux-3.2.0.orig/drivers/staging/comedi/comedi_fops.c +++ linux-3.2.0/drivers/staging/comedi/comedi_fops.c @@ -58,14 +58,35 @@ #ifdef CONFIG_COMEDI_DEBUG int comedi_debug; EXPORT_SYMBOL(comedi_debug); -module_param(comedi_debug, int, 0644); +module_param(comedi_debug, int, S_IRUGO | S_IWUSR); +MODULE_PARM_DESC(comedi_debug, + "enable comedi core and driver debugging if non-zero (default 0)" + ); #endif int comedi_autoconfig = 1; -module_param(comedi_autoconfig, bool, 0444); +module_param(comedi_autoconfig, bool, S_IRUGO); +MODULE_PARM_DESC(comedi_autoconfig, + "enable drivers to auto-configure comedi devices (default 1)"); static int comedi_num_legacy_minors; -module_param(comedi_num_legacy_minors, int, 0444); +module_param(comedi_num_legacy_minors, int, S_IRUGO); +MODULE_PARM_DESC(comedi_num_legacy_minors, + "number of comedi minor devices to reserve for non-auto-configured devices (default 0)" + ); + +unsigned int comedi_default_buf_size_kb = CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB; +module_param(comedi_default_buf_size_kb, uint, S_IRUGO | S_IWUSR); +MODULE_PARM_DESC(comedi_default_buf_size_kb, + "default asynchronous buffer size in KiB (default " + __MODULE_STRING(CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB) ")"); + +unsigned int comedi_default_buf_maxsize_kb + = CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB; +module_param(comedi_default_buf_maxsize_kb, uint, S_IRUGO | S_IWUSR); +MODULE_PARM_DESC(comedi_default_buf_maxsize_kb, + "default maximum size of asynchronous buffer in KiB (default " + __MODULE_STRING(CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB) ")"); static DEFINE_SPINLOCK(comedi_file_info_table_lock); static struct comedi_device_file_info @@ -280,7 +301,7 @@ if (ret == 0) { if (!try_module_get(dev->driver->module)) { comedi_device_detach(dev); - return -ENOSYS; + ret = -ENOSYS; } } --- linux-3.2.0.orig/drivers/staging/comedi/Kconfig +++ linux-3.2.0/drivers/staging/comedi/Kconfig @@ -14,6 +14,26 @@ This is an option for use by developers; most people should say N here. This enables comedi core and driver debugging. +config COMEDI_DEFAULT_BUF_SIZE_KB + int "Comedi default initial asynchronous buffer size in KiB" + default "2048" + depends on COMEDI != n + ---help--- + This is the default asynchronous buffer size which is used for + commands running in the background in kernel space. This + defaults to 2048 KiB of memory so that a 16 channel card + running at 10 kHz has of 2-4 seconds of buffer. + +config COMEDI_DEFAULT_BUF_MAXSIZE_KB + int "Comedi default maximum asynchronous buffer size in KiB" + default "20480" + depends on COMEDI != n + ---help--- + This is the default maximum asynchronous buffer size which can + be requested by a userspace program without root privileges. + This is set to 20480 KiB so that a fast I/O card with 16 + channels running at 100 kHz has 2-4 seconds of buffer. + menuconfig COMEDI_MISC_DRIVERS tristate "Comedi misc drivers" depends on COMEDI --- linux-3.2.0.orig/drivers/staging/comedi/internal.h +++ linux-3.2.0/drivers/staging/comedi/internal.h @@ -1,5 +1,5 @@ /* - * various internal comedi functions + * various internal comedi stuff */ int do_rangeinfo_ioctl(struct comedi_device *dev, struct comedi_rangeinfo __user *arg); @@ -10,3 +10,6 @@ void comedi_reset_async_buf(struct comedi_async *async); int comedi_buf_alloc(struct comedi_device *dev, struct comedi_subdevice *s, unsigned long new_size); + +extern unsigned int comedi_default_buf_size_kb; +extern unsigned int comedi_default_buf_maxsize_kb; --- linux-3.2.0.orig/drivers/staging/comedi/drivers.c +++ linux-3.2.0/drivers/staging/comedi/drivers.c @@ -243,6 +243,8 @@ s->len_chanlist = 1; if (s->do_cmd) { + unsigned int buf_size; + BUG_ON((s->subdev_flags & (SDF_CMD_READ | SDF_CMD_WRITE)) == 0); BUG_ON(!s->do_cmdtest); @@ -258,19 +260,20 @@ async->subdevice = s; s->async = async; -#define DEFAULT_BUF_MAXSIZE (64*1024) -#define DEFAULT_BUF_SIZE (64*1024) - - async->max_bufsize = DEFAULT_BUF_MAXSIZE; + async->max_bufsize = + comedi_default_buf_maxsize_kb * 1024; + buf_size = comedi_default_buf_size_kb * 1024; + if (buf_size > async->max_bufsize) + buf_size = async->max_bufsize; async->prealloc_buf = NULL; async->prealloc_bufsz = 0; - if (comedi_buf_alloc(dev, s, DEFAULT_BUF_SIZE) < 0) { + if (comedi_buf_alloc(dev, s, buf_size) < 0) { printk(KERN_INFO "Buffer allocation failed\n"); return -ENOMEM; } if (s->buf_change) { - ret = s->buf_change(dev, s, DEFAULT_BUF_SIZE); + ret = s->buf_change(dev, s, buf_size); if (ret < 0) return ret; } --- linux-3.2.0.orig/drivers/staging/rtl8187se/r8180_core.c +++ linux-3.2.0/drivers/staging/rtl8187se/r8180_core.c @@ -4144,7 +4144,7 @@ argv[0] = RadioPowerPath; argv[2] = NULL; - call_usermodehelper(RadioPowerPath, argv, envp, 1); + call_usermodehelper(RadioPowerPath, argv, envp, UMH_WAIT_PROC); } } --- linux-3.2.0.orig/drivers/i2c/busses/i2c-mxs.c +++ linux-3.2.0/drivers/i2c/busses/i2c-mxs.c @@ -72,6 +72,7 @@ #define MXS_I2C_QUEUESTAT (0x70) #define MXS_I2C_QUEUESTAT_RD_QUEUE_EMPTY 0x00002000 +#define MXS_I2C_QUEUESTAT_WRITE_QUEUE_CNT_MASK 0x0000001F #define MXS_I2C_QUEUECMD (0x80) @@ -219,14 +220,14 @@ int ret; int flags; - init_completion(&i2c->cmd_complete); - dev_dbg(i2c->dev, "addr: 0x%04x, len: %d, flags: 0x%x, stop: %d\n", msg->addr, msg->len, msg->flags, stop); if (msg->len == 0) return -EINVAL; + init_completion(&i2c->cmd_complete); + flags = stop ? MXS_I2C_CTRL0_POST_SEND_STOP : 0; if (msg->flags & I2C_M_RD) @@ -286,6 +287,7 @@ { struct mxs_i2c_dev *i2c = dev_id; u32 stat = readl(i2c->regs + MXS_I2C_CTRL1) & MXS_I2C_IRQ_MASK; + bool is_last_cmd; if (!stat) return IRQ_NONE; @@ -300,9 +302,14 @@ else i2c->cmd_err = 0; - complete(&i2c->cmd_complete); + is_last_cmd = (readl(i2c->regs + MXS_I2C_QUEUESTAT) & + MXS_I2C_QUEUESTAT_WRITE_QUEUE_CNT_MASK) == 0; + + if (is_last_cmd || i2c->cmd_err) + complete(&i2c->cmd_complete); writel(stat, i2c->regs + MXS_I2C_CTRL1_CLR); + return IRQ_HANDLED; } --- linux-3.2.0.orig/drivers/i2c/busses/i2c-davinci.c +++ linux-3.2.0/drivers/i2c/busses/i2c-davinci.c @@ -755,7 +755,7 @@ dev->clk = NULL; davinci_i2c_write_reg(dev, DAVINCI_I2C_MDR_REG, 0); - free_irq(IRQ_I2C, dev); + free_irq(dev->irq, dev); iounmap(dev->base); kfree(dev); --- linux-3.2.0.orig/drivers/i2c/busses/i2c-pnx.c +++ linux-3.2.0/drivers/i2c/busses/i2c-pnx.c @@ -546,8 +546,7 @@ { struct i2c_pnx_algo_data *alg_data = platform_get_drvdata(pdev); - /* FIXME: shouldn't this be clk_disable? */ - clk_enable(alg_data->clk); + clk_disable(alg_data->clk); return 0; } --- linux-3.2.0.orig/drivers/i2c/busses/Kconfig +++ linux-3.2.0/drivers/i2c/busses/Kconfig @@ -103,6 +103,7 @@ Patsburg (PCH) DH89xxCC (PCH) Panther Point (PCH) + Lynx Point (PCH) This driver can also be built as a module. If so, the module will be called i2c-i801. --- linux-3.2.0.orig/drivers/i2c/busses/i2c-omap.c +++ linux-3.2.0/drivers/i2c/busses/i2c-omap.c @@ -235,7 +235,7 @@ [OMAP_I2C_BUF_REG] = 0x94, [OMAP_I2C_CNT_REG] = 0x98, [OMAP_I2C_DATA_REG] = 0x9c, - [OMAP_I2C_SYSC_REG] = 0x20, + [OMAP_I2C_SYSC_REG] = 0x10, [OMAP_I2C_CON_REG] = 0xa4, [OMAP_I2C_OA_REG] = 0xa8, [OMAP_I2C_SA_REG] = 0xac, --- linux-3.2.0.orig/drivers/i2c/busses/i2c-eg20t.c +++ linux-3.2.0/drivers/i2c/busses/i2c-eg20t.c @@ -243,7 +243,7 @@ if (pch_clk > PCH_MAX_CLK) pch_clk = 62500; - pch_i2cbc = (pch_clk + (pch_i2c_speed * 4)) / pch_i2c_speed * 8; + pch_i2cbc = (pch_clk + (pch_i2c_speed * 4)) / (pch_i2c_speed * 8); /* Set transfer speed in I2CBC */ iowrite32(pch_i2cbc, p + PCH_I2CBC); @@ -315,7 +315,7 @@ { long ret; ret = wait_event_timeout(pch_event, - (adap->pch_event_flag != 0), msecs_to_jiffies(50)); + (adap->pch_event_flag != 0), msecs_to_jiffies(1000)); if (ret == 0) { pch_err(adap, "timeout: %x\n", adap->pch_event_flag); --- linux-3.2.0.orig/drivers/i2c/busses/i2c-viapro.c +++ linux-3.2.0/drivers/i2c/busses/i2c-viapro.c @@ -324,7 +324,7 @@ const struct pci_device_id *id) { unsigned char temp; - int error = -ENODEV; + int error; /* Determine the address of the SMBus areas */ if (force_addr) { @@ -390,6 +390,7 @@ dev_err(&pdev->dev, "SMBUS: Error: Host SMBus " "controller not enabled! - upgrade BIOS or " "use force=1\n"); + error = -ENODEV; goto release_region; } } @@ -422,9 +423,11 @@ "SMBus Via Pro adapter at %04x", vt596_smba); vt596_pdev = pci_dev_get(pdev); - if (i2c_add_adapter(&vt596_adapter)) { + error = i2c_add_adapter(&vt596_adapter); + if (error) { pci_dev_put(vt596_pdev); vt596_pdev = NULL; + goto release_region; } /* Always return failure here. This is to allow other drivers to bind --- linux-3.2.0.orig/drivers/i2c/busses/i2c-sis5595.c +++ linux-3.2.0/drivers/i2c/busses/i2c-sis5595.c @@ -147,7 +147,7 @@ u16 a; u8 val; int *i; - int retval = -ENODEV; + int retval; /* Look for imposters */ for (i = blacklist; *i != 0; i++) { @@ -223,7 +223,7 @@ error: release_region(sis5595_base + SMB_INDEX, 2); - return retval; + return -ENODEV; } static int sis5595_transaction(struct i2c_adapter *adap) --- linux-3.2.0.orig/drivers/i2c/busses/i2c-i801.c +++ linux-3.2.0/drivers/i2c/busses/i2c-i801.c @@ -51,6 +51,7 @@ Patsburg (PCH) IDF 0x1d72 32 hard yes yes yes DH89xxCC (PCH) 0x2330 32 hard yes yes yes Panther Point (PCH) 0x1e22 32 hard yes yes yes + Lynx Point (PCH) 0x8c22 32 hard yes yes yes Features supported by this driver: Software PEC no @@ -145,6 +146,7 @@ #define PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS 0x1e22 #define PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS 0x2330 #define PCI_DEVICE_ID_INTEL_5_3400_SERIES_SMBUS 0x3b30 +#define PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS 0x8c22 struct i801_priv { struct i2c_adapter adapter; @@ -633,6 +635,7 @@ { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS_IDF2) }, { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_DH89XXCC_SMBUS) }, { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_PANTHERPOINT_SMBUS) }, + { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_LYNXPOINT_SMBUS) }, { 0, } }; --- linux-3.2.0.orig/drivers/i2c/busses/i2c-ali1535.c +++ linux-3.2.0/drivers/i2c/busses/i2c-ali1535.c @@ -140,7 +140,7 @@ defined to make the transition easier. */ static int __devinit ali1535_setup(struct pci_dev *dev) { - int retval = -ENODEV; + int retval; unsigned char temp; /* Check the following things: @@ -155,6 +155,7 @@ if (ali1535_smba == 0) { dev_warn(&dev->dev, "ALI1535_smb region uninitialized - upgrade BIOS?\n"); + retval = -ENODEV; goto exit; } @@ -167,6 +168,7 @@ ali1535_driver.name)) { dev_err(&dev->dev, "ALI1535_smb region 0x%x already in use!\n", ali1535_smba); + retval = -EBUSY; goto exit; } @@ -174,6 +176,7 @@ pci_read_config_byte(dev, SMBCFG, &temp); if ((temp & ALI1535_SMBIO_EN) == 0) { dev_err(&dev->dev, "SMB device not enabled - upgrade BIOS?\n"); + retval = -ENODEV; goto exit_free; } @@ -181,6 +184,7 @@ pci_read_config_byte(dev, SMBHSTCFG, &temp); if ((temp & 1) == 0) { dev_err(&dev->dev, "SMBus controller not enabled - upgrade BIOS?\n"); + retval = -ENODEV; goto exit_free; } @@ -198,12 +202,11 @@ dev_dbg(&dev->dev, "SMBREV = 0x%X\n", temp); dev_dbg(&dev->dev, "ALI1535_smba = 0x%X\n", ali1535_smba); - retval = 0; -exit: - return retval; + return 0; exit_free: release_region(ali1535_smba, ALI1535_SMB_IOSIZE); +exit: return retval; } --- linux-3.2.0.orig/drivers/i2c/busses/i2c-tegra.c +++ linux-3.2.0/drivers/i2c/busses/i2c-tegra.c @@ -401,8 +401,6 @@ disable_irq_nosync(i2c_dev->irq); i2c_dev->irq_disabled = 1; } - - complete(&i2c_dev->msg_complete); goto err; } @@ -411,7 +409,6 @@ i2c_dev->msg_err |= I2C_ERR_NO_ACK; if (status & I2C_INT_ARBITRATION_LOST) i2c_dev->msg_err |= I2C_ERR_ARBITRATION_LOST; - complete(&i2c_dev->msg_complete); goto err; } @@ -429,14 +426,14 @@ tegra_i2c_mask_irq(i2c_dev, I2C_INT_TX_FIFO_DATA_REQ); } + i2c_writel(i2c_dev, status, I2C_INT_STATUS); + if (i2c_dev->is_dvc) + dvc_writel(i2c_dev, DVC_STATUS_I2C_DONE_INTR, DVC_STATUS); + if (status & I2C_INT_PACKET_XFER_COMPLETE) { BUG_ON(i2c_dev->msg_buf_remaining); complete(&i2c_dev->msg_complete); } - - i2c_writel(i2c_dev, status, I2C_INT_STATUS); - if (i2c_dev->is_dvc) - dvc_writel(i2c_dev, DVC_STATUS_I2C_DONE_INTR, DVC_STATUS); return IRQ_HANDLED; err: /* An error occurred, mask all interrupts */ @@ -446,6 +443,8 @@ i2c_writel(i2c_dev, status, I2C_INT_STATUS); if (i2c_dev->is_dvc) dvc_writel(i2c_dev, DVC_STATUS_I2C_DONE_INTR, DVC_STATUS); + + complete(&i2c_dev->msg_complete); return IRQ_HANDLED; } --- linux-3.2.0.orig/drivers/i2c/busses/i2c-nforce2.c +++ linux-3.2.0/drivers/i2c/busses/i2c-nforce2.c @@ -356,7 +356,7 @@ error = acpi_check_region(smbus->base, smbus->size, nforce2_driver.name); if (error) - return -1; + return error; if (!request_region(smbus->base, smbus->size, nforce2_driver.name)) { dev_err(&smbus->adapter.dev, "Error requesting region %02x .. %02X for %s\n", --- linux-3.2.0.orig/drivers/i2c/busses/i2c-sis630.c +++ linux-3.2.0/drivers/i2c/busses/i2c-sis630.c @@ -393,7 +393,7 @@ { unsigned char b; struct pci_dev *dummy = NULL; - int retval = -ENODEV, i; + int retval, i; /* check for supported SiS devices */ for (i=0; supported[i] > 0 ; i++) { @@ -418,18 +418,21 @@ */ if (pci_read_config_byte(sis630_dev, SIS630_BIOS_CTL_REG,&b)) { dev_err(&sis630_dev->dev, "Error: Can't read bios ctl reg\n"); + retval = -ENODEV; goto exit; } /* if ACPI already enabled , do nothing */ if (!(b & 0x80) && pci_write_config_byte(sis630_dev, SIS630_BIOS_CTL_REG, b | 0x80)) { dev_err(&sis630_dev->dev, "Error: Can't enable ACPI\n"); + retval = -ENODEV; goto exit; } /* Determine the ACPI base address */ if (pci_read_config_word(sis630_dev,SIS630_ACPI_BASE_REG,&acpi_base)) { dev_err(&sis630_dev->dev, "Error: Can't determine ACPI base address\n"); + retval = -ENODEV; goto exit; } @@ -445,6 +448,7 @@ sis630_driver.name)) { dev_err(&sis630_dev->dev, "SMBus registers 0x%04x-0x%04x already " "in use!\n", acpi_base + SMB_STS, acpi_base + SMB_SAA); + retval = -EBUSY; goto exit; } --- linux-3.2.0.orig/drivers/i2c/algos/i2c-algo-bit.c +++ linux-3.2.0/drivers/i2c/algos/i2c-algo-bit.c @@ -103,8 +103,14 @@ * chips may hold it low ("clock stretching") while they * are processing data internally. */ - if (time_after(jiffies, start + adap->timeout)) + if (time_after(jiffies, start + adap->timeout)) { + /* Test one last time, as we may have been preempted + * between last check and timeout test. + */ + if (getscl(adap)) + break; return -ETIMEDOUT; + } cond_resched(); } #ifdef DEBUG --- linux-3.2.0.orig/drivers/hwmon/f71805f.c +++ linux-3.2.0/drivers/hwmon/f71805f.c @@ -283,11 +283,11 @@ static inline u8 temp_to_reg(long val) { - if (val < 0) - val = 0; - else if (val > 1000 * 0xff) - val = 0xff; - return ((val + 500) / 1000); + if (val <= 0) + return 0; + if (val >= 1000 * 0xff) + return 0xff; + return (val + 500) / 1000; } /* --- linux-3.2.0.orig/drivers/hwmon/sht15.c +++ linux-3.2.0/drivers/hwmon/sht15.c @@ -883,7 +883,7 @@ static int __devinit sht15_probe(struct platform_device *pdev) { - int ret = 0; + int ret; struct sht15_data *data = kzalloc(sizeof(*data), GFP_KERNEL); u8 status = 0; @@ -901,6 +901,7 @@ init_waitqueue_head(&data->wait_queue); if (pdev->dev.platform_data == NULL) { + ret = -EINVAL; dev_err(&pdev->dev, "no platform data supplied\n"); goto err_free_data; } --- linux-3.2.0.orig/drivers/hwmon/Kconfig +++ linux-3.2.0/drivers/hwmon/Kconfig @@ -497,8 +497,9 @@ If you say yes here, you get support for JEDEC JC42.4 compliant temperature sensors, which are used on many DDR3 memory modules for mobile devices and servers. Support will include, but not be limited - to, ADT7408, CAT34TS02, CAT6095, MAX6604, MCP9805, MCP98242, MCP98243, - MCP9843, SE97, SE98, STTS424(E), TSE2002B3, and TS3000B3. + to, ADT7408, AT30TS00, CAT34TS02, CAT6095, MAX6604, MCP9804, MCP9805, + MCP98242, MCP98243, MCP9843, SE97, SE98, STTS424(E), STTS2002, + STTS3000, TSE2002B3, TSE2002GB2, TS3000B3, and TS3000GB2. This driver can also be built as a module. If so, the module will be called jc42. --- linux-3.2.0.orig/drivers/hwmon/jc42.c +++ linux-3.2.0/drivers/hwmon/jc42.c @@ -64,6 +64,7 @@ /* Manufacturer IDs */ #define ADT_MANID 0x11d4 /* Analog Devices */ +#define ATMEL_MANID 0x001f /* Atmel */ #define MAX_MANID 0x004d /* Maxim */ #define IDT_MANID 0x00b3 /* IDT */ #define MCP_MANID 0x0054 /* Microchip */ @@ -77,15 +78,25 @@ #define ADT7408_DEVID 0x0801 #define ADT7408_DEVID_MASK 0xffff +/* Atmel */ +#define AT30TS00_DEVID 0x8201 +#define AT30TS00_DEVID_MASK 0xffff + /* IDT */ #define TS3000B3_DEVID 0x2903 /* Also matches TSE2002B3 */ #define TS3000B3_DEVID_MASK 0xffff +#define TS3000GB2_DEVID 0x2912 /* Also matches TSE2002GB2 */ +#define TS3000GB2_DEVID_MASK 0xffff + /* Maxim */ #define MAX6604_DEVID 0x3e00 #define MAX6604_DEVID_MASK 0xffff /* Microchip */ +#define MCP9804_DEVID 0x0200 +#define MCP9804_DEVID_MASK 0xfffc + #define MCP98242_DEVID 0x2000 #define MCP98242_DEVID_MASK 0xfffc @@ -113,6 +124,12 @@ #define STTS424E_DEVID 0x0000 #define STTS424E_DEVID_MASK 0xfffe +#define STTS2002_DEVID 0x0300 +#define STTS2002_DEVID_MASK 0xffff + +#define STTS3000_DEVID 0x0200 +#define STTS3000_DEVID_MASK 0xffff + static u16 jc42_hysteresis[] = { 0, 1500, 3000, 6000 }; struct jc42_chips { @@ -123,8 +140,11 @@ static struct jc42_chips jc42_chips[] = { { ADT_MANID, ADT7408_DEVID, ADT7408_DEVID_MASK }, + { ATMEL_MANID, AT30TS00_DEVID, AT30TS00_DEVID_MASK }, { IDT_MANID, TS3000B3_DEVID, TS3000B3_DEVID_MASK }, + { IDT_MANID, TS3000GB2_DEVID, TS3000GB2_DEVID_MASK }, { MAX_MANID, MAX6604_DEVID, MAX6604_DEVID_MASK }, + { MCP_MANID, MCP9804_DEVID, MCP9804_DEVID_MASK }, { MCP_MANID, MCP98242_DEVID, MCP98242_DEVID_MASK }, { MCP_MANID, MCP98243_DEVID, MCP98243_DEVID_MASK }, { MCP_MANID, MCP9843_DEVID, MCP9843_DEVID_MASK }, @@ -133,6 +153,8 @@ { NXP_MANID, SE98_DEVID, SE98_DEVID_MASK }, { STM_MANID, STTS424_DEVID, STTS424_DEVID_MASK }, { STM_MANID, STTS424E_DEVID, STTS424E_DEVID_MASK }, + { STM_MANID, STTS2002_DEVID, STTS2002_DEVID_MASK }, + { STM_MANID, STTS3000_DEVID, STTS3000_DEVID_MASK }, }; /* Each client has this additional data */ @@ -159,10 +181,12 @@ static const struct i2c_device_id jc42_id[] = { { "adt7408", 0 }, + { "at30ts00", 0 }, { "cat94ts02", 0 }, { "cat6095", 0 }, { "jc42", 0 }, { "max6604", 0 }, + { "mcp9804", 0 }, { "mcp9805", 0 }, { "mcp98242", 0 }, { "mcp98243", 0 }, @@ -171,8 +195,10 @@ { "se97b", 0 }, { "se98", 0 }, { "stts424", 0 }, - { "tse2002b3", 0 }, - { "ts3000b3", 0 }, + { "stts2002", 0 }, + { "stts3000", 0 }, + { "tse2002", 0 }, + { "ts3000", 0 }, { } }; MODULE_DEVICE_TABLE(i2c, jc42_id); --- linux-3.2.0.orig/drivers/hwmon/max6639.c +++ linux-3.2.0/drivers/hwmon/max6639.c @@ -72,8 +72,8 @@ static const int rpm_ranges[] = { 2000, 4000, 8000, 16000 }; -#define FAN_FROM_REG(val, div, rpm_range) ((val) == 0 ? -1 : \ - (val) == 255 ? 0 : (rpm_ranges[rpm_range] * 30) / ((div + 1) * (val))) +#define FAN_FROM_REG(val, rpm_range) ((val) == 0 || (val) == 255 ? \ + 0 : (rpm_ranges[rpm_range] * 30) / (val)) #define TEMP_LIMIT_TO_REG(val) SENSORS_LIMIT((val) / 1000, 0, 255) /* @@ -333,7 +333,7 @@ return PTR_ERR(data); return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[attr->index], - data->ppr, data->rpm_range)); + data->rpm_range)); } static ssize_t show_alarm(struct device *dev, @@ -429,9 +429,9 @@ struct max6639_data *data = i2c_get_clientdata(client); struct max6639_platform_data *max6639_info = client->dev.platform_data; - int i = 0; + int i; int rpm_range = 1; /* default: 4000 RPM */ - int err = 0; + int err; /* Reset chip to default values, see below for GCONFIG setup */ err = i2c_smbus_write_byte_data(client, MAX6639_REG_GCONFIG, @@ -446,11 +446,6 @@ else data->ppr = 2; data->ppr -= 1; - err = i2c_smbus_write_byte_data(client, - MAX6639_REG_FAN_PPR(i), - data->ppr << 5); - if (err) - goto exit; if (max6639_info) rpm_range = rpm_range_to_reg(max6639_info->rpm_range); @@ -458,6 +453,13 @@ for (i = 0; i < 2; i++) { + /* Set Fan pulse per revolution */ + err = i2c_smbus_write_byte_data(client, + MAX6639_REG_FAN_PPR(i), + data->ppr << 6); + if (err) + goto exit; + /* Fans config PWM, RPM */ err = i2c_smbus_write_byte_data(client, MAX6639_REG_FAN_CONFIG1(i), --- linux-3.2.0.orig/drivers/hwmon/fam15h_power.c +++ linux-3.2.0/drivers/hwmon/fam15h_power.c @@ -60,7 +60,7 @@ pci_bus_read_config_dword(f4->bus, PCI_DEVFN(PCI_SLOT(f4->devfn), 5), REG_TDP_RUNNING_AVERAGE, &val); running_avg_capture = (val >> 4) & 0x3fffff; - running_avg_capture = sign_extend32(running_avg_capture, 22); + running_avg_capture = sign_extend32(running_avg_capture, 21); running_avg_range = val & 0xf; pci_bus_read_config_dword(f4->bus, PCI_DEVFN(PCI_SLOT(f4->devfn), 5), @@ -122,6 +122,41 @@ return true; } +/* + * Newer BKDG versions have an updated recommendation on how to properly + * initialize the running average range (was: 0xE, now: 0x9). This avoids + * counter saturations resulting in bogus power readings. + * We correct this value ourselves to cope with older BIOSes. + */ +static DEFINE_PCI_DEVICE_TABLE(affected_device) = { + { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_15H_NB_F4) }, + { 0 } +}; + +static void __devinit tweak_runavg_range(struct pci_dev *pdev) +{ + u32 val; + + /* + * let this quirk apply only to the current version of the + * northbridge, since future versions may change the behavior + */ + if (!pci_match_id(affected_device, pdev)) + return; + + pci_bus_read_config_dword(pdev->bus, + PCI_DEVFN(PCI_SLOT(pdev->devfn), 5), + REG_TDP_RUNNING_AVERAGE, &val); + if ((val & 0xf) != 0xe) + return; + + val &= ~0xf; + val |= 0x9; + pci_bus_write_config_dword(pdev->bus, + PCI_DEVFN(PCI_SLOT(pdev->devfn), 5), + REG_TDP_RUNNING_AVERAGE, val); +} + static void __devinit fam15h_power_init_data(struct pci_dev *f4, struct fam15h_power_data *data) { @@ -155,6 +190,13 @@ struct device *dev; int err; + /* + * though we ignore every other northbridge, we still have to + * do the tweaking on _each_ node in MCM processors as the counters + * are working hand-in-hand + */ + tweak_runavg_range(pdev); + if (!fam15h_power_is_internal_node0(pdev)) { err = -ENODEV; goto exit; --- linux-3.2.0.orig/drivers/hwmon/f75375s.c +++ linux-3.2.0/drivers/hwmon/f75375s.c @@ -159,7 +159,7 @@ static inline void f75375_write16(struct i2c_client *client, u8 reg, u16 value) { - int err = i2c_smbus_write_byte_data(client, reg, (value << 8)); + int err = i2c_smbus_write_byte_data(client, reg, (value >> 8)); if (err) return; i2c_smbus_write_byte_data(client, reg + 1, (value & 0xFF)); @@ -304,20 +304,21 @@ case 0: /* Full speed */ fanmode |= (3 << FAN_CTRL_MODE(nr)); data->pwm[nr] = 255; - f75375_write8(client, F75375_REG_FAN_PWM_DUTY(nr), - data->pwm[nr]); break; case 1: /* PWM */ fanmode |= (3 << FAN_CTRL_MODE(nr)); break; case 2: /* AUTOMATIC*/ - fanmode |= (2 << FAN_CTRL_MODE(nr)); + fanmode |= (1 << FAN_CTRL_MODE(nr)); break; case 3: /* fan speed */ break; } f75375_write8(client, F75375_REG_FAN_TIMER, fanmode); data->pwm_enable[nr] = val; + if (val == 0) + f75375_write8(client, F75375_REG_FAN_PWM_DUTY(nr), + data->pwm[nr]); return 0; } --- linux-3.2.0.orig/drivers/hwmon/ads1015.c +++ linux-3.2.0/drivers/hwmon/ads1015.c @@ -271,7 +271,7 @@ continue; err = device_create_file(&client->dev, &ads1015_in[k].dev_attr); if (err) - goto exit_free; + goto exit_remove; } data->hwmon_dev = hwmon_device_register(&client->dev); @@ -285,7 +285,6 @@ exit_remove: for (k = 0; k < ADS1015_CHANNELS; ++k) device_remove_file(&client->dev, &ads1015_in[k].dev_attr); -exit_free: kfree(data); exit: return err; --- linux-3.2.0.orig/drivers/hwmon/w83627ehf.c +++ linux-3.2.0/drivers/hwmon/w83627ehf.c @@ -39,7 +39,7 @@ 0x8860 0xa1 w83627dhg 9 5 4 3 0xa020 0xc1 0x5ca3 w83627dhg-p 9 5 4 3 0xb070 0xc1 0x5ca3 - w83627uhg 8 2 2 2 0xa230 0xc1 0x5ca3 + w83627uhg 8 2 2 3 0xa230 0xc1 0x5ca3 w83667hg 9 5 3 3 0xa510 0xc1 0x5ca3 w83667hg-b 9 5 3 4 0xb350 0xc1 0x5ca3 nct6775f 9 4 3 9 0xb470 0xc1 0x5ca3 @@ -1319,6 +1319,7 @@ { struct w83627ehf_data *data = dev_get_drvdata(dev); struct sensor_device_attribute *sensor_attr = to_sensor_dev_attr(attr); + struct w83627ehf_sio_data *sio_data = dev->platform_data; int nr = sensor_attr->index; unsigned long val; int err; @@ -1330,6 +1331,11 @@ if (val > 1) return -EINVAL; + + /* On NCT67766F, DC mode is only supported for pwm1 */ + if (sio_data->kind == nct6776 && nr && val != 1) + return -EINVAL; + mutex_lock(&data->update_lock); reg = w83627ehf_read_value(data, W83627EHF_REG_PWM_ENABLE[nr]); data->pwm_mode[nr] = val; @@ -1601,7 +1607,7 @@ val = step_time_to_reg(val, data->pwm_mode[nr]); \ mutex_lock(&data->update_lock); \ data->reg[nr] = val; \ - w83627ehf_write_value(data, W83627EHF_REG_##REG[nr], val); \ + w83627ehf_write_value(data, data->REG_##REG[nr], val); \ mutex_unlock(&data->update_lock); \ return count; \ } \ @@ -1914,9 +1920,26 @@ fan4min = 0; fan5pin = 0; } else if (sio_data->kind == nct6776) { - fan3pin = !(superio_inb(sio_data->sioreg, 0x24) & 0x40); - fan4pin = !!(superio_inb(sio_data->sioreg, 0x1C) & 0x01); - fan5pin = !!(superio_inb(sio_data->sioreg, 0x1C) & 0x02); + bool gpok = superio_inb(sio_data->sioreg, 0x27) & 0x80; + + superio_select(sio_data->sioreg, W83627EHF_LD_HWM); + regval = superio_inb(sio_data->sioreg, SIO_REG_ENABLE); + + if (regval & 0x80) + fan3pin = gpok; + else + fan3pin = !(superio_inb(sio_data->sioreg, 0x24) & 0x40); + + if (regval & 0x40) + fan4pin = gpok; + else + fan4pin = !!(superio_inb(sio_data->sioreg, 0x1C) & 0x01); + + if (regval & 0x20) + fan5pin = gpok; + else + fan5pin = !!(superio_inb(sio_data->sioreg, 0x1C) & 0x02); + fan4min = fan4pin; } else if (sio_data->kind == w83667hg || sio_data->kind == w83667hg_b) { fan3pin = 1; @@ -1981,7 +2004,8 @@ goto exit; } - data = kzalloc(sizeof(struct w83627ehf_data), GFP_KERNEL); + data = devm_kzalloc(&pdev->dev, sizeof(struct w83627ehf_data), + GFP_KERNEL); if (!data) { err = -ENOMEM; goto exit_release; @@ -2134,16 +2158,16 @@ w83627ehf_set_temp_reg_ehf(data, 3); /* - * Temperature sources for temp1 and temp2 are selected with + * Temperature sources for temp2 and temp3 are selected with * bank 0, registers 0x49 and 0x4a. */ data->temp_src[0] = 0; /* SYSTIN */ reg = w83627ehf_read_value(data, 0x49) & 0x07; /* Adjust to have the same mapping as other source registers */ if (reg == 0) - data->temp_src[1]++; + data->temp_src[1] = 1; else if (reg >= 2 && reg <= 5) - data->temp_src[1] += 2; + data->temp_src[1] = reg + 2; else /* should never happen */ data->have_temp &= ~(1 << 1); reg = w83627ehf_read_value(data, 0x4a); @@ -2475,9 +2499,8 @@ exit_remove: w83627ehf_device_remove_files(dev); - kfree(data); - platform_set_drvdata(pdev, NULL); exit_release: + platform_set_drvdata(pdev, NULL); release_region(res->start, IOREGION_LENGTH); exit: return err; @@ -2491,7 +2514,6 @@ w83627ehf_device_remove_files(&pdev->dev); release_region(data->addr, IOREGION_LENGTH); platform_set_drvdata(pdev, NULL); - kfree(data); return 0; } --- linux-3.2.0.orig/drivers/hwmon/coretemp.c +++ linux-3.2.0/drivers/hwmon/coretemp.c @@ -51,7 +51,7 @@ MODULE_PARM_DESC(tjmax, "TjMax value in degrees Celsius"); #define BASE_SYSFS_ATTR_NO 2 /* Sysfs Base attr no for coretemp */ -#define NUM_REAL_CORES 16 /* Number of Real cores per cpu */ +#define NUM_REAL_CORES 32 /* Number of Real cores per cpu */ #define CORETEMP_NAME_LENGTH 17 /* String Length of attrs */ #define MAX_CORE_ATTRS 4 /* Maximum no of basic attrs */ #define TOTAL_ATTRS (MAX_CORE_ATTRS + 1) @@ -705,6 +705,10 @@ indx = TO_ATTR_NO(cpu); + /* The core id is too big, just return */ + if (indx > MAX_CORE_DATA - 1) + return; + if (pdata->core_data[indx] && pdata->core_data[indx]->cpu == cpu) coretemp_remove_core(pdata, &pdev->dev, indx); --- linux-3.2.0.orig/drivers/hwmon/pmbus/zl6100.c +++ linux-3.2.0/drivers/hwmon/pmbus/zl6100.c @@ -33,6 +33,7 @@ struct zl6100_data { int id; ktime_t access; /* chip access time */ + int delay; /* Delay between chip accesses in uS */ struct pmbus_driver_info info; }; @@ -49,10 +50,10 @@ /* Some chips need a delay between accesses */ static inline void zl6100_wait(const struct zl6100_data *data) { - if (delay) { + if (data->delay) { s64 delta = ktime_us_delta(ktime_get(), data->access); - if (delta < delay) - udelay(delay - delta); + if (delta < data->delay) + udelay(data->delay - delta); } } @@ -177,15 +178,11 @@ data->id = mid->driver_data; /* - * ZL2008, ZL2105, and ZL6100 are known to require a wait time - * between I2C accesses. ZL2004 and ZL6105 are known to be safe. - * - * Only clear the wait time for chips known to be safe. The wait time - * can be cleared later for additional chips if tests show that it - * is not needed (in other words, better be safe than sorry). + * According to information from the chip vendor, all currently + * supported chips are known to require a wait time between I2C + * accesses. */ - if (data->id == zl2004 || data->id == zl6105) - delay = 0; + data->delay = delay; /* * Since there was a direct I2C device access above, wait before --- linux-3.2.0.orig/drivers/hwmon/pmbus/pmbus_core.c +++ linux-3.2.0/drivers/hwmon/pmbus/pmbus_core.c @@ -54,7 +54,8 @@ lcrit_alarm, crit_alarm */ #define PMBUS_IOUT_BOOLEANS_PER_PAGE 3 /* alarm, lcrit_alarm, crit_alarm */ -#define PMBUS_POUT_BOOLEANS_PER_PAGE 2 /* alarm, crit_alarm */ +#define PMBUS_POUT_BOOLEANS_PER_PAGE 3 /* cap_alarm, alarm, crit_alarm + */ #define PMBUS_MAX_BOOLEANS_PER_FAN 2 /* alarm, fault */ #define PMBUS_MAX_BOOLEANS_PER_TEMP 4 /* min_alarm, max_alarm, lcrit_alarm, crit_alarm */ --- linux-3.2.0.orig/drivers/rapidio/devices/tsi721.c +++ linux-3.2.0/drivers/rapidio/devices/tsi721.c @@ -410,13 +410,14 @@ */ mport = priv->mport; - wr_ptr = ioread32(priv->regs + TSI721_IDQ_WP(IDB_QUEUE)); - rd_ptr = ioread32(priv->regs + TSI721_IDQ_RP(IDB_QUEUE)); + wr_ptr = ioread32(priv->regs + TSI721_IDQ_WP(IDB_QUEUE)) % IDB_QSIZE; + rd_ptr = ioread32(priv->regs + TSI721_IDQ_RP(IDB_QUEUE)) % IDB_QSIZE; while (wr_ptr != rd_ptr) { idb_entry = (u64 *)(priv->idb_base + (TSI721_IDB_ENTRY_SIZE * rd_ptr)); rd_ptr++; + rd_ptr %= IDB_QSIZE; idb.msg = *idb_entry; *idb_entry = 0; --- linux-3.2.0.orig/drivers/rapidio/devices/tsi721.h +++ linux-3.2.0/drivers/rapidio/devices/tsi721.h @@ -118,34 +118,34 @@ #define TSI721_IDB_ENTRY_SIZE 64 -#define TSI721_IDQ_CTL(x) (0x20000 + (x) * 1000) +#define TSI721_IDQ_CTL(x) (0x20000 + (x) * 0x1000) #define TSI721_IDQ_SUSPEND 0x00000002 #define TSI721_IDQ_INIT 0x00000001 -#define TSI721_IDQ_STS(x) (0x20004 + (x) * 1000) +#define TSI721_IDQ_STS(x) (0x20004 + (x) * 0x1000) #define TSI721_IDQ_RUN 0x00200000 -#define TSI721_IDQ_MASK(x) (0x20008 + (x) * 1000) +#define TSI721_IDQ_MASK(x) (0x20008 + (x) * 0x1000) #define TSI721_IDQ_MASK_MASK 0xffff0000 #define TSI721_IDQ_MASK_PATT 0x0000ffff -#define TSI721_IDQ_RP(x) (0x2000c + (x) * 1000) +#define TSI721_IDQ_RP(x) (0x2000c + (x) * 0x1000) #define TSI721_IDQ_RP_PTR 0x0007ffff -#define TSI721_IDQ_WP(x) (0x20010 + (x) * 1000) +#define TSI721_IDQ_WP(x) (0x20010 + (x) * 0x1000) #define TSI721_IDQ_WP_PTR 0x0007ffff -#define TSI721_IDQ_BASEL(x) (0x20014 + (x) * 1000) +#define TSI721_IDQ_BASEL(x) (0x20014 + (x) * 0x1000) #define TSI721_IDQ_BASEL_ADDR 0xffffffc0 -#define TSI721_IDQ_BASEU(x) (0x20018 + (x) * 1000) -#define TSI721_IDQ_SIZE(x) (0x2001c + (x) * 1000) +#define TSI721_IDQ_BASEU(x) (0x20018 + (x) * 0x1000) +#define TSI721_IDQ_SIZE(x) (0x2001c + (x) * 0x1000) #define TSI721_IDQ_SIZE_VAL(size) (__fls(size) - 4) #define TSI721_IDQ_SIZE_MIN 512 #define TSI721_IDQ_SIZE_MAX (512 * 1024) -#define TSI721_SR_CHINT(x) (0x20040 + (x) * 1000) -#define TSI721_SR_CHINTE(x) (0x20044 + (x) * 1000) -#define TSI721_SR_CHINTSET(x) (0x20048 + (x) * 1000) +#define TSI721_SR_CHINT(x) (0x20040 + (x) * 0x1000) +#define TSI721_SR_CHINTE(x) (0x20044 + (x) * 0x1000) +#define TSI721_SR_CHINTSET(x) (0x20048 + (x) * 0x1000) #define TSI721_SR_CHINT_ODBOK 0x00000020 #define TSI721_SR_CHINT_IDBQRCV 0x00000010 #define TSI721_SR_CHINT_SUSP 0x00000008 @@ -156,7 +156,7 @@ #define TSI721_IBWIN_NUM 8 -#define TSI721_IBWINLB(x) (0x29000 + (x) * 20) +#define TSI721_IBWINLB(x) (0x29000 + (x) * 0x20) #define TSI721_IBWINLB_BA 0xfffff000 #define TSI721_IBWINLB_WEN 0x00000001 @@ -187,13 +187,13 @@ */ #define TSI721_OBWIN_NUM TSI721_PC2SR_WINS -#define TSI721_OBWINLB(x) (0x40000 + (x) * 20) +#define TSI721_OBWINLB(x) (0x40000 + (x) * 0x20) #define TSI721_OBWINLB_BA 0xffff8000 #define TSI721_OBWINLB_WEN 0x00000001 -#define TSI721_OBWINUB(x) (0x40004 + (x) * 20) +#define TSI721_OBWINUB(x) (0x40004 + (x) * 0x20) -#define TSI721_OBWINSZ(x) (0x40008 + (x) * 20) +#define TSI721_OBWINSZ(x) (0x40008 + (x) * 0x20) #define TSI721_OBWINSZ_SIZE 0x00001f00 #define TSI721_OBWIN_SIZE(size) (__fls(size) - 15) --- linux-3.2.0.orig/drivers/hid/Kconfig +++ linux-3.2.0/drivers/hid/Kconfig @@ -335,6 +335,7 @@ Say Y here if you have one of the following devices: - 3M PCT touch screens - ActionStar dual touch panels + - Atmel panels - Cando dual touch panels - Chunghwa panels - CVTouch panels @@ -350,11 +351,13 @@ - MosArt dual-touch panels - PenMount dual touch panels - Pixcir dual touch panels + - Quanta panels - eGalax dual-touch panels, including the Joojoo and Wetab tablets - Stantum multitouch panels - Touch International Panels - Unitec Panels - XAT optical touch panels + - Xiroku optical touch panels If unsure, say N. @@ -466,12 +469,6 @@ Support for Primax devices that are not fully compliant with the HID standard. -config HID_QUANTA - tristate "Quanta Optical Touch panels" - depends on USB_HID - ---help--- - Support for Quanta Optical Touch dual-touch panels. - config HID_ROCCAT tristate "Roccat special event support" depends on USB_HID @@ -620,6 +617,7 @@ depends on BT_HIDP depends on LEDS_CLASS select POWER_SUPPLY + select INPUT_FF_MEMLESS ---help--- Support for the Nintendo Wii Remote bluetooth device. @@ -643,6 +641,12 @@ ---help--- Support for Zydacron remote control. +config HYPERV_MOUSE + tristate "Microsoft Hyper-V mouse driver" + depends on HYPERV + ---help--- + Select this option to enable the Hyper-V mouse driver. + endmenu endif # HID_SUPPORT --- linux-3.2.0.orig/drivers/hid/hid-multitouch.c +++ linux-3.2.0/drivers/hid/hid-multitouch.c @@ -89,15 +89,17 @@ #define MT_CLS_SERIAL 0x0002 #define MT_CLS_CONFIDENCE 0x0003 -#define MT_CLS_CONFIDENCE_MINUS_ONE 0x0004 -#define MT_CLS_DUAL_INRANGE_CONTACTID 0x0005 -#define MT_CLS_DUAL_INRANGE_CONTACTNUMBER 0x0006 -#define MT_CLS_DUAL_NSMU_CONTACTID 0x0007 +#define MT_CLS_CONFIDENCE_CONTACT_ID 0x0004 +#define MT_CLS_CONFIDENCE_MINUS_ONE 0x0005 +#define MT_CLS_DUAL_INRANGE_CONTACTID 0x0006 +#define MT_CLS_DUAL_INRANGE_CONTACTNUMBER 0x0007 +#define MT_CLS_DUAL_NSMU_CONTACTID 0x0008 /* vendor specific classes */ #define MT_CLS_3M 0x0101 #define MT_CLS_CYPRESS 0x0102 #define MT_CLS_EGALAX 0x0103 +#define MT_CLS_EGALAX_SERIAL 0x0104 #define MT_DEFAULT_MAXCONTACT 10 @@ -140,6 +142,9 @@ .quirks = MT_QUIRK_ALWAYS_VALID}, { .name = MT_CLS_CONFIDENCE, .quirks = MT_QUIRK_VALID_IS_CONFIDENCE }, + { .name = MT_CLS_CONFIDENCE_CONTACT_ID, + .quirks = MT_QUIRK_VALID_IS_CONFIDENCE | + MT_QUIRK_SLOT_IS_CONTACTID }, { .name = MT_CLS_CONFIDENCE_MINUS_ONE, .quirks = MT_QUIRK_VALID_IS_CONFIDENCE | MT_QUIRK_SLOT_IS_CONTACTID_MINUS_ONE }, @@ -177,6 +182,12 @@ .sn_move = 4096, .sn_pressure = 32, }, + { .name = MT_CLS_EGALAX_SERIAL, + .quirks = MT_QUIRK_SLOT_IS_CONTACTID | + MT_QUIRK_ALWAYS_VALID, + .sn_move = 4096, + .sn_pressure = 32, + }, { } }; @@ -609,12 +620,20 @@ { .driver_data = MT_CLS_3M, HID_USB_DEVICE(USB_VENDOR_ID_3M, USB_DEVICE_ID_3M2256) }, + { .driver_data = MT_CLS_3M, + HID_USB_DEVICE(USB_VENDOR_ID_3M, + USB_DEVICE_ID_3M3266) }, /* ActionStar panels */ { .driver_data = MT_CLS_DEFAULT, HID_USB_DEVICE(USB_VENDOR_ID_ACTIONSTAR, USB_DEVICE_ID_ACTIONSTAR_1011) }, + /* Atmel panels */ + { .driver_data = MT_CLS_SERIAL, + HID_USB_DEVICE(USB_VENDOR_ID_ATMEL, + USB_DEVICE_ID_ATMEL_MULTITOUCH) }, + /* Cando panels */ { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTNUMBER, HID_USB_DEVICE(USB_VENDOR_ID_CANDO, @@ -645,23 +664,53 @@ USB_DEVICE_ID_CYPRESS_TRUETOUCH) }, /* eGalax devices (resistive) */ - { .driver_data = MT_CLS_EGALAX, + { .driver_data = MT_CLS_EGALAX, HID_USB_DEVICE(USB_VENDOR_ID_DWAV, - USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH) }, - { .driver_data = MT_CLS_EGALAX, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480D) }, + { .driver_data = MT_CLS_EGALAX, HID_USB_DEVICE(USB_VENDOR_ID_DWAV, - USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH3) }, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480E) }, /* eGalax devices (capacitive) */ - { .driver_data = MT_CLS_EGALAX, + { .driver_data = MT_CLS_EGALAX, + HID_USB_DEVICE(USB_VENDOR_ID_DWAV, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_720C) }, + { .driver_data = MT_CLS_EGALAX_SERIAL, + HID_USB_DEVICE(USB_VENDOR_ID_DWAV, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7207) }, + { .driver_data = MT_CLS_EGALAX_SERIAL, + HID_USB_DEVICE(USB_VENDOR_ID_DWAV, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_725E) }, + { .driver_data = MT_CLS_EGALAX_SERIAL, + HID_USB_DEVICE(USB_VENDOR_ID_DWAV, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7224) }, + { .driver_data = MT_CLS_EGALAX_SERIAL, + HID_USB_DEVICE(USB_VENDOR_ID_DWAV, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_722A) }, + { .driver_data = MT_CLS_EGALAX, + HID_USB_DEVICE(USB_VENDOR_ID_DWAV, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_726B) }, + { .driver_data = MT_CLS_EGALAX_SERIAL, + HID_USB_DEVICE(USB_VENDOR_ID_DWAV, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7262) }, + { .driver_data = MT_CLS_EGALAX, HID_USB_DEVICE(USB_VENDOR_ID_DWAV, - USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH1) }, - { .driver_data = MT_CLS_EGALAX, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72A1) }, + { .driver_data = MT_CLS_EGALAX_SERIAL, HID_USB_DEVICE(USB_VENDOR_ID_DWAV, - USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH2) }, - { .driver_data = MT_CLS_EGALAX, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72AA) }, + { .driver_data = MT_CLS_EGALAX, HID_USB_DEVICE(USB_VENDOR_ID_DWAV, - USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH4) }, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72FA) }, + { .driver_data = MT_CLS_EGALAX, + HID_USB_DEVICE(USB_VENDOR_ID_DWAV, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7302) }, + { .driver_data = MT_CLS_EGALAX_SERIAL, + HID_USB_DEVICE(USB_VENDOR_ID_DWAV, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7349) }, + { .driver_data = MT_CLS_EGALAX_SERIAL, + HID_USB_DEVICE(USB_VENDOR_ID_DWAV, + USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_A001) }, /* Elo TouchSystems IntelliTouch Plus panel */ { .driver_data = MT_CLS_DUAL_NSMU_CONTACTID, @@ -678,6 +727,11 @@ HID_USB_DEVICE(USB_VENDOR_ID_GOODTOUCH, USB_DEVICE_ID_GOODTOUCH_000f) }, + /* Hanvon panels */ + { .driver_data = MT_CLS_DUAL_INRANGE_CONTACTID, + HID_USB_DEVICE(USB_VENDOR_ID_HANVON_ALT, + USB_DEVICE_ID_HANVON_ALT_MULTITOUCH) }, + /* Ideacom panel */ { .driver_data = MT_CLS_SERIAL, HID_USB_DEVICE(USB_VENDOR_ID_IDEACOM, @@ -730,6 +784,17 @@ HID_USB_DEVICE(USB_VENDOR_ID_CANDO, USB_DEVICE_ID_CANDO_PIXCIR_MULTI_TOUCH) }, + /* Quanta-based panels */ + { .driver_data = MT_CLS_CONFIDENCE_CONTACT_ID, + HID_USB_DEVICE(USB_VENDOR_ID_QUANTA, + USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH) }, + { .driver_data = MT_CLS_CONFIDENCE_CONTACT_ID, + HID_USB_DEVICE(USB_VENDOR_ID_QUANTA, + USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH_3001) }, + { .driver_data = MT_CLS_CONFIDENCE_CONTACT_ID, + HID_USB_DEVICE(USB_VENDOR_ID_QUANTA, + USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH_3008) }, + /* Stantum panels */ { .driver_data = MT_CLS_CONFIDENCE, HID_USB_DEVICE(USB_VENDOR_ID_STANTUM, @@ -758,6 +823,35 @@ HID_USB_DEVICE(USB_VENDOR_ID_XAT, USB_DEVICE_ID_XAT_CSR) }, + /* Xiroku */ + { .driver_data = MT_CLS_DEFAULT, + HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, + USB_DEVICE_ID_XIROKU_SPX) }, + { .driver_data = MT_CLS_DEFAULT, + HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, + USB_DEVICE_ID_XIROKU_MPX) }, + { .driver_data = MT_CLS_DEFAULT, + HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, + USB_DEVICE_ID_XIROKU_CSR) }, + { .driver_data = MT_CLS_DEFAULT, + HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, + USB_DEVICE_ID_XIROKU_SPX1) }, + { .driver_data = MT_CLS_DEFAULT, + HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, + USB_DEVICE_ID_XIROKU_MPX1) }, + { .driver_data = MT_CLS_DEFAULT, + HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, + USB_DEVICE_ID_XIROKU_CSR1) }, + { .driver_data = MT_CLS_DEFAULT, + HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, + USB_DEVICE_ID_XIROKU_SPX2) }, + { .driver_data = MT_CLS_DEFAULT, + HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, + USB_DEVICE_ID_XIROKU_MPX2) }, + { .driver_data = MT_CLS_DEFAULT, + HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, + USB_DEVICE_ID_XIROKU_CSR2) }, + { } }; MODULE_DEVICE_TABLE(hid, mt_devices); --- linux-3.2.0.orig/drivers/hid/hid-wacom.c +++ linux-3.2.0/drivers/hid/hid-wacom.c @@ -9,6 +9,7 @@ * Copyright (c) 2008 Jiri Slaby * Copyright (c) 2006 Andrew Zabolotny * Copyright (c) 2009 Bastien Nocera + * Copyright (c) 2011 PrzemysÅ‚aw Firszt */ /* @@ -33,6 +34,7 @@ struct wacom_data { __u16 tool; unsigned char butstate; + __u8 features; unsigned char high_speed; #ifdef CONFIG_HID_WACOM_POWER_SUPPLY int battery_capacity; @@ -107,6 +109,19 @@ } #endif +static void wacom_set_features(struct hid_device *hdev) +{ + int ret; + __u8 rep_data[2]; + + /*set high speed, tablet mode*/ + rep_data[0] = 0x03; + rep_data[1] = 0x20; + ret = hdev->hid_output_raw_report(hdev, rep_data, 2, + HID_FEATURE_REPORT); + return; +} + static void wacom_poke(struct hid_device *hdev, u8 speed) { struct wacom_data *wdata = hid_get_drvdata(hdev); @@ -177,26 +192,13 @@ static DEVICE_ATTR(speed, S_IRUGO | S_IWUSR | S_IWGRP, wacom_show_speed, wacom_store_speed); -static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report, - u8 *raw_data, int size) +static int wacom_gr_parse_report(struct hid_device *hdev, + struct wacom_data *wdata, + struct input_dev *input, unsigned char *data) { - struct wacom_data *wdata = hid_get_drvdata(hdev); - struct hid_input *hidinput; - struct input_dev *input; - unsigned char *data = (unsigned char *) raw_data; int tool, x, y, rw; - if (!(hdev->claimed & HID_CLAIMED_INPUT)) - return 0; - tool = 0; - hidinput = list_entry(hdev->inputs.next, struct hid_input, list); - input = hidinput->input; - - /* Check if this is a tablet report */ - if (data[0] != 0x03) - return 0; - /* Get X & Y positions */ x = le16_to_cpu(*(__le16 *) &data[2]); y = le16_to_cpu(*(__le16 *) &data[4]); @@ -304,6 +306,121 @@ return 1; } +static void wacom_i4_parse_pen_report(struct wacom_data *wdata, + struct input_dev *input, unsigned char *data) +{ + __u16 x, y, pressure; + __u32 id; + + switch (data[1]) { + case 0x80: /* Out of proximity report */ + wdata->tool = 0; + input_report_key(input, BTN_TOUCH, 0); + input_report_abs(input, ABS_PRESSURE, 0); + input_report_key(input, wdata->tool, 0); + input_sync(input); + break; + case 0xC2: /* Tool report */ + id = ((data[2] << 4) | (data[3] >> 4) | + ((data[7] & 0x0f) << 20) | + ((data[8] & 0xf0) << 12)) & 0xfffff; + + switch (id) { + case 0x802: + wdata->tool = BTN_TOOL_PEN; + break; + case 0x80A: + wdata->tool = BTN_TOOL_RUBBER; + break; + } + break; + default: /* Position/pressure report */ + x = data[2] << 9 | data[3] << 1 | ((data[9] & 0x02) >> 1); + y = data[4] << 9 | data[5] << 1 | (data[9] & 0x01); + pressure = (data[6] << 3) | ((data[7] & 0xC0) >> 5) + | (data[1] & 0x01); + + input_report_key(input, BTN_TOUCH, pressure > 1); + + input_report_key(input, BTN_STYLUS, data[1] & 0x02); + input_report_key(input, BTN_STYLUS2, data[1] & 0x04); + input_report_key(input, wdata->tool, 1); + input_report_abs(input, ABS_X, x); + input_report_abs(input, ABS_Y, y); + input_report_abs(input, ABS_PRESSURE, pressure); + input_sync(input); + break; + } + + return; +} + +static void wacom_i4_parse_report(struct hid_device *hdev, + struct wacom_data *wdata, + struct input_dev *input, unsigned char *data) +{ + switch (data[0]) { + case 0x00: /* Empty report */ + break; + case 0x02: /* Pen report */ + wacom_i4_parse_pen_report(wdata, input, data); + break; + case 0x03: /* Features Report */ + wdata->features = data[2]; + break; + case 0x0C: /* Button report */ + break; + default: + hid_err(hdev, "Unknown report: %d,%d\n", data[0], data[1]); + break; + } +} + +static int wacom_raw_event(struct hid_device *hdev, struct hid_report *report, + u8 *raw_data, int size) +{ + struct wacom_data *wdata = hid_get_drvdata(hdev); + struct hid_input *hidinput; + struct input_dev *input; + unsigned char *data = (unsigned char *) raw_data; + int i; + + if (!(hdev->claimed & HID_CLAIMED_INPUT)) + return 0; + + hidinput = list_entry(hdev->inputs.next, struct hid_input, list); + input = hidinput->input; + + /* Check if this is a tablet report */ + if (data[0] != 0x03) + return 0; + + switch (hdev->product) { + case USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH: + return wacom_gr_parse_report(hdev, wdata, input, data); + break; + case USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH: + i = 1; + + switch (data[0]) { + case 0x04: + wacom_i4_parse_report(hdev, wdata, input, data + i); + i += 10; + /* fall through */ + case 0x03: + wacom_i4_parse_report(hdev, wdata, input, data + i); + i += 10; + wacom_i4_parse_report(hdev, wdata, input, data + i); + break; + default: + hid_err(hdev, "Unknown report: %d,%d size:%d\n", + data[0], data[1], size); + return 0; + } + } + return 1; +} + static int wacom_input_mapped(struct hid_device *hdev, struct hid_input *hi, struct hid_field *field, struct hid_usage *usage, unsigned long **bit, int *max) @@ -338,10 +455,19 @@ __set_bit(BTN_TOOL_RUBBER, input->keybit); __set_bit(BTN_TOOL_MOUSE, input->keybit); - input_set_abs_params(input, ABS_X, 0, 16704, 4, 0); - input_set_abs_params(input, ABS_Y, 0, 12064, 4, 0); - input_set_abs_params(input, ABS_PRESSURE, 0, 511, 0, 0); - input_set_abs_params(input, ABS_DISTANCE, 0, 32, 0, 0); + switch (hdev->product) { + case USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH: + input_set_abs_params(input, ABS_X, 0, 16704, 4, 0); + input_set_abs_params(input, ABS_Y, 0, 12064, 4, 0); + input_set_abs_params(input, ABS_PRESSURE, 0, 511, 0, 0); + input_set_abs_params(input, ABS_DISTANCE, 0, 32, 0, 0); + break; + case USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH: + input_set_abs_params(input, ABS_X, 0, 40640, 4, 0); + input_set_abs_params(input, ABS_Y, 0, 25400, 4, 0); + input_set_abs_params(input, ABS_PRESSURE, 0, 2047, 0, 0); + break; + } return 0; } @@ -378,8 +504,16 @@ hid_warn(hdev, "can't create sysfs speed attribute err: %d\n", ret); - /* Set Wacom mode 2 with high reporting speed */ - wacom_poke(hdev, 1); + switch (hdev->product) { + case USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH: + /* Set Wacom mode 2 with high reporting speed */ + wacom_poke(hdev, 1); + break; + case USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH: + wdata->features = 0; + wacom_set_features(hdev); + break; + } #ifdef CONFIG_HID_WACOM_POWER_SUPPLY wdata->battery.properties = wacom_battery_props; @@ -389,6 +523,8 @@ wdata->battery.type = POWER_SUPPLY_TYPE_BATTERY; wdata->battery.use_for_apm = 0; + power_supply_powers(&wdata->battery, &hdev->dev); + ret = power_supply_register(&hdev->dev, &wdata->battery); if (ret) { hid_warn(hdev, "can't create sysfs battery attribute, err: %d\n", @@ -396,6 +532,8 @@ goto err_battery; } + power_supply_powers(&wdata->battery, &hdev->dev); + wdata->ac.properties = wacom_ac_props; wdata->ac.num_properties = ARRAY_SIZE(wacom_ac_props); wdata->ac.get_property = wacom_ac_get_property; @@ -403,12 +541,16 @@ wdata->ac.type = POWER_SUPPLY_TYPE_MAINS; wdata->ac.use_for_apm = 0; + power_supply_powers(&wdata->battery, &hdev->dev); + ret = power_supply_register(&hdev->dev, &wdata->ac); if (ret) { hid_warn(hdev, "can't create ac battery attribute, err: %d\n", ret); goto err_ac; } + + power_supply_powers(&wdata->ac, &hdev->dev); #endif return 0; @@ -441,6 +583,7 @@ static const struct hid_device_id wacom_devices[] = { { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH) }, + { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH) }, { } }; --- linux-3.2.0.orig/drivers/hid/hid-ids.h +++ linux-3.2.0/drivers/hid/hid-ids.h @@ -21,6 +21,7 @@ #define USB_VENDOR_ID_3M 0x0596 #define USB_DEVICE_ID_3M1968 0x0500 #define USB_DEVICE_ID_3M2256 0x0502 +#define USB_DEVICE_ID_3M3266 0x0506 #define USB_VENDOR_ID_A4TECH 0x09da #define USB_DEVICE_ID_A4TECH_WCP32PU 0x0006 @@ -58,6 +59,9 @@ #define USB_VENDOR_ID_AIRCABLE 0x16CA #define USB_DEVICE_ID_AIRCABLE1 0x1502 +#define USB_VENDOR_ID_AIREN 0x1a2c +#define USB_DEVICE_ID_AIREN_SLIMPLUS 0x0002 + #define USB_VENDOR_ID_ALCOR 0x058f #define USB_DEVICE_ID_ALCOR_USBRS232 0x9720 @@ -145,6 +149,9 @@ #define USB_DEVICE_ID_ATEN_4PORTKVM 0x2205 #define USB_DEVICE_ID_ATEN_4PORTKVMC 0x2208 +#define USB_VENDOR_ID_ATMEL 0x03eb +#define USB_DEVICE_ID_ATMEL_MULTITOUCH 0x211c + #define USB_VENDOR_ID_AVERMEDIA 0x07ca #define USB_DEVICE_ID_AVER_FM_MR800 0xb800 @@ -185,6 +192,7 @@ #define USB_DEVICE_ID_CHICONY_TACTICAL_PAD 0x0418 #define USB_DEVICE_ID_CHICONY_MULTI_TOUCH 0xb19d #define USB_DEVICE_ID_CHICONY_WIRELESS 0x0618 +#define USB_DEVICE_ID_CHICONY_WIRELESS2 0x1123 #define USB_VENDOR_ID_CHUNGHWAT 0x2247 #define USB_DEVICE_ID_CHUNGHWAT_MULTITOUCH 0x0001 @@ -230,11 +238,21 @@ #define USB_VENDOR_ID_DWAV 0x0eef #define USB_DEVICE_ID_EGALAX_TOUCHCONTROLLER 0x0001 -#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH 0x480d -#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH1 0x720c -#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH2 0x72a1 -#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH3 0x480e -#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH4 0x726b +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480D 0x480d +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480E 0x480e +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7207 0x7207 +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_720C 0x720c +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7224 0x7224 +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_722A 0x722A +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_725E 0x725e +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7262 0x7262 +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_726B 0x726b +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72AA 0x72aa +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72A1 0x72a1 +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72FA 0x72fa +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7302 0x7302 +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7349 0x7349 +#define USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_A001 0xa001 #define USB_VENDOR_ID_ELECOM 0x056e #define USB_DEVICE_ID_ELECOM_BM084 0x0061 @@ -356,6 +374,9 @@ #define USB_VENDOR_ID_HANVON 0x20b3 #define USB_DEVICE_ID_HANVON_MULTITOUCH 0x0a18 +#define USB_VENDOR_ID_HANVON_ALT 0x22ed +#define USB_DEVICE_ID_HANVON_ALT_MULTITOUCH 0x1010 + #define USB_VENDOR_ID_HAPP 0x078b #define USB_DEVICE_ID_UGCI_DRIVING 0x0010 #define USB_DEVICE_ID_UGCI_FLYING 0x0020 @@ -581,7 +602,9 @@ #define USB_DEVICE_ID_PRODIGE_CORDLESS 0x3062 #define USB_VENDOR_ID_QUANTA 0x0408 -#define USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH 0x3000 +#define USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH 0x3000 +#define USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH_3001 0x3001 +#define USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH_3008 0x3008 #define USB_DEVICE_ID_PIXART_IMAGING_INC_OPTICAL_TOUCH_SCREEN 0x3001 #define USB_VENDOR_ID_ROCCAT 0x1e7d @@ -679,6 +702,7 @@ #define USB_VENDOR_ID_WACOM 0x056a #define USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH 0x81 +#define USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH 0x00BD #define USB_VENDOR_ID_WALTOP 0x172f #define USB_DEVICE_ID_WALTOP_SLIM_TABLET_5_8_INCH 0x0032 @@ -707,6 +731,17 @@ #define USB_VENDOR_ID_XAT 0x2505 #define USB_DEVICE_ID_XAT_CSR 0x0220 +#define USB_VENDOR_ID_XIROKU 0x1477 +#define USB_DEVICE_ID_XIROKU_SPX 0x1006 +#define USB_DEVICE_ID_XIROKU_MPX 0x1007 +#define USB_DEVICE_ID_XIROKU_CSR 0x100e +#define USB_DEVICE_ID_XIROKU_SPX1 0x1021 +#define USB_DEVICE_ID_XIROKU_CSR1 0x1022 +#define USB_DEVICE_ID_XIROKU_MPX1 0x1023 +#define USB_DEVICE_ID_XIROKU_SPX2 0x1024 +#define USB_DEVICE_ID_XIROKU_CSR2 0x1025 +#define USB_DEVICE_ID_XIROKU_MPX2 0x1026 + #define USB_VENDOR_ID_YEALINK 0x6993 #define USB_DEVICE_ID_YEALINK_P1K_P4K_B2K 0xb001 --- linux-3.2.0.orig/drivers/hid/hid-magicmouse.c +++ linux-3.2.0/drivers/hid/hid-magicmouse.c @@ -418,6 +418,8 @@ __set_bit(BTN_TOOL_TRIPLETAP, input->keybit); __set_bit(BTN_TOOL_QUADTAP, input->keybit); __set_bit(BTN_TOUCH, input->keybit); + __set_bit(INPUT_PROP_POINTER, input->propbit); + __set_bit(INPUT_PROP_BUTTONPAD, input->propbit); } if (report_touches) { --- linux-3.2.0.orig/drivers/hid/hid-logitech-dj.c +++ linux-3.2.0/drivers/hid/hid-logitech-dj.c @@ -26,6 +26,7 @@ #include #include #include +#include #include "usbhid/usbhid.h" #include "hid-ids.h" #include "hid-logitech-dj.h" @@ -265,8 +266,8 @@ goto dj_device_allocate_fail; } - dj_dev->reports_supported = le32_to_cpu( - dj_report->report_params[DEVICE_PAIRED_RF_REPORT_TYPE]); + dj_dev->reports_supported = get_unaligned_le32( + dj_report->report_params + DEVICE_PAIRED_RF_REPORT_TYPE); dj_dev->hdev = dj_hiddev; dj_dev->dj_receiver_dev = djrcv_dev; dj_dev->device_index = dj_report->device_index; --- linux-3.2.0.orig/drivers/hid/Makefile +++ linux-3.2.0/drivers/hid/Makefile @@ -51,7 +51,6 @@ obj-$(CONFIG_HID_NTRIG) += hid-ntrig.o obj-$(CONFIG_HID_ORTEK) += hid-ortek.o obj-$(CONFIG_HID_PRODIKEYS) += hid-prodikeys.o -obj-$(CONFIG_HID_QUANTA) += hid-quanta.o obj-$(CONFIG_HID_PANTHERLORD) += hid-pl.o obj-$(CONFIG_HID_PETALYNX) += hid-petalynx.o obj-$(CONFIG_HID_PICOLCD) += hid-picolcd.o @@ -78,6 +77,7 @@ obj-$(CONFIG_HID_WACOM) += hid-wacom.o obj-$(CONFIG_HID_WALTOP) += hid-waltop.o obj-$(CONFIG_HID_WIIMOTE) += hid-wiimote.o +obj-$(CONFIG_HYPERV_MOUSE) += hid-hyperv.o obj-$(CONFIG_USB_HID) += usbhid/ obj-$(CONFIG_USB_MOUSE) += usbhid/ --- linux-3.2.0.orig/drivers/hid/hid-hyperv.c +++ linux-3.2.0/drivers/hid/hid-hyperv.c @@ -0,0 +1,587 @@ +/* + * Copyright (c) 2009, Citrix Systems, Inc. + * Copyright (c) 2010, Microsoft Corporation. + * Copyright (c) 2011, Novell Inc. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + */ +#include +#include +#include +#include +#include +#include +#include +#include + + +struct hv_input_dev_info { + unsigned int size; + unsigned short vendor; + unsigned short product; + unsigned short version; + unsigned short reserved[11]; +}; + +/* The maximum size of a synthetic input message. */ +#define SYNTHHID_MAX_INPUT_REPORT_SIZE 16 + +/* + * Current version + * + * History: + * Beta, RC < 2008/1/22 1,0 + * RC > 2008/1/22 2,0 + */ +#define SYNTHHID_INPUT_VERSION_MAJOR 2 +#define SYNTHHID_INPUT_VERSION_MINOR 0 +#define SYNTHHID_INPUT_VERSION (SYNTHHID_INPUT_VERSION_MINOR | \ + (SYNTHHID_INPUT_VERSION_MAJOR << 16)) + + +#pragma pack(push, 1) +/* + * Message types in the synthetic input protocol + */ +enum synthhid_msg_type { + SYNTH_HID_PROTOCOL_REQUEST, + SYNTH_HID_PROTOCOL_RESPONSE, + SYNTH_HID_INITIAL_DEVICE_INFO, + SYNTH_HID_INITIAL_DEVICE_INFO_ACK, + SYNTH_HID_INPUT_REPORT, + SYNTH_HID_MAX +}; + +/* + * Basic message structures. + */ +struct synthhid_msg_hdr { + enum synthhid_msg_type type; + u32 size; +}; + +struct synthhid_msg { + struct synthhid_msg_hdr header; + char data[1]; /* Enclosed message */ +}; + +union synthhid_version { + struct { + u16 minor_version; + u16 major_version; + }; + u32 version; +}; + +/* + * Protocol messages + */ +struct synthhid_protocol_request { + struct synthhid_msg_hdr header; + union synthhid_version version_requested; +}; + +struct synthhid_protocol_response { + struct synthhid_msg_hdr header; + union synthhid_version version_requested; + unsigned char approved; +}; + +struct synthhid_device_info { + struct synthhid_msg_hdr header; + struct hv_input_dev_info hid_dev_info; + struct hid_descriptor hid_descriptor; +}; + +struct synthhid_device_info_ack { + struct synthhid_msg_hdr header; + unsigned char reserved; +}; + +struct synthhid_input_report { + struct synthhid_msg_hdr header; + char buffer[1]; +}; + +#pragma pack(pop) + +#define INPUTVSC_SEND_RING_BUFFER_SIZE (10*PAGE_SIZE) +#define INPUTVSC_RECV_RING_BUFFER_SIZE (10*PAGE_SIZE) + + +enum pipe_prot_msg_type { + PIPE_MESSAGE_INVALID, + PIPE_MESSAGE_DATA, + PIPE_MESSAGE_MAXIMUM +}; + + +struct pipe_prt_msg { + enum pipe_prot_msg_type type; + u32 size; + char data[1]; +}; + +struct mousevsc_prt_msg { + enum pipe_prot_msg_type type; + u32 size; + union { + struct synthhid_protocol_request request; + struct synthhid_protocol_response response; + struct synthhid_device_info_ack ack; + }; +}; + +/* + * Represents an mousevsc device + */ +struct mousevsc_dev { + struct hv_device *device; + bool init_complete; + bool connected; + struct mousevsc_prt_msg protocol_req; + struct mousevsc_prt_msg protocol_resp; + /* Synchronize the request/response if needed */ + struct completion wait_event; + int dev_info_status; + + struct hid_descriptor *hid_desc; + unsigned char *report_desc; + u32 report_desc_size; + struct hv_input_dev_info hid_dev_info; + struct hid_device *hid_device; +}; + + +static struct mousevsc_dev *mousevsc_alloc_device(struct hv_device *device) +{ + struct mousevsc_dev *input_dev; + + input_dev = kzalloc(sizeof(struct mousevsc_dev), GFP_KERNEL); + + if (!input_dev) + return NULL; + + input_dev->device = device; + hv_set_drvdata(device, input_dev); + init_completion(&input_dev->wait_event); + input_dev->init_complete = false; + + return input_dev; +} + +static void mousevsc_free_device(struct mousevsc_dev *device) +{ + kfree(device->hid_desc); + kfree(device->report_desc); + hv_set_drvdata(device->device, NULL); + kfree(device); +} + +static void mousevsc_on_receive_device_info(struct mousevsc_dev *input_device, + struct synthhid_device_info *device_info) +{ + int ret = 0; + struct hid_descriptor *desc; + struct mousevsc_prt_msg ack; + + input_device->dev_info_status = -ENOMEM; + + input_device->hid_dev_info = device_info->hid_dev_info; + desc = &device_info->hid_descriptor; + if (desc->bLength == 0) + goto cleanup; + + input_device->hid_desc = kzalloc(desc->bLength, GFP_ATOMIC); + + if (!input_device->hid_desc) + goto cleanup; + + memcpy(input_device->hid_desc, desc, desc->bLength); + + input_device->report_desc_size = desc->desc[0].wDescriptorLength; + if (input_device->report_desc_size == 0) { + input_device->dev_info_status = -EINVAL; + goto cleanup; + } + + input_device->report_desc = kzalloc(input_device->report_desc_size, + GFP_ATOMIC); + + if (!input_device->report_desc) { + input_device->dev_info_status = -ENOMEM; + goto cleanup; + } + + memcpy(input_device->report_desc, + ((unsigned char *)desc) + desc->bLength, + desc->desc[0].wDescriptorLength); + + /* Send the ack */ + memset(&ack, 0, sizeof(struct mousevsc_prt_msg)); + + ack.type = PIPE_MESSAGE_DATA; + ack.size = sizeof(struct synthhid_device_info_ack); + + ack.ack.header.type = SYNTH_HID_INITIAL_DEVICE_INFO_ACK; + ack.ack.header.size = 1; + ack.ack.reserved = 0; + + ret = vmbus_sendpacket(input_device->device->channel, + &ack, + sizeof(struct pipe_prt_msg) - sizeof(unsigned char) + + sizeof(struct synthhid_device_info_ack), + (unsigned long)&ack, + VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + + if (!ret) + input_device->dev_info_status = 0; + +cleanup: + complete(&input_device->wait_event); + + return; +} + +static void mousevsc_on_receive(struct hv_device *device, + struct vmpacket_descriptor *packet) +{ + struct pipe_prt_msg *pipe_msg; + struct synthhid_msg *hid_msg; + struct mousevsc_dev *input_dev = hv_get_drvdata(device); + struct synthhid_input_report *input_report; + + pipe_msg = (struct pipe_prt_msg *)((unsigned long)packet + + (packet->offset8 << 3)); + + if (pipe_msg->type != PIPE_MESSAGE_DATA) + return; + + hid_msg = (struct synthhid_msg *)pipe_msg->data; + + switch (hid_msg->header.type) { + case SYNTH_HID_PROTOCOL_RESPONSE: + /* + * While it will be impossible for us to protect against + * malicious/buggy hypervisor/host, add a check here to + * ensure we don't corrupt memory. + */ + if ((pipe_msg->size + sizeof(struct pipe_prt_msg) + - sizeof(unsigned char)) + > sizeof(struct mousevsc_prt_msg)) { + WARN_ON(1); + break; + } + + memcpy(&input_dev->protocol_resp, pipe_msg, + pipe_msg->size + sizeof(struct pipe_prt_msg) - + sizeof(unsigned char)); + complete(&input_dev->wait_event); + break; + + case SYNTH_HID_INITIAL_DEVICE_INFO: + WARN_ON(pipe_msg->size < sizeof(struct hv_input_dev_info)); + + /* + * Parse out the device info into device attr, + * hid desc and report desc + */ + mousevsc_on_receive_device_info(input_dev, + (struct synthhid_device_info *)pipe_msg->data); + break; + case SYNTH_HID_INPUT_REPORT: + input_report = + (struct synthhid_input_report *)pipe_msg->data; + if (!input_dev->init_complete) + break; + hid_input_report(input_dev->hid_device, + HID_INPUT_REPORT, input_report->buffer, + input_report->header.size, 1); + break; + default: + pr_err("unsupported hid msg type - type %d len %d", + hid_msg->header.type, hid_msg->header.size); + break; + } + +} + +static void mousevsc_on_channel_callback(void *context) +{ + const int packet_size = 0x100; + int ret; + struct hv_device *device = context; + u32 bytes_recvd; + u64 req_id; + struct vmpacket_descriptor *desc; + unsigned char *buffer; + int bufferlen = packet_size; + + buffer = kmalloc(bufferlen, GFP_ATOMIC); + if (!buffer) + return; + + do { + ret = vmbus_recvpacket_raw(device->channel, buffer, + bufferlen, &bytes_recvd, &req_id); + + switch (ret) { + case 0: + if (bytes_recvd <= 0) { + kfree(buffer); + return; + } + desc = (struct vmpacket_descriptor *)buffer; + + switch (desc->type) { + case VM_PKT_COMP: + break; + + case VM_PKT_DATA_INBAND: + mousevsc_on_receive(device, desc); + break; + + default: + pr_err("unhandled packet type %d, tid %llx len %d\n", + desc->type, req_id, bytes_recvd); + break; + } + + break; + + case -ENOBUFS: + kfree(buffer); + /* Handle large packet */ + bufferlen = bytes_recvd; + buffer = kmalloc(bytes_recvd, GFP_ATOMIC); + + if (!buffer) + return; + + break; + } + } while (1); + +} + +static int mousevsc_connect_to_vsp(struct hv_device *device) +{ + int ret = 0; + int t; + struct mousevsc_dev *input_dev = hv_get_drvdata(device); + struct mousevsc_prt_msg *request; + struct mousevsc_prt_msg *response; + + request = &input_dev->protocol_req; + memset(request, 0, sizeof(struct mousevsc_prt_msg)); + + request->type = PIPE_MESSAGE_DATA; + request->size = sizeof(struct synthhid_protocol_request); + request->request.header.type = SYNTH_HID_PROTOCOL_REQUEST; + request->request.header.size = sizeof(unsigned int); + request->request.version_requested.version = SYNTHHID_INPUT_VERSION; + + ret = vmbus_sendpacket(device->channel, request, + sizeof(struct pipe_prt_msg) - + sizeof(unsigned char) + + sizeof(struct synthhid_protocol_request), + (unsigned long)request, + VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + if (ret) + goto cleanup; + + t = wait_for_completion_timeout(&input_dev->wait_event, 5*HZ); + if (!t) { + ret = -ETIMEDOUT; + goto cleanup; + } + + response = &input_dev->protocol_resp; + + if (!response->response.approved) { + pr_err("synthhid protocol request failed (version %d)\n", + SYNTHHID_INPUT_VERSION); + ret = -ENODEV; + goto cleanup; + } + + t = wait_for_completion_timeout(&input_dev->wait_event, 5*HZ); + if (!t) { + ret = -ETIMEDOUT; + goto cleanup; + } + + /* + * We should have gotten the device attr, hid desc and report + * desc at this point + */ + ret = input_dev->dev_info_status; + +cleanup: + return ret; +} + +static int mousevsc_hid_open(struct hid_device *hid) +{ + return 0; +} + +static int mousevsc_hid_start(struct hid_device *hid) +{ + return 0; +} + +static void mousevsc_hid_close(struct hid_device *hid) +{ +} + +static void mousevsc_hid_stop(struct hid_device *hid) +{ +} + +static struct hid_ll_driver mousevsc_ll_driver = { + .open = mousevsc_hid_open, + .close = mousevsc_hid_close, + .start = mousevsc_hid_start, + .stop = mousevsc_hid_stop, +}; + +static struct hid_driver mousevsc_hid_driver; + +static int mousevsc_probe(struct hv_device *device, + const struct hv_vmbus_device_id *dev_id) +{ + int ret; + struct mousevsc_dev *input_dev; + struct hid_device *hid_dev; + + input_dev = mousevsc_alloc_device(device); + + if (!input_dev) + return -ENOMEM; + + ret = vmbus_open(device->channel, + INPUTVSC_SEND_RING_BUFFER_SIZE, + INPUTVSC_RECV_RING_BUFFER_SIZE, + NULL, + 0, + mousevsc_on_channel_callback, + device + ); + + if (ret) + goto probe_err0; + + ret = mousevsc_connect_to_vsp(device); + + if (ret) + goto probe_err1; + + /* workaround SA-167 */ + if (input_dev->report_desc[14] == 0x25) + input_dev->report_desc[14] = 0x29; + + hid_dev = hid_allocate_device(); + if (IS_ERR(hid_dev)) { + ret = PTR_ERR(hid_dev); + goto probe_err1; + } + + hid_dev->ll_driver = &mousevsc_ll_driver; + hid_dev->driver = &mousevsc_hid_driver; + hid_dev->bus = BUS_VIRTUAL; + hid_dev->vendor = input_dev->hid_dev_info.vendor; + hid_dev->product = input_dev->hid_dev_info.product; + hid_dev->version = input_dev->hid_dev_info.version; + input_dev->hid_device = hid_dev; + + sprintf(hid_dev->name, "%s", "Microsoft Vmbus HID-compliant Mouse"); + + ret = hid_add_device(hid_dev); + if (ret) + goto probe_err1; + + ret = hid_parse_report(hid_dev, input_dev->report_desc, + input_dev->report_desc_size); + + if (ret) { + hid_err(hid_dev, "parse failed\n"); + goto probe_err2; + } + + ret = hid_hw_start(hid_dev, HID_CONNECT_HIDINPUT | HID_CONNECT_HIDDEV); + + if (ret) { + hid_err(hid_dev, "hw start failed\n"); + goto probe_err2; + } + + input_dev->connected = true; + input_dev->init_complete = true; + + return ret; + +probe_err2: + hid_destroy_device(hid_dev); + +probe_err1: + vmbus_close(device->channel); + +probe_err0: + mousevsc_free_device(input_dev); + + return ret; +} + + +static int mousevsc_remove(struct hv_device *dev) +{ + struct mousevsc_dev *input_dev = hv_get_drvdata(dev); + + vmbus_close(dev->channel); + hid_hw_stop(input_dev->hid_device); + hid_destroy_device(input_dev->hid_device); + mousevsc_free_device(input_dev); + + return 0; +} + +static const struct hv_vmbus_device_id id_table[] = { + /* Mouse guid */ + { VMBUS_DEVICE(0x9E, 0xB6, 0xA8, 0xCF, 0x4A, 0x5B, 0xc0, 0x4c, + 0xB9, 0x8B, 0x8B, 0xA1, 0xA1, 0xF3, 0xF9, 0x5A) }, + { }, +}; + +MODULE_DEVICE_TABLE(vmbus, id_table); + +static struct hv_driver mousevsc_drv = { + .name = KBUILD_MODNAME, + .id_table = id_table, + .probe = mousevsc_probe, + .remove = mousevsc_remove, +}; + +static int __init mousevsc_init(void) +{ + return vmbus_driver_register(&mousevsc_drv); +} + +static void __exit mousevsc_exit(void) +{ + vmbus_driver_unregister(&mousevsc_drv); +} + +MODULE_LICENSE("GPL"); +MODULE_VERSION(HV_DRV_VERSION); +module_init(mousevsc_init); +module_exit(mousevsc_exit); --- linux-3.2.0.orig/drivers/hid/hid-wiimote.c +++ linux-3.2.0/drivers/hid/hid-wiimote.c @@ -829,7 +829,7 @@ /* * Basic IR data is encoded into 3 bytes. The first two bytes are the - * upper 8 bit of the X/Y data, the 3rd byte contains the lower 2 bits + * lower 8 bit of the X/Y data, the 3rd byte contains the upper 2 bits * of both. * If data is packed, then the 3rd byte is put first and slightly * reordered. This allows to interleave packed and non-packed data to @@ -838,17 +838,11 @@ */ if (packed) { - x = ir[1] << 2; - y = ir[2] << 2; - - x |= ir[0] & 0x3; - y |= (ir[0] >> 2) & 0x3; + x = ir[1] | ((ir[0] & 0x03) << 8); + y = ir[2] | ((ir[0] & 0x0c) << 6); } else { - x = ir[0] << 2; - y = ir[1] << 2; - - x |= (ir[2] >> 4) & 0x3; - y |= (ir[2] >> 6) & 0x3; + x = ir[0] | ((ir[2] & 0x30) << 4); + y = ir[1] | ((ir[2] & 0xc0) << 2); } input_report_abs(wdata->ir, xid, x); @@ -1257,12 +1251,16 @@ wdata->battery.type = POWER_SUPPLY_TYPE_BATTERY; wdata->battery.use_for_apm = 0; + power_supply_powers(&wdata->battery, &hdev->dev); + ret = power_supply_register(&wdata->hdev->dev, &wdata->battery); if (ret) { hid_err(hdev, "Cannot register battery device\n"); goto err_battery; } + power_supply_powers(&wdata->battery, &hdev->dev); + ret = wiimote_leds_create(wdata); if (ret) goto err_free; --- linux-3.2.0.orig/drivers/hid/hid-core.c +++ linux-3.2.0/drivers/hid/hid-core.c @@ -362,7 +362,7 @@ case HID_GLOBAL_ITEM_TAG_REPORT_SIZE: parser->global.report_size = item_udata(item); - if (parser->global.report_size > 32) { + if (parser->global.report_size > 96) { dbg_hid("invalid report_size %d\n", parser->global.report_size); return -1; @@ -1394,6 +1394,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_CHERRY, USB_DEVICE_ID_CHERRY_CYMOTION_SOLAR) }, { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_TACTICAL_PAD) }, { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_WIRELESS) }, + { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_WIRELESS2) }, { HID_USB_DEVICE(USB_VENDOR_ID_CHUNGHWAT, USB_DEVICE_ID_CHUNGHWAT_MULTITOUCH) }, { HID_USB_DEVICE(USB_VENDOR_ID_CREATIVELABS, USB_DEVICE_ID_PRODIKEYS_PCMIDI) }, { HID_USB_DEVICE(USB_VENDOR_ID_CVTOUCH, USB_DEVICE_ID_CVTOUCH_SCREEN) }, @@ -1404,11 +1405,15 @@ { HID_USB_DEVICE(USB_VENDOR_ID_CYPRESS, USB_DEVICE_ID_CYPRESS_TRUETOUCH) }, { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, 0x0006) }, { HID_USB_DEVICE(USB_VENDOR_ID_DRAGONRISE, 0x0011) }, - { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH) }, - { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH1) }, - { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH2) }, - { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH3) }, - { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH4) }, + { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480D) }, + { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_480E) }, + { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_720C) }, + { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7224) }, + { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_725E) }, + { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_726B) }, + { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_72A1) }, + { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_7302) }, + { HID_USB_DEVICE(USB_VENDOR_ID_DWAV, USB_DEVICE_ID_DWAV_EGALAX_MULTITOUCH_A001) }, { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_ELECOM, USB_DEVICE_ID_ELECOM_BM084) }, { HID_USB_DEVICE(USB_VENDOR_ID_ELO, USB_DEVICE_ID_ELO_TS2515) }, { HID_USB_DEVICE(USB_VENDOR_ID_EMS, USB_DEVICE_ID_EMS_TRIO_LINKER_PLUS_II) }, @@ -1423,6 +1428,7 @@ { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE_2) }, { HID_USB_DEVICE(USB_VENDOR_ID_GYRATION, USB_DEVICE_ID_GYRATION_REMOTE_3) }, { HID_USB_DEVICE(USB_VENDOR_ID_HANVON, USB_DEVICE_ID_HANVON_MULTITOUCH) }, + { HID_USB_DEVICE(USB_VENDOR_ID_HANVON_ALT, USB_DEVICE_ID_HANVON_ALT_MULTITOUCH) }, { HID_USB_DEVICE(USB_VENDOR_ID_IDEACOM, USB_DEVICE_ID_IDEACOM_IDC6650) }, { HID_USB_DEVICE(USB_VENDOR_ID_HOLTEK, USB_DEVICE_ID_HOLTEK_ON_LINE_GRIP) }, { HID_USB_DEVICE(USB_VENDOR_ID_ILITEK, USB_DEVICE_ID_ILITEK_MULTITOUCH) }, @@ -1544,11 +1550,21 @@ { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SUPER_DUAL_BOX_PRO) }, { HID_USB_DEVICE(USB_VENDOR_ID_WISEGROUP_LTD, USB_DEVICE_ID_SUPER_JOY_BOX_5_PRO) }, { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_GRAPHIRE_BLUETOOTH) }, + { HID_BLUETOOTH_DEVICE(USB_VENDOR_ID_WACOM, USB_DEVICE_ID_WACOM_INTUOS4_BLUETOOTH) }, { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SLIM_TABLET_5_8_INCH) }, { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_SLIM_TABLET_12_1_INCH) }, { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_10_6_INCH) }, { HID_USB_DEVICE(USB_VENDOR_ID_WALTOP, USB_DEVICE_ID_WALTOP_MEDIA_TABLET_14_1_INCH) }, { HID_USB_DEVICE(USB_VENDOR_ID_XAT, USB_DEVICE_ID_XAT_CSR) }, + { HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, USB_DEVICE_ID_XIROKU_SPX) }, + { HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, USB_DEVICE_ID_XIROKU_MPX) }, + { HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, USB_DEVICE_ID_XIROKU_CSR) }, + { HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, USB_DEVICE_ID_XIROKU_SPX1) }, + { HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, USB_DEVICE_ID_XIROKU_MPX1) }, + { HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, USB_DEVICE_ID_XIROKU_CSR1) }, + { HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, USB_DEVICE_ID_XIROKU_SPX2) }, + { HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, USB_DEVICE_ID_XIROKU_MPX2) }, + { HID_USB_DEVICE(USB_VENDOR_ID_XIROKU, USB_DEVICE_ID_XIROKU_CSR2) }, { HID_USB_DEVICE(USB_VENDOR_ID_X_TENSIONS, USB_DEVICE_ID_SPEEDLINK_VAD_CEZANNE) }, { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0005) }, { HID_USB_DEVICE(USB_VENDOR_ID_ZEROPLUS, 0x0030) }, --- linux-3.2.0.orig/drivers/hid/hid-chicony.c +++ linux-3.2.0/drivers/hid/hid-chicony.c @@ -45,6 +45,12 @@ case 0xff09: ch_map_key_clear(BTN_9); break; case 0xff0a: ch_map_key_clear(BTN_A); break; case 0xff0b: ch_map_key_clear(BTN_B); break; + case 0x00f1: ch_map_key_clear(KEY_WLAN); break; + case 0x00f2: ch_map_key_clear(KEY_BRIGHTNESSDOWN); break; + case 0x00f3: ch_map_key_clear(KEY_BRIGHTNESSUP); break; + case 0x00f4: ch_map_key_clear(KEY_DISPLAY_OFF); break; + case 0x00f7: ch_map_key_clear(KEY_CAMERA); break; + case 0x00f8: ch_map_key_clear(KEY_PROG1); break; default: return 0; } @@ -53,6 +59,7 @@ static const struct hid_device_id ch_devices[] = { { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_TACTICAL_PAD) }, + { HID_USB_DEVICE(USB_VENDOR_ID_CHICONY, USB_DEVICE_ID_CHICONY_WIRELESS2) }, { } }; MODULE_DEVICE_TABLE(hid, ch_devices); --- linux-3.2.0.orig/drivers/hid/usbhid/hid-quirks.c +++ linux-3.2.0/drivers/hid/usbhid/hid-quirks.c @@ -53,6 +53,7 @@ { USB_VENDOR_ID_PLAYDOTCOM, USB_DEVICE_ID_PLAYDOTCOM_EMS_USBII, HID_QUIRK_MULTI_INPUT }, { USB_VENDOR_ID_TOUCHPACK, USB_DEVICE_ID_TOUCHPACK_RTS, HID_QUIRK_MULTI_INPUT }, + { USB_VENDOR_ID_AIREN, USB_DEVICE_ID_AIREN_SLIMPLUS, HID_QUIRK_NOGET }, { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_UC100KM, HID_QUIRK_NOGET }, { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_CS124U, HID_QUIRK_NOGET }, { USB_VENDOR_ID_ATEN, USB_DEVICE_ID_ATEN_2PORTKVM, HID_QUIRK_NOGET }, @@ -69,6 +70,7 @@ { USB_VENDOR_ID_ELO, USB_DEVICE_ID_ELO_TS2700, HID_QUIRK_NOGET }, { USB_VENDOR_ID_PRODIGE, USB_DEVICE_ID_PRODIGE_CORDLESS, HID_QUIRK_NOGET }, { USB_VENDOR_ID_QUANTA, USB_DEVICE_ID_PIXART_IMAGING_INC_OPTICAL_TOUCH_SCREEN, HID_QUIRK_NOGET }, + { USB_VENDOR_ID_QUANTA, USB_DEVICE_ID_QUANTA_OPTICAL_TOUCH_3008, HID_QUIRK_NOGET }, { USB_VENDOR_ID_SUN, USB_DEVICE_ID_RARITAN_KVM_DONGLE, HID_QUIRK_NOGET }, { USB_VENDOR_ID_SYMBOL, USB_DEVICE_ID_SYMBOL_SCANNER_1, HID_QUIRK_NOGET }, { USB_VENDOR_ID_SYMBOL, USB_DEVICE_ID_SYMBOL_SCANNER_2, HID_QUIRK_NOGET }, --- linux-3.2.0.orig/drivers/pci/pci-acpi.c +++ linux-3.2.0/drivers/pci/pci-acpi.c @@ -395,7 +395,6 @@ if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) { printk(KERN_INFO"ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n"); - pcie_clear_aspm(); pcie_no_aspm(); } --- linux-3.2.0.orig/drivers/pci/quirks.c +++ linux-3.2.0/drivers/pci/quirks.c @@ -2906,6 +2906,40 @@ DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x65f9, quirk_intel_mc_errata); DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, 0x65fa, quirk_intel_mc_errata); +/* + * Some BIOS implementations leave the Intel GPU interrupts enabled, + * even though no one is handling them (f.e. i915 driver is never loaded). + * Additionally the interrupt destination is not set up properly + * and the interrupt ends up -somewhere-. + * + * These spurious interrupts are "sticky" and the kernel disables + * the (shared) interrupt line after 100.000+ generated interrupts. + * + * Fix it by disabling the still enabled interrupts. + * This resolves crashes often seen on monitor unplug. + */ +#define I915_DEIER_REG 0x4400c +static void __devinit disable_igfx_irq(struct pci_dev *dev) +{ + void __iomem *regs = pci_iomap(dev, 0, 0); + if (regs == NULL) { + dev_warn(&dev->dev, "igfx quirk: Can't iomap PCI device\n"); + return; + } + + /* Check if any interrupt line is still enabled */ + if (readl(regs + I915_DEIER_REG) != 0) { + dev_warn(&dev->dev, "BIOS left Intel GPU interrupts enabled; " + "disabling\n"); + + writel(0, regs + I915_DEIER_REG); + } + + pci_iounmap(dev, regs); +} +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x0102, disable_igfx_irq); +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_INTEL, 0x010a, disable_igfx_irq); + static void pci_do_fixups(struct pci_dev *dev, struct pci_fixup *f, struct pci_fixup *end) { --- linux-3.2.0.orig/drivers/pci/probe.c +++ linux-3.2.0/drivers/pci/probe.c @@ -651,6 +651,11 @@ dev_dbg(&dev->dev, "scanning [bus %02x-%02x] behind bridge, pass %d\n", secondary, subordinate, pass); + if (!primary && (primary != bus->number) && secondary && subordinate) { + dev_warn(&dev->dev, "Primary bus is hard wired to 0\n"); + primary = bus->number; + } + /* Check if setup is sensible at all */ if (!pass && (primary != bus->number || secondary <= bus->number)) { --- linux-3.2.0.orig/drivers/pci/msi.c +++ linux-3.2.0/drivers/pci/msi.c @@ -870,5 +870,15 @@ void pci_msi_init_pci_dev(struct pci_dev *dev) { + int pos; INIT_LIST_HEAD(&dev->msi_list); + + /* Disable the msi hardware to avoid screaming interrupts + * during boot. This is the power on reset default so + * usually this should be a noop. + */ + pos = pci_find_capability(dev, PCI_CAP_ID_MSI); + if (pos) + msi_set_enable(dev, pos, 0); + msix_set_enable(dev, 0); } --- linux-3.2.0.orig/drivers/pci/pcie/aspm.c +++ linux-3.2.0/drivers/pci/pcie/aspm.c @@ -68,7 +68,7 @@ struct aspm_latency acceptable[8]; }; -static int aspm_disabled, aspm_force, aspm_clear_state; +static int aspm_disabled, aspm_force; static bool aspm_support_enabled = true; static DEFINE_MUTEX(aspm_lock); static LIST_HEAD(link_list); @@ -500,9 +500,6 @@ int pos; u32 reg32; - if (aspm_clear_state) - return -EINVAL; - /* * Some functions in a slot might not all be PCIe functions, * very strange. Disable ASPM for the whole slot @@ -511,6 +508,16 @@ pos = pci_pcie_cap(child); if (!pos) return -EINVAL; + + /* + * If ASPM is disabled then we're not going to change + * the BIOS state. It's safe to continue even if it's a + * pre-1.1 device + */ + + if (aspm_disabled) + continue; + /* * Disable ASPM for pre-1.1 PCIe device, we follow MS to use * RBER bit to determine if a function is 1.1 version device @@ -574,9 +581,6 @@ pdev->pcie_type != PCI_EXP_TYPE_DOWNSTREAM) return; - if (aspm_disabled && !aspm_clear_state) - return; - /* VIA has a strange chipset, root port is under a bridge */ if (pdev->pcie_type == PCI_EXP_TYPE_ROOT_PORT && pdev->bus->self) @@ -608,7 +612,7 @@ * the BIOS's expectation, we'll do so once pci_enable_device() is * called. */ - if (aspm_policy != POLICY_POWERSAVE || aspm_clear_state) { + if (aspm_policy != POLICY_POWERSAVE) { pcie_config_aspm_path(link); pcie_set_clkpm(link, policy_to_clkpm_state(link)); } @@ -649,8 +653,7 @@ struct pci_dev *parent = pdev->bus->self; struct pcie_link_state *link, *root, *parent_link; - if ((aspm_disabled && !aspm_clear_state) || !pci_is_pcie(pdev) || - !parent || !parent->link_state) + if (!pci_is_pcie(pdev) || !parent || !parent->link_state) return; if ((parent->pcie_type != PCI_EXP_TYPE_ROOT_PORT) && (parent->pcie_type != PCI_EXP_TYPE_DOWNSTREAM)) @@ -734,13 +737,18 @@ * pci_disable_link_state - disable pci device's link state, so the link will * never enter specific states */ -static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem) +static void __pci_disable_link_state(struct pci_dev *pdev, int state, bool sem, + bool force) { struct pci_dev *parent = pdev->bus->self; struct pcie_link_state *link; - if (aspm_disabled || !pci_is_pcie(pdev)) + if (aspm_disabled && !force) + return; + + if (!pci_is_pcie(pdev)) return; + if (pdev->pcie_type == PCI_EXP_TYPE_ROOT_PORT || pdev->pcie_type == PCI_EXP_TYPE_DOWNSTREAM) parent = pdev; @@ -768,16 +776,34 @@ void pci_disable_link_state_locked(struct pci_dev *pdev, int state) { - __pci_disable_link_state(pdev, state, false); + __pci_disable_link_state(pdev, state, false, false); } EXPORT_SYMBOL(pci_disable_link_state_locked); void pci_disable_link_state(struct pci_dev *pdev, int state) { - __pci_disable_link_state(pdev, state, true); + __pci_disable_link_state(pdev, state, true, false); } EXPORT_SYMBOL(pci_disable_link_state); +void pcie_clear_aspm(struct pci_bus *bus) +{ + struct pci_dev *child; + + if (aspm_force) + return; + + /* + * Clear any ASPM setup that the firmware has carried out on this bus + */ + list_for_each_entry(child, &bus->devices, bus_list) { + __pci_disable_link_state(child, PCIE_LINK_STATE_L0S | + PCIE_LINK_STATE_L1 | + PCIE_LINK_STATE_CLKPM, + false, true); + } +} + static int pcie_aspm_set_policy(const char *val, struct kernel_param *kp) { int i; @@ -935,6 +961,7 @@ static int __init pcie_aspm_disable(char *str) { if (!strcmp(str, "off")) { + aspm_policy = POLICY_DEFAULT; aspm_disabled = 1; aspm_support_enabled = false; printk(KERN_INFO "PCIe ASPM is disabled\n"); @@ -947,16 +974,18 @@ __setup("pcie_aspm=", pcie_aspm_disable); -void pcie_clear_aspm(void) -{ - if (!aspm_force) - aspm_clear_state = 1; -} - void pcie_no_aspm(void) { - if (!aspm_force) + /* + * Disabling ASPM is intended to prevent the kernel from modifying + * existing hardware state, not to clear existing state. To that end: + * (a) set policy to POLICY_DEFAULT in order to avoid changing state + * (b) prevent userspace from changing policy + */ + if (!aspm_force) { + aspm_policy = POLICY_DEFAULT; aspm_disabled = 1; + } } /** --- linux-3.2.0.orig/drivers/firmware/efivars.c +++ linux-3.2.0/drivers/firmware/efivars.c @@ -191,6 +191,190 @@ } } +static bool +validate_device_path(struct efi_variable *var, int match, u8 *buffer, + unsigned long len) +{ + struct efi_generic_dev_path *node; + int offset = 0; + + node = (struct efi_generic_dev_path *)buffer; + + if (len < sizeof(*node)) + return false; + + while (offset <= len - sizeof(*node) && + node->length >= sizeof(*node) && + node->length <= len - offset) { + offset += node->length; + + if ((node->type == EFI_DEV_END_PATH || + node->type == EFI_DEV_END_PATH2) && + node->sub_type == EFI_DEV_END_ENTIRE) + return true; + + node = (struct efi_generic_dev_path *)(buffer + offset); + } + + /* + * If we're here then either node->length pointed past the end + * of the buffer or we reached the end of the buffer without + * finding a device path end node. + */ + return false; +} + +static bool +validate_boot_order(struct efi_variable *var, int match, u8 *buffer, + unsigned long len) +{ + /* An array of 16-bit integers */ + if ((len % 2) != 0) + return false; + + return true; +} + +static bool +validate_load_option(struct efi_variable *var, int match, u8 *buffer, + unsigned long len) +{ + u16 filepathlength; + int i, desclength = 0, namelen; + + namelen = utf16_strnlen(var->VariableName, sizeof(var->VariableName)); + + /* Either "Boot" or "Driver" followed by four digits of hex */ + for (i = match; i < match+4; i++) { + if (var->VariableName[i] > 127 || + hex_to_bin(var->VariableName[i] & 0xff) < 0) + return true; + } + + /* Reject it if there's 4 digits of hex and then further content */ + if (namelen > match + 4) + return false; + + /* A valid entry must be at least 8 bytes */ + if (len < 8) + return false; + + filepathlength = buffer[4] | buffer[5] << 8; + + /* + * There's no stored length for the description, so it has to be + * found by hand + */ + desclength = utf16_strsize((efi_char16_t *)(buffer + 6), len - 6) + 2; + + /* Each boot entry must have a descriptor */ + if (!desclength) + return false; + + /* + * If the sum of the length of the description, the claimed filepath + * length and the original header are greater than the length of the + * variable, it's malformed + */ + if ((desclength + filepathlength + 6) > len) + return false; + + /* + * And, finally, check the filepath + */ + return validate_device_path(var, match, buffer + desclength + 6, + filepathlength); +} + +static bool +validate_uint16(struct efi_variable *var, int match, u8 *buffer, + unsigned long len) +{ + /* A single 16-bit integer */ + if (len != 2) + return false; + + return true; +} + +static bool +validate_ascii_string(struct efi_variable *var, int match, u8 *buffer, + unsigned long len) +{ + int i; + + for (i = 0; i < len; i++) { + if (buffer[i] > 127) + return false; + + if (buffer[i] == 0) + return true; + } + + return false; +} + +struct variable_validate { + char *name; + bool (*validate)(struct efi_variable *var, int match, u8 *data, + unsigned long len); +}; + +static const struct variable_validate variable_validate[] = { + { "BootNext", validate_uint16 }, + { "BootOrder", validate_boot_order }, + { "DriverOrder", validate_boot_order }, + { "Boot*", validate_load_option }, + { "Driver*", validate_load_option }, + { "ConIn", validate_device_path }, + { "ConInDev", validate_device_path }, + { "ConOut", validate_device_path }, + { "ConOutDev", validate_device_path }, + { "ErrOut", validate_device_path }, + { "ErrOutDev", validate_device_path }, + { "Timeout", validate_uint16 }, + { "Lang", validate_ascii_string }, + { "PlatformLang", validate_ascii_string }, + { "", NULL }, +}; + +static bool +validate_var(struct efi_variable *var, u8 *data, unsigned long len) +{ + int i; + u16 *unicode_name = var->VariableName; + + for (i = 0; variable_validate[i].validate != NULL; i++) { + const char *name = variable_validate[i].name; + int match; + + for (match = 0; ; match++) { + char c = name[match]; + u16 u = unicode_name[match]; + + /* All special variables are plain ascii */ + if (u > 127) + return true; + + /* Wildcard in the matching name means we've matched */ + if (c == '*') + return variable_validate[i].validate(var, + match, data, len); + + /* Case sensitive match */ + if (c != u) + break; + + /* Reached the end of the string while matching */ + if (!c) + return variable_validate[i].validate(var, + match, data, len); + } + } + + return true; +} + static efi_status_t get_var_data_locked(struct efivars *efivars, struct efi_variable *var) { @@ -324,6 +508,12 @@ return -EINVAL; } + if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 || + validate_var(new_var, new_var->Data, new_var->DataSize) == false) { + printk(KERN_ERR "efivars: Malformed variable content\n"); + return -EINVAL; + } + spin_lock(&efivars->lock); status = efivars->ops->set_variable(new_var->VariableName, &new_var->VendorGuid, @@ -624,6 +814,12 @@ if (!capable(CAP_SYS_ADMIN)) return -EACCES; + if ((new_var->Attributes & ~EFI_VARIABLE_MASK) != 0 || + validate_var(new_var, new_var->Data, new_var->DataSize) == false) { + printk(KERN_ERR "efivars: Malformed variable content\n"); + return -EINVAL; + } + spin_lock(&efivars->lock); /* --- linux-3.2.0.orig/drivers/firewire/ohci.c +++ linux-3.2.0/drivers/firewire/ohci.c @@ -263,6 +263,7 @@ static char ohci_driver_name[] = KBUILD_MODNAME; #define PCI_DEVICE_ID_AGERE_FW643 0x5901 +#define PCI_DEVICE_ID_CREATIVE_SB1394 0x4001 #define PCI_DEVICE_ID_JMICRON_JMB38X_FW 0x2380 #define PCI_DEVICE_ID_TI_TSB12LV22 0x8009 #define PCI_DEVICE_ID_TI_TSB12LV26 0x8020 @@ -289,6 +290,9 @@ {PCI_VENDOR_ID_ATT, PCI_DEVICE_ID_AGERE_FW643, 6, QUIRK_NO_MSI}, + {PCI_VENDOR_ID_CREATIVE, PCI_DEVICE_ID_CREATIVE_SB1394, PCI_ANY_ID, + QUIRK_RESET_PACKET}, + {PCI_VENDOR_ID_JMICRON, PCI_DEVICE_ID_JMICRON_JMB38X_FW, PCI_ANY_ID, QUIRK_NO_MSI}, @@ -299,7 +303,7 @@ QUIRK_NO_MSI}, {PCI_VENDOR_ID_RICOH, PCI_ANY_ID, PCI_ANY_ID, - QUIRK_CYCLE_TIMER}, + QUIRK_CYCLE_TIMER | QUIRK_NO_MSI}, {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV22, PCI_ANY_ID, QUIRK_CYCLE_TIMER | QUIRK_RESET_PACKET | QUIRK_NO_1394A}, @@ -2744,7 +2748,7 @@ container_of(context, struct iso_context, context); u32 buffer_dma; - if (!last->transfer_status) + if (last->res_count != 0) /* Descriptor(s) not done yet, stop iteration */ return 0; @@ -2758,8 +2762,7 @@ if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) ctx->base.callback.mc(&ctx->base, le32_to_cpu(last->data_address) + - le16_to_cpu(last->req_count) - - le16_to_cpu(last->res_count), + le16_to_cpu(last->req_count), ctx->base.callback_data); return 1; --- linux-3.2.0.orig/drivers/hv/hv_kvp.c +++ linux-3.2.0/drivers/hv/hv_kvp.c @@ -28,8 +28,6 @@ #include #include -#include "hv_kvp.h" - /* @@ -44,9 +42,10 @@ static struct { bool active; /* transaction status - active or not */ int recv_len; /* number of bytes received. */ - int index; /* current index */ + struct hv_kvp_msg *kvp_msg; /* current message */ struct vmbus_channel *recv_channel; /* chn we got the request */ u64 recv_req_id; /* request ID. */ + void *kvp_context; /* for the channel callback */ } kvp_transaction; static void kvp_send_key(struct work_struct *dummy); @@ -73,15 +72,20 @@ { struct cn_msg *msg; + struct hv_kvp_msg *kvp_msg; + char *version; - msg = kzalloc(sizeof(*msg) + strlen(HV_DRV_VERSION) + 1 , GFP_ATOMIC); + msg = kzalloc(sizeof(*msg) + sizeof(struct hv_kvp_msg), GFP_ATOMIC); if (msg) { + kvp_msg = (struct hv_kvp_msg *)msg->data; + version = kvp_msg->body.kvp_register.version; msg->id.idx = CN_KVP_IDX; msg->id.val = CN_KVP_VAL; - msg->seq = KVP_REGISTER; - strcpy(msg->data, HV_DRV_VERSION); - msg->len = strlen(HV_DRV_VERSION) + 1; + + kvp_msg->kvp_hdr.operation = KVP_OP_REGISTER; + strcpy(version, HV_DRV_VERSION); + msg->len = sizeof(struct hv_kvp_msg); cn_netlink_send(msg, 0, GFP_ATOMIC); kfree(msg); } @@ -103,23 +107,28 @@ static void kvp_cn_callback(struct cn_msg *msg, struct netlink_skb_parms *nsp) { - struct hv_ku_msg *message; + struct hv_kvp_msg *message; + struct hv_kvp_msg_enumerate *data; - message = (struct hv_ku_msg *)msg->data; - if (msg->seq == KVP_REGISTER) { + message = (struct hv_kvp_msg *)msg->data; + switch (message->kvp_hdr.operation) { + case KVP_OP_REGISTER: pr_info("KVP: user-mode registering done.\n"); kvp_register(); - } + kvp_transaction.active = false; + hv_kvp_onchannelcallback(kvp_transaction.kvp_context); + break; - if (msg->seq == KVP_USER_SET) { + default: + data = &message->body.kvp_enum_data; /* * Complete the transaction by forwarding the key value * to the host. But first, cancel the timeout. */ if (cancel_delayed_work_sync(&kvp_work)) - kvp_respond_to_host(message->kvp_key, - message->kvp_value, - !strlen(message->kvp_key)); + kvp_respond_to_host(data->data.key, + data->data.value, + !strlen(data->data.key)); } } @@ -127,19 +136,105 @@ kvp_send_key(struct work_struct *dummy) { struct cn_msg *msg; - int index = kvp_transaction.index; + struct hv_kvp_msg *message; + struct hv_kvp_msg *in_msg; + __u8 operation = kvp_transaction.kvp_msg->kvp_hdr.operation; + __u8 pool = kvp_transaction.kvp_msg->kvp_hdr.pool; + __u32 val32; + __u64 val64; msg = kzalloc(sizeof(*msg) + sizeof(struct hv_kvp_msg) , GFP_ATOMIC); + if (!msg) + return; - if (msg) { - msg->id.idx = CN_KVP_IDX; - msg->id.val = CN_KVP_VAL; - msg->seq = KVP_KERNEL_GET; - ((struct hv_ku_msg *)msg->data)->kvp_index = index; - msg->len = sizeof(struct hv_ku_msg); - cn_netlink_send(msg, 0, GFP_ATOMIC); - kfree(msg); + msg->id.idx = CN_KVP_IDX; + msg->id.val = CN_KVP_VAL; + + message = (struct hv_kvp_msg *)msg->data; + message->kvp_hdr.operation = operation; + message->kvp_hdr.pool = pool; + in_msg = kvp_transaction.kvp_msg; + + /* + * The key/value strings sent from the host are encoded in + * in utf16; convert it to utf8 strings. + * The host assures us that the utf16 strings will not exceed + * the max lengths specified. We will however, reserve room + * for the string terminating character - in the utf16s_utf8s() + * function we limit the size of the buffer where the converted + * string is placed to HV_KVP_EXCHANGE_MAX_*_SIZE -1 to gaurantee + * that the strings can be properly terminated! + */ + + switch (message->kvp_hdr.operation) { + case KVP_OP_SET: + switch (in_msg->body.kvp_set.data.value_type) { + case REG_SZ: + /* + * The value is a string - utf16 encoding. + */ + message->body.kvp_set.data.value_size = + utf16s_to_utf8s( + (wchar_t *)in_msg->body.kvp_set.data.value, + in_msg->body.kvp_set.data.value_size, + UTF16_LITTLE_ENDIAN, + message->body.kvp_set.data.value, + HV_KVP_EXCHANGE_MAX_VALUE_SIZE - 1) + 1; + break; + + case REG_U32: + /* + * The value is a 32 bit scalar. + * We save this as a utf8 string. + */ + val32 = in_msg->body.kvp_set.data.value_u32; + message->body.kvp_set.data.value_size = + sprintf(message->body.kvp_set.data.value, + "%d", val32) + 1; + break; + + case REG_U64: + /* + * The value is a 64 bit scalar. + * We save this as a utf8 string. + */ + val64 = in_msg->body.kvp_set.data.value_u64; + message->body.kvp_set.data.value_size = + sprintf(message->body.kvp_set.data.value, + "%llu", val64) + 1; + break; + + } + case KVP_OP_GET: + message->body.kvp_set.data.key_size = + utf16s_to_utf8s( + (wchar_t *)in_msg->body.kvp_set.data.key, + in_msg->body.kvp_set.data.key_size, + UTF16_LITTLE_ENDIAN, + message->body.kvp_set.data.key, + HV_KVP_EXCHANGE_MAX_KEY_SIZE - 1) + 1; + break; + + case KVP_OP_DELETE: + message->body.kvp_delete.key_size = + utf16s_to_utf8s( + (wchar_t *)in_msg->body.kvp_delete.key, + in_msg->body.kvp_delete.key_size, + UTF16_LITTLE_ENDIAN, + message->body.kvp_delete.key, + HV_KVP_EXCHANGE_MAX_KEY_SIZE - 1) + 1; + break; + + case KVP_OP_ENUMERATE: + message->body.kvp_enum_data.index = + in_msg->body.kvp_enum_data.index; + break; } + + msg->len = sizeof(struct hv_kvp_msg); + cn_netlink_send(msg, 0, GFP_ATOMIC); + kfree(msg); + return; } @@ -151,10 +246,11 @@ kvp_respond_to_host(char *key, char *value, int error) { struct hv_kvp_msg *kvp_msg; - struct hv_kvp_msg_enumerate *kvp_data; + struct hv_kvp_exchg_msg_value *kvp_data; char *key_name; struct icmsg_hdr *icmsghdrp; - int keylen, valuelen; + int keylen = 0; + int valuelen = 0; u32 buf_len; struct vmbus_channel *channel; u64 req_id; @@ -181,6 +277,9 @@ kvp_transaction.active = false; + icmsghdrp = (struct icmsg_hdr *) + &recv_buffer[sizeof(struct vmbuspipe_hdr)]; + if (channel->onchannel_callback == NULL) /* * We have raced with util driver being unloaded; @@ -188,39 +287,67 @@ */ return; - icmsghdrp = (struct icmsg_hdr *) - &recv_buffer[sizeof(struct vmbuspipe_hdr)]; - kvp_msg = (struct hv_kvp_msg *) - &recv_buffer[sizeof(struct vmbuspipe_hdr) + - sizeof(struct icmsg_hdr)]; - kvp_data = &kvp_msg->kvp_data; - key_name = key; /* - * If the error parameter is set, terminate the host's enumeration. + * If the error parameter is set, terminate the host's enumeration + * on this pool. */ if (error) { /* - * We don't support this index or the we have timedout; - * terminate the host-side iteration by returning an error. + * Something failed or the we have timedout; + * terminate the current host-side iteration. */ - icmsghdrp->status = HV_E_FAIL; + icmsghdrp->status = HV_S_CONT; goto response_done; } + icmsghdrp->status = HV_S_OK; + + kvp_msg = (struct hv_kvp_msg *) + &recv_buffer[sizeof(struct vmbuspipe_hdr) + + sizeof(struct icmsg_hdr)]; + + switch (kvp_transaction.kvp_msg->kvp_hdr.operation) { + case KVP_OP_GET: + kvp_data = &kvp_msg->body.kvp_get.data; + goto copy_value; + + case KVP_OP_SET: + case KVP_OP_DELETE: + goto response_done; + + default: + break; + } + + kvp_data = &kvp_msg->body.kvp_enum_data.data; + key_name = key; + /* * The windows host expects the key/value pair to be encoded - * in utf16. + * in utf16. Ensure that the key/value size reported to the host + * will be less than or equal to the MAX size (including the + * terminating character). */ - keylen = utf8s_to_utf16s(key_name, strlen(key_name), - (wchar_t *)kvp_data->data.key); - kvp_data->data.key_size = 2*(keylen + 1); /* utf16 encoding */ - valuelen = utf8s_to_utf16s(value, strlen(value), - (wchar_t *)kvp_data->data.value); - kvp_data->data.value_size = 2*(valuelen + 1); /* utf16 encoding */ + keylen = utf8s_to_utf16s(key_name, strlen(key_name), UTF16_HOST_ENDIAN, + (wchar_t *) kvp_data->key, + (HV_KVP_EXCHANGE_MAX_KEY_SIZE / 2) - 2); + kvp_data->key_size = 2*(keylen + 1); /* utf16 encoding */ + +copy_value: + valuelen = utf8s_to_utf16s(value, strlen(value), UTF16_HOST_ENDIAN, + (wchar_t *) kvp_data->value, + (HV_KVP_EXCHANGE_MAX_VALUE_SIZE / 2) - 2); + kvp_data->value_size = 2*(valuelen + 1); /* utf16 encoding */ - kvp_data->data.value_type = REG_SZ; /* all our values are strings */ - icmsghdrp->status = HV_S_OK; + /* + * If the utf8s to utf16s conversion failed; notify host + * of the error. + */ + if ((keylen < 0) || (valuelen < 0)) + icmsghdrp->status = HV_E_FAIL; + + kvp_data->value_type = REG_SZ; /* all our values are strings */ response_done: icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION | ICMSGHDRFLAG_RESPONSE; @@ -247,11 +374,18 @@ u64 requestid; struct hv_kvp_msg *kvp_msg; - struct hv_kvp_msg_enumerate *kvp_data; struct icmsg_hdr *icmsghdrp; struct icmsg_negotiate *negop = NULL; + if (kvp_transaction.active) { + /* + * We will defer processing this callback once + * the current transaction is complete. + */ + kvp_transaction.kvp_context = context; + return; + } vmbus_recvpacket(channel, recv_buffer, PAGE_SIZE, &recvlen, &requestid); @@ -266,29 +400,16 @@ sizeof(struct vmbuspipe_hdr) + sizeof(struct icmsg_hdr)]; - kvp_data = &kvp_msg->kvp_data; - - /* - * We only support the "get" operation on - * "KVP_POOL_AUTO" pool. - */ - - if ((kvp_msg->kvp_hdr.pool != KVP_POOL_AUTO) || - (kvp_msg->kvp_hdr.operation != - KVP_OP_ENUMERATE)) { - icmsghdrp->status = HV_E_FAIL; - goto callback_done; - } - /* * Stash away this global state for completing the * transaction; note transactions are serialized. */ + kvp_transaction.recv_len = recvlen; kvp_transaction.recv_channel = channel; kvp_transaction.recv_req_id = requestid; kvp_transaction.active = true; - kvp_transaction.index = kvp_data->index; + kvp_transaction.kvp_msg = kvp_msg; /* * Get the information from the @@ -306,8 +427,6 @@ } -callback_done: - icmsghdrp->icflags = ICMSGHDRFLAG_TRANSACTION | ICMSGHDRFLAG_RESPONSE; @@ -328,6 +447,14 @@ return err; recv_buffer = srv->recv_buffer; + /* + * When this driver loads, the user level daemon that + * processes the host requests may not yet be running. + * Defer processing channel callbacks until the daemon + * has registered. + */ + kvp_transaction.active = true; + return 0; } --- linux-3.2.0.orig/drivers/hv/Kconfig +++ linux-3.2.0/drivers/hv/Kconfig @@ -1,3 +1,5 @@ +menu "Microsoft Hyper-V guest support" + config HYPERV tristate "Microsoft Hyper-V client drivers" depends on X86 && ACPI && PCI @@ -11,4 +13,4 @@ help Select this option to enable the Hyper-V Utilities. - +endmenu --- linux-3.2.0.orig/drivers/hv/channel_mgmt.c +++ linux-3.2.0/drivers/hv/channel_mgmt.c @@ -37,81 +37,6 @@ void (*message_handler)(struct vmbus_channel_message_header *msg); }; -#define MAX_MSG_TYPES 4 -#define MAX_NUM_DEVICE_CLASSES_SUPPORTED 8 - -static const uuid_le - supported_device_classes[MAX_NUM_DEVICE_CLASSES_SUPPORTED] = { - /* {ba6163d9-04a1-4d29-b605-72e2ffb1dc7f} */ - /* Storage - SCSI */ - { - .b = { - 0xd9, 0x63, 0x61, 0xba, 0xa1, 0x04, 0x29, 0x4d, - 0xb6, 0x05, 0x72, 0xe2, 0xff, 0xb1, 0xdc, 0x7f - } - }, - - /* {F8615163-DF3E-46c5-913F-F2D2F965ED0E} */ - /* Network */ - { - .b = { - 0x63, 0x51, 0x61, 0xF8, 0x3E, 0xDF, 0xc5, 0x46, - 0x91, 0x3F, 0xF2, 0xD2, 0xF9, 0x65, 0xED, 0x0E - } - }, - - /* {CFA8B69E-5B4A-4cc0-B98B-8BA1A1F3F95A} */ - /* Input */ - { - .b = { - 0x9E, 0xB6, 0xA8, 0xCF, 0x4A, 0x5B, 0xc0, 0x4c, - 0xB9, 0x8B, 0x8B, 0xA1, 0xA1, 0xF3, 0xF9, 0x5A - } - }, - - /* {32412632-86cb-44a2-9b5c-50d1417354f5} */ - /* IDE */ - { - .b = { - 0x32, 0x26, 0x41, 0x32, 0xcb, 0x86, 0xa2, 0x44, - 0x9b, 0x5c, 0x50, 0xd1, 0x41, 0x73, 0x54, 0xf5 - } - }, - /* 0E0B6031-5213-4934-818B-38D90CED39DB */ - /* Shutdown */ - { - .b = { - 0x31, 0x60, 0x0B, 0X0E, 0x13, 0x52, 0x34, 0x49, - 0x81, 0x8B, 0x38, 0XD9, 0x0C, 0xED, 0x39, 0xDB - } - }, - /* {9527E630-D0AE-497b-ADCE-E80AB0175CAF} */ - /* TimeSync */ - { - .b = { - 0x30, 0xe6, 0x27, 0x95, 0xae, 0xd0, 0x7b, 0x49, - 0xad, 0xce, 0xe8, 0x0a, 0xb0, 0x17, 0x5c, 0xaf - } - }, - /* {57164f39-9115-4e78-ab55-382f3bd5422d} */ - /* Heartbeat */ - { - .b = { - 0x39, 0x4f, 0x16, 0x57, 0x15, 0x91, 0x78, 0x4e, - 0xab, 0x55, 0x38, 0x2f, 0x3b, 0xd5, 0x42, 0x2d - } - }, - /* {A9A0F4E7-5A45-4d96-B827-8A841E8C03E6} */ - /* KVP */ - { - .b = { - 0xe7, 0xf4, 0xa0, 0xa9, 0x45, 0x5a, 0x96, 0x4d, - 0xb8, 0x27, 0x8a, 0x84, 0x1e, 0x8c, 0x3, 0xe6 - } - }, - -}; - /** * vmbus_prep_negotiate_resp() - Create default response for Hyper-V Negotiate message @@ -223,6 +148,17 @@ vmbus_device_unregister(channel->device_obj); } +void vmbus_free_channels(void) +{ + struct vmbus_channel *channel; + + list_for_each_entry(channel, &vmbus_connection.chn_list, listentry) { + vmbus_device_unregister(channel->device_obj); + kfree(channel->device_obj); + free_channel(channel); + } +} + /* * vmbus_process_offer - Process the offer by creating a channel/device * associated with this offer @@ -287,6 +223,7 @@ spin_lock_irqsave(&vmbus_connection.channel_lock, flags); list_del(&newchannel->listentry); spin_unlock_irqrestore(&vmbus_connection.channel_lock, flags); + kfree(newchannel->device_obj); free_channel(newchannel); } else { @@ -309,20 +246,8 @@ struct vmbus_channel *newchannel; uuid_le *guidtype; uuid_le *guidinstance; - int i; - int fsupported = 0; offer = (struct vmbus_channel_offer_channel *)hdr; - for (i = 0; i < MAX_NUM_DEVICE_CLASSES_SUPPORTED; i++) { - if (!uuid_le_cmp(offer->offer.if_type, - supported_device_classes[i])) { - fsupported = 1; - break; - } - } - - if (!fsupported) - return; guidtype = &offer->offer.if_type; guidinstance = &offer->offer.if_instance; --- linux-3.2.0.orig/drivers/hv/hyperv_vmbus.h +++ linux-3.2.0/drivers/hv/hyperv_vmbus.h @@ -457,7 +457,6 @@ }, }; -#define MAX_NUM_CPUS 32 struct hv_input_signal_event_buffer { @@ -483,8 +482,8 @@ /* 8-bytes aligned of the buffer above */ struct hv_input_signal_event *signal_event_param; - void *synic_message_page[MAX_NUM_CPUS]; - void *synic_event_page[MAX_NUM_CPUS]; + void *synic_message_page[NR_CPUS]; + void *synic_event_page[NR_CPUS]; }; extern struct hv_context hv_context; @@ -611,6 +610,7 @@ struct vmbus_channel *relid2channel(u32 relid); +void vmbus_free_channels(void); /* Connection interface */ --- linux-3.2.0.orig/drivers/hv/hv.c +++ linux-3.2.0/drivers/hv/hv.c @@ -155,20 +155,15 @@ union hv_x64_msr_hypercall_contents hypercall_msr; void *virtaddr = NULL; - memset(hv_context.synic_event_page, 0, sizeof(void *) * MAX_NUM_CPUS); + memset(hv_context.synic_event_page, 0, sizeof(void *) * NR_CPUS); memset(hv_context.synic_message_page, 0, - sizeof(void *) * MAX_NUM_CPUS); + sizeof(void *) * NR_CPUS); if (!query_hypervisor_presence()) goto cleanup; max_leaf = query_hypervisor_info(); - rdmsrl(HV_X64_MSR_GUEST_OS_ID, hv_context.guestid); - - if (hv_context.guestid != 0) - goto cleanup; - /* Write our OS info */ wrmsrl(HV_X64_MSR_GUEST_OS_ID, HV_LINUX_GUEST_ID); hv_context.guestid = HV_LINUX_GUEST_ID; @@ -237,6 +232,9 @@ { union hv_x64_msr_hypercall_contents hypercall_msr; + /* Reset our OS id */ + wrmsrl(HV_X64_MSR_GUEST_OS_ID, 0); + kfree(hv_context.signal_event_buffer); hv_context.signal_event_buffer = NULL; hv_context.signal_event_param = NULL; --- linux-3.2.0.orig/drivers/hv/hv_util.c +++ linux-3.2.0/drivers/hv/hv_util.c @@ -28,9 +28,6 @@ #include #include -#include "hv_kvp.h" - - static void shutdown_onchannelcallback(void *context); static struct hv_util_service util_shutdown = { .util_cb = shutdown_onchannelcallback, --- linux-3.2.0.orig/drivers/hv/vmbus_drv.c +++ linux-3.2.0/drivers/hv/vmbus_drv.c @@ -62,6 +62,14 @@ struct hv_dev_port_info outbound; }; +static int vmbus_exists(void) +{ + if (hv_acpi_dev == NULL) + return -ENODEV; + + return 0; +} + static void get_channel_info(struct hv_device *device, struct hv_device_info *info) @@ -590,6 +598,10 @@ pr_info("registering driver %s\n", hv_driver->name); + ret = vmbus_exists(); + if (ret < 0) + return ret; + hv_driver->driver.name = hv_driver->name; hv_driver->driver.owner = owner; hv_driver->driver.mod_name = mod_name; @@ -614,8 +626,8 @@ { pr_info("unregistering driver %s\n", hv_driver->name); - driver_unregister(&hv_driver->driver); - + if (!vmbus_exists()) + driver_unregister(&hv_driver->driver); } EXPORT_SYMBOL_GPL(vmbus_driver_unregister); @@ -776,11 +788,23 @@ cleanup: acpi_bus_unregister_driver(&vmbus_acpi_driver); + hv_acpi_dev = NULL; return ret; } +static void __exit vmbus_exit(void) +{ + + free_irq(irq, hv_acpi_dev); + vmbus_free_channels(); + bus_unregister(&hv_bus); + hv_cleanup(); + acpi_bus_unregister_driver(&vmbus_acpi_driver); +} + MODULE_LICENSE("GPL"); MODULE_VERSION(HV_DRV_VERSION); -module_init(hv_acpi_init); +subsys_initcall(hv_acpi_init); +module_exit(vmbus_exit); --- linux-3.2.0.orig/drivers/rtc/rtc-pl031.c +++ linux-3.2.0/drivers/rtc/rtc-pl031.c @@ -312,6 +312,7 @@ int ret; struct pl031_local *ldata; struct rtc_class_ops *ops = id->data; + unsigned long time; ret = amba_request_regions(adev, NULL); if (ret) @@ -339,11 +340,27 @@ dev_dbg(&adev->dev, "revision = 0x%01x\n", ldata->hw_revision); /* Enable the clockwatch on ST Variants */ - if ((ldata->hw_designer == AMBA_VENDOR_ST) && - (ldata->hw_revision > 1)) + if (ldata->hw_designer == AMBA_VENDOR_ST) writel(readl(ldata->base + RTC_CR) | RTC_CR_CWEN, ldata->base + RTC_CR); + /* + * On ST PL031 variants, the RTC reset value does not provide correct + * weekday for 2000-01-01. Correct the erroneous sunday to saturday. + */ + if (ldata->hw_designer == AMBA_VENDOR_ST) { + if (readl(ldata->base + RTC_YDR) == 0x2000) { + time = readl(ldata->base + RTC_DR); + if ((time & + (RTC_MON_MASK | RTC_MDAY_MASK | RTC_WDAY_MASK)) + == 0x02120000) { + time = time | (0x7 << RTC_WDAY_SHIFT); + writel(0x2000, ldata->base + RTC_YLR); + writel(time, ldata->base + RTC_LR); + } + } + } + ldata->rtc = rtc_device_register("pl031", &adev->dev, ops, THIS_MODULE); if (IS_ERR(ldata->rtc)) { @@ -420,6 +437,8 @@ {0, 0}, }; +MODULE_DEVICE_TABLE(amba, pl031_ids); + static struct amba_driver pl031_driver = { .drv = { .name = "rtc-pl031", --- linux-3.2.0.orig/drivers/rtc/interface.c +++ linux-3.2.0/drivers/rtc/interface.c @@ -228,11 +228,11 @@ alarm->time.tm_hour = now.tm_hour; /* For simplicity, only support date rollover for now */ - if (alarm->time.tm_mday == -1) { + if (alarm->time.tm_mday < 1 || alarm->time.tm_mday > 31) { alarm->time.tm_mday = now.tm_mday; missing = day; } - if (alarm->time.tm_mon == -1) { + if ((unsigned)alarm->time.tm_mon >= 12) { alarm->time.tm_mon = now.tm_mon; if (missing == none) missing = month; @@ -445,6 +445,11 @@ if (rtc->uie_rtctimer.enabled == enabled) goto out; + if (rtc->uie_unsupported) { + err = -EINVAL; + goto out; + } + if (enabled) { struct rtc_time tm; ktime_t now, onesec; @@ -763,6 +768,14 @@ return 0; } +static void rtc_alarm_disable(struct rtc_device *rtc) +{ + if (!rtc->ops || !rtc->ops->alarm_irq_enable) + return; + + rtc->ops->alarm_irq_enable(rtc->dev.parent, false); +} + /** * rtc_timer_remove - Removes a rtc_timer from the rtc_device timerqueue * @rtc rtc device @@ -784,8 +797,10 @@ struct rtc_wkalrm alarm; int err; next = timerqueue_getnext(&rtc->timerqueue); - if (!next) + if (!next) { + rtc_alarm_disable(rtc); return; + } alarm.time = rtc_ktime_to_tm(next->expires); alarm.enabled = 1; err = __rtc_set_alarm(rtc, &alarm); @@ -847,7 +862,8 @@ err = __rtc_set_alarm(rtc, &alarm); if (err == -ETIME) goto again; - } + } else + rtc_alarm_disable(rtc); mutex_unlock(&rtc->ops_lock); } --- linux-3.2.0.orig/drivers/rtc/rtc-mpc5121.c +++ linux-3.2.0/drivers/rtc/rtc-mpc5121.c @@ -360,6 +360,8 @@ &mpc5200_rtc_ops, THIS_MODULE); } + rtc->rtc->uie_unsupported = 1; + if (IS_ERR(rtc->rtc)) { err = PTR_ERR(rtc->rtc); goto out_free_irq; --- linux-3.2.0.orig/drivers/net/Kconfig +++ linux-3.2.0/drivers/net/Kconfig @@ -241,6 +241,8 @@ source "drivers/net/caif/Kconfig" +source "drivers/net/dsa/Kconfig" + source "drivers/net/ethernet/Kconfig" source "drivers/net/fddi/Kconfig" @@ -338,4 +340,6 @@ To compile this driver as a module, choose M here: the module will be called vmxnet3. +source "drivers/net/hyperv/Kconfig" + endif # NETDEVICES --- linux-3.2.0.orig/drivers/net/veth.c +++ linux-3.2.0/drivers/net/veth.c @@ -423,7 +423,9 @@ unregister_netdevice_queue(peer, head); } -static const struct nla_policy veth_policy[VETH_INFO_MAX + 1]; +static const struct nla_policy veth_policy[VETH_INFO_MAX + 1] = { + [VETH_INFO_PEER] = { .len = sizeof(struct ifinfomsg) }, +}; static struct rtnl_link_ops veth_link_ops = { .kind = DRV_NAME, --- linux-3.2.0.orig/drivers/net/dummy.c +++ linux-3.2.0/drivers/net/dummy.c @@ -106,14 +106,14 @@ return 0; } -static void dummy_dev_free(struct net_device *dev) +static void dummy_dev_uninit(struct net_device *dev) { free_percpu(dev->dstats); - free_netdev(dev); } static const struct net_device_ops dummy_netdev_ops = { .ndo_init = dummy_dev_init, + .ndo_uninit = dummy_dev_uninit, .ndo_start_xmit = dummy_xmit, .ndo_validate_addr = eth_validate_addr, .ndo_set_rx_mode = set_multicast_list, @@ -127,7 +127,7 @@ /* Initialize the device structure. */ dev->netdev_ops = &dummy_netdev_ops; - dev->destructor = dummy_dev_free; + dev->destructor = free_netdev; /* Fill in device structure with ethernet-generic values. */ dev->tx_queue_len = 0; --- linux-3.2.0.orig/drivers/net/Makefile +++ linux-3.2.0/drivers/net/Makefile @@ -29,6 +29,7 @@ obj-$(CONFIG_CAIF) += caif/ obj-$(CONFIG_CAN) += can/ obj-$(CONFIG_ETRAX_ETHERNET) += cris/ +obj-$(CONFIG_NET_DSA) += dsa/ obj-$(CONFIG_ETHERNET) += ethernet/ obj-$(CONFIG_FDDI) += fddi/ obj-$(CONFIG_HIPPI) += hippi/ @@ -66,3 +67,5 @@ obj-$(CONFIG_USB_ZD1201) += usb/ obj-$(CONFIG_USB_IPHETH) += usb/ obj-$(CONFIG_USB_CDC_PHONET) += usb/ + +obj-$(CONFIG_HYPERV_NET) += hyperv/ --- linux-3.2.0.orig/drivers/net/macvlan.c +++ linux-3.2.0/drivers/net/macvlan.c @@ -172,6 +172,7 @@ skb = ip_check_defrag(skb, IP_DEFRAG_MACVLAN); if (!skb) return RX_HANDLER_CONSUMED; + eth = eth_hdr(skb); src = macvlan_hash_lookup(port, eth->h_source); if (!src) /* frame comes from an external address */ --- linux-3.2.0.orig/drivers/net/bonding/bond_main.c +++ linux-3.2.0/drivers/net/bonding/bond_main.c @@ -1822,7 +1822,7 @@ "but new slave device does not support netpoll.\n", bond_dev->name); res = -EBUSY; - goto err_close; + goto err_detach; } } #endif @@ -1831,7 +1831,7 @@ res = bond_create_slave_symlinks(bond_dev, slave_dev); if (res) - goto err_close; + goto err_detach; res = netdev_rx_handler_register(slave_dev, bond_handle_frame, new_slave); @@ -1852,6 +1852,11 @@ err_dest_symlinks: bond_destroy_slave_symlinks(bond_dev, slave_dev); +err_detach: + write_lock_bh(&bond->lock); + bond_detach_slave(bond, new_slave); + write_unlock_bh(&bond->lock); + err_close: dev_close(slave_dev); @@ -2977,7 +2982,11 @@ trans_start + delta_in_ticks)) || bond->curr_active_slave != slave) { slave->link = BOND_LINK_UP; - bond->current_arp_slave = NULL; + if (bond->current_arp_slave) { + bond_set_slave_inactive_flags( + bond->current_arp_slave); + bond->current_arp_slave = NULL; + } pr_info("%s: link status definitely up for interface %s.\n", bond->dev->name, slave->dev->name); --- linux-3.2.0.orig/drivers/net/bonding/bond_alb.c +++ linux-3.2.0/drivers/net/bonding/bond_alb.c @@ -871,16 +871,12 @@ } } -/* hw is a boolean parameter that determines whether we should try and - * set the hw address of the device as well as the hw address of the - * net_device - */ -static int alb_set_slave_mac_addr(struct slave *slave, u8 addr[], int hw) +static int alb_set_slave_mac_addr(struct slave *slave, u8 addr[]) { struct net_device *dev = slave->dev; struct sockaddr s_addr; - if (!hw) { + if (slave->bond->params.mode == BOND_MODE_TLB) { memcpy(dev->dev_addr, addr, dev->addr_len); return 0; } @@ -910,8 +906,8 @@ u8 tmp_mac_addr[ETH_ALEN]; memcpy(tmp_mac_addr, slave1->dev->dev_addr, ETH_ALEN); - alb_set_slave_mac_addr(slave1, slave2->dev->dev_addr, bond->alb_info.rlb_enabled); - alb_set_slave_mac_addr(slave2, tmp_mac_addr, bond->alb_info.rlb_enabled); + alb_set_slave_mac_addr(slave1, slave2->dev->dev_addr); + alb_set_slave_mac_addr(slave2, tmp_mac_addr); } @@ -1058,8 +1054,7 @@ /* Try setting slave mac to bond address and fall-through to code handling that situation below... */ - alb_set_slave_mac_addr(slave, bond->dev->dev_addr, - bond->alb_info.rlb_enabled); + alb_set_slave_mac_addr(slave, bond->dev->dev_addr); } /* The slave's address is equal to the address of the bond. @@ -1095,8 +1090,7 @@ } if (free_mac_slave) { - alb_set_slave_mac_addr(slave, free_mac_slave->perm_hwaddr, - bond->alb_info.rlb_enabled); + alb_set_slave_mac_addr(slave, free_mac_slave->perm_hwaddr); pr_warning("%s: Warning: the hw address of slave %s is in use by the bond; giving it the hw address of %s\n", bond->dev->name, slave->dev->name, @@ -1451,8 +1445,7 @@ { int res; - res = alb_set_slave_mac_addr(slave, slave->perm_hwaddr, - bond->alb_info.rlb_enabled); + res = alb_set_slave_mac_addr(slave, slave->perm_hwaddr); if (res) { return res; } @@ -1603,8 +1596,7 @@ alb_swap_mac_addr(bond, swap_slave, new_slave); } else { /* set the new_slave to the bond mac address */ - alb_set_slave_mac_addr(new_slave, bond->dev->dev_addr, - bond->alb_info.rlb_enabled); + alb_set_slave_mac_addr(new_slave, bond->dev->dev_addr); } if (swap_slave) { @@ -1664,8 +1656,7 @@ alb_swap_mac_addr(bond, swap_slave, bond->curr_active_slave); alb_fasten_mac_swap(bond, swap_slave, bond->curr_active_slave); } else { - alb_set_slave_mac_addr(bond->curr_active_slave, bond_dev->dev_addr, - bond->alb_info.rlb_enabled); + alb_set_slave_mac_addr(bond->curr_active_slave, bond_dev->dev_addr); read_lock(&bond->lock); alb_send_learning_packets(bond->curr_active_slave, bond_dev->dev_addr); --- linux-3.2.0.orig/drivers/net/hyperv/hyperv_net.h +++ linux-3.2.0/drivers/net/hyperv/hyperv_net.h @@ -0,0 +1,1197 @@ +/* + * + * Copyright (c) 2011, Microsoft Corporation. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program; if not, write to the Free Software Foundation, Inc., 59 Temple + * Place - Suite 330, Boston, MA 02111-1307 USA. + * + * Authors: + * Haiyang Zhang + * Hank Janssen + * K. Y. Srinivasan + * + */ + +#ifndef _HYPERV_NET_H +#define _HYPERV_NET_H + +#include +#include + +/* Fwd declaration */ +struct hv_netvsc_packet; + +/* Represent the xfer page packet which contains 1 or more netvsc packet */ +struct xferpage_packet { + struct list_head list_ent; + + /* # of netvsc packets this xfer packet contains */ + u32 count; +}; + +/* + * Represent netvsc packet which contains 1 RNDIS and 1 ethernet frame + * within the RNDIS + */ +struct hv_netvsc_packet { + /* Bookkeeping stuff */ + struct list_head list_ent; + + struct hv_device *device; + bool is_data_pkt; + u16 vlan_tci; + + /* + * Valid only for receives when we break a xfer page packet + * into multiple netvsc packets + */ + struct xferpage_packet *xfer_page_pkt; + + union { + struct { + u64 recv_completion_tid; + void *recv_completion_ctx; + void (*recv_completion)(void *context); + } recv; + struct { + u64 send_completion_tid; + void *send_completion_ctx; + void (*send_completion)(void *context); + } send; + } completion; + + /* This points to the memory after page_buf */ + void *extension; + + u32 total_data_buflen; + /* Points to the send/receive buffer where the ethernet frame is */ + void *data; + u32 page_buf_cnt; + struct hv_page_buffer page_buf[0]; +}; + +struct netvsc_device_info { + unsigned char mac_adr[6]; + bool link_state; /* 0 - link up, 1 - link down */ + int ring_size; +}; + +enum rndis_device_state { + RNDIS_DEV_UNINITIALIZED = 0, + RNDIS_DEV_INITIALIZING, + RNDIS_DEV_INITIALIZED, + RNDIS_DEV_DATAINITIALIZED, +}; + +struct rndis_device { + struct netvsc_device *net_dev; + + enum rndis_device_state state; + bool link_state; + atomic_t new_req_id; + + spinlock_t request_lock; + struct list_head req_list; + + unsigned char hw_mac_adr[ETH_ALEN]; +}; + + +/* Interface */ +int netvsc_device_add(struct hv_device *device, void *additional_info); +int netvsc_device_remove(struct hv_device *device); +int netvsc_send(struct hv_device *device, + struct hv_netvsc_packet *packet); +void netvsc_linkstatus_callback(struct hv_device *device_obj, + unsigned int status); +int netvsc_recv_callback(struct hv_device *device_obj, + struct hv_netvsc_packet *packet); +int rndis_filter_open(struct hv_device *dev); +int rndis_filter_close(struct hv_device *dev); +int rndis_filter_device_add(struct hv_device *dev, + void *additional_info); +void rndis_filter_device_remove(struct hv_device *dev); +int rndis_filter_receive(struct hv_device *dev, + struct hv_netvsc_packet *pkt); + + + +int rndis_filter_send(struct hv_device *dev, + struct hv_netvsc_packet *pkt); + +int rndis_filter_set_packet_filter(struct rndis_device *dev, u32 new_filter); + + +#define NVSP_INVALID_PROTOCOL_VERSION ((u32)0xFFFFFFFF) + +#define NVSP_PROTOCOL_VERSION_1 2 +#define NVSP_PROTOCOL_VERSION_2 0x30002 + +enum { + NVSP_MSG_TYPE_NONE = 0, + + /* Init Messages */ + NVSP_MSG_TYPE_INIT = 1, + NVSP_MSG_TYPE_INIT_COMPLETE = 2, + + NVSP_VERSION_MSG_START = 100, + + /* Version 1 Messages */ + NVSP_MSG1_TYPE_SEND_NDIS_VER = NVSP_VERSION_MSG_START, + + NVSP_MSG1_TYPE_SEND_RECV_BUF, + NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE, + NVSP_MSG1_TYPE_REVOKE_RECV_BUF, + + NVSP_MSG1_TYPE_SEND_SEND_BUF, + NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE, + NVSP_MSG1_TYPE_REVOKE_SEND_BUF, + + NVSP_MSG1_TYPE_SEND_RNDIS_PKT, + NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE, + + /* Version 2 messages */ + NVSP_MSG2_TYPE_SEND_CHIMNEY_DELEGATED_BUF, + NVSP_MSG2_TYPE_SEND_CHIMNEY_DELEGATED_BUF_COMP, + NVSP_MSG2_TYPE_REVOKE_CHIMNEY_DELEGATED_BUF, + + NVSP_MSG2_TYPE_RESUME_CHIMNEY_RX_INDICATION, + + NVSP_MSG2_TYPE_TERMINATE_CHIMNEY, + NVSP_MSG2_TYPE_TERMINATE_CHIMNEY_COMP, + + NVSP_MSG2_TYPE_INDICATE_CHIMNEY_EVENT, + + NVSP_MSG2_TYPE_SEND_CHIMNEY_PKT, + NVSP_MSG2_TYPE_SEND_CHIMNEY_PKT_COMP, + + NVSP_MSG2_TYPE_POST_CHIMNEY_RECV_REQ, + NVSP_MSG2_TYPE_POST_CHIMNEY_RECV_REQ_COMP, + + NVSP_MSG2_TYPE_ALLOC_RXBUF, + NVSP_MSG2_TYPE_ALLOC_RXBUF_COMP, + + NVSP_MSG2_TYPE_FREE_RXBUF, + + NVSP_MSG2_TYPE_SEND_VMQ_RNDIS_PKT, + NVSP_MSG2_TYPE_SEND_VMQ_RNDIS_PKT_COMP, + + NVSP_MSG2_TYPE_SEND_NDIS_CONFIG, + + NVSP_MSG2_TYPE_ALLOC_CHIMNEY_HANDLE, + NVSP_MSG2_TYPE_ALLOC_CHIMNEY_HANDLE_COMP, +}; + +enum { + NVSP_STAT_NONE = 0, + NVSP_STAT_SUCCESS, + NVSP_STAT_FAIL, + NVSP_STAT_PROTOCOL_TOO_NEW, + NVSP_STAT_PROTOCOL_TOO_OLD, + NVSP_STAT_INVALID_RNDIS_PKT, + NVSP_STAT_BUSY, + NVSP_STAT_PROTOCOL_UNSUPPORTED, + NVSP_STAT_MAX, +}; + +struct nvsp_message_header { + u32 msg_type; +}; + +/* Init Messages */ + +/* + * This message is used by the VSC to initialize the channel after the channels + * has been opened. This message should never include anything other then + * versioning (i.e. this message will be the same for ever). + */ +struct nvsp_message_init { + u32 min_protocol_ver; + u32 max_protocol_ver; +} __packed; + +/* + * This message is used by the VSP to complete the initialization of the + * channel. This message should never include anything other then versioning + * (i.e. this message will be the same for ever). + */ +struct nvsp_message_init_complete { + u32 negotiated_protocol_ver; + u32 max_mdl_chain_len; + u32 status; +} __packed; + +union nvsp_message_init_uber { + struct nvsp_message_init init; + struct nvsp_message_init_complete init_complete; +} __packed; + +/* Version 1 Messages */ + +/* + * This message is used by the VSC to send the NDIS version to the VSP. The VSP + * can use this information when handling OIDs sent by the VSC. + */ +struct nvsp_1_message_send_ndis_version { + u32 ndis_major_ver; + u32 ndis_minor_ver; +} __packed; + +/* + * This message is used by the VSC to send a receive buffer to the VSP. The VSP + * can then use the receive buffer to send data to the VSC. + */ +struct nvsp_1_message_send_receive_buffer { + u32 gpadl_handle; + u16 id; +} __packed; + +struct nvsp_1_receive_buffer_section { + u32 offset; + u32 sub_alloc_size; + u32 num_sub_allocs; + u32 end_offset; +} __packed; + +/* + * This message is used by the VSP to acknowledge a receive buffer send by the + * VSC. This message must be sent by the VSP before the VSP uses the receive + * buffer. + */ +struct nvsp_1_message_send_receive_buffer_complete { + u32 status; + u32 num_sections; + + /* + * The receive buffer is split into two parts, a large suballocation + * section and a small suballocation section. These sections are then + * suballocated by a certain size. + */ + + /* + * For example, the following break up of the receive buffer has 6 + * large suballocations and 10 small suballocations. + */ + + /* + * | Large Section | | Small Section | + * ------------------------------------------------------------ + * | | | | | | | | | | | | | | | | | | + * | | + * LargeOffset SmallOffset + */ + + struct nvsp_1_receive_buffer_section sections[1]; +} __packed; + +/* + * This message is sent by the VSC to revoke the receive buffer. After the VSP + * completes this transaction, the vsp should never use the receive buffer + * again. + */ +struct nvsp_1_message_revoke_receive_buffer { + u16 id; +}; + +/* + * This message is used by the VSC to send a send buffer to the VSP. The VSC + * can then use the send buffer to send data to the VSP. + */ +struct nvsp_1_message_send_send_buffer { + u32 gpadl_handle; + u16 id; +} __packed; + +/* + * This message is used by the VSP to acknowledge a send buffer sent by the + * VSC. This message must be sent by the VSP before the VSP uses the sent + * buffer. + */ +struct nvsp_1_message_send_send_buffer_complete { + u32 status; + + /* + * The VSC gets to choose the size of the send buffer and the VSP gets + * to choose the sections size of the buffer. This was done to enable + * dynamic reconfigurations when the cost of GPA-direct buffers + * decreases. + */ + u32 section_size; +} __packed; + +/* + * This message is sent by the VSC to revoke the send buffer. After the VSP + * completes this transaction, the vsp should never use the send buffer again. + */ +struct nvsp_1_message_revoke_send_buffer { + u16 id; +}; + +/* + * This message is used by both the VSP and the VSC to send a RNDIS message to + * the opposite channel endpoint. + */ +struct nvsp_1_message_send_rndis_packet { + /* + * This field is specified by RNIDS. They assume there's two different + * channels of communication. However, the Network VSP only has one. + * Therefore, the channel travels with the RNDIS packet. + */ + u32 channel_type; + + /* + * This field is used to send part or all of the data through a send + * buffer. This values specifies an index into the send buffer. If the + * index is 0xFFFFFFFF, then the send buffer is not being used and all + * of the data was sent through other VMBus mechanisms. + */ + u32 send_buf_section_index; + u32 send_buf_section_size; +} __packed; + +/* + * This message is used by both the VSP and the VSC to complete a RNDIS message + * to the opposite channel endpoint. At this point, the initiator of this + * message cannot use any resources associated with the original RNDIS packet. + */ +struct nvsp_1_message_send_rndis_packet_complete { + u32 status; +}; + +union nvsp_1_message_uber { + struct nvsp_1_message_send_ndis_version send_ndis_ver; + + struct nvsp_1_message_send_receive_buffer send_recv_buf; + struct nvsp_1_message_send_receive_buffer_complete + send_recv_buf_complete; + struct nvsp_1_message_revoke_receive_buffer revoke_recv_buf; + + struct nvsp_1_message_send_send_buffer send_send_buf; + struct nvsp_1_message_send_send_buffer_complete send_send_buf_complete; + struct nvsp_1_message_revoke_send_buffer revoke_send_buf; + + struct nvsp_1_message_send_rndis_packet send_rndis_pkt; + struct nvsp_1_message_send_rndis_packet_complete + send_rndis_pkt_complete; +} __packed; + + +/* + * Network VSP protocol version 2 messages: + */ +struct nvsp_2_vsc_capability { + union { + u64 data; + struct { + u64 vmq:1; + u64 chimney:1; + u64 sriov:1; + u64 ieee8021q:1; + u64 correlation_id:1; + }; + }; +} __packed; + +struct nvsp_2_send_ndis_config { + u32 mtu; + u32 reserved; + struct nvsp_2_vsc_capability capability; +} __packed; + +/* Allocate receive buffer */ +struct nvsp_2_alloc_rxbuf { + /* Allocation ID to match the allocation request and response */ + u32 alloc_id; + + /* Length of the VM shared memory receive buffer that needs to + * be allocated + */ + u32 len; +} __packed; + +/* Allocate receive buffer complete */ +struct nvsp_2_alloc_rxbuf_comp { + /* The NDIS_STATUS code for buffer allocation */ + u32 status; + + u32 alloc_id; + + /* GPADL handle for the allocated receive buffer */ + u32 gpadl_handle; + + /* Receive buffer ID */ + u64 recv_buf_id; +} __packed; + +struct nvsp_2_free_rxbuf { + u64 recv_buf_id; +} __packed; + +union nvsp_2_message_uber { + struct nvsp_2_send_ndis_config send_ndis_config; + struct nvsp_2_alloc_rxbuf alloc_rxbuf; + struct nvsp_2_alloc_rxbuf_comp alloc_rxbuf_comp; + struct nvsp_2_free_rxbuf free_rxbuf; +} __packed; + +union nvsp_all_messages { + union nvsp_message_init_uber init_msg; + union nvsp_1_message_uber v1_msg; + union nvsp_2_message_uber v2_msg; +} __packed; + +/* ALL Messages */ +struct nvsp_message { + struct nvsp_message_header hdr; + union nvsp_all_messages msg; +} __packed; + + +#define NETVSC_MTU 65536 + +#define NETVSC_RECEIVE_BUFFER_SIZE (1024*1024*2) /* 2MB */ + +#define NETVSC_RECEIVE_BUFFER_ID 0xcafe + +#define NETVSC_RECEIVE_SG_COUNT 1 + +/* Preallocated receive packets */ +#define NETVSC_RECEIVE_PACKETLIST_COUNT 256 + +#define NETVSC_PACKET_SIZE 2048 + +/* Per netvsc channel-specific */ +struct netvsc_device { + struct hv_device *dev; + + u32 nvsp_version; + + atomic_t num_outstanding_sends; + bool start_remove; + bool destroy; + /* + * List of free preallocated hv_netvsc_packet to represent receive + * packet + */ + struct list_head recv_pkt_list; + spinlock_t recv_pkt_list_lock; + + /* Receive buffer allocated by us but manages by NetVSP */ + void *recv_buf; + u32 recv_buf_size; + u32 recv_buf_gpadl_handle; + u32 recv_section_cnt; + struct nvsp_1_receive_buffer_section *recv_section; + + /* Used for NetVSP initialization protocol */ + struct completion channel_init_wait; + struct nvsp_message channel_init_pkt; + + struct nvsp_message revoke_packet; + /* unsigned char HwMacAddr[HW_MACADDR_LEN]; */ + + struct net_device *ndev; + + /* Holds rndis device info */ + void *extension; +}; + + +/* Status codes */ + + +#ifndef STATUS_SUCCESS +#define STATUS_SUCCESS (0x00000000L) +#endif + +#ifndef STATUS_UNSUCCESSFUL +#define STATUS_UNSUCCESSFUL (0xC0000001L) +#endif + +#ifndef STATUS_PENDING +#define STATUS_PENDING (0x00000103L) +#endif + +#ifndef STATUS_INSUFFICIENT_RESOURCES +#define STATUS_INSUFFICIENT_RESOURCES (0xC000009AL) +#endif + +#ifndef STATUS_BUFFER_OVERFLOW +#define STATUS_BUFFER_OVERFLOW (0x80000005L) +#endif + +#ifndef STATUS_NOT_SUPPORTED +#define STATUS_NOT_SUPPORTED (0xC00000BBL) +#endif + +#define RNDIS_STATUS_SUCCESS (STATUS_SUCCESS) +#define RNDIS_STATUS_PENDING (STATUS_PENDING) +#define RNDIS_STATUS_NOT_RECOGNIZED (0x00010001L) +#define RNDIS_STATUS_NOT_COPIED (0x00010002L) +#define RNDIS_STATUS_NOT_ACCEPTED (0x00010003L) +#define RNDIS_STATUS_CALL_ACTIVE (0x00010007L) + +#define RNDIS_STATUS_ONLINE (0x40010003L) +#define RNDIS_STATUS_RESET_START (0x40010004L) +#define RNDIS_STATUS_RESET_END (0x40010005L) +#define RNDIS_STATUS_RING_STATUS (0x40010006L) +#define RNDIS_STATUS_CLOSED (0x40010007L) +#define RNDIS_STATUS_WAN_LINE_UP (0x40010008L) +#define RNDIS_STATUS_WAN_LINE_DOWN (0x40010009L) +#define RNDIS_STATUS_WAN_FRAGMENT (0x4001000AL) +#define RNDIS_STATUS_MEDIA_CONNECT (0x4001000BL) +#define RNDIS_STATUS_MEDIA_DISCONNECT (0x4001000CL) +#define RNDIS_STATUS_HARDWARE_LINE_UP (0x4001000DL) +#define RNDIS_STATUS_HARDWARE_LINE_DOWN (0x4001000EL) +#define RNDIS_STATUS_INTERFACE_UP (0x4001000FL) +#define RNDIS_STATUS_INTERFACE_DOWN (0x40010010L) +#define RNDIS_STATUS_MEDIA_BUSY (0x40010011L) +#define RNDIS_STATUS_MEDIA_SPECIFIC_INDICATION (0x40010012L) +#define RNDIS_STATUS_WW_INDICATION RDIA_SPECIFIC_INDICATION +#define RNDIS_STATUS_LINK_SPEED_CHANGE (0x40010013L) + +#define RNDIS_STATUS_NOT_RESETTABLE (0x80010001L) +#define RNDIS_STATUS_SOFT_ERRORS (0x80010003L) +#define RNDIS_STATUS_HARD_ERRORS (0x80010004L) +#define RNDIS_STATUS_BUFFER_OVERFLOW (STATUS_BUFFER_OVERFLOW) + +#define RNDIS_STATUS_FAILURE (STATUS_UNSUCCESSFUL) +#define RNDIS_STATUS_RESOURCES (STATUS_INSUFFICIENT_RESOURCES) +#define RNDIS_STATUS_CLOSING (0xC0010002L) +#define RNDIS_STATUS_BAD_VERSION (0xC0010004L) +#define RNDIS_STATUS_BAD_CHARACTERISTICS (0xC0010005L) +#define RNDIS_STATUS_ADAPTER_NOT_FOUND (0xC0010006L) +#define RNDIS_STATUS_OPEN_FAILED (0xC0010007L) +#define RNDIS_STATUS_DEVICE_FAILED (0xC0010008L) +#define RNDIS_STATUS_MULTICAST_FULL (0xC0010009L) +#define RNDIS_STATUS_MULTICAST_EXISTS (0xC001000AL) +#define RNDIS_STATUS_MULTICAST_NOT_FOUND (0xC001000BL) +#define RNDIS_STATUS_REQUEST_ABORTED (0xC001000CL) +#define RNDIS_STATUS_RESET_IN_PROGRESS (0xC001000DL) +#define RNDIS_STATUS_CLOSING_INDICATING (0xC001000EL) +#define RNDIS_STATUS_NOT_SUPPORTED (STATUS_NOT_SUPPORTED) +#define RNDIS_STATUS_INVALID_PACKET (0xC001000FL) +#define RNDIS_STATUS_OPEN_LIST_FULL (0xC0010010L) +#define RNDIS_STATUS_ADAPTER_NOT_READY (0xC0010011L) +#define RNDIS_STATUS_ADAPTER_NOT_OPEN (0xC0010012L) +#define RNDIS_STATUS_NOT_INDICATING (0xC0010013L) +#define RNDIS_STATUS_INVALID_LENGTH (0xC0010014L) +#define RNDIS_STATUS_INVALID_DATA (0xC0010015L) +#define RNDIS_STATUS_BUFFER_TOO_SHORT (0xC0010016L) +#define RNDIS_STATUS_INVALID_OID (0xC0010017L) +#define RNDIS_STATUS_ADAPTER_REMOVED (0xC0010018L) +#define RNDIS_STATUS_UNSUPPORTED_MEDIA (0xC0010019L) +#define RNDIS_STATUS_GROUP_ADDRESS_IN_USE (0xC001001AL) +#define RNDIS_STATUS_FILE_NOT_FOUND (0xC001001BL) +#define RNDIS_STATUS_ERROR_READING_FILE (0xC001001CL) +#define RNDIS_STATUS_ALREADY_MAPPED (0xC001001DL) +#define RNDIS_STATUS_RESOURCE_CONFLICT (0xC001001EL) +#define RNDIS_STATUS_NO_CABLE (0xC001001FL) + +#define RNDIS_STATUS_INVALID_SAP (0xC0010020L) +#define RNDIS_STATUS_SAP_IN_USE (0xC0010021L) +#define RNDIS_STATUS_INVALID_ADDRESS (0xC0010022L) +#define RNDIS_STATUS_VC_NOT_ACTIVATED (0xC0010023L) +#define RNDIS_STATUS_DEST_OUT_OF_ORDER (0xC0010024L) +#define RNDIS_STATUS_VC_NOT_AVAILABLE (0xC0010025L) +#define RNDIS_STATUS_CELLRATE_NOT_AVAILABLE (0xC0010026L) +#define RNDIS_STATUS_INCOMPATABLE_QOS (0xC0010027L) +#define RNDIS_STATUS_AAL_PARAMS_UNSUPPORTED (0xC0010028L) +#define RNDIS_STATUS_NO_ROUTE_TO_DESTINATION (0xC0010029L) + +#define RNDIS_STATUS_TOKEN_RING_OPEN_ERROR (0xC0011000L) + +/* Object Identifiers used by NdisRequest Query/Set Information */ +/* General Objects */ +#define RNDIS_OID_GEN_SUPPORTED_LIST 0x00010101 +#define RNDIS_OID_GEN_HARDWARE_STATUS 0x00010102 +#define RNDIS_OID_GEN_MEDIA_SUPPORTED 0x00010103 +#define RNDIS_OID_GEN_MEDIA_IN_USE 0x00010104 +#define RNDIS_OID_GEN_MAXIMUM_LOOKAHEAD 0x00010105 +#define RNDIS_OID_GEN_MAXIMUM_FRAME_SIZE 0x00010106 +#define RNDIS_OID_GEN_LINK_SPEED 0x00010107 +#define RNDIS_OID_GEN_TRANSMIT_BUFFER_SPACE 0x00010108 +#define RNDIS_OID_GEN_RECEIVE_BUFFER_SPACE 0x00010109 +#define RNDIS_OID_GEN_TRANSMIT_BLOCK_SIZE 0x0001010A +#define RNDIS_OID_GEN_RECEIVE_BLOCK_SIZE 0x0001010B +#define RNDIS_OID_GEN_VENDOR_ID 0x0001010C +#define RNDIS_OID_GEN_VENDOR_DESCRIPTION 0x0001010D +#define RNDIS_OID_GEN_CURRENT_PACKET_FILTER 0x0001010E +#define RNDIS_OID_GEN_CURRENT_LOOKAHEAD 0x0001010F +#define RNDIS_OID_GEN_DRIVER_VERSION 0x00010110 +#define RNDIS_OID_GEN_MAXIMUM_TOTAL_SIZE 0x00010111 +#define RNDIS_OID_GEN_PROTOCOL_OPTIONS 0x00010112 +#define RNDIS_OID_GEN_MAC_OPTIONS 0x00010113 +#define RNDIS_OID_GEN_MEDIA_CONNECT_STATUS 0x00010114 +#define RNDIS_OID_GEN_MAXIMUM_SEND_PACKETS 0x00010115 +#define RNDIS_OID_GEN_VENDOR_DRIVER_VERSION 0x00010116 +#define RNDIS_OID_GEN_NETWORK_LAYER_ADDRESSES 0x00010118 +#define RNDIS_OID_GEN_TRANSPORT_HEADER_OFFSET 0x00010119 +#define RNDIS_OID_GEN_MACHINE_NAME 0x0001021A +#define RNDIS_OID_GEN_RNDIS_CONFIG_PARAMETER 0x0001021B + +#define RNDIS_OID_GEN_XMIT_OK 0x00020101 +#define RNDIS_OID_GEN_RCV_OK 0x00020102 +#define RNDIS_OID_GEN_XMIT_ERROR 0x00020103 +#define RNDIS_OID_GEN_RCV_ERROR 0x00020104 +#define RNDIS_OID_GEN_RCV_NO_BUFFER 0x00020105 + +#define RNDIS_OID_GEN_DIRECTED_BYTES_XMIT 0x00020201 +#define RNDIS_OID_GEN_DIRECTED_FRAMES_XMIT 0x00020202 +#define RNDIS_OID_GEN_MULTICAST_BYTES_XMIT 0x00020203 +#define RNDIS_OID_GEN_MULTICAST_FRAMES_XMIT 0x00020204 +#define RNDIS_OID_GEN_BROADCAST_BYTES_XMIT 0x00020205 +#define RNDIS_OID_GEN_BROADCAST_FRAMES_XMIT 0x00020206 +#define RNDIS_OID_GEN_DIRECTED_BYTES_RCV 0x00020207 +#define RNDIS_OID_GEN_DIRECTED_FRAMES_RCV 0x00020208 +#define RNDIS_OID_GEN_MULTICAST_BYTES_RCV 0x00020209 +#define RNDIS_OID_GEN_MULTICAST_FRAMES_RCV 0x0002020A +#define RNDIS_OID_GEN_BROADCAST_BYTES_RCV 0x0002020B +#define RNDIS_OID_GEN_BROADCAST_FRAMES_RCV 0x0002020C + +#define RNDIS_OID_GEN_RCV_CRC_ERROR 0x0002020D +#define RNDIS_OID_GEN_TRANSMIT_QUEUE_LENGTH 0x0002020E + +#define RNDIS_OID_GEN_GET_TIME_CAPS 0x0002020F +#define RNDIS_OID_GEN_GET_NETCARD_TIME 0x00020210 + +/* These are connection-oriented general OIDs. */ +/* These replace the above OIDs for connection-oriented media. */ +#define RNDIS_OID_GEN_CO_SUPPORTED_LIST 0x00010101 +#define RNDIS_OID_GEN_CO_HARDWARE_STATUS 0x00010102 +#define RNDIS_OID_GEN_CO_MEDIA_SUPPORTED 0x00010103 +#define RNDIS_OID_GEN_CO_MEDIA_IN_USE 0x00010104 +#define RNDIS_OID_GEN_CO_LINK_SPEED 0x00010105 +#define RNDIS_OID_GEN_CO_VENDOR_ID 0x00010106 +#define RNDIS_OID_GEN_CO_VENDOR_DESCRIPTION 0x00010107 +#define RNDIS_OID_GEN_CO_DRIVER_VERSION 0x00010108 +#define RNDIS_OID_GEN_CO_PROTOCOL_OPTIONS 0x00010109 +#define RNDIS_OID_GEN_CO_MAC_OPTIONS 0x0001010A +#define RNDIS_OID_GEN_CO_MEDIA_CONNECT_STATUS 0x0001010B +#define RNDIS_OID_GEN_CO_VENDOR_DRIVER_VERSION 0x0001010C +#define RNDIS_OID_GEN_CO_MINIMUM_LINK_SPEED 0x0001010D + +#define RNDIS_OID_GEN_CO_GET_TIME_CAPS 0x00010201 +#define RNDIS_OID_GEN_CO_GET_NETCARD_TIME 0x00010202 + +/* These are connection-oriented statistics OIDs. */ +#define RNDIS_OID_GEN_CO_XMIT_PDUS_OK 0x00020101 +#define RNDIS_OID_GEN_CO_RCV_PDUS_OK 0x00020102 +#define RNDIS_OID_GEN_CO_XMIT_PDUS_ERROR 0x00020103 +#define RNDIS_OID_GEN_CO_RCV_PDUS_ERROR 0x00020104 +#define RNDIS_OID_GEN_CO_RCV_PDUS_NO_BUFFER 0x00020105 + + +#define RNDIS_OID_GEN_CO_RCV_CRC_ERROR 0x00020201 +#define RNDIS_OID_GEN_CO_TRANSMIT_QUEUE_LENGTH 0x00020202 +#define RNDIS_OID_GEN_CO_BYTES_XMIT 0x00020203 +#define RNDIS_OID_GEN_CO_BYTES_RCV 0x00020204 +#define RNDIS_OID_GEN_CO_BYTES_XMIT_OUTSTANDING 0x00020205 +#define RNDIS_OID_GEN_CO_NETCARD_LOAD 0x00020206 + +/* These are objects for Connection-oriented media call-managers. */ +#define RNDIS_OID_CO_ADD_PVC 0xFF000001 +#define RNDIS_OID_CO_DELETE_PVC 0xFF000002 +#define RNDIS_OID_CO_GET_CALL_INFORMATION 0xFF000003 +#define RNDIS_OID_CO_ADD_ADDRESS 0xFF000004 +#define RNDIS_OID_CO_DELETE_ADDRESS 0xFF000005 +#define RNDIS_OID_CO_GET_ADDRESSES 0xFF000006 +#define RNDIS_OID_CO_ADDRESS_CHANGE 0xFF000007 +#define RNDIS_OID_CO_SIGNALING_ENABLED 0xFF000008 +#define RNDIS_OID_CO_SIGNALING_DISABLED 0xFF000009 + +/* 802.3 Objects (Ethernet) */ +#define RNDIS_OID_802_3_PERMANENT_ADDRESS 0x01010101 +#define RNDIS_OID_802_3_CURRENT_ADDRESS 0x01010102 +#define RNDIS_OID_802_3_MULTICAST_LIST 0x01010103 +#define RNDIS_OID_802_3_MAXIMUM_LIST_SIZE 0x01010104 +#define RNDIS_OID_802_3_MAC_OPTIONS 0x01010105 + +#define NDIS_802_3_MAC_OPTION_PRIORITY 0x00000001 + +#define RNDIS_OID_802_3_RCV_ERROR_ALIGNMENT 0x01020101 +#define RNDIS_OID_802_3_XMIT_ONE_COLLISION 0x01020102 +#define RNDIS_OID_802_3_XMIT_MORE_COLLISIONS 0x01020103 + +#define RNDIS_OID_802_3_XMIT_DEFERRED 0x01020201 +#define RNDIS_OID_802_3_XMIT_MAX_COLLISIONS 0x01020202 +#define RNDIS_OID_802_3_RCV_OVERRUN 0x01020203 +#define RNDIS_OID_802_3_XMIT_UNDERRUN 0x01020204 +#define RNDIS_OID_802_3_XMIT_HEARTBEAT_FAILURE 0x01020205 +#define RNDIS_OID_802_3_XMIT_TIMES_CRS_LOST 0x01020206 +#define RNDIS_OID_802_3_XMIT_LATE_COLLISIONS 0x01020207 + +/* Remote NDIS message types */ +#define REMOTE_NDIS_PACKET_MSG 0x00000001 +#define REMOTE_NDIS_INITIALIZE_MSG 0x00000002 +#define REMOTE_NDIS_HALT_MSG 0x00000003 +#define REMOTE_NDIS_QUERY_MSG 0x00000004 +#define REMOTE_NDIS_SET_MSG 0x00000005 +#define REMOTE_NDIS_RESET_MSG 0x00000006 +#define REMOTE_NDIS_INDICATE_STATUS_MSG 0x00000007 +#define REMOTE_NDIS_KEEPALIVE_MSG 0x00000008 + +#define REMOTE_CONDIS_MP_CREATE_VC_MSG 0x00008001 +#define REMOTE_CONDIS_MP_DELETE_VC_MSG 0x00008002 +#define REMOTE_CONDIS_MP_ACTIVATE_VC_MSG 0x00008005 +#define REMOTE_CONDIS_MP_DEACTIVATE_VC_MSG 0x00008006 +#define REMOTE_CONDIS_INDICATE_STATUS_MSG 0x00008007 + +/* Remote NDIS message completion types */ +#define REMOTE_NDIS_INITIALIZE_CMPLT 0x80000002 +#define REMOTE_NDIS_QUERY_CMPLT 0x80000004 +#define REMOTE_NDIS_SET_CMPLT 0x80000005 +#define REMOTE_NDIS_RESET_CMPLT 0x80000006 +#define REMOTE_NDIS_KEEPALIVE_CMPLT 0x80000008 + +#define REMOTE_CONDIS_MP_CREATE_VC_CMPLT 0x80008001 +#define REMOTE_CONDIS_MP_DELETE_VC_CMPLT 0x80008002 +#define REMOTE_CONDIS_MP_ACTIVATE_VC_CMPLT 0x80008005 +#define REMOTE_CONDIS_MP_DEACTIVATE_VC_CMPLT 0x80008006 + +/* + * Reserved message type for private communication between lower-layer host + * driver and remote device, if necessary. + */ +#define REMOTE_NDIS_BUS_MSG 0xff000001 + +/* Defines for DeviceFlags in struct rndis_initialize_complete */ +#define RNDIS_DF_CONNECTIONLESS 0x00000001 +#define RNDIS_DF_CONNECTION_ORIENTED 0x00000002 +#define RNDIS_DF_RAW_DATA 0x00000004 + +/* Remote NDIS medium types. */ +#define RNDIS_MEDIUM_802_3 0x00000000 +#define RNDIS_MEDIUM_802_5 0x00000001 +#define RNDIS_MEDIUM_FDDI 0x00000002 +#define RNDIS_MEDIUM_WAN 0x00000003 +#define RNDIS_MEDIUM_LOCAL_TALK 0x00000004 +#define RNDIS_MEDIUM_ARCNET_RAW 0x00000006 +#define RNDIS_MEDIUM_ARCNET_878_2 0x00000007 +#define RNDIS_MEDIUM_ATM 0x00000008 +#define RNDIS_MEDIUM_WIRELESS_WAN 0x00000009 +#define RNDIS_MEDIUM_IRDA 0x0000000a +#define RNDIS_MEDIUM_CO_WAN 0x0000000b +/* Not a real medium, defined as an upper-bound */ +#define RNDIS_MEDIUM_MAX 0x0000000d + + +/* Remote NDIS medium connection states. */ +#define RNDIS_MEDIA_STATE_CONNECTED 0x00000000 +#define RNDIS_MEDIA_STATE_DISCONNECTED 0x00000001 + +/* Remote NDIS version numbers */ +#define RNDIS_MAJOR_VERSION 0x00000001 +#define RNDIS_MINOR_VERSION 0x00000000 + + +/* NdisInitialize message */ +struct rndis_initialize_request { + u32 req_id; + u32 major_ver; + u32 minor_ver; + u32 max_xfer_size; +}; + +/* Response to NdisInitialize */ +struct rndis_initialize_complete { + u32 req_id; + u32 status; + u32 major_ver; + u32 minor_ver; + u32 dev_flags; + u32 medium; + u32 max_pkt_per_msg; + u32 max_xfer_size; + u32 pkt_alignment_factor; + u32 af_list_offset; + u32 af_list_size; +}; + +/* Call manager devices only: Information about an address family */ +/* supported by the device is appended to the response to NdisInitialize. */ +struct rndis_co_address_family { + u32 address_family; + u32 major_ver; + u32 minor_ver; +}; + +/* NdisHalt message */ +struct rndis_halt_request { + u32 req_id; +}; + +/* NdisQueryRequest message */ +struct rndis_query_request { + u32 req_id; + u32 oid; + u32 info_buflen; + u32 info_buf_offset; + u32 dev_vc_handle; +}; + +/* Response to NdisQueryRequest */ +struct rndis_query_complete { + u32 req_id; + u32 status; + u32 info_buflen; + u32 info_buf_offset; +}; + +/* NdisSetRequest message */ +struct rndis_set_request { + u32 req_id; + u32 oid; + u32 info_buflen; + u32 info_buf_offset; + u32 dev_vc_handle; +}; + +/* Response to NdisSetRequest */ +struct rndis_set_complete { + u32 req_id; + u32 status; +}; + +/* NdisReset message */ +struct rndis_reset_request { + u32 reserved; +}; + +/* Response to NdisReset */ +struct rndis_reset_complete { + u32 status; + u32 addressing_reset; +}; + +/* NdisMIndicateStatus message */ +struct rndis_indicate_status { + u32 status; + u32 status_buflen; + u32 status_buf_offset; +}; + +/* Diagnostic information passed as the status buffer in */ +/* struct rndis_indicate_status messages signifying error conditions. */ +struct rndis_diagnostic_info { + u32 diag_status; + u32 error_offset; +}; + +/* NdisKeepAlive message */ +struct rndis_keepalive_request { + u32 req_id; +}; + +/* Response to NdisKeepAlive */ +struct rndis_keepalive_complete { + u32 req_id; + u32 status; +}; + +/* + * Data message. All Offset fields contain byte offsets from the beginning of + * struct rndis_packet. All Length fields are in bytes. VcHandle is set + * to 0 for connectionless data, otherwise it contains the VC handle. + */ +struct rndis_packet { + u32 data_offset; + u32 data_len; + u32 oob_data_offset; + u32 oob_data_len; + u32 num_oob_data_elements; + u32 per_pkt_info_offset; + u32 per_pkt_info_len; + u32 vc_handle; + u32 reserved; +}; + +/* Optional Out of Band data associated with a Data message. */ +struct rndis_oobd { + u32 size; + u32 type; + u32 class_info_offset; +}; + +/* Packet extension field contents associated with a Data message. */ +struct rndis_per_packet_info { + u32 size; + u32 type; + u32 ppi_offset; +}; + +enum ndis_per_pkt_info_type { + TCPIP_CHKSUM_PKTINFO, + IPSEC_PKTINFO, + TCP_LARGESEND_PKTINFO, + CLASSIFICATION_HANDLE_PKTINFO, + NDIS_RESERVED, + SG_LIST_PKTINFO, + IEEE_8021Q_INFO, + ORIGINAL_PKTINFO, + PACKET_CANCEL_ID, + ORIGINAL_NET_BUFLIST, + CACHED_NET_BUFLIST, + SHORT_PKT_PADINFO, + MAX_PER_PKT_INFO +}; + +struct ndis_pkt_8021q_info { + union { + struct { + u32 pri:3; /* User Priority */ + u32 cfi:1; /* Canonical Format ID */ + u32 vlanid:12; /* VLAN ID */ + u32 reserved:16; + }; + u32 value; + }; +}; + +#define NDIS_VLAN_PPI_SIZE (sizeof(struct rndis_per_packet_info) + \ + sizeof(struct ndis_pkt_8021q_info)) + +/* Format of Information buffer passed in a SetRequest for the OID */ +/* OID_GEN_RNDIS_CONFIG_PARAMETER. */ +struct rndis_config_parameter_info { + u32 parameter_name_offset; + u32 parameter_name_length; + u32 parameter_type; + u32 parameter_value_offset; + u32 parameter_value_length; +}; + +/* Values for ParameterType in struct rndis_config_parameter_info */ +#define RNDIS_CONFIG_PARAM_TYPE_INTEGER 0 +#define RNDIS_CONFIG_PARAM_TYPE_STRING 2 + +/* CONDIS Miniport messages for connection oriented devices */ +/* that do not implement a call manager. */ + +/* CoNdisMiniportCreateVc message */ +struct rcondis_mp_create_vc { + u32 req_id; + u32 ndis_vc_handle; +}; + +/* Response to CoNdisMiniportCreateVc */ +struct rcondis_mp_create_vc_complete { + u32 req_id; + u32 dev_vc_handle; + u32 status; +}; + +/* CoNdisMiniportDeleteVc message */ +struct rcondis_mp_delete_vc { + u32 req_id; + u32 dev_vc_handle; +}; + +/* Response to CoNdisMiniportDeleteVc */ +struct rcondis_mp_delete_vc_complete { + u32 req_id; + u32 status; +}; + +/* CoNdisMiniportQueryRequest message */ +struct rcondis_mp_query_request { + u32 req_id; + u32 request_type; + u32 oid; + u32 dev_vc_handle; + u32 info_buflen; + u32 info_buf_offset; +}; + +/* CoNdisMiniportSetRequest message */ +struct rcondis_mp_set_request { + u32 req_id; + u32 request_type; + u32 oid; + u32 dev_vc_handle; + u32 info_buflen; + u32 info_buf_offset; +}; + +/* CoNdisIndicateStatus message */ +struct rcondis_indicate_status { + u32 ndis_vc_handle; + u32 status; + u32 status_buflen; + u32 status_buf_offset; +}; + +/* CONDIS Call/VC parameters */ +struct rcondis_specific_parameters { + u32 parameter_type; + u32 parameter_length; + u32 parameter_lffset; +}; + +struct rcondis_media_parameters { + u32 flags; + u32 reserved1; + u32 reserved2; + struct rcondis_specific_parameters media_specific; +}; + +struct rndis_flowspec { + u32 token_rate; + u32 token_bucket_size; + u32 peak_bandwidth; + u32 latency; + u32 delay_variation; + u32 service_type; + u32 max_sdu_size; + u32 minimum_policed_size; +}; + +struct rcondis_call_manager_parameters { + struct rndis_flowspec transmit; + struct rndis_flowspec receive; + struct rcondis_specific_parameters call_mgr_specific; +}; + +/* CoNdisMiniportActivateVc message */ +struct rcondis_mp_activate_vc_request { + u32 req_id; + u32 flags; + u32 dev_vc_handle; + u32 media_params_offset; + u32 media_params_length; + u32 call_mgr_params_offset; + u32 call_mgr_params_length; +}; + +/* Response to CoNdisMiniportActivateVc */ +struct rcondis_mp_activate_vc_complete { + u32 req_id; + u32 status; +}; + +/* CoNdisMiniportDeactivateVc message */ +struct rcondis_mp_deactivate_vc_request { + u32 req_id; + u32 flags; + u32 dev_vc_handle; +}; + +/* Response to CoNdisMiniportDeactivateVc */ +struct rcondis_mp_deactivate_vc_complete { + u32 req_id; + u32 status; +}; + + +/* union with all of the RNDIS messages */ +union rndis_message_container { + struct rndis_packet pkt; + struct rndis_initialize_request init_req; + struct rndis_halt_request halt_req; + struct rndis_query_request query_req; + struct rndis_set_request set_req; + struct rndis_reset_request reset_req; + struct rndis_keepalive_request keep_alive_req; + struct rndis_indicate_status indicate_status; + struct rndis_initialize_complete init_complete; + struct rndis_query_complete query_complete; + struct rndis_set_complete set_complete; + struct rndis_reset_complete reset_complete; + struct rndis_keepalive_complete keep_alive_complete; + struct rcondis_mp_create_vc co_miniport_create_vc; + struct rcondis_mp_delete_vc co_miniport_delete_vc; + struct rcondis_indicate_status co_indicate_status; + struct rcondis_mp_activate_vc_request co_miniport_activate_vc; + struct rcondis_mp_deactivate_vc_request co_miniport_deactivate_vc; + struct rcondis_mp_create_vc_complete co_miniport_create_vc_complete; + struct rcondis_mp_delete_vc_complete co_miniport_delete_vc_complete; + struct rcondis_mp_activate_vc_complete co_miniport_activate_vc_complete; + struct rcondis_mp_deactivate_vc_complete + co_miniport_deactivate_vc_complete; +}; + +/* Remote NDIS message format */ +struct rndis_message { + u32 ndis_msg_type; + + /* Total length of this message, from the beginning */ + /* of the sruct rndis_message, in bytes. */ + u32 msg_len; + + /* Actual message */ + union rndis_message_container msg; +}; + + +struct rndis_filter_packet { + void *completion_ctx; + void (*completion)(void *context); + struct rndis_message msg; +}; + +/* Handy macros */ + +/* get the size of an RNDIS message. Pass in the message type, */ +/* struct rndis_set_request, struct rndis_packet for example */ +#define RNDIS_MESSAGE_SIZE(msg) \ + (sizeof(msg) + (sizeof(struct rndis_message) - \ + sizeof(union rndis_message_container))) + +/* get pointer to info buffer with message pointer */ +#define MESSAGE_TO_INFO_BUFFER(msg) \ + (((unsigned char *)(msg)) + msg->info_buf_offset) + +/* get pointer to status buffer with message pointer */ +#define MESSAGE_TO_STATUS_BUFFER(msg) \ + (((unsigned char *)(msg)) + msg->status_buf_offset) + +/* get pointer to OOBD buffer with message pointer */ +#define MESSAGE_TO_OOBD_BUFFER(msg) \ + (((unsigned char *)(msg)) + msg->oob_data_offset) + +/* get pointer to data buffer with message pointer */ +#define MESSAGE_TO_DATA_BUFFER(msg) \ + (((unsigned char *)(msg)) + msg->per_pkt_info_offset) + +/* get pointer to contained message from NDIS_MESSAGE pointer */ +#define RNDIS_MESSAGE_PTR_TO_MESSAGE_PTR(rndis_msg) \ + ((void *) &rndis_msg->msg) + +/* get pointer to contained message from NDIS_MESSAGE pointer */ +#define RNDIS_MESSAGE_RAW_PTR_TO_MESSAGE_PTR(rndis_msg) \ + ((void *) rndis_msg) + + +#define __struct_bcount(x) + + + +#define RNDIS_HEADER_SIZE (sizeof(struct rndis_message) - \ + sizeof(union rndis_message_container)) + +#define NDIS_PACKET_TYPE_DIRECTED 0x00000001 +#define NDIS_PACKET_TYPE_MULTICAST 0x00000002 +#define NDIS_PACKET_TYPE_ALL_MULTICAST 0x00000004 +#define NDIS_PACKET_TYPE_BROADCAST 0x00000008 +#define NDIS_PACKET_TYPE_SOURCE_ROUTING 0x00000010 +#define NDIS_PACKET_TYPE_PROMISCUOUS 0x00000020 +#define NDIS_PACKET_TYPE_SMT 0x00000040 +#define NDIS_PACKET_TYPE_ALL_LOCAL 0x00000080 +#define NDIS_PACKET_TYPE_GROUP 0x00000100 +#define NDIS_PACKET_TYPE_ALL_FUNCTIONAL 0x00000200 +#define NDIS_PACKET_TYPE_FUNCTIONAL 0x00000400 +#define NDIS_PACKET_TYPE_MAC_FRAME 0x00000800 + + + +#endif /* _HYPERV_NET_H */ --- linux-3.2.0.orig/drivers/net/hyperv/Kconfig +++ linux-3.2.0/drivers/net/hyperv/Kconfig @@ -0,0 +1,5 @@ +config HYPERV_NET + tristate "Microsoft Hyper-V virtual network driver" + depends on HYPERV + help + Select this option to enable the Hyper-V virtual network driver. --- linux-3.2.0.orig/drivers/net/hyperv/rndis_filter.c +++ linux-3.2.0/drivers/net/hyperv/rndis_filter.c @@ -0,0 +1,892 @@ +/* + * Copyright (c) 2009, Microsoft Corporation. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program; if not, write to the Free Software Foundation, Inc., 59 Temple + * Place - Suite 330, Boston, MA 02111-1307 USA. + * + * Authors: + * Haiyang Zhang + * Hank Janssen + */ +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "hyperv_net.h" + + +struct rndis_request { + struct list_head list_ent; + struct completion wait_event; + + /* + * FIXME: We assumed a fixed size response here. If we do ever need to + * handle a bigger response, we can either define a max response + * message or add a response buffer variable above this field + */ + struct rndis_message response_msg; + + /* Simplify allocation by having a netvsc packet inline */ + struct hv_netvsc_packet pkt; + struct hv_page_buffer buf; + /* FIXME: We assumed a fixed size request here. */ + struct rndis_message request_msg; +}; + +static void rndis_filter_send_completion(void *ctx); + +static void rndis_filter_send_request_completion(void *ctx); + + + +static struct rndis_device *get_rndis_device(void) +{ + struct rndis_device *device; + + device = kzalloc(sizeof(struct rndis_device), GFP_KERNEL); + if (!device) + return NULL; + + spin_lock_init(&device->request_lock); + + INIT_LIST_HEAD(&device->req_list); + + device->state = RNDIS_DEV_UNINITIALIZED; + + return device; +} + +static struct rndis_request *get_rndis_request(struct rndis_device *dev, + u32 msg_type, + u32 msg_len) +{ + struct rndis_request *request; + struct rndis_message *rndis_msg; + struct rndis_set_request *set; + unsigned long flags; + + request = kzalloc(sizeof(struct rndis_request), GFP_KERNEL); + if (!request) + return NULL; + + init_completion(&request->wait_event); + + rndis_msg = &request->request_msg; + rndis_msg->ndis_msg_type = msg_type; + rndis_msg->msg_len = msg_len; + + /* + * Set the request id. This field is always after the rndis header for + * request/response packet types so we just used the SetRequest as a + * template + */ + set = &rndis_msg->msg.set_req; + set->req_id = atomic_inc_return(&dev->new_req_id); + + /* Add to the request list */ + spin_lock_irqsave(&dev->request_lock, flags); + list_add_tail(&request->list_ent, &dev->req_list); + spin_unlock_irqrestore(&dev->request_lock, flags); + + return request; +} + +static void put_rndis_request(struct rndis_device *dev, + struct rndis_request *req) +{ + unsigned long flags; + + spin_lock_irqsave(&dev->request_lock, flags); + list_del(&req->list_ent); + spin_unlock_irqrestore(&dev->request_lock, flags); + + kfree(req); +} + +static void dump_rndis_message(struct hv_device *hv_dev, + struct rndis_message *rndis_msg) +{ + struct net_device *netdev; + struct netvsc_device *net_device; + + net_device = hv_get_drvdata(hv_dev); + netdev = net_device->ndev; + + switch (rndis_msg->ndis_msg_type) { + case REMOTE_NDIS_PACKET_MSG: + netdev_dbg(netdev, "REMOTE_NDIS_PACKET_MSG (len %u, " + "data offset %u data len %u, # oob %u, " + "oob offset %u, oob len %u, pkt offset %u, " + "pkt len %u\n", + rndis_msg->msg_len, + rndis_msg->msg.pkt.data_offset, + rndis_msg->msg.pkt.data_len, + rndis_msg->msg.pkt.num_oob_data_elements, + rndis_msg->msg.pkt.oob_data_offset, + rndis_msg->msg.pkt.oob_data_len, + rndis_msg->msg.pkt.per_pkt_info_offset, + rndis_msg->msg.pkt.per_pkt_info_len); + break; + + case REMOTE_NDIS_INITIALIZE_CMPLT: + netdev_dbg(netdev, "REMOTE_NDIS_INITIALIZE_CMPLT " + "(len %u, id 0x%x, status 0x%x, major %d, minor %d, " + "device flags %d, max xfer size 0x%x, max pkts %u, " + "pkt aligned %u)\n", + rndis_msg->msg_len, + rndis_msg->msg.init_complete.req_id, + rndis_msg->msg.init_complete.status, + rndis_msg->msg.init_complete.major_ver, + rndis_msg->msg.init_complete.minor_ver, + rndis_msg->msg.init_complete.dev_flags, + rndis_msg->msg.init_complete.max_xfer_size, + rndis_msg->msg.init_complete. + max_pkt_per_msg, + rndis_msg->msg.init_complete. + pkt_alignment_factor); + break; + + case REMOTE_NDIS_QUERY_CMPLT: + netdev_dbg(netdev, "REMOTE_NDIS_QUERY_CMPLT " + "(len %u, id 0x%x, status 0x%x, buf len %u, " + "buf offset %u)\n", + rndis_msg->msg_len, + rndis_msg->msg.query_complete.req_id, + rndis_msg->msg.query_complete.status, + rndis_msg->msg.query_complete. + info_buflen, + rndis_msg->msg.query_complete. + info_buf_offset); + break; + + case REMOTE_NDIS_SET_CMPLT: + netdev_dbg(netdev, + "REMOTE_NDIS_SET_CMPLT (len %u, id 0x%x, status 0x%x)\n", + rndis_msg->msg_len, + rndis_msg->msg.set_complete.req_id, + rndis_msg->msg.set_complete.status); + break; + + case REMOTE_NDIS_INDICATE_STATUS_MSG: + netdev_dbg(netdev, "REMOTE_NDIS_INDICATE_STATUS_MSG " + "(len %u, status 0x%x, buf len %u, buf offset %u)\n", + rndis_msg->msg_len, + rndis_msg->msg.indicate_status.status, + rndis_msg->msg.indicate_status.status_buflen, + rndis_msg->msg.indicate_status.status_buf_offset); + break; + + default: + netdev_dbg(netdev, "0x%x (len %u)\n", + rndis_msg->ndis_msg_type, + rndis_msg->msg_len); + break; + } +} + +static int rndis_filter_send_request(struct rndis_device *dev, + struct rndis_request *req) +{ + int ret; + struct hv_netvsc_packet *packet; + + /* Setup the packet to send it */ + packet = &req->pkt; + + packet->is_data_pkt = false; + packet->total_data_buflen = req->request_msg.msg_len; + packet->page_buf_cnt = 1; + + packet->page_buf[0].pfn = virt_to_phys(&req->request_msg) >> + PAGE_SHIFT; + packet->page_buf[0].len = req->request_msg.msg_len; + packet->page_buf[0].offset = + (unsigned long)&req->request_msg & (PAGE_SIZE - 1); + + packet->completion.send.send_completion_ctx = req;/* packet; */ + packet->completion.send.send_completion = + rndis_filter_send_request_completion; + packet->completion.send.send_completion_tid = (unsigned long)dev; + + ret = netvsc_send(dev->net_dev->dev, packet); + return ret; +} + +static void rndis_filter_receive_response(struct rndis_device *dev, + struct rndis_message *resp) +{ + struct rndis_request *request = NULL; + bool found = false; + unsigned long flags; + struct net_device *ndev; + + ndev = dev->net_dev->ndev; + + spin_lock_irqsave(&dev->request_lock, flags); + list_for_each_entry(request, &dev->req_list, list_ent) { + /* + * All request/response message contains RequestId as the 1st + * field + */ + if (request->request_msg.msg.init_req.req_id + == resp->msg.init_complete.req_id) { + found = true; + break; + } + } + spin_unlock_irqrestore(&dev->request_lock, flags); + + if (found) { + if (resp->msg_len <= sizeof(struct rndis_message)) { + memcpy(&request->response_msg, resp, + resp->msg_len); + } else { + netdev_err(ndev, + "rndis response buffer overflow " + "detected (size %u max %zu)\n", + resp->msg_len, + sizeof(struct rndis_filter_packet)); + + if (resp->ndis_msg_type == + REMOTE_NDIS_RESET_CMPLT) { + /* does not have a request id field */ + request->response_msg.msg.reset_complete. + status = STATUS_BUFFER_OVERFLOW; + } else { + request->response_msg.msg. + init_complete.status = + STATUS_BUFFER_OVERFLOW; + } + } + + complete(&request->wait_event); + } else { + netdev_err(ndev, + "no rndis request found for this response " + "(id 0x%x res type 0x%x)\n", + resp->msg.init_complete.req_id, + resp->ndis_msg_type); + } +} + +static void rndis_filter_receive_indicate_status(struct rndis_device *dev, + struct rndis_message *resp) +{ + struct rndis_indicate_status *indicate = + &resp->msg.indicate_status; + + if (indicate->status == RNDIS_STATUS_MEDIA_CONNECT) { + netvsc_linkstatus_callback( + dev->net_dev->dev, 1); + } else if (indicate->status == RNDIS_STATUS_MEDIA_DISCONNECT) { + netvsc_linkstatus_callback( + dev->net_dev->dev, 0); + } else { + /* + * TODO: + */ + } +} + +/* + * Get the Per-Packet-Info with the specified type + * return NULL if not found. + */ +static inline void *rndis_get_ppi(struct rndis_packet *rpkt, u32 type) +{ + struct rndis_per_packet_info *ppi; + int len; + + if (rpkt->per_pkt_info_offset == 0) + return NULL; + + ppi = (struct rndis_per_packet_info *)((ulong)rpkt + + rpkt->per_pkt_info_offset); + len = rpkt->per_pkt_info_len; + + while (len > 0) { + if (ppi->type == type) + return (void *)((ulong)ppi + ppi->ppi_offset); + len -= ppi->size; + ppi = (struct rndis_per_packet_info *)((ulong)ppi + ppi->size); + } + + return NULL; +} + +static void rndis_filter_receive_data(struct rndis_device *dev, + struct rndis_message *msg, + struct hv_netvsc_packet *pkt) +{ + struct rndis_packet *rndis_pkt; + u32 data_offset; + struct ndis_pkt_8021q_info *vlan; + + rndis_pkt = &msg->msg.pkt; + + /* + * FIXME: Handle multiple rndis pkt msgs that maybe enclosed in this + * netvsc packet (ie TotalDataBufferLength != MessageLength) + */ + + /* Remove the rndis header and pass it back up the stack */ + data_offset = RNDIS_HEADER_SIZE + rndis_pkt->data_offset; + + pkt->total_data_buflen -= data_offset; + + /* + * Make sure we got a valid RNDIS message, now total_data_buflen + * should be the data packet size plus the trailer padding size + */ + if (pkt->total_data_buflen < rndis_pkt->data_len) { + netdev_err(dev->net_dev->ndev, "rndis message buffer " + "overflow detected (got %u, min %u)" + "...dropping this message!\n", + pkt->total_data_buflen, rndis_pkt->data_len); + return; + } + + /* + * Remove the rndis trailer padding from rndis packet message + * rndis_pkt->data_len tell us the real data length, we only copy + * the data packet to the stack, without the rndis trailer padding + */ + pkt->total_data_buflen = rndis_pkt->data_len; + pkt->data = (void *)((unsigned long)pkt->data + data_offset); + + pkt->is_data_pkt = true; + + vlan = rndis_get_ppi(rndis_pkt, IEEE_8021Q_INFO); + if (vlan) { + pkt->vlan_tci = VLAN_TAG_PRESENT | vlan->vlanid | + (vlan->pri << VLAN_PRIO_SHIFT); + } else { + pkt->vlan_tci = 0; + } + + netvsc_recv_callback(dev->net_dev->dev, pkt); +} + +int rndis_filter_receive(struct hv_device *dev, + struct hv_netvsc_packet *pkt) +{ + struct netvsc_device *net_dev = hv_get_drvdata(dev); + struct rndis_device *rndis_dev; + struct rndis_message *rndis_msg; + struct net_device *ndev; + + if (!net_dev) + return -EINVAL; + + ndev = net_dev->ndev; + + /* Make sure the rndis device state is initialized */ + if (!net_dev->extension) { + netdev_err(ndev, "got rndis message but no rndis device - " + "dropping this message!\n"); + return -ENODEV; + } + + rndis_dev = (struct rndis_device *)net_dev->extension; + if (rndis_dev->state == RNDIS_DEV_UNINITIALIZED) { + netdev_err(ndev, "got rndis message but rndis device " + "uninitialized...dropping this message!\n"); + return -ENODEV; + } + + rndis_msg = pkt->data; + + dump_rndis_message(dev, rndis_msg); + + switch (rndis_msg->ndis_msg_type) { + case REMOTE_NDIS_PACKET_MSG: + /* data msg */ + rndis_filter_receive_data(rndis_dev, rndis_msg, pkt); + break; + + case REMOTE_NDIS_INITIALIZE_CMPLT: + case REMOTE_NDIS_QUERY_CMPLT: + case REMOTE_NDIS_SET_CMPLT: + /* completion msgs */ + rndis_filter_receive_response(rndis_dev, rndis_msg); + break; + + case REMOTE_NDIS_INDICATE_STATUS_MSG: + /* notification msgs */ + rndis_filter_receive_indicate_status(rndis_dev, rndis_msg); + break; + default: + netdev_err(ndev, + "unhandled rndis message (type %u len %u)\n", + rndis_msg->ndis_msg_type, + rndis_msg->msg_len); + break; + } + + return 0; +} + +static int rndis_filter_query_device(struct rndis_device *dev, u32 oid, + void *result, u32 *result_size) +{ + struct rndis_request *request; + u32 inresult_size = *result_size; + struct rndis_query_request *query; + struct rndis_query_complete *query_complete; + int ret = 0; + int t; + + if (!result) + return -EINVAL; + + *result_size = 0; + request = get_rndis_request(dev, REMOTE_NDIS_QUERY_MSG, + RNDIS_MESSAGE_SIZE(struct rndis_query_request)); + if (!request) { + ret = -ENOMEM; + goto cleanup; + } + + /* Setup the rndis query */ + query = &request->request_msg.msg.query_req; + query->oid = oid; + query->info_buf_offset = sizeof(struct rndis_query_request); + query->info_buflen = 0; + query->dev_vc_handle = 0; + + ret = rndis_filter_send_request(dev, request); + if (ret != 0) + goto cleanup; + + t = wait_for_completion_timeout(&request->wait_event, 5*HZ); + if (t == 0) { + ret = -ETIMEDOUT; + goto cleanup; + } + + /* Copy the response back */ + query_complete = &request->response_msg.msg.query_complete; + + if (query_complete->info_buflen > inresult_size) { + ret = -1; + goto cleanup; + } + + memcpy(result, + (void *)((unsigned long)query_complete + + query_complete->info_buf_offset), + query_complete->info_buflen); + + *result_size = query_complete->info_buflen; + +cleanup: + if (request) + put_rndis_request(dev, request); + + return ret; +} + +static int rndis_filter_query_device_mac(struct rndis_device *dev) +{ + u32 size = ETH_ALEN; + + return rndis_filter_query_device(dev, + RNDIS_OID_802_3_PERMANENT_ADDRESS, + dev->hw_mac_adr, &size); +} + +static int rndis_filter_query_device_link_status(struct rndis_device *dev) +{ + u32 size = sizeof(u32); + u32 link_status; + int ret; + + ret = rndis_filter_query_device(dev, + RNDIS_OID_GEN_MEDIA_CONNECT_STATUS, + &link_status, &size); + dev->link_state = (link_status != 0) ? true : false; + + return ret; +} + +int rndis_filter_set_packet_filter(struct rndis_device *dev, u32 new_filter) +{ + struct rndis_request *request; + struct rndis_set_request *set; + struct rndis_set_complete *set_complete; + u32 status; + int ret, t; + struct net_device *ndev; + + ndev = dev->net_dev->ndev; + + request = get_rndis_request(dev, REMOTE_NDIS_SET_MSG, + RNDIS_MESSAGE_SIZE(struct rndis_set_request) + + sizeof(u32)); + if (!request) { + ret = -ENOMEM; + goto cleanup; + } + + /* Setup the rndis set */ + set = &request->request_msg.msg.set_req; + set->oid = RNDIS_OID_GEN_CURRENT_PACKET_FILTER; + set->info_buflen = sizeof(u32); + set->info_buf_offset = sizeof(struct rndis_set_request); + + memcpy((void *)(unsigned long)set + sizeof(struct rndis_set_request), + &new_filter, sizeof(u32)); + + ret = rndis_filter_send_request(dev, request); + if (ret != 0) + goto cleanup; + + t = wait_for_completion_timeout(&request->wait_event, 5*HZ); + + if (t == 0) { + netdev_err(ndev, + "timeout before we got a set response...\n"); + /* + * We can't deallocate the request since we may still receive a + * send completion for it. + */ + goto exit; + } else { + set_complete = &request->response_msg.msg.set_complete; + status = set_complete->status; + } + +cleanup: + if (request) + put_rndis_request(dev, request); +exit: + return ret; +} + + +static int rndis_filter_init_device(struct rndis_device *dev) +{ + struct rndis_request *request; + struct rndis_initialize_request *init; + struct rndis_initialize_complete *init_complete; + u32 status; + int ret, t; + + request = get_rndis_request(dev, REMOTE_NDIS_INITIALIZE_MSG, + RNDIS_MESSAGE_SIZE(struct rndis_initialize_request)); + if (!request) { + ret = -ENOMEM; + goto cleanup; + } + + /* Setup the rndis set */ + init = &request->request_msg.msg.init_req; + init->major_ver = RNDIS_MAJOR_VERSION; + init->minor_ver = RNDIS_MINOR_VERSION; + /* FIXME: Use 1536 - rounded ethernet frame size */ + init->max_xfer_size = 2048; + + dev->state = RNDIS_DEV_INITIALIZING; + + ret = rndis_filter_send_request(dev, request); + if (ret != 0) { + dev->state = RNDIS_DEV_UNINITIALIZED; + goto cleanup; + } + + + t = wait_for_completion_timeout(&request->wait_event, 5*HZ); + + if (t == 0) { + ret = -ETIMEDOUT; + goto cleanup; + } + + init_complete = &request->response_msg.msg.init_complete; + status = init_complete->status; + if (status == RNDIS_STATUS_SUCCESS) { + dev->state = RNDIS_DEV_INITIALIZED; + ret = 0; + } else { + dev->state = RNDIS_DEV_UNINITIALIZED; + ret = -EINVAL; + } + +cleanup: + if (request) + put_rndis_request(dev, request); + + return ret; +} + +static void rndis_filter_halt_device(struct rndis_device *dev) +{ + struct rndis_request *request; + struct rndis_halt_request *halt; + + /* Attempt to do a rndis device halt */ + request = get_rndis_request(dev, REMOTE_NDIS_HALT_MSG, + RNDIS_MESSAGE_SIZE(struct rndis_halt_request)); + if (!request) + goto cleanup; + + /* Setup the rndis set */ + halt = &request->request_msg.msg.halt_req; + halt->req_id = atomic_inc_return(&dev->new_req_id); + + /* Ignore return since this msg is optional. */ + rndis_filter_send_request(dev, request); + + dev->state = RNDIS_DEV_UNINITIALIZED; + +cleanup: + if (request) + put_rndis_request(dev, request); + return; +} + +static int rndis_filter_open_device(struct rndis_device *dev) +{ + int ret; + + if (dev->state != RNDIS_DEV_INITIALIZED) + return 0; + + ret = rndis_filter_set_packet_filter(dev, + NDIS_PACKET_TYPE_BROADCAST | + NDIS_PACKET_TYPE_ALL_MULTICAST | + NDIS_PACKET_TYPE_DIRECTED); + if (ret == 0) + dev->state = RNDIS_DEV_DATAINITIALIZED; + + return ret; +} + +static int rndis_filter_close_device(struct rndis_device *dev) +{ + int ret; + + if (dev->state != RNDIS_DEV_DATAINITIALIZED) + return 0; + + ret = rndis_filter_set_packet_filter(dev, 0); + if (ret == 0) + dev->state = RNDIS_DEV_INITIALIZED; + + return ret; +} + +int rndis_filter_device_add(struct hv_device *dev, + void *additional_info) +{ + int ret; + struct netvsc_device *net_device; + struct rndis_device *rndis_device; + struct netvsc_device_info *device_info = additional_info; + + rndis_device = get_rndis_device(); + if (!rndis_device) + return -ENODEV; + + /* + * Let the inner driver handle this first to create the netvsc channel + * NOTE! Once the channel is created, we may get a receive callback + * (RndisFilterOnReceive()) before this call is completed + */ + ret = netvsc_device_add(dev, additional_info); + if (ret != 0) { + kfree(rndis_device); + return ret; + } + + + /* Initialize the rndis device */ + net_device = hv_get_drvdata(dev); + + net_device->extension = rndis_device; + rndis_device->net_dev = net_device; + + /* Send the rndis initialization message */ + ret = rndis_filter_init_device(rndis_device); + if (ret != 0) { + /* + * TODO: If rndis init failed, we will need to shut down the + * channel + */ + } + + /* Get the mac address */ + ret = rndis_filter_query_device_mac(rndis_device); + if (ret != 0) { + /* + * TODO: shutdown rndis device and the channel + */ + } + + memcpy(device_info->mac_adr, rndis_device->hw_mac_adr, ETH_ALEN); + + rndis_filter_query_device_link_status(rndis_device); + + device_info->link_state = rndis_device->link_state; + + dev_info(&dev->device, "Device MAC %pM link state %s\n", + rndis_device->hw_mac_adr, + device_info->link_state ? "down" : "up"); + + return ret; +} + +void rndis_filter_device_remove(struct hv_device *dev) +{ + struct netvsc_device *net_dev = hv_get_drvdata(dev); + struct rndis_device *rndis_dev = net_dev->extension; + + /* Halt and release the rndis device */ + rndis_filter_halt_device(rndis_dev); + + kfree(rndis_dev); + net_dev->extension = NULL; + + netvsc_device_remove(dev); +} + + +int rndis_filter_open(struct hv_device *dev) +{ + struct netvsc_device *net_device = hv_get_drvdata(dev); + + if (!net_device) + return -EINVAL; + + return rndis_filter_open_device(net_device->extension); +} + +int rndis_filter_close(struct hv_device *dev) +{ + struct netvsc_device *nvdev = hv_get_drvdata(dev); + + if (!nvdev) + return -EINVAL; + + return rndis_filter_close_device(nvdev->extension); +} + +int rndis_filter_send(struct hv_device *dev, + struct hv_netvsc_packet *pkt) +{ + int ret; + struct rndis_filter_packet *filter_pkt; + struct rndis_message *rndis_msg; + struct rndis_packet *rndis_pkt; + u32 rndis_msg_size; + bool isvlan = pkt->vlan_tci & VLAN_TAG_PRESENT; + + /* Add the rndis header */ + filter_pkt = (struct rndis_filter_packet *)pkt->extension; + + rndis_msg = &filter_pkt->msg; + rndis_msg_size = RNDIS_MESSAGE_SIZE(struct rndis_packet); + if (isvlan) + rndis_msg_size += NDIS_VLAN_PPI_SIZE; + + rndis_msg->ndis_msg_type = REMOTE_NDIS_PACKET_MSG; + rndis_msg->msg_len = pkt->total_data_buflen + + rndis_msg_size; + + rndis_pkt = &rndis_msg->msg.pkt; + rndis_pkt->data_offset = sizeof(struct rndis_packet); + if (isvlan) + rndis_pkt->data_offset += NDIS_VLAN_PPI_SIZE; + rndis_pkt->data_len = pkt->total_data_buflen; + + if (isvlan) { + struct rndis_per_packet_info *ppi; + struct ndis_pkt_8021q_info *vlan; + + rndis_pkt->per_pkt_info_offset = sizeof(struct rndis_packet); + rndis_pkt->per_pkt_info_len = NDIS_VLAN_PPI_SIZE; + + ppi = (struct rndis_per_packet_info *)((ulong)rndis_pkt + + rndis_pkt->per_pkt_info_offset); + ppi->size = NDIS_VLAN_PPI_SIZE; + ppi->type = IEEE_8021Q_INFO; + ppi->ppi_offset = sizeof(struct rndis_per_packet_info); + + vlan = (struct ndis_pkt_8021q_info *)((ulong)ppi + + ppi->ppi_offset); + vlan->vlanid = pkt->vlan_tci & VLAN_VID_MASK; + vlan->pri = (pkt->vlan_tci & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT; + } + + pkt->is_data_pkt = true; + pkt->page_buf[0].pfn = virt_to_phys(rndis_msg) >> PAGE_SHIFT; + pkt->page_buf[0].offset = + (unsigned long)rndis_msg & (PAGE_SIZE-1); + pkt->page_buf[0].len = rndis_msg_size; + + /* Add one page_buf if the rndis msg goes beyond page boundary */ + if (pkt->page_buf[0].offset + rndis_msg_size > PAGE_SIZE) { + int i; + for (i = pkt->page_buf_cnt; i > 1; i--) + pkt->page_buf[i] = pkt->page_buf[i-1]; + pkt->page_buf_cnt++; + pkt->page_buf[0].len = PAGE_SIZE - pkt->page_buf[0].offset; + pkt->page_buf[1].pfn = virt_to_phys((void *)((ulong) + rndis_msg + pkt->page_buf[0].len)) >> PAGE_SHIFT; + pkt->page_buf[1].offset = 0; + pkt->page_buf[1].len = rndis_msg_size - pkt->page_buf[0].len; + } + + /* Save the packet send completion and context */ + filter_pkt->completion = pkt->completion.send.send_completion; + filter_pkt->completion_ctx = + pkt->completion.send.send_completion_ctx; + + /* Use ours */ + pkt->completion.send.send_completion = rndis_filter_send_completion; + pkt->completion.send.send_completion_ctx = filter_pkt; + + ret = netvsc_send(dev, pkt); + if (ret != 0) { + /* + * Reset the completion to originals to allow retries from + * above + */ + pkt->completion.send.send_completion = + filter_pkt->completion; + pkt->completion.send.send_completion_ctx = + filter_pkt->completion_ctx; + } + + return ret; +} + +static void rndis_filter_send_completion(void *ctx) +{ + struct rndis_filter_packet *filter_pkt = ctx; + + /* Pass it back to the original handler */ + filter_pkt->completion(filter_pkt->completion_ctx); +} + + +static void rndis_filter_send_request_completion(void *ctx) +{ + /* Noop */ +} --- linux-3.2.0.orig/drivers/net/hyperv/netvsc.c +++ linux-3.2.0/drivers/net/hyperv/netvsc.c @@ -0,0 +1,933 @@ +/* + * Copyright (c) 2009, Microsoft Corporation. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program; if not, write to the Free Software Foundation, Inc., 59 Temple + * Place - Suite 330, Boston, MA 02111-1307 USA. + * + * Authors: + * Haiyang Zhang + * Hank Janssen + */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "hyperv_net.h" + + +static struct netvsc_device *alloc_net_device(struct hv_device *device) +{ + struct netvsc_device *net_device; + struct net_device *ndev = hv_get_drvdata(device); + + net_device = kzalloc(sizeof(struct netvsc_device), GFP_KERNEL); + if (!net_device) + return NULL; + + net_device->start_remove = false; + net_device->destroy = false; + net_device->dev = device; + net_device->ndev = ndev; + + hv_set_drvdata(device, net_device); + return net_device; +} + +static struct netvsc_device *get_outbound_net_device(struct hv_device *device) +{ + struct netvsc_device *net_device; + + net_device = hv_get_drvdata(device); + if (net_device && net_device->destroy) + net_device = NULL; + + return net_device; +} + +static struct netvsc_device *get_inbound_net_device(struct hv_device *device) +{ + struct netvsc_device *net_device; + + net_device = hv_get_drvdata(device); + + if (!net_device) + goto get_in_err; + + if (net_device->destroy && + atomic_read(&net_device->num_outstanding_sends) == 0) + net_device = NULL; + +get_in_err: + return net_device; +} + + +static int netvsc_destroy_recv_buf(struct netvsc_device *net_device) +{ + struct nvsp_message *revoke_packet; + int ret = 0; + struct net_device *ndev = net_device->ndev; + + /* + * If we got a section count, it means we received a + * SendReceiveBufferComplete msg (ie sent + * NvspMessage1TypeSendReceiveBuffer msg) therefore, we need + * to send a revoke msg here + */ + if (net_device->recv_section_cnt) { + /* Send the revoke receive buffer */ + revoke_packet = &net_device->revoke_packet; + memset(revoke_packet, 0, sizeof(struct nvsp_message)); + + revoke_packet->hdr.msg_type = + NVSP_MSG1_TYPE_REVOKE_RECV_BUF; + revoke_packet->msg.v1_msg. + revoke_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID; + + ret = vmbus_sendpacket(net_device->dev->channel, + revoke_packet, + sizeof(struct nvsp_message), + (unsigned long)revoke_packet, + VM_PKT_DATA_INBAND, 0); + /* + * If we failed here, we might as well return and + * have a leak rather than continue and a bugchk + */ + if (ret != 0) { + netdev_err(ndev, "unable to send " + "revoke receive buffer to netvsp\n"); + return ret; + } + } + + /* Teardown the gpadl on the vsp end */ + if (net_device->recv_buf_gpadl_handle) { + ret = vmbus_teardown_gpadl(net_device->dev->channel, + net_device->recv_buf_gpadl_handle); + + /* If we failed here, we might as well return and have a leak + * rather than continue and a bugchk + */ + if (ret != 0) { + netdev_err(ndev, + "unable to teardown receive buffer's gpadl\n"); + return ret; + } + net_device->recv_buf_gpadl_handle = 0; + } + + if (net_device->recv_buf) { + /* Free up the receive buffer */ + free_pages((unsigned long)net_device->recv_buf, + get_order(net_device->recv_buf_size)); + net_device->recv_buf = NULL; + } + + if (net_device->recv_section) { + net_device->recv_section_cnt = 0; + kfree(net_device->recv_section); + net_device->recv_section = NULL; + } + + return ret; +} + +static int netvsc_init_recv_buf(struct hv_device *device) +{ + int ret = 0; + int t; + struct netvsc_device *net_device; + struct nvsp_message *init_packet; + struct net_device *ndev; + + net_device = get_outbound_net_device(device); + if (!net_device) + return -ENODEV; + ndev = net_device->ndev; + + net_device->recv_buf = + (void *)__get_free_pages(GFP_KERNEL|__GFP_ZERO, + get_order(net_device->recv_buf_size)); + if (!net_device->recv_buf) { + netdev_err(ndev, "unable to allocate receive " + "buffer of size %d\n", net_device->recv_buf_size); + ret = -ENOMEM; + goto cleanup; + } + + /* + * Establish the gpadl handle for this buffer on this + * channel. Note: This call uses the vmbus connection rather + * than the channel to establish the gpadl handle. + */ + ret = vmbus_establish_gpadl(device->channel, net_device->recv_buf, + net_device->recv_buf_size, + &net_device->recv_buf_gpadl_handle); + if (ret != 0) { + netdev_err(ndev, + "unable to establish receive buffer's gpadl\n"); + goto cleanup; + } + + + /* Notify the NetVsp of the gpadl handle */ + init_packet = &net_device->channel_init_pkt; + + memset(init_packet, 0, sizeof(struct nvsp_message)); + + init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_RECV_BUF; + init_packet->msg.v1_msg.send_recv_buf. + gpadl_handle = net_device->recv_buf_gpadl_handle; + init_packet->msg.v1_msg. + send_recv_buf.id = NETVSC_RECEIVE_BUFFER_ID; + + /* Send the gpadl notification request */ + ret = vmbus_sendpacket(device->channel, init_packet, + sizeof(struct nvsp_message), + (unsigned long)init_packet, + VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + if (ret != 0) { + netdev_err(ndev, + "unable to send receive buffer's gpadl to netvsp\n"); + goto cleanup; + } + + t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ); + BUG_ON(t == 0); + + + /* Check the response */ + if (init_packet->msg.v1_msg. + send_recv_buf_complete.status != NVSP_STAT_SUCCESS) { + netdev_err(ndev, "Unable to complete receive buffer " + "initialization with NetVsp - status %d\n", + init_packet->msg.v1_msg. + send_recv_buf_complete.status); + ret = -EINVAL; + goto cleanup; + } + + /* Parse the response */ + + net_device->recv_section_cnt = init_packet->msg. + v1_msg.send_recv_buf_complete.num_sections; + + net_device->recv_section = kmemdup( + init_packet->msg.v1_msg.send_recv_buf_complete.sections, + net_device->recv_section_cnt * + sizeof(struct nvsp_1_receive_buffer_section), + GFP_KERNEL); + if (net_device->recv_section == NULL) { + ret = -EINVAL; + goto cleanup; + } + + /* + * For 1st release, there should only be 1 section that represents the + * entire receive buffer + */ + if (net_device->recv_section_cnt != 1 || + net_device->recv_section->offset != 0) { + ret = -EINVAL; + goto cleanup; + } + + goto exit; + +cleanup: + netvsc_destroy_recv_buf(net_device); + +exit: + return ret; +} + + +/* Negotiate NVSP protocol version */ +static int negotiate_nvsp_ver(struct hv_device *device, + struct netvsc_device *net_device, + struct nvsp_message *init_packet, + u32 nvsp_ver) +{ + int ret, t; + + memset(init_packet, 0, sizeof(struct nvsp_message)); + init_packet->hdr.msg_type = NVSP_MSG_TYPE_INIT; + init_packet->msg.init_msg.init.min_protocol_ver = nvsp_ver; + init_packet->msg.init_msg.init.max_protocol_ver = nvsp_ver; + + /* Send the init request */ + ret = vmbus_sendpacket(device->channel, init_packet, + sizeof(struct nvsp_message), + (unsigned long)init_packet, + VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + + if (ret != 0) + return ret; + + t = wait_for_completion_timeout(&net_device->channel_init_wait, 5*HZ); + + if (t == 0) + return -ETIMEDOUT; + + if (init_packet->msg.init_msg.init_complete.status != + NVSP_STAT_SUCCESS) + return -EINVAL; + + if (nvsp_ver != NVSP_PROTOCOL_VERSION_2) + return 0; + + /* NVSPv2 only: Send NDIS config */ + memset(init_packet, 0, sizeof(struct nvsp_message)); + init_packet->hdr.msg_type = NVSP_MSG2_TYPE_SEND_NDIS_CONFIG; + init_packet->msg.v2_msg.send_ndis_config.mtu = net_device->ndev->mtu; + init_packet->msg.v2_msg.send_ndis_config.capability.ieee8021q = 1; + + ret = vmbus_sendpacket(device->channel, init_packet, + sizeof(struct nvsp_message), + (unsigned long)init_packet, + VM_PKT_DATA_INBAND, 0); + + return ret; +} + +static int netvsc_connect_vsp(struct hv_device *device) +{ + int ret; + struct netvsc_device *net_device; + struct nvsp_message *init_packet; + int ndis_version; + struct net_device *ndev; + + net_device = get_outbound_net_device(device); + if (!net_device) + return -ENODEV; + ndev = net_device->ndev; + + init_packet = &net_device->channel_init_pkt; + + /* Negotiate the latest NVSP protocol supported */ + if (negotiate_nvsp_ver(device, net_device, init_packet, + NVSP_PROTOCOL_VERSION_2) == 0) { + net_device->nvsp_version = NVSP_PROTOCOL_VERSION_2; + } else if (negotiate_nvsp_ver(device, net_device, init_packet, + NVSP_PROTOCOL_VERSION_1) == 0) { + net_device->nvsp_version = NVSP_PROTOCOL_VERSION_1; + } else { + ret = -EPROTO; + goto cleanup; + } + + pr_debug("Negotiated NVSP version:%x\n", net_device->nvsp_version); + + /* Send the ndis version */ + memset(init_packet, 0, sizeof(struct nvsp_message)); + + ndis_version = 0x00050001; + + init_packet->hdr.msg_type = NVSP_MSG1_TYPE_SEND_NDIS_VER; + init_packet->msg.v1_msg. + send_ndis_ver.ndis_major_ver = + (ndis_version & 0xFFFF0000) >> 16; + init_packet->msg.v1_msg. + send_ndis_ver.ndis_minor_ver = + ndis_version & 0xFFFF; + + /* Send the init request */ + ret = vmbus_sendpacket(device->channel, init_packet, + sizeof(struct nvsp_message), + (unsigned long)init_packet, + VM_PKT_DATA_INBAND, 0); + if (ret != 0) + goto cleanup; + + /* Post the big receive buffer to NetVSP */ + ret = netvsc_init_recv_buf(device); + +cleanup: + return ret; +} + +static void netvsc_disconnect_vsp(struct netvsc_device *net_device) +{ + netvsc_destroy_recv_buf(net_device); +} + +/* + * netvsc_device_remove - Callback when the root bus device is removed + */ +int netvsc_device_remove(struct hv_device *device) +{ + struct netvsc_device *net_device; + struct hv_netvsc_packet *netvsc_packet, *pos; + unsigned long flags; + + net_device = hv_get_drvdata(device); + spin_lock_irqsave(&device->channel->inbound_lock, flags); + net_device->destroy = true; + spin_unlock_irqrestore(&device->channel->inbound_lock, flags); + + /* Wait for all send completions */ + while (atomic_read(&net_device->num_outstanding_sends)) { + dev_info(&device->device, + "waiting for %d requests to complete...\n", + atomic_read(&net_device->num_outstanding_sends)); + udelay(100); + } + + netvsc_disconnect_vsp(net_device); + + /* + * Since we have already drained, we don't need to busy wait + * as was done in final_release_stor_device() + * Note that we cannot set the ext pointer to NULL until + * we have drained - to drain the outgoing packets, we need to + * allow incoming packets. + */ + + spin_lock_irqsave(&device->channel->inbound_lock, flags); + hv_set_drvdata(device, NULL); + spin_unlock_irqrestore(&device->channel->inbound_lock, flags); + + /* + * At this point, no one should be accessing net_device + * except in here + */ + dev_notice(&device->device, "net device safe to remove\n"); + + /* Now, we can close the channel safely */ + vmbus_close(device->channel); + + /* Release all resources */ + list_for_each_entry_safe(netvsc_packet, pos, + &net_device->recv_pkt_list, list_ent) { + list_del(&netvsc_packet->list_ent); + kfree(netvsc_packet); + } + + kfree(net_device); + return 0; +} + +static void netvsc_send_completion(struct hv_device *device, + struct vmpacket_descriptor *packet) +{ + struct netvsc_device *net_device; + struct nvsp_message *nvsp_packet; + struct hv_netvsc_packet *nvsc_packet; + struct net_device *ndev; + + net_device = get_inbound_net_device(device); + if (!net_device) + return; + ndev = net_device->ndev; + + nvsp_packet = (struct nvsp_message *)((unsigned long)packet + + (packet->offset8 << 3)); + + if ((nvsp_packet->hdr.msg_type == NVSP_MSG_TYPE_INIT_COMPLETE) || + (nvsp_packet->hdr.msg_type == + NVSP_MSG1_TYPE_SEND_RECV_BUF_COMPLETE) || + (nvsp_packet->hdr.msg_type == + NVSP_MSG1_TYPE_SEND_SEND_BUF_COMPLETE)) { + /* Copy the response back */ + memcpy(&net_device->channel_init_pkt, nvsp_packet, + sizeof(struct nvsp_message)); + complete(&net_device->channel_init_wait); + } else if (nvsp_packet->hdr.msg_type == + NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE) { + /* Get the send context */ + nvsc_packet = (struct hv_netvsc_packet *)(unsigned long) + packet->trans_id; + + /* Notify the layer above us */ + nvsc_packet->completion.send.send_completion( + nvsc_packet->completion.send.send_completion_ctx); + + atomic_dec(&net_device->num_outstanding_sends); + + if (netif_queue_stopped(ndev) && !net_device->start_remove) + netif_wake_queue(ndev); + } else { + netdev_err(ndev, "Unknown send completion packet type- " + "%d received!!\n", nvsp_packet->hdr.msg_type); + } + +} + +int netvsc_send(struct hv_device *device, + struct hv_netvsc_packet *packet) +{ + struct netvsc_device *net_device; + int ret = 0; + struct nvsp_message sendMessage; + struct net_device *ndev; + + net_device = get_outbound_net_device(device); + if (!net_device) + return -ENODEV; + ndev = net_device->ndev; + + sendMessage.hdr.msg_type = NVSP_MSG1_TYPE_SEND_RNDIS_PKT; + if (packet->is_data_pkt) { + /* 0 is RMC_DATA; */ + sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 0; + } else { + /* 1 is RMC_CONTROL; */ + sendMessage.msg.v1_msg.send_rndis_pkt.channel_type = 1; + } + + /* Not using send buffer section */ + sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_index = + 0xFFFFFFFF; + sendMessage.msg.v1_msg.send_rndis_pkt.send_buf_section_size = 0; + + if (packet->page_buf_cnt) { + ret = vmbus_sendpacket_pagebuffer(device->channel, + packet->page_buf, + packet->page_buf_cnt, + &sendMessage, + sizeof(struct nvsp_message), + (unsigned long)packet); + } else { + ret = vmbus_sendpacket(device->channel, &sendMessage, + sizeof(struct nvsp_message), + (unsigned long)packet, + VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + + } + + if (ret == 0) { + atomic_inc(&net_device->num_outstanding_sends); + } else if (ret == -EAGAIN) { + netif_stop_queue(ndev); + if (atomic_read(&net_device->num_outstanding_sends) < 1) + netif_wake_queue(ndev); + } else { + netdev_err(ndev, "Unable to send packet %p ret %d\n", + packet, ret); + } + + return ret; +} + +static void netvsc_send_recv_completion(struct hv_device *device, + u64 transaction_id) +{ + struct nvsp_message recvcompMessage; + int retries = 0; + int ret; + struct net_device *ndev; + struct netvsc_device *net_device = hv_get_drvdata(device); + + ndev = net_device->ndev; + + recvcompMessage.hdr.msg_type = + NVSP_MSG1_TYPE_SEND_RNDIS_PKT_COMPLETE; + + /* FIXME: Pass in the status */ + recvcompMessage.msg.v1_msg.send_rndis_pkt_complete.status = + NVSP_STAT_SUCCESS; + +retry_send_cmplt: + /* Send the completion */ + ret = vmbus_sendpacket(device->channel, &recvcompMessage, + sizeof(struct nvsp_message), transaction_id, + VM_PKT_COMP, 0); + if (ret == 0) { + /* success */ + /* no-op */ + } else if (ret == -EAGAIN) { + /* no more room...wait a bit and attempt to retry 3 times */ + retries++; + netdev_err(ndev, "unable to send receive completion pkt" + " (tid %llx)...retrying %d\n", transaction_id, retries); + + if (retries < 4) { + udelay(100); + goto retry_send_cmplt; + } else { + netdev_err(ndev, "unable to send receive " + "completion pkt (tid %llx)...give up retrying\n", + transaction_id); + } + } else { + netdev_err(ndev, "unable to send receive " + "completion pkt - %llx\n", transaction_id); + } +} + +/* Send a receive completion packet to RNDIS device (ie NetVsp) */ +static void netvsc_receive_completion(void *context) +{ + struct hv_netvsc_packet *packet = context; + struct hv_device *device = (struct hv_device *)packet->device; + struct netvsc_device *net_device; + u64 transaction_id = 0; + bool fsend_receive_comp = false; + unsigned long flags; + struct net_device *ndev; + + /* + * Even though it seems logical to do a GetOutboundNetDevice() here to + * send out receive completion, we are using GetInboundNetDevice() + * since we may have disable outbound traffic already. + */ + net_device = get_inbound_net_device(device); + if (!net_device) + return; + ndev = net_device->ndev; + + /* Overloading use of the lock. */ + spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags); + + packet->xfer_page_pkt->count--; + + /* + * Last one in the line that represent 1 xfer page packet. + * Return the xfer page packet itself to the freelist + */ + if (packet->xfer_page_pkt->count == 0) { + fsend_receive_comp = true; + transaction_id = packet->completion.recv.recv_completion_tid; + list_add_tail(&packet->xfer_page_pkt->list_ent, + &net_device->recv_pkt_list); + + } + + /* Put the packet back */ + list_add_tail(&packet->list_ent, &net_device->recv_pkt_list); + spin_unlock_irqrestore(&net_device->recv_pkt_list_lock, flags); + + /* Send a receive completion for the xfer page packet */ + if (fsend_receive_comp) + netvsc_send_recv_completion(device, transaction_id); + +} + +static void netvsc_receive(struct hv_device *device, + struct vmpacket_descriptor *packet) +{ + struct netvsc_device *net_device; + struct vmtransfer_page_packet_header *vmxferpage_packet; + struct nvsp_message *nvsp_packet; + struct hv_netvsc_packet *netvsc_packet = NULL; + /* struct netvsc_driver *netvscDriver; */ + struct xferpage_packet *xferpage_packet = NULL; + int i; + int count = 0; + unsigned long flags; + struct net_device *ndev; + + LIST_HEAD(listHead); + + net_device = get_inbound_net_device(device); + if (!net_device) + return; + ndev = net_device->ndev; + + /* + * All inbound packets other than send completion should be xfer page + * packet + */ + if (packet->type != VM_PKT_DATA_USING_XFER_PAGES) { + netdev_err(ndev, "Unknown packet type received - %d\n", + packet->type); + return; + } + + nvsp_packet = (struct nvsp_message *)((unsigned long)packet + + (packet->offset8 << 3)); + + /* Make sure this is a valid nvsp packet */ + if (nvsp_packet->hdr.msg_type != + NVSP_MSG1_TYPE_SEND_RNDIS_PKT) { + netdev_err(ndev, "Unknown nvsp packet type received-" + " %d\n", nvsp_packet->hdr.msg_type); + return; + } + + vmxferpage_packet = (struct vmtransfer_page_packet_header *)packet; + + if (vmxferpage_packet->xfer_pageset_id != NETVSC_RECEIVE_BUFFER_ID) { + netdev_err(ndev, "Invalid xfer page set id - " + "expecting %x got %x\n", NETVSC_RECEIVE_BUFFER_ID, + vmxferpage_packet->xfer_pageset_id); + return; + } + + /* + * Grab free packets (range count + 1) to represent this xfer + * page packet. +1 to represent the xfer page packet itself. + * We grab it here so that we know exactly how many we can + * fulfil + */ + spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags); + while (!list_empty(&net_device->recv_pkt_list)) { + list_move_tail(net_device->recv_pkt_list.next, &listHead); + if (++count == vmxferpage_packet->range_cnt + 1) + break; + } + spin_unlock_irqrestore(&net_device->recv_pkt_list_lock, flags); + + /* + * We need at least 2 netvsc pkts (1 to represent the xfer + * page and at least 1 for the range) i.e. we can handled + * some of the xfer page packet ranges... + */ + if (count < 2) { + netdev_err(ndev, "Got only %d netvsc pkt...needed " + "%d pkts. Dropping this xfer page packet completely!\n", + count, vmxferpage_packet->range_cnt + 1); + + /* Return it to the freelist */ + spin_lock_irqsave(&net_device->recv_pkt_list_lock, flags); + for (i = count; i != 0; i--) { + list_move_tail(listHead.next, + &net_device->recv_pkt_list); + } + spin_unlock_irqrestore(&net_device->recv_pkt_list_lock, + flags); + + netvsc_send_recv_completion(device, + vmxferpage_packet->d.trans_id); + + return; + } + + /* Remove the 1st packet to represent the xfer page packet itself */ + xferpage_packet = (struct xferpage_packet *)listHead.next; + list_del(&xferpage_packet->list_ent); + + /* This is how much we can satisfy */ + xferpage_packet->count = count - 1; + + if (xferpage_packet->count != vmxferpage_packet->range_cnt) { + netdev_err(ndev, "Needed %d netvsc pkts to satisfy " + "this xfer page...got %d\n", + vmxferpage_packet->range_cnt, xferpage_packet->count); + } + + /* Each range represents 1 RNDIS pkt that contains 1 ethernet frame */ + for (i = 0; i < (count - 1); i++) { + netvsc_packet = (struct hv_netvsc_packet *)listHead.next; + list_del(&netvsc_packet->list_ent); + + /* Initialize the netvsc packet */ + netvsc_packet->xfer_page_pkt = xferpage_packet; + netvsc_packet->completion.recv.recv_completion = + netvsc_receive_completion; + netvsc_packet->completion.recv.recv_completion_ctx = + netvsc_packet; + netvsc_packet->device = device; + /* Save this so that we can send it back */ + netvsc_packet->completion.recv.recv_completion_tid = + vmxferpage_packet->d.trans_id; + + netvsc_packet->data = (void *)((unsigned long)net_device-> + recv_buf + vmxferpage_packet->ranges[i].byte_offset); + netvsc_packet->total_data_buflen = + vmxferpage_packet->ranges[i].byte_count; + + /* Pass it to the upper layer */ + rndis_filter_receive(device, netvsc_packet); + + netvsc_receive_completion(netvsc_packet-> + completion.recv.recv_completion_ctx); + } + +} + +static void netvsc_channel_cb(void *context) +{ + int ret; + struct hv_device *device = context; + struct netvsc_device *net_device; + u32 bytes_recvd; + u64 request_id; + unsigned char *packet; + struct vmpacket_descriptor *desc; + unsigned char *buffer; + int bufferlen = NETVSC_PACKET_SIZE; + struct net_device *ndev; + + packet = kzalloc(NETVSC_PACKET_SIZE * sizeof(unsigned char), + GFP_ATOMIC); + if (!packet) + return; + buffer = packet; + + net_device = get_inbound_net_device(device); + if (!net_device) + goto out; + ndev = net_device->ndev; + + do { + ret = vmbus_recvpacket_raw(device->channel, buffer, bufferlen, + &bytes_recvd, &request_id); + if (ret == 0) { + if (bytes_recvd > 0) { + desc = (struct vmpacket_descriptor *)buffer; + switch (desc->type) { + case VM_PKT_COMP: + netvsc_send_completion(device, desc); + break; + + case VM_PKT_DATA_USING_XFER_PAGES: + netvsc_receive(device, desc); + break; + + default: + netdev_err(ndev, + "unhandled packet type %d, " + "tid %llx len %d\n", + desc->type, request_id, + bytes_recvd); + break; + } + + /* reset */ + if (bufferlen > NETVSC_PACKET_SIZE) { + kfree(buffer); + buffer = packet; + bufferlen = NETVSC_PACKET_SIZE; + } + } else { + /* reset */ + if (bufferlen > NETVSC_PACKET_SIZE) { + kfree(buffer); + buffer = packet; + bufferlen = NETVSC_PACKET_SIZE; + } + + break; + } + } else if (ret == -ENOBUFS) { + /* Handle large packet */ + buffer = kmalloc(bytes_recvd, GFP_ATOMIC); + if (buffer == NULL) { + /* Try again next time around */ + netdev_err(ndev, + "unable to allocate buffer of size " + "(%d)!!\n", bytes_recvd); + break; + } + + bufferlen = bytes_recvd; + } + } while (1); + +out: + kfree(buffer); + return; +} + +/* + * netvsc_device_add - Callback when the device belonging to this + * driver is added + */ +int netvsc_device_add(struct hv_device *device, void *additional_info) +{ + int ret = 0; + int i; + int ring_size = + ((struct netvsc_device_info *)additional_info)->ring_size; + struct netvsc_device *net_device; + struct hv_netvsc_packet *packet, *pos; + struct net_device *ndev; + + net_device = alloc_net_device(device); + if (!net_device) { + ret = -ENOMEM; + goto cleanup; + } + + /* + * Coming into this function, struct net_device * is + * registered as the driver private data. + * In alloc_net_device(), we register struct netvsc_device * + * as the driver private data and stash away struct net_device * + * in struct netvsc_device *. + */ + ndev = net_device->ndev; + + /* Initialize the NetVSC channel extension */ + net_device->recv_buf_size = NETVSC_RECEIVE_BUFFER_SIZE; + spin_lock_init(&net_device->recv_pkt_list_lock); + + INIT_LIST_HEAD(&net_device->recv_pkt_list); + + for (i = 0; i < NETVSC_RECEIVE_PACKETLIST_COUNT; i++) { + packet = kzalloc(sizeof(struct hv_netvsc_packet) + + (NETVSC_RECEIVE_SG_COUNT * + sizeof(struct hv_page_buffer)), GFP_KERNEL); + if (!packet) + break; + + list_add_tail(&packet->list_ent, + &net_device->recv_pkt_list); + } + init_completion(&net_device->channel_init_wait); + + /* Open the channel */ + ret = vmbus_open(device->channel, ring_size * PAGE_SIZE, + ring_size * PAGE_SIZE, NULL, 0, + netvsc_channel_cb, device); + + if (ret != 0) { + netdev_err(ndev, "unable to open channel: %d\n", ret); + goto cleanup; + } + + /* Channel is opened */ + pr_info("hv_netvsc channel opened successfully\n"); + + /* Connect with the NetVsp */ + ret = netvsc_connect_vsp(device); + if (ret != 0) { + netdev_err(ndev, + "unable to connect to NetVSP - %d\n", ret); + goto close; + } + + return ret; + +close: + /* Now, we can close the channel safely */ + vmbus_close(device->channel); + +cleanup: + + if (net_device) { + list_for_each_entry_safe(packet, pos, + &net_device->recv_pkt_list, + list_ent) { + list_del(&packet->list_ent); + kfree(packet); + } + + kfree(net_device); + } + + return ret; +} --- linux-3.2.0.orig/drivers/net/hyperv/Makefile +++ linux-3.2.0/drivers/net/hyperv/Makefile @@ -0,0 +1,3 @@ +obj-$(CONFIG_HYPERV_NET) += hv_netvsc.o + +hv_netvsc-y := netvsc_drv.o netvsc.o rndis_filter.o --- linux-3.2.0.orig/drivers/net/hyperv/netvsc_drv.c +++ linux-3.2.0/drivers/net/hyperv/netvsc_drv.c @@ -0,0 +1,510 @@ +/* + * Copyright (c) 2009, Microsoft Corporation. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program; if not, write to the Free Software Foundation, Inc., 59 Temple + * Place - Suite 330, Boston, MA 02111-1307 USA. + * + * Authors: + * Haiyang Zhang + * Hank Janssen + */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "hyperv_net.h" + +struct net_device_context { + /* point back to our device context */ + struct hv_device *device_ctx; + struct delayed_work dwork; +}; + + +static int ring_size = 128; +module_param(ring_size, int, S_IRUGO); +MODULE_PARM_DESC(ring_size, "Ring buffer size (# of pages)"); + +struct set_multicast_work { + struct work_struct work; + struct net_device *net; +}; + +static void do_set_multicast(struct work_struct *w) +{ + struct set_multicast_work *swk = + container_of(w, struct set_multicast_work, work); + struct net_device *net = swk->net; + + struct net_device_context *ndevctx = netdev_priv(net); + struct netvsc_device *nvdev; + struct rndis_device *rdev; + + nvdev = hv_get_drvdata(ndevctx->device_ctx); + if (nvdev == NULL) + goto out; + + rdev = nvdev->extension; + if (rdev == NULL) + goto out; + + if (net->flags & IFF_PROMISC) + rndis_filter_set_packet_filter(rdev, + NDIS_PACKET_TYPE_PROMISCUOUS); + else + rndis_filter_set_packet_filter(rdev, + NDIS_PACKET_TYPE_BROADCAST | + NDIS_PACKET_TYPE_ALL_MULTICAST | + NDIS_PACKET_TYPE_DIRECTED); + +out: + kfree(w); +} + +static void netvsc_set_multicast_list(struct net_device *net) +{ + struct set_multicast_work *swk = + kmalloc(sizeof(struct set_multicast_work), GFP_ATOMIC); + if (swk == NULL) + return; + + swk->net = net; + INIT_WORK(&swk->work, do_set_multicast); + schedule_work(&swk->work); +} + +static int netvsc_open(struct net_device *net) +{ + struct net_device_context *net_device_ctx = netdev_priv(net); + struct hv_device *device_obj = net_device_ctx->device_ctx; + int ret = 0; + + /* Open up the device */ + ret = rndis_filter_open(device_obj); + if (ret != 0) { + netdev_err(net, "unable to open device (ret %d).\n", ret); + return ret; + } + + netif_start_queue(net); + + return ret; +} + +static int netvsc_close(struct net_device *net) +{ + struct net_device_context *net_device_ctx = netdev_priv(net); + struct hv_device *device_obj = net_device_ctx->device_ctx; + int ret; + + netif_tx_disable(net); + + ret = rndis_filter_close(device_obj); + if (ret != 0) + netdev_err(net, "unable to close device (ret %d).\n", ret); + + return ret; +} + +static void netvsc_xmit_completion(void *context) +{ + struct hv_netvsc_packet *packet = (struct hv_netvsc_packet *)context; + struct sk_buff *skb = (struct sk_buff *) + (unsigned long)packet->completion.send.send_completion_tid; + + kfree(packet); + + if (skb) + dev_kfree_skb_any(skb); +} + +static int netvsc_start_xmit(struct sk_buff *skb, struct net_device *net) +{ + struct net_device_context *net_device_ctx = netdev_priv(net); + struct hv_netvsc_packet *packet; + int ret; + unsigned int i, num_pages, npg_data; + + /* Add multipages for skb->data and additional 2 for RNDIS */ + npg_data = (((unsigned long)skb->data + skb_headlen(skb) - 1) + >> PAGE_SHIFT) - ((unsigned long)skb->data >> PAGE_SHIFT) + 1; + num_pages = skb_shinfo(skb)->nr_frags + npg_data + 2; + + /* Allocate a netvsc packet based on # of frags. */ + packet = kzalloc(sizeof(struct hv_netvsc_packet) + + (num_pages * sizeof(struct hv_page_buffer)) + + sizeof(struct rndis_filter_packet) + + NDIS_VLAN_PPI_SIZE, GFP_ATOMIC); + if (!packet) { + /* out of memory, drop packet */ + netdev_err(net, "unable to allocate hv_netvsc_packet\n"); + + dev_kfree_skb(skb); + net->stats.tx_dropped++; + return NETDEV_TX_OK; + } + + packet->vlan_tci = skb->vlan_tci; + + packet->extension = (void *)(unsigned long)packet + + sizeof(struct hv_netvsc_packet) + + (num_pages * sizeof(struct hv_page_buffer)); + + /* If the rndis msg goes beyond 1 page, we will add 1 later */ + packet->page_buf_cnt = num_pages - 1; + + /* Initialize it from the skb */ + packet->total_data_buflen = skb->len; + + /* Start filling in the page buffers starting after RNDIS buffer. */ + packet->page_buf[1].pfn = virt_to_phys(skb->data) >> PAGE_SHIFT; + packet->page_buf[1].offset + = (unsigned long)skb->data & (PAGE_SIZE - 1); + if (npg_data == 1) + packet->page_buf[1].len = skb_headlen(skb); + else + packet->page_buf[1].len = PAGE_SIZE + - packet->page_buf[1].offset; + + for (i = 2; i <= npg_data; i++) { + packet->page_buf[i].pfn = virt_to_phys(skb->data + + PAGE_SIZE * (i-1)) >> PAGE_SHIFT; + packet->page_buf[i].offset = 0; + packet->page_buf[i].len = PAGE_SIZE; + } + if (npg_data > 1) + packet->page_buf[npg_data].len = (((unsigned long)skb->data + + skb_headlen(skb) - 1) & (PAGE_SIZE - 1)) + 1; + + /* Additional fragments are after SKB data */ + for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { + const skb_frag_t *f = &skb_shinfo(skb)->frags[i]; + + packet->page_buf[i+npg_data+1].pfn = + page_to_pfn(skb_frag_page(f)); + packet->page_buf[i+npg_data+1].offset = f->page_offset; + packet->page_buf[i+npg_data+1].len = skb_frag_size(f); + } + + /* Set the completion routine */ + packet->completion.send.send_completion = netvsc_xmit_completion; + packet->completion.send.send_completion_ctx = packet; + packet->completion.send.send_completion_tid = (unsigned long)skb; + + ret = rndis_filter_send(net_device_ctx->device_ctx, + packet); + if (ret == 0) { + net->stats.tx_bytes += skb->len; + net->stats.tx_packets++; + } else { + /* we are shutting down or bus overloaded, just drop packet */ + net->stats.tx_dropped++; + kfree(packet); + dev_kfree_skb_any(skb); + } + + return NETDEV_TX_OK; +} + +/* + * netvsc_linkstatus_callback - Link up/down notification + */ +void netvsc_linkstatus_callback(struct hv_device *device_obj, + unsigned int status) +{ + struct net_device *net; + struct net_device_context *ndev_ctx; + struct netvsc_device *net_device; + + net_device = hv_get_drvdata(device_obj); + net = net_device->ndev; + + if (!net) { + netdev_err(net, "got link status but net device " + "not initialized yet\n"); + return; + } + + if (status == 1) { + netif_carrier_on(net); + netif_wake_queue(net); + ndev_ctx = netdev_priv(net); + schedule_delayed_work(&ndev_ctx->dwork, 0); + schedule_delayed_work(&ndev_ctx->dwork, msecs_to_jiffies(20)); + } else { + netif_carrier_off(net); + netif_tx_disable(net); + } +} + +/* + * netvsc_recv_callback - Callback when we receive a packet from the + * "wire" on the specified device. + */ +int netvsc_recv_callback(struct hv_device *device_obj, + struct hv_netvsc_packet *packet) +{ + struct net_device *net; + struct sk_buff *skb; + + net = ((struct netvsc_device *)hv_get_drvdata(device_obj))->ndev; + if (!net) { + netdev_err(net, "got receive callback but net device" + " not initialized yet\n"); + return 0; + } + + /* Allocate a skb - TODO direct I/O to pages? */ + skb = netdev_alloc_skb_ip_align(net, packet->total_data_buflen); + if (unlikely(!skb)) { + ++net->stats.rx_dropped; + return 0; + } + + /* + * Copy to skb. This copy is needed here since the memory pointed by + * hv_netvsc_packet cannot be deallocated + */ + memcpy(skb_put(skb, packet->total_data_buflen), packet->data, + packet->total_data_buflen); + + skb->protocol = eth_type_trans(skb, net); + skb->ip_summed = CHECKSUM_NONE; + skb->vlan_tci = packet->vlan_tci; + + net->stats.rx_packets++; + net->stats.rx_bytes += packet->total_data_buflen; + + /* + * Pass the skb back up. Network stack will deallocate the skb when it + * is done. + * TODO - use NAPI? + */ + netif_rx(skb); + + return 0; +} + +static void netvsc_get_drvinfo(struct net_device *net, + struct ethtool_drvinfo *info) +{ + strcpy(info->driver, KBUILD_MODNAME); + strcpy(info->version, HV_DRV_VERSION); + strcpy(info->fw_version, "N/A"); +} + +static int netvsc_change_mtu(struct net_device *ndev, int mtu) +{ + struct net_device_context *ndevctx = netdev_priv(ndev); + struct hv_device *hdev = ndevctx->device_ctx; + struct netvsc_device *nvdev = hv_get_drvdata(hdev); + struct netvsc_device_info device_info; + int limit = ETH_DATA_LEN; + + if (nvdev == NULL || nvdev->destroy) + return -ENODEV; + + if (nvdev->nvsp_version == NVSP_PROTOCOL_VERSION_2) + limit = NETVSC_MTU; + + if (mtu < 68 || mtu > limit) + return -EINVAL; + + nvdev->start_remove = true; + cancel_delayed_work_sync(&ndevctx->dwork); + netif_tx_disable(ndev); + rndis_filter_device_remove(hdev); + + ndev->mtu = mtu; + + ndevctx->device_ctx = hdev; + hv_set_drvdata(hdev, ndev); + device_info.ring_size = ring_size; + rndis_filter_device_add(hdev, &device_info); + netif_wake_queue(ndev); + + return 0; +} + +static const struct ethtool_ops ethtool_ops = { + .get_drvinfo = netvsc_get_drvinfo, + .get_link = ethtool_op_get_link, +}; + +static const struct net_device_ops device_ops = { + .ndo_open = netvsc_open, + .ndo_stop = netvsc_close, + .ndo_start_xmit = netvsc_start_xmit, + .ndo_set_rx_mode = netvsc_set_multicast_list, + .ndo_change_mtu = netvsc_change_mtu, + .ndo_validate_addr = eth_validate_addr, + .ndo_set_mac_address = eth_mac_addr, +}; + +/* + * Send GARP packet to network peers after migrations. + * After Quick Migration, the network is not immediately operational in the + * current context when receiving RNDIS_STATUS_MEDIA_CONNECT event. So, add + * another netif_notify_peers() into a delayed work, otherwise GARP packet + * will not be sent after quick migration, and cause network disconnection. + */ +static void netvsc_send_garp(struct work_struct *w) +{ + struct net_device_context *ndev_ctx; + struct net_device *net; + struct netvsc_device *net_device; + + ndev_ctx = container_of(w, struct net_device_context, dwork.work); + net_device = hv_get_drvdata(ndev_ctx->device_ctx); + net = net_device->ndev; + netif_notify_peers(net); +} + + +static int netvsc_probe(struct hv_device *dev, + const struct hv_vmbus_device_id *dev_id) +{ + struct net_device *net = NULL; + struct net_device_context *net_device_ctx; + struct netvsc_device_info device_info; + int ret; + + net = alloc_etherdev(sizeof(struct net_device_context)); + if (!net) + return -ENOMEM; + + /* Set initial state */ + netif_carrier_off(net); + + net_device_ctx = netdev_priv(net); + net_device_ctx->device_ctx = dev; + hv_set_drvdata(dev, net); + INIT_DELAYED_WORK(&net_device_ctx->dwork, netvsc_send_garp); + + net->netdev_ops = &device_ops; + + /* TODO: Add GSO and Checksum offload */ + net->hw_features = NETIF_F_SG; + net->features = NETIF_F_SG | NETIF_F_HW_VLAN_TX; + + SET_ETHTOOL_OPS(net, ðtool_ops); + SET_NETDEV_DEV(net, &dev->device); + + ret = register_netdev(net); + if (ret != 0) { + pr_err("Unable to register netdev.\n"); + free_netdev(net); + goto out; + } + + /* Notify the netvsc driver of the new device */ + device_info.ring_size = ring_size; + ret = rndis_filter_device_add(dev, &device_info); + if (ret != 0) { + netdev_err(net, "unable to add netvsc device (ret %d)\n", ret); + unregister_netdev(net); + free_netdev(net); + hv_set_drvdata(dev, NULL); + return ret; + } + memcpy(net->dev_addr, device_info.mac_adr, ETH_ALEN); + + netif_carrier_on(net); + +out: + return ret; +} + +static int netvsc_remove(struct hv_device *dev) +{ + struct net_device *net; + struct net_device_context *ndev_ctx; + struct netvsc_device *net_device; + + net_device = hv_get_drvdata(dev); + net = net_device->ndev; + + if (net == NULL) { + dev_err(&dev->device, "No net device to remove\n"); + return 0; + } + + net_device->start_remove = true; + + ndev_ctx = netdev_priv(net); + cancel_delayed_work_sync(&ndev_ctx->dwork); + + /* Stop outbound asap */ + netif_tx_disable(net); + + unregister_netdev(net); + + /* + * Call to the vsc driver to let it know that the device is being + * removed + */ + rndis_filter_device_remove(dev); + + free_netdev(net); + return 0; +} + +static const struct hv_vmbus_device_id id_table[] = { + /* Network guid */ + { VMBUS_DEVICE(0x63, 0x51, 0x61, 0xF8, 0x3E, 0xDF, 0xc5, 0x46, + 0x91, 0x3F, 0xF2, 0xD2, 0xF9, 0x65, 0xED, 0x0E) }, + { }, +}; + +MODULE_DEVICE_TABLE(vmbus, id_table); + +/* The one and only one */ +static struct hv_driver netvsc_drv = { + .name = KBUILD_MODNAME, + .id_table = id_table, + .probe = netvsc_probe, + .remove = netvsc_remove, +}; + +static void __exit netvsc_drv_exit(void) +{ + vmbus_driver_unregister(&netvsc_drv); +} + +static int __init netvsc_drv_init(void) +{ + return vmbus_driver_register(&netvsc_drv); +} + +MODULE_LICENSE("GPL"); +MODULE_VERSION(HV_DRV_VERSION); +MODULE_DESCRIPTION("Microsoft Hyper-V network driver"); + +module_init(netvsc_drv_init); +module_exit(netvsc_drv_exit); --- linux-3.2.0.orig/drivers/net/phy/icplus.c +++ linux-3.2.0/drivers/net/phy/icplus.c @@ -150,7 +150,8 @@ /* Enable Auto Power Saving mode */ c = phy_read(phydev, IP10XX_SPEC_CTRL_STATUS); c |= IP101A_APS_ON; - return c; + + return phy_write(phydev, IP10XX_SPEC_CTRL_STATUS, c); } static int ip175c_read_status(struct phy_device *phydev) --- linux-3.2.0.orig/drivers/net/wimax/i2400m/netdev.c +++ linux-3.2.0/drivers/net/wimax/i2400m/netdev.c @@ -607,7 +607,8 @@ struct i2400m *i2400m = net_dev_to_i2400m(net_dev); strncpy(info->driver, KBUILD_MODNAME, sizeof(info->driver) - 1); - strncpy(info->fw_version, i2400m->fw_name, sizeof(info->fw_version) - 1); + strncpy(info->fw_version, + i2400m->fw_name ? : "", sizeof(info->fw_version) - 1); if (net_dev->dev.parent) strncpy(info->bus_info, dev_name(net_dev->dev.parent), sizeof(info->bus_info) - 1); --- linux-3.2.0.orig/drivers/net/wireless/hostap/hostap_hw.c +++ linux-3.2.0/drivers/net/wireless/hostap/hostap_hw.c @@ -68,7 +68,7 @@ module_param_string(essid, essid, sizeof(essid), 0444); MODULE_PARM_DESC(essid, "Host AP's ESSID"); -static int iw_mode[MAX_PARM_DEVICES] = { IW_MODE_MASTER, DEF_INTS }; +static int iw_mode[MAX_PARM_DEVICES] = { IW_MODE_INFRA, DEF_INTS }; module_param_array(iw_mode, int, NULL, 0444); MODULE_PARM_DESC(iw_mode, "Initial operation mode"); --- linux-3.2.0.orig/drivers/net/wireless/brcm80211/Kconfig +++ linux-3.2.0/drivers/net/wireless/brcm80211/Kconfig @@ -5,7 +5,6 @@ tristate "Broadcom IEEE802.11n PCIe SoftMAC WLAN driver" depends on PCI depends on MAC80211 - depends on BCMA=n select BRCMUTIL select FW_LOADER select CRC_CCITT --- linux-3.2.0.orig/drivers/net/wireless/brcm80211/brcmsmac/ampdu.c +++ linux-3.2.0/drivers/net/wireless/brcm80211/brcmsmac/ampdu.c @@ -1053,17 +1053,13 @@ } /* either retransmit or send bar if ack not recd */ if (!ack_recd) { - struct ieee80211_tx_rate *txrate = - tx_info->status.rates; - if (retry && (txrate[0].count < (int)retry_limit)) { + if (retry && (ini->txretry[index] < (int)retry_limit)) { ini->txretry[index]++; ini->tx_in_transit--; /* * Use high prededence for retransmit to * give some punch */ - /* brcms_c_txq_enq(wlc, scb, p, - * BRCMS_PRIO_TO_PREC(tid)); */ brcms_c_txq_enq(wlc, scb, p, BRCMS_PRIO_TO_HI_PREC(tid)); } else { --- linux-3.2.0.orig/drivers/net/wireless/brcm80211/brcmsmac/main.c +++ linux-3.2.0/drivers/net/wireless/brcm80211/brcmsmac/main.c @@ -7865,6 +7865,7 @@ { int len_mpdu; struct ieee80211_rx_status rx_status; + struct ieee80211_hdr *hdr; memset(&rx_status, 0, sizeof(rx_status)); prep_mac80211_status(wlc, rxh, p, &rx_status); @@ -7874,6 +7875,13 @@ skb_pull(p, D11_PHY_HDR_LEN); __skb_trim(p, len_mpdu); + /* unmute transmit */ + if (wlc->hw->suspended_fifos) { + hdr = (struct ieee80211_hdr *)p->data; + if (ieee80211_is_beacon(hdr->frame_control)) + brcms_b_mute(wlc->hw, false, 0); + } + memcpy(IEEE80211_SKB_RXCB(p), &rx_status, sizeof(rx_status)); ieee80211_rx_irqsafe(wlc->pub->ieee_hw, p); } @@ -8217,13 +8225,21 @@ void brcms_c_wait_for_tx_completion(struct brcms_c_info *wlc, bool drop) { + int timeout = 20; + /* flush packet queue when requested */ if (drop) brcmu_pktq_flush(&wlc->pkt_queue->q, false, NULL, NULL); /* wait for queue and DMA fifos to run dry */ - while (!pktq_empty(&wlc->pkt_queue->q) || brcms_txpktpendtot(wlc) > 0) + while (!pktq_empty(&wlc->pkt_queue->q) || brcms_txpktpendtot(wlc) > 0) { brcms_msleep(wlc->wl, 1); + + if (--timeout == 0) + break; + } + + WARN_ON_ONCE(timeout == 0); } void brcms_c_set_beacon_listen_interval(struct brcms_c_info *wlc, u8 interval) --- linux-3.2.0.orig/drivers/net/wireless/p54/p54spi.c +++ linux-3.2.0/drivers/net/wireless/p54/p54spi.c @@ -622,19 +622,19 @@ ret = spi_setup(spi); if (ret < 0) { dev_err(&priv->spi->dev, "spi_setup failed"); - goto err_free_common; + goto err_free; } ret = gpio_request(p54spi_gpio_power, "p54spi power"); if (ret < 0) { dev_err(&priv->spi->dev, "power GPIO request failed: %d", ret); - goto err_free_common; + goto err_free; } ret = gpio_request(p54spi_gpio_irq, "p54spi irq"); if (ret < 0) { dev_err(&priv->spi->dev, "irq GPIO request failed: %d", ret); - goto err_free_common; + goto err_free_gpio_power; } gpio_direction_output(p54spi_gpio_power, 0); @@ -645,7 +645,7 @@ priv->spi); if (ret < 0) { dev_err(&priv->spi->dev, "request_irq() failed"); - goto err_free_common; + goto err_free_gpio_irq; } irq_set_irq_type(gpio_to_irq(p54spi_gpio_irq), IRQ_TYPE_EDGE_RISING); @@ -677,6 +677,12 @@ return 0; err_free_common: + free_irq(gpio_to_irq(p54spi_gpio_irq), spi); +err_free_gpio_irq: + gpio_free(p54spi_gpio_irq); +err_free_gpio_power: + gpio_free(p54spi_gpio_power); +err_free: p54_free_common(priv->hw); return ret; } --- linux-3.2.0.orig/drivers/net/wireless/iwlegacy/iwl3945-base.c +++ linux-3.2.0/drivers/net/wireless/iwlegacy/iwl3945-base.c @@ -2513,7 +2513,7 @@ container_of(data, struct iwl_priv, alive_start.work); mutex_lock(&priv->mutex); - if (test_bit(STATUS_EXIT_PENDING, &priv->status)) + if (test_bit(STATUS_EXIT_PENDING, &priv->status) || priv->txq == NULL) goto out; iwl3945_alive_start(priv); @@ -2656,14 +2656,13 @@ IWL_WARN(priv, "Invalid scan band\n"); return -EIO; } - /* - * If active scaning is requested but a certain channel - * is marked passive, we can do active scanning if we - * detect transmissions. + * If active scaning is requested but a certain channel is marked + * passive, we can do active scanning if we detect transmissions. For + * passive only scanning disable switching to active on any channel. */ scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH_DEFAULT : - IWL_GOOD_CRC_TH_DISABLED; + IWL_GOOD_CRC_TH_NEVER; len = iwl_legacy_fill_probe_req(priv, (struct ieee80211_mgmt *)scan->data, vif->addr, priv->scan_request->ie, --- linux-3.2.0.orig/drivers/net/wireless/iwlegacy/iwl-3945.c +++ linux-3.2.0/drivers/net/wireless/iwlegacy/iwl-3945.c @@ -1870,11 +1870,12 @@ struct iwl_priv *priv = container_of(work, struct iwl_priv, _3945.thermal_periodic.work); - if (test_bit(STATUS_EXIT_PENDING, &priv->status)) - return; - mutex_lock(&priv->mutex); + if (test_bit(STATUS_EXIT_PENDING, &priv->status) || priv->txq == NULL) + goto out; + iwl3945_reg_txpower_periodic(priv); +out: mutex_unlock(&priv->mutex); } --- linux-3.2.0.orig/drivers/net/wireless/ipw2x00/ipw2200.c +++ linux-3.2.0/drivers/net/wireless/ipw2x00/ipw2200.c @@ -2183,6 +2183,7 @@ { int rc = 0; unsigned long flags; + unsigned long now, end; spin_lock_irqsave(&priv->lock, flags); if (priv->status & STATUS_HCMD_ACTIVE) { @@ -2224,10 +2225,20 @@ } spin_unlock_irqrestore(&priv->lock, flags); + now = jiffies; + end = now + HOST_COMPLETE_TIMEOUT; +again: rc = wait_event_interruptible_timeout(priv->wait_command_queue, !(priv-> status & STATUS_HCMD_ACTIVE), - HOST_COMPLETE_TIMEOUT); + end - now); + if (rc < 0) { + now = jiffies; + if (time_before(now, end)) + goto again; + rc = 0; + } + if (rc == 0) { spin_lock_irqsave(&priv->lock, flags); if (priv->status & STATUS_HCMD_ACTIVE) { --- linux-3.2.0.orig/drivers/net/wireless/wl12xx/cmd.c +++ linux-3.2.0/drivers/net/wireless/wl12xx/cmd.c @@ -120,6 +120,11 @@ if (!wl->nvs) return -ENODEV; + if (gp->tx_bip_fem_manufacturer >= WL1271_INI_FEM_MODULE_COUNT) { + wl1271_warning("FEM index from INI out of bounds"); + return -EINVAL; + } + gen_parms = kzalloc(sizeof(*gen_parms), GFP_KERNEL); if (!gen_parms) return -ENOMEM; @@ -143,6 +148,12 @@ gp->tx_bip_fem_manufacturer = gen_parms->general_params.tx_bip_fem_manufacturer; + if (gp->tx_bip_fem_manufacturer >= WL1271_INI_FEM_MODULE_COUNT) { + wl1271_warning("FEM index from FW out of bounds"); + ret = -EINVAL; + goto out; + } + wl1271_debug(DEBUG_CMD, "FEM autodetect: %s, manufacturer: %d\n", answer ? "auto" : "manual", gp->tx_bip_fem_manufacturer); @@ -162,6 +173,11 @@ if (!wl->nvs) return -ENODEV; + if (gp->tx_bip_fem_manufacturer >= WL1271_INI_FEM_MODULE_COUNT) { + wl1271_warning("FEM index from ini out of bounds"); + return -EINVAL; + } + gen_parms = kzalloc(sizeof(*gen_parms), GFP_KERNEL); if (!gen_parms) return -ENOMEM; @@ -186,6 +202,12 @@ gp->tx_bip_fem_manufacturer = gen_parms->general_params.tx_bip_fem_manufacturer; + if (gp->tx_bip_fem_manufacturer >= WL1271_INI_FEM_MODULE_COUNT) { + wl1271_warning("FEM index from FW out of bounds"); + ret = -EINVAL; + goto out; + } + wl1271_debug(DEBUG_CMD, "FEM autodetect: %s, manufacturer: %d\n", answer ? "auto" : "manual", gp->tx_bip_fem_manufacturer); --- linux-3.2.0.orig/drivers/net/wireless/wl12xx/boot.c +++ linux-3.2.0/drivers/net/wireless/wl12xx/boot.c @@ -347,6 +347,9 @@ nvs_ptr += 3; for (i = 0; i < burst_len; i++) { + if (nvs_ptr + 3 >= (u8 *) wl->nvs + nvs_len) + goto out_badnvs; + val = (nvs_ptr[0] | (nvs_ptr[1] << 8) | (nvs_ptr[2] << 16) | (nvs_ptr[3] << 24)); @@ -358,6 +361,9 @@ nvs_ptr += 4; dest_addr += 4; } + + if (nvs_ptr >= (u8 *) wl->nvs + nvs_len) + goto out_badnvs; } /* @@ -369,6 +375,10 @@ */ nvs_ptr = (u8 *)wl->nvs + ALIGN(nvs_ptr - (u8 *)wl->nvs + 7, 4); + + if (nvs_ptr >= (u8 *) wl->nvs + nvs_len) + goto out_badnvs; + nvs_len -= nvs_ptr - (u8 *)wl->nvs; /* Now we must set the partition correctly */ @@ -384,6 +394,10 @@ kfree(nvs_aligned); return 0; + +out_badnvs: + wl1271_error("nvs data is malformed"); + return -EILSEQ; } static void wl1271_boot_enable_interrupts(struct wl1271 *wl) --- linux-3.2.0.orig/drivers/net/wireless/wl12xx/testmode.c +++ linux-3.2.0/drivers/net/wireless/wl12xx/testmode.c @@ -36,6 +36,7 @@ WL1271_TM_CMD_TEST, WL1271_TM_CMD_INTERROGATE, WL1271_TM_CMD_CONFIGURE, + WL1271_TM_CMD_NVS_PUSH, /* Not in use. Keep to not break ABI */ WL1271_TM_CMD_SET_PLT_MODE, WL1271_TM_CMD_RECOVER, --- linux-3.2.0.orig/drivers/net/wireless/b43/main.c +++ linux-3.2.0/drivers/net/wireless/b43/main.c @@ -4820,8 +4820,14 @@ out_mutex_unlock: mutex_unlock(&wl->mutex); - /* reload configuration */ - b43_op_config(hw, ~0); + /* + * Configuration may have been overwritten during initialization. + * Reload the configuration, but only if initialization was + * successful. Reloading the configuration after a failed init + * may hang the system. + */ + if (!err) + b43_op_config(hw, ~0); return err; } --- linux-3.2.0.orig/drivers/net/wireless/wl1251/sdio.c +++ linux-3.2.0/drivers/net/wireless/wl1251/sdio.c @@ -315,8 +315,8 @@ if (wl->irq) free_irq(wl->irq, wl); - kfree(wl_sdio); wl1251_free_hw(wl); + kfree(wl_sdio); sdio_claim_host(func); sdio_release_irq(func); --- linux-3.2.0.orig/drivers/net/wireless/wl1251/main.c +++ linux-3.2.0/drivers/net/wireless/wl1251/main.c @@ -479,6 +479,7 @@ cancel_work_sync(&wl->irq_work); cancel_work_sync(&wl->tx_work); cancel_work_sync(&wl->filter_work); + cancel_delayed_work_sync(&wl->elp_work); mutex_lock(&wl->mutex); --- linux-3.2.0.orig/drivers/net/wireless/rt2x00/rt2x00mac.c +++ linux-3.2.0/drivers/net/wireless/rt2x00/rt2x00mac.c @@ -152,13 +152,22 @@ if (unlikely(rt2x00queue_write_tx_frame(queue, skb, false))) goto exit_fail; + /* + * Pausing queue has to be serialized with rt2x00lib_txdone(). Note + * we should not use spin_lock_bh variant as bottom halve was already + * disabled before ieee80211_xmit() call. + */ + spin_lock(&queue->tx_lock); if (rt2x00queue_threshold(queue)) rt2x00queue_pause_queue(queue); + spin_unlock(&queue->tx_lock); return; exit_fail: + spin_lock(&queue->tx_lock); rt2x00queue_pause_queue(queue); + spin_unlock(&queue->tx_lock); exit_free_skb: dev_kfree_skb_any(skb); } --- linux-3.2.0.orig/drivers/net/wireless/rt2x00/rt2800pci.c +++ linux-3.2.0/drivers/net/wireless/rt2x00/rt2800pci.c @@ -422,7 +422,6 @@ static void rt2800pci_toggle_irq(struct rt2x00_dev *rt2x00dev, enum dev_state state) { - int mask = (state == STATE_RADIO_IRQ_ON); u32 reg; unsigned long flags; @@ -436,25 +435,14 @@ } spin_lock_irqsave(&rt2x00dev->irqmask_lock, flags); - rt2x00pci_register_read(rt2x00dev, INT_MASK_CSR, ®); - rt2x00_set_field32(®, INT_MASK_CSR_RXDELAYINT, 0); - rt2x00_set_field32(®, INT_MASK_CSR_TXDELAYINT, 0); - rt2x00_set_field32(®, INT_MASK_CSR_RX_DONE, mask); - rt2x00_set_field32(®, INT_MASK_CSR_AC0_DMA_DONE, 0); - rt2x00_set_field32(®, INT_MASK_CSR_AC1_DMA_DONE, 0); - rt2x00_set_field32(®, INT_MASK_CSR_AC2_DMA_DONE, 0); - rt2x00_set_field32(®, INT_MASK_CSR_AC3_DMA_DONE, 0); - rt2x00_set_field32(®, INT_MASK_CSR_HCCA_DMA_DONE, 0); - rt2x00_set_field32(®, INT_MASK_CSR_MGMT_DMA_DONE, 0); - rt2x00_set_field32(®, INT_MASK_CSR_MCU_COMMAND, 0); - rt2x00_set_field32(®, INT_MASK_CSR_RXTX_COHERENT, 0); - rt2x00_set_field32(®, INT_MASK_CSR_TBTT, mask); - rt2x00_set_field32(®, INT_MASK_CSR_PRE_TBTT, mask); - rt2x00_set_field32(®, INT_MASK_CSR_TX_FIFO_STATUS, mask); - rt2x00_set_field32(®, INT_MASK_CSR_AUTO_WAKEUP, mask); - rt2x00_set_field32(®, INT_MASK_CSR_GPTIMER, 0); - rt2x00_set_field32(®, INT_MASK_CSR_RX_COHERENT, 0); - rt2x00_set_field32(®, INT_MASK_CSR_TX_COHERENT, 0); + reg = 0; + if (state == STATE_RADIO_IRQ_ON) { + rt2x00_set_field32(®, INT_MASK_CSR_RX_DONE, 1); + rt2x00_set_field32(®, INT_MASK_CSR_TBTT, 1); + rt2x00_set_field32(®, INT_MASK_CSR_PRE_TBTT, 1); + rt2x00_set_field32(®, INT_MASK_CSR_TX_FIFO_STATUS, 1); + rt2x00_set_field32(®, INT_MASK_CSR_AUTO_WAKEUP, 1); + } rt2x00pci_register_write(rt2x00dev, INT_MASK_CSR, reg); spin_unlock_irqrestore(&rt2x00dev->irqmask_lock, flags); --- linux-3.2.0.orig/drivers/net/wireless/rt2x00/rt2x00queue.c +++ linux-3.2.0/drivers/net/wireless/rt2x00/rt2x00queue.c @@ -619,6 +619,9 @@ else if (test_bit(REQUIRE_DMA, &queue->rt2x00dev->cap_flags)) rt2x00queue_align_frame(skb); + /* + * That function must be called with bh disabled. + */ spin_lock(&queue->tx_lock); if (unlikely(rt2x00queue_full(queue))) { --- linux-3.2.0.orig/drivers/net/wireless/rt2x00/rt2x00dev.c +++ linux-3.2.0/drivers/net/wireless/rt2x00/rt2x00dev.c @@ -426,10 +426,14 @@ /* * If the data queue was below the threshold before the txdone * handler we must make sure the packet queue in the mac80211 stack - * is reenabled when the txdone handler has finished. + * is reenabled when the txdone handler has finished. This has to be + * serialized with rt2x00mac_tx(), otherwise we can wake up queue + * before it was stopped. */ + spin_lock_bh(&entry->queue->tx_lock); if (!rt2x00queue_threshold(entry->queue)) rt2x00queue_unpause_queue(entry->queue); + spin_unlock_bh(&entry->queue->tx_lock); } EXPORT_SYMBOL_GPL(rt2x00lib_txdone); --- linux-3.2.0.orig/drivers/net/wireless/rt2x00/rt2800usb.c +++ linux-3.2.0/drivers/net/wireless/rt2x00/rt2800usb.c @@ -914,12 +914,14 @@ { USB_DEVICE(0x050d, 0x8053) }, { USB_DEVICE(0x050d, 0x805c) }, { USB_DEVICE(0x050d, 0x815c) }, + { USB_DEVICE(0x050d, 0x825a) }, { USB_DEVICE(0x050d, 0x825b) }, { USB_DEVICE(0x050d, 0x935a) }, { USB_DEVICE(0x050d, 0x935b) }, /* Buffalo */ { USB_DEVICE(0x0411, 0x00e8) }, { USB_DEVICE(0x0411, 0x0158) }, + { USB_DEVICE(0x0411, 0x015d) }, { USB_DEVICE(0x0411, 0x016f) }, { USB_DEVICE(0x0411, 0x01a2) }, /* Corega */ @@ -934,7 +936,10 @@ { USB_DEVICE(0x07d1, 0x3c0e) }, { USB_DEVICE(0x07d1, 0x3c0f) }, { USB_DEVICE(0x07d1, 0x3c11) }, + { USB_DEVICE(0x07d1, 0x3c13) }, + { USB_DEVICE(0x07d1, 0x3c15) }, { USB_DEVICE(0x07d1, 0x3c16) }, + { USB_DEVICE(0x2001, 0x3c1b) }, /* Draytek */ { USB_DEVICE(0x07fa, 0x7712) }, /* DVICO */ @@ -943,6 +948,7 @@ { USB_DEVICE(0x7392, 0x7711) }, { USB_DEVICE(0x7392, 0x7717) }, { USB_DEVICE(0x7392, 0x7718) }, + { USB_DEVICE(0x7392, 0x7722) }, /* Encore */ { USB_DEVICE(0x203d, 0x1480) }, { USB_DEVICE(0x203d, 0x14a9) }, @@ -976,6 +982,8 @@ { USB_DEVICE(0x13b1, 0x0031) }, { USB_DEVICE(0x1737, 0x0070) }, { USB_DEVICE(0x1737, 0x0071) }, + { USB_DEVICE(0x1737, 0x0077) }, + { USB_DEVICE(0x1737, 0x0078) }, /* Logitec */ { USB_DEVICE(0x0789, 0x0162) }, { USB_DEVICE(0x0789, 0x0163) }, @@ -999,9 +1007,13 @@ { USB_DEVICE(0x0db0, 0x871b) }, { USB_DEVICE(0x0db0, 0x871c) }, { USB_DEVICE(0x0db0, 0x899a) }, + /* Ovislink */ + { USB_DEVICE(0x1b75, 0x3071) }, + { USB_DEVICE(0x1b75, 0x3072) }, /* Para */ { USB_DEVICE(0x20b8, 0x8888) }, /* Pegatron */ + { USB_DEVICE(0x1d4d, 0x0002) }, { USB_DEVICE(0x1d4d, 0x000c) }, { USB_DEVICE(0x1d4d, 0x000e) }, { USB_DEVICE(0x1d4d, 0x0011) }, @@ -1054,7 +1066,9 @@ /* Sparklan */ { USB_DEVICE(0x15a9, 0x0006) }, /* Sweex */ + { USB_DEVICE(0x177f, 0x0153) }, { USB_DEVICE(0x177f, 0x0302) }, + { USB_DEVICE(0x177f, 0x0313) }, /* U-Media */ { USB_DEVICE(0x157e, 0x300e) }, { USB_DEVICE(0x157e, 0x3013) }, @@ -1138,27 +1152,24 @@ { USB_DEVICE(0x13d3, 0x3322) }, /* Belkin */ { USB_DEVICE(0x050d, 0x1003) }, - { USB_DEVICE(0x050d, 0x825a) }, /* Buffalo */ { USB_DEVICE(0x0411, 0x012e) }, { USB_DEVICE(0x0411, 0x0148) }, { USB_DEVICE(0x0411, 0x0150) }, - { USB_DEVICE(0x0411, 0x015d) }, /* Corega */ { USB_DEVICE(0x07aa, 0x0041) }, { USB_DEVICE(0x07aa, 0x0042) }, { USB_DEVICE(0x18c5, 0x0008) }, /* D-Link */ { USB_DEVICE(0x07d1, 0x3c0b) }, - { USB_DEVICE(0x07d1, 0x3c13) }, - { USB_DEVICE(0x07d1, 0x3c15) }, { USB_DEVICE(0x07d1, 0x3c17) }, { USB_DEVICE(0x2001, 0x3c17) }, /* Edimax */ { USB_DEVICE(0x7392, 0x4085) }, - { USB_DEVICE(0x7392, 0x7722) }, /* Encore */ { USB_DEVICE(0x203d, 0x14a1) }, + /* Fujitsu Stylistic 550 */ + { USB_DEVICE(0x1690, 0x0761) }, /* Gemtek */ { USB_DEVICE(0x15a9, 0x0010) }, /* Gigabyte */ @@ -1170,20 +1181,13 @@ /* LevelOne */ { USB_DEVICE(0x1740, 0x0605) }, { USB_DEVICE(0x1740, 0x0615) }, - /* Linksys */ - { USB_DEVICE(0x1737, 0x0077) }, - { USB_DEVICE(0x1737, 0x0078) }, /* Logitec */ { USB_DEVICE(0x0789, 0x0168) }, { USB_DEVICE(0x0789, 0x0169) }, /* Motorola */ { USB_DEVICE(0x100d, 0x9032) }, - /* Ovislink */ - { USB_DEVICE(0x1b75, 0x3071) }, - { USB_DEVICE(0x1b75, 0x3072) }, /* Pegatron */ { USB_DEVICE(0x05a6, 0x0101) }, - { USB_DEVICE(0x1d4d, 0x0002) }, { USB_DEVICE(0x1d4d, 0x0010) }, /* Planex */ { USB_DEVICE(0x2019, 0x5201) }, @@ -1202,9 +1206,6 @@ { USB_DEVICE(0x083a, 0xc522) }, { USB_DEVICE(0x083a, 0xd522) }, { USB_DEVICE(0x083a, 0xf511) }, - /* Sweex */ - { USB_DEVICE(0x177f, 0x0153) }, - { USB_DEVICE(0x177f, 0x0313) }, /* Zyxel */ { USB_DEVICE(0x0586, 0x341a) }, #endif --- linux-3.2.0.orig/drivers/net/wireless/libertas/cfg.c +++ linux-3.2.0/drivers/net/wireless/libertas/cfg.c @@ -728,9 +728,11 @@ le16_to_cpu(scan_cmd->hdr.size), lbs_ret_scan, 0); - if (priv->scan_channel >= priv->scan_req->n_channels) + if (priv->scan_channel >= priv->scan_req->n_channels) { /* Mark scan done */ + cancel_delayed_work(&priv->scan_work); lbs_scan_done(priv); + } /* Restart network */ if (carrier) @@ -759,12 +761,12 @@ request->n_ssids, request->n_channels, request->ie_len); priv->scan_channel = 0; - queue_delayed_work(priv->work_thread, &priv->scan_work, - msecs_to_jiffies(50)); - priv->scan_req = request; priv->internal_scan = internal; + queue_delayed_work(priv->work_thread, &priv->scan_work, + msecs_to_jiffies(50)); + lbs_deb_leave(LBS_DEB_CFG80211); } --- linux-3.2.0.orig/drivers/net/wireless/rtlwifi/wifi.h +++ linux-3.2.0/drivers/net/wireless/rtlwifi/wifi.h @@ -63,7 +63,7 @@ #define AC_MAX 4 #define QOS_QUEUE_NUM 4 #define RTL_MAC80211_NUM_QUEUE 5 - +#define RTL_USB_MAX_RX_COUNT 100 #define QBSS_LOAD_SIZE 5 #define MAX_WMMELE_LENGTH 64 @@ -1621,6 +1621,10 @@ interface or hardware */ unsigned long status; + /* data buffer pointer for USB reads */ + __le32 *usb_data; + int usb_data_index; + /*This must be the last item so that it points to the data allocated beyond this structure like: --- linux-3.2.0.orig/drivers/net/wireless/rtlwifi/usb.c +++ linux-3.2.0/drivers/net/wireless/rtlwifi/usb.c @@ -113,46 +113,38 @@ return status; } -static u32 _usb_read_sync(struct usb_device *udev, u32 addr, u16 len) +static u32 _usb_read_sync(struct rtl_priv *rtlpriv, u32 addr, u16 len) { + struct device *dev = rtlpriv->io.dev; + struct usb_device *udev = to_usb_device(dev); u8 request; u16 wvalue; u16 index; - u32 *data; - u32 ret; + __le32 *data = &rtlpriv->usb_data[rtlpriv->usb_data_index]; - data = kmalloc(sizeof(u32), GFP_KERNEL); - if (!data) - return -ENOMEM; request = REALTEK_USB_VENQT_CMD_REQ; index = REALTEK_USB_VENQT_CMD_IDX; /* n/a */ wvalue = (u16)addr; _usbctrl_vendorreq_sync_read(udev, request, wvalue, index, data, len); - ret = *data; - kfree(data); - return ret; + if (++rtlpriv->usb_data_index >= RTL_USB_MAX_RX_COUNT) + rtlpriv->usb_data_index = 0; + return le32_to_cpu(*data); } static u8 _usb_read8_sync(struct rtl_priv *rtlpriv, u32 addr) { - struct device *dev = rtlpriv->io.dev; - - return (u8)_usb_read_sync(to_usb_device(dev), addr, 1); + return (u8)_usb_read_sync(rtlpriv, addr, 1); } static u16 _usb_read16_sync(struct rtl_priv *rtlpriv, u32 addr) { - struct device *dev = rtlpriv->io.dev; - - return (u16)_usb_read_sync(to_usb_device(dev), addr, 2); + return (u16)_usb_read_sync(rtlpriv, addr, 2); } static u32 _usb_read32_sync(struct rtl_priv *rtlpriv, u32 addr) { - struct device *dev = rtlpriv->io.dev; - - return _usb_read_sync(to_usb_device(dev), addr, 4); + return _usb_read_sync(rtlpriv, addr, 4); } static void _usb_write_async(struct usb_device *udev, u32 addr, u32 val, @@ -481,12 +473,14 @@ u8 *pdata; uskb = dev_alloc_skb(skb->len + 128); - memcpy(IEEE80211_SKB_RXCB(uskb), &rx_status, - sizeof(rx_status)); - pdata = (u8 *)skb_put(uskb, skb->len); - memcpy(pdata, skb->data, skb->len); + if (uskb) { /* drop packet on allocation failure */ + memcpy(IEEE80211_SKB_RXCB(uskb), &rx_status, + sizeof(rx_status)); + pdata = (u8 *)skb_put(uskb, skb->len); + memcpy(pdata, skb->data, skb->len); + ieee80211_rx_irqsafe(hw, uskb); + } dev_kfree_skb_any(skb); - ieee80211_rx_irqsafe(hw, uskb); } else { dev_kfree_skb_any(skb); } @@ -911,6 +905,11 @@ return -ENOMEM; } rtlpriv = hw->priv; + rtlpriv->usb_data = kzalloc(RTL_USB_MAX_RX_COUNT * sizeof(u32), + GFP_KERNEL); + if (!rtlpriv->usb_data) + return -ENOMEM; + rtlpriv->usb_data_index = 0; SET_IEEE80211_DEV(hw, &intf->dev); udev = interface_to_usbdev(intf); usb_get_dev(udev); @@ -988,6 +987,7 @@ /* rtl_deinit_rfkill(hw); */ rtl_usb_deinit(hw); rtl_deinit_core(hw); + kfree(rtlpriv->usb_data); rtlpriv->cfg->ops->deinit_sw_leds(hw); rtlpriv->cfg->ops->deinit_sw_vars(hw); _rtl_usb_io_handler_release(hw); --- linux-3.2.0.orig/drivers/net/wireless/rtlwifi/pci.c +++ linux-3.2.0/drivers/net/wireless/rtlwifi/pci.c @@ -657,6 +657,8 @@ return; uskb = dev_alloc_skb(skb->len + 128); + if (!uskb) + return; /* exit if allocation failed */ memcpy(IEEE80211_SKB_RXCB(uskb), &rx_status, sizeof(rx_status)); pdata = (u8 *)skb_put(uskb, skb->len); memcpy(pdata, skb->data, skb->len); @@ -924,8 +926,13 @@ memset(&tcb_desc, 0, sizeof(struct rtl_tcb_desc)); ring = &rtlpci->tx_ring[BEACON_QUEUE]; pskb = __skb_dequeue(&ring->queue); - if (pskb) + if (pskb) { + struct rtl_tx_desc *entry = &ring->desc[ring->idx]; + pci_unmap_single(rtlpci->pdev, rtlpriv->cfg->ops->get_desc( + (u8 *) entry, true, HW_DESC_TXBUFF_ADDR), + pskb->len, PCI_DMA_TODEVICE); kfree_skb(pskb); + } /*NB: the beacon data buffer must be 32-bit aligned. */ pskb = ieee80211_beacon_get(hw, mac->vif); @@ -1153,10 +1160,12 @@ ring->idx = (ring->idx + 1) % ring->entries; } - pci_free_consistent(rtlpci->pdev, - sizeof(*ring->desc) * ring->entries, - ring->desc, ring->dma); - ring->desc = NULL; + if (ring->desc) { + pci_free_consistent(rtlpci->pdev, + sizeof(*ring->desc) * ring->entries, + ring->desc, ring->dma); + ring->desc = NULL; + } } static void _rtl_pci_free_rx_ring(struct rtl_pci *rtlpci) @@ -1180,12 +1189,14 @@ kfree_skb(skb); } - pci_free_consistent(rtlpci->pdev, + if (rtlpci->rx_ring[rx_queue_idx].desc) { + pci_free_consistent(rtlpci->pdev, sizeof(*rtlpci->rx_ring[rx_queue_idx]. desc) * rtlpci->rxringcount, rtlpci->rx_ring[rx_queue_idx].desc, rtlpci->rx_ring[rx_queue_idx].dma); - rtlpci->rx_ring[rx_queue_idx].desc = NULL; + rtlpci->rx_ring[rx_queue_idx].desc = NULL; + } } } @@ -1950,6 +1961,7 @@ rtl_deinit_deferred_work(hw); rtlpriv->intf_ops->adapter_stop(hw); } + rtlpriv->cfg->ops->disable_interrupt(hw); /*deinit rfkill */ rtl_deinit_rfkill(hw); --- linux-3.2.0.orig/drivers/net/wireless/rtlwifi/rtl8192cu/sw.c +++ linux-3.2.0/drivers/net/wireless/rtlwifi/rtl8192cu/sw.c @@ -275,6 +275,8 @@ {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8191, rtl92cu_hal_cfg)}, /****** 8188CU ********/ + /* RTL8188CTV */ + {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x018a, rtl92cu_hal_cfg)}, /* 8188CE-VAU USB minCard */ {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8170, rtl92cu_hal_cfg)}, /* 8188cu 1*1 dongle */ @@ -291,14 +293,14 @@ {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x817e, rtl92cu_hal_cfg)}, /* 8188RU in Alfa AWUS036NHR */ {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x817f, rtl92cu_hal_cfg)}, + /* RTL8188CUS-VL */ + {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x818a, rtl92cu_hal_cfg)}, /* 8188 Combo for BC4 */ {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8754, rtl92cu_hal_cfg)}, /****** 8192CU ********/ - /* 8191cu 1*2 */ - {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8177, rtl92cu_hal_cfg)}, /* 8192cu 2*2 */ - {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x817b, rtl92cu_hal_cfg)}, + {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x8178, rtl92cu_hal_cfg)}, /* 8192CE-VAU USB minCard */ {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x817c, rtl92cu_hal_cfg)}, @@ -309,13 +311,17 @@ {RTL_USB_DEVICE(0x07b8, 0x8188, rtl92cu_hal_cfg)}, /*Abocom - Abocom*/ {RTL_USB_DEVICE(0x07b8, 0x8189, rtl92cu_hal_cfg)}, /*Funai - Abocom*/ {RTL_USB_DEVICE(0x0846, 0x9041, rtl92cu_hal_cfg)}, /*NetGear WNA1000M*/ - {RTL_USB_DEVICE(0x0Df6, 0x0052, rtl92cu_hal_cfg)}, /*Sitecom - Edimax*/ + {RTL_USB_DEVICE(0x0df6, 0x0052, rtl92cu_hal_cfg)}, /*Sitecom - Edimax*/ + {RTL_USB_DEVICE(0x0df6, 0x005c, rtl92cu_hal_cfg)}, /*Sitecom - Edimax*/ {RTL_USB_DEVICE(0x0eb0, 0x9071, rtl92cu_hal_cfg)}, /*NO Brand - Etop*/ /* HP - Lite-On ,8188CUS Slim Combo */ {RTL_USB_DEVICE(0x103c, 0x1629, rtl92cu_hal_cfg)}, {RTL_USB_DEVICE(0x13d3, 0x3357, rtl92cu_hal_cfg)}, /* AzureWave */ {RTL_USB_DEVICE(0x2001, 0x3308, rtl92cu_hal_cfg)}, /*D-Link - Alpha*/ + {RTL_USB_DEVICE(0x2019, 0x4902, rtl92cu_hal_cfg)}, /*Planex - Etop*/ {RTL_USB_DEVICE(0x2019, 0xab2a, rtl92cu_hal_cfg)}, /*Planex - Abocom*/ + /*SW-WF02-AD15 -Abocom*/ + {RTL_USB_DEVICE(0x2019, 0xab2e, rtl92cu_hal_cfg)}, {RTL_USB_DEVICE(0x2019, 0xed17, rtl92cu_hal_cfg)}, /*PCI - Edimax*/ {RTL_USB_DEVICE(0x20f4, 0x648b, rtl92cu_hal_cfg)}, /*TRENDnet - Cameo*/ {RTL_USB_DEVICE(0x7392, 0x7811, rtl92cu_hal_cfg)}, /*Edimax - Edimax*/ @@ -326,14 +332,36 @@ {RTL_USB_DEVICE(0x4855, 0x0091, rtl92cu_hal_cfg)}, /* NetweeN-Feixun */ {RTL_USB_DEVICE(0x9846, 0x9041, rtl92cu_hal_cfg)}, /* Netgear Cameo */ + /****** 8188 RU ********/ + /* Netcore */ + {RTL_USB_DEVICE(USB_VENDER_ID_REALTEK, 0x317f, rtl92cu_hal_cfg)}, + + /****** 8188CUS Slim Solo********/ + {RTL_USB_DEVICE(0x04f2, 0xaff7, rtl92cu_hal_cfg)}, /*Xavi*/ + {RTL_USB_DEVICE(0x04f2, 0xaff9, rtl92cu_hal_cfg)}, /*Xavi*/ + {RTL_USB_DEVICE(0x04f2, 0xaffa, rtl92cu_hal_cfg)}, /*Xavi*/ + + /****** 8188CUS Slim Combo ********/ + {RTL_USB_DEVICE(0x04f2, 0xaff8, rtl92cu_hal_cfg)}, /*Xavi*/ + {RTL_USB_DEVICE(0x04f2, 0xaffb, rtl92cu_hal_cfg)}, /*Xavi*/ + {RTL_USB_DEVICE(0x04f2, 0xaffc, rtl92cu_hal_cfg)}, /*Xavi*/ + {RTL_USB_DEVICE(0x2019, 0x1201, rtl92cu_hal_cfg)}, /*Planex-Vencer*/ + /****** 8192CU ********/ + {RTL_USB_DEVICE(0x050d, 0x2102, rtl92cu_hal_cfg)}, /*Belcom-Sercomm*/ + {RTL_USB_DEVICE(0x050d, 0x2103, rtl92cu_hal_cfg)}, /*Belcom-Edimax*/ {RTL_USB_DEVICE(0x0586, 0x341f, rtl92cu_hal_cfg)}, /*Zyxel -Abocom*/ {RTL_USB_DEVICE(0x07aa, 0x0056, rtl92cu_hal_cfg)}, /*ATKK-Gemtek*/ {RTL_USB_DEVICE(0x07b8, 0x8178, rtl92cu_hal_cfg)}, /*Funai -Abocom*/ + {RTL_USB_DEVICE(0x0846, 0x9021, rtl92cu_hal_cfg)}, /*Netgear-Sercomm*/ + {RTL_USB_DEVICE(0x0b05, 0x17ab, rtl92cu_hal_cfg)}, /*ASUS-Edimax*/ + {RTL_USB_DEVICE(0x0df6, 0x0061, rtl92cu_hal_cfg)}, /*Sitecom-Edimax*/ + {RTL_USB_DEVICE(0x0e66, 0x0019, rtl92cu_hal_cfg)}, /*Hawking-Edimax*/ {RTL_USB_DEVICE(0x2001, 0x3307, rtl92cu_hal_cfg)}, /*D-Link-Cameo*/ {RTL_USB_DEVICE(0x2001, 0x3309, rtl92cu_hal_cfg)}, /*D-Link-Alpha*/ {RTL_USB_DEVICE(0x2001, 0x330a, rtl92cu_hal_cfg)}, /*D-Link-Alpha*/ {RTL_USB_DEVICE(0x2019, 0xab2b, rtl92cu_hal_cfg)}, /*Planex -Abocom*/ + {RTL_USB_DEVICE(0x20f4, 0x624d, rtl92cu_hal_cfg)}, /*TRENDNet*/ {RTL_USB_DEVICE(0x7392, 0x7822, rtl92cu_hal_cfg)}, /*Edimax -Edimax*/ {} }; --- linux-3.2.0.orig/drivers/net/wireless/rtlwifi/rtl8192de/phy.c +++ linux-3.2.0/drivers/net/wireless/rtlwifi/rtl8192de/phy.c @@ -3192,7 +3192,7 @@ break; case IO_CMD_PAUSE_DM_BY_SCAN: rtlphy->initgain_backup.xaagccore1 = de_digtable.cur_igvalue; - de_digtable.cur_igvalue = 0x17; + de_digtable.cur_igvalue = 0x37; rtl92d_dm_write_dig(hw); break; default: --- linux-3.2.0.orig/drivers/net/wireless/rtlwifi/rtl8192de/fw.c +++ linux-3.2.0/drivers/net/wireless/rtlwifi/rtl8192de/fw.c @@ -763,12 +763,16 @@ "rtl92d_set_fw_rsvdpagepkt(): HW_VAR_SET_TX_CMD: ALL\n", u1RsvdPageLoc, 3); skb = dev_alloc_skb(totalpacketlen); - memcpy((u8 *) skb_put(skb, totalpacketlen), &reserved_page_packet, - totalpacketlen); - rtstatus = _rtl92d_cmd_send_packet(hw, skb); + if (!skb) { + dlok = false; + } else { + memcpy((u8 *) skb_put(skb, totalpacketlen), + &reserved_page_packet, totalpacketlen); + rtstatus = _rtl92d_cmd_send_packet(hw, skb); - if (rtstatus) - dlok = true; + if (rtstatus) + dlok = true; + } if (dlok) { RT_TRACE(rtlpriv, COMP_POWER, DBG_LOUD, ("Set RSVD page location to Fw.\n")); --- linux-3.2.0.orig/drivers/net/wireless/rtlwifi/rtl8192se/fw.c +++ linux-3.2.0/drivers/net/wireless/rtlwifi/rtl8192se/fw.c @@ -196,6 +196,8 @@ /* Allocate skb buffer to contain firmware */ /* info and tx descriptor info. */ skb = dev_alloc_skb(frag_length); + if (!skb) + return false; skb_reserve(skb, extra_descoffset); seg_ptr = (u8 *)skb_put(skb, (u32)(frag_length - extra_descoffset)); @@ -573,6 +575,8 @@ len = _rtl92s_get_h2c_cmdlen(MAX_TRANSMIT_BUFFER_SIZE, 1, &cmd_len); skb = dev_alloc_skb(len); + if (!skb) + return false; cb_desc = (struct rtl_tcb_desc *)(skb->cb); cb_desc->queue_index = TXCMD_QUEUE; cb_desc->cmd_or_init = DESC_PACKET_TYPE_NORMAL; --- linux-3.2.0.orig/drivers/net/wireless/rtlwifi/rtl8192c/dm_common.c +++ linux-3.2.0/drivers/net/wireless/rtlwifi/rtl8192c/dm_common.c @@ -524,6 +524,10 @@ dm_digtable.cur_igvalue, dm_digtable.pre_igvalue, dm_digtable.backoff_val)); + dm_digtable.cur_igvalue += 2; + if (dm_digtable.cur_igvalue > 0x3f) + dm_digtable.cur_igvalue = 0x3f; + if (dm_digtable.pre_igvalue != dm_digtable.cur_igvalue) { rtl_set_bbreg(hw, ROFDM0_XAAGCCORE1, 0x7f, dm_digtable.cur_igvalue); @@ -1219,13 +1223,18 @@ ("PreState = %d, CurState = %d\n", p_ra->pre_ratr_state, p_ra->ratr_state)); - rcu_read_lock(); - sta = ieee80211_find_sta(mac->vif, mac->bssid); + /* Only the PCI card uses sta in the update rate table + * callback routine */ + if (rtlhal->interface == INTF_PCI) { + rcu_read_lock(); + sta = ieee80211_find_sta(mac->vif, mac->bssid); + } rtlpriv->cfg->ops->update_rate_tbl(hw, sta, p_ra->ratr_state); p_ra->pre_ratr_state = p_ra->ratr_state; - rcu_read_unlock(); + if (rtlhal->interface == INTF_PCI) + rcu_read_unlock(); } } } --- linux-3.2.0.orig/drivers/net/wireless/rtlwifi/rtl8192c/phy_common.c +++ linux-3.2.0/drivers/net/wireless/rtlwifi/rtl8192c/phy_common.c @@ -1968,7 +1968,7 @@ break; case IO_CMD_PAUSE_DM_BY_SCAN: rtlphy->initgain_backup.xaagccore1 = dm_digtable.cur_igvalue; - dm_digtable.cur_igvalue = 0x17; + dm_digtable.cur_igvalue = 0x37; rtl92c_dm_write_dig(hw); break; default: --- linux-3.2.0.orig/drivers/net/wireless/rtlwifi/rtl8192c/fw_common.c +++ linux-3.2.0/drivers/net/wireless/rtlwifi/rtl8192c/fw_common.c @@ -752,6 +752,8 @@ skb = dev_alloc_skb(totalpacketlen); + if (!skb) + return; memcpy((u8 *) skb_put(skb, totalpacketlen), &reserved_page_packet, totalpacketlen); --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-trans-pcie-rx.c +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-trans-pcie-rx.c @@ -957,11 +957,11 @@ } #endif - spin_unlock_irqrestore(&trans->shrd->lock, flags); - /* saved interrupt in inta variable now we can reset trans_pcie->inta */ trans_pcie->inta = 0; + spin_unlock_irqrestore(&trans->shrd->lock, flags); + /* Now service all interrupt bits discovered above. */ if (inta & CSR_INT_BIT_HW_ERR) { IWL_ERR(trans, "Hardware error detected. Restarting.\n"); @@ -1136,7 +1136,11 @@ * ICT functions * ******************************************************************************/ -#define ICT_COUNT (PAGE_SIZE/sizeof(u32)) + +/* a device (PCI-E) page is 4096 bytes long */ +#define ICT_SHIFT 12 +#define ICT_SIZE (1 << ICT_SHIFT) +#define ICT_COUNT (ICT_SIZE / sizeof(u32)) /* Free dram table */ void iwl_free_isr_ict(struct iwl_trans *trans) @@ -1144,21 +1148,19 @@ struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); - if (trans_pcie->ict_tbl_vir) { - dma_free_coherent(bus(trans)->dev, - (sizeof(u32) * ICT_COUNT) + PAGE_SIZE, - trans_pcie->ict_tbl_vir, + if (trans_pcie->ict_tbl) { + dma_free_coherent(bus(trans)->dev, ICT_SIZE, + trans_pcie->ict_tbl, trans_pcie->ict_tbl_dma); - trans_pcie->ict_tbl_vir = NULL; - memset(&trans_pcie->ict_tbl_dma, 0, - sizeof(trans_pcie->ict_tbl_dma)); - memset(&trans_pcie->aligned_ict_tbl_dma, 0, - sizeof(trans_pcie->aligned_ict_tbl_dma)); + trans_pcie->ict_tbl = NULL; + trans_pcie->ict_tbl_dma = 0; } } -/* allocate dram shared table it is a PAGE_SIZE aligned +/* + * allocate dram shared table, it is an aligned memory + * block of ICT_SIZE. * also reset all data related to ICT table interrupt. */ int iwl_alloc_isr_ict(struct iwl_trans *trans) @@ -1166,36 +1168,26 @@ struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); - /* allocate shrared data table */ - trans_pcie->ict_tbl_vir = - dma_alloc_coherent(bus(trans)->dev, - (sizeof(u32) * ICT_COUNT) + PAGE_SIZE, - &trans_pcie->ict_tbl_dma, GFP_KERNEL); - if (!trans_pcie->ict_tbl_vir) + trans_pcie->ict_tbl = + dma_alloc_coherent(bus(trans)->dev, ICT_SIZE, + &trans_pcie->ict_tbl_dma, + GFP_KERNEL); + if (!trans_pcie->ict_tbl) return -ENOMEM; - /* align table to PAGE_SIZE boundary */ - trans_pcie->aligned_ict_tbl_dma = - ALIGN(trans_pcie->ict_tbl_dma, PAGE_SIZE); - - IWL_DEBUG_ISR(trans, "ict dma addr %Lx dma aligned %Lx diff %d\n", - (unsigned long long)trans_pcie->ict_tbl_dma, - (unsigned long long)trans_pcie->aligned_ict_tbl_dma, - (int)(trans_pcie->aligned_ict_tbl_dma - - trans_pcie->ict_tbl_dma)); - - trans_pcie->ict_tbl = trans_pcie->ict_tbl_vir + - (trans_pcie->aligned_ict_tbl_dma - - trans_pcie->ict_tbl_dma); - - IWL_DEBUG_ISR(trans, "ict vir addr %p vir aligned %p diff %d\n", - trans_pcie->ict_tbl, trans_pcie->ict_tbl_vir, - (int)(trans_pcie->aligned_ict_tbl_dma - - trans_pcie->ict_tbl_dma)); + /* just an API sanity check ... it is guaranteed to be aligned */ + if (WARN_ON(trans_pcie->ict_tbl_dma & (ICT_SIZE - 1))) { + iwl_free_isr_ict(trans); + return -EINVAL; + } + + IWL_DEBUG_ISR(trans, "ict dma addr %Lx\n", + (unsigned long long)trans_pcie->ict_tbl_dma); + + IWL_DEBUG_ISR(trans, "ict vir addr %p\n", trans_pcie->ict_tbl); /* reset table and index to all 0 */ - memset(trans_pcie->ict_tbl_vir, 0, - (sizeof(u32) * ICT_COUNT) + PAGE_SIZE); + memset(trans_pcie->ict_tbl, 0, ICT_SIZE); trans_pcie->ict_index = 0; /* add periodic RX interrupt */ @@ -1213,23 +1205,20 @@ struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); - if (!trans_pcie->ict_tbl_vir) + if (!trans_pcie->ict_tbl) return 0; spin_lock_irqsave(&trans->shrd->lock, flags); iwl_disable_interrupts(trans); - memset(&trans_pcie->ict_tbl[0], 0, sizeof(u32) * ICT_COUNT); + memset(trans_pcie->ict_tbl, 0, ICT_SIZE); - val = trans_pcie->aligned_ict_tbl_dma >> PAGE_SHIFT; + val = trans_pcie->ict_tbl_dma >> ICT_SHIFT; val |= CSR_DRAM_INT_TBL_ENABLE; val |= CSR_DRAM_INIT_TBL_WRAP_CHECK; - IWL_DEBUG_ISR(trans, "CSR_DRAM_INT_TBL_REG =0x%X " - "aligned dma address %Lx\n", - val, - (unsigned long long)trans_pcie->aligned_ict_tbl_dma); + IWL_DEBUG_ISR(trans, "CSR_DRAM_INT_TBL_REG =0x%x\n", val); iwl_write32(bus(trans), CSR_DRAM_INT_TBL_REG, val); trans_pcie->use_ict = true; --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-2000.c +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-2000.c @@ -51,10 +51,10 @@ #define IWL135_UCODE_API_MAX 6 /* Oldest version we won't warn about */ -#define IWL2030_UCODE_API_OK 5 -#define IWL2000_UCODE_API_OK 5 -#define IWL105_UCODE_API_OK 5 -#define IWL135_UCODE_API_OK 5 +#define IWL2030_UCODE_API_OK 6 +#define IWL2000_UCODE_API_OK 6 +#define IWL105_UCODE_API_OK 6 +#define IWL135_UCODE_API_OK 6 /* Lowest firmware API version supported */ #define IWL2030_UCODE_API_MIN 5 @@ -372,7 +372,7 @@ .ht_params = &iwl2000_ht_params, }; -MODULE_FIRMWARE(IWL2000_MODULE_FIRMWARE(IWL2000_UCODE_API_MAX)); -MODULE_FIRMWARE(IWL2030_MODULE_FIRMWARE(IWL2030_UCODE_API_MAX)); -MODULE_FIRMWARE(IWL105_MODULE_FIRMWARE(IWL105_UCODE_API_MAX)); -MODULE_FIRMWARE(IWL135_MODULE_FIRMWARE(IWL135_UCODE_API_MAX)); +MODULE_FIRMWARE(IWL2000_MODULE_FIRMWARE(IWL2000_UCODE_API_OK)); +MODULE_FIRMWARE(IWL2030_MODULE_FIRMWARE(IWL2030_UCODE_API_OK)); +MODULE_FIRMWARE(IWL105_MODULE_FIRMWARE(IWL105_UCODE_API_OK)); +MODULE_FIRMWARE(IWL135_MODULE_FIRMWARE(IWL135_UCODE_API_OK)); --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-6000.c +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-6000.c @@ -46,12 +46,15 @@ #include "iwl-cfg.h" /* Highest firmware API version supported */ -#define IWL6000_UCODE_API_MAX 4 +#define IWL6000_UCODE_API_MAX 6 #define IWL6050_UCODE_API_MAX 5 #define IWL6000G2_UCODE_API_MAX 6 /* Oldest version we won't warn about */ +#define IWL6000_UCODE_API_OK 4 #define IWL6000G2_UCODE_API_OK 5 +#define IWL6050_UCODE_API_OK 5 +#define IWL6000G2B_UCODE_API_OK 6 /* Lowest firmware API version supported */ #define IWL6000_UCODE_API_MIN 4 @@ -399,7 +402,7 @@ #define IWL_DEVICE_6030 \ .fw_name_pre = IWL6030_FW_PRE, \ .ucode_api_max = IWL6000G2_UCODE_API_MAX, \ - .ucode_api_ok = IWL6000G2_UCODE_API_OK, \ + .ucode_api_ok = IWL6000G2B_UCODE_API_OK, \ .ucode_api_min = IWL6000G2_UCODE_API_MIN, \ .eeprom_ver = EEPROM_6030_EEPROM_VERSION, \ .eeprom_calib_ver = EEPROM_6030_TX_POWER_VERSION, \ @@ -479,6 +482,7 @@ #define IWL_DEVICE_6000i \ .fw_name_pre = IWL6000_FW_PRE, \ .ucode_api_max = IWL6000_UCODE_API_MAX, \ + .ucode_api_ok = IWL6000_UCODE_API_OK, \ .ucode_api_min = IWL6000_UCODE_API_MIN, \ .valid_tx_ant = ANT_BC, /* .cfg overwrite */ \ .valid_rx_ant = ANT_BC, /* .cfg overwrite */ \ @@ -559,6 +563,7 @@ .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN", .fw_name_pre = IWL6000_FW_PRE, .ucode_api_max = IWL6000_UCODE_API_MAX, + .ucode_api_ok = IWL6000_UCODE_API_OK, .ucode_api_min = IWL6000_UCODE_API_MIN, .eeprom_ver = EEPROM_6000_EEPROM_VERSION, .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, @@ -569,7 +574,7 @@ .led_mode = IWL_LED_BLINK, }; -MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); -MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX)); -MODULE_FIRMWARE(IWL6005_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); -MODULE_FIRMWARE(IWL6030_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); +MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_OK)); +MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_OK)); +MODULE_FIRMWARE(IWL6005_MODULE_FIRMWARE(IWL6000G2_UCODE_API_OK)); +MODULE_FIRMWARE(IWL6030_MODULE_FIRMWARE(IWL6000G2B_UCODE_API_OK)); --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-agn-lib.c +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-agn-lib.c @@ -827,6 +827,7 @@ case IEEE80211_SMPS_STATIC: case IEEE80211_SMPS_DYNAMIC: return IWL_NUM_IDLE_CHAINS_SINGLE; + case IEEE80211_SMPS_AUTOMATIC: case IEEE80211_SMPS_OFF: return active_cnt; default: --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-commands.h +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-commands.h @@ -809,7 +809,7 @@ #define IWLAGN_STATION_COUNT 16 #define IWL_INVALID_STATION 255 -#define IWL_MAX_TID_COUNT 9 +#define IWL_MAX_TID_COUNT 8 #define STA_FLG_TX_RATE_MSK cpu_to_le32(1 << 2) #define STA_FLG_PWR_SAVE_MSK cpu_to_le32(1 << 8) --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-prph.h +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-prph.h @@ -227,12 +227,33 @@ #define SCD_AIT (SCD_BASE + 0x0c) #define SCD_TXFACT (SCD_BASE + 0x10) #define SCD_ACTIVE (SCD_BASE + 0x14) -#define SCD_QUEUE_WRPTR(x) (SCD_BASE + 0x18 + (x) * 4) -#define SCD_QUEUE_RDPTR(x) (SCD_BASE + 0x68 + (x) * 4) #define SCD_QUEUECHAIN_SEL (SCD_BASE + 0xe8) #define SCD_AGGR_SEL (SCD_BASE + 0x248) #define SCD_INTERRUPT_MASK (SCD_BASE + 0x108) -#define SCD_QUEUE_STATUS_BITS(x) (SCD_BASE + 0x10c + (x) * 4) + +static inline unsigned int SCD_QUEUE_WRPTR(unsigned int chnl) +{ + if (chnl < 20) + return SCD_BASE + 0x18 + chnl * 4; + WARN_ON_ONCE(chnl >= 32); + return SCD_BASE + 0x284 + (chnl - 20) * 4; +} + +static inline unsigned int SCD_QUEUE_RDPTR(unsigned int chnl) +{ + if (chnl < 20) + return SCD_BASE + 0x68 + chnl * 4; + WARN_ON_ONCE(chnl >= 32); + return SCD_BASE + 0x2B4 + (chnl - 20) * 4; +} + +static inline unsigned int SCD_QUEUE_STATUS_BITS(unsigned int chnl) +{ + if (chnl < 20) + return SCD_BASE + 0x10c + chnl * 4; + WARN_ON_ONCE(chnl >= 32); + return SCD_BASE + 0x384 + (chnl - 20) * 4; +} /*********************** END TX SCHEDULER *************************************/ --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-agn-sta.c +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-agn-sta.c @@ -1211,6 +1211,7 @@ unsigned long flags; struct iwl_addsta_cmd sta_cmd; u8 sta_id = iwlagn_key_sta_id(priv, ctx->vif, sta); + __le16 key_flags; /* if station isn't there, neither is the key */ if (sta_id == IWL_INVALID_STATION) @@ -1236,7 +1237,14 @@ IWL_ERR(priv, "offset %d not used in uCode key table.\n", keyconf->hw_key_idx); - sta_cmd.key.key_flags = STA_KEY_FLG_NO_ENC | STA_KEY_FLG_INVALID; + key_flags = cpu_to_le16(keyconf->keyidx << STA_KEY_FLG_KEYID_POS); + key_flags |= STA_KEY_FLG_MAP_KEY_MSK | STA_KEY_FLG_NO_ENC | + STA_KEY_FLG_INVALID; + + if (!(keyconf->flags & IEEE80211_KEY_FLAG_PAIRWISE)) + key_flags |= STA_KEY_MULTICAST_MSK; + + sta_cmd.key.key_flags = key_flags; sta_cmd.key.key_offset = WEP_INVALID_OFFSET; sta_cmd.sta.modify_mask = STA_MODIFY_KEY_MASK; sta_cmd.mode = STA_CONTROL_MODIFY_MSK; --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-fh.h +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-fh.h @@ -104,15 +104,29 @@ * (see struct iwl_tfd_frame). These 16 pointer registers are offset by 0x04 * bytes from one another. Each TFD circular buffer in DRAM must be 256-byte * aligned (address bits 0-7 must be 0). + * Later devices have 20 (5000 series) or 30 (higher) queues, but the registers + * for them are in different places. * * Bit fields in each pointer register: * 27-0: TFD CB physical base address [35:8], must be 256-byte aligned */ -#define FH_MEM_CBBC_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0x9D0) -#define FH_MEM_CBBC_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0xA10) +#define FH_MEM_CBBC_0_15_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0x9D0) +#define FH_MEM_CBBC_0_15_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0xA10) +#define FH_MEM_CBBC_16_19_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0xBF0) +#define FH_MEM_CBBC_16_19_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0xC00) +#define FH_MEM_CBBC_20_31_LOWER_BOUND (FH_MEM_LOWER_BOUND + 0xB20) +#define FH_MEM_CBBC_20_31_UPPER_BOUND (FH_MEM_LOWER_BOUND + 0xB80) -/* Find TFD CB base pointer for given queue (range 0-15). */ -#define FH_MEM_CBBC_QUEUE(x) (FH_MEM_CBBC_LOWER_BOUND + (x) * 0x4) +/* Find TFD CB base pointer for given queue */ +static inline unsigned int FH_MEM_CBBC_QUEUE(unsigned int chnl) +{ + if (chnl < 16) + return FH_MEM_CBBC_0_15_LOWER_BOUND + 4 * chnl; + if (chnl < 20) + return FH_MEM_CBBC_16_19_LOWER_BOUND + 4 * (chnl - 16); + WARN_ON_ONCE(chnl >= 32); + return FH_MEM_CBBC_20_31_LOWER_BOUND + 4 * (chnl - 20); +} /** --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-core.c +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-core.c @@ -1228,6 +1228,7 @@ struct iwl_rxon_context *tmp, *ctx = NULL; int err; enum nl80211_iftype viftype = ieee80211_vif_type_p2p(vif); + bool reset = false; IWL_DEBUG_MAC80211(priv, "enter: type %d, addr %pM\n", viftype, vif->addr); @@ -1249,6 +1250,13 @@ tmp->interface_modes | tmp->exclusive_interface_modes; if (tmp->vif) { + /* On reset we need to add the same interface again */ + if (tmp->vif == vif) { + reset = true; + ctx = tmp; + break; + } + /* check if this busy context is exclusive */ if (tmp->exclusive_interface_modes & BIT(tmp->vif->type)) { @@ -1275,7 +1283,7 @@ ctx->vif = vif; err = iwl_setup_interface(priv, ctx); - if (!err) + if (!err || reset) goto out; ctx->vif = NULL; @@ -1787,20 +1795,10 @@ if (timeout == 0) return; - /* monitor and check for stuck cmd queue */ - if (iwl_check_stuck_queue(priv, priv->shrd->cmd_queue)) - return; - - /* monitor and check for other stuck queues */ - if (iwl_is_any_associated(priv)) { - for (cnt = 0; cnt < hw_params(priv).max_txq_num; cnt++) { - /* skip as we already checked the command queue */ - if (cnt == priv->shrd->cmd_queue) - continue; - if (iwl_check_stuck_queue(priv, cnt)) - return; - } - } + /* monitor and check for stuck queues */ + for (cnt = 0; cnt < hw_params(priv).max_txq_num; cnt++) + if (iwl_check_stuck_queue(priv, cnt)) + return; mod_timer(&priv->watchdog, jiffies + msecs_to_jiffies(IWL_WD_TICK(timeout))); --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-5000.c +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-5000.c @@ -50,6 +50,10 @@ #define IWL5000_UCODE_API_MAX 5 #define IWL5150_UCODE_API_MAX 2 +/* Oldest version we won't warn about */ +#define IWL5000_UCODE_API_OK 5 +#define IWL5150_UCODE_API_OK 2 + /* Lowest firmware API version supported */ #define IWL5000_UCODE_API_MIN 1 #define IWL5150_UCODE_API_MIN 1 @@ -373,6 +377,7 @@ #define IWL_DEVICE_5000 \ .fw_name_pre = IWL5000_FW_PRE, \ .ucode_api_max = IWL5000_UCODE_API_MAX, \ + .ucode_api_ok = IWL5000_UCODE_API_OK, \ .ucode_api_min = IWL5000_UCODE_API_MIN, \ .eeprom_ver = EEPROM_5000_EEPROM_VERSION, \ .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, \ @@ -416,6 +421,7 @@ .name = "Intel(R) WiMAX/WiFi Link 5350 AGN", .fw_name_pre = IWL5000_FW_PRE, .ucode_api_max = IWL5000_UCODE_API_MAX, + .ucode_api_ok = IWL5000_UCODE_API_OK, .ucode_api_min = IWL5000_UCODE_API_MIN, .eeprom_ver = EEPROM_5050_EEPROM_VERSION, .eeprom_calib_ver = EEPROM_5050_TX_POWER_VERSION, @@ -429,6 +435,7 @@ #define IWL_DEVICE_5150 \ .fw_name_pre = IWL5150_FW_PRE, \ .ucode_api_max = IWL5150_UCODE_API_MAX, \ + .ucode_api_ok = IWL5150_UCODE_API_OK, \ .ucode_api_min = IWL5150_UCODE_API_MIN, \ .eeprom_ver = EEPROM_5050_EEPROM_VERSION, \ .eeprom_calib_ver = EEPROM_5050_TX_POWER_VERSION, \ @@ -450,5 +457,5 @@ IWL_DEVICE_5150, }; -MODULE_FIRMWARE(IWL5000_MODULE_FIRMWARE(IWL5000_UCODE_API_MAX)); -MODULE_FIRMWARE(IWL5150_MODULE_FIRMWARE(IWL5150_UCODE_API_MAX)); +MODULE_FIRMWARE(IWL5000_MODULE_FIRMWARE(IWL5000_UCODE_API_OK)); +MODULE_FIRMWARE(IWL5150_MODULE_FIRMWARE(IWL5150_UCODE_API_OK)); --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-agn-rxon.c +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-agn-rxon.c @@ -559,6 +559,9 @@ mutex_lock(&priv->shrd->mutex); + if (test_bit(STATUS_EXIT_PENDING, &priv->shrd->status)) + goto out; + if (unlikely(test_bit(STATUS_SCANNING, &priv->shrd->status))) { IWL_DEBUG_MAC80211(priv, "leave - scanning\n"); goto out; --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-1000.c +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-1000.c @@ -45,8 +45,8 @@ #include "iwl-cfg.h" /* Highest firmware API version supported */ -#define IWL1000_UCODE_API_MAX 6 -#define IWL100_UCODE_API_MAX 6 +#define IWL1000_UCODE_API_MAX 5 +#define IWL100_UCODE_API_MAX 5 /* Oldest version we won't warn about */ #define IWL1000_UCODE_API_OK 5 @@ -244,5 +244,5 @@ IWL_DEVICE_100, }; -MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_MAX)); -MODULE_FIRMWARE(IWL100_MODULE_FIRMWARE(IWL100_UCODE_API_MAX)); +MODULE_FIRMWARE(IWL1000_MODULE_FIRMWARE(IWL1000_UCODE_API_OK)); +MODULE_FIRMWARE(IWL100_MODULE_FIRMWARE(IWL100_UCODE_API_OK)); --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-trans-pcie-int.h +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-trans-pcie-int.h @@ -219,9 +219,7 @@ /* INT ICT Table */ __le32 *ict_tbl; - void *ict_tbl_vir; dma_addr_t ict_tbl_dma; - dma_addr_t aligned_ict_tbl_dma; int ict_index; u32 inta; bool use_ict; --- linux-3.2.0.orig/drivers/net/wireless/iwlwifi/iwl-agn.c +++ linux-3.2.0/drivers/net/wireless/iwlwifi/iwl-agn.c @@ -1504,7 +1504,6 @@ static void iwlagn_prepare_restart(struct iwl_priv *priv) { - struct iwl_rxon_context *ctx; bool bt_full_concurrent; u8 bt_ci_compliance; u8 bt_load; @@ -1513,8 +1512,6 @@ lockdep_assert_held(&priv->shrd->mutex); - for_each_context(priv, ctx) - ctx->vif = NULL; priv->is_open = 0; /* --- linux-3.2.0.orig/drivers/net/wireless/ath/ath9k/hw.c +++ linux-3.2.0/drivers/net/wireless/ath/ath9k/hw.c @@ -1034,13 +1034,16 @@ /* * Workaround for early ACK timeouts, add an offset to match the - * initval's 64us ack timeout value. + * initval's 64us ack timeout value. Use 48us for the CTS timeout. * This was initially only meant to work around an issue with delayed * BA frames in some implementations, but it has been found to fix ACK * timeout issues in other cases as well. */ - if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ) + if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ) { acktimeout += 64 - sifstime - ah->slottime; + ctstimeout += 48 - sifstime - ah->slottime; + } + ath9k_hw_set_sifs_time(ah, sifstime); ath9k_hw_setslottime(ah, slottime); --- linux-3.2.0.orig/drivers/net/wireless/ath/ath9k/ar5008_phy.c +++ linux-3.2.0/drivers/net/wireless/ath/ath9k/ar5008_phy.c @@ -489,8 +489,6 @@ ATH_ALLOC_BANK(ah->analogBank6Data, ah->iniBank6.ia_rows); ATH_ALLOC_BANK(ah->analogBank6TPCData, ah->iniBank6TPC.ia_rows); ATH_ALLOC_BANK(ah->analogBank7Data, ah->iniBank7.ia_rows); - ATH_ALLOC_BANK(ah->addac5416_21, - ah->iniAddac.ia_rows * ah->iniAddac.ia_columns); ATH_ALLOC_BANK(ah->bank6Temp, ah->iniBank6.ia_rows); return 0; @@ -519,7 +517,6 @@ ATH_FREE_BANK(ah->analogBank6Data); ATH_FREE_BANK(ah->analogBank6TPCData); ATH_FREE_BANK(ah->analogBank7Data); - ATH_FREE_BANK(ah->addac5416_21); ATH_FREE_BANK(ah->bank6Temp); #undef ATH_FREE_BANK @@ -805,27 +802,7 @@ if (ah->eep_ops->set_addac) ah->eep_ops->set_addac(ah, chan); - if (AR_SREV_5416_22_OR_LATER(ah)) { - REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites); - } else { - struct ar5416IniArray temp; - u32 addacSize = - sizeof(u32) * ah->iniAddac.ia_rows * - ah->iniAddac.ia_columns; - - /* For AR5416 2.0/2.1 */ - memcpy(ah->addac5416_21, - ah->iniAddac.ia_array, addacSize); - - /* override CLKDRV value at [row, column] = [31, 1] */ - (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0; - - temp.ia_array = ah->addac5416_21; - temp.ia_columns = ah->iniAddac.ia_columns; - temp.ia_rows = ah->iniAddac.ia_rows; - REG_WRITE_ARRAY(&temp, 1, regWrites); - } - + REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites); REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC); ENABLE_REGWRITE_BUFFER(ah); --- linux-3.2.0.orig/drivers/net/wireless/ath/ath9k/mac.c +++ linux-3.2.0/drivers/net/wireless/ath/ath9k/mac.c @@ -621,10 +621,11 @@ rs->rs_status |= ATH9K_RXERR_DECRYPT; else if (ads.ds_rxstatus8 & AR_MichaelErr) rs->rs_status |= ATH9K_RXERR_MIC; - if (ads.ds_rxstatus8 & AR_KeyMiss) - rs->rs_status |= ATH9K_RXERR_KEYMISS; } + if (ads.ds_rxstatus8 & AR_KeyMiss) + rs->rs_status |= ATH9K_RXERR_KEYMISS; + return 0; } EXPORT_SYMBOL(ath9k_hw_rxprocdesc); --- linux-3.2.0.orig/drivers/net/wireless/ath/ath9k/init.c +++ linux-3.2.0/drivers/net/wireless/ath/ath9k/init.c @@ -775,6 +775,11 @@ ARRAY_SIZE(ath9k_tpt_blink)); #endif + INIT_WORK(&sc->hw_reset_work, ath_reset_work); + INIT_WORK(&sc->hw_check_work, ath_hw_check); + INIT_WORK(&sc->paprd_work, ath_paprd_calibrate); + INIT_DELAYED_WORK(&sc->hw_pll_work, ath_hw_pll_work); + /* Register with mac80211 */ error = ieee80211_register_hw(hw); if (error) @@ -793,10 +798,6 @@ goto error_world; } - INIT_WORK(&sc->hw_reset_work, ath_reset_work); - INIT_WORK(&sc->hw_check_work, ath_hw_check); - INIT_WORK(&sc->paprd_work, ath_paprd_calibrate); - INIT_DELAYED_WORK(&sc->hw_pll_work, ath_hw_pll_work); sc->last_rssi = ATH_RSSI_DUMMY_MARKER; ath_init_leds(sc); --- linux-3.2.0.orig/drivers/net/wireless/ath/ath9k/recv.c +++ linux-3.2.0/drivers/net/wireless/ath/ath9k/recv.c @@ -824,6 +824,14 @@ (ATH9K_RXERR_DECRYPT | ATH9K_RXERR_CRC | ATH9K_RXERR_MIC | ATH9K_RXERR_KEYMISS)); + /* + * Key miss events are only relevant for pairwise keys where the + * descriptor does contain a valid key index. This has been observed + * mostly with CCMP encryption. + */ + if (rx_stats->rs_keyix == ATH9K_RXKEYIX_INVALID) + rx_stats->rs_status &= ~ATH9K_RXERR_KEYMISS; + if (!rx_stats->rs_datalen) return false; /* --- linux-3.2.0.orig/drivers/net/wireless/ath/ath9k/ar9002_hw.c +++ linux-3.2.0/drivers/net/wireless/ath/ath9k/ar9002_hw.c @@ -180,6 +180,25 @@ INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac, ARRAY_SIZE(ar5416Addac), 2); } + + /* iniAddac needs to be modified for these chips */ + if (AR_SREV_9160(ah) || !AR_SREV_5416_22_OR_LATER(ah)) { + struct ar5416IniArray *addac = &ah->iniAddac; + u32 size = sizeof(u32) * addac->ia_rows * addac->ia_columns; + u32 *data; + + data = kmalloc(size, GFP_KERNEL); + if (!data) + return; + + memcpy(data, addac->ia_array, size); + addac->ia_array = data; + + if (!AR_SREV_5416_22_OR_LATER(ah)) { + /* override CLKDRV value */ + INI_RA(addac, 31,1) = 0; + } + } } /* Support for Japan ch.14 (2484) spread */ --- linux-3.2.0.orig/drivers/net/wireless/ath/ath9k/main.c +++ linux-3.2.0/drivers/net/wireless/ath/ath9k/main.c @@ -1667,7 +1667,6 @@ if (changed & IEEE80211_CONF_CHANGE_CHANNEL) { struct ieee80211_channel *curchan = hw->conf.channel; - struct ath9k_channel old_chan; int pos = curchan->hw_value; int old_pos = -1; unsigned long flags; @@ -1693,11 +1692,8 @@ * Preserve the current channel values, before updating * the same channel */ - if (old_pos == pos) { - memcpy(&old_chan, &sc->sc_ah->channels[pos], - sizeof(struct ath9k_channel)); - ah->curchan = &old_chan; - } + if (ah->curchan && (old_pos == pos)) + ath9k_hw_getnf(ah, ah->curchan); ath9k_cmn_update_ichannel(&sc->sc_ah->channels[pos], curchan, conf->channel_type); --- linux-3.2.0.orig/drivers/net/wireless/ath/ath9k/rc.c +++ linux-3.2.0/drivers/net/wireless/ath/ath9k/rc.c @@ -1347,7 +1347,7 @@ fc = hdr->frame_control; for (i = 0; i < sc->hw->max_rates; i++) { struct ieee80211_tx_rate *rate = &tx_info->status.rates[i]; - if (!rate->count) + if (rate->idx < 0 || !rate->count) break; final_ts_idx = i; --- linux-3.2.0.orig/drivers/net/wireless/ath/ath9k/calib.c +++ linux-3.2.0/drivers/net/wireless/ath/ath9k/calib.c @@ -20,7 +20,6 @@ /* Common calibration code */ -#define ATH9K_NF_TOO_HIGH -60 static int16_t ath9k_hw_get_nf_hist_mid(int16_t *nfCalBuffer) { @@ -348,10 +347,10 @@ "NF calibrated [%s] [chain %d] is %d\n", (i >= 3 ? "ext" : "ctl"), i % 3, nf[i]); - if (nf[i] > ATH9K_NF_TOO_HIGH) { + if (nf[i] > limit->max) { ath_dbg(common, ATH_DBG_CALIBRATE, "NF[%d] (%d) > MAX (%d), correcting to MAX\n", - i, nf[i], ATH9K_NF_TOO_HIGH); + i, nf[i], limit->max); nf[i] = limit->max; } else if (nf[i] < limit->min) { ath_dbg(common, ATH_DBG_CALIBRATE, @@ -402,6 +401,7 @@ ah->noise = ath9k_hw_getchan_noise(ah, chan); return true; } +EXPORT_SYMBOL(ath9k_hw_getnf); void ath9k_init_nfcal_hist_buffer(struct ath_hw *ah, struct ath9k_channel *chan) --- linux-3.2.0.orig/drivers/net/wireless/ath/ath9k/ar9003_mac.c +++ linux-3.2.0/drivers/net/wireless/ath/ath9k/ar9003_mac.c @@ -526,10 +526,11 @@ rxs->rs_status |= ATH9K_RXERR_DECRYPT; else if (rxsp->status11 & AR_MichaelErr) rxs->rs_status |= ATH9K_RXERR_MIC; - if (rxsp->status11 & AR_KeyMiss) - rxs->rs_status |= ATH9K_RXERR_KEYMISS; } + if (rxsp->status11 & AR_KeyMiss) + rxs->rs_status |= ATH9K_RXERR_KEYMISS; + return 0; } EXPORT_SYMBOL(ath9k_hw_process_rxdesc_edma); --- linux-3.2.0.orig/drivers/net/wireless/ath/ath9k/hw.h +++ linux-3.2.0/drivers/net/wireless/ath/ath9k/hw.h @@ -772,7 +772,6 @@ u32 *analogBank6Data; u32 *analogBank6TPCData; u32 *analogBank7Data; - u32 *addac5416_21; u32 *bank6Temp; u8 txpower_limit; --- linux-3.2.0.orig/drivers/net/wireless/ath/carl9170/tx.c +++ linux-3.2.0/drivers/net/wireless/ath/carl9170/tx.c @@ -1234,6 +1234,7 @@ { struct ieee80211_sta *sta; struct carl9170_sta_info *sta_info; + struct ieee80211_tx_info *tx_info; rcu_read_lock(); sta = __carl9170_get_tx_sta(ar, skb); @@ -1241,16 +1242,18 @@ goto out_rcu; sta_info = (void *) sta->drv_priv; - if (unlikely(sta_info->sleeping)) { - struct ieee80211_tx_info *tx_info; + tx_info = IEEE80211_SKB_CB(skb); + if (unlikely(sta_info->sleeping) && + !(tx_info->flags & (IEEE80211_TX_CTL_POLL_RESPONSE | + IEEE80211_TX_CTL_CLEAR_PS_FILT))) { rcu_read_unlock(); - tx_info = IEEE80211_SKB_CB(skb); if (tx_info->flags & IEEE80211_TX_CTL_AMPDU) atomic_dec(&ar->tx_ampdu_upload); tx_info->flags |= IEEE80211_TX_STAT_TX_FILTERED; + carl9170_release_dev_space(ar, skb); carl9170_tx_status(ar, skb, false); return true; } --- linux-3.2.0.orig/drivers/net/wireless/b43legacy/main.c +++ linux-3.2.0/drivers/net/wireless/b43legacy/main.c @@ -1564,8 +1564,6 @@ const char *filename; int err; - /* do dummy read */ - ssb_read32(dev->dev, SSB_TMSHIGH); if (!fw->ucode) { if (rev == 2) filename = "ucode2"; --- linux-3.2.0.orig/drivers/net/wireless/mwifiex/pcie.h +++ linux-3.2.0/drivers/net/wireless/mwifiex/pcie.h @@ -48,15 +48,15 @@ #define PCIE_HOST_INT_STATUS_MASK 0xC3C #define PCIE_SCRATCH_2_REG 0xC40 #define PCIE_SCRATCH_3_REG 0xC44 -#define PCIE_SCRATCH_4_REG 0xCC0 -#define PCIE_SCRATCH_5_REG 0xCC4 -#define PCIE_SCRATCH_6_REG 0xCC8 -#define PCIE_SCRATCH_7_REG 0xCCC -#define PCIE_SCRATCH_8_REG 0xCD0 -#define PCIE_SCRATCH_9_REG 0xCD4 -#define PCIE_SCRATCH_10_REG 0xCD8 -#define PCIE_SCRATCH_11_REG 0xCDC -#define PCIE_SCRATCH_12_REG 0xCE0 +#define PCIE_SCRATCH_4_REG 0xCD0 +#define PCIE_SCRATCH_5_REG 0xCD4 +#define PCIE_SCRATCH_6_REG 0xCD8 +#define PCIE_SCRATCH_7_REG 0xCDC +#define PCIE_SCRATCH_8_REG 0xCE0 +#define PCIE_SCRATCH_9_REG 0xCE4 +#define PCIE_SCRATCH_10_REG 0xCE8 +#define PCIE_SCRATCH_11_REG 0xCEC +#define PCIE_SCRATCH_12_REG 0xCF0 #define CPU_INTR_DNLD_RDY BIT(0) #define CPU_INTR_DOOR_BELL BIT(1) --- linux-3.2.0.orig/drivers/net/ethernet/jme.c +++ linux-3.2.0/drivers/net/ethernet/jme.c @@ -2328,19 +2328,11 @@ ((new_mtu) < IPV6_MIN_MTU)) return -EINVAL; - if (new_mtu > 4000) { - jme->reg_rxcs &= ~RXCS_FIFOTHNP; - jme->reg_rxcs |= RXCS_FIFOTHNP_64QW; - jme_restart_rx_engine(jme); - } else { - jme->reg_rxcs &= ~RXCS_FIFOTHNP; - jme->reg_rxcs |= RXCS_FIFOTHNP_128QW; - jme_restart_rx_engine(jme); - } netdev->mtu = new_mtu; netdev_update_features(netdev); + jme_restart_rx_engine(jme); jme_reset_link(jme); return 0; --- linux-3.2.0.orig/drivers/net/ethernet/fealnx.c +++ linux-3.2.0/drivers/net/ethernet/fealnx.c @@ -1818,9 +1818,9 @@ { struct netdev_private *np = netdev_priv(dev); - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); - strcpy(info->bus_info, pci_name(np->pci_dev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(np->pci_dev), sizeof(info->bus_info)); } static int netdev_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) --- linux-3.2.0.orig/drivers/net/ethernet/Kconfig +++ linux-3.2.0/drivers/net/ethernet/Kconfig @@ -28,6 +28,7 @@ source "drivers/net/ethernet/adi/Kconfig" source "drivers/net/ethernet/broadcom/Kconfig" source "drivers/net/ethernet/brocade/Kconfig" +source "drivers/net/ethernet/calxeda/Kconfig" source "drivers/net/ethernet/chelsio/Kconfig" source "drivers/net/ethernet/cirrus/Kconfig" source "drivers/net/ethernet/cisco/Kconfig" --- linux-3.2.0.orig/drivers/net/ethernet/dnet.c +++ linux-3.2.0/drivers/net/ethernet/dnet.c @@ -804,9 +804,9 @@ static void dnet_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) { - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); - strcpy(info->bus_info, "0"); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, "0", sizeof(info->bus_info)); } static const struct ethtool_ops dnet_ethtool_ops = { --- linux-3.2.0.orig/drivers/net/ethernet/jme.h +++ linux-3.2.0/drivers/net/ethernet/jme.h @@ -730,7 +730,7 @@ RXCS_RETRYCNT_60 = 0x00000F00, RXCS_DEFAULT = RXCS_FIFOTHTP_128T | - RXCS_FIFOTHNP_128QW | + RXCS_FIFOTHNP_16QW | RXCS_DMAREQSZ_128B | RXCS_RETRYGAP_256ns | RXCS_RETRYCNT_32, --- linux-3.2.0.orig/drivers/net/ethernet/Makefile +++ linux-3.2.0/drivers/net/ethernet/Makefile @@ -14,6 +14,7 @@ obj-$(CONFIG_NET_BFIN) += adi/ obj-$(CONFIG_NET_VENDOR_BROADCOM) += broadcom/ obj-$(CONFIG_NET_VENDOR_BROCADE) += brocade/ +obj-$(CONFIG_NET_CALXEDA_XGMAC) += calxeda/ obj-$(CONFIG_NET_VENDOR_CHELSIO) += chelsio/ obj-$(CONFIG_NET_VENDOR_CIRRUS) += cirrus/ obj-$(CONFIG_NET_VENDOR_CISCO) += cisco/ --- linux-3.2.0.orig/drivers/net/ethernet/xircom/xirc2ps_cs.c +++ linux-3.2.0/drivers/net/ethernet/xircom/xirc2ps_cs.c @@ -1411,7 +1411,7 @@ static void netdev_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) { - strcpy(info->driver, "xirc2ps_cs"); + strlcpy(info->driver, "xirc2ps_cs", sizeof(info->driver)); sprintf(info->bus_info, "PCMCIA 0x%lx", dev->base_addr); } --- linux-3.2.0.orig/drivers/net/ethernet/neterion/s2io.c +++ linux-3.2.0/drivers/net/ethernet/neterion/s2io.c @@ -5391,10 +5391,10 @@ { struct s2io_nic *sp = netdev_priv(dev); - strncpy(info->driver, s2io_driver_name, sizeof(info->driver)); - strncpy(info->version, s2io_driver_version, sizeof(info->version)); - strncpy(info->fw_version, "", sizeof(info->fw_version)); - strncpy(info->bus_info, pci_name(sp->pdev), sizeof(info->bus_info)); + strlcpy(info->driver, s2io_driver_name, sizeof(info->driver)); + strlcpy(info->version, s2io_driver_version, sizeof(info->version)); + strlcpy(info->fw_version, "", sizeof(info->fw_version)); + strlcpy(info->bus_info, pci_name(sp->pdev), sizeof(info->bus_info)); info->regdump_len = XENA_REG_SPACE; info->eedump_len = XENA_EEPROM_SPACE; } --- linux-3.2.0.orig/drivers/net/ethernet/nvidia/forcedeth.c +++ linux-3.2.0/drivers/net/ethernet/nvidia/forcedeth.c @@ -3918,9 +3918,9 @@ static void nv_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) { struct fe_priv *np = netdev_priv(dev); - strcpy(info->driver, DRV_NAME); - strcpy(info->version, FORCEDETH_VERSION); - strcpy(info->bus_info, pci_name(np->pci_dev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, FORCEDETH_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(np->pci_dev), sizeof(info->bus_info)); } static void nv_get_wol(struct net_device *dev, struct ethtool_wolinfo *wolinfo) --- linux-3.2.0.orig/drivers/net/ethernet/smsc/smsc9420.c +++ linux-3.2.0/drivers/net/ethernet/smsc/smsc9420.c @@ -279,9 +279,10 @@ { struct smsc9420_pdata *pd = netdev_priv(netdev); - strcpy(drvinfo->driver, DRV_NAME); - strcpy(drvinfo->bus_info, pci_name(pd->pdev)); - strcpy(drvinfo->version, DRV_VERSION); + strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver)); + strlcpy(drvinfo->bus_info, pci_name(pd->pdev), + sizeof(drvinfo->bus_info)); + strlcpy(drvinfo->version, DRV_VERSION, sizeof(drvinfo->version)); } static u32 smsc9420_ethtool_get_msglevel(struct net_device *netdev) --- linux-3.2.0.orig/drivers/net/ethernet/smsc/epic100.c +++ linux-3.2.0/drivers/net/ethernet/smsc/epic100.c @@ -1414,9 +1414,9 @@ { struct epic_private *np = netdev_priv(dev); - strcpy (info->driver, DRV_NAME); - strcpy (info->version, DRV_VERSION); - strcpy (info->bus_info, pci_name(np->pci_dev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(np->pci_dev), sizeof(info->bus_info)); } static int netdev_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) --- linux-3.2.0.orig/drivers/net/ethernet/smsc/smsc911x.c +++ linux-3.2.0/drivers/net/ethernet/smsc/smsc911x.c @@ -1089,10 +1089,8 @@ /* Quickly dumps bad packets */ static void -smsc911x_rx_fastforward(struct smsc911x_data *pdata, unsigned int pktbytes) +smsc911x_rx_fastforward(struct smsc911x_data *pdata, unsigned int pktwords) { - unsigned int pktwords = (pktbytes + NET_IP_ALIGN + 3) >> 2; - if (likely(pktwords >= 4)) { unsigned int timeout = 500; unsigned int val; @@ -1156,7 +1154,7 @@ continue; } - skb = netdev_alloc_skb(dev, pktlength + NET_IP_ALIGN); + skb = netdev_alloc_skb(dev, pktwords << 2); if (unlikely(!skb)) { SMSC_WARN(pdata, rx_err, "Unable to allocate skb for rx packet"); @@ -1166,14 +1164,12 @@ break; } - skb->data = skb->head; - skb_reset_tail_pointer(skb); + pdata->ops->rx_readfifo(pdata, + (unsigned int *)skb->data, pktwords); /* Align IP on 16B boundary */ skb_reserve(skb, NET_IP_ALIGN); skb_put(skb, pktlength - 4); - pdata->ops->rx_readfifo(pdata, - (unsigned int *)skb->head, pktwords); skb->protocol = eth_type_trans(skb, dev); skb_checksum_none_assert(skb); netif_receive_skb(skb); @@ -1396,7 +1392,7 @@ smsc911x_reg_write(pdata, FIFO_INT, temp); /* set RX Data offset to 2 bytes for alignment */ - smsc911x_reg_write(pdata, RX_CFG, (2 << 8)); + smsc911x_reg_write(pdata, RX_CFG, (NET_IP_ALIGN << 8)); /* enable NAPI polling before enabling RX interrupts */ napi_enable(&pdata->napi); --- linux-3.2.0.orig/drivers/net/ethernet/emulex/benet/be.h +++ linux-3.2.0/drivers/net/ethernet/emulex/benet/be.h @@ -40,6 +40,7 @@ #define OC_NAME "Emulex OneConnect 10Gbps NIC" #define OC_NAME_BE OC_NAME "(be3)" #define OC_NAME_LANCER OC_NAME "(Lancer)" +#define OC_NAME_SH OC_NAME "(Skyhawk)" #define DRV_DESC "ServerEngines BladeEngine 10Gbps NIC Driver" #define BE_VENDOR_ID 0x19a2 @@ -50,6 +51,7 @@ #define OC_DEVICE_ID2 0x710 /* Device Id for BE3 cards */ #define OC_DEVICE_ID3 0xe220 /* Device id for Lancer cards */ #define OC_DEVICE_ID4 0xe228 /* Device id for VF in Lancer */ +#define OC_DEVICE_ID5 0x720 /* Device Id for Skyhawk cards */ static inline char *nic_name(struct pci_dev *pdev) { @@ -63,6 +65,8 @@ return OC_NAME_LANCER; case BE_DEVICE_ID2: return BE3_NAME; + case OC_DEVICE_ID5: + return OC_NAME_SH; default: return BE_NAME; } @@ -288,14 +292,14 @@ }; struct be_vf_cfg { - unsigned char vf_mac_addr[ETH_ALEN]; - u32 vf_if_handle; - u32 vf_pmac_id; - u16 vf_vlan_tag; - u32 vf_tx_rate; + unsigned char mac_addr[ETH_ALEN]; + int if_handle; + int pmac_id; + u16 vlan_tag; + u32 tx_rate; }; -#define BE_INVALID_PMAC_ID 0xffffffff +#define BE_FLAGS_LINK_STATUS_INIT 1 struct be_adapter { struct pci_dev *pdev; @@ -345,13 +349,16 @@ struct delayed_work work; u16 work_counter; + u32 flags; /* Ethtool knobs and info */ char fw_ver[FW_VER_LEN]; - u32 if_handle; /* Used to configure filtering */ + int if_handle; /* Used to configure filtering */ u32 pmac_id; /* MAC addr handle used by BE card */ u32 beacon_state; /* for set_phys_id */ bool eeh_err; + bool ue_detected; + bool fw_timeout; u32 port_num; bool promiscuous; bool wol; @@ -359,7 +366,6 @@ u32 function_caps; u32 rx_fc; /* Rx flow control */ u32 tx_fc; /* Tx flow control */ - bool ue_detected; bool stats_cmd_sent; int link_speed; u8 port_type; @@ -369,16 +375,20 @@ u32 flash_status; struct completion flash_compl; - bool be3_native; - bool sriov_enabled; - struct be_vf_cfg *vf_cfg; + u32 num_vfs; u8 is_virtfn; + struct be_vf_cfg *vf_cfg; + bool be3_native; u32 sli_family; u8 hba_port_num; u16 pvid; }; #define be_physfn(adapter) (!adapter->is_virtfn) +#define sriov_enabled(adapter) (adapter->num_vfs > 0) +#define for_all_vfs(adapter, vf_cfg, i) \ + for (i = 0, vf_cfg = &adapter->vf_cfg[i]; i < adapter->num_vfs; \ + i++, vf_cfg++) /* BladeEngine Generation numbers */ #define BE_GEN2 2 @@ -524,9 +534,14 @@ return adapter->num_rx_qs > 1; } +static inline bool be_error(struct be_adapter *adapter) +{ + return adapter->eeh_err || adapter->ue_detected || adapter->fw_timeout; +} + extern void be_cq_notify(struct be_adapter *adapter, u16 qid, bool arm, u16 num_popped); -extern void be_link_status_update(struct be_adapter *adapter, u32 link_status); +extern void be_link_status_update(struct be_adapter *adapter, u8 link_status); extern void be_parse_stats(struct be_adapter *adapter); extern int be_load_fw(struct be_adapter *adapter, u8 *func); #endif /* BE_H */ --- linux-3.2.0.orig/drivers/net/ethernet/emulex/benet/be_main.c +++ linux-3.2.0/drivers/net/ethernet/emulex/benet/be_main.c @@ -27,13 +27,14 @@ MODULE_AUTHOR("ServerEngines Corporation"); MODULE_LICENSE("GPL"); -static ushort rx_frag_size = 2048; static unsigned int num_vfs; -module_param(rx_frag_size, ushort, S_IRUGO); module_param(num_vfs, uint, S_IRUGO); -MODULE_PARM_DESC(rx_frag_size, "Size of a fragment that holds rcvd data."); MODULE_PARM_DESC(num_vfs, "Number of PCI VFs to initialize"); +static ushort rx_frag_size = 2048; +module_param(rx_frag_size, ushort, S_IRUGO); +MODULE_PARM_DESC(rx_frag_size, "Size of a fragment that holds rcvd data."); + static DEFINE_PCI_DEVICE_TABLE(be_dev_ids) = { { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID1) }, { PCI_DEVICE(BE_VENDOR_ID, BE_DEVICE_ID2) }, @@ -41,6 +42,7 @@ { PCI_DEVICE(BE_VENDOR_ID, OC_DEVICE_ID2) }, { PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID3)}, { PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID4)}, + { PCI_DEVICE(EMULEX_VENDOR_ID, OC_DEVICE_ID5)}, { 0 } }; MODULE_DEVICE_TABLE(pci, be_dev_ids); @@ -237,7 +239,8 @@ return -EADDRNOTAVAIL; status = be_cmd_mac_addr_query(adapter, current_mac, - MAC_ADDRESS_TYPE_NETWORK, false, adapter->if_handle); + MAC_ADDRESS_TYPE_NETWORK, false, + adapter->if_handle, 0); if (status) goto err; @@ -315,6 +318,8 @@ struct be_drv_stats *drvs = &adapter->drv_stats; be_dws_le_to_cpu(hw_stats, sizeof(*hw_stats)); + drvs->pmem_fifo_overflow_drop = port_stats->pmem_fifo_overflow_drop; + drvs->rx_priority_pause_frames = port_stats->rx_priority_pause_frames; drvs->rx_pause_frames = port_stats->rx_pause_frames; drvs->rx_crc_errors = port_stats->rx_crc_errors; drvs->rx_control_frames = port_stats->rx_control_frames; @@ -491,19 +496,19 @@ return stats; } -void be_link_status_update(struct be_adapter *adapter, u32 link_status) +void be_link_status_update(struct be_adapter *adapter, u8 link_status) { struct net_device *netdev = adapter->netdev; - /* when link status changes, link speed must be re-queried from card */ - adapter->link_speed = -1; - if ((link_status & LINK_STATUS_MASK) == LINK_UP) { - netif_carrier_on(netdev); - dev_info(&adapter->pdev->dev, "%s: Link up\n", netdev->name); - } else { + if (!(adapter->flags & BE_FLAGS_LINK_STATUS_INIT)) { netif_carrier_off(netdev); - dev_info(&adapter->pdev->dev, "%s: Link down\n", netdev->name); + adapter->flags |= BE_FLAGS_LINK_STATUS_INIT; } + + if ((link_status & LINK_STATUS_MASK) == LINK_UP) + netif_carrier_on(netdev); + else + netif_carrier_off(netdev); } static void be_tx_stats_update(struct be_tx_obj *txo, @@ -549,11 +554,26 @@ wrb->frag_len = len & ETH_WRB_FRAG_LEN_MASK; } +static inline u16 be_get_tx_vlan_tag(struct be_adapter *adapter, + struct sk_buff *skb) +{ + u8 vlan_prio; + u16 vlan_tag; + + vlan_tag = vlan_tx_tag_get(skb); + vlan_prio = (vlan_tag & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT; + /* If vlan priority provided by OS is NOT in available bmap */ + if (!(adapter->vlan_prio_bmap & (1 << vlan_prio))) + vlan_tag = (vlan_tag & ~VLAN_PRIO_MASK) | + adapter->recommended_prio; + + return vlan_tag; +} + static void wrb_fill_hdr(struct be_adapter *adapter, struct be_eth_hdr_wrb *hdr, struct sk_buff *skb, u32 wrb_cnt, u32 len) { - u8 vlan_prio = 0; - u16 vlan_tag = 0; + u16 vlan_tag; memset(hdr, 0, sizeof(*hdr)); @@ -584,12 +604,7 @@ if (vlan_tx_tag_present(skb)) { AMAP_SET_BITS(struct amap_eth_hdr_wrb, vlan, hdr, 1); - vlan_tag = vlan_tx_tag_get(skb); - vlan_prio = (vlan_tag & VLAN_PRIO_MASK) >> VLAN_PRIO_SHIFT; - /* If vlan priority provided by OS is NOT in available bmap */ - if (!(adapter->vlan_prio_bmap & (1 << vlan_prio))) - vlan_tag = (vlan_tag & ~VLAN_PRIO_MASK) | - adapter->recommended_prio; + vlan_tag = be_get_tx_vlan_tag(adapter, skb); AMAP_SET_BITS(struct amap_eth_hdr_wrb, vlan_tag, hdr, vlan_tag); } @@ -692,6 +707,25 @@ u32 start = txq->head; bool dummy_wrb, stopped = false; + /* For vlan tagged pkts, BE + * 1) calculates checksum even when CSO is not requested + * 2) calculates checksum wrongly for padded pkt less than + * 60 bytes long. + * As a workaround disable TX vlan offloading in such cases. + */ + if (unlikely(vlan_tx_tag_present(skb) && + (skb->ip_summed != CHECKSUM_PARTIAL || skb->len <= 60))) { + skb = skb_share_check(skb, GFP_ATOMIC); + if (unlikely(!skb)) + goto tx_drop; + + skb = __vlan_put_tag(skb, be_get_tx_vlan_tag(adapter, skb)); + if (unlikely(!skb)) + goto tx_drop; + + skb->vlan_tci = 0; + } + wrb_cnt = wrb_cnt_for_skb(adapter, skb, &dummy_wrb); copied = make_tx_wrbs(adapter, txq, skb, wrb_cnt, dummy_wrb); @@ -719,6 +753,7 @@ txq->head = start; dev_kfree_skb_any(skb); } +tx_drop: return NETDEV_TX_OK; } @@ -746,15 +781,15 @@ */ static int be_vid_config(struct be_adapter *adapter, bool vf, u32 vf_num) { + struct be_vf_cfg *vf_cfg = &adapter->vf_cfg[vf_num]; u16 vtag[BE_NUM_VLANS_SUPPORTED]; u16 ntags = 0, i; int status = 0; - u32 if_handle; if (vf) { - if_handle = adapter->vf_cfg[vf_num].vf_if_handle; - vtag[0] = cpu_to_le16(adapter->vf_cfg[vf_num].vf_vlan_tag); - status = be_cmd_vlan_config(adapter, if_handle, vtag, 1, 1, 0); + vtag[0] = cpu_to_le16(vf_cfg->vlan_tag); + status = be_cmd_vlan_config(adapter, vf_cfg->if_handle, vtag, + 1, 1, 0); } /* No need to further configure vids if in promiscuous mode */ @@ -840,28 +875,30 @@ static int be_set_vf_mac(struct net_device *netdev, int vf, u8 *mac) { struct be_adapter *adapter = netdev_priv(netdev); + struct be_vf_cfg *vf_cfg = &adapter->vf_cfg[vf]; int status; - if (!adapter->sriov_enabled) + if (!sriov_enabled(adapter)) return -EPERM; - if (!is_valid_ether_addr(mac) || (vf >= num_vfs)) + if (!is_valid_ether_addr(mac) || vf >= adapter->num_vfs) return -EINVAL; - if (adapter->vf_cfg[vf].vf_pmac_id != BE_INVALID_PMAC_ID) - status = be_cmd_pmac_del(adapter, - adapter->vf_cfg[vf].vf_if_handle, - adapter->vf_cfg[vf].vf_pmac_id, vf + 1); - - status = be_cmd_pmac_add(adapter, mac, - adapter->vf_cfg[vf].vf_if_handle, - &adapter->vf_cfg[vf].vf_pmac_id, vf + 1); + if (lancer_chip(adapter)) { + status = be_cmd_set_mac_list(adapter, mac, 1, vf + 1); + } else { + status = be_cmd_pmac_del(adapter, vf_cfg->if_handle, + vf_cfg->pmac_id, vf + 1); + + status = be_cmd_pmac_add(adapter, mac, vf_cfg->if_handle, + &vf_cfg->pmac_id, vf + 1); + } if (status) dev_err(&adapter->pdev->dev, "MAC %pM set on VF %d Failed\n", mac, vf); else - memcpy(adapter->vf_cfg[vf].vf_mac_addr, mac, ETH_ALEN); + memcpy(vf_cfg->mac_addr, mac, ETH_ALEN); return status; } @@ -870,18 +907,19 @@ struct ifla_vf_info *vi) { struct be_adapter *adapter = netdev_priv(netdev); + struct be_vf_cfg *vf_cfg = &adapter->vf_cfg[vf]; - if (!adapter->sriov_enabled) + if (!sriov_enabled(adapter)) return -EPERM; - if (vf >= num_vfs) + if (vf >= adapter->num_vfs) return -EINVAL; vi->vf = vf; - vi->tx_rate = adapter->vf_cfg[vf].vf_tx_rate; - vi->vlan = adapter->vf_cfg[vf].vf_vlan_tag; + vi->tx_rate = vf_cfg->tx_rate; + vi->vlan = vf_cfg->vlan_tag; vi->qos = 0; - memcpy(&vi->mac, adapter->vf_cfg[vf].vf_mac_addr, ETH_ALEN); + memcpy(&vi->mac, vf_cfg->mac_addr, ETH_ALEN); return 0; } @@ -892,17 +930,17 @@ struct be_adapter *adapter = netdev_priv(netdev); int status = 0; - if (!adapter->sriov_enabled) + if (!sriov_enabled(adapter)) return -EPERM; - if ((vf >= num_vfs) || (vlan > 4095)) + if (vf >= adapter->num_vfs || vlan > 4095) return -EINVAL; if (vlan) { - adapter->vf_cfg[vf].vf_vlan_tag = vlan; + adapter->vf_cfg[vf].vlan_tag = vlan; adapter->vlans_added++; } else { - adapter->vf_cfg[vf].vf_vlan_tag = 0; + adapter->vf_cfg[vf].vlan_tag = 0; adapter->vlans_added--; } @@ -920,21 +958,25 @@ struct be_adapter *adapter = netdev_priv(netdev); int status = 0; - if (!adapter->sriov_enabled) + if (!sriov_enabled(adapter)) return -EPERM; - if ((vf >= num_vfs) || (rate < 0)) + if (vf >= adapter->num_vfs) return -EINVAL; - if (rate > 10000) - rate = 10000; + if (rate < 100 || rate > 10000) { + dev_err(&adapter->pdev->dev, + "tx rate must be between 100 and 10000 Mbps\n"); + return -EINVAL; + } - adapter->vf_cfg[vf].vf_tx_rate = rate; status = be_cmd_set_qos(adapter, rate / 10, vf + 1); if (status) - dev_info(&adapter->pdev->dev, + dev_err(&adapter->pdev->dev, "tx rate %d on VF %d failed\n", rate, vf); + else + adapter->vf_cfg[vf].tx_rate = rate; return status; } @@ -1645,8 +1687,7 @@ static int be_num_txqs_want(struct be_adapter *adapter) { - if ((num_vfs && adapter->sriov_enabled) || - be_is_mc(adapter) || + if (sriov_enabled(adapter) || be_is_mc(adapter) || lancer_chip(adapter) || !be_physfn(adapter) || adapter->generation == BE_GEN2) return 1; @@ -1662,9 +1703,12 @@ u8 i; adapter->num_tx_qs = be_num_txqs_want(adapter); - if (adapter->num_tx_qs != MAX_TX_QS) + if (adapter->num_tx_qs != MAX_TX_QS) { + rtnl_lock(); netif_set_real_num_tx_queues(adapter->netdev, adapter->num_tx_qs); + rtnl_unlock(); + } adapter->tx_eq.max_eqd = 0; adapter->tx_eq.min_eqd = 0; @@ -1693,9 +1737,6 @@ if (be_queue_alloc(adapter, q, TX_Q_LEN, sizeof(struct be_eth_wrb))) goto err; - - if (be_cmd_txq_create(adapter, q, cq)) - goto err; } return 0; @@ -1728,8 +1769,7 @@ static u32 be_num_rxqs_want(struct be_adapter *adapter) { if ((adapter->function_caps & BE_FUNCTION_CAPS_RSS) && - !adapter->sriov_enabled && be_physfn(adapter) && - !be_is_mc(adapter)) { + !sriov_enabled(adapter) && be_physfn(adapter)) { return 1 + MAX_RSS_QS; /* one default non-RSS queue */ } else { dev_warn(&adapter->pdev->dev, @@ -1929,6 +1969,7 @@ struct be_eq_obj *tx_eq = container_of(napi, struct be_eq_obj, napi); struct be_adapter *adapter = container_of(tx_eq, struct be_adapter, tx_eq); + struct be_mcc_obj *mcc_obj = &adapter->mcc_obj; struct be_tx_obj *txo; struct be_eth_tx_compl *txcp; int tx_compl, mcc_compl, status = 0; @@ -1965,12 +2006,19 @@ mcc_compl = be_process_mcc(adapter, &status); if (mcc_compl) { - struct be_mcc_obj *mcc_obj = &adapter->mcc_obj; be_cq_notify(adapter, mcc_obj->cq.id, true, mcc_compl); } napi_complete(napi); + /* Arm CQ again to regenerate EQEs for Lancer in INTx mode */ + if (lancer_chip(adapter) && !msix_enabled(adapter)) { + for_all_tx_queues(adapter, txo, i) + be_cq_notify(adapter, txo->cq.id, true, 0); + + be_cq_notify(adapter, mcc_obj->cq.id, true, 0); + } + be_eq_notify(adapter, tx_eq->q.id, true, false, 0); adapter->drv_stats.tx_events++; return 1; @@ -1982,6 +2030,9 @@ u32 sliport_status = 0, sliport_err1 = 0, sliport_err2 = 0; u32 i; + if (adapter->eeh_err || adapter->ue_detected) + return; + if (lancer_chip(adapter)) { sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET); if (sliport_status & SLIPORT_STATUS_ERR_MASK) { @@ -2008,7 +2059,8 @@ sliport_status & SLIPORT_STATUS_ERR_MASK) { adapter->ue_detected = true; adapter->eeh_err = true; - dev_err(&adapter->pdev->dev, "UE Detected!!\n"); + dev_err(&adapter->pdev->dev, + "Unrecoverable error in the card\n"); } if (ue_lo) { @@ -2036,53 +2088,6 @@ } } -static void be_worker(struct work_struct *work) -{ - struct be_adapter *adapter = - container_of(work, struct be_adapter, work.work); - struct be_rx_obj *rxo; - int i; - - if (!adapter->ue_detected) - be_detect_dump_ue(adapter); - - /* when interrupts are not yet enabled, just reap any pending - * mcc completions */ - if (!netif_running(adapter->netdev)) { - int mcc_compl, status = 0; - - mcc_compl = be_process_mcc(adapter, &status); - - if (mcc_compl) { - struct be_mcc_obj *mcc_obj = &adapter->mcc_obj; - be_cq_notify(adapter, mcc_obj->cq.id, false, mcc_compl); - } - - goto reschedule; - } - - if (!adapter->stats_cmd_sent) { - if (lancer_chip(adapter)) - lancer_cmd_get_pport_stats(adapter, - &adapter->stats_cmd); - else - be_cmd_get_stats(adapter, &adapter->stats_cmd); - } - - for_all_rx_queues(adapter, rxo, i) { - be_rx_eqd_update(adapter, rxo); - - if (rxo->rx_post_starved) { - rxo->rx_post_starved = false; - be_post_rx_frags(rxo, GFP_KERNEL); - } - } - -reschedule: - adapter->work_counter++; - schedule_delayed_work(&adapter->work, msecs_to_jiffies(1000)); -} - static void be_msix_disable(struct be_adapter *adapter) { if (msix_enabled(adapter)) { @@ -2119,27 +2124,28 @@ static int be_sriov_enable(struct be_adapter *adapter) { be_check_sriov_fn_type(adapter); + #ifdef CONFIG_PCI_IOV if (be_physfn(adapter) && num_vfs) { int status, pos; - u16 nvfs; + u16 dev_vfs; pos = pci_find_ext_capability(adapter->pdev, PCI_EXT_CAP_ID_SRIOV); pci_read_config_word(adapter->pdev, - pos + PCI_SRIOV_TOTAL_VF, &nvfs); + pos + PCI_SRIOV_TOTAL_VF, &dev_vfs); - if (num_vfs > nvfs) { + adapter->num_vfs = min_t(u16, num_vfs, dev_vfs); + if (adapter->num_vfs != num_vfs) dev_info(&adapter->pdev->dev, - "Device supports %d VFs and not %d\n", - nvfs, num_vfs); - num_vfs = nvfs; - } + "Device supports %d VFs and not %d\n", + adapter->num_vfs, num_vfs); - status = pci_enable_sriov(adapter->pdev, num_vfs); - adapter->sriov_enabled = status ? false : true; + status = pci_enable_sriov(adapter->pdev, adapter->num_vfs); + if (status) + adapter->num_vfs = 0; - if (adapter->sriov_enabled) { + if (adapter->num_vfs) { adapter->vf_cfg = kcalloc(num_vfs, sizeof(struct be_vf_cfg), GFP_KERNEL); @@ -2154,10 +2160,10 @@ static void be_sriov_disable(struct be_adapter *adapter) { #ifdef CONFIG_PCI_IOV - if (adapter->sriov_enabled) { + if (sriov_enabled(adapter)) { pci_disable_sriov(adapter->pdev); kfree(adapter->vf_cfg); - adapter->sriov_enabled = false; + adapter->num_vfs = 0; } #endif } @@ -2351,8 +2357,8 @@ static int be_rx_queues_setup(struct be_adapter *adapter) { struct be_rx_obj *rxo; - int rc, i; - u8 rsstable[MAX_RSS_QS]; + int rc, i, j; + u8 rsstable[128]; for_all_rx_queues(adapter, rxo, i) { rc = be_cmd_rxq_create(adapter, &rxo->q, rxo->cq.id, @@ -2364,11 +2370,15 @@ } if (be_multi_rxq(adapter)) { - for_all_rss_queues(adapter, rxo, i) - rsstable[i] = rxo->rss_id; + for (j = 0; j < 128; j += adapter->num_rx_qs - 1) { + for_all_rss_queues(adapter, rxo, i) { + if ((j + i) >= 128) + break; + rsstable[j + i] = rxo->rss_id; + } + } + rc = be_cmd_rss_config(adapter, rsstable, 128); - rc = be_cmd_rss_config(adapter, rsstable, - adapter->num_rx_qs - 1); if (rc) return rc; } @@ -2386,6 +2396,7 @@ struct be_adapter *adapter = netdev_priv(netdev); struct be_eq_obj *tx_eq = &adapter->tx_eq; struct be_rx_obj *rxo; + u8 link_status; int status, i; status = be_rx_queues_setup(adapter); @@ -2409,6 +2420,11 @@ /* Now that interrupts are on we can process async mcc */ be_async_mcc_enable(adapter); + status = be_cmd_link_status_query(adapter, NULL, NULL, + &link_status, 0); + if (!status) + be_link_status_update(adapter, link_status); + return 0; err: be_close(adapter->netdev); @@ -2465,19 +2481,24 @@ u32 vf; int status = 0; u8 mac[ETH_ALEN]; + struct be_vf_cfg *vf_cfg; be_vf_eth_addr_generate(adapter, mac); - for (vf = 0; vf < num_vfs; vf++) { - status = be_cmd_pmac_add(adapter, mac, - adapter->vf_cfg[vf].vf_if_handle, - &adapter->vf_cfg[vf].vf_pmac_id, - vf + 1); + for_all_vfs(adapter, vf_cfg, vf) { + if (lancer_chip(adapter)) { + status = be_cmd_set_mac_list(adapter, mac, 1, vf + 1); + } else { + status = be_cmd_pmac_add(adapter, mac, + vf_cfg->if_handle, + &vf_cfg->pmac_id, vf + 1); + } + if (status) dev_err(&adapter->pdev->dev, - "Mac address add failed for VF %d\n", vf); + "Mac address assignment failed for VF %d\n", vf); else - memcpy(adapter->vf_cfg[vf].vf_mac_addr, mac, ETH_ALEN); + memcpy(vf_cfg->mac_addr, mac, ETH_ALEN); mac[5] += 1; } @@ -2486,24 +2507,23 @@ static void be_vf_clear(struct be_adapter *adapter) { + struct be_vf_cfg *vf_cfg; u32 vf; - for (vf = 0; vf < num_vfs; vf++) { - if (adapter->vf_cfg[vf].vf_pmac_id != BE_INVALID_PMAC_ID) - be_cmd_pmac_del(adapter, - adapter->vf_cfg[vf].vf_if_handle, - adapter->vf_cfg[vf].vf_pmac_id, vf + 1); - } + for_all_vfs(adapter, vf_cfg, vf) { + if (lancer_chip(adapter)) + be_cmd_set_mac_list(adapter, NULL, 0, vf + 1); + else + be_cmd_pmac_del(adapter, vf_cfg->if_handle, + vf_cfg->pmac_id, vf + 1); - for (vf = 0; vf < num_vfs; vf++) - if (adapter->vf_cfg[vf].vf_if_handle) - be_cmd_if_destroy(adapter, - adapter->vf_cfg[vf].vf_if_handle, vf + 1); + be_cmd_if_destroy(adapter, vf_cfg->if_handle, vf + 1); + } } static int be_clear(struct be_adapter *adapter) { - if (be_physfn(adapter) && adapter->sriov_enabled) + if (sriov_enabled(adapter)) be_vf_clear(adapter); be_cmd_if_destroy(adapter, adapter->if_handle, 0); @@ -2511,61 +2531,94 @@ be_mcc_queues_destroy(adapter); be_rx_queues_destroy(adapter); be_tx_queues_destroy(adapter); - adapter->eq_next_idx = 0; - - adapter->be3_native = false; - adapter->promiscuous = false; /* tell fw we're done with firing cmds */ be_cmd_fw_clean(adapter); return 0; } +static void be_vf_setup_init(struct be_adapter *adapter) +{ + struct be_vf_cfg *vf_cfg; + int vf; + + for_all_vfs(adapter, vf_cfg, vf) { + vf_cfg->if_handle = -1; + vf_cfg->pmac_id = -1; + } +} + static int be_vf_setup(struct be_adapter *adapter) { + struct be_vf_cfg *vf_cfg; u32 cap_flags, en_flags, vf; u16 lnk_speed; int status; - cap_flags = en_flags = BE_IF_FLAGS_UNTAGGED | BE_IF_FLAGS_BROADCAST; - for (vf = 0; vf < num_vfs; vf++) { + be_vf_setup_init(adapter); + + cap_flags = en_flags = BE_IF_FLAGS_UNTAGGED | BE_IF_FLAGS_BROADCAST | + BE_IF_FLAGS_MULTICAST; + for_all_vfs(adapter, vf_cfg, vf) { status = be_cmd_if_create(adapter, cap_flags, en_flags, NULL, - &adapter->vf_cfg[vf].vf_if_handle, - NULL, vf+1); + &vf_cfg->if_handle, NULL, vf + 1); if (status) goto err; - adapter->vf_cfg[vf].vf_pmac_id = BE_INVALID_PMAC_ID; } - if (!lancer_chip(adapter)) { - status = be_vf_eth_addr_config(adapter); - if (status) - goto err; - } + status = be_vf_eth_addr_config(adapter); + if (status) + goto err; - for (vf = 0; vf < num_vfs; vf++) { + for_all_vfs(adapter, vf_cfg, vf) { status = be_cmd_link_status_query(adapter, NULL, &lnk_speed, - vf + 1); + NULL, vf + 1); if (status) goto err; - adapter->vf_cfg[vf].vf_tx_rate = lnk_speed * 10; + vf_cfg->tx_rate = lnk_speed * 10; } return 0; err: return status; } +static void be_setup_init(struct be_adapter *adapter) +{ + adapter->vlan_prio_bmap = 0xff; + adapter->link_speed = -1; + adapter->if_handle = -1; + adapter->be3_native = false; + adapter->promiscuous = false; + adapter->eq_next_idx = 0; +} + +static int be_configure_mac_from_list(struct be_adapter *adapter, u8 *mac) +{ + u32 pmac_id; + int status = be_cmd_get_mac_from_list(adapter, 0, &pmac_id); + if (status != 0) + goto do_none; + status = be_cmd_mac_addr_query(adapter, mac, + MAC_ADDRESS_TYPE_NETWORK, + false, adapter->if_handle, pmac_id); + if (status != 0) + goto do_none; + status = be_cmd_pmac_add(adapter, mac, adapter->if_handle, + &adapter->pmac_id, 0); +do_none: + return status; +} + static int be_setup(struct be_adapter *adapter) { struct net_device *netdev = adapter->netdev; u32 cap_flags, en_flags; u32 tx_fc, rx_fc; - int status; + int status, i; u8 mac[ETH_ALEN]; + struct be_tx_obj *txo; - /* Allow all priorities by default. A GRP5 evt may modify this */ - adapter->vlan_prio_bmap = 0xff; - adapter->link_speed = -1; + be_setup_init(adapter); be_cmd_req_native_mode(adapter); @@ -2583,7 +2636,7 @@ memset(mac, 0, ETH_ALEN); status = be_cmd_mac_addr_query(adapter, mac, MAC_ADDRESS_TYPE_NETWORK, - true /*permanent */, 0); + true /*permanent */, 0, 0); if (status) return status; memcpy(adapter->netdev->dev_addr, mac, ETH_ALEN); @@ -2592,7 +2645,8 @@ en_flags = BE_IF_FLAGS_UNTAGGED | BE_IF_FLAGS_BROADCAST | BE_IF_FLAGS_MULTICAST | BE_IF_FLAGS_PASS_L3L4_ERRORS; cap_flags = en_flags | BE_IF_FLAGS_MCAST_PROMISCUOUS | - BE_IF_FLAGS_PROMISCUOUS; + BE_IF_FLAGS_VLAN_PROMISCUOUS | BE_IF_FLAGS_PROMISCUOUS; + if (adapter->function_caps & BE_FUNCTION_CAPS_RSS) { cap_flags |= BE_IF_FLAGS_RSS; en_flags |= BE_IF_FLAGS_RSS; @@ -2603,12 +2657,23 @@ if (status != 0) goto err; - /* For BEx, the VF's permanent mac queried from card is incorrect. - * Query the mac configued by the PF using if_handle - */ - if (!be_physfn(adapter) && !lancer_chip(adapter)) { - status = be_cmd_mac_addr_query(adapter, mac, - MAC_ADDRESS_TYPE_NETWORK, false, adapter->if_handle); + for_all_tx_queues(adapter, txo, i) { + status = be_cmd_txq_create(adapter, &txo->q, &txo->cq); + if (status) + goto err; + } + + /* The VF's permanent mac queried from card is incorrect. + * For BEx: Query the mac configued by the PF using if_handle + * For Lancer: Get and use mac_list to obtain mac address. + */ + if (!be_physfn(adapter)) { + if (lancer_chip(adapter)) + status = be_configure_mac_from_list(adapter, mac); + else + status = be_cmd_mac_addr_query(adapter, mac, + MAC_ADDRESS_TYPE_NETWORK, false, + adapter->if_handle, 0); if (!status) { memcpy(adapter->netdev->dev_addr, mac, ETH_ALEN); memcpy(adapter->netdev->perm_addr, mac, ETH_ALEN); @@ -2624,18 +2689,21 @@ be_set_rx_mode(adapter->netdev); status = be_cmd_get_flow_control(adapter, &tx_fc, &rx_fc); - if (status) + /* For Lancer: It is legal for this cmd to fail on VF */ + if (status && (be_physfn(adapter) || !lancer_chip(adapter))) goto err; + if (rx_fc != adapter->rx_fc || tx_fc != adapter->tx_fc) { status = be_cmd_set_flow_control(adapter, adapter->tx_fc, adapter->rx_fc); - if (status) + /* For Lancer: It is legal for this cmd to fail on VF */ + if (status && (be_physfn(adapter) || !lancer_chip(adapter))) goto err; } pcie_set_readrq(adapter->pdev, 4096); - if (be_physfn(adapter) && adapter->sriov_enabled) { + if (sriov_enabled(adapter)) { status = be_vf_setup(adapter); if (status) goto err; @@ -2647,6 +2715,19 @@ return status; } +#ifdef CONFIG_NET_POLL_CONTROLLER +static void be_netpoll(struct net_device *netdev) +{ + struct be_adapter *adapter = netdev_priv(netdev); + struct be_rx_obj *rxo; + int i; + + event_handle(adapter, &adapter->tx_eq, false); + for_all_rx_queues(adapter, rxo, i) + event_handle(adapter, &rxo->rx_eq, true); +} +#endif + #define FW_FILE_HDR_SIGN "ServerEngines Corp. " static bool be_flash_redboot(struct be_adapter *adapter, const u8 *p, u32 img_start, int image_size, @@ -2981,7 +3062,7 @@ return status; } -static struct net_device_ops be_netdev_ops = { +static const struct net_device_ops be_netdev_ops = { .ndo_open = be_open, .ndo_stop = be_close, .ndo_start_xmit = be_xmit, @@ -2995,7 +3076,10 @@ .ndo_set_vf_mac = be_set_vf_mac, .ndo_set_vf_vlan = be_set_vf_vlan, .ndo_set_vf_tx_rate = be_set_vf_tx_rate, - .ndo_get_vf_config = be_get_vf_config + .ndo_get_vf_config = be_get_vf_config, +#ifdef CONFIG_NET_POLL_CONTROLLER + .ndo_poll_controller = be_netpoll, +#endif }; static void be_netdev_init(struct net_device *netdev) @@ -3242,6 +3326,7 @@ break; case BE_DEVICE_ID2: case OC_DEVICE_ID2: + case OC_DEVICE_ID5: adapter->generation = BE_GEN3; break; case OC_DEVICE_ID3: @@ -3267,7 +3352,7 @@ static int lancer_wait_ready(struct be_adapter *adapter) { -#define SLIPORT_READY_TIMEOUT 500 +#define SLIPORT_READY_TIMEOUT 30 u32 sliport_status; int status = 0, i; @@ -3276,7 +3361,7 @@ if (sliport_status & SLIPORT_STATUS_RDY_MASK) break; - msleep(20); + msleep(1000); } if (i == SLIPORT_READY_TIMEOUT) @@ -3313,6 +3398,104 @@ return status; } +static void lancer_test_and_recover_fn_err(struct be_adapter *adapter) +{ + int status; + u32 sliport_status; + + if (adapter->eeh_err || adapter->ue_detected) + return; + + sliport_status = ioread32(adapter->db + SLIPORT_STATUS_OFFSET); + + if (sliport_status & SLIPORT_STATUS_ERR_MASK) { + dev_err(&adapter->pdev->dev, + "Adapter in error state." + "Trying to recover.\n"); + + status = lancer_test_and_set_rdy_state(adapter); + if (status) + goto err; + + netif_device_detach(adapter->netdev); + + if (netif_running(adapter->netdev)) + be_close(adapter->netdev); + + be_clear(adapter); + + adapter->fw_timeout = false; + + status = be_setup(adapter); + if (status) + goto err; + + if (netif_running(adapter->netdev)) { + status = be_open(adapter->netdev); + if (status) + goto err; + } + + netif_device_attach(adapter->netdev); + + dev_err(&adapter->pdev->dev, + "Adapter error recovery succeeded\n"); + } + return; +err: + dev_err(&adapter->pdev->dev, + "Adapter error recovery failed\n"); +} + +static void be_worker(struct work_struct *work) +{ + struct be_adapter *adapter = + container_of(work, struct be_adapter, work.work); + struct be_rx_obj *rxo; + int i; + + if (lancer_chip(adapter)) + lancer_test_and_recover_fn_err(adapter); + + be_detect_dump_ue(adapter); + + /* when interrupts are not yet enabled, just reap any pending + * mcc completions */ + if (!netif_running(adapter->netdev)) { + int mcc_compl, status = 0; + + mcc_compl = be_process_mcc(adapter, &status); + + if (mcc_compl) { + struct be_mcc_obj *mcc_obj = &adapter->mcc_obj; + be_cq_notify(adapter, mcc_obj->cq.id, false, mcc_compl); + } + + goto reschedule; + } + + if (!adapter->stats_cmd_sent) { + if (lancer_chip(adapter)) + lancer_cmd_get_pport_stats(adapter, + &adapter->stats_cmd); + else + be_cmd_get_stats(adapter, &adapter->stats_cmd); + } + + for_all_rx_queues(adapter, rxo, i) { + be_rx_eqd_update(adapter, rxo); + + if (rxo->rx_post_starved) { + rxo->rx_post_starved = false; + be_post_rx_frags(rxo, GFP_KERNEL); + } + } + +reschedule: + adapter->work_counter++; + schedule_delayed_work(&adapter->work, msecs_to_jiffies(1000)); +} + static int __devinit be_probe(struct pci_dev *pdev, const struct pci_device_id *pdev_id) { @@ -3365,7 +3548,12 @@ goto disable_sriov; if (lancer_chip(adapter)) { - status = lancer_test_and_set_rdy_state(adapter); + status = lancer_wait_ready(adapter); + if (!status) { + iowrite32(SLI_PORT_CONTROL_IP_MASK, + adapter->db + SLIPORT_CONTROL_OFFSET); + status = lancer_test_and_set_rdy_state(adapter); + } if (status) { dev_err(&pdev->dev, "Adapter in non recoverable error\n"); goto ctrl_clean; @@ -3559,6 +3747,8 @@ dev_info(&adapter->pdev->dev, "EEH reset\n"); adapter->eeh_err = false; + adapter->ue_detected = false; + adapter->fw_timeout = false; status = pci_enable_device(pdev); if (status) --- linux-3.2.0.orig/drivers/net/ethernet/emulex/benet/be_cmds.c +++ linux-3.2.0/drivers/net/ethernet/emulex/benet/be_cmds.c @@ -31,11 +31,8 @@ struct be_queue_info *mccq = &adapter->mcc_obj.q; u32 val = 0; - if (adapter->eeh_err) { - dev_info(&adapter->pdev->dev, - "Error in Card Detected! Cannot issue commands\n"); + if (be_error(adapter)) return; - } val |= mccq->id & DB_MCCQ_RING_ID_MASK; val |= 1 << DB_MCCQ_NUM_POSTED_SHIFT; @@ -128,7 +125,14 @@ static void be_async_link_state_process(struct be_adapter *adapter, struct be_async_event_link_state *evt) { - be_link_status_update(adapter, evt->port_link_status); + /* When link status changes, link speed must be re-queried from FW */ + adapter->link_speed = -1; + + /* For the initial link status do not rely on the ASYNC event as + * it may not be received in some cases. + */ + if (adapter->flags & BE_FLAGS_LINK_STATUS_INIT) + be_link_status_update(adapter, evt->port_link_status); } /* Grp5 CoS Priority evt */ @@ -266,10 +270,10 @@ int i, num, status = 0; struct be_mcc_obj *mcc_obj = &adapter->mcc_obj; - if (adapter->eeh_err) - return -EIO; - for (i = 0; i < mcc_timeout; i++) { + if (be_error(adapter)) + return -EIO; + num = be_process_mcc(adapter, &status); if (num) be_cq_notify(adapter, mcc_obj->cq.id, @@ -280,7 +284,8 @@ udelay(100); } if (i == mcc_timeout) { - dev_err(&adapter->pdev->dev, "mccq poll timed out\n"); + dev_err(&adapter->pdev->dev, "FW not responding\n"); + adapter->fw_timeout = true; return -1; } return status; @@ -298,26 +303,21 @@ int msecs = 0; u32 ready; - if (adapter->eeh_err) { - dev_err(&adapter->pdev->dev, - "Error detected in card.Cannot issue commands\n"); - return -EIO; - } - do { + if (be_error(adapter)) + return -EIO; + ready = ioread32(db); - if (ready == 0xffffffff) { - dev_err(&adapter->pdev->dev, - "pci slot disconnected\n"); + if (ready == 0xffffffff) return -1; - } ready &= MPU_MAILBOX_DB_RDY_MASK; if (ready) break; if (msecs > 4000) { - dev_err(&adapter->pdev->dev, "mbox poll timed out\n"); + dev_err(&adapter->pdev->dev, "FW not responding\n"); + adapter->fw_timeout = true; be_detect_dump_ue(adapter); return -1; } @@ -555,9 +555,6 @@ u8 *wrb; int status; - if (adapter->eeh_err) - return -EIO; - if (mutex_lock_interruptible(&adapter->mbox_lock)) return -1; @@ -619,7 +616,7 @@ /* Use MCC */ int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr, - u8 type, bool permanent, u32 if_handle) + u8 type, bool permanent, u32 if_handle, u32 pmac_id) { struct be_mcc_wrb *wrb; struct be_cmd_req_mac_query *req; @@ -641,6 +638,7 @@ req->permanent = 1; } else { req->if_id = cpu_to_le16((u16) if_handle); + req->pmac_id = cpu_to_le32(pmac_id); req->permanent = 0; } @@ -695,12 +693,15 @@ } /* Uses synchronous MCCQ */ -int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, u32 pmac_id, u32 dom) +int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, int pmac_id, u32 dom) { struct be_mcc_wrb *wrb; struct be_cmd_req_pmac_del *req; int status; + if (pmac_id == -1) + return 0; + spin_lock_bh(&adapter->mcc_lock); wrb = wrb_from_mccq(adapter); @@ -923,10 +924,14 @@ void *ctxt; int status; - if (mutex_lock_interruptible(&adapter->mbox_lock)) - return -1; + spin_lock_bh(&adapter->mcc_lock); + + wrb = wrb_from_mccq(adapter); + if (!wrb) { + status = -EBUSY; + goto err; + } - wrb = wrb_from_mbox(adapter); req = embedded_payload(wrb); ctxt = &req->context; @@ -952,14 +957,15 @@ be_cmd_page_addrs_prepare(req->pages, ARRAY_SIZE(req->pages), q_mem); - status = be_mbox_notify_wait(adapter); + status = be_mcc_notify_wait(adapter); if (!status) { struct be_cmd_resp_eth_tx_create *resp = embedded_payload(wrb); txq->id = le16_to_cpu(resp->cid); txq->created = true; } - mutex_unlock(&adapter->mbox_lock); +err: + spin_unlock_bh(&adapter->mcc_lock); return status; } @@ -1018,9 +1024,6 @@ u8 subsys = 0, opcode = 0; int status; - if (adapter->eeh_err) - return -EIO; - if (mutex_lock_interruptible(&adapter->mbox_lock)) return -1; @@ -1136,16 +1139,13 @@ } /* Uses MCCQ */ -int be_cmd_if_destroy(struct be_adapter *adapter, u32 interface_id, u32 domain) +int be_cmd_if_destroy(struct be_adapter *adapter, int interface_id, u32 domain) { struct be_mcc_wrb *wrb; struct be_cmd_req_if_destroy *req; int status; - if (adapter->eeh_err) - return -EIO; - - if (!interface_id) + if (interface_id == -1) return 0; spin_lock_bh(&adapter->mcc_lock); @@ -1239,7 +1239,7 @@ /* Uses synchronous mcc */ int be_cmd_link_status_query(struct be_adapter *adapter, u8 *mac_speed, - u16 *link_speed, u32 dom) + u16 *link_speed, u8 *link_status, u32 dom) { struct be_mcc_wrb *wrb; struct be_cmd_req_link_status *req; @@ -1247,6 +1247,9 @@ spin_lock_bh(&adapter->mcc_lock); + if (link_status) + *link_status = LINK_DOWN; + wrb = wrb_from_mccq(adapter); if (!wrb) { status = -EBUSY; @@ -1254,6 +1257,9 @@ } req = embedded_payload(wrb); + if (adapter->generation == BE_GEN3 || lancer_chip(adapter)) + req->hdr.version = 1; + be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, OPCODE_COMMON_NTWK_LINK_STATUS_QUERY, sizeof(*req), wrb, NULL); @@ -1261,10 +1267,13 @@ if (!status) { struct be_cmd_resp_link_status *resp = embedded_payload(wrb); if (resp->mac_speed != PHY_LINK_SPEED_ZERO) { - *link_speed = le16_to_cpu(resp->link_speed); + if (link_speed) + *link_speed = le16_to_cpu(resp->link_speed); if (mac_speed) *mac_speed = resp->mac_speed; } + if (link_status) + *link_status = resp->logical_link_status; } err: @@ -1673,8 +1682,9 @@ { struct be_mcc_wrb *wrb; struct be_cmd_req_rss_config *req; - u32 myhash[10] = {0x0123, 0x4567, 0x89AB, 0xCDEF, 0x01EF, - 0x0123, 0x4567, 0x89AB, 0xCDEF, 0x01EF}; + u32 myhash[10] = {0x15d43fa5, 0x2534685a, 0x5f87693a, 0x5668494e, + 0x33cf6a53, 0x383334c6, 0x76ac4257, 0x59b242b2, + 0x3ea83c02, 0x4a110304}; int status; if (mutex_lock_interruptible(&adapter->mbox_lock)) @@ -1836,6 +1846,53 @@ return status; } +int lancer_cmd_read_object(struct be_adapter *adapter, struct be_dma_mem *cmd, + u32 data_size, u32 data_offset, const char *obj_name, + u32 *data_read, u32 *eof, u8 *addn_status) +{ + struct be_mcc_wrb *wrb; + struct lancer_cmd_req_read_object *req; + struct lancer_cmd_resp_read_object *resp; + int status; + + spin_lock_bh(&adapter->mcc_lock); + + wrb = wrb_from_mccq(adapter); + if (!wrb) { + status = -EBUSY; + goto err_unlock; + } + + req = embedded_payload(wrb); + + be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, + OPCODE_COMMON_READ_OBJECT, + sizeof(struct lancer_cmd_req_read_object), wrb, + NULL); + + req->desired_read_len = cpu_to_le32(data_size); + req->read_offset = cpu_to_le32(data_offset); + strcpy(req->object_name, obj_name); + req->descriptor_count = cpu_to_le32(1); + req->buf_len = cpu_to_le32(data_size); + req->addr_low = cpu_to_le32((cmd->dma & 0xFFFFFFFF)); + req->addr_high = cpu_to_le32(upper_32_bits(cmd->dma)); + + status = be_mcc_notify_wait(adapter); + + resp = embedded_payload(wrb); + if (!status) { + *data_read = le32_to_cpu(resp->actual_read_len); + *eof = le32_to_cpu(resp->eof); + } else { + *addn_status = resp->additional_status; + } + +err_unlock: + spin_unlock_bh(&adapter->mcc_lock); + return status; +} + int be_cmd_write_flashrom(struct be_adapter *adapter, struct be_dma_mem *cmd, u32 flash_type, u32 flash_opcode, u32 buf_size) { @@ -2238,3 +2295,99 @@ mutex_unlock(&adapter->mbox_lock); return status; } + +/* Uses synchronous MCCQ */ +int be_cmd_get_mac_from_list(struct be_adapter *adapter, u32 domain, + u32 *pmac_id) +{ + struct be_mcc_wrb *wrb; + struct be_cmd_req_get_mac_list *req; + int status; + int mac_count; + + spin_lock_bh(&adapter->mcc_lock); + + wrb = wrb_from_mccq(adapter); + if (!wrb) { + status = -EBUSY; + goto err; + } + req = embedded_payload(wrb); + + be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, + OPCODE_COMMON_GET_MAC_LIST, sizeof(*req), + wrb, NULL); + + req->hdr.domain = domain; + + status = be_mcc_notify_wait(adapter); + if (!status) { + struct be_cmd_resp_get_mac_list *resp = + embedded_payload(wrb); + int i; + u8 *ctxt = &resp->context[0][0]; + status = -EIO; + mac_count = resp->mac_count; + be_dws_le_to_cpu(&resp->context, sizeof(resp->context)); + for (i = 0; i < mac_count; i++) { + if (!AMAP_GET_BITS(struct amap_get_mac_list_context, + act, ctxt)) { + *pmac_id = AMAP_GET_BITS + (struct amap_get_mac_list_context, + macid, ctxt); + status = 0; + break; + } + ctxt += sizeof(struct amap_get_mac_list_context) / 8; + } + } + +err: + spin_unlock_bh(&adapter->mcc_lock); + return status; +} + +/* Uses synchronous MCCQ */ +int be_cmd_set_mac_list(struct be_adapter *adapter, u8 *mac_array, + u8 mac_count, u32 domain) +{ + struct be_mcc_wrb *wrb; + struct be_cmd_req_set_mac_list *req; + int status; + struct be_dma_mem cmd; + + memset(&cmd, 0, sizeof(struct be_dma_mem)); + cmd.size = sizeof(struct be_cmd_req_set_mac_list); + cmd.va = dma_alloc_coherent(&adapter->pdev->dev, cmd.size, + &cmd.dma, GFP_KERNEL); + if (!cmd.va) { + dev_err(&adapter->pdev->dev, "Memory alloc failure\n"); + return -ENOMEM; + } + + spin_lock_bh(&adapter->mcc_lock); + + wrb = wrb_from_mccq(adapter); + if (!wrb) { + status = -EBUSY; + goto err; + } + + req = cmd.va; + be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON, + OPCODE_COMMON_SET_MAC_LIST, sizeof(*req), + wrb, &cmd); + + req->hdr.domain = domain; + req->mac_count = mac_count; + if (mac_count) + memcpy(req->mac, mac_array, ETH_ALEN*mac_count); + + status = be_mcc_notify_wait(adapter); + +err: + dma_free_coherent(&adapter->pdev->dev, cmd.size, + cmd.va, cmd.dma); + spin_unlock_bh(&adapter->mcc_lock); + return status; +} --- linux-3.2.0.orig/drivers/net/ethernet/emulex/benet/be_ethtool.c +++ linux-3.2.0/drivers/net/ethernet/emulex/benet/be_ethtool.c @@ -127,8 +127,8 @@ memset(fw_on_flash, 0 , sizeof(fw_on_flash)); be_cmd_get_fw_ver(adapter, adapter->fw_ver, fw_on_flash); - strcpy(drvinfo->driver, DRV_NAME); - strcpy(drvinfo->version, DRV_VER); + strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver)); + strlcpy(drvinfo->version, DRV_VER, sizeof(drvinfo->version)); strncpy(drvinfo->fw_version, adapter->fw_ver, FW_VER_LEN); if (memcmp(adapter->fw_ver, fw_on_flash, FW_VER_LEN) != 0) { strcat(drvinfo->fw_version, " ["); @@ -136,21 +136,84 @@ strcat(drvinfo->fw_version, "]"); } - strcpy(drvinfo->bus_info, pci_name(adapter->pdev)); + strlcpy(drvinfo->bus_info, pci_name(adapter->pdev), + sizeof(drvinfo->bus_info)); drvinfo->testinfo_len = 0; drvinfo->regdump_len = 0; drvinfo->eedump_len = 0; } +static u32 +lancer_cmd_get_file_len(struct be_adapter *adapter, u8 *file_name) +{ + u32 data_read = 0, eof; + u8 addn_status; + struct be_dma_mem data_len_cmd; + int status; + + memset(&data_len_cmd, 0, sizeof(data_len_cmd)); + /* data_offset and data_size should be 0 to get reg len */ + status = lancer_cmd_read_object(adapter, &data_len_cmd, 0, 0, + file_name, &data_read, &eof, &addn_status); + + return data_read; +} + +static int +lancer_cmd_read_file(struct be_adapter *adapter, u8 *file_name, + u32 buf_len, void *buf) +{ + struct be_dma_mem read_cmd; + u32 read_len = 0, total_read_len = 0, chunk_size; + u32 eof = 0; + u8 addn_status; + int status = 0; + + read_cmd.size = LANCER_READ_FILE_CHUNK; + read_cmd.va = pci_alloc_consistent(adapter->pdev, read_cmd.size, + &read_cmd.dma); + + if (!read_cmd.va) { + dev_err(&adapter->pdev->dev, + "Memory allocation failure while reading dump\n"); + return -ENOMEM; + } + + while ((total_read_len < buf_len) && !eof) { + chunk_size = min_t(u32, (buf_len - total_read_len), + LANCER_READ_FILE_CHUNK); + chunk_size = ALIGN(chunk_size, 4); + status = lancer_cmd_read_object(adapter, &read_cmd, chunk_size, + total_read_len, file_name, &read_len, + &eof, &addn_status); + if (!status) { + memcpy(buf + total_read_len, read_cmd.va, read_len); + total_read_len += read_len; + eof &= LANCER_READ_FILE_EOF_MASK; + } else { + status = -EIO; + break; + } + } + pci_free_consistent(adapter->pdev, read_cmd.size, read_cmd.va, + read_cmd.dma); + + return status; +} + static int be_get_reg_len(struct net_device *netdev) { struct be_adapter *adapter = netdev_priv(netdev); u32 log_size = 0; - if (be_physfn(adapter)) - be_cmd_get_reg_len(adapter, &log_size); - + if (be_physfn(adapter)) { + if (lancer_chip(adapter)) + log_size = lancer_cmd_get_file_len(adapter, + LANCER_FW_DUMP_FILE); + else + be_cmd_get_reg_len(adapter, &log_size); + } return log_size; } @@ -161,7 +224,11 @@ if (be_physfn(adapter)) { memset(buf, 0, regs->len); - be_cmd_get_regs(adapter, regs->len, buf); + if (lancer_chip(adapter)) + lancer_cmd_read_file(adapter, LANCER_FW_DUMP_FILE, + regs->len, buf); + else + be_cmd_get_regs(adapter, regs->len, buf); } } @@ -362,11 +429,14 @@ struct be_phy_info phy_info; u8 mac_speed = 0; u16 link_speed = 0; + u8 link_status; int status; if ((adapter->link_speed < 0) || (!(netdev->flags & IFF_UP))) { status = be_cmd_link_status_query(adapter, &mac_speed, - &link_speed, 0); + &link_speed, &link_status, 0); + if (!status) + be_link_status_update(adapter, link_status); /* link_speed is in units of 10 Mbps */ if (link_speed) { @@ -453,16 +523,13 @@ return 0; } -static void -be_get_ringparam(struct net_device *netdev, struct ethtool_ringparam *ring) +static void be_get_ringparam(struct net_device *netdev, + struct ethtool_ringparam *ring) { struct be_adapter *adapter = netdev_priv(netdev); - ring->rx_max_pending = adapter->rx_obj[0].q.len; - ring->tx_max_pending = adapter->tx_obj[0].q.len; - - ring->rx_pending = atomic_read(&adapter->rx_obj[0].q.used); - ring->tx_pending = atomic_read(&adapter->tx_obj[0].q.used); + ring->rx_max_pending = ring->rx_pending = adapter->rx_obj[0].q.len; + ring->tx_max_pending = ring->tx_pending = adapter->tx_obj[0].q.len; } static void @@ -636,7 +703,7 @@ } if (be_cmd_link_status_query(adapter, &mac_speed, - &qos_link_speed, 0) != 0) { + &qos_link_speed, NULL, 0) != 0) { test->flags |= ETH_TEST_FL_FAILED; data[4] = -1; } else if (!mac_speed) { @@ -649,18 +716,24 @@ be_do_flash(struct net_device *netdev, struct ethtool_flash *efl) { struct be_adapter *adapter = netdev_priv(netdev); - char file_name[ETHTOOL_FLASH_MAX_FILENAME]; - - file_name[ETHTOOL_FLASH_MAX_FILENAME - 1] = 0; - strcpy(file_name, efl->data); - return be_load_fw(adapter, file_name); + return be_load_fw(adapter, efl->data); } static int be_get_eeprom_len(struct net_device *netdev) { - return BE_READ_SEEPROM_LEN; + struct be_adapter *adapter = netdev_priv(netdev); + if (lancer_chip(adapter)) { + if (be_physfn(adapter)) + return lancer_cmd_get_file_len(adapter, + LANCER_VPD_PF_FILE); + else + return lancer_cmd_get_file_len(adapter, + LANCER_VPD_VF_FILE); + } else { + return BE_READ_SEEPROM_LEN; + } } static int @@ -675,6 +748,15 @@ if (!eeprom->len) return -EINVAL; + if (lancer_chip(adapter)) { + if (be_physfn(adapter)) + return lancer_cmd_read_file(adapter, LANCER_VPD_PF_FILE, + eeprom->len, data); + else + return lancer_cmd_read_file(adapter, LANCER_VPD_VF_FILE, + eeprom->len, data); + } + eeprom->magic = BE_VENDOR_ID | (adapter->pdev->device<<16); memset(&eeprom_cmd, 0, sizeof(struct be_dma_mem)); --- linux-3.2.0.orig/drivers/net/ethernet/emulex/benet/be_cmds.h +++ linux-3.2.0/drivers/net/ethernet/emulex/benet/be_cmds.h @@ -189,6 +189,9 @@ #define OPCODE_COMMON_GET_PHY_DETAILS 102 #define OPCODE_COMMON_SET_DRIVER_FUNCTION_CAP 103 #define OPCODE_COMMON_GET_CNTL_ADDITIONAL_ATTRIBUTES 121 +#define OPCODE_COMMON_GET_MAC_LIST 147 +#define OPCODE_COMMON_SET_MAC_LIST 148 +#define OPCODE_COMMON_READ_OBJECT 171 #define OPCODE_COMMON_WRITE_OBJECT 172 #define OPCODE_ETH_RSS_CONFIG 1 @@ -294,6 +297,7 @@ u8 type; u8 permanent; u16 if_id; + u32 pmac_id; } __packed; struct be_cmd_resp_mac_query { @@ -956,7 +960,8 @@ u8 mgmt_mac_duplex; u8 mgmt_mac_speed; u16 link_speed; - u32 rsvd0; + u8 logical_link_status; + u8 rsvd1[3]; } __packed; /******************** Port Identification ***************************/ @@ -1161,6 +1166,38 @@ u32 actual_write_len; }; +/************************ Lancer Read FW info **************/ +#define LANCER_READ_FILE_CHUNK (32*1024) +#define LANCER_READ_FILE_EOF_MASK 0x80000000 + +#define LANCER_FW_DUMP_FILE "/dbg/dump.bin" +#define LANCER_VPD_PF_FILE "/vpd/ntr_pf.vpd" +#define LANCER_VPD_VF_FILE "/vpd/ntr_vf.vpd" + +struct lancer_cmd_req_read_object { + struct be_cmd_req_hdr hdr; + u32 desired_read_len; + u32 read_offset; + u8 object_name[104]; + u32 descriptor_count; + u32 buf_len; + u32 addr_low; + u32 addr_high; +}; + +struct lancer_cmd_resp_read_object { + u8 opcode; + u8 subsystem; + u8 rsvd1[2]; + u8 status; + u8 additional_status; + u8 rsvd2[2]; + u32 resp_len; + u32 actual_resp_len; + u32 actual_read_len; + u32 eof; +}; + /************************ WOL *******************************/ struct be_cmd_req_acpi_wol_magic_config{ struct be_cmd_req_hdr hdr; @@ -1307,6 +1344,34 @@ u8 rsvd[212]; }; +/******************** GET/SET_MACLIST **************************/ +#define BE_MAX_MAC 64 +struct amap_get_mac_list_context { + u8 macid[31]; + u8 act; +} __packed; + +struct be_cmd_req_get_mac_list { + struct be_cmd_req_hdr hdr; + u32 rsvd; +} __packed; + +struct be_cmd_resp_get_mac_list { + struct be_cmd_resp_hdr hdr; + u8 mac_count; + u8 rsvd1; + u16 rsvd2; + u8 context[sizeof(struct amap_get_mac_list_context) / 8][BE_MAX_MAC]; +} __packed; + +struct be_cmd_req_set_mac_list { + struct be_cmd_req_hdr hdr; + u8 mac_count; + u8 rsvd1; + u16 rsvd2; + struct macaddr mac[BE_MAX_MAC]; +} __packed; + /*************** HW Stats Get v1 **********************************/ #define BE_TXP_SW_SZ 48 struct be_port_rxf_stats_v1 { @@ -1413,15 +1478,15 @@ extern int be_pci_fnum_get(struct be_adapter *adapter); extern int be_cmd_POST(struct be_adapter *adapter); extern int be_cmd_mac_addr_query(struct be_adapter *adapter, u8 *mac_addr, - u8 type, bool permanent, u32 if_handle); + u8 type, bool permanent, u32 if_handle, u32 pmac_id); extern int be_cmd_pmac_add(struct be_adapter *adapter, u8 *mac_addr, u32 if_id, u32 *pmac_id, u32 domain); extern int be_cmd_pmac_del(struct be_adapter *adapter, u32 if_id, - u32 pmac_id, u32 domain); + int pmac_id, u32 domain); extern int be_cmd_if_create(struct be_adapter *adapter, u32 cap_flags, u32 en_flags, u8 *mac, u32 *if_handle, u32 *pmac_id, u32 domain); -extern int be_cmd_if_destroy(struct be_adapter *adapter, u32 if_handle, +extern int be_cmd_if_destroy(struct be_adapter *adapter, int if_handle, u32 domain); extern int be_cmd_eq_create(struct be_adapter *adapter, struct be_queue_info *eq, int eq_delay); @@ -1443,8 +1508,8 @@ int type); extern int be_cmd_rxq_destroy(struct be_adapter *adapter, struct be_queue_info *q); -extern int be_cmd_link_status_query(struct be_adapter *adapter, - u8 *mac_speed, u16 *link_speed, u32 dom); +extern int be_cmd_link_status_query(struct be_adapter *adapter, u8 *mac_speed, + u16 *link_speed, u8 *link_status, u32 dom); extern int be_cmd_reset(struct be_adapter *adapter); extern int be_cmd_get_stats(struct be_adapter *adapter, struct be_dma_mem *nonemb_cmd); @@ -1480,6 +1545,9 @@ u32 data_size, u32 data_offset, const char *obj_name, u32 *data_written, u8 *addn_status); +int lancer_cmd_read_object(struct be_adapter *adapter, struct be_dma_mem *cmd, + u32 data_size, u32 data_offset, const char *obj_name, + u32 *data_read, u32 *eof, u8 *addn_status); int be_cmd_get_flash_crc(struct be_adapter *adapter, u8 *flashed_crc, int offset); extern int be_cmd_enable_magic_wol(struct be_adapter *adapter, u8 *mac, @@ -1506,4 +1574,8 @@ extern int be_cmd_req_native_mode(struct be_adapter *adapter); extern int be_cmd_get_reg_len(struct be_adapter *adapter, u32 *log_size); extern void be_cmd_get_regs(struct be_adapter *adapter, u32 buf_len, void *buf); +extern int be_cmd_get_mac_from_list(struct be_adapter *adapter, u32 domain, + u32 *pmac_id); +extern int be_cmd_set_mac_list(struct be_adapter *adapter, u8 *mac_array, + u8 mac_count, u32 domain); --- linux-3.2.0.orig/drivers/net/ethernet/calxeda/Kconfig +++ linux-3.2.0/drivers/net/ethernet/calxeda/Kconfig @@ -0,0 +1,7 @@ +config NET_CALXEDA_XGMAC + tristate "Calxeda 1G/10G XGMAC Ethernet driver" + + select CRC32 + help + This is the driver for the XGMAC Ethernet IP block found on Calxeda + Highbank platforms. --- linux-3.2.0.orig/drivers/net/ethernet/calxeda/xgmac.c +++ linux-3.2.0/drivers/net/ethernet/calxeda/xgmac.c @@ -0,0 +1,1929 @@ +/* + * Copyright 2010-2011 Calxeda, Inc. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see . + */ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* XGMAC Register definitions */ +#define XGMAC_CONTROL 0x00000000 /* MAC Configuration */ +#define XGMAC_FRAME_FILTER 0x00000004 /* MAC Frame Filter */ +#define XGMAC_FLOW_CTRL 0x00000018 /* MAC Flow Control */ +#define XGMAC_VLAN_TAG 0x0000001C /* VLAN Tags */ +#define XGMAC_VERSION 0x00000020 /* Version */ +#define XGMAC_VLAN_INCL 0x00000024 /* VLAN tag for tx frames */ +#define XGMAC_LPI_CTRL 0x00000028 /* LPI Control and Status */ +#define XGMAC_LPI_TIMER 0x0000002C /* LPI Timers Control */ +#define XGMAC_TX_PACE 0x00000030 /* Transmit Pace and Stretch */ +#define XGMAC_VLAN_HASH 0x00000034 /* VLAN Hash Table */ +#define XGMAC_DEBUG 0x00000038 /* Debug */ +#define XGMAC_INT_STAT 0x0000003C /* Interrupt and Control */ +#define XGMAC_ADDR_HIGH(reg) (0x00000040 + ((reg) * 8)) +#define XGMAC_ADDR_LOW(reg) (0x00000044 + ((reg) * 8)) +#define XGMAC_HASH(n) (0x00000300 + (n) * 4) /* HASH table regs */ +#define XGMAC_NUM_HASH 16 +#define XGMAC_OMR 0x00000400 +#define XGMAC_REMOTE_WAKE 0x00000700 /* Remote Wake-Up Frm Filter */ +#define XGMAC_PMT 0x00000704 /* PMT Control and Status */ +#define XGMAC_MMC_CTRL 0x00000800 /* XGMAC MMC Control */ +#define XGMAC_MMC_INTR_RX 0x00000804 /* Recieve Interrupt */ +#define XGMAC_MMC_INTR_TX 0x00000808 /* Transmit Interrupt */ +#define XGMAC_MMC_INTR_MASK_RX 0x0000080c /* Recieve Interrupt Mask */ +#define XGMAC_MMC_INTR_MASK_TX 0x00000810 /* Transmit Interrupt Mask */ + +/* Hardware TX Statistics Counters */ +#define XGMAC_MMC_TXOCTET_GB_LO 0x00000814 +#define XGMAC_MMC_TXOCTET_GB_HI 0x00000818 +#define XGMAC_MMC_TXFRAME_GB_LO 0x0000081C +#define XGMAC_MMC_TXFRAME_GB_HI 0x00000820 +#define XGMAC_MMC_TXBCFRAME_G 0x00000824 +#define XGMAC_MMC_TXMCFRAME_G 0x0000082C +#define XGMAC_MMC_TXUCFRAME_GB 0x00000864 +#define XGMAC_MMC_TXMCFRAME_GB 0x0000086C +#define XGMAC_MMC_TXBCFRAME_GB 0x00000874 +#define XGMAC_MMC_TXUNDERFLOW 0x0000087C +#define XGMAC_MMC_TXOCTET_G_LO 0x00000884 +#define XGMAC_MMC_TXOCTET_G_HI 0x00000888 +#define XGMAC_MMC_TXFRAME_G_LO 0x0000088C +#define XGMAC_MMC_TXFRAME_G_HI 0x00000890 +#define XGMAC_MMC_TXPAUSEFRAME 0x00000894 +#define XGMAC_MMC_TXVLANFRAME 0x0000089C + +/* Hardware RX Statistics Counters */ +#define XGMAC_MMC_RXFRAME_GB_LO 0x00000900 +#define XGMAC_MMC_RXFRAME_GB_HI 0x00000904 +#define XGMAC_MMC_RXOCTET_GB_LO 0x00000908 +#define XGMAC_MMC_RXOCTET_GB_HI 0x0000090C +#define XGMAC_MMC_RXOCTET_G_LO 0x00000910 +#define XGMAC_MMC_RXOCTET_G_HI 0x00000914 +#define XGMAC_MMC_RXBCFRAME_G 0x00000918 +#define XGMAC_MMC_RXMCFRAME_G 0x00000920 +#define XGMAC_MMC_RXCRCERR 0x00000928 +#define XGMAC_MMC_RXRUNT 0x00000930 +#define XGMAC_MMC_RXJABBER 0x00000934 +#define XGMAC_MMC_RXUCFRAME_G 0x00000970 +#define XGMAC_MMC_RXLENGTHERR 0x00000978 +#define XGMAC_MMC_RXPAUSEFRAME 0x00000988 +#define XGMAC_MMC_RXOVERFLOW 0x00000990 +#define XGMAC_MMC_RXVLANFRAME 0x00000998 +#define XGMAC_MMC_RXWATCHDOG 0x000009a0 + +/* DMA Control and Status Registers */ +#define XGMAC_DMA_BUS_MODE 0x00000f00 /* Bus Mode */ +#define XGMAC_DMA_TX_POLL 0x00000f04 /* Transmit Poll Demand */ +#define XGMAC_DMA_RX_POLL 0x00000f08 /* Received Poll Demand */ +#define XGMAC_DMA_RX_BASE_ADDR 0x00000f0c /* Receive List Base */ +#define XGMAC_DMA_TX_BASE_ADDR 0x00000f10 /* Transmit List Base */ +#define XGMAC_DMA_STATUS 0x00000f14 /* Status Register */ +#define XGMAC_DMA_CONTROL 0x00000f18 /* Ctrl (Operational Mode) */ +#define XGMAC_DMA_INTR_ENA 0x00000f1c /* Interrupt Enable */ +#define XGMAC_DMA_MISS_FRAME_CTR 0x00000f20 /* Missed Frame Counter */ +#define XGMAC_DMA_RI_WDOG_TIMER 0x00000f24 /* RX Intr Watchdog Timer */ +#define XGMAC_DMA_AXI_BUS 0x00000f28 /* AXI Bus Mode */ +#define XGMAC_DMA_AXI_STATUS 0x00000f2C /* AXI Status */ +#define XGMAC_DMA_HW_FEATURE 0x00000f58 /* Enabled Hardware Features */ + +#define XGMAC_ADDR_AE 0x80000000 +#define XGMAC_MAX_FILTER_ADDR 31 + +/* PMT Control and Status */ +#define XGMAC_PMT_POINTER_RESET 0x80000000 +#define XGMAC_PMT_GLBL_UNICAST 0x00000200 +#define XGMAC_PMT_WAKEUP_RX_FRM 0x00000040 +#define XGMAC_PMT_MAGIC_PKT 0x00000020 +#define XGMAC_PMT_WAKEUP_FRM_EN 0x00000004 +#define XGMAC_PMT_MAGIC_PKT_EN 0x00000002 +#define XGMAC_PMT_POWERDOWN 0x00000001 + +#define XGMAC_CONTROL_SPD 0x40000000 /* Speed control */ +#define XGMAC_CONTROL_SPD_MASK 0x60000000 +#define XGMAC_CONTROL_SPD_1G 0x60000000 +#define XGMAC_CONTROL_SPD_2_5G 0x40000000 +#define XGMAC_CONTROL_SPD_10G 0x00000000 +#define XGMAC_CONTROL_SARC 0x10000000 /* Source Addr Insert/Replace */ +#define XGMAC_CONTROL_SARK_MASK 0x18000000 +#define XGMAC_CONTROL_CAR 0x04000000 /* CRC Addition/Replacement */ +#define XGMAC_CONTROL_CAR_MASK 0x06000000 +#define XGMAC_CONTROL_DP 0x01000000 /* Disable Padding */ +#define XGMAC_CONTROL_WD 0x00800000 /* Disable Watchdog on rx */ +#define XGMAC_CONTROL_JD 0x00400000 /* Jabber disable */ +#define XGMAC_CONTROL_JE 0x00100000 /* Jumbo frame */ +#define XGMAC_CONTROL_LM 0x00001000 /* Loop-back mode */ +#define XGMAC_CONTROL_IPC 0x00000400 /* Checksum Offload */ +#define XGMAC_CONTROL_ACS 0x00000080 /* Automatic Pad/FCS Strip */ +#define XGMAC_CONTROL_DDIC 0x00000010 /* Disable Deficit Idle Count */ +#define XGMAC_CONTROL_TE 0x00000008 /* Transmitter Enable */ +#define XGMAC_CONTROL_RE 0x00000004 /* Receiver Enable */ + +/* XGMAC Frame Filter defines */ +#define XGMAC_FRAME_FILTER_PR 0x00000001 /* Promiscuous Mode */ +#define XGMAC_FRAME_FILTER_HUC 0x00000002 /* Hash Unicast */ +#define XGMAC_FRAME_FILTER_HMC 0x00000004 /* Hash Multicast */ +#define XGMAC_FRAME_FILTER_DAIF 0x00000008 /* DA Inverse Filtering */ +#define XGMAC_FRAME_FILTER_PM 0x00000010 /* Pass all multicast */ +#define XGMAC_FRAME_FILTER_DBF 0x00000020 /* Disable Broadcast frames */ +#define XGMAC_FRAME_FILTER_SAIF 0x00000100 /* Inverse Filtering */ +#define XGMAC_FRAME_FILTER_SAF 0x00000200 /* Source Address Filter */ +#define XGMAC_FRAME_FILTER_HPF 0x00000400 /* Hash or perfect Filter */ +#define XGMAC_FRAME_FILTER_VHF 0x00000800 /* VLAN Hash Filter */ +#define XGMAC_FRAME_FILTER_VPF 0x00001000 /* VLAN Perfect Filter */ +#define XGMAC_FRAME_FILTER_RA 0x80000000 /* Receive all mode */ + +/* XGMAC FLOW CTRL defines */ +#define XGMAC_FLOW_CTRL_PT_MASK 0xffff0000 /* Pause Time Mask */ +#define XGMAC_FLOW_CTRL_PT_SHIFT 16 +#define XGMAC_FLOW_CTRL_DZQP 0x00000080 /* Disable Zero-Quanta Phase */ +#define XGMAC_FLOW_CTRL_PLT 0x00000020 /* Pause Low Threshhold */ +#define XGMAC_FLOW_CTRL_PLT_MASK 0x00000030 /* PLT MASK */ +#define XGMAC_FLOW_CTRL_UP 0x00000008 /* Unicast Pause Frame Detect */ +#define XGMAC_FLOW_CTRL_RFE 0x00000004 /* Rx Flow Control Enable */ +#define XGMAC_FLOW_CTRL_TFE 0x00000002 /* Tx Flow Control Enable */ +#define XGMAC_FLOW_CTRL_FCB_BPA 0x00000001 /* Flow Control Busy ... */ + +/* XGMAC_INT_STAT reg */ +#define XGMAC_INT_STAT_PMT 0x0080 /* PMT Interrupt Status */ +#define XGMAC_INT_STAT_LPI 0x0040 /* LPI Interrupt Status */ + +/* DMA Bus Mode register defines */ +#define DMA_BUS_MODE_SFT_RESET 0x00000001 /* Software Reset */ +#define DMA_BUS_MODE_DSL_MASK 0x0000007c /* Descriptor Skip Length */ +#define DMA_BUS_MODE_DSL_SHIFT 2 /* (in DWORDS) */ +#define DMA_BUS_MODE_ATDS 0x00000080 /* Alternate Descriptor Size */ + +/* Programmable burst length */ +#define DMA_BUS_MODE_PBL_MASK 0x00003f00 /* Programmable Burst Len */ +#define DMA_BUS_MODE_PBL_SHIFT 8 +#define DMA_BUS_MODE_FB 0x00010000 /* Fixed burst */ +#define DMA_BUS_MODE_RPBL_MASK 0x003e0000 /* Rx-Programmable Burst Len */ +#define DMA_BUS_MODE_RPBL_SHIFT 17 +#define DMA_BUS_MODE_USP 0x00800000 +#define DMA_BUS_MODE_8PBL 0x01000000 +#define DMA_BUS_MODE_AAL 0x02000000 + +/* DMA Bus Mode register defines */ +#define DMA_BUS_PR_RATIO_MASK 0x0000c000 /* Rx/Tx priority ratio */ +#define DMA_BUS_PR_RATIO_SHIFT 14 +#define DMA_BUS_FB 0x00010000 /* Fixed Burst */ + +/* DMA Control register defines */ +#define DMA_CONTROL_ST 0x00002000 /* Start/Stop Transmission */ +#define DMA_CONTROL_SR 0x00000002 /* Start/Stop Receive */ +#define DMA_CONTROL_DFF 0x01000000 /* Disable flush of rx frames */ + +/* DMA Normal interrupt */ +#define DMA_INTR_ENA_NIE 0x00010000 /* Normal Summary */ +#define DMA_INTR_ENA_AIE 0x00008000 /* Abnormal Summary */ +#define DMA_INTR_ENA_ERE 0x00004000 /* Early Receive */ +#define DMA_INTR_ENA_FBE 0x00002000 /* Fatal Bus Error */ +#define DMA_INTR_ENA_ETE 0x00000400 /* Early Transmit */ +#define DMA_INTR_ENA_RWE 0x00000200 /* Receive Watchdog */ +#define DMA_INTR_ENA_RSE 0x00000100 /* Receive Stopped */ +#define DMA_INTR_ENA_RUE 0x00000080 /* Receive Buffer Unavailable */ +#define DMA_INTR_ENA_RIE 0x00000040 /* Receive Interrupt */ +#define DMA_INTR_ENA_UNE 0x00000020 /* Tx Underflow */ +#define DMA_INTR_ENA_OVE 0x00000010 /* Receive Overflow */ +#define DMA_INTR_ENA_TJE 0x00000008 /* Transmit Jabber */ +#define DMA_INTR_ENA_TUE 0x00000004 /* Transmit Buffer Unavail */ +#define DMA_INTR_ENA_TSE 0x00000002 /* Transmit Stopped */ +#define DMA_INTR_ENA_TIE 0x00000001 /* Transmit Interrupt */ + +#define DMA_INTR_NORMAL (DMA_INTR_ENA_NIE | DMA_INTR_ENA_RIE | \ + DMA_INTR_ENA_TUE | DMA_INTR_ENA_TIE) + +#define DMA_INTR_ABNORMAL (DMA_INTR_ENA_AIE | DMA_INTR_ENA_FBE | \ + DMA_INTR_ENA_RWE | DMA_INTR_ENA_RSE | \ + DMA_INTR_ENA_RUE | DMA_INTR_ENA_UNE | \ + DMA_INTR_ENA_OVE | DMA_INTR_ENA_TJE | \ + DMA_INTR_ENA_TSE) + +/* DMA default interrupt mask */ +#define DMA_INTR_DEFAULT_MASK (DMA_INTR_NORMAL | DMA_INTR_ABNORMAL) + +/* DMA Status register defines */ +#define DMA_STATUS_GMI 0x08000000 /* MMC interrupt */ +#define DMA_STATUS_GLI 0x04000000 /* GMAC Line interface int */ +#define DMA_STATUS_EB_MASK 0x00380000 /* Error Bits Mask */ +#define DMA_STATUS_EB_TX_ABORT 0x00080000 /* Error Bits - TX Abort */ +#define DMA_STATUS_EB_RX_ABORT 0x00100000 /* Error Bits - RX Abort */ +#define DMA_STATUS_TS_MASK 0x00700000 /* Transmit Process State */ +#define DMA_STATUS_TS_SHIFT 20 +#define DMA_STATUS_RS_MASK 0x000e0000 /* Receive Process State */ +#define DMA_STATUS_RS_SHIFT 17 +#define DMA_STATUS_NIS 0x00010000 /* Normal Interrupt Summary */ +#define DMA_STATUS_AIS 0x00008000 /* Abnormal Interrupt Summary */ +#define DMA_STATUS_ERI 0x00004000 /* Early Receive Interrupt */ +#define DMA_STATUS_FBI 0x00002000 /* Fatal Bus Error Interrupt */ +#define DMA_STATUS_ETI 0x00000400 /* Early Transmit Interrupt */ +#define DMA_STATUS_RWT 0x00000200 /* Receive Watchdog Timeout */ +#define DMA_STATUS_RPS 0x00000100 /* Receive Process Stopped */ +#define DMA_STATUS_RU 0x00000080 /* Receive Buffer Unavailable */ +#define DMA_STATUS_RI 0x00000040 /* Receive Interrupt */ +#define DMA_STATUS_UNF 0x00000020 /* Transmit Underflow */ +#define DMA_STATUS_OVF 0x00000010 /* Receive Overflow */ +#define DMA_STATUS_TJT 0x00000008 /* Transmit Jabber Timeout */ +#define DMA_STATUS_TU 0x00000004 /* Transmit Buffer Unavail */ +#define DMA_STATUS_TPS 0x00000002 /* Transmit Process Stopped */ +#define DMA_STATUS_TI 0x00000001 /* Transmit Interrupt */ + +/* Common MAC defines */ +#define MAC_ENABLE_TX 0x00000008 /* Transmitter Enable */ +#define MAC_ENABLE_RX 0x00000004 /* Receiver Enable */ + +/* XGMAC Operation Mode Register */ +#define XGMAC_OMR_TSF 0x00200000 /* TX FIFO Store and Forward */ +#define XGMAC_OMR_FTF 0x00100000 /* Flush Transmit FIFO */ +#define XGMAC_OMR_TTC 0x00020000 /* Transmit Threshhold Ctrl */ +#define XGMAC_OMR_TTC_MASK 0x00030000 +#define XGMAC_OMR_RFD 0x00006000 /* FC Deactivation Threshhold */ +#define XGMAC_OMR_RFD_MASK 0x00007000 /* FC Deact Threshhold MASK */ +#define XGMAC_OMR_RFA 0x00000600 /* FC Activation Threshhold */ +#define XGMAC_OMR_RFA_MASK 0x00000E00 /* FC Act Threshhold MASK */ +#define XGMAC_OMR_EFC 0x00000100 /* Enable Hardware FC */ +#define XGMAC_OMR_FEF 0x00000080 /* Forward Error Frames */ +#define XGMAC_OMR_DT 0x00000040 /* Drop TCP/IP csum Errors */ +#define XGMAC_OMR_RSF 0x00000020 /* RX FIFO Store and Forward */ +#define XGMAC_OMR_RTC 0x00000010 /* RX Threshhold Ctrl */ +#define XGMAC_OMR_RTC_MASK 0x00000018 /* RX Threshhold Ctrl MASK */ + +/* XGMAC HW Features Register */ +#define DMA_HW_FEAT_TXCOESEL 0x00010000 /* TX Checksum offload */ + +#define XGMAC_MMC_CTRL_CNT_FRZ 0x00000008 + +/* XGMAC Descriptor Defines */ +#define MAX_DESC_BUF_SZ (0x2000 - 8) + +#define RXDESC_EXT_STATUS 0x00000001 +#define RXDESC_CRC_ERR 0x00000002 +#define RXDESC_RX_ERR 0x00000008 +#define RXDESC_RX_WDOG 0x00000010 +#define RXDESC_FRAME_TYPE 0x00000020 +#define RXDESC_GIANT_FRAME 0x00000080 +#define RXDESC_LAST_SEG 0x00000100 +#define RXDESC_FIRST_SEG 0x00000200 +#define RXDESC_VLAN_FRAME 0x00000400 +#define RXDESC_OVERFLOW_ERR 0x00000800 +#define RXDESC_LENGTH_ERR 0x00001000 +#define RXDESC_SA_FILTER_FAIL 0x00002000 +#define RXDESC_DESCRIPTOR_ERR 0x00004000 +#define RXDESC_ERROR_SUMMARY 0x00008000 +#define RXDESC_FRAME_LEN_OFFSET 16 +#define RXDESC_FRAME_LEN_MASK 0x3fff0000 +#define RXDESC_DA_FILTER_FAIL 0x40000000 + +#define RXDESC1_END_RING 0x00008000 + +#define RXDESC_IP_PAYLOAD_MASK 0x00000003 +#define RXDESC_IP_PAYLOAD_UDP 0x00000001 +#define RXDESC_IP_PAYLOAD_TCP 0x00000002 +#define RXDESC_IP_PAYLOAD_ICMP 0x00000003 +#define RXDESC_IP_HEADER_ERR 0x00000008 +#define RXDESC_IP_PAYLOAD_ERR 0x00000010 +#define RXDESC_IPV4_PACKET 0x00000040 +#define RXDESC_IPV6_PACKET 0x00000080 +#define TXDESC_UNDERFLOW_ERR 0x00000001 +#define TXDESC_JABBER_TIMEOUT 0x00000002 +#define TXDESC_LOCAL_FAULT 0x00000004 +#define TXDESC_REMOTE_FAULT 0x00000008 +#define TXDESC_VLAN_FRAME 0x00000010 +#define TXDESC_FRAME_FLUSHED 0x00000020 +#define TXDESC_IP_HEADER_ERR 0x00000040 +#define TXDESC_PAYLOAD_CSUM_ERR 0x00000080 +#define TXDESC_ERROR_SUMMARY 0x00008000 +#define TXDESC_SA_CTRL_INSERT 0x00040000 +#define TXDESC_SA_CTRL_REPLACE 0x00080000 +#define TXDESC_2ND_ADDR_CHAINED 0x00100000 +#define TXDESC_END_RING 0x00200000 +#define TXDESC_CSUM_IP 0x00400000 +#define TXDESC_CSUM_IP_PAYLD 0x00800000 +#define TXDESC_CSUM_ALL 0x00C00000 +#define TXDESC_CRC_EN_REPLACE 0x01000000 +#define TXDESC_CRC_EN_APPEND 0x02000000 +#define TXDESC_DISABLE_PAD 0x04000000 +#define TXDESC_FIRST_SEG 0x10000000 +#define TXDESC_LAST_SEG 0x20000000 +#define TXDESC_INTERRUPT 0x40000000 + +#define DESC_OWN 0x80000000 +#define DESC_BUFFER1_SZ_MASK 0x00001fff +#define DESC_BUFFER2_SZ_MASK 0x1fff0000 +#define DESC_BUFFER2_SZ_OFFSET 16 + +struct xgmac_dma_desc { + __le32 flags; + __le32 buf_size; + __le32 buf1_addr; /* Buffer 1 Address Pointer */ + __le32 buf2_addr; /* Buffer 2 Address Pointer */ + __le32 ext_status; + __le32 res[3]; +}; + +struct xgmac_extra_stats { + /* Transmit errors */ + unsigned long tx_jabber; + unsigned long tx_frame_flushed; + unsigned long tx_payload_error; + unsigned long tx_ip_header_error; + unsigned long tx_local_fault; + unsigned long tx_remote_fault; + /* Receive errors */ + unsigned long rx_watchdog; + unsigned long rx_da_filter_fail; + unsigned long rx_sa_filter_fail; + unsigned long rx_payload_error; + unsigned long rx_ip_header_error; + /* Tx/Rx IRQ errors */ + unsigned long tx_undeflow; + unsigned long tx_process_stopped; + unsigned long rx_buf_unav; + unsigned long rx_process_stopped; + unsigned long tx_early; + unsigned long fatal_bus_error; +}; + +struct xgmac_priv { + struct xgmac_dma_desc *dma_rx; + struct sk_buff **rx_skbuff; + unsigned int rx_tail; + unsigned int rx_head; + + struct xgmac_dma_desc *dma_tx; + struct sk_buff **tx_skbuff; + unsigned int tx_head; + unsigned int tx_tail; + + void __iomem *base; + struct sk_buff_head rx_recycle; + unsigned int dma_buf_sz; + dma_addr_t dma_rx_phy; + dma_addr_t dma_tx_phy; + + struct net_device *dev; + struct device *device; + struct napi_struct napi; + + struct xgmac_extra_stats xstats; + + spinlock_t stats_lock; + int pmt_irq; + char rx_pause; + char tx_pause; + int wolopts; +}; + +/* XGMAC Configuration Settings */ +#define MAX_MTU 9000 +#define PAUSE_TIME 0x400 + +#define DMA_RX_RING_SZ 256 +#define DMA_TX_RING_SZ 128 +/* minimum number of free TX descriptors required to wake up TX process */ +#define TX_THRESH (DMA_TX_RING_SZ/4) + +/* DMA descriptor ring helpers */ +#define dma_ring_incr(n, s) (((n) + 1) & ((s) - 1)) +#define dma_ring_space(h, t, s) CIRC_SPACE(h, t, s) +#define dma_ring_cnt(h, t, s) CIRC_CNT(h, t, s) + +/* XGMAC Descriptor Access Helpers */ +static inline void desc_set_buf_len(struct xgmac_dma_desc *p, u32 buf_sz) +{ + if (buf_sz > MAX_DESC_BUF_SZ) + p->buf_size = cpu_to_le32(MAX_DESC_BUF_SZ | + (buf_sz - MAX_DESC_BUF_SZ) << DESC_BUFFER2_SZ_OFFSET); + else + p->buf_size = cpu_to_le32(buf_sz); +} + +static inline int desc_get_buf_len(struct xgmac_dma_desc *p) +{ + u32 len = cpu_to_le32(p->flags); + return (len & DESC_BUFFER1_SZ_MASK) + + ((len & DESC_BUFFER2_SZ_MASK) >> DESC_BUFFER2_SZ_OFFSET); +} + +static inline void desc_init_rx_desc(struct xgmac_dma_desc *p, int ring_size, + int buf_sz) +{ + struct xgmac_dma_desc *end = p + ring_size - 1; + + memset(p, 0, sizeof(*p) * ring_size); + + for (; p <= end; p++) + desc_set_buf_len(p, buf_sz); + + end->buf_size |= cpu_to_le32(RXDESC1_END_RING); +} + +static inline void desc_init_tx_desc(struct xgmac_dma_desc *p, u32 ring_size) +{ + memset(p, 0, sizeof(*p) * ring_size); + p[ring_size - 1].flags = cpu_to_le32(TXDESC_END_RING); +} + +static inline int desc_get_owner(struct xgmac_dma_desc *p) +{ + return le32_to_cpu(p->flags) & DESC_OWN; +} + +static inline void desc_set_rx_owner(struct xgmac_dma_desc *p) +{ + /* Clear all fields and set the owner */ + p->flags = cpu_to_le32(DESC_OWN); +} + +static inline void desc_set_tx_owner(struct xgmac_dma_desc *p, u32 flags) +{ + u32 tmpflags = le32_to_cpu(p->flags); + tmpflags &= TXDESC_END_RING; + tmpflags |= flags | DESC_OWN; + p->flags = cpu_to_le32(tmpflags); +} + +static inline int desc_get_tx_ls(struct xgmac_dma_desc *p) +{ + return le32_to_cpu(p->flags) & TXDESC_LAST_SEG; +} + +static inline u32 desc_get_buf_addr(struct xgmac_dma_desc *p) +{ + return le32_to_cpu(p->buf1_addr); +} + +static inline void desc_set_buf_addr(struct xgmac_dma_desc *p, + u32 paddr, int len) +{ + p->buf1_addr = cpu_to_le32(paddr); + if (len > MAX_DESC_BUF_SZ) + p->buf2_addr = cpu_to_le32(paddr + MAX_DESC_BUF_SZ); +} + +static inline void desc_set_buf_addr_and_size(struct xgmac_dma_desc *p, + u32 paddr, int len) +{ + desc_set_buf_len(p, len); + desc_set_buf_addr(p, paddr, len); +} + +static inline int desc_get_rx_frame_len(struct xgmac_dma_desc *p) +{ + u32 data = le32_to_cpu(p->flags); + u32 len = (data & RXDESC_FRAME_LEN_MASK) >> RXDESC_FRAME_LEN_OFFSET; + if (data & RXDESC_FRAME_TYPE) + len -= ETH_FCS_LEN; + + return len; +} + +static void xgmac_dma_flush_tx_fifo(void __iomem *ioaddr) +{ + int timeout = 1000; + u32 reg = readl(ioaddr + XGMAC_OMR); + writel(reg | XGMAC_OMR_FTF, ioaddr + XGMAC_OMR); + + while ((timeout-- > 0) && readl(ioaddr + XGMAC_OMR) & XGMAC_OMR_FTF) + udelay(1); +} + +static int desc_get_tx_status(struct xgmac_priv *priv, struct xgmac_dma_desc *p) +{ + struct xgmac_extra_stats *x = &priv->xstats; + u32 status = le32_to_cpu(p->flags); + + if (!(status & TXDESC_ERROR_SUMMARY)) + return 0; + + netdev_dbg(priv->dev, "tx desc error = 0x%08x\n", status); + if (status & TXDESC_JABBER_TIMEOUT) + x->tx_jabber++; + if (status & TXDESC_FRAME_FLUSHED) + x->tx_frame_flushed++; + if (status & TXDESC_UNDERFLOW_ERR) + xgmac_dma_flush_tx_fifo(priv->base); + if (status & TXDESC_IP_HEADER_ERR) + x->tx_ip_header_error++; + if (status & TXDESC_LOCAL_FAULT) + x->tx_local_fault++; + if (status & TXDESC_REMOTE_FAULT) + x->tx_remote_fault++; + if (status & TXDESC_PAYLOAD_CSUM_ERR) + x->tx_payload_error++; + + return -1; +} + +static int desc_get_rx_status(struct xgmac_priv *priv, struct xgmac_dma_desc *p) +{ + struct xgmac_extra_stats *x = &priv->xstats; + int ret = CHECKSUM_UNNECESSARY; + u32 status = le32_to_cpu(p->flags); + u32 ext_status = le32_to_cpu(p->ext_status); + + if (status & RXDESC_DA_FILTER_FAIL) { + netdev_dbg(priv->dev, "XGMAC RX : Dest Address filter fail\n"); + x->rx_da_filter_fail++; + return -1; + } + + /* Check if packet has checksum already */ + if ((status & RXDESC_FRAME_TYPE) && (status & RXDESC_EXT_STATUS) && + !(ext_status & RXDESC_IP_PAYLOAD_MASK)) + ret = CHECKSUM_NONE; + + netdev_dbg(priv->dev, "rx status - frame type=%d, csum = %d, ext stat %08x\n", + (status & RXDESC_FRAME_TYPE) ? 1 : 0, ret, ext_status); + + if (!(status & RXDESC_ERROR_SUMMARY)) + return ret; + + /* Handle any errors */ + if (status & (RXDESC_DESCRIPTOR_ERR | RXDESC_OVERFLOW_ERR | + RXDESC_GIANT_FRAME | RXDESC_LENGTH_ERR | RXDESC_CRC_ERR)) + return -1; + + if (status & RXDESC_EXT_STATUS) { + if (ext_status & RXDESC_IP_HEADER_ERR) + x->rx_ip_header_error++; + if (ext_status & RXDESC_IP_PAYLOAD_ERR) + x->rx_payload_error++; + netdev_dbg(priv->dev, "IP checksum error - stat %08x\n", + ext_status); + return CHECKSUM_NONE; + } + + return ret; +} + +static inline void xgmac_mac_enable(void __iomem *ioaddr) +{ + u32 value = readl(ioaddr + XGMAC_CONTROL); + value |= MAC_ENABLE_RX | MAC_ENABLE_TX; + writel(value, ioaddr + XGMAC_CONTROL); + + value = readl(ioaddr + XGMAC_DMA_CONTROL); + value |= DMA_CONTROL_ST | DMA_CONTROL_SR; + writel(value, ioaddr + XGMAC_DMA_CONTROL); +} + +static inline void xgmac_mac_disable(void __iomem *ioaddr) +{ + u32 value = readl(ioaddr + XGMAC_DMA_CONTROL); + value &= ~(DMA_CONTROL_ST | DMA_CONTROL_SR); + writel(value, ioaddr + XGMAC_DMA_CONTROL); + + value = readl(ioaddr + XGMAC_CONTROL); + value &= ~(MAC_ENABLE_TX | MAC_ENABLE_RX); + writel(value, ioaddr + XGMAC_CONTROL); +} + +static void xgmac_set_mac_addr(void __iomem *ioaddr, unsigned char *addr, + int num) +{ + u32 data; + + data = (addr[5] << 8) | addr[4] | (num ? XGMAC_ADDR_AE : 0); + writel(data, ioaddr + XGMAC_ADDR_HIGH(num)); + data = (addr[3] << 24) | (addr[2] << 16) | (addr[1] << 8) | addr[0]; + writel(data, ioaddr + XGMAC_ADDR_LOW(num)); +} + +static void xgmac_get_mac_addr(void __iomem *ioaddr, unsigned char *addr, + int num) +{ + u32 hi_addr, lo_addr; + + /* Read the MAC address from the hardware */ + hi_addr = readl(ioaddr + XGMAC_ADDR_HIGH(num)); + lo_addr = readl(ioaddr + XGMAC_ADDR_LOW(num)); + + /* Extract the MAC address from the high and low words */ + addr[0] = lo_addr & 0xff; + addr[1] = (lo_addr >> 8) & 0xff; + addr[2] = (lo_addr >> 16) & 0xff; + addr[3] = (lo_addr >> 24) & 0xff; + addr[4] = hi_addr & 0xff; + addr[5] = (hi_addr >> 8) & 0xff; +} + +static int xgmac_set_flow_ctrl(struct xgmac_priv *priv, int rx, int tx) +{ + u32 reg; + unsigned int flow = 0; + + priv->rx_pause = rx; + priv->tx_pause = tx; + + if (rx || tx) { + if (rx) + flow |= XGMAC_FLOW_CTRL_RFE; + if (tx) + flow |= XGMAC_FLOW_CTRL_TFE; + + flow |= XGMAC_FLOW_CTRL_PLT | XGMAC_FLOW_CTRL_UP; + flow |= (PAUSE_TIME << XGMAC_FLOW_CTRL_PT_SHIFT); + + writel(flow, priv->base + XGMAC_FLOW_CTRL); + + reg = readl(priv->base + XGMAC_OMR); + reg |= XGMAC_OMR_EFC; + writel(reg, priv->base + XGMAC_OMR); + } else { + writel(0, priv->base + XGMAC_FLOW_CTRL); + + reg = readl(priv->base + XGMAC_OMR); + reg &= ~XGMAC_OMR_EFC; + writel(reg, priv->base + XGMAC_OMR); + } + + return 0; +} + +static void xgmac_rx_refill(struct xgmac_priv *priv) +{ + struct xgmac_dma_desc *p; + dma_addr_t paddr; + + while (dma_ring_space(priv->rx_head, priv->rx_tail, DMA_RX_RING_SZ) > 1) { + int entry = priv->rx_head; + struct sk_buff *skb; + + p = priv->dma_rx + entry; + + if (priv->rx_skbuff[entry] != NULL) + continue; + + skb = __skb_dequeue(&priv->rx_recycle); + if (skb == NULL) + skb = netdev_alloc_skb(priv->dev, priv->dma_buf_sz); + if (unlikely(skb == NULL)) + break; + + priv->rx_skbuff[entry] = skb; + paddr = dma_map_single(priv->device, skb->data, + priv->dma_buf_sz, DMA_FROM_DEVICE); + desc_set_buf_addr(p, paddr, priv->dma_buf_sz); + + netdev_dbg(priv->dev, "rx ring: head %d, tail %d\n", + priv->rx_head, priv->rx_tail); + + priv->rx_head = dma_ring_incr(priv->rx_head, DMA_RX_RING_SZ); + /* Ensure descriptor is in memory before handing to h/w */ + wmb(); + desc_set_rx_owner(p); + } +} + +/** + * init_xgmac_dma_desc_rings - init the RX/TX descriptor rings + * @dev: net device structure + * Description: this function initializes the DMA RX/TX descriptors + * and allocates the socket buffers. + */ +static int xgmac_dma_desc_rings_init(struct net_device *dev) +{ + struct xgmac_priv *priv = netdev_priv(dev); + unsigned int bfsize; + + /* Set the Buffer size according to the MTU; + * indeed, in case of jumbo we need to bump-up the buffer sizes. + */ + bfsize = ALIGN(dev->mtu + ETH_HLEN + ETH_FCS_LEN + NET_IP_ALIGN + 64, + 64); + + netdev_dbg(priv->dev, "mtu [%d] bfsize [%d]\n", dev->mtu, bfsize); + + priv->rx_skbuff = kzalloc(sizeof(struct sk_buff *) * DMA_RX_RING_SZ, + GFP_KERNEL); + if (!priv->rx_skbuff) + return -ENOMEM; + + priv->dma_rx = dma_alloc_coherent(priv->device, + DMA_RX_RING_SZ * + sizeof(struct xgmac_dma_desc), + &priv->dma_rx_phy, + GFP_KERNEL); + if (!priv->dma_rx) + goto err_dma_rx; + + priv->tx_skbuff = kzalloc(sizeof(struct sk_buff *) * DMA_TX_RING_SZ, + GFP_KERNEL); + if (!priv->tx_skbuff) + goto err_tx_skb; + + priv->dma_tx = dma_alloc_coherent(priv->device, + DMA_TX_RING_SZ * + sizeof(struct xgmac_dma_desc), + &priv->dma_tx_phy, + GFP_KERNEL); + if (!priv->dma_tx) + goto err_dma_tx; + + netdev_dbg(priv->dev, "DMA desc rings: virt addr (Rx %p, " + "Tx %p)\n\tDMA phy addr (Rx 0x%08x, Tx 0x%08x)\n", + priv->dma_rx, priv->dma_tx, + (unsigned int)priv->dma_rx_phy, (unsigned int)priv->dma_tx_phy); + + priv->rx_tail = 0; + priv->rx_head = 0; + priv->dma_buf_sz = bfsize; + desc_init_rx_desc(priv->dma_rx, DMA_RX_RING_SZ, priv->dma_buf_sz); + xgmac_rx_refill(priv); + + priv->tx_tail = 0; + priv->tx_head = 0; + desc_init_tx_desc(priv->dma_tx, DMA_TX_RING_SZ); + + writel(priv->dma_tx_phy, priv->base + XGMAC_DMA_TX_BASE_ADDR); + writel(priv->dma_rx_phy, priv->base + XGMAC_DMA_RX_BASE_ADDR); + + return 0; + +err_dma_tx: + kfree(priv->tx_skbuff); +err_tx_skb: + dma_free_coherent(priv->device, + DMA_RX_RING_SZ * sizeof(struct xgmac_dma_desc), + priv->dma_rx, priv->dma_rx_phy); +err_dma_rx: + kfree(priv->rx_skbuff); + return -ENOMEM; +} + +static void xgmac_free_rx_skbufs(struct xgmac_priv *priv) +{ + int i; + struct xgmac_dma_desc *p; + + if (!priv->rx_skbuff) + return; + + for (i = 0; i < DMA_RX_RING_SZ; i++) { + if (priv->rx_skbuff[i] == NULL) + continue; + + p = priv->dma_rx + i; + dma_unmap_single(priv->device, desc_get_buf_addr(p), + priv->dma_buf_sz, DMA_FROM_DEVICE); + dev_kfree_skb_any(priv->rx_skbuff[i]); + priv->rx_skbuff[i] = NULL; + } +} + +static void xgmac_free_tx_skbufs(struct xgmac_priv *priv) +{ + int i, f; + struct xgmac_dma_desc *p; + + if (!priv->tx_skbuff) + return; + + for (i = 0; i < DMA_TX_RING_SZ; i++) { + if (priv->tx_skbuff[i] == NULL) + continue; + + p = priv->dma_tx + i; + dma_unmap_single(priv->device, desc_get_buf_addr(p), + desc_get_buf_len(p), DMA_TO_DEVICE); + + for (f = 0; f < skb_shinfo(priv->tx_skbuff[i])->nr_frags; f++) { + p = priv->dma_tx + i++; + dma_unmap_page(priv->device, desc_get_buf_addr(p), + desc_get_buf_len(p), DMA_TO_DEVICE); + } + + dev_kfree_skb_any(priv->tx_skbuff[i]); + priv->tx_skbuff[i] = NULL; + } +} + +static void xgmac_free_dma_desc_rings(struct xgmac_priv *priv) +{ + /* Release the DMA TX/RX socket buffers */ + xgmac_free_rx_skbufs(priv); + xgmac_free_tx_skbufs(priv); + + /* Free the consistent memory allocated for descriptor rings */ + if (priv->dma_tx) { + dma_free_coherent(priv->device, + DMA_TX_RING_SZ * sizeof(struct xgmac_dma_desc), + priv->dma_tx, priv->dma_tx_phy); + priv->dma_tx = NULL; + } + if (priv->dma_rx) { + dma_free_coherent(priv->device, + DMA_RX_RING_SZ * sizeof(struct xgmac_dma_desc), + priv->dma_rx, priv->dma_rx_phy); + priv->dma_rx = NULL; + } + kfree(priv->rx_skbuff); + priv->rx_skbuff = NULL; + kfree(priv->tx_skbuff); + priv->tx_skbuff = NULL; +} + +/** + * xgmac_tx: + * @priv: private driver structure + * Description: it reclaims resources after transmission completes. + */ +static void xgmac_tx_complete(struct xgmac_priv *priv) +{ + int i; + void __iomem *ioaddr = priv->base; + + writel(DMA_STATUS_TU | DMA_STATUS_NIS, ioaddr + XGMAC_DMA_STATUS); + + while (dma_ring_cnt(priv->tx_head, priv->tx_tail, DMA_TX_RING_SZ)) { + unsigned int entry = priv->tx_tail; + struct sk_buff *skb = priv->tx_skbuff[entry]; + struct xgmac_dma_desc *p = priv->dma_tx + entry; + + /* Check if the descriptor is owned by the DMA. */ + if (desc_get_owner(p)) + break; + + /* Verify tx error by looking at the last segment */ + if (desc_get_tx_ls(p)) + desc_get_tx_status(priv, p); + + netdev_dbg(priv->dev, "tx ring: curr %d, dirty %d\n", + priv->tx_head, priv->tx_tail); + + dma_unmap_single(priv->device, desc_get_buf_addr(p), + desc_get_buf_len(p), DMA_TO_DEVICE); + + priv->tx_skbuff[entry] = NULL; + priv->tx_tail = dma_ring_incr(entry, DMA_TX_RING_SZ); + + if (!skb) { + continue; + } + + for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { + entry = priv->tx_tail = dma_ring_incr(priv->tx_tail, + DMA_TX_RING_SZ); + p = priv->dma_tx + priv->tx_tail; + + dma_unmap_page(priv->device, desc_get_buf_addr(p), + desc_get_buf_len(p), DMA_TO_DEVICE); + } + + /* + * If there's room in the queue (limit it to size) + * we add this skb back into the pool, + * if it's the right size. + */ + if ((skb_queue_len(&priv->rx_recycle) < + DMA_RX_RING_SZ) && + skb_recycle_check(skb, priv->dma_buf_sz)) + __skb_queue_head(&priv->rx_recycle, skb); + else + dev_kfree_skb(skb); + } + + if (dma_ring_space(priv->tx_head, priv->tx_tail, DMA_TX_RING_SZ) > + TX_THRESH) + netif_wake_queue(priv->dev); +} + +/** + * xgmac_tx_err: + * @priv: pointer to the private device structure + * Description: it cleans the descriptors and restarts the transmission + * in case of errors. + */ +static void xgmac_tx_err(struct xgmac_priv *priv) +{ + u32 reg, value, inten; + + netif_stop_queue(priv->dev); + + inten = readl(priv->base + XGMAC_DMA_INTR_ENA); + writel(0, priv->base + XGMAC_DMA_INTR_ENA); + + reg = readl(priv->base + XGMAC_DMA_CONTROL); + writel(reg & ~DMA_CONTROL_ST, priv->base + XGMAC_DMA_CONTROL); + do { + value = readl(priv->base + XGMAC_DMA_STATUS) & 0x700000; + } while (value && (value != 0x600000)); + + xgmac_free_tx_skbufs(priv); + desc_init_tx_desc(priv->dma_tx, DMA_TX_RING_SZ); + priv->tx_tail = 0; + priv->tx_head = 0; + writel(priv->dma_tx_phy, priv->base + XGMAC_DMA_TX_BASE_ADDR); + writel(reg | DMA_CONTROL_ST, priv->base + XGMAC_DMA_CONTROL); + + writel(DMA_STATUS_TU | DMA_STATUS_TPS | DMA_STATUS_NIS | DMA_STATUS_AIS, + priv->base + XGMAC_DMA_STATUS); + writel(inten, priv->base + XGMAC_DMA_INTR_ENA); + + netif_wake_queue(priv->dev); +} + +static int xgmac_hw_init(struct net_device *dev) +{ + u32 value, ctrl; + int limit; + struct xgmac_priv *priv = netdev_priv(dev); + void __iomem *ioaddr = priv->base; + + /* Save the ctrl register value */ + ctrl = readl(ioaddr + XGMAC_CONTROL) & XGMAC_CONTROL_SPD_MASK; + + /* SW reset */ + value = DMA_BUS_MODE_SFT_RESET; + writel(value, ioaddr + XGMAC_DMA_BUS_MODE); + limit = 15000; + while (limit-- && + (readl(ioaddr + XGMAC_DMA_BUS_MODE) & DMA_BUS_MODE_SFT_RESET)) + cpu_relax(); + if (limit < 0) + return -EBUSY; + + value = (0x10 << DMA_BUS_MODE_PBL_SHIFT) | + (0x10 << DMA_BUS_MODE_RPBL_SHIFT) | + DMA_BUS_MODE_FB | DMA_BUS_MODE_ATDS | DMA_BUS_MODE_AAL; + writel(value, ioaddr + XGMAC_DMA_BUS_MODE); + + /* Enable interrupts */ + writel(DMA_INTR_DEFAULT_MASK, ioaddr + XGMAC_DMA_STATUS); + writel(DMA_INTR_DEFAULT_MASK, ioaddr + XGMAC_DMA_INTR_ENA); + + /* XGMAC requires AXI bus init. This is a 'magic number' for now */ + writel(0x0077000E, ioaddr + XGMAC_DMA_AXI_BUS); + + ctrl |= XGMAC_CONTROL_DDIC | XGMAC_CONTROL_JE | XGMAC_CONTROL_ACS | + XGMAC_CONTROL_CAR; + if (dev->features & NETIF_F_RXCSUM) + ctrl |= XGMAC_CONTROL_IPC; + writel(ctrl, ioaddr + XGMAC_CONTROL); + + value = DMA_CONTROL_DFF; + writel(value, ioaddr + XGMAC_DMA_CONTROL); + + /* Set the HW DMA mode and the COE */ + writel(XGMAC_OMR_TSF | XGMAC_OMR_RSF | XGMAC_OMR_RFD | XGMAC_OMR_RFA, + ioaddr + XGMAC_OMR); + + /* Reset the MMC counters */ + writel(1, ioaddr + XGMAC_MMC_CTRL); + return 0; +} + +/** + * xgmac_open - open entry point of the driver + * @dev : pointer to the device structure. + * Description: + * This function is the open entry point of the driver. + * Return value: + * 0 on success and an appropriate (-)ve integer as defined in errno.h + * file on failure. + */ +static int xgmac_open(struct net_device *dev) +{ + int ret; + struct xgmac_priv *priv = netdev_priv(dev); + void __iomem *ioaddr = priv->base; + + /* Check that the MAC address is valid. If its not, refuse + * to bring the device up. The user must specify an + * address using the following linux command: + * ifconfig eth0 hw ether xx:xx:xx:xx:xx:xx */ + if (!is_valid_ether_addr(dev->dev_addr)) { + random_ether_addr(dev->dev_addr); + netdev_dbg(priv->dev, "generated random MAC address %pM\n", + dev->dev_addr); + } + + skb_queue_head_init(&priv->rx_recycle); + memset(&priv->xstats, 0, sizeof(struct xgmac_extra_stats)); + + /* Initialize the XGMAC and descriptors */ + xgmac_hw_init(dev); + xgmac_set_mac_addr(ioaddr, dev->dev_addr, 0); + xgmac_set_flow_ctrl(priv, priv->rx_pause, priv->tx_pause); + + ret = xgmac_dma_desc_rings_init(dev); + if (ret < 0) + return ret; + + /* Enable the MAC Rx/Tx */ + xgmac_mac_enable(ioaddr); + + napi_enable(&priv->napi); + netif_start_queue(dev); + + return 0; +} + +/** + * xgmac_release - close entry point of the driver + * @dev : device pointer. + * Description: + * This is the stop entry point of the driver. + */ +static int xgmac_stop(struct net_device *dev) +{ + struct xgmac_priv *priv = netdev_priv(dev); + + netif_stop_queue(dev); + + if (readl(priv->base + XGMAC_DMA_INTR_ENA)) + napi_disable(&priv->napi); + + writel(0, priv->base + XGMAC_DMA_INTR_ENA); + skb_queue_purge(&priv->rx_recycle); + + /* Disable the MAC core */ + xgmac_mac_disable(priv->base); + + /* Release and free the Rx/Tx resources */ + xgmac_free_dma_desc_rings(priv); + + return 0; +} + +/** + * xgmac_xmit: + * @skb : the socket buffer + * @dev : device pointer + * Description : Tx entry point of the driver. + */ +static netdev_tx_t xgmac_xmit(struct sk_buff *skb, struct net_device *dev) +{ + struct xgmac_priv *priv = netdev_priv(dev); + unsigned int entry; + int i; + int nfrags = skb_shinfo(skb)->nr_frags; + struct xgmac_dma_desc *desc, *first; + unsigned int desc_flags; + unsigned int len; + dma_addr_t paddr; + + if (dma_ring_space(priv->tx_head, priv->tx_tail, DMA_TX_RING_SZ) < + (nfrags + 1)) { + writel(DMA_INTR_DEFAULT_MASK | DMA_INTR_ENA_TIE, + priv->base + XGMAC_DMA_INTR_ENA); + netif_stop_queue(dev); + return NETDEV_TX_BUSY; + } + + desc_flags = (skb->ip_summed == CHECKSUM_PARTIAL) ? + TXDESC_CSUM_ALL : 0; + entry = priv->tx_head; + desc = priv->dma_tx + entry; + first = desc; + + len = skb_headlen(skb); + paddr = dma_map_single(priv->device, skb->data, len, DMA_TO_DEVICE); + if (dma_mapping_error(priv->device, paddr)) { + dev_kfree_skb(skb); + return -EIO; + } + priv->tx_skbuff[entry] = skb; + desc_set_buf_addr_and_size(desc, paddr, len); + + for (i = 0; i < nfrags; i++) { + skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; + + len = frag->size; + + paddr = skb_frag_dma_map(priv->device, frag, 0, len, + DMA_TO_DEVICE); + if (dma_mapping_error(priv->device, paddr)) { + dev_kfree_skb(skb); + return -EIO; + } + + entry = dma_ring_incr(entry, DMA_TX_RING_SZ); + desc = priv->dma_tx + entry; + priv->tx_skbuff[entry] = NULL; + + desc_set_buf_addr_and_size(desc, paddr, len); + if (i < (nfrags - 1)) + desc_set_tx_owner(desc, desc_flags); + } + + /* Interrupt on completition only for the latest segment */ + if (desc != first) + desc_set_tx_owner(desc, desc_flags | + TXDESC_LAST_SEG | TXDESC_INTERRUPT); + else + desc_flags |= TXDESC_LAST_SEG | TXDESC_INTERRUPT; + + /* Set owner on first desc last to avoid race condition */ + wmb(); + desc_set_tx_owner(first, desc_flags | TXDESC_FIRST_SEG); + + priv->tx_head = dma_ring_incr(entry, DMA_TX_RING_SZ); + + writel(1, priv->base + XGMAC_DMA_TX_POLL); + + return NETDEV_TX_OK; +} + +static int xgmac_rx(struct xgmac_priv *priv, int limit) +{ + unsigned int entry; + unsigned int count = 0; + struct xgmac_dma_desc *p; + + while (count < limit) { + int ip_checksum; + struct sk_buff *skb; + int frame_len; + + writel(DMA_STATUS_RI | DMA_STATUS_NIS, + priv->base + XGMAC_DMA_STATUS); + + entry = priv->rx_tail; + p = priv->dma_rx + entry; + if (desc_get_owner(p)) + break; + + count++; + priv->rx_tail = dma_ring_incr(priv->rx_tail, DMA_RX_RING_SZ); + + /* read the status of the incoming frame */ + ip_checksum = desc_get_rx_status(priv, p); + if (ip_checksum < 0) + continue; + + skb = priv->rx_skbuff[entry]; + if (unlikely(!skb)) { + netdev_err(priv->dev, "Inconsistent Rx descriptor chain\n"); + break; + } + priv->rx_skbuff[entry] = NULL; + + frame_len = desc_get_rx_frame_len(p); + netdev_dbg(priv->dev, "RX frame size %d, COE status: %d\n", + frame_len, ip_checksum); + + skb_put(skb, frame_len); + dma_unmap_single(priv->device, desc_get_buf_addr(p), + frame_len, DMA_FROM_DEVICE); + + skb->protocol = eth_type_trans(skb, priv->dev); + skb->ip_summed = ip_checksum; + if (ip_checksum == CHECKSUM_NONE) + netif_receive_skb(skb); + else + napi_gro_receive(&priv->napi, skb); + } + + xgmac_rx_refill(priv); + + writel(1, priv->base + XGMAC_DMA_RX_POLL); + + return count; +} + +/** + * xgmac_poll - xgmac poll method (NAPI) + * @napi : pointer to the napi structure. + * @budget : maximum number of packets that the current CPU can receive from + * all interfaces. + * Description : + * This function implements the the reception process. + * Also it runs the TX completion thread + */ +static int xgmac_poll(struct napi_struct *napi, int budget) +{ + struct xgmac_priv *priv = container_of(napi, + struct xgmac_priv, napi); + int work_done = 0; + + xgmac_tx_complete(priv); + work_done = xgmac_rx(priv, budget); + + if (work_done < budget) { + napi_complete(napi); + writel(DMA_INTR_DEFAULT_MASK, priv->base + XGMAC_DMA_INTR_ENA); + } + return work_done; +} + +/** + * xgmac_tx_timeout + * @dev : Pointer to net device structure + * Description: this function is called when a packet transmission fails to + * complete within a reasonable tmrate. The driver will mark the error in the + * netdev structure and arrange for the device to be reset to a sane state + * in order to transmit a new packet. + */ +static void xgmac_tx_timeout(struct net_device *dev) +{ + struct xgmac_priv *priv = netdev_priv(dev); + + /* Clear Tx resources and restart transmitting again */ + xgmac_tx_err(priv); +} + +/** + * xgmac_set_rx_mode - entry point for multicast addressing + * @dev : pointer to the device structure + * Description: + * This function is a driver entry point which gets called by the kernel + * whenever multicast addresses must be enabled/disabled. + * Return value: + * void. + */ +static void xgmac_set_rx_mode(struct net_device *dev) +{ + int i; + struct xgmac_priv *priv = netdev_priv(dev); + void __iomem *ioaddr = priv->base; + unsigned int value = 0; + u32 hash_filter[XGMAC_NUM_HASH]; + int reg = 1; + struct netdev_hw_addr *ha; + bool use_hash = false; + + netdev_dbg(priv->dev, "# mcasts %d, # unicast %d\n", + netdev_mc_count(dev), netdev_uc_count(dev)); + + if (dev->flags & IFF_PROMISC) { + writel(XGMAC_FRAME_FILTER_PR, ioaddr + XGMAC_FRAME_FILTER); + return; + } + + memset(hash_filter, 0, sizeof(hash_filter)); + + if (netdev_uc_count(dev) > XGMAC_MAX_FILTER_ADDR) { + use_hash = true; + value |= XGMAC_FRAME_FILTER_HUC | XGMAC_FRAME_FILTER_HPF; + } + netdev_for_each_uc_addr(ha, dev) { + if (use_hash) { + u32 bit_nr = ~ether_crc(ETH_ALEN, ha->addr) >> 23; + + /* The most significant 4 bits determine the register to + * use (H/L) while the other 5 bits determine the bit + * within the register. */ + hash_filter[bit_nr >> 5] |= 1 << (bit_nr & 31); + } else { + xgmac_set_mac_addr(ioaddr, ha->addr, reg); + reg++; + } + } + + if (dev->flags & IFF_ALLMULTI) { + value |= XGMAC_FRAME_FILTER_PM; + goto out; + } + + if ((netdev_mc_count(dev) + reg - 1) > XGMAC_MAX_FILTER_ADDR) { + use_hash = true; + value |= XGMAC_FRAME_FILTER_HMC | XGMAC_FRAME_FILTER_HPF; + } + netdev_for_each_mc_addr(ha, dev) { + if (use_hash) { + u32 bit_nr = ~ether_crc(ETH_ALEN, ha->addr) >> 23; + + /* The most significant 4 bits determine the register to + * use (H/L) while the other 5 bits determine the bit + * within the register. */ + hash_filter[bit_nr >> 5] |= 1 << (bit_nr & 31); + } else { + xgmac_set_mac_addr(ioaddr, ha->addr, reg); + reg++; + } + } + +out: + for (i = 0; i < XGMAC_NUM_HASH; i++) + writel(hash_filter[i], ioaddr + XGMAC_HASH(i)); + + writel(value, ioaddr + XGMAC_FRAME_FILTER); +} + +/** + * xgmac_change_mtu - entry point to change MTU size for the device. + * @dev : device pointer. + * @new_mtu : the new MTU size for the device. + * Description: the Maximum Transfer Unit (MTU) is used by the network layer + * to drive packet transmission. Ethernet has an MTU of 1500 octets + * (ETH_DATA_LEN). This value can be changed with ifconfig. + * Return value: + * 0 on success and an appropriate (-)ve integer as defined in errno.h + * file on failure. + */ +static int xgmac_change_mtu(struct net_device *dev, int new_mtu) +{ + struct xgmac_priv *priv = netdev_priv(dev); + int old_mtu; + + if ((new_mtu < 46) || (new_mtu > MAX_MTU)) { + netdev_err(priv->dev, "invalid MTU, max MTU is: %d\n", MAX_MTU); + return -EINVAL; + } + + old_mtu = dev->mtu; + dev->mtu = new_mtu; + + /* return early if the buffer sizes will not change */ + if (old_mtu <= ETH_DATA_LEN && new_mtu <= ETH_DATA_LEN) + return 0; + if (old_mtu == new_mtu) + return 0; + + /* Stop everything, get ready to change the MTU */ + if (!netif_running(dev)) + return 0; + + /* Bring the interface down and then back up */ + xgmac_stop(dev); + return xgmac_open(dev); +} + +static irqreturn_t xgmac_pmt_interrupt(int irq, void *dev_id) +{ + u32 intr_status; + struct net_device *dev = (struct net_device *)dev_id; + struct xgmac_priv *priv = netdev_priv(dev); + void __iomem *ioaddr = priv->base; + + intr_status = readl(ioaddr + XGMAC_INT_STAT); + if (intr_status & XGMAC_INT_STAT_PMT) { + netdev_dbg(priv->dev, "received Magic frame\n"); + /* clear the PMT bits 5 and 6 by reading the PMT */ + readl(ioaddr + XGMAC_PMT); + } + return IRQ_HANDLED; +} + +static irqreturn_t xgmac_interrupt(int irq, void *dev_id) +{ + u32 intr_status; + bool tx_err = false; + struct net_device *dev = (struct net_device *)dev_id; + struct xgmac_priv *priv = netdev_priv(dev); + struct xgmac_extra_stats *x = &priv->xstats; + + /* read the status register (CSR5) */ + intr_status = readl(priv->base + XGMAC_DMA_STATUS); + intr_status &= readl(priv->base + XGMAC_DMA_INTR_ENA); + writel(intr_status, priv->base + XGMAC_DMA_STATUS); + + /* It displays the DMA process states (CSR5 register) */ + /* ABNORMAL interrupts */ + if (unlikely(intr_status & DMA_STATUS_AIS)) { + if (intr_status & DMA_STATUS_TJT) { + netdev_err(priv->dev, "transmit jabber\n"); + x->tx_jabber++; + } + if (intr_status & DMA_STATUS_RU) + x->rx_buf_unav++; + if (intr_status & DMA_STATUS_RPS) { + netdev_err(priv->dev, "receive process stopped\n"); + x->rx_process_stopped++; + } + if (intr_status & DMA_STATUS_ETI) { + netdev_err(priv->dev, "transmit early interrupt\n"); + x->tx_early++; + } + if (intr_status & DMA_STATUS_TPS) { + netdev_err(priv->dev, "transmit process stopped\n"); + x->tx_process_stopped++; + tx_err = true; + } + if (intr_status & DMA_STATUS_FBI) { + netdev_err(priv->dev, "fatal bus error\n"); + x->fatal_bus_error++; + tx_err = true; + } + + if (tx_err) + xgmac_tx_err(priv); + } + + /* TX/RX NORMAL interrupts */ + if (intr_status & (DMA_STATUS_RI | DMA_STATUS_TU)) { + writel(DMA_INTR_ABNORMAL, priv->base + XGMAC_DMA_INTR_ENA); + napi_schedule(&priv->napi); + } + + return IRQ_HANDLED; +} + +#ifdef CONFIG_NET_POLL_CONTROLLER +/* Polling receive - used by NETCONSOLE and other diagnostic tools + * to allow network I/O with interrupts disabled. */ +static void xgmac_poll_controller(struct net_device *dev) +{ + disable_irq(dev->irq); + xgmac_interrupt(dev->irq, dev); + enable_irq(dev->irq); +} +#endif + +struct rtnl_link_stats64 * +xgmac_get_stats64(struct net_device *dev, + struct rtnl_link_stats64 *storage) +{ + struct xgmac_priv *priv = netdev_priv(dev); + void __iomem *base = priv->base; + u32 count; + + spin_lock_bh(&priv->stats_lock); + writel(XGMAC_MMC_CTRL_CNT_FRZ, base + XGMAC_MMC_CTRL); + + storage->rx_bytes = readl(base + XGMAC_MMC_RXOCTET_G_LO); + storage->rx_bytes |= (u64)(readl(base + XGMAC_MMC_RXOCTET_G_HI)) << 32; + + storage->rx_packets = readl(base + XGMAC_MMC_RXFRAME_GB_LO); + storage->multicast = readl(base + XGMAC_MMC_RXMCFRAME_G); + storage->rx_crc_errors = readl(base + XGMAC_MMC_RXCRCERR); + storage->rx_length_errors = readl(base + XGMAC_MMC_RXLENGTHERR); + storage->rx_missed_errors = readl(base + XGMAC_MMC_RXOVERFLOW); + + storage->tx_bytes = readl(base + XGMAC_MMC_TXOCTET_G_LO); + storage->tx_bytes |= (u64)(readl(base + XGMAC_MMC_TXOCTET_G_HI)) << 32; + + count = readl(base + XGMAC_MMC_TXFRAME_GB_LO); + storage->tx_errors = count - readl(base + XGMAC_MMC_TXFRAME_G_LO); + storage->tx_packets = count; + storage->tx_fifo_errors = readl(base + XGMAC_MMC_TXUNDERFLOW); + + writel(0, base + XGMAC_MMC_CTRL); + spin_unlock_bh(&priv->stats_lock); + return storage; +} + +static int xgmac_set_mac_address(struct net_device *dev, void *p) +{ + struct xgmac_priv *priv = netdev_priv(dev); + void __iomem *ioaddr = priv->base; + struct sockaddr *addr = p; + + if (!is_valid_ether_addr(addr->sa_data)) + return -EADDRNOTAVAIL; + + memcpy(dev->dev_addr, addr->sa_data, dev->addr_len); + + xgmac_set_mac_addr(ioaddr, dev->dev_addr, 0); + + return 0; +} + +static int xgmac_set_features(struct net_device *dev, u32 features) +{ + u32 ctrl; + struct xgmac_priv *priv = netdev_priv(dev); + void __iomem *ioaddr = priv->base; + u32 changed = dev->features ^ features; + + if (!(changed & NETIF_F_RXCSUM)) + return 0; + + ctrl = readl(ioaddr + XGMAC_CONTROL); + if (features & NETIF_F_RXCSUM) + ctrl |= XGMAC_CONTROL_IPC; + else + ctrl &= ~XGMAC_CONTROL_IPC; + writel(ctrl, ioaddr + XGMAC_CONTROL); + + return 0; +} + +static const struct net_device_ops xgmac_netdev_ops = { + .ndo_open = xgmac_open, + .ndo_start_xmit = xgmac_xmit, + .ndo_stop = xgmac_stop, + .ndo_change_mtu = xgmac_change_mtu, + .ndo_set_rx_mode = xgmac_set_rx_mode, + .ndo_tx_timeout = xgmac_tx_timeout, + .ndo_get_stats64 = xgmac_get_stats64, +#ifdef CONFIG_NET_POLL_CONTROLLER + .ndo_poll_controller = xgmac_poll_controller, +#endif + .ndo_set_mac_address = xgmac_set_mac_address, + .ndo_set_features = xgmac_set_features, +}; + +static int xgmac_ethtool_getsettings(struct net_device *dev, + struct ethtool_cmd *cmd) +{ + cmd->autoneg = 0; + cmd->duplex = DUPLEX_FULL; + ethtool_cmd_speed_set(cmd, 10000); + cmd->supported = 0; + cmd->advertising = 0; + cmd->transceiver = XCVR_INTERNAL; + return 0; +} + +static void xgmac_get_pauseparam(struct net_device *netdev, + struct ethtool_pauseparam *pause) +{ + struct xgmac_priv *priv = netdev_priv(netdev); + + pause->rx_pause = priv->rx_pause; + pause->tx_pause = priv->tx_pause; +} + +static int xgmac_set_pauseparam(struct net_device *netdev, + struct ethtool_pauseparam *pause) +{ + struct xgmac_priv *priv = netdev_priv(netdev); + + if (pause->autoneg) + return -EINVAL; + + return xgmac_set_flow_ctrl(priv, pause->rx_pause, pause->tx_pause); +} + +struct xgmac_stats { + char stat_string[ETH_GSTRING_LEN]; + int stat_offset; + bool is_reg; +}; + +#define XGMAC_STAT(m) \ + { #m, offsetof(struct xgmac_priv, xstats.m), false } +#define XGMAC_HW_STAT(m, reg_offset) \ + { #m, reg_offset, true } + +static const struct xgmac_stats xgmac_gstrings_stats[] = { + XGMAC_STAT(tx_frame_flushed), + XGMAC_STAT(tx_payload_error), + XGMAC_STAT(tx_ip_header_error), + XGMAC_STAT(tx_local_fault), + XGMAC_STAT(tx_remote_fault), + XGMAC_STAT(tx_early), + XGMAC_STAT(tx_process_stopped), + XGMAC_STAT(tx_jabber), + XGMAC_STAT(rx_buf_unav), + XGMAC_STAT(rx_process_stopped), + XGMAC_STAT(rx_payload_error), + XGMAC_STAT(rx_ip_header_error), + XGMAC_STAT(rx_da_filter_fail), + XGMAC_STAT(rx_sa_filter_fail), + XGMAC_STAT(fatal_bus_error), + XGMAC_HW_STAT(rx_watchdog, XGMAC_MMC_RXWATCHDOG), + XGMAC_HW_STAT(tx_vlan, XGMAC_MMC_TXVLANFRAME), + XGMAC_HW_STAT(rx_vlan, XGMAC_MMC_RXVLANFRAME), + XGMAC_HW_STAT(tx_pause, XGMAC_MMC_TXPAUSEFRAME), + XGMAC_HW_STAT(rx_pause, XGMAC_MMC_RXPAUSEFRAME), +}; +#define XGMAC_STATS_LEN ARRAY_SIZE(xgmac_gstrings_stats) + +static void xgmac_get_ethtool_stats(struct net_device *dev, + struct ethtool_stats *dummy, + u64 *data) +{ + struct xgmac_priv *priv = netdev_priv(dev); + void *p = priv; + int i; + + for (i = 0; i < XGMAC_STATS_LEN; i++) { + if (xgmac_gstrings_stats[i].is_reg) + *data++ = readl(priv->base + + xgmac_gstrings_stats[i].stat_offset); + else + *data++ = *(u32 *)(p + + xgmac_gstrings_stats[i].stat_offset); + } +} + +static int xgmac_get_sset_count(struct net_device *netdev, int sset) +{ + switch (sset) { + case ETH_SS_STATS: + return XGMAC_STATS_LEN; + default: + return -EINVAL; + } +} + +static void xgmac_get_strings(struct net_device *dev, u32 stringset, + u8 *data) +{ + int i; + u8 *p = data; + + switch (stringset) { + case ETH_SS_STATS: + for (i = 0; i < XGMAC_STATS_LEN; i++) { + memcpy(p, xgmac_gstrings_stats[i].stat_string, + ETH_GSTRING_LEN); + p += ETH_GSTRING_LEN; + } + break; + default: + WARN_ON(1); + break; + } +} + +static void xgmac_get_wol(struct net_device *dev, + struct ethtool_wolinfo *wol) +{ + struct xgmac_priv *priv = netdev_priv(dev); + + if (device_can_wakeup(priv->device)) { + wol->supported = WAKE_MAGIC | WAKE_UCAST; + wol->wolopts = priv->wolopts; + } +} + +static int xgmac_set_wol(struct net_device *dev, + struct ethtool_wolinfo *wol) +{ + struct xgmac_priv *priv = netdev_priv(dev); + u32 support = WAKE_MAGIC | WAKE_UCAST; + + if (!device_can_wakeup(priv->device)) + return -ENOTSUPP; + + if (wol->wolopts & ~support) + return -EINVAL; + + priv->wolopts = wol->wolopts; + + if (wol->wolopts) { + device_set_wakeup_enable(priv->device, 1); + enable_irq_wake(dev->irq); + } else { + device_set_wakeup_enable(priv->device, 0); + disable_irq_wake(dev->irq); + } + + return 0; +} + +static struct ethtool_ops xgmac_ethtool_ops = { + .get_settings = xgmac_ethtool_getsettings, + .get_link = ethtool_op_get_link, + .get_pauseparam = xgmac_get_pauseparam, + .set_pauseparam = xgmac_set_pauseparam, + .get_ethtool_stats = xgmac_get_ethtool_stats, + .get_strings = xgmac_get_strings, + .get_wol = xgmac_get_wol, + .set_wol = xgmac_set_wol, + .get_sset_count = xgmac_get_sset_count, +}; + +/** + * xgmac_probe + * @pdev: platform device pointer + * Description: the driver is initialized through platform_device. + */ +static int xgmac_probe(struct platform_device *pdev) +{ + int ret = 0; + struct resource *res; + struct net_device *ndev = NULL; + struct xgmac_priv *priv = NULL; + u32 uid; + + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + if (!res) + return -ENODEV; + + if (!request_mem_region(res->start, resource_size(res), pdev->name)) + return -EBUSY; + + ndev = alloc_etherdev(sizeof(struct xgmac_priv)); + if (!ndev) { + ret = -ENOMEM; + goto err_alloc; + } + + SET_NETDEV_DEV(ndev, &pdev->dev); + priv = netdev_priv(ndev); + platform_set_drvdata(pdev, ndev); + ether_setup(ndev); + ndev->netdev_ops = &xgmac_netdev_ops; + SET_ETHTOOL_OPS(ndev, &xgmac_ethtool_ops); + spin_lock_init(&priv->stats_lock); + + priv->device = &pdev->dev; + priv->dev = ndev; + priv->rx_pause = 1; + priv->tx_pause = 1; + + priv->base = ioremap(res->start, resource_size(res)); + if (!priv->base) { + netdev_err(ndev, "ioremap failed\n"); + ret = -ENOMEM; + goto err_io; + } + + uid = readl(priv->base + XGMAC_VERSION); + netdev_info(ndev, "h/w version is 0x%x\n", uid); + + writel(0, priv->base + XGMAC_DMA_INTR_ENA); + ndev->irq = platform_get_irq(pdev, 0); + if (ndev->irq == -ENXIO) { + netdev_err(ndev, "No irq resource\n"); + ret = ndev->irq; + goto err_irq; + } + + ret = request_irq(ndev->irq, xgmac_interrupt, 0, + dev_name(&pdev->dev), ndev); + if (ret < 0) { + netdev_err(ndev, "Could not request irq %d - ret %d)\n", + ndev->irq, ret); + goto err_irq; + } + + priv->pmt_irq = platform_get_irq(pdev, 1); + if (priv->pmt_irq == -ENXIO) { + netdev_err(ndev, "No pmt irq resource\n"); + ret = priv->pmt_irq; + goto err_pmt_irq; + } + + ret = request_irq(priv->pmt_irq, xgmac_pmt_interrupt, 0, + dev_name(&pdev->dev), ndev); + if (ret < 0) { + netdev_err(ndev, "Could not request irq %d - ret %d)\n", + priv->pmt_irq, ret); + goto err_pmt_irq; + } + + device_set_wakeup_capable(&pdev->dev, 1); + if (device_can_wakeup(priv->device)) + priv->wolopts = WAKE_MAGIC; /* Magic Frame as default */ + + ndev->hw_features = NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HIGHDMA; + if (readl(priv->base + XGMAC_DMA_HW_FEATURE) & DMA_HW_FEAT_TXCOESEL) + ndev->hw_features |= NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | + NETIF_F_RXCSUM; + ndev->features |= ndev->hw_features; + ndev->priv_flags |= IFF_UNICAST_FLT; + + /* Get the MAC address */ + xgmac_get_mac_addr(priv->base, ndev->dev_addr, 0); + if (!is_valid_ether_addr(ndev->dev_addr)) + netdev_warn(ndev, "MAC address %pM not valid", + ndev->dev_addr); + + netif_napi_add(ndev, &priv->napi, xgmac_poll, 64); + ret = register_netdev(ndev); + if (ret) + goto err_reg; + + return 0; + +err_reg: + netif_napi_del(&priv->napi); + free_irq(priv->pmt_irq, ndev); +err_pmt_irq: + free_irq(ndev->irq, ndev); +err_irq: + iounmap(priv->base); +err_io: + free_netdev(ndev); +err_alloc: + release_mem_region(res->start, resource_size(res)); + platform_set_drvdata(pdev, NULL); + return ret; +} + +/** + * xgmac_dvr_remove + * @pdev: platform device pointer + * Description: this function resets the TX/RX processes, disables the MAC RX/TX + * changes the link status, releases the DMA descriptor rings, + * unregisters the MDIO bus and unmaps the allocated memory. + */ +static int xgmac_remove(struct platform_device *pdev) +{ + struct net_device *ndev = platform_get_drvdata(pdev); + struct xgmac_priv *priv = netdev_priv(ndev); + struct resource *res; + + xgmac_mac_disable(priv->base); + + /* Free the IRQ lines */ + free_irq(ndev->irq, ndev); + free_irq(priv->pmt_irq, ndev); + + platform_set_drvdata(pdev, NULL); + unregister_netdev(ndev); + netif_napi_del(&priv->napi); + + iounmap(priv->base); + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + release_mem_region(res->start, resource_size(res)); + + free_netdev(ndev); + + return 0; +} + +#ifdef CONFIG_PM_SLEEP +static void xgmac_pmt(void __iomem *ioaddr, unsigned long mode) +{ + unsigned int pmt = 0; + + if (mode & WAKE_MAGIC) + pmt |= XGMAC_PMT_POWERDOWN | XGMAC_PMT_MAGIC_PKT; + if (mode & WAKE_UCAST) + pmt |= XGMAC_PMT_POWERDOWN | XGMAC_PMT_GLBL_UNICAST; + + writel(pmt, ioaddr + XGMAC_PMT); +} + +static int xgmac_suspend(struct device *dev) +{ + struct net_device *ndev = platform_get_drvdata(to_platform_device(dev)); + struct xgmac_priv *priv = netdev_priv(ndev); + u32 value; + + if (!ndev || !netif_running(ndev)) + return 0; + + netif_device_detach(ndev); + napi_disable(&priv->napi); + writel(0, priv->base + XGMAC_DMA_INTR_ENA); + + if (device_may_wakeup(priv->device)) { + /* Stop TX/RX DMA Only */ + value = readl(priv->base + XGMAC_DMA_CONTROL); + value &= ~(DMA_CONTROL_ST | DMA_CONTROL_SR); + writel(value, priv->base + XGMAC_DMA_CONTROL); + + xgmac_pmt(priv->base, priv->wolopts); + } else + xgmac_mac_disable(priv->base); + + return 0; +} + +static int xgmac_resume(struct device *dev) +{ + struct net_device *ndev = platform_get_drvdata(to_platform_device(dev)); + struct xgmac_priv *priv = netdev_priv(ndev); + void __iomem *ioaddr = priv->base; + + if (!netif_running(ndev)) + return 0; + + xgmac_pmt(ioaddr, 0); + + /* Enable the MAC and DMA */ + xgmac_mac_enable(ioaddr); + writel(DMA_INTR_DEFAULT_MASK, ioaddr + XGMAC_DMA_STATUS); + writel(DMA_INTR_DEFAULT_MASK, ioaddr + XGMAC_DMA_INTR_ENA); + + netif_device_attach(ndev); + napi_enable(&priv->napi); + + return 0; +} + +static SIMPLE_DEV_PM_OPS(xgmac_pm_ops, xgmac_suspend, xgmac_resume); +#define XGMAC_PM_OPS (&xgmac_pm_ops) +#else +#define XGMAC_PM_OPS NULL +#endif /* CONFIG_PM_SLEEP */ + +static const struct of_device_id xgmac_of_match[] = { + { .compatible = "calxeda,hb-xgmac", }, + {}, +}; +MODULE_DEVICE_TABLE(of, xgmac_of_match); + +static struct platform_driver xgmac_driver = { + .driver = { + .name = "calxedaxgmac", + .of_match_table = xgmac_of_match, + }, + .probe = xgmac_probe, + .remove = xgmac_remove, + .driver.pm = XGMAC_PM_OPS, +}; + +module_platform_driver(xgmac_driver); + +MODULE_AUTHOR("Calxeda, Inc."); +MODULE_DESCRIPTION("Calxeda 10G XGMAC driver"); +MODULE_LICENSE("GPL v2"); --- linux-3.2.0.orig/drivers/net/ethernet/calxeda/Makefile +++ linux-3.2.0/drivers/net/ethernet/calxeda/Makefile @@ -0,0 +1 @@ +obj-$(CONFIG_NET_CALXEDA_XGMAC) += xgmac.o --- linux-3.2.0.orig/drivers/net/ethernet/dec/tulip/dmfe.c +++ linux-3.2.0/drivers/net/ethernet/dec/tulip/dmfe.c @@ -1085,10 +1085,11 @@ { struct dmfe_board_info *np = netdev_priv(dev); - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); if (np->pdev) - strcpy(info->bus_info, pci_name(np->pdev)); + strlcpy(info->bus_info, pci_name(np->pdev), + sizeof(info->bus_info)); else sprintf(info->bus_info, "EISA 0x%lx %d", dev->base_addr, dev->irq); --- linux-3.2.0.orig/drivers/net/ethernet/dec/tulip/winbond-840.c +++ linux-3.2.0/drivers/net/ethernet/dec/tulip/winbond-840.c @@ -1390,9 +1390,9 @@ { struct netdev_private *np = netdev_priv(dev); - strcpy (info->driver, DRV_NAME); - strcpy (info->version, DRV_VERSION); - strcpy (info->bus_info, pci_name(np->pci_dev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(np->pci_dev), sizeof(info->bus_info)); } static int netdev_get_settings(struct net_device *dev, struct ethtool_cmd *cmd) --- linux-3.2.0.orig/drivers/net/ethernet/dec/tulip/tulip_core.c +++ linux-3.2.0/drivers/net/ethernet/dec/tulip/tulip_core.c @@ -871,9 +871,9 @@ static void tulip_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) { struct tulip_private *np = netdev_priv(dev); - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); - strcpy(info->bus_info, pci_name(np->pdev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(np->pdev), sizeof(info->bus_info)); } --- linux-3.2.0.orig/drivers/net/ethernet/dec/tulip/uli526x.c +++ linux-3.2.0/drivers/net/ethernet/dec/tulip/uli526x.c @@ -960,10 +960,11 @@ { struct uli526x_board_info *np = netdev_priv(dev); - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); if (np->pdev) - strcpy(info->bus_info, pci_name(np->pdev)); + strlcpy(info->bus_info, pci_name(np->pdev), + sizeof(info->bus_info)); else sprintf(info->bus_info, "EISA 0x%lx %d", dev->base_addr, dev->irq); --- linux-3.2.0.orig/drivers/net/ethernet/dec/tulip/de2104x.c +++ linux-3.2.0/drivers/net/ethernet/dec/tulip/de2104x.c @@ -1598,9 +1598,9 @@ { struct de_private *de = netdev_priv(dev); - strcpy (info->driver, DRV_NAME); - strcpy (info->version, DRV_VERSION); - strcpy (info->bus_info, pci_name(de->pdev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(de->pdev), sizeof(info->bus_info)); info->eedump_len = DE_EEPROM_SIZE; } --- linux-3.2.0.orig/drivers/net/ethernet/freescale/fsl_pq_mdio.c +++ linux-3.2.0/drivers/net/ethernet/freescale/fsl_pq_mdio.c @@ -356,16 +356,15 @@ if (prop) tbiaddr = *prop; - } - - if (tbiaddr == -1) { - err = -EBUSY; - goto err_free_irqs; + if (tbiaddr == -1) { + err = -EBUSY; + goto err_free_irqs; + } else { + out_be32(tbipa, tbiaddr); + } } - out_be32(tbipa, tbiaddr); - err = of_mdiobus_register(new_bus, np); if (err) { printk (KERN_ERR "%s: Cannot register as MDIO bus\n", --- linux-3.2.0.orig/drivers/net/ethernet/packetengines/Kconfig +++ linux-3.2.0/drivers/net/ethernet/packetengines/Kconfig @@ -4,6 +4,7 @@ config NET_PACKET_ENGINE bool "Packet Engine devices" + default y depends on PCI ---help--- If you have a network (Ethernet) card belonging to this class, say Y --- linux-3.2.0.orig/drivers/net/ethernet/sfc/rx.c +++ linux-3.2.0/drivers/net/ethernet/sfc/rx.c @@ -156,11 +156,10 @@ if (unlikely(!skb)) return -ENOMEM; - /* Adjust the SKB for padding and checksum */ + /* Adjust the SKB for padding */ skb_reserve(skb, NET_IP_ALIGN); rx_buf->len = skb_len - NET_IP_ALIGN; rx_buf->is_page = false; - skb->ip_summed = CHECKSUM_UNNECESSARY; rx_buf->dma_addr = pci_map_single(efx->pci_dev, skb->data, rx_buf->len, @@ -499,6 +498,7 @@ EFX_BUG_ON_PARANOID(!checksummed); rx_buf->u.skb = NULL; + skb->ip_summed = CHECKSUM_UNNECESSARY; gro_result = napi_gro_receive(napi, skb); } --- linux-3.2.0.orig/drivers/net/ethernet/tile/tilepro.c +++ linux-3.2.0/drivers/net/ethernet/tile/tilepro.c @@ -2260,8 +2260,7 @@ return 0; } - -static struct net_device_ops tile_net_ops = { +static const struct net_device_ops tile_net_ops = { .ndo_open = tile_net_open, .ndo_stop = tile_net_stop, .ndo_start_xmit = tile_net_tx, --- linux-3.2.0.orig/drivers/net/ethernet/8390/ne2k-pci.c +++ linux-3.2.0/drivers/net/ethernet/8390/ne2k-pci.c @@ -639,9 +639,9 @@ struct ei_device *ei = netdev_priv(dev); struct pci_dev *pci_dev = (struct pci_dev *) ei->priv; - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); - strcpy(info->bus_info, pci_name(pci_dev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(pci_dev), sizeof(info->bus_info)); } static const struct ethtool_ops ne2k_pci_ethtool_ops = { --- linux-3.2.0.orig/drivers/net/ethernet/micrel/ksz884x.c +++ linux-3.2.0/drivers/net/ethernet/micrel/ksz884x.c @@ -5679,7 +5679,7 @@ memcpy(hw->override_addr, mac->sa_data, MAC_ADDR_LEN); } - memcpy(dev->dev_addr, mac->sa_data, MAX_ADDR_LEN); + memcpy(dev->dev_addr, mac->sa_data, ETH_ALEN); interrupt = hw_block_intr(hw); --- linux-3.2.0.orig/drivers/net/ethernet/micrel/ks8851_mll.c +++ linux-3.2.0/drivers/net/ethernet/micrel/ks8851_mll.c @@ -40,7 +40,7 @@ #define DRV_NAME "ks8851_mll" static u8 KS_DEFAULT_MAC_ADDRESS[] = { 0x00, 0x10, 0xA1, 0x86, 0x95, 0x11 }; -#define MAX_RECV_FRAMES 32 +#define MAX_RECV_FRAMES 255 #define MAX_BUF_SIZE 2048 #define TX_BUF_SIZE 2000 #define RX_BUF_SIZE 2000 --- linux-3.2.0.orig/drivers/net/ethernet/ti/davinci_emac.c +++ linux-3.2.0/drivers/net/ethernet/ti/davinci_emac.c @@ -1007,7 +1007,7 @@ int ret; /* free and bail if we are shutting down */ - if (unlikely(!netif_running(ndev) || !netif_carrier_ok(ndev))) { + if (unlikely(!netif_running(ndev))) { dev_kfree_skb_any(skb); return; } @@ -1036,7 +1036,9 @@ recycle: ret = cpdma_chan_submit(priv->rxchan, skb, skb->data, skb_tailroom(skb), GFP_KERNEL); - if (WARN_ON(ret < 0)) + + WARN_ON(ret == -ENOMEM); + if (unlikely(ret < 0)) dev_kfree_skb_any(skb); } --- linux-3.2.0.orig/drivers/net/ethernet/ti/davinci_mdio.c +++ linux-3.2.0/drivers/net/ethernet/ti/davinci_mdio.c @@ -181,6 +181,11 @@ __davinci_mdio_reset(data); return -EAGAIN; } + + reg = __raw_readl(®s->user[0].access); + if ((reg & USERACCESS_GO) == 0) + return 0; + dev_err(data->dev, "timed out waiting for user access\n"); return -ETIMEDOUT; } --- linux-3.2.0.orig/drivers/net/ethernet/toshiba/Kconfig +++ linux-3.2.0/drivers/net/ethernet/toshiba/Kconfig @@ -5,7 +5,7 @@ config NET_VENDOR_TOSHIBA bool "Toshiba devices" default y - depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB) || PPC_PS3 + depends on PCI && (PPC_IBM_CELL_BLADE || PPC_CELLEB || MIPS) || PPC_PS3 ---help--- If you have a network (Ethernet) card belonging to this class, say Y and read the Ethernet-HOWTO, available from --- linux-3.2.0.orig/drivers/net/ethernet/via/via-velocity.c +++ linux-3.2.0/drivers/net/ethernet/via/via-velocity.c @@ -2489,9 +2489,6 @@ if (dev->irq != 0) free_irq(dev->irq, dev); - /* Power down the chip */ - pci_set_power_state(vptr->pdev, PCI_D3hot); - velocity_free_rings(vptr); vptr->flags &= (~VELOCITY_FLAGS_OPENED); --- linux-3.2.0.orig/drivers/net/ethernet/3com/3c59x.c +++ linux-3.2.0/drivers/net/ethernet/3com/3c59x.c @@ -1842,7 +1842,7 @@ ok = 1; } - if (!netif_carrier_ok(dev)) + if (dev->flags & IFF_SLAVE || !netif_carrier_ok(dev)) next_tick = 5*HZ; if (vp->medialock) @@ -2929,15 +2929,17 @@ { struct vortex_private *vp = netdev_priv(dev); - strcpy(info->driver, DRV_NAME); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); if (VORTEX_PCI(vp)) { - strcpy(info->bus_info, pci_name(VORTEX_PCI(vp))); + strlcpy(info->bus_info, pci_name(VORTEX_PCI(vp)), + sizeof(info->bus_info)); } else { if (VORTEX_EISA(vp)) - strcpy(info->bus_info, dev_name(vp->gendev)); + strlcpy(info->bus_info, dev_name(vp->gendev), + sizeof(info->bus_info)); else - sprintf(info->bus_info, "EISA 0x%lx %d", - dev->base_addr, dev->irq); + snprintf(info->bus_info, sizeof(info->bus_info), + "EISA 0x%lx %d", dev->base_addr, dev->irq); } } --- linux-3.2.0.orig/drivers/net/ethernet/3com/typhoon.c +++ linux-3.2.0/drivers/net/ethernet/3com/typhoon.c @@ -988,21 +988,23 @@ smp_rmb(); if(tp->card_state == Sleeping) { - strcpy(info->fw_version, "Sleep image"); + strlcpy(info->fw_version, "Sleep image", + sizeof(info->fw_version)); } else { INIT_COMMAND_WITH_RESPONSE(&xp_cmd, TYPHOON_CMD_READ_VERSIONS); if(typhoon_issue_command(tp, 1, &xp_cmd, 3, xp_resp) < 0) { - strcpy(info->fw_version, "Unknown runtime"); + strlcpy(info->fw_version, "Unknown runtime", + sizeof(info->fw_version)); } else { u32 sleep_ver = le32_to_cpu(xp_resp[0].parm2); - snprintf(info->fw_version, 32, "%02x.%03x.%03x", - sleep_ver >> 24, (sleep_ver >> 12) & 0xfff, - sleep_ver & 0xfff); + snprintf(info->fw_version, sizeof(info->fw_version), + "%02x.%03x.%03x", sleep_ver >> 24, + (sleep_ver >> 12) & 0xfff, sleep_ver & 0xfff); } } - strcpy(info->driver, KBUILD_MODNAME); - strcpy(info->bus_info, pci_name(pci_dev)); + strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver)); + strlcpy(info->bus_info, pci_name(pci_dev), sizeof(info->bus_info)); } static int --- linux-3.2.0.orig/drivers/net/ethernet/3com/3c589_cs.c +++ linux-3.2.0/drivers/net/ethernet/3com/3c589_cs.c @@ -468,9 +468,10 @@ static void netdev_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) { - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); - sprintf(info->bus_info, "PCMCIA 0x%lx", dev->base_addr); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + snprintf(info->bus_info, sizeof(info->bus_info), + "PCMCIA 0x%lx", dev->base_addr); } static const struct ethtool_ops netdev_ethtool_ops = { --- linux-3.2.0.orig/drivers/net/ethernet/brocade/bna/bnad_ethtool.c +++ linux-3.2.0/drivers/net/ethernet/brocade/bna/bnad_ethtool.c @@ -296,8 +296,8 @@ struct bfa_ioc_attr *ioc_attr; unsigned long flags; - strcpy(drvinfo->driver, BNAD_NAME); - strcpy(drvinfo->version, BNAD_VERSION); + strlcpy(drvinfo->driver, BNAD_NAME, sizeof(drvinfo->driver)); + strlcpy(drvinfo->version, BNAD_VERSION, sizeof(drvinfo->version)); ioc_attr = kzalloc(sizeof(*ioc_attr), GFP_KERNEL); if (ioc_attr) { @@ -305,12 +305,13 @@ bfa_nw_ioc_get_attr(&bnad->bna.ioceth.ioc, ioc_attr); spin_unlock_irqrestore(&bnad->bna_lock, flags); - strncpy(drvinfo->fw_version, ioc_attr->adapter_attr.fw_ver, - sizeof(drvinfo->fw_version) - 1); + strlcpy(drvinfo->fw_version, ioc_attr->adapter_attr.fw_ver, + sizeof(drvinfo->fw_version)); kfree(ioc_attr); } - strncpy(drvinfo->bus_info, pci_name(bnad->pcidev), ETHTOOL_BUSINFO_LEN); + strlcpy(drvinfo->bus_info, pci_name(bnad->pcidev), + sizeof(drvinfo->bus_info)); } static void --- linux-3.2.0.orig/drivers/net/ethernet/dlink/dl2k.c +++ linux-3.2.0/drivers/net/ethernet/dlink/dl2k.c @@ -1259,55 +1259,21 @@ { int phy_addr; struct netdev_private *np = netdev_priv(dev); - struct mii_data *miidata = (struct mii_data *) &rq->ifr_ifru; - - struct netdev_desc *desc; - int i; + struct mii_ioctl_data *miidata = if_mii(rq); phy_addr = np->phy_addr; switch (cmd) { - case SIOCDEVPRIVATE: - break; - - case SIOCDEVPRIVATE + 1: - miidata->out_value = mii_read (dev, phy_addr, miidata->reg_num); - break; - case SIOCDEVPRIVATE + 2: - mii_write (dev, phy_addr, miidata->reg_num, miidata->in_value); - break; - case SIOCDEVPRIVATE + 3: + case SIOCGMIIPHY: + miidata->phy_id = phy_addr; break; - case SIOCDEVPRIVATE + 4: + case SIOCGMIIREG: + miidata->val_out = mii_read (dev, phy_addr, miidata->reg_num); break; - case SIOCDEVPRIVATE + 5: - netif_stop_queue (dev); + case SIOCSMIIREG: + if (!capable(CAP_NET_ADMIN)) + return -EPERM; + mii_write (dev, phy_addr, miidata->reg_num, miidata->val_in); break; - case SIOCDEVPRIVATE + 6: - netif_wake_queue (dev); - break; - case SIOCDEVPRIVATE + 7: - printk - ("tx_full=%x cur_tx=%lx old_tx=%lx cur_rx=%lx old_rx=%lx\n", - netif_queue_stopped(dev), np->cur_tx, np->old_tx, np->cur_rx, - np->old_rx); - break; - case SIOCDEVPRIVATE + 8: - printk("TX ring:\n"); - for (i = 0; i < TX_RING_SIZE; i++) { - desc = &np->tx_ring[i]; - printk - ("%02x:cur:%08x next:%08x status:%08x frag1:%08x frag0:%08x", - i, - (u32) (np->tx_ring_dma + i * sizeof (*desc)), - (u32)le64_to_cpu(desc->next_desc), - (u32)le64_to_cpu(desc->status), - (u32)(le64_to_cpu(desc->fraginfo) >> 32), - (u32)le64_to_cpu(desc->fraginfo)); - printk ("\n"); - } - printk ("\n"); - break; - default: return -EOPNOTSUPP; } --- linux-3.2.0.orig/drivers/net/ethernet/dlink/dl2k.h +++ linux-3.2.0/drivers/net/ethernet/dlink/dl2k.h @@ -365,13 +365,6 @@ char *data; }; -struct mii_data { - __u16 reserved; - __u16 reg_num; - __u16 in_value; - __u16 out_value; -}; - /* The Rx and Tx buffer descriptors. */ struct netdev_desc { __le64 next_desc; --- linux-3.2.0.orig/drivers/net/ethernet/dlink/sundance.c +++ linux-3.2.0/drivers/net/ethernet/dlink/sundance.c @@ -1634,9 +1634,9 @@ static void get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) { struct netdev_private *np = netdev_priv(dev); - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); - strcpy(info->bus_info, pci_name(np->pci_dev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(np->pci_dev), sizeof(info->bus_info)); } static int get_settings(struct net_device *dev, struct ethtool_cmd *ecmd) --- linux-3.2.0.orig/drivers/net/ethernet/sun/sungem.c +++ linux-3.2.0/drivers/net/ethernet/sun/sungem.c @@ -2340,7 +2340,7 @@ netif_device_detach(dev); /* Switch off chip, remember WOL setting */ - gp->asleep_wol = gp->wake_on_lan; + gp->asleep_wol = !!gp->wake_on_lan; gem_do_stop(dev, gp->asleep_wol); /* Unlock the network stack */ --- linux-3.2.0.orig/drivers/net/ethernet/qlogic/qla3xxx.c +++ linux-3.2.0/drivers/net/ethernet/qlogic/qla3xxx.c @@ -1735,10 +1735,12 @@ struct ethtool_drvinfo *drvinfo) { struct ql3_adapter *qdev = netdev_priv(ndev); - strncpy(drvinfo->driver, ql3xxx_driver_name, 32); - strncpy(drvinfo->version, ql3xxx_driver_version, 32); - strncpy(drvinfo->fw_version, "N/A", 32); - strncpy(drvinfo->bus_info, pci_name(qdev->pdev), 32); + strlcpy(drvinfo->driver, ql3xxx_driver_name, sizeof(drvinfo->driver)); + strlcpy(drvinfo->version, ql3xxx_driver_version, + sizeof(drvinfo->version)); + strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version)); + strlcpy(drvinfo->bus_info, pci_name(qdev->pdev), + sizeof(drvinfo->bus_info)); drvinfo->regdump_len = 0; drvinfo->eedump_len = 0; } --- linux-3.2.0.orig/drivers/net/ethernet/qlogic/qlge/qlge_ethtool.c +++ linux-3.2.0/drivers/net/ethernet/qlogic/qlge/qlge_ethtool.c @@ -366,13 +366,16 @@ struct ethtool_drvinfo *drvinfo) { struct ql_adapter *qdev = netdev_priv(ndev); - strncpy(drvinfo->driver, qlge_driver_name, 32); - strncpy(drvinfo->version, qlge_driver_version, 32); - snprintf(drvinfo->fw_version, 32, "v%d.%d.%d", + strlcpy(drvinfo->driver, qlge_driver_name, sizeof(drvinfo->driver)); + strlcpy(drvinfo->version, qlge_driver_version, + sizeof(drvinfo->version)); + snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), + "v%d.%d.%d", (qdev->fw_rev_id & 0x00ff0000) >> 16, (qdev->fw_rev_id & 0x0000ff00) >> 8, (qdev->fw_rev_id & 0x000000ff)); - strncpy(drvinfo->bus_info, pci_name(qdev->pdev), 32); + strlcpy(drvinfo->bus_info, pci_name(qdev->pdev), + sizeof(drvinfo->bus_info)); drvinfo->n_stats = 0; drvinfo->testinfo_len = 0; if (!test_bit(QL_FRC_COREDUMP, &qdev->flags)) --- linux-3.2.0.orig/drivers/net/ethernet/qlogic/netxen/netxen_nic_ethtool.c +++ linux-3.2.0/drivers/net/ethernet/qlogic/netxen/netxen_nic_ethtool.c @@ -83,14 +83,18 @@ u32 fw_minor = 0; u32 fw_build = 0; - strncpy(drvinfo->driver, netxen_nic_driver_name, 32); - strncpy(drvinfo->version, NETXEN_NIC_LINUX_VERSIONID, 32); + strlcpy(drvinfo->driver, netxen_nic_driver_name, + sizeof(drvinfo->driver)); + strlcpy(drvinfo->version, NETXEN_NIC_LINUX_VERSIONID, + sizeof(drvinfo->version)); fw_major = NXRD32(adapter, NETXEN_FW_VERSION_MAJOR); fw_minor = NXRD32(adapter, NETXEN_FW_VERSION_MINOR); fw_build = NXRD32(adapter, NETXEN_FW_VERSION_SUB); - sprintf(drvinfo->fw_version, "%d.%d.%d", fw_major, fw_minor, fw_build); + snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), + "%d.%d.%d", fw_major, fw_minor, fw_build); - strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32); + strlcpy(drvinfo->bus_info, pci_name(adapter->pdev), + sizeof(drvinfo->bus_info)); drvinfo->regdump_len = NETXEN_NIC_REGS_LEN; drvinfo->eedump_len = netxen_nic_get_eeprom_len(dev); } --- linux-3.2.0.orig/drivers/net/ethernet/qlogic/qlcnic/qlcnic_ethtool.c +++ linux-3.2.0/drivers/net/ethernet/qlogic/qlcnic/qlcnic_ethtool.c @@ -140,11 +140,14 @@ fw_major = QLCRD32(adapter, QLCNIC_FW_VERSION_MAJOR); fw_minor = QLCRD32(adapter, QLCNIC_FW_VERSION_MINOR); fw_build = QLCRD32(adapter, QLCNIC_FW_VERSION_SUB); - sprintf(drvinfo->fw_version, "%d.%d.%d", fw_major, fw_minor, fw_build); + snprintf(drvinfo->fw_version, sizeof(drvinfo->fw_version), + "%d.%d.%d", fw_major, fw_minor, fw_build); - strlcpy(drvinfo->bus_info, pci_name(adapter->pdev), 32); - strlcpy(drvinfo->driver, qlcnic_driver_name, 32); - strlcpy(drvinfo->version, QLCNIC_LINUX_VERSIONID, 32); + strlcpy(drvinfo->bus_info, pci_name(adapter->pdev), + sizeof(drvinfo->bus_info)); + strlcpy(drvinfo->driver, qlcnic_driver_name, sizeof(drvinfo->driver)); + strlcpy(drvinfo->version, QLCNIC_LINUX_VERSIONID, + sizeof(drvinfo->version)); } static int --- linux-3.2.0.orig/drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_param.c +++ linux-3.2.0/drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_param.c @@ -321,10 +321,10 @@ pr_debug("AutoNeg specified along with Speed or Duplex, AutoNeg parameter ignored\n"); hw->phy.autoneg_advertised = opt.def; } else { - hw->phy.autoneg_advertised = AutoNeg; - pch_gbe_validate_option( - (int *)(&hw->phy.autoneg_advertised), - &opt, adapter); + int tmp = AutoNeg; + + pch_gbe_validate_option(&tmp, &opt, adapter); + hw->phy.autoneg_advertised = tmp; } } @@ -495,9 +495,10 @@ .arg = { .l = { .nr = (int)ARRAY_SIZE(fc_list), .p = fc_list } } }; - hw->mac.fc = FlowControl; - pch_gbe_validate_option((int *)(&hw->mac.fc), - &opt, adapter); + int tmp = FlowControl; + + pch_gbe_validate_option(&tmp, &opt, adapter); + hw->mac.fc = tmp; } pch_gbe_check_copper_options(adapter); --- linux-3.2.0.orig/drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c +++ linux-3.2.0/drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c @@ -1745,6 +1745,12 @@ struct pch_gbe_rx_ring *rx_ring = adapter->rx_ring; int err; + /* Ensure we have a valid MAC */ + if (!is_valid_ether_addr(adapter->hw.mac.addr)) { + pr_err("Error: Invalid MAC address\n"); + return -EINVAL; + } + /* hardware has been reset, we need to reload some things */ pch_gbe_set_multi(netdev); @@ -2467,9 +2473,14 @@ memcpy(netdev->dev_addr, adapter->hw.mac.addr, netdev->addr_len); if (!is_valid_ether_addr(netdev->dev_addr)) { - dev_err(&pdev->dev, "Invalid MAC Address\n"); - ret = -EIO; - goto err_free_adapter; + /* + * If the MAC is invalid (or just missing), display a warning + * but do not abort setting up the device. pch_gbe_up will + * prevent the interface from being brought up until a valid MAC + * is set. + */ + dev_err(&pdev->dev, "Invalid MAC address, " + "interface disabled.\n"); } setup_timer(&adapter->watchdog_timer, pch_gbe_watchdog, (unsigned long)adapter); --- linux-3.2.0.orig/drivers/net/ethernet/atheros/atl1c/atl1c_main.c +++ linux-3.2.0/drivers/net/ethernet/atheros/atl1c/atl1c_main.c @@ -2241,10 +2241,6 @@ dev_info(&adapter->pdev->dev, "tx locked\n"); return NETDEV_TX_LOCKED; } - if (skb->mark == 0x01) - type = atl1c_trans_high; - else - type = atl1c_trans_normal; if (atl1c_tpd_avail(adapter, type) < tpd_req) { /* no enough descriptor, just stop queue */ --- linux-3.2.0.orig/drivers/net/ethernet/atheros/atlx/atl1.c +++ linux-3.2.0/drivers/net/ethernet/atheros/atlx/atl1.c @@ -2473,7 +2473,7 @@ "pcie phy link down %x\n", status); if (netif_running(adapter->netdev)) { /* reset MAC */ iowrite32(0, adapter->hw.hw_addr + REG_IMR); - schedule_work(&adapter->pcie_dma_to_rst_task); + schedule_work(&adapter->reset_dev_task); return IRQ_HANDLED; } } @@ -2485,7 +2485,7 @@ "pcie DMA r/w error (status = 0x%x)\n", status); iowrite32(0, adapter->hw.hw_addr + REG_IMR); - schedule_work(&adapter->pcie_dma_to_rst_task); + schedule_work(&adapter->reset_dev_task); return IRQ_HANDLED; } @@ -2630,10 +2630,10 @@ atl1_clean_rx_ring(adapter); } -static void atl1_tx_timeout_task(struct work_struct *work) +static void atl1_reset_dev_task(struct work_struct *work) { struct atl1_adapter *adapter = - container_of(work, struct atl1_adapter, tx_timeout_task); + container_of(work, struct atl1_adapter, reset_dev_task); struct net_device *netdev = adapter->netdev; netif_device_detach(netdev); @@ -3032,12 +3032,10 @@ (unsigned long)adapter); adapter->phy_timer_pending = false; - INIT_WORK(&adapter->tx_timeout_task, atl1_tx_timeout_task); + INIT_WORK(&adapter->reset_dev_task, atl1_reset_dev_task); INIT_WORK(&adapter->link_chg_task, atlx_link_chg_task); - INIT_WORK(&adapter->pcie_dma_to_rst_task, atl1_tx_timeout_task); - err = register_netdev(netdev); if (err) goto err_common; --- linux-3.2.0.orig/drivers/net/ethernet/atheros/atlx/atlx.c +++ linux-3.2.0/drivers/net/ethernet/atheros/atlx/atlx.c @@ -193,7 +193,7 @@ { struct atlx_adapter *adapter = netdev_priv(netdev); /* Do the reset outside of interrupt context */ - schedule_work(&adapter->tx_timeout_task); + schedule_work(&adapter->reset_dev_task); } /* --- linux-3.2.0.orig/drivers/net/ethernet/atheros/atlx/atl2.c +++ linux-3.2.0/drivers/net/ethernet/atheros/atlx/atl2.c @@ -2049,10 +2049,12 @@ { struct atl2_adapter *adapter = netdev_priv(netdev); - strncpy(drvinfo->driver, atl2_driver_name, 32); - strncpy(drvinfo->version, atl2_driver_version, 32); - strncpy(drvinfo->fw_version, "L2", 32); - strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32); + strlcpy(drvinfo->driver, atl2_driver_name, sizeof(drvinfo->driver)); + strlcpy(drvinfo->version, atl2_driver_version, + sizeof(drvinfo->version)); + strlcpy(drvinfo->fw_version, "L2", sizeof(drvinfo->fw_version)); + strlcpy(drvinfo->bus_info, pci_name(adapter->pdev), + sizeof(drvinfo->bus_info)); drvinfo->n_stats = 0; drvinfo->testinfo_len = 0; drvinfo->regdump_len = atl2_get_regs_len(netdev); --- linux-3.2.0.orig/drivers/net/ethernet/atheros/atlx/atl1.h +++ linux-3.2.0/drivers/net/ethernet/atheros/atlx/atl1.h @@ -758,9 +758,8 @@ u16 link_speed; u16 link_duplex; spinlock_t lock; - struct work_struct tx_timeout_task; + struct work_struct reset_dev_task; struct work_struct link_chg_task; - struct work_struct pcie_dma_to_rst_task; struct timer_list phy_config_timer; bool phy_timer_pending; --- linux-3.2.0.orig/drivers/net/ethernet/atheros/atl1e/atl1e_ethtool.c +++ linux-3.2.0/drivers/net/ethernet/atheros/atl1e/atl1e_ethtool.c @@ -310,10 +310,12 @@ { struct atl1e_adapter *adapter = netdev_priv(netdev); - strncpy(drvinfo->driver, atl1e_driver_name, 32); - strncpy(drvinfo->version, atl1e_driver_version, 32); - strncpy(drvinfo->fw_version, "L1e", 32); - strncpy(drvinfo->bus_info, pci_name(adapter->pdev), 32); + strlcpy(drvinfo->driver, atl1e_driver_name, sizeof(drvinfo->driver)); + strlcpy(drvinfo->version, atl1e_driver_version, + sizeof(drvinfo->version)); + strlcpy(drvinfo->fw_version, "L1e", sizeof(drvinfo->fw_version)); + strlcpy(drvinfo->bus_info, pci_name(adapter->pdev), + sizeof(drvinfo->bus_info)); drvinfo->n_stats = 0; drvinfo->testinfo_len = 0; drvinfo->regdump_len = atl1e_get_regs_len(netdev); --- linux-3.2.0.orig/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c +++ linux-3.2.0/drivers/net/ethernet/intel/ixgbe/ixgbe_sriov.c @@ -67,7 +67,8 @@ vf_devfn = pdev->devfn + 0x80; pvfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID, device_id, NULL); while (pvfdev) { - if (pvfdev->devfn == vf_devfn) + if (pvfdev->devfn == vf_devfn && + (pvfdev->bus->number >= pdev->bus->number)) vfs_found++; vf_devfn += 2; pvfdev = pci_get_device(IXGBE_INTEL_VENDOR_ID, --- linux-3.2.0.orig/drivers/net/ethernet/intel/e1000/e1000_main.c +++ linux-3.2.0/drivers/net/ethernet/intel/e1000/e1000_main.c @@ -494,7 +494,11 @@ static void e1000_down_and_stop(struct e1000_adapter *adapter) { set_bit(__E1000_DOWN, &adapter->flags); - cancel_work_sync(&adapter->reset_task); + + /* Only kill reset task if adapter is not resetting */ + if (!test_bit(__E1000_RESETTING, &adapter->flags)) + cancel_work_sync(&adapter->reset_task); + cancel_delayed_work_sync(&adapter->watchdog_task); cancel_delayed_work_sync(&adapter->phy_info_task); cancel_delayed_work_sync(&adapter->fifo_stall_task); --- linux-3.2.0.orig/drivers/net/ethernet/intel/igb/igb_main.c +++ linux-3.2.0/drivers/net/ethernet/intel/igb/igb_main.c @@ -4965,7 +4965,8 @@ vf_devfn = pdev->devfn + 0x80; pvfdev = pci_get_device(hw->vendor_id, device_id, NULL); while (pvfdev) { - if (pvfdev->devfn == vf_devfn) + if (pvfdev->devfn == vf_devfn && + (pvfdev->bus->number >= pdev->bus->number)) vfs_found++; vf_devfn += vf_stride; pvfdev = pci_get_device(hw->vendor_id, --- linux-3.2.0.orig/drivers/net/ethernet/intel/e1000e/netdev.c +++ linux-3.2.0/drivers/net/ethernet/intel/e1000e/netdev.c @@ -1030,6 +1030,7 @@ struct e1000_adapter *adapter = container_of(work, struct e1000_adapter, print_hang_task); + struct net_device *netdev = adapter->netdev; struct e1000_ring *tx_ring = adapter->tx_ring; unsigned int i = tx_ring->next_to_clean; unsigned int eop = tx_ring->buffer_info[i].next_to_watch; @@ -1041,6 +1042,21 @@ if (test_bit(__E1000_DOWN, &adapter->state)) return; + if (!adapter->tx_hang_recheck && + (adapter->flags2 & FLAG2_DMA_BURST)) { + /* May be block on write-back, flush and detect again + * flush pending descriptor writebacks to memory + */ + ew32(TIDV, adapter->tx_int_delay | E1000_TIDV_FPD); + /* execute the writes immediately */ + e1e_flush(); + adapter->tx_hang_recheck = true; + return; + } + /* Real hang detected */ + adapter->tx_hang_recheck = false; + netif_stop_queue(netdev); + e1e_rphy(hw, PHY_STATUS, &phy_status); e1e_rphy(hw, PHY_1000T_STATUS, &phy_1000t_status); e1e_rphy(hw, PHY_EXT_STATUS, &phy_ext_status); @@ -1154,10 +1170,10 @@ if (tx_ring->buffer_info[i].time_stamp && time_after(jiffies, tx_ring->buffer_info[i].time_stamp + (adapter->tx_timeout_factor * HZ)) && - !(er32(STATUS) & E1000_STATUS_TXOFF)) { + !(er32(STATUS) & E1000_STATUS_TXOFF)) schedule_work(&adapter->print_hang_task); - netif_stop_queue(netdev); - } + else + adapter->tx_hang_recheck = false; } adapter->total_tx_bytes += total_tx_bytes; adapter->total_tx_packets += total_tx_packets; @@ -3782,6 +3798,7 @@ e1000_irq_enable(adapter); + adapter->tx_hang_recheck = false; netif_start_queue(netdev); adapter->idle_check = true; --- linux-3.2.0.orig/drivers/net/ethernet/intel/e1000e/e1000.h +++ linux-3.2.0/drivers/net/ethernet/intel/e1000e/e1000.h @@ -309,6 +309,7 @@ u32 txd_cmd; bool detect_tx_hung; + bool tx_hang_recheck; u8 tx_timeout_factor; u32 tx_int_delay; --- linux-3.2.0.orig/drivers/net/ethernet/natsemi/natsemi.c +++ linux-3.2.0/drivers/net/ethernet/natsemi/natsemi.c @@ -2555,9 +2555,9 @@ static void get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) { struct netdev_private *np = netdev_priv(dev); - strncpy(info->driver, DRV_NAME, ETHTOOL_BUSINFO_LEN); - strncpy(info->version, DRV_VERSION, ETHTOOL_BUSINFO_LEN); - strncpy(info->bus_info, pci_name(np->pci_dev), ETHTOOL_BUSINFO_LEN); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(np->pci_dev), sizeof(info->bus_info)); } static int get_regs_len(struct net_device *dev) --- linux-3.2.0.orig/drivers/net/ethernet/natsemi/ns83820.c +++ linux-3.2.0/drivers/net/ethernet/natsemi/ns83820.c @@ -1364,9 +1364,9 @@ static void ns83820_get_drvinfo(struct net_device *ndev, struct ethtool_drvinfo *info) { struct ns83820 *dev = PRIV(ndev); - strcpy(info->driver, "ns83820"); - strcpy(info->version, VERSION); - strcpy(info->bus_info, pci_name(dev->pci_dev)); + strlcpy(info->driver, "ns83820", sizeof(info->driver)); + strlcpy(info->version, VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(dev->pci_dev), sizeof(info->bus_info)); } static u32 ns83820_get_link(struct net_device *ndev) --- linux-3.2.0.orig/drivers/net/ethernet/i825xx/eepro.c +++ linux-3.2.0/drivers/net/ethernet/i825xx/eepro.c @@ -1726,9 +1726,10 @@ static void eepro_ethtool_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *drvinfo) { - strcpy(drvinfo->driver, DRV_NAME); - strcpy(drvinfo->version, DRV_VERSION); - sprintf(drvinfo->bus_info, "ISA 0x%lx", dev->base_addr); + strlcpy(drvinfo->driver, DRV_NAME, sizeof(drvinfo->driver)); + strlcpy(drvinfo->version, DRV_VERSION, sizeof(drvinfo->version)); + snprintf(drvinfo->bus_info, sizeof(drvinfo->bus_info), + "ISA 0x%lx", dev->base_addr); } static const struct ethtool_ops eepro_ethtool_ops = { --- linux-3.2.0.orig/drivers/net/ethernet/broadcom/tg3.c +++ linux-3.2.0/drivers/net/ethernet/broadcom/tg3.c @@ -879,8 +879,13 @@ if (sblk->status & SD_STATUS_LINK_CHG) work_exists = 1; } - /* check for RX/TX work to do */ - if (sblk->idx[0].tx_consumer != tnapi->tx_cons || + + /* check for TX work to do */ + if (sblk->idx[0].tx_consumer != tnapi->tx_cons) + work_exists = 1; + + /* check for RX work to do */ + if (tnapi->rx_rcb_prod_idx && *(tnapi->rx_rcb_prod_idx) != tnapi->rx_rcb_ptr) work_exists = 1; @@ -2794,7 +2799,9 @@ if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5700 || GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5704 || (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5780 && - (tp->phy_flags & TG3_PHYFLG_MII_SERDES))) + (tp->phy_flags & TG3_PHYFLG_MII_SERDES)) || + (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5717 && + !tp->pci_fn)) return; if (GET_CHIP_REV(tp->pci_chip_rev_id) == CHIPREV_5784_AX || @@ -5893,6 +5900,9 @@ return work_done; } + if (!tnapi->rx_rcb_prod_idx) + return work_done; + /* run RX thread, within the bounds set by NAPI. * All RX "locking" is done by ensuring outside * code synchronizes with tg3->napi.poll() @@ -7446,6 +7456,12 @@ */ switch (i) { default: + if (tg3_flag(tp, ENABLE_RSS)) { + tnapi->rx_rcb_prod_idx = NULL; + break; + } + /* Fall through */ + case 1: tnapi->rx_rcb_prod_idx = &sblk->idx[0].rx_producer; break; case 2: @@ -10428,10 +10444,10 @@ { struct tg3 *tp = netdev_priv(dev); - strcpy(info->driver, DRV_MODULE_NAME); - strcpy(info->version, DRV_MODULE_VERSION); - strcpy(info->fw_version, tp->fw_ver); - strcpy(info->bus_info, pci_name(tp->pdev)); + strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version)); + strlcpy(info->fw_version, tp->fw_ver, sizeof(info->fw_version)); + strlcpy(info->bus_info, pci_name(tp->pdev), sizeof(info->bus_info)); } static void tg3_get_wol(struct net_device *dev, struct ethtool_wolinfo *wol) @@ -13997,9 +14013,13 @@ if (tg3_flag(tp, HW_TSO_1) || tg3_flag(tp, HW_TSO_2) || tg3_flag(tp, HW_TSO_3) || - (tp->fw_needed && !tg3_flag(tp, ENABLE_ASF))) + tp->fw_needed) { + /* For firmware TSO, assume ASF is disabled. + * We'll disable TSO later if we discover ASF + * is enabled in tg3_get_eeprom_hw_cfg(). + */ tg3_flag_set(tp, TSO_CAPABLE); - else { + } else { tg3_flag_clear(tp, TSO_CAPABLE); tg3_flag_clear(tp, TSO_BUG); tp->fw_needed = NULL; @@ -14273,6 +14293,12 @@ */ tg3_get_eeprom_hw_cfg(tp); + if (tp->fw_needed && tg3_flag(tp, ENABLE_ASF)) { + tg3_flag_clear(tp, TSO_CAPABLE); + tg3_flag_clear(tp, TSO_BUG); + tp->fw_needed = NULL; + } + if (tg3_flag(tp, ENABLE_APE)) { /* Allow reads and writes to the * APE register and memory space. --- linux-3.2.0.orig/drivers/net/ethernet/broadcom/bnx2.c +++ linux-3.2.0/drivers/net/ethernet/broadcom/bnx2.c @@ -6873,10 +6873,10 @@ { struct bnx2 *bp = netdev_priv(dev); - strcpy(info->driver, DRV_MODULE_NAME); - strcpy(info->version, DRV_MODULE_VERSION); - strcpy(info->bus_info, pci_name(bp->pdev)); - strcpy(info->fw_version, bp->fw_version); + strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(bp->pdev), sizeof(info->bus_info)); + strlcpy(info->fw_version, bp->fw_version, sizeof(info->fw_version)); } #define BNX2_REGDUMP_LEN (32 * 1024) --- linux-3.2.0.orig/drivers/net/ethernet/broadcom/bnx2x/bnx2x_ethtool.c +++ linux-3.2.0/drivers/net/ethernet/broadcom/bnx2x/bnx2x_ethtool.c @@ -761,8 +761,8 @@ struct bnx2x *bp = netdev_priv(dev); u8 phy_fw_ver[PHY_FW_VER_LEN]; - strcpy(info->driver, DRV_MODULE_NAME); - strcpy(info->version, DRV_MODULE_VERSION); + strlcpy(info->driver, DRV_MODULE_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_MODULE_VERSION, sizeof(info->version)); phy_fw_ver[0] = '\0'; if (bp->port.pmf) { @@ -773,14 +773,14 @@ bnx2x_release_phy_lock(bp); } - strncpy(info->fw_version, bp->fw_ver, 32); + strlcpy(info->fw_version, bp->fw_ver, sizeof(info->fw_version)); snprintf(info->fw_version + strlen(bp->fw_ver), 32 - strlen(bp->fw_ver), "bc %d.%d.%d%s%s", (bp->common.bc_ver & 0xff0000) >> 16, (bp->common.bc_ver & 0xff00) >> 8, (bp->common.bc_ver & 0xff), ((phy_fw_ver[0] != '\0') ? " phy " : ""), phy_fw_ver); - strcpy(info->bus_info, pci_name(bp->pdev)); + strlcpy(info->bus_info, pci_name(bp->pdev), sizeof(info->bus_info)); info->n_stats = BNX2X_NUM_STATS; info->testinfo_len = BNX2X_NUM_TESTS; info->eedump_len = bp->common.flash_size; --- linux-3.2.0.orig/drivers/net/ethernet/realtek/8139cp.c +++ linux-3.2.0/drivers/net/ethernet/realtek/8139cp.c @@ -563,6 +563,7 @@ if (cpr16(IntrStatus) & cp_rx_intr_mask) goto rx_status_loop; + napi_gro_flush(napi); spin_lock_irqsave(&cp->lock, flags); __napi_complete(napi); cpw16_f(IntrMask, cp_intr_mask); @@ -960,6 +961,11 @@ cpw8(Cmd, RxOn | TxOn); } +static void cp_enable_irq(struct cp_private *cp) +{ + cpw16_f(IntrMask, cp_intr_mask); +} + static void cp_init_hw (struct cp_private *cp) { struct net_device *dev = cp->dev; @@ -999,8 +1005,6 @@ cpw16(MultiIntr, 0); - cpw16_f(IntrMask, cp_intr_mask); - cpw8_f(Cfg9346, Cfg9346_Lock); } @@ -1132,6 +1136,8 @@ if (rc) goto err_out_hw; + cp_enable_irq(cp); + netif_carrier_off(dev); mii_check_media(&cp->mii_if, netif_msg_link(cp), true); netif_start_queue(dev); @@ -1319,9 +1325,9 @@ { struct cp_private *cp = netdev_priv(dev); - strcpy (info->driver, DRV_NAME); - strcpy (info->version, DRV_VERSION); - strcpy (info->bus_info, pci_name(cp->pdev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(cp->pdev), sizeof(info->bus_info)); } static void cp_get_ringparam(struct net_device *dev, @@ -2033,6 +2039,7 @@ /* FIXME: sh*t may happen if the Rx ring buffer is depleted */ cp_init_rings_index (cp); cp_init_hw (cp); + cp_enable_irq(cp); netif_start_queue (dev); spin_lock_irqsave (&cp->lock, flags); --- linux-3.2.0.orig/drivers/net/ethernet/realtek/r8169.c +++ linux-3.2.0/drivers/net/ethernet/realtek/r8169.c @@ -1406,12 +1406,12 @@ struct rtl8169_private *tp = netdev_priv(dev); struct rtl_fw *rtl_fw = tp->rtl_fw; - strcpy(info->driver, MODULENAME); - strcpy(info->version, RTL8169_VERSION); - strcpy(info->bus_info, pci_name(tp->pci_dev)); + strlcpy(info->driver, MODULENAME, sizeof(info->driver)); + strlcpy(info->version, RTL8169_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info)); BUILD_BUG_ON(sizeof(info->fw_version) < sizeof(rtl_fw->version)); - strcpy(info->fw_version, IS_ERR_OR_NULL(rtl_fw) ? "N/A" : - rtl_fw->version); + strlcpy(info->fw_version, IS_ERR_OR_NULL(rtl_fw) ? "N/A" : + rtl_fw->version, sizeof(info->fw_version)); } static int rtl8169_get_regs_len(struct net_device *dev) @@ -3781,12 +3781,20 @@ static void rtl_hw_jumbo_enable(struct rtl8169_private *tp) { + void __iomem *ioaddr = tp->mmio_addr; + + RTL_W8(Cfg9346, Cfg9346_Unlock); rtl_generic_op(tp, tp->jumbo_ops.enable); + RTL_W8(Cfg9346, Cfg9346_Lock); } static void rtl_hw_jumbo_disable(struct rtl8169_private *tp) { + void __iomem *ioaddr = tp->mmio_addr; + + RTL_W8(Cfg9346, Cfg9346_Unlock); rtl_generic_op(tp, tp->jumbo_ops.disable); + RTL_W8(Cfg9346, Cfg9346_Lock); } static void r8168c_hw_jumbo_enable(struct rtl8169_private *tp) @@ -6186,6 +6194,9 @@ { struct net_device *dev = pci_get_drvdata(pdev); struct rtl8169_private *tp = netdev_priv(dev); + struct device *d = &pdev->dev; + + pm_runtime_get_sync(d); rtl8169_net_suspend(dev); @@ -6207,6 +6218,8 @@ pci_wake_from_d3(pdev, true); pci_set_power_state(pdev, PCI_D3hot); } + + pm_runtime_put_noidle(d); } static struct pci_driver rtl8169_pci_driver = { --- linux-3.2.0.orig/drivers/net/ethernet/realtek/8139too.c +++ linux-3.2.0/drivers/net/ethernet/realtek/8139too.c @@ -2330,9 +2330,9 @@ static void rtl8139_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) { struct rtl8139_private *tp = netdev_priv(dev); - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); - strcpy(info->bus_info, pci_name(tp->pci_dev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(tp->pci_dev), sizeof(info->bus_info)); info->regdump_len = tp->regs_len; } --- linux-3.2.0.orig/drivers/net/ethernet/adaptec/starfire.c +++ linux-3.2.0/drivers/net/ethernet/adaptec/starfire.c @@ -1842,9 +1842,9 @@ static void get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) { struct netdev_private *np = netdev_priv(dev); - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); - strcpy(info->bus_info, pci_name(np->pci_dev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->bus_info, pci_name(np->pci_dev), sizeof(info->bus_info)); } static int get_settings(struct net_device *dev, struct ethtool_cmd *ecmd) --- linux-3.2.0.orig/drivers/net/ethernet/marvell/sky2.h +++ linux-3.2.0/drivers/net/ethernet/marvell/sky2.h @@ -2241,7 +2241,6 @@ u16 rx_pending; u16 rx_data_size; u16 rx_nfrags; - u16 rx_tag; struct { unsigned long last; --- linux-3.2.0.orig/drivers/net/ethernet/marvell/sky2.c +++ linux-3.2.0/drivers/net/ethernet/marvell/sky2.c @@ -95,6 +95,10 @@ module_param(disable_msi, int, 0); MODULE_PARM_DESC(disable_msi, "Disable Message Signaled Interrupt (MSI)"); +static int legacy_pme = 0; +module_param(legacy_pme, int, 0); +MODULE_PARM_DESC(legacy_pme, "Legacy power management"); + static DEFINE_PCI_DEVICE_TABLE(sky2_id_table) = { { PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9000) }, /* SK-9Sxx */ { PCI_DEVICE(PCI_VENDOR_ID_SYSKONNECT, 0x9E00) }, /* SK-9Exx */ @@ -867,6 +871,13 @@ /* Disable PiG firmware */ sky2_write16(hw, B0_CTST, Y2_HW_WOL_OFF); + /* Needed by some broken BIOSes, use PCI rather than PCI-e for WOL */ + if (legacy_pme) { + u32 reg1 = sky2_pci_read32(hw, PCI_DEV_REG1); + reg1 |= PCI_Y2_PME_LEGACY; + sky2_pci_write32(hw, PCI_DEV_REG1, reg1); + } + /* block receiver */ sky2_write8(hw, SK_REG(port, RX_GMF_CTRL_T), GMF_RST_SET); sky2_read32(hw, B0_CTST); @@ -1755,13 +1766,14 @@ sky2_hw_up(sky2); + /* Enable interrupts from phy/mac for port */ + imask = sky2_read32(hw, B0_IMSK); + if (hw->chip_id == CHIP_ID_YUKON_OPT || hw->chip_id == CHIP_ID_YUKON_PRM || hw->chip_id == CHIP_ID_YUKON_OP_2) imask |= Y2_IS_PHY_QLNK; /* enable PHY Quick Link */ - /* Enable interrupts from phy/mac for port */ - imask = sky2_read32(hw, B0_IMSK); imask |= portirq_msk[port]; sky2_write32(hw, B0_IMSK, imask); sky2_read32(hw, B0_IMSK); @@ -2463,8 +2475,13 @@ skb_copy_from_linear_data(re->skb, skb->data, length); skb->ip_summed = re->skb->ip_summed; skb->csum = re->skb->csum; + skb->rxhash = re->skb->rxhash; + skb->vlan_tci = re->skb->vlan_tci; + pci_dma_sync_single_for_device(sky2->hw->pdev, re->data_addr, length, PCI_DMA_FROMDEVICE); + re->skb->vlan_tci = 0; + re->skb->rxhash = 0; re->skb->ip_summed = CHECKSUM_NONE; skb_put(skb, length); } @@ -2549,9 +2566,6 @@ struct sk_buff *skb = NULL; u16 count = (status & GMR_FS_LEN) >> 16; - if (status & GMR_FS_VLAN) - count -= VLAN_HLEN; /* Account for vlan tag */ - netif_printk(sky2, rx_status, KERN_DEBUG, dev, "rx slot %u status 0x%x len %d\n", sky2->rx_next, status, length); @@ -2559,6 +2573,9 @@ sky2->rx_next = (sky2->rx_next + 1) % sky2->rx_pending; prefetch(sky2->rx_ring + sky2->rx_next); + if (vlan_tx_tag_present(re->skb)) + count -= VLAN_HLEN; /* Account for vlan tag */ + /* This chip has hardware problems that generates bogus status. * So do only marginal checking and expect higher level protocols * to handle crap frames. @@ -2616,11 +2633,8 @@ } static inline void sky2_skb_rx(const struct sky2_port *sky2, - u32 status, struct sk_buff *skb) + struct sk_buff *skb) { - if (status & GMR_FS_VLAN) - __vlan_hwaccel_put_tag(skb, be16_to_cpu(sky2->rx_tag)); - if (skb->ip_summed == CHECKSUM_NONE) netif_receive_skb(skb); else @@ -2674,6 +2688,14 @@ } } +static void sky2_rx_tag(struct sky2_port *sky2, u16 length) +{ + struct sk_buff *skb; + + skb = sky2->rx_ring[sky2->rx_next].skb; + __vlan_hwaccel_put_tag(skb, be16_to_cpu(length)); +} + static void sky2_rx_hash(struct sky2_port *sky2, u32 status) { struct sk_buff *skb; @@ -2732,8 +2754,7 @@ } skb->protocol = eth_type_trans(skb, dev); - - sky2_skb_rx(sky2, status, skb); + sky2_skb_rx(sky2, skb); /* Stop after net poll weight */ if (++work_done >= to_do) @@ -2741,11 +2762,11 @@ break; case OP_RXVLAN: - sky2->rx_tag = length; + sky2_rx_tag(sky2, length); break; case OP_RXCHKSVLAN: - sky2->rx_tag = length; + sky2_rx_tag(sky2, length); /* fall through */ case OP_RXCHKS: if (likely(dev->features & NETIF_F_RXCSUM)) @@ -3643,10 +3664,11 @@ { struct sky2_port *sky2 = netdev_priv(dev); - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); - strcpy(info->fw_version, "N/A"); - strcpy(info->bus_info, pci_name(sky2->hw->pdev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->fw_version, "N/A", sizeof(info->fw_version)); + strlcpy(info->bus_info, pci_name(sky2->hw->pdev), + sizeof(info->bus_info)); } static const struct sky2_stat { --- linux-3.2.0.orig/drivers/net/ethernet/marvell/mv643xx_eth.c +++ linux-3.2.0/drivers/net/ethernet/marvell/mv643xx_eth.c @@ -1502,10 +1502,12 @@ static void mv643xx_eth_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *drvinfo) { - strncpy(drvinfo->driver, mv643xx_eth_driver_name, 32); - strncpy(drvinfo->version, mv643xx_eth_driver_version, 32); - strncpy(drvinfo->fw_version, "N/A", 32); - strncpy(drvinfo->bus_info, "platform", 32); + strlcpy(drvinfo->driver, mv643xx_eth_driver_name, + sizeof(drvinfo->driver)); + strlcpy(drvinfo->version, mv643xx_eth_driver_version, + sizeof(drvinfo->version)); + strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version)); + strlcpy(drvinfo->bus_info, "platform", sizeof(drvinfo->bus_info)); drvinfo->n_stats = ARRAY_SIZE(mv643xx_eth_stats); } --- linux-3.2.0.orig/drivers/net/ethernet/marvell/skge.c +++ linux-3.2.0/drivers/net/ethernet/marvell/skge.c @@ -394,10 +394,11 @@ { struct skge_port *skge = netdev_priv(dev); - strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); - strcpy(info->fw_version, "N/A"); - strcpy(info->bus_info, pci_name(skge->hw->pdev)); + strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); + strlcpy(info->version, DRV_VERSION, sizeof(info->version)); + strlcpy(info->fw_version, "N/A", sizeof(info->fw_version)); + strlcpy(info->bus_info, pci_name(skge->hw->pdev), + sizeof(info->bus_info)); } static const struct skge_stat { --- linux-3.2.0.orig/drivers/net/ethernet/stmicro/stmmac/mmc_core.c +++ linux-3.2.0/drivers/net/ethernet/stmicro/stmmac/mmc_core.c @@ -21,8 +21,9 @@ Author: Giuseppe Cavallaro *******************************************************************************/ - +#include #include +#include #include "mmc.h" /* MAC Management Counters register offset */ --- linux-3.2.0.orig/drivers/net/dsa/Kconfig +++ linux-3.2.0/drivers/net/dsa/Kconfig @@ -0,0 +1,36 @@ +menu "Distributed Switch Architecture drivers" + depends on NET_DSA + +config NET_DSA_MV88E6XXX + tristate + default n + +config NET_DSA_MV88E6060 + tristate "Marvell 88E6060 ethernet switch chip support" + select NET_DSA_TAG_TRAILER + ---help--- + This enables support for the Marvell 88E6060 ethernet switch + chip. + +config NET_DSA_MV88E6XXX_NEED_PPU + bool + default n + +config NET_DSA_MV88E6131 + tristate "Marvell 88E6085/6095/6095F/6131 ethernet switch chip support" + select NET_DSA_MV88E6XXX + select NET_DSA_MV88E6XXX_NEED_PPU + select NET_DSA_TAG_DSA + ---help--- + This enables support for the Marvell 88E6085/6095/6095F/6131 + ethernet switch chips. + +config NET_DSA_MV88E6123_61_65 + tristate "Marvell 88E6123/6161/6165 ethernet switch chip support" + select NET_DSA_MV88E6XXX + select NET_DSA_TAG_EDSA + ---help--- + This enables support for the Marvell 88E6123/6161/6165 + ethernet switch chips. + +endmenu --- linux-3.2.0.orig/drivers/net/dsa/mv88e6123_61_65.c +++ linux-3.2.0/drivers/net/dsa/mv88e6123_61_65.c @@ -0,0 +1,452 @@ +/* + * net/dsa/mv88e6123_61_65.c - Marvell 88e6123/6161/6165 switch chip support + * Copyright (c) 2008-2009 Marvell Semiconductor + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + */ + +#include +#include +#include +#include +#include +#include "mv88e6xxx.h" + +static char *mv88e6123_61_65_probe(struct mii_bus *bus, int sw_addr) +{ + int ret; + + ret = __mv88e6xxx_reg_read(bus, sw_addr, REG_PORT(0), 0x03); + if (ret >= 0) { + if (ret == 0x1212) + return "Marvell 88E6123 (A1)"; + if (ret == 0x1213) + return "Marvell 88E6123 (A2)"; + if ((ret & 0xfff0) == 0x1210) + return "Marvell 88E6123"; + + if (ret == 0x1612) + return "Marvell 88E6161 (A1)"; + if (ret == 0x1613) + return "Marvell 88E6161 (A2)"; + if ((ret & 0xfff0) == 0x1610) + return "Marvell 88E6161"; + + if (ret == 0x1652) + return "Marvell 88E6165 (A1)"; + if (ret == 0x1653) + return "Marvell 88e6165 (A2)"; + if ((ret & 0xfff0) == 0x1650) + return "Marvell 88E6165"; + } + + return NULL; +} + +static int mv88e6123_61_65_switch_reset(struct dsa_switch *ds) +{ + int i; + int ret; + + /* + * Set all ports to the disabled state. + */ + for (i = 0; i < 8; i++) { + ret = REG_READ(REG_PORT(i), 0x04); + REG_WRITE(REG_PORT(i), 0x04, ret & 0xfffc); + } + + /* + * Wait for transmit queues to drain. + */ + msleep(2); + + /* + * Reset the switch. + */ + REG_WRITE(REG_GLOBAL, 0x04, 0xc400); + + /* + * Wait up to one second for reset to complete. + */ + for (i = 0; i < 1000; i++) { + ret = REG_READ(REG_GLOBAL, 0x00); + if ((ret & 0xc800) == 0xc800) + break; + + msleep(1); + } + if (i == 1000) + return -ETIMEDOUT; + + return 0; +} + +static int mv88e6123_61_65_setup_global(struct dsa_switch *ds) +{ + int ret; + int i; + + /* + * Disable the PHY polling unit (since there won't be any + * external PHYs to poll), don't discard packets with + * excessive collisions, and mask all interrupt sources. + */ + REG_WRITE(REG_GLOBAL, 0x04, 0x0000); + + /* + * Set the default address aging time to 5 minutes, and + * enable address learn messages to be sent to all message + * ports. + */ + REG_WRITE(REG_GLOBAL, 0x0a, 0x0148); + + /* + * Configure the priority mapping registers. + */ + ret = mv88e6xxx_config_prio(ds); + if (ret < 0) + return ret; + + /* + * Configure the upstream port, and configure the upstream + * port as the port to which ingress and egress monitor frames + * are to be sent. + */ + REG_WRITE(REG_GLOBAL, 0x1a, (dsa_upstream_port(ds) * 0x1110)); + + /* + * Disable remote management for now, and set the switch's + * DSA device number. + */ + REG_WRITE(REG_GLOBAL, 0x1c, ds->index & 0x1f); + + /* + * Send all frames with destination addresses matching + * 01:80:c2:00:00:2x to the CPU port. + */ + REG_WRITE(REG_GLOBAL2, 0x02, 0xffff); + + /* + * Send all frames with destination addresses matching + * 01:80:c2:00:00:0x to the CPU port. + */ + REG_WRITE(REG_GLOBAL2, 0x03, 0xffff); + + /* + * Disable the loopback filter, disable flow control + * messages, disable flood broadcast override, disable + * removing of provider tags, disable ATU age violation + * interrupts, disable tag flow control, force flow + * control priority to the highest, and send all special + * multicast frames to the CPU at the highest priority. + */ + REG_WRITE(REG_GLOBAL2, 0x05, 0x00ff); + + /* + * Program the DSA routing table. + */ + for (i = 0; i < 32; i++) { + int nexthop; + + nexthop = 0x1f; + if (i != ds->index && i < ds->dst->pd->nr_chips) + nexthop = ds->pd->rtable[i] & 0x1f; + + REG_WRITE(REG_GLOBAL2, 0x06, 0x8000 | (i << 8) | nexthop); + } + + /* + * Clear all trunk masks. + */ + for (i = 0; i < 8; i++) + REG_WRITE(REG_GLOBAL2, 0x07, 0x8000 | (i << 12) | 0xff); + + /* + * Clear all trunk mappings. + */ + for (i = 0; i < 16; i++) + REG_WRITE(REG_GLOBAL2, 0x08, 0x8000 | (i << 11)); + + /* + * Disable ingress rate limiting by resetting all ingress + * rate limit registers to their initial state. + */ + for (i = 0; i < 6; i++) + REG_WRITE(REG_GLOBAL2, 0x09, 0x9000 | (i << 8)); + + /* + * Initialise cross-chip port VLAN table to reset defaults. + */ + REG_WRITE(REG_GLOBAL2, 0x0b, 0x9000); + + /* + * Clear the priority override table. + */ + for (i = 0; i < 16; i++) + REG_WRITE(REG_GLOBAL2, 0x0f, 0x8000 | (i << 8)); + + /* @@@ initialise AVB (22/23) watchdog (27) sdet (29) registers */ + + return 0; +} + +static int mv88e6123_61_65_setup_port(struct dsa_switch *ds, int p) +{ + int addr = REG_PORT(p); + u16 val; + + /* + * MAC Forcing register: don't force link, speed, duplex + * or flow control state to any particular values on physical + * ports, but force the CPU port and all DSA ports to 1000 Mb/s + * full duplex. + */ + if (dsa_is_cpu_port(ds, p) || ds->dsa_port_mask & (1 << p)) + REG_WRITE(addr, 0x01, 0x003e); + else + REG_WRITE(addr, 0x01, 0x0003); + + /* + * Do not limit the period of time that this port can be + * paused for by the remote end or the period of time that + * this port can pause the remote end. + */ + REG_WRITE(addr, 0x02, 0x0000); + + /* + * Port Control: disable Drop-on-Unlock, disable Drop-on-Lock, + * disable Header mode, enable IGMP/MLD snooping, disable VLAN + * tunneling, determine priority by looking at 802.1p and IP + * priority fields (IP prio has precedence), and set STP state + * to Forwarding. + * + * If this is the CPU link, use DSA or EDSA tagging depending + * on which tagging mode was configured. + * + * If this is a link to another switch, use DSA tagging mode. + * + * If this is the upstream port for this switch, enable + * forwarding of unknown unicasts and multicasts. + */ + val = 0x0433; + if (dsa_is_cpu_port(ds, p)) { + if (ds->dst->tag_protocol == htons(ETH_P_EDSA)) + val |= 0x3300; + else + val |= 0x0100; + } + if (ds->dsa_port_mask & (1 << p)) + val |= 0x0100; + if (p == dsa_upstream_port(ds)) + val |= 0x000c; + REG_WRITE(addr, 0x04, val); + + /* + * Port Control 1: disable trunking. Also, if this is the + * CPU port, enable learn messages to be sent to this port. + */ + REG_WRITE(addr, 0x05, dsa_is_cpu_port(ds, p) ? 0x8000 : 0x0000); + + /* + * Port based VLAN map: give each port its own address + * database, allow the CPU port to talk to each of the 'real' + * ports, and allow each of the 'real' ports to only talk to + * the upstream port. + */ + val = (p & 0xf) << 12; + if (dsa_is_cpu_port(ds, p)) + val |= ds->phys_port_mask; + else + val |= 1 << dsa_upstream_port(ds); + REG_WRITE(addr, 0x06, val); + + /* + * Default VLAN ID and priority: don't set a default VLAN + * ID, and set the default packet priority to zero. + */ + REG_WRITE(addr, 0x07, 0x0000); + + /* + * Port Control 2: don't force a good FCS, set the maximum + * frame size to 10240 bytes, don't let the switch add or + * strip 802.1q tags, don't discard tagged or untagged frames + * on this port, do a destination address lookup on all + * received packets as usual, disable ARP mirroring and don't + * send a copy of all transmitted/received frames on this port + * to the CPU. + */ + REG_WRITE(addr, 0x08, 0x2080); + + /* + * Egress rate control: disable egress rate control. + */ + REG_WRITE(addr, 0x09, 0x0001); + + /* + * Egress rate control 2: disable egress rate control. + */ + REG_WRITE(addr, 0x0a, 0x0000); + + /* + * Port Association Vector: when learning source addresses + * of packets, add the address to the address database using + * a port bitmap that has only the bit for this port set and + * the other bits clear. + */ + REG_WRITE(addr, 0x0b, 1 << p); + + /* + * Port ATU control: disable limiting the number of address + * database entries that this port is allowed to use. + */ + REG_WRITE(addr, 0x0c, 0x0000); + + /* + * Priorit Override: disable DA, SA and VTU priority override. + */ + REG_WRITE(addr, 0x0d, 0x0000); + + /* + * Port Ethertype: use the Ethertype DSA Ethertype value. + */ + REG_WRITE(addr, 0x0f, ETH_P_EDSA); + + /* + * Tag Remap: use an identity 802.1p prio -> switch prio + * mapping. + */ + REG_WRITE(addr, 0x18, 0x3210); + + /* + * Tag Remap 2: use an identity 802.1p prio -> switch prio + * mapping. + */ + REG_WRITE(addr, 0x19, 0x7654); + + return 0; +} + +static int mv88e6123_61_65_setup(struct dsa_switch *ds) +{ + struct mv88e6xxx_priv_state *ps = (void *)(ds + 1); + int i; + int ret; + + mutex_init(&ps->smi_mutex); + mutex_init(&ps->stats_mutex); + + ret = mv88e6123_61_65_switch_reset(ds); + if (ret < 0) + return ret; + + /* @@@ initialise vtu and atu */ + + ret = mv88e6123_61_65_setup_global(ds); + if (ret < 0) + return ret; + + for (i = 0; i < 6; i++) { + ret = mv88e6123_61_65_setup_port(ds, i); + if (ret < 0) + return ret; + } + + return 0; +} + +static int mv88e6123_61_65_port_to_phy_addr(int port) +{ + if (port >= 0 && port <= 4) + return port; + return -1; +} + +static int +mv88e6123_61_65_phy_read(struct dsa_switch *ds, int port, int regnum) +{ + int addr = mv88e6123_61_65_port_to_phy_addr(port); + return mv88e6xxx_phy_read(ds, addr, regnum); +} + +static int +mv88e6123_61_65_phy_write(struct dsa_switch *ds, + int port, int regnum, u16 val) +{ + int addr = mv88e6123_61_65_port_to_phy_addr(port); + return mv88e6xxx_phy_write(ds, addr, regnum, val); +} + +static struct mv88e6xxx_hw_stat mv88e6123_61_65_hw_stats[] = { + { "in_good_octets", 8, 0x00, }, + { "in_bad_octets", 4, 0x02, }, + { "in_unicast", 4, 0x04, }, + { "in_broadcasts", 4, 0x06, }, + { "in_multicasts", 4, 0x07, }, + { "in_pause", 4, 0x16, }, + { "in_undersize", 4, 0x18, }, + { "in_fragments", 4, 0x19, }, + { "in_oversize", 4, 0x1a, }, + { "in_jabber", 4, 0x1b, }, + { "in_rx_error", 4, 0x1c, }, + { "in_fcs_error", 4, 0x1d, }, + { "out_octets", 8, 0x0e, }, + { "out_unicast", 4, 0x10, }, + { "out_broadcasts", 4, 0x13, }, + { "out_multicasts", 4, 0x12, }, + { "out_pause", 4, 0x15, }, + { "excessive", 4, 0x11, }, + { "collisions", 4, 0x1e, }, + { "deferred", 4, 0x05, }, + { "single", 4, 0x14, }, + { "multiple", 4, 0x17, }, + { "out_fcs_error", 4, 0x03, }, + { "late", 4, 0x1f, }, + { "hist_64bytes", 4, 0x08, }, + { "hist_65_127bytes", 4, 0x09, }, + { "hist_128_255bytes", 4, 0x0a, }, + { "hist_256_511bytes", 4, 0x0b, }, + { "hist_512_1023bytes", 4, 0x0c, }, + { "hist_1024_max_bytes", 4, 0x0d, }, +}; + +static void +mv88e6123_61_65_get_strings(struct dsa_switch *ds, int port, uint8_t *data) +{ + mv88e6xxx_get_strings(ds, ARRAY_SIZE(mv88e6123_61_65_hw_stats), + mv88e6123_61_65_hw_stats, port, data); +} + +static void +mv88e6123_61_65_get_ethtool_stats(struct dsa_switch *ds, + int port, uint64_t *data) +{ + mv88e6xxx_get_ethtool_stats(ds, ARRAY_SIZE(mv88e6123_61_65_hw_stats), + mv88e6123_61_65_hw_stats, port, data); +} + +static int mv88e6123_61_65_get_sset_count(struct dsa_switch *ds) +{ + return ARRAY_SIZE(mv88e6123_61_65_hw_stats); +} + +struct dsa_switch_driver mv88e6123_61_65_switch_driver = { + .tag_protocol = cpu_to_be16(ETH_P_EDSA), + .priv_size = sizeof(struct mv88e6xxx_priv_state), + .probe = mv88e6123_61_65_probe, + .setup = mv88e6123_61_65_setup, + .set_addr = mv88e6xxx_set_addr_indirect, + .phy_read = mv88e6123_61_65_phy_read, + .phy_write = mv88e6123_61_65_phy_write, + .poll_link = mv88e6xxx_poll_link, + .get_strings = mv88e6123_61_65_get_strings, + .get_ethtool_stats = mv88e6123_61_65_get_ethtool_stats, + .get_sset_count = mv88e6123_61_65_get_sset_count, +}; + +MODULE_ALIAS("platform:mv88e6123"); +MODULE_ALIAS("platform:mv88e6161"); +MODULE_ALIAS("platform:mv88e6165"); --- linux-3.2.0.orig/drivers/net/dsa/mv88e6xxx.c +++ linux-3.2.0/drivers/net/dsa/mv88e6xxx.c @@ -0,0 +1,550 @@ +/* + * net/dsa/mv88e6xxx.c - Marvell 88e6xxx switch chip support + * Copyright (c) 2008 Marvell Semiconductor + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + */ + +#include +#include +#include +#include +#include +#include "mv88e6xxx.h" + +/* + * If the switch's ADDR[4:0] strap pins are strapped to zero, it will + * use all 32 SMI bus addresses on its SMI bus, and all switch registers + * will be directly accessible on some {device address,register address} + * pair. If the ADDR[4:0] pins are not strapped to zero, the switch + * will only respond to SMI transactions to that specific address, and + * an indirect addressing mechanism needs to be used to access its + * registers. + */ +static int mv88e6xxx_reg_wait_ready(struct mii_bus *bus, int sw_addr) +{ + int ret; + int i; + + for (i = 0; i < 16; i++) { + ret = mdiobus_read(bus, sw_addr, 0); + if (ret < 0) + return ret; + + if ((ret & 0x8000) == 0) + return 0; + } + + return -ETIMEDOUT; +} + +int __mv88e6xxx_reg_read(struct mii_bus *bus, int sw_addr, int addr, int reg) +{ + int ret; + + if (sw_addr == 0) + return mdiobus_read(bus, addr, reg); + + /* + * Wait for the bus to become free. + */ + ret = mv88e6xxx_reg_wait_ready(bus, sw_addr); + if (ret < 0) + return ret; + + /* + * Transmit the read command. + */ + ret = mdiobus_write(bus, sw_addr, 0, 0x9800 | (addr << 5) | reg); + if (ret < 0) + return ret; + + /* + * Wait for the read command to complete. + */ + ret = mv88e6xxx_reg_wait_ready(bus, sw_addr); + if (ret < 0) + return ret; + + /* + * Read the data. + */ + ret = mdiobus_read(bus, sw_addr, 1); + if (ret < 0) + return ret; + + return ret & 0xffff; +} + +int mv88e6xxx_reg_read(struct dsa_switch *ds, int addr, int reg) +{ + struct mv88e6xxx_priv_state *ps = (void *)(ds + 1); + int ret; + + mutex_lock(&ps->smi_mutex); + ret = __mv88e6xxx_reg_read(ds->master_mii_bus, + ds->pd->sw_addr, addr, reg); + mutex_unlock(&ps->smi_mutex); + + return ret; +} + +int __mv88e6xxx_reg_write(struct mii_bus *bus, int sw_addr, int addr, + int reg, u16 val) +{ + int ret; + + if (sw_addr == 0) + return mdiobus_write(bus, addr, reg, val); + + /* + * Wait for the bus to become free. + */ + ret = mv88e6xxx_reg_wait_ready(bus, sw_addr); + if (ret < 0) + return ret; + + /* + * Transmit the data to write. + */ + ret = mdiobus_write(bus, sw_addr, 1, val); + if (ret < 0) + return ret; + + /* + * Transmit the write command. + */ + ret = mdiobus_write(bus, sw_addr, 0, 0x9400 | (addr << 5) | reg); + if (ret < 0) + return ret; + + /* + * Wait for the write command to complete. + */ + ret = mv88e6xxx_reg_wait_ready(bus, sw_addr); + if (ret < 0) + return ret; + + return 0; +} + +int mv88e6xxx_reg_write(struct dsa_switch *ds, int addr, int reg, u16 val) +{ + struct mv88e6xxx_priv_state *ps = (void *)(ds + 1); + int ret; + + mutex_lock(&ps->smi_mutex); + ret = __mv88e6xxx_reg_write(ds->master_mii_bus, + ds->pd->sw_addr, addr, reg, val); + mutex_unlock(&ps->smi_mutex); + + return ret; +} + +int mv88e6xxx_config_prio(struct dsa_switch *ds) +{ + /* + * Configure the IP ToS mapping registers. + */ + REG_WRITE(REG_GLOBAL, 0x10, 0x0000); + REG_WRITE(REG_GLOBAL, 0x11, 0x0000); + REG_WRITE(REG_GLOBAL, 0x12, 0x5555); + REG_WRITE(REG_GLOBAL, 0x13, 0x5555); + REG_WRITE(REG_GLOBAL, 0x14, 0xaaaa); + REG_WRITE(REG_GLOBAL, 0x15, 0xaaaa); + REG_WRITE(REG_GLOBAL, 0x16, 0xffff); + REG_WRITE(REG_GLOBAL, 0x17, 0xffff); + + /* + * Configure the IEEE 802.1p priority mapping register. + */ + REG_WRITE(REG_GLOBAL, 0x18, 0xfa41); + + return 0; +} + +int mv88e6xxx_set_addr_direct(struct dsa_switch *ds, u8 *addr) +{ + REG_WRITE(REG_GLOBAL, 0x01, (addr[0] << 8) | addr[1]); + REG_WRITE(REG_GLOBAL, 0x02, (addr[2] << 8) | addr[3]); + REG_WRITE(REG_GLOBAL, 0x03, (addr[4] << 8) | addr[5]); + + return 0; +} + +int mv88e6xxx_set_addr_indirect(struct dsa_switch *ds, u8 *addr) +{ + int i; + int ret; + + for (i = 0; i < 6; i++) { + int j; + + /* + * Write the MAC address byte. + */ + REG_WRITE(REG_GLOBAL2, 0x0d, 0x8000 | (i << 8) | addr[i]); + + /* + * Wait for the write to complete. + */ + for (j = 0; j < 16; j++) { + ret = REG_READ(REG_GLOBAL2, 0x0d); + if ((ret & 0x8000) == 0) + break; + } + if (j == 16) + return -ETIMEDOUT; + } + + return 0; +} + +int mv88e6xxx_phy_read(struct dsa_switch *ds, int addr, int regnum) +{ + if (addr >= 0) + return mv88e6xxx_reg_read(ds, addr, regnum); + return 0xffff; +} + +int mv88e6xxx_phy_write(struct dsa_switch *ds, int addr, int regnum, u16 val) +{ + if (addr >= 0) + return mv88e6xxx_reg_write(ds, addr, regnum, val); + return 0; +} + +#ifdef CONFIG_NET_DSA_MV88E6XXX_NEED_PPU +static int mv88e6xxx_ppu_disable(struct dsa_switch *ds) +{ + int ret; + int i; + + ret = REG_READ(REG_GLOBAL, 0x04); + REG_WRITE(REG_GLOBAL, 0x04, ret & ~0x4000); + + for (i = 0; i < 1000; i++) { + ret = REG_READ(REG_GLOBAL, 0x00); + msleep(1); + if ((ret & 0xc000) != 0xc000) + return 0; + } + + return -ETIMEDOUT; +} + +static int mv88e6xxx_ppu_enable(struct dsa_switch *ds) +{ + int ret; + int i; + + ret = REG_READ(REG_GLOBAL, 0x04); + REG_WRITE(REG_GLOBAL, 0x04, ret | 0x4000); + + for (i = 0; i < 1000; i++) { + ret = REG_READ(REG_GLOBAL, 0x00); + msleep(1); + if ((ret & 0xc000) == 0xc000) + return 0; + } + + return -ETIMEDOUT; +} + +static void mv88e6xxx_ppu_reenable_work(struct work_struct *ugly) +{ + struct mv88e6xxx_priv_state *ps; + + ps = container_of(ugly, struct mv88e6xxx_priv_state, ppu_work); + if (mutex_trylock(&ps->ppu_mutex)) { + struct dsa_switch *ds = ((struct dsa_switch *)ps) - 1; + + if (mv88e6xxx_ppu_enable(ds) == 0) + ps->ppu_disabled = 0; + mutex_unlock(&ps->ppu_mutex); + } +} + +static void mv88e6xxx_ppu_reenable_timer(unsigned long _ps) +{ + struct mv88e6xxx_priv_state *ps = (void *)_ps; + + schedule_work(&ps->ppu_work); +} + +static int mv88e6xxx_ppu_access_get(struct dsa_switch *ds) +{ + struct mv88e6xxx_priv_state *ps = (void *)(ds + 1); + int ret; + + mutex_lock(&ps->ppu_mutex); + + /* + * If the PHY polling unit is enabled, disable it so that + * we can access the PHY registers. If it was already + * disabled, cancel the timer that is going to re-enable + * it. + */ + if (!ps->ppu_disabled) { + ret = mv88e6xxx_ppu_disable(ds); + if (ret < 0) { + mutex_unlock(&ps->ppu_mutex); + return ret; + } + ps->ppu_disabled = 1; + } else { + del_timer(&ps->ppu_timer); + ret = 0; + } + + return ret; +} + +static void mv88e6xxx_ppu_access_put(struct dsa_switch *ds) +{ + struct mv88e6xxx_priv_state *ps = (void *)(ds + 1); + + /* + * Schedule a timer to re-enable the PHY polling unit. + */ + mod_timer(&ps->ppu_timer, jiffies + msecs_to_jiffies(10)); + mutex_unlock(&ps->ppu_mutex); +} + +void mv88e6xxx_ppu_state_init(struct dsa_switch *ds) +{ + struct mv88e6xxx_priv_state *ps = (void *)(ds + 1); + + mutex_init(&ps->ppu_mutex); + INIT_WORK(&ps->ppu_work, mv88e6xxx_ppu_reenable_work); + init_timer(&ps->ppu_timer); + ps->ppu_timer.data = (unsigned long)ps; + ps->ppu_timer.function = mv88e6xxx_ppu_reenable_timer; +} + +int mv88e6xxx_phy_read_ppu(struct dsa_switch *ds, int addr, int regnum) +{ + int ret; + + ret = mv88e6xxx_ppu_access_get(ds); + if (ret >= 0) { + ret = mv88e6xxx_reg_read(ds, addr, regnum); + mv88e6xxx_ppu_access_put(ds); + } + + return ret; +} + +int mv88e6xxx_phy_write_ppu(struct dsa_switch *ds, int addr, + int regnum, u16 val) +{ + int ret; + + ret = mv88e6xxx_ppu_access_get(ds); + if (ret >= 0) { + ret = mv88e6xxx_reg_write(ds, addr, regnum, val); + mv88e6xxx_ppu_access_put(ds); + } + + return ret; +} +#endif + +void mv88e6xxx_poll_link(struct dsa_switch *ds) +{ + int i; + + for (i = 0; i < DSA_MAX_PORTS; i++) { + struct net_device *dev; + int uninitialized_var(port_status); + int link; + int speed; + int duplex; + int fc; + + dev = ds->ports[i]; + if (dev == NULL) + continue; + + link = 0; + if (dev->flags & IFF_UP) { + port_status = mv88e6xxx_reg_read(ds, REG_PORT(i), 0x00); + if (port_status < 0) + continue; + + link = !!(port_status & 0x0800); + } + + if (!link) { + if (netif_carrier_ok(dev)) { + printk(KERN_INFO "%s: link down\n", dev->name); + netif_carrier_off(dev); + } + continue; + } + + switch (port_status & 0x0300) { + case 0x0000: + speed = 10; + break; + case 0x0100: + speed = 100; + break; + case 0x0200: + speed = 1000; + break; + default: + speed = -1; + break; + } + duplex = (port_status & 0x0400) ? 1 : 0; + fc = (port_status & 0x8000) ? 1 : 0; + + if (!netif_carrier_ok(dev)) { + printk(KERN_INFO "%s: link up, %d Mb/s, %s duplex, " + "flow control %sabled\n", dev->name, + speed, duplex ? "full" : "half", + fc ? "en" : "dis"); + netif_carrier_on(dev); + } + } +} + +static int mv88e6xxx_stats_wait(struct dsa_switch *ds) +{ + int ret; + int i; + + for (i = 0; i < 10; i++) { + ret = REG_READ(REG_GLOBAL, 0x1d); + if ((ret & 0x8000) == 0) + return 0; + } + + return -ETIMEDOUT; +} + +static int mv88e6xxx_stats_snapshot(struct dsa_switch *ds, int port) +{ + int ret; + + /* + * Snapshot the hardware statistics counters for this port. + */ + REG_WRITE(REG_GLOBAL, 0x1d, 0xdc00 | port); + + /* + * Wait for the snapshotting to complete. + */ + ret = mv88e6xxx_stats_wait(ds); + if (ret < 0) + return ret; + + return 0; +} + +static void mv88e6xxx_stats_read(struct dsa_switch *ds, int stat, u32 *val) +{ + u32 _val; + int ret; + + *val = 0; + + ret = mv88e6xxx_reg_write(ds, REG_GLOBAL, 0x1d, 0xcc00 | stat); + if (ret < 0) + return; + + ret = mv88e6xxx_stats_wait(ds); + if (ret < 0) + return; + + ret = mv88e6xxx_reg_read(ds, REG_GLOBAL, 0x1e); + if (ret < 0) + return; + + _val = ret << 16; + + ret = mv88e6xxx_reg_read(ds, REG_GLOBAL, 0x1f); + if (ret < 0) + return; + + *val = _val | ret; +} + +void mv88e6xxx_get_strings(struct dsa_switch *ds, + int nr_stats, struct mv88e6xxx_hw_stat *stats, + int port, uint8_t *data) +{ + int i; + + for (i = 0; i < nr_stats; i++) { + memcpy(data + i * ETH_GSTRING_LEN, + stats[i].string, ETH_GSTRING_LEN); + } +} + +void mv88e6xxx_get_ethtool_stats(struct dsa_switch *ds, + int nr_stats, struct mv88e6xxx_hw_stat *stats, + int port, uint64_t *data) +{ + struct mv88e6xxx_priv_state *ps = (void *)(ds + 1); + int ret; + int i; + + mutex_lock(&ps->stats_mutex); + + ret = mv88e6xxx_stats_snapshot(ds, port); + if (ret < 0) { + mutex_unlock(&ps->stats_mutex); + return; + } + + /* + * Read each of the counters. + */ + for (i = 0; i < nr_stats; i++) { + struct mv88e6xxx_hw_stat *s = stats + i; + u32 low; + u32 high; + + mv88e6xxx_stats_read(ds, s->reg, &low); + if (s->sizeof_stat == 8) + mv88e6xxx_stats_read(ds, s->reg + 1, &high); + else + high = 0; + + data[i] = (((u64)high) << 32) | low; + } + + mutex_unlock(&ps->stats_mutex); +} + +static int __init mv88e6xxx_init(void) +{ +#if IS_ENABLED(CONFIG_NET_DSA_MV88E6131) + register_switch_driver(&mv88e6131_switch_driver); +#endif +#if IS_ENABLED(CONFIG_NET_DSA_MV88E6123_61_65) + register_switch_driver(&mv88e6123_61_65_switch_driver); +#endif + return 0; +} +module_init(mv88e6xxx_init); + +static void __exit mv88e6xxx_cleanup(void) +{ +#if IS_ENABLED(CONFIG_NET_DSA_MV88E6123_61_65) + unregister_switch_driver(&mv88e6123_61_65_switch_driver); +#endif +#if IS_ENABLED(CONFIG_NET_DSA_MV88E6131) + unregister_switch_driver(&mv88e6131_switch_driver); +#endif +} +module_exit(mv88e6xxx_cleanup); + +MODULE_AUTHOR("Lennert Buytenhek "); +MODULE_DESCRIPTION("Driver for Marvell 88E6XXX ethernet switch chips"); +MODULE_LICENSE("GPL"); --- linux-3.2.0.orig/drivers/net/dsa/Makefile +++ linux-3.2.0/drivers/net/dsa/Makefile @@ -0,0 +1,9 @@ +obj-$(CONFIG_NET_DSA_MV88E6060) += mv88e6060.o +obj-$(CONFIG_NET_DSA_MV88E6XXX) += mv88e6xxx_drv.o +mv88e6xxx_drv-y += mv88e6xxx.o +ifdef CONFIG_NET_DSA_MV88E6123_61_65 +mv88e6xxx_drv-y += mv88e6123_61_65.o +endif +ifdef CONFIG_NET_DSA_MV88E6131 +mv88e6xxx_drv-y += mv88e6131.o +endif --- linux-3.2.0.orig/drivers/net/dsa/mv88e6xxx.h +++ linux-3.2.0/drivers/net/dsa/mv88e6xxx.h @@ -0,0 +1,98 @@ +/* + * net/dsa/mv88e6xxx.h - Marvell 88e6xxx switch chip support + * Copyright (c) 2008 Marvell Semiconductor + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + */ + +#ifndef __MV88E6XXX_H +#define __MV88E6XXX_H + +#define REG_PORT(p) (0x10 + (p)) +#define REG_GLOBAL 0x1b +#define REG_GLOBAL2 0x1c + +struct mv88e6xxx_priv_state { + /* + * When using multi-chip addressing, this mutex protects + * access to the indirect access registers. (In single-chip + * mode, this mutex is effectively useless.) + */ + struct mutex smi_mutex; + +#ifdef CONFIG_NET_DSA_MV88E6XXX_NEED_PPU + /* + * Handles automatic disabling and re-enabling of the PHY + * polling unit. + */ + struct mutex ppu_mutex; + int ppu_disabled; + struct work_struct ppu_work; + struct timer_list ppu_timer; +#endif + + /* + * This mutex serialises access to the statistics unit. + * Hold this mutex over snapshot + dump sequences. + */ + struct mutex stats_mutex; + + int id; /* switch product id */ +}; + +struct mv88e6xxx_hw_stat { + char string[ETH_GSTRING_LEN]; + int sizeof_stat; + int reg; +}; + +int __mv88e6xxx_reg_read(struct mii_bus *bus, int sw_addr, int addr, int reg); +int mv88e6xxx_reg_read(struct dsa_switch *ds, int addr, int reg); +int __mv88e6xxx_reg_write(struct mii_bus *bus, int sw_addr, int addr, + int reg, u16 val); +int mv88e6xxx_reg_write(struct dsa_switch *ds, int addr, int reg, u16 val); +int mv88e6xxx_config_prio(struct dsa_switch *ds); +int mv88e6xxx_set_addr_direct(struct dsa_switch *ds, u8 *addr); +int mv88e6xxx_set_addr_indirect(struct dsa_switch *ds, u8 *addr); +int mv88e6xxx_phy_read(struct dsa_switch *ds, int addr, int regnum); +int mv88e6xxx_phy_write(struct dsa_switch *ds, int addr, int regnum, u16 val); +void mv88e6xxx_ppu_state_init(struct dsa_switch *ds); +int mv88e6xxx_phy_read_ppu(struct dsa_switch *ds, int addr, int regnum); +int mv88e6xxx_phy_write_ppu(struct dsa_switch *ds, int addr, + int regnum, u16 val); +void mv88e6xxx_poll_link(struct dsa_switch *ds); +void mv88e6xxx_get_strings(struct dsa_switch *ds, + int nr_stats, struct mv88e6xxx_hw_stat *stats, + int port, uint8_t *data); +void mv88e6xxx_get_ethtool_stats(struct dsa_switch *ds, + int nr_stats, struct mv88e6xxx_hw_stat *stats, + int port, uint64_t *data); + +extern struct dsa_switch_driver mv88e6131_switch_driver; +extern struct dsa_switch_driver mv88e6123_61_65_switch_driver; + +#define REG_READ(addr, reg) \ + ({ \ + int __ret; \ + \ + __ret = mv88e6xxx_reg_read(ds, addr, reg); \ + if (__ret < 0) \ + return __ret; \ + __ret; \ + }) + +#define REG_WRITE(addr, reg, val) \ + ({ \ + int __ret; \ + \ + __ret = mv88e6xxx_reg_write(ds, addr, reg, val); \ + if (__ret < 0) \ + return __ret; \ + }) + + + +#endif --- linux-3.2.0.orig/drivers/net/dsa/mv88e6131.c +++ linux-3.2.0/drivers/net/dsa/mv88e6131.c @@ -0,0 +1,436 @@ +/* + * net/dsa/mv88e6131.c - Marvell 88e6095/6095f/6131 switch chip support + * Copyright (c) 2008-2009 Marvell Semiconductor + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + */ + +#include +#include +#include +#include +#include +#include "mv88e6xxx.h" + +/* + * Switch product IDs + */ +#define ID_6085 0x04a0 +#define ID_6095 0x0950 +#define ID_6131 0x1060 + +static char *mv88e6131_probe(struct mii_bus *bus, int sw_addr) +{ + int ret; + + ret = __mv88e6xxx_reg_read(bus, sw_addr, REG_PORT(0), 0x03); + if (ret >= 0) { + ret &= 0xfff0; + if (ret == ID_6085) + return "Marvell 88E6085"; + if (ret == ID_6095) + return "Marvell 88E6095/88E6095F"; + if (ret == ID_6131) + return "Marvell 88E6131"; + } + + return NULL; +} + +static int mv88e6131_switch_reset(struct dsa_switch *ds) +{ + int i; + int ret; + + /* + * Set all ports to the disabled state. + */ + for (i = 0; i < 11; i++) { + ret = REG_READ(REG_PORT(i), 0x04); + REG_WRITE(REG_PORT(i), 0x04, ret & 0xfffc); + } + + /* + * Wait for transmit queues to drain. + */ + msleep(2); + + /* + * Reset the switch. + */ + REG_WRITE(REG_GLOBAL, 0x04, 0xc400); + + /* + * Wait up to one second for reset to complete. + */ + for (i = 0; i < 1000; i++) { + ret = REG_READ(REG_GLOBAL, 0x00); + if ((ret & 0xc800) == 0xc800) + break; + + msleep(1); + } + if (i == 1000) + return -ETIMEDOUT; + + return 0; +} + +static int mv88e6131_setup_global(struct dsa_switch *ds) +{ + int ret; + int i; + + /* + * Enable the PHY polling unit, don't discard packets with + * excessive collisions, use a weighted fair queueing scheme + * to arbitrate between packet queues, set the maximum frame + * size to 1632, and mask all interrupt sources. + */ + REG_WRITE(REG_GLOBAL, 0x04, 0x4400); + + /* + * Set the default address aging time to 5 minutes, and + * enable address learn messages to be sent to all message + * ports. + */ + REG_WRITE(REG_GLOBAL, 0x0a, 0x0148); + + /* + * Configure the priority mapping registers. + */ + ret = mv88e6xxx_config_prio(ds); + if (ret < 0) + return ret; + + /* + * Set the VLAN ethertype to 0x8100. + */ + REG_WRITE(REG_GLOBAL, 0x19, 0x8100); + + /* + * Disable ARP mirroring, and configure the upstream port as + * the port to which ingress and egress monitor frames are to + * be sent. + */ + REG_WRITE(REG_GLOBAL, 0x1a, (dsa_upstream_port(ds) * 0x1100) | 0x00f0); + + /* + * Disable cascade port functionality unless this device + * is used in a cascade configuration, and set the switch's + * DSA device number. + */ + if (ds->dst->pd->nr_chips > 1) + REG_WRITE(REG_GLOBAL, 0x1c, 0xf000 | (ds->index & 0x1f)); + else + REG_WRITE(REG_GLOBAL, 0x1c, 0xe000 | (ds->index & 0x1f)); + + /* + * Send all frames with destination addresses matching + * 01:80:c2:00:00:0x to the CPU port. + */ + REG_WRITE(REG_GLOBAL2, 0x03, 0xffff); + + /* + * Ignore removed tag data on doubly tagged packets, disable + * flow control messages, force flow control priority to the + * highest, and send all special multicast frames to the CPU + * port at the highest priority. + */ + REG_WRITE(REG_GLOBAL2, 0x05, 0x00ff); + + /* + * Program the DSA routing table. + */ + for (i = 0; i < 32; i++) { + int nexthop; + + nexthop = 0x1f; + if (i != ds->index && i < ds->dst->pd->nr_chips) + nexthop = ds->pd->rtable[i] & 0x1f; + + REG_WRITE(REG_GLOBAL2, 0x06, 0x8000 | (i << 8) | nexthop); + } + + /* + * Clear all trunk masks. + */ + for (i = 0; i < 8; i++) + REG_WRITE(REG_GLOBAL2, 0x07, 0x8000 | (i << 12) | 0x7ff); + + /* + * Clear all trunk mappings. + */ + for (i = 0; i < 16; i++) + REG_WRITE(REG_GLOBAL2, 0x08, 0x8000 | (i << 11)); + + /* + * Force the priority of IGMP/MLD snoop frames and ARP frames + * to the highest setting. + */ + REG_WRITE(REG_GLOBAL2, 0x0f, 0x00ff); + + return 0; +} + +static int mv88e6131_setup_port(struct dsa_switch *ds, int p) +{ + struct mv88e6xxx_priv_state *ps = (void *)(ds + 1); + int addr = REG_PORT(p); + u16 val; + + /* + * MAC Forcing register: don't force link, speed, duplex + * or flow control state to any particular values on physical + * ports, but force the CPU port and all DSA ports to 1000 Mb/s + * (100 Mb/s on 6085) full duplex. + */ + if (dsa_is_cpu_port(ds, p) || ds->dsa_port_mask & (1 << p)) + if (ps->id == ID_6085) + REG_WRITE(addr, 0x01, 0x003d); /* 100 Mb/s */ + else + REG_WRITE(addr, 0x01, 0x003e); /* 1000 Mb/s */ + else + REG_WRITE(addr, 0x01, 0x0003); + + /* + * Port Control: disable Core Tag, disable Drop-on-Lock, + * transmit frames unmodified, disable Header mode, + * enable IGMP/MLD snoop, disable DoubleTag, disable VLAN + * tunneling, determine priority by looking at 802.1p and + * IP priority fields (IP prio has precedence), and set STP + * state to Forwarding. + * + * If this is the upstream port for this switch, enable + * forwarding of unknown unicasts, and enable DSA tagging + * mode. + * + * If this is the link to another switch, use DSA tagging + * mode, but do not enable forwarding of unknown unicasts. + */ + val = 0x0433; + if (p == dsa_upstream_port(ds)) { + val |= 0x0104; + /* + * On 6085, unknown multicast forward is controlled + * here rather than in Port Control 2 register. + */ + if (ps->id == ID_6085) + val |= 0x0008; + } + if (ds->dsa_port_mask & (1 << p)) + val |= 0x0100; + REG_WRITE(addr, 0x04, val); + + /* + * Port Control 1: disable trunking. Also, if this is the + * CPU port, enable learn messages to be sent to this port. + */ + REG_WRITE(addr, 0x05, dsa_is_cpu_port(ds, p) ? 0x8000 : 0x0000); + + /* + * Port based VLAN map: give each port its own address + * database, allow the CPU port to talk to each of the 'real' + * ports, and allow each of the 'real' ports to only talk to + * the upstream port. + */ + val = (p & 0xf) << 12; + if (dsa_is_cpu_port(ds, p)) + val |= ds->phys_port_mask; + else + val |= 1 << dsa_upstream_port(ds); + REG_WRITE(addr, 0x06, val); + + /* + * Default VLAN ID and priority: don't set a default VLAN + * ID, and set the default packet priority to zero. + */ + REG_WRITE(addr, 0x07, 0x0000); + + /* + * Port Control 2: don't force a good FCS, don't use + * VLAN-based, source address-based or destination + * address-based priority overrides, don't let the switch + * add or strip 802.1q tags, don't discard tagged or + * untagged frames on this port, do a destination address + * lookup on received packets as usual, don't send a copy + * of all transmitted/received frames on this port to the + * CPU, and configure the upstream port number. + * + * If this is the upstream port for this switch, enable + * forwarding of unknown multicast addresses. + */ + if (ps->id == ID_6085) + /* + * on 6085, bits 3:0 are reserved, bit 6 control ARP + * mirroring, and multicast forward is handled in + * Port Control register. + */ + REG_WRITE(addr, 0x08, 0x0080); + else { + val = 0x0080 | dsa_upstream_port(ds); + if (p == dsa_upstream_port(ds)) + val |= 0x0040; + REG_WRITE(addr, 0x08, val); + } + + /* + * Rate Control: disable ingress rate limiting. + */ + REG_WRITE(addr, 0x09, 0x0000); + + /* + * Rate Control 2: disable egress rate limiting. + */ + REG_WRITE(addr, 0x0a, 0x0000); + + /* + * Port Association Vector: when learning source addresses + * of packets, add the address to the address database using + * a port bitmap that has only the bit for this port set and + * the other bits clear. + */ + REG_WRITE(addr, 0x0b, 1 << p); + + /* + * Tag Remap: use an identity 802.1p prio -> switch prio + * mapping. + */ + REG_WRITE(addr, 0x18, 0x3210); + + /* + * Tag Remap 2: use an identity 802.1p prio -> switch prio + * mapping. + */ + REG_WRITE(addr, 0x19, 0x7654); + + return 0; +} + +static int mv88e6131_setup(struct dsa_switch *ds) +{ + struct mv88e6xxx_priv_state *ps = (void *)(ds + 1); + int i; + int ret; + + mutex_init(&ps->smi_mutex); + mv88e6xxx_ppu_state_init(ds); + mutex_init(&ps->stats_mutex); + + ps->id = REG_READ(REG_PORT(0), 0x03) & 0xfff0; + + ret = mv88e6131_switch_reset(ds); + if (ret < 0) + return ret; + + /* @@@ initialise vtu and atu */ + + ret = mv88e6131_setup_global(ds); + if (ret < 0) + return ret; + + for (i = 0; i < 11; i++) { + ret = mv88e6131_setup_port(ds, i); + if (ret < 0) + return ret; + } + + return 0; +} + +static int mv88e6131_port_to_phy_addr(int port) +{ + if (port >= 0 && port <= 11) + return port; + return -1; +} + +static int +mv88e6131_phy_read(struct dsa_switch *ds, int port, int regnum) +{ + int addr = mv88e6131_port_to_phy_addr(port); + return mv88e6xxx_phy_read_ppu(ds, addr, regnum); +} + +static int +mv88e6131_phy_write(struct dsa_switch *ds, + int port, int regnum, u16 val) +{ + int addr = mv88e6131_port_to_phy_addr(port); + return mv88e6xxx_phy_write_ppu(ds, addr, regnum, val); +} + +static struct mv88e6xxx_hw_stat mv88e6131_hw_stats[] = { + { "in_good_octets", 8, 0x00, }, + { "in_bad_octets", 4, 0x02, }, + { "in_unicast", 4, 0x04, }, + { "in_broadcasts", 4, 0x06, }, + { "in_multicasts", 4, 0x07, }, + { "in_pause", 4, 0x16, }, + { "in_undersize", 4, 0x18, }, + { "in_fragments", 4, 0x19, }, + { "in_oversize", 4, 0x1a, }, + { "in_jabber", 4, 0x1b, }, + { "in_rx_error", 4, 0x1c, }, + { "in_fcs_error", 4, 0x1d, }, + { "out_octets", 8, 0x0e, }, + { "out_unicast", 4, 0x10, }, + { "out_broadcasts", 4, 0x13, }, + { "out_multicasts", 4, 0x12, }, + { "out_pause", 4, 0x15, }, + { "excessive", 4, 0x11, }, + { "collisions", 4, 0x1e, }, + { "deferred", 4, 0x05, }, + { "single", 4, 0x14, }, + { "multiple", 4, 0x17, }, + { "out_fcs_error", 4, 0x03, }, + { "late", 4, 0x1f, }, + { "hist_64bytes", 4, 0x08, }, + { "hist_65_127bytes", 4, 0x09, }, + { "hist_128_255bytes", 4, 0x0a, }, + { "hist_256_511bytes", 4, 0x0b, }, + { "hist_512_1023bytes", 4, 0x0c, }, + { "hist_1024_max_bytes", 4, 0x0d, }, +}; + +static void +mv88e6131_get_strings(struct dsa_switch *ds, int port, uint8_t *data) +{ + mv88e6xxx_get_strings(ds, ARRAY_SIZE(mv88e6131_hw_stats), + mv88e6131_hw_stats, port, data); +} + +static void +mv88e6131_get_ethtool_stats(struct dsa_switch *ds, + int port, uint64_t *data) +{ + mv88e6xxx_get_ethtool_stats(ds, ARRAY_SIZE(mv88e6131_hw_stats), + mv88e6131_hw_stats, port, data); +} + +static int mv88e6131_get_sset_count(struct dsa_switch *ds) +{ + return ARRAY_SIZE(mv88e6131_hw_stats); +} + +struct dsa_switch_driver mv88e6131_switch_driver = { + .tag_protocol = cpu_to_be16(ETH_P_DSA), + .priv_size = sizeof(struct mv88e6xxx_priv_state), + .probe = mv88e6131_probe, + .setup = mv88e6131_setup, + .set_addr = mv88e6xxx_set_addr_direct, + .phy_read = mv88e6131_phy_read, + .phy_write = mv88e6131_phy_write, + .poll_link = mv88e6xxx_poll_link, + .get_strings = mv88e6131_get_strings, + .get_ethtool_stats = mv88e6131_get_ethtool_stats, + .get_sset_count = mv88e6131_get_sset_count, +}; + +MODULE_ALIAS("platform:mv88e6085"); +MODULE_ALIAS("platform:mv88e6095"); +MODULE_ALIAS("platform:mv88e6095f"); +MODULE_ALIAS("platform:mv88e6131"); --- linux-3.2.0.orig/drivers/net/dsa/mv88e6060.c +++ linux-3.2.0/drivers/net/dsa/mv88e6060.c @@ -0,0 +1,294 @@ +/* + * net/dsa/mv88e6060.c - Driver for Marvell 88e6060 switch chips + * Copyright (c) 2008-2009 Marvell Semiconductor + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + */ + +#include +#include +#include +#include +#include + +#define REG_PORT(p) (8 + (p)) +#define REG_GLOBAL 0x0f + +static int reg_read(struct dsa_switch *ds, int addr, int reg) +{ + return mdiobus_read(ds->master_mii_bus, ds->pd->sw_addr + addr, reg); +} + +#define REG_READ(addr, reg) \ + ({ \ + int __ret; \ + \ + __ret = reg_read(ds, addr, reg); \ + if (__ret < 0) \ + return __ret; \ + __ret; \ + }) + + +static int reg_write(struct dsa_switch *ds, int addr, int reg, u16 val) +{ + return mdiobus_write(ds->master_mii_bus, ds->pd->sw_addr + addr, + reg, val); +} + +#define REG_WRITE(addr, reg, val) \ + ({ \ + int __ret; \ + \ + __ret = reg_write(ds, addr, reg, val); \ + if (__ret < 0) \ + return __ret; \ + }) + +static char *mv88e6060_probe(struct mii_bus *bus, int sw_addr) +{ + int ret; + + ret = mdiobus_read(bus, sw_addr + REG_PORT(0), 0x03); + if (ret >= 0) { + ret &= 0xfff0; + if (ret == 0x0600) + return "Marvell 88E6060"; + } + + return NULL; +} + +static int mv88e6060_switch_reset(struct dsa_switch *ds) +{ + int i; + int ret; + + /* + * Set all ports to the disabled state. + */ + for (i = 0; i < 6; i++) { + ret = REG_READ(REG_PORT(i), 0x04); + REG_WRITE(REG_PORT(i), 0x04, ret & 0xfffc); + } + + /* + * Wait for transmit queues to drain. + */ + msleep(2); + + /* + * Reset the switch. + */ + REG_WRITE(REG_GLOBAL, 0x0a, 0xa130); + + /* + * Wait up to one second for reset to complete. + */ + for (i = 0; i < 1000; i++) { + ret = REG_READ(REG_GLOBAL, 0x00); + if ((ret & 0x8000) == 0x0000) + break; + + msleep(1); + } + if (i == 1000) + return -ETIMEDOUT; + + return 0; +} + +static int mv88e6060_setup_global(struct dsa_switch *ds) +{ + /* + * Disable discarding of frames with excessive collisions, + * set the maximum frame size to 1536 bytes, and mask all + * interrupt sources. + */ + REG_WRITE(REG_GLOBAL, 0x04, 0x0800); + + /* + * Enable automatic address learning, set the address + * database size to 1024 entries, and set the default aging + * time to 5 minutes. + */ + REG_WRITE(REG_GLOBAL, 0x0a, 0x2130); + + return 0; +} + +static int mv88e6060_setup_port(struct dsa_switch *ds, int p) +{ + int addr = REG_PORT(p); + + /* + * Do not force flow control, disable Ingress and Egress + * Header tagging, disable VLAN tunneling, and set the port + * state to Forwarding. Additionally, if this is the CPU + * port, enable Ingress and Egress Trailer tagging mode. + */ + REG_WRITE(addr, 0x04, dsa_is_cpu_port(ds, p) ? 0x4103 : 0x0003); + + /* + * Port based VLAN map: give each port its own address + * database, allow the CPU port to talk to each of the 'real' + * ports, and allow each of the 'real' ports to only talk to + * the CPU port. + */ + REG_WRITE(addr, 0x06, + ((p & 0xf) << 12) | + (dsa_is_cpu_port(ds, p) ? + ds->phys_port_mask : + (1 << ds->dst->cpu_port))); + + /* + * Port Association Vector: when learning source addresses + * of packets, add the address to the address database using + * a port bitmap that has only the bit for this port set and + * the other bits clear. + */ + REG_WRITE(addr, 0x0b, 1 << p); + + return 0; +} + +static int mv88e6060_setup(struct dsa_switch *ds) +{ + int i; + int ret; + + ret = mv88e6060_switch_reset(ds); + if (ret < 0) + return ret; + + /* @@@ initialise atu */ + + ret = mv88e6060_setup_global(ds); + if (ret < 0) + return ret; + + for (i = 0; i < 6; i++) { + ret = mv88e6060_setup_port(ds, i); + if (ret < 0) + return ret; + } + + return 0; +} + +static int mv88e6060_set_addr(struct dsa_switch *ds, u8 *addr) +{ + REG_WRITE(REG_GLOBAL, 0x01, (addr[0] << 8) | addr[1]); + REG_WRITE(REG_GLOBAL, 0x02, (addr[2] << 8) | addr[3]); + REG_WRITE(REG_GLOBAL, 0x03, (addr[4] << 8) | addr[5]); + + return 0; +} + +static int mv88e6060_port_to_phy_addr(int port) +{ + if (port >= 0 && port <= 5) + return port; + return -1; +} + +static int mv88e6060_phy_read(struct dsa_switch *ds, int port, int regnum) +{ + int addr; + + addr = mv88e6060_port_to_phy_addr(port); + if (addr == -1) + return 0xffff; + + return reg_read(ds, addr, regnum); +} + +static int +mv88e6060_phy_write(struct dsa_switch *ds, int port, int regnum, u16 val) +{ + int addr; + + addr = mv88e6060_port_to_phy_addr(port); + if (addr == -1) + return 0xffff; + + return reg_write(ds, addr, regnum, val); +} + +static void mv88e6060_poll_link(struct dsa_switch *ds) +{ + int i; + + for (i = 0; i < DSA_MAX_PORTS; i++) { + struct net_device *dev; + int uninitialized_var(port_status); + int link; + int speed; + int duplex; + int fc; + + dev = ds->ports[i]; + if (dev == NULL) + continue; + + link = 0; + if (dev->flags & IFF_UP) { + port_status = reg_read(ds, REG_PORT(i), 0x00); + if (port_status < 0) + continue; + + link = !!(port_status & 0x1000); + } + + if (!link) { + if (netif_carrier_ok(dev)) { + printk(KERN_INFO "%s: link down\n", dev->name); + netif_carrier_off(dev); + } + continue; + } + + speed = (port_status & 0x0100) ? 100 : 10; + duplex = (port_status & 0x0200) ? 1 : 0; + fc = ((port_status & 0xc000) == 0xc000) ? 1 : 0; + + if (!netif_carrier_ok(dev)) { + printk(KERN_INFO "%s: link up, %d Mb/s, %s duplex, " + "flow control %sabled\n", dev->name, + speed, duplex ? "full" : "half", + fc ? "en" : "dis"); + netif_carrier_on(dev); + } + } +} + +static struct dsa_switch_driver mv88e6060_switch_driver = { + .tag_protocol = htons(ETH_P_TRAILER), + .probe = mv88e6060_probe, + .setup = mv88e6060_setup, + .set_addr = mv88e6060_set_addr, + .phy_read = mv88e6060_phy_read, + .phy_write = mv88e6060_phy_write, + .poll_link = mv88e6060_poll_link, +}; + +static int __init mv88e6060_init(void) +{ + register_switch_driver(&mv88e6060_switch_driver); + return 0; +} +module_init(mv88e6060_init); + +static void __exit mv88e6060_cleanup(void) +{ + unregister_switch_driver(&mv88e6060_switch_driver); +} +module_exit(mv88e6060_cleanup); + +MODULE_AUTHOR("Lennert Buytenhek "); +MODULE_DESCRIPTION("Driver for Marvell 88E6060 ethernet switch chip"); +MODULE_LICENSE("GPL"); +MODULE_ALIAS("platform:mv88e6060"); --- linux-3.2.0.orig/drivers/net/ppp/ppp_generic.c +++ linux-3.2.0/drivers/net/ppp/ppp_generic.c @@ -968,7 +968,6 @@ proto = npindex_to_proto[npi]; put_unaligned_be16(proto, pp); - netif_stop_queue(dev); skb_queue_tail(&ppp->file.xq, skb); ppp_xmit_process(ppp); return NETDEV_TX_OK; @@ -1063,6 +1062,8 @@ code that we can accept some more. */ if (!ppp->xmit_pending && !skb_peek(&ppp->file.xq)) netif_wake_queue(ppp->dev); + else + netif_stop_queue(ppp->dev); } ppp_xmit_unlock(ppp); } @@ -2024,14 +2025,22 @@ continue; } if (PPP_MP_CB(p)->sequence != seq) { + u32 oldseq; /* Fragment `seq' is missing. If it is after minseq, it might arrive later, so stop here. */ if (seq_after(seq, minseq)) break; /* Fragment `seq' is lost, keep going. */ lost = 1; + oldseq = seq; seq = seq_before(minseq, PPP_MP_CB(p)->sequence)? minseq + 1: PPP_MP_CB(p)->sequence; + + if (ppp->debug & 1) + netdev_printk(KERN_DEBUG, ppp->dev, + "lost frag %u..%u\n", + oldseq, seq-1); + goto again; } @@ -2076,6 +2085,10 @@ struct sk_buff *tmp2; skb_queue_reverse_walk_from_safe(list, p, tmp2) { + if (ppp->debug & 1) + netdev_printk(KERN_DEBUG, ppp->dev, + "discarding frag %u\n", + PPP_MP_CB(p)->sequence); __skb_unlink(p, list); kfree_skb(p); } @@ -2091,6 +2104,17 @@ /* If we have discarded any fragments, signal a receive error. */ if (PPP_MP_CB(head)->sequence != ppp->nextseq) { + skb_queue_walk_safe(list, p, tmp) { + if (p == head) + break; + if (ppp->debug & 1) + netdev_printk(KERN_DEBUG, ppp->dev, + "discarding frag %u\n", + PPP_MP_CB(p)->sequence); + __skb_unlink(p, list); + kfree_skb(p); + } + if (ppp->debug & 1) netdev_printk(KERN_DEBUG, ppp->dev, " missed pkts %u..%u\n", --- linux-3.2.0.orig/drivers/net/can/sja1000/sja1000.c +++ linux-3.2.0/drivers/net/can/sja1000/sja1000.c @@ -95,11 +95,16 @@ spin_unlock_irqrestore(&priv->cmdreg_lock, flags); } +static int sja1000_is_absent(struct sja1000_priv *priv) +{ + return (priv->read_reg(priv, REG_MOD) == 0xFF); +} + static int sja1000_probe_chip(struct net_device *dev) { struct sja1000_priv *priv = netdev_priv(dev); - if (priv->reg_base && (priv->read_reg(priv, 0) == 0xFF)) { + if (priv->reg_base && sja1000_is_absent(priv)) { printk(KERN_INFO "%s: probing @0x%lX failed\n", DRV_NAME, dev->base_addr); return 0; @@ -493,6 +498,9 @@ while ((isrc = priv->read_reg(priv, REG_IR)) && (n < SJA1000_MAX_IRQ)) { n++; status = priv->read_reg(priv, REG_SR); + /* check for absent controller due to hw unplug */ + if (status == 0xFF && sja1000_is_absent(priv)) + return IRQ_NONE; if (isrc & IRQ_WUI) dev_warn(dev->dev.parent, "wakeup interrupt\n"); @@ -509,6 +517,9 @@ while (status & SR_RBS) { sja1000_rx(dev); status = priv->read_reg(priv, REG_SR); + /* check for absent controller */ + if (status == 0xFF && sja1000_is_absent(priv)) + return IRQ_NONE; } } if (isrc & (IRQ_DOI | IRQ_EI | IRQ_BEI | IRQ_EPI | IRQ_ALI)) { --- linux-3.2.0.orig/drivers/net/vmxnet3/vmxnet3_drv.c +++ linux-3.2.0/drivers/net/vmxnet3/vmxnet3_drv.c @@ -830,13 +830,8 @@ ctx->l4_hdr_size = ((struct tcphdr *) skb_transport_header(skb))->doff * 4; else if (iph->protocol == IPPROTO_UDP) - /* - * Use tcp header size so that bytes to - * be copied are more than required by - * the device. - */ ctx->l4_hdr_size = - sizeof(struct tcphdr); + sizeof(struct udphdr); else ctx->l4_hdr_size = 0; } else { --- linux-3.2.0.orig/drivers/net/vmxnet3/vmxnet3_int.h +++ linux-3.2.0/drivers/net/vmxnet3/vmxnet3_int.h @@ -70,10 +70,10 @@ /* * Version numbers */ -#define VMXNET3_DRIVER_VERSION_STRING "1.1.18.0-k" +#define VMXNET3_DRIVER_VERSION_STRING "1.1.29.0-k" /* a 32-bit int, each byte encode a verion number in VMXNET3_DRIVER_VERSION */ -#define VMXNET3_DRIVER_VERSION_NUM 0x01011200 +#define VMXNET3_DRIVER_VERSION_NUM 0x01011D00 #if defined(CONFIG_PCI_MSI) /* RSS only makes sense if MSI-X is supported. */ --- linux-3.2.0.orig/drivers/net/usb/ipheth.c +++ linux-3.2.0/drivers/net/usb/ipheth.c @@ -60,6 +60,7 @@ #define USB_PRODUCT_IPHONE_3GS 0x1294 #define USB_PRODUCT_IPHONE_4 0x1297 #define USB_PRODUCT_IPHONE_4_VZW 0x129c +#define USB_PRODUCT_IPHONE_4S 0x12a0 #define IPHETH_USBINTF_CLASS 255 #define IPHETH_USBINTF_SUBCLASS 253 @@ -103,6 +104,10 @@ USB_VENDOR_APPLE, USB_PRODUCT_IPHONE_4_VZW, IPHETH_USBINTF_CLASS, IPHETH_USBINTF_SUBCLASS, IPHETH_USBINTF_PROTO) }, + { USB_DEVICE_AND_INTERFACE_INFO( + USB_VENDOR_APPLE, USB_PRODUCT_IPHONE_4S, + IPHETH_USBINTF_CLASS, IPHETH_USBINTF_SUBCLASS, + IPHETH_USBINTF_PROTO) }, { } }; MODULE_DEVICE_TABLE(usb, ipheth_table); --- linux-3.2.0.orig/drivers/net/usb/smsc95xx.c +++ linux-3.2.0/drivers/net/usb/smsc95xx.c @@ -1190,7 +1190,7 @@ .rx_fixup = smsc95xx_rx_fixup, .tx_fixup = smsc95xx_tx_fixup, .status = smsc95xx_status, - .flags = FLAG_ETHER | FLAG_SEND_ZLP, + .flags = FLAG_ETHER | FLAG_SEND_ZLP | FLAG_LINK_INTR, }; static const struct usb_device_id products[] = { --- linux-3.2.0.orig/drivers/net/usb/cdc_eem.c +++ linux-3.2.0/drivers/net/usb/cdc_eem.c @@ -93,6 +93,7 @@ /* no jumbogram (16K) support for now */ dev->net->hard_header_len += EEM_HEAD + ETH_FCS_LEN; + dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len; return 0; } --- linux-3.2.0.orig/drivers/net/usb/cdc_ether.c +++ linux-3.2.0/drivers/net/usb/cdc_ether.c @@ -83,6 +83,7 @@ struct cdc_state *info = (void *) &dev->data; int status; int rndis; + bool android_rndis_quirk = false; struct usb_driver *driver = driver_of(intf); struct usb_cdc_mdlm_desc *desc = NULL; struct usb_cdc_mdlm_detail_desc *detail = NULL; @@ -195,6 +196,11 @@ info->control, info->u->bSlaveInterface0, info->data); + /* fall back to hard-wiring for RNDIS */ + if (rndis) { + android_rndis_quirk = true; + goto next_desc; + } goto bad_desc; } if (info->control != intf) { @@ -271,11 +277,15 @@ /* Microsoft ActiveSync based and some regular RNDIS devices lack the * CDC descriptors, so we'll hard-wire the interfaces and not check * for descriptors. + * + * Some Android RNDIS devices have a CDC Union descriptor pointing + * to non-existing interfaces. Ignore that and attempt the same + * hard-wired 0 and 1 interfaces. */ - if (rndis && !info->u) { + if (rndis && (!info->u || android_rndis_quirk)) { info->control = usb_ifnum_to_if(dev->udev, 0); info->data = usb_ifnum_to_if(dev->udev, 1); - if (!info->control || !info->data) { + if (!info->control || !info->data || info->control != intf) { dev_dbg(&intf->dev, "rndis: master #0/%p slave #1/%p\n", info->control, @@ -472,6 +482,7 @@ /*-------------------------------------------------------------------------*/ #define HUAWEI_VENDOR_ID 0x12D1 +#define NOVATEL_VENDOR_ID 0x1410 static const struct usb_device_id products [] = { /* @@ -570,6 +581,13 @@ .driver_info = 0, }, +/* Logitech Harmony 900 - uses the pseudo-MDLM (BLAN) driver */ +{ + USB_DEVICE_AND_INTERFACE_INFO(0x046d, 0xc11f, USB_CLASS_COMM, + USB_CDC_SUBCLASS_MDLM, USB_CDC_PROTO_NONE), + .driver_info = 0, +}, + /* * WHITELIST!!! * @@ -582,6 +600,21 @@ * because of bugs/quirks in a given product (like Zaurus, above). */ { + /* Novatel USB551L */ + /* This match must come *before* the generic CDC-ETHER match so that + * we get FLAG_WWAN set on the device, since it's descriptors are + * generic CDC-ETHER. + */ + .match_flags = USB_DEVICE_ID_MATCH_VENDOR + | USB_DEVICE_ID_MATCH_PRODUCT + | USB_DEVICE_ID_MATCH_INT_INFO, + .idVendor = NOVATEL_VENDOR_ID, + .idProduct = 0xB001, + .bInterfaceClass = USB_CLASS_COMM, + .bInterfaceSubClass = USB_CDC_SUBCLASS_ETHERNET, + .bInterfaceProtocol = USB_CDC_PROTO_NONE, + .driver_info = (unsigned long)&wwan_info, +}, { USB_INTERFACE_INFO(USB_CLASS_COMM, USB_CDC_SUBCLASS_ETHERNET, USB_CDC_PROTO_NONE), .driver_info = (unsigned long) &cdc_info, --- linux-3.2.0.orig/drivers/net/usb/zaurus.c +++ linux-3.2.0/drivers/net/usb/zaurus.c @@ -332,6 +332,11 @@ .driver_info = ZAURUS_PXA_INFO, }, { + /* Motorola Rokr E6 */ + USB_DEVICE_AND_INTERFACE_INFO(0x22b8, 0x6027, USB_CLASS_COMM, + USB_CDC_SUBCLASS_MDLM, USB_CDC_PROTO_NONE), + .driver_info = (unsigned long) &bogus_mdlm_info, +}, { /* Motorola MOTOMAGX phones */ USB_DEVICE_AND_INTERFACE_INFO(0x22b8, 0x6425, USB_CLASS_COMM, USB_CDC_SUBCLASS_MDLM, USB_CDC_PROTO_NONE), @@ -349,6 +354,13 @@ ZAURUS_MASTER_INTERFACE, .driver_info = OLYMPUS_MXL_INFO, }, + +/* Logitech Harmony 900 - uses the pseudo-MDLM (BLAN) driver */ +{ + USB_DEVICE_AND_INTERFACE_INFO(0x046d, 0xc11f, USB_CLASS_COMM, + USB_CDC_SUBCLASS_MDLM, USB_CDC_PROTO_NONE), + .driver_info = (unsigned long) &bogus_mdlm_info, +}, { }, // END }; MODULE_DEVICE_TABLE(usb, products); --- linux-3.2.0.orig/drivers/net/usb/asix.c +++ linux-3.2.0/drivers/net/usb/asix.c @@ -376,7 +376,7 @@ skb_pull(skb, (size + 1) & 0xfffe); - if (skb->len == 0) + if (skb->len < sizeof(header)) break; head = (u8 *) skb->data; @@ -403,7 +403,7 @@ u32 packet_len; u32 padbytes = 0xffff0000; - padlen = ((skb->len + 4) % 512) ? 0 : 4; + padlen = ((skb->len + 4) & (dev->maxpacket - 1)) ? 0 : 4; if ((!skb_cloned(skb)) && ((headroom + tailroom) >= (4 + padlen))) { @@ -425,7 +425,7 @@ cpu_to_le32s(&packet_len); skb_copy_to_linear_data(skb, &packet_len, sizeof(packet_len)); - if ((skb->len % 512) == 0) { + if (padlen) { cpu_to_le32s(&padbytes); memcpy(skb_tail_pointer(skb), &padbytes, sizeof(padbytes)); skb_put(skb, sizeof(padbytes)); @@ -974,6 +974,7 @@ static int ax88772_reset(struct usbnet *dev) { + struct asix_data *data = (struct asix_data *)&dev->data; int ret, embd_phy; u16 rx_ctl; @@ -1051,6 +1052,13 @@ goto out; } + /* Rewrite MAC address */ + memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN); + ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN, + data->mac_addr); + if (ret < 0) + goto out; + /* Set RX_CTL to default values with 2k buffer, and enable cactus */ ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL); if (ret < 0) @@ -1316,6 +1324,13 @@ if (ret < 0) return ret; + /* Rewrite MAC address */ + memcpy(data->mac_addr, dev->net->dev_addr, ETH_ALEN); + ret = asix_write_cmd(dev, AX_CMD_WRITE_NODE_ID, 0, 0, ETH_ALEN, + data->mac_addr); + if (ret < 0) + return ret; + ret = asix_write_rx_ctl(dev, AX_DEFAULT_RX_CTL); if (ret < 0) return ret; @@ -1580,6 +1595,10 @@ USB_DEVICE (0x6189, 0x182d), .driver_info = (unsigned long) &ax8817x_info, }, { + // Sitecom LN-031 "USB 2.0 10/100/1000 Ethernet adapter" + USB_DEVICE (0x0df6, 0x0056), + .driver_info = (unsigned long) &ax88178_info, +}, { // corega FEther USB2-TX USB_DEVICE (0x07aa, 0x0017), .driver_info = (unsigned long) &ax8817x_info, --- linux-3.2.0.orig/drivers/net/usb/smsc75xx.c +++ linux-3.2.0/drivers/net/usb/smsc75xx.c @@ -1050,6 +1050,7 @@ dev->net->ethtool_ops = &smsc75xx_ethtool_ops; dev->net->flags |= IFF_MULTICAST; dev->net->hard_header_len += SMSC75XX_TX_OVERHEAD; + dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len; return 0; } --- linux-3.2.0.orig/drivers/net/usb/usbnet.c +++ linux-3.2.0/drivers/net/usb/usbnet.c @@ -281,17 +281,32 @@ } EXPORT_SYMBOL_GPL(usbnet_change_mtu); +/* The caller must hold list->lock */ +static void __usbnet_queue_skb(struct sk_buff_head *list, + struct sk_buff *newsk, enum skb_state state) +{ + struct skb_data *entry = (struct skb_data *) newsk->cb; + + __skb_queue_tail(list, newsk); + entry->state = state; +} + /*-------------------------------------------------------------------------*/ /* some LK 2.4 HCDs oopsed if we freed or resubmitted urbs from * completion callbacks. 2.5 should have fixed those bugs... */ -static void defer_bh(struct usbnet *dev, struct sk_buff *skb, struct sk_buff_head *list) +static enum skb_state defer_bh(struct usbnet *dev, struct sk_buff *skb, + struct sk_buff_head *list, enum skb_state state) { unsigned long flags; + enum skb_state old_state; + struct skb_data *entry = (struct skb_data *) skb->cb; spin_lock_irqsave(&list->lock, flags); + old_state = entry->state; + entry->state = state; __skb_unlink(skb, list); spin_unlock(&list->lock); spin_lock(&dev->done.lock); @@ -299,6 +314,7 @@ if (dev->done.qlen == 1) tasklet_schedule(&dev->bh); spin_unlock_irqrestore(&dev->done.lock, flags); + return old_state; } /* some work can't be done in tasklets, so we use keventd @@ -339,7 +355,6 @@ entry = (struct skb_data *) skb->cb; entry->urb = urb; entry->dev = dev; - entry->state = rx_start; entry->length = 0; usb_fill_bulk_urb (urb, dev->udev, dev->in, @@ -371,7 +386,7 @@ tasklet_schedule (&dev->bh); break; case 0: - __skb_queue_tail (&dev->rxq, skb); + __usbnet_queue_skb(&dev->rxq, skb, rx_start); } } else { netif_dbg(dev, ifdown, dev->net, "rx: stopped\n"); @@ -422,16 +437,17 @@ struct skb_data *entry = (struct skb_data *) skb->cb; struct usbnet *dev = entry->dev; int urb_status = urb->status; + enum skb_state state; skb_put (skb, urb->actual_length); - entry->state = rx_done; + state = rx_done; entry->urb = NULL; switch (urb_status) { /* success */ case 0: if (skb->len < dev->net->hard_header_len) { - entry->state = rx_cleanup; + state = rx_cleanup; dev->net->stats.rx_errors++; dev->net->stats.rx_length_errors++; netif_dbg(dev, rx_err, dev->net, @@ -470,7 +486,7 @@ "rx throttle %d\n", urb_status); } block: - entry->state = rx_cleanup; + state = rx_cleanup; entry->urb = urb; urb = NULL; break; @@ -481,17 +497,18 @@ // FALLTHROUGH default: - entry->state = rx_cleanup; + state = rx_cleanup; dev->net->stats.rx_errors++; netif_dbg(dev, rx_err, dev->net, "rx status %d\n", urb_status); break; } - defer_bh(dev, skb, &dev->rxq); + state = defer_bh(dev, skb, &dev->rxq, state); if (urb) { if (netif_running (dev->net) && - !test_bit (EVENT_RX_HALT, &dev->flags)) { + !test_bit (EVENT_RX_HALT, &dev->flags) && + state != unlink_start) { rx_submit (dev, urb, GFP_ATOMIC); return; } @@ -577,18 +594,34 @@ static int unlink_urbs (struct usbnet *dev, struct sk_buff_head *q) { unsigned long flags; - struct sk_buff *skb, *skbnext; + struct sk_buff *skb; int count = 0; spin_lock_irqsave (&q->lock, flags); - skb_queue_walk_safe(q, skb, skbnext) { + while (!skb_queue_empty(q)) { struct skb_data *entry; struct urb *urb; int retval; - entry = (struct skb_data *) skb->cb; + skb_queue_walk(q, skb) { + entry = (struct skb_data *) skb->cb; + if (entry->state != unlink_start) + goto found; + } + break; +found: + entry->state = unlink_start; urb = entry->urb; + /* + * Get reference count of the URB to avoid it to be + * freed during usb_unlink_urb, which may trigger + * use-after-free problem inside usb_unlink_urb since + * usb_unlink_urb is always racing with .complete + * handler(include defer_bh). + */ + usb_get_urb(urb); + spin_unlock_irqrestore(&q->lock, flags); // during some PM-driven resume scenarios, // these (async) unlinks complete immediately retval = usb_unlink_urb (urb); @@ -596,6 +629,8 @@ netdev_dbg(dev->net, "unlink urb err, %d\n", retval); else count++; + usb_put_urb(urb); + spin_lock_irqsave(&q->lock, flags); } spin_unlock_irqrestore (&q->lock, flags); return count; @@ -1026,9 +1061,7 @@ } usb_autopm_put_interface_async(dev->intf); - urb->dev = NULL; - entry->state = tx_done; - defer_bh(dev, skb, &dev->txq); + (void) defer_bh(dev, skb, &dev->txq, tx_done); } /*-------------------------------------------------------------------------*/ @@ -1084,7 +1117,6 @@ entry = (struct skb_data *) skb->cb; entry->urb = urb; entry->dev = dev; - entry->state = tx_start; entry->length = length; usb_fill_bulk_urb (urb, dev->udev, dev->out, @@ -1143,7 +1175,7 @@ break; case 0: net->trans_start = jiffies; - __skb_queue_tail (&dev->txq, skb); + __usbnet_queue_skb(&dev->txq, skb, tx_start); if (dev->txq.qlen >= TX_QLEN (dev)) netif_stop_queue (net); } --- linux-3.2.0.orig/drivers/gpio/gpio-omap.c +++ linux-3.2.0/drivers/gpio/gpio-omap.c @@ -508,7 +508,10 @@ static inline void _set_gpio_irqenable(struct gpio_bank *bank, int gpio, int enable) { - _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio)); + if (enable) + _enable_gpio_irqbank(bank, GPIO_BIT(bank, gpio)); + else + _disable_gpio_irqbank(bank, GPIO_BIT(bank, gpio)); } /* --- linux-3.2.0.orig/drivers/gpio/Kconfig +++ linux-3.2.0/drivers/gpio/Kconfig @@ -387,7 +387,7 @@ Say Y here to support Intel Langwell/Penwell GPIO. config GPIO_PCH - tristate "Intel EG20T PCH / OKI SEMICONDUCTOR ML7223 IOH GPIO" + tristate "Intel EG20T PCH/LAPIS Semiconductor IOH(ML7223/ML7831) GPIO" depends on PCI && X86 select GENERIC_IRQ_CHIP help @@ -395,11 +395,12 @@ which is an IOH(Input/Output Hub) for x86 embedded processor. This driver can access PCH GPIO device. - This driver also can be used for OKI SEMICONDUCTOR IOH(Input/ - Output Hub), ML7223. + This driver also can be used for LAPIS Semiconductor IOH(Input/ + Output Hub), ML7223 and ML7831. ML7223 IOH is for MP(Media Phone) use. - ML7223 is companion chip for Intel Atom E6xx series. - ML7223 is completely compatible for Intel EG20T PCH. + ML7831 IOH is for general purpose use. + ML7223/ML7831 is companion chip for Intel Atom E6xx series. + ML7223/ML7831 is completely compatible for Intel EG20T PCH. config GPIO_ML_IOH tristate "OKI SEMICONDUCTOR ML7213 IOH GPIO support" --- linux-3.2.0.orig/drivers/gpio/gpio-mpc8xxx.c +++ linux-3.2.0/drivers/gpio/gpio-mpc8xxx.c @@ -163,7 +163,8 @@ if (mask) generic_handle_irq(irq_linear_revmap(mpc8xxx_gc->irq, 32 - ffs(mask))); - chip->irq_eoi(&desc->irq_data); + if (chip->irq_eoi) + chip->irq_eoi(&desc->irq_data); } static void mpc8xxx_irq_unmask(struct irq_data *d) --- linux-3.2.0.orig/drivers/gpio/gpio-davinci.c +++ linux-3.2.0/drivers/gpio/gpio-davinci.c @@ -313,10 +313,16 @@ return -ENODEV; } -static int gpio_irq_type_unbanked(struct irq_data *d, unsigned trigger) +static int gpio_irq_type_unbanked(struct irq_data *data, unsigned trigger) { - struct davinci_gpio_regs __iomem *g = irq2regs(d->irq); - u32 mask = (u32) irq_data_get_irq_handler_data(d); + struct davinci_gpio_controller *d; + struct davinci_gpio_regs __iomem *g; + struct davinci_soc_info *soc_info = &davinci_soc_info; + u32 mask; + + d = (struct davinci_gpio_controller *)data->handler_data; + g = (struct davinci_gpio_regs __iomem *)d->regs; + mask = __gpio_mask(data->irq - soc_info->gpio_irq); if (trigger & ~(IRQ_TYPE_EDGE_FALLING | IRQ_TYPE_EDGE_RISING)) return -EINVAL; @@ -380,7 +386,7 @@ * IRQ mux conflicts; gpio_irq_type_unbanked() is only for GPIOs. */ if (soc_info->gpio_unbanked) { - static struct irq_chip gpio_irqchip_unbanked; + static struct irq_chip_type gpio_unbanked; /* pass "bank 0" GPIO IRQs to AINTC */ chips[0].chip.to_irq = gpio_to_irq_unbanked; @@ -388,9 +394,10 @@ /* AINTC handles mask/unmask; GPIO handles triggering */ irq = bank_irq; - gpio_irqchip_unbanked = *irq_get_chip(irq); - gpio_irqchip_unbanked.name = "GPIO-AINTC"; - gpio_irqchip_unbanked.irq_set_type = gpio_irq_type_unbanked; + gpio_unbanked = *container_of(irq_get_chip(irq), + struct irq_chip_type, chip); + gpio_unbanked.chip.name = "GPIO-AINTC"; + gpio_unbanked.chip.irq_set_type = gpio_irq_type_unbanked; /* default trigger: both edges */ g = gpio2regs(0); @@ -399,9 +406,8 @@ /* set the direct IRQs up to use that irqchip */ for (gpio = 0; gpio < soc_info->gpio_unbanked; gpio++, irq++) { - irq_set_chip(irq, &gpio_irqchip_unbanked); - irq_set_handler_data(irq, (void *)__gpio_mask(gpio)); - irq_set_chip_data(irq, (__force void *)g); + irq_set_chip(irq, &gpio_unbanked.chip); + irq_set_handler_data(irq, &chips[gpio / 32]); irq_set_status_flags(irq, IRQ_TYPE_EDGE_BOTH); } --- linux-3.2.0.orig/drivers/gpio/gpio-pch.c +++ linux-3.2.0/drivers/gpio/gpio-pch.c @@ -392,6 +392,7 @@ chip->reg = chip->base; pci_set_drvdata(pdev, chip); mutex_init(&chip->lock); + spin_lock_init(&chip->spinlock); pch_gpio_setup(chip); ret = gpiochip_add(&chip->gpio); if (ret) { @@ -524,6 +525,7 @@ { PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x8803) }, { PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8014) }, { PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8043) }, + { PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8803) }, { 0, } }; MODULE_DEVICE_TABLE(pci, pch_gpio_pcidev_id); --- linux-3.2.0.orig/drivers/gpio/gpio-ml-ioh.c +++ linux-3.2.0/drivers/gpio/gpio-ml-ioh.c @@ -448,6 +448,7 @@ chip->reg = chip->base; chip->ch = i; mutex_init(&chip->lock); + spin_lock_init(&chip->spinlock); ioh_gpio_setup(chip, num_ports[i]); ret = gpiochip_add(&chip->gpio); if (ret) { --- linux-3.2.0.orig/drivers/scsi/scsi_priv.h +++ linux-3.2.0/drivers/scsi/scsi_priv.h @@ -110,6 +110,7 @@ #endif /* CONFIG_PROC_FS */ /* scsi_scan.c */ +extern int scsi_complete_async_scans(void); extern int scsi_scan_host_selected(struct Scsi_Host *, unsigned int, unsigned int, unsigned int, int); extern void scsi_forget_host(struct Scsi_Host *); --- linux-3.2.0.orig/drivers/scsi/storvsc_drv.c +++ linux-3.2.0/drivers/scsi/storvsc_drv.c @@ -0,0 +1,1565 @@ +/* + * Copyright (c) 2009, Microsoft Corporation. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program; if not, write to the Free Software Foundation, Inc., 59 Temple + * Place - Suite 330, Boston, MA 02111-1307 USA. + * + * Authors: + * Haiyang Zhang + * Hank Janssen + * K. Y. Srinivasan + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/* + * All wire protocol details (storage protocol between the guest and the host) + * are consolidated here. + * + * Begin protocol definitions. + */ + +/* + * Version history: + * V1 Beta: 0.1 + * V1 RC < 2008/1/31: 1.0 + * V1 RC > 2008/1/31: 2.0 + * Win7: 4.2 + */ + +#define VMSTOR_CURRENT_MAJOR 4 +#define VMSTOR_CURRENT_MINOR 2 + + +/* Packet structure describing virtual storage requests. */ +enum vstor_packet_operation { + VSTOR_OPERATION_COMPLETE_IO = 1, + VSTOR_OPERATION_REMOVE_DEVICE = 2, + VSTOR_OPERATION_EXECUTE_SRB = 3, + VSTOR_OPERATION_RESET_LUN = 4, + VSTOR_OPERATION_RESET_ADAPTER = 5, + VSTOR_OPERATION_RESET_BUS = 6, + VSTOR_OPERATION_BEGIN_INITIALIZATION = 7, + VSTOR_OPERATION_END_INITIALIZATION = 8, + VSTOR_OPERATION_QUERY_PROTOCOL_VERSION = 9, + VSTOR_OPERATION_QUERY_PROPERTIES = 10, + VSTOR_OPERATION_ENUMERATE_BUS = 11, + VSTOR_OPERATION_MAXIMUM = 11 +}; + +/* + * Platform neutral description of a scsi request - + * this remains the same across the write regardless of 32/64 bit + * note: it's patterned off the SCSI_PASS_THROUGH structure + */ +#define STORVSC_MAX_CMD_LEN 0x10 +#define STORVSC_SENSE_BUFFER_SIZE 0x12 +#define STORVSC_MAX_BUF_LEN_WITH_PADDING 0x14 + +struct vmscsi_request { + u16 length; + u8 srb_status; + u8 scsi_status; + + u8 port_number; + u8 path_id; + u8 target_id; + u8 lun; + + u8 cdb_length; + u8 sense_info_length; + u8 data_in; + u8 reserved; + + u32 data_transfer_length; + + union { + u8 cdb[STORVSC_MAX_CMD_LEN]; + u8 sense_data[STORVSC_SENSE_BUFFER_SIZE]; + u8 reserved_array[STORVSC_MAX_BUF_LEN_WITH_PADDING]; + }; +} __attribute((packed)); + + +/* + * This structure is sent during the intialization phase to get the different + * properties of the channel. + */ +struct vmstorage_channel_properties { + u16 protocol_version; + u8 path_id; + u8 target_id; + + /* Note: port number is only really known on the client side */ + u32 port_number; + u32 flags; + u32 max_transfer_bytes; + + /* + * This id is unique for each channel and will correspond with + * vendor specific data in the inquiry data. + */ + + u64 unique_id; +} __packed; + +/* This structure is sent during the storage protocol negotiations. */ +struct vmstorage_protocol_version { + /* Major (MSW) and minor (LSW) version numbers. */ + u16 major_minor; + + /* + * Revision number is auto-incremented whenever this file is changed + * (See FILL_VMSTOR_REVISION macro above). Mismatch does not + * definitely indicate incompatibility--but it does indicate mismatched + * builds. + * This is only used on the windows side. Just set it to 0. + */ + u16 revision; +} __packed; + +/* Channel Property Flags */ +#define STORAGE_CHANNEL_REMOVABLE_FLAG 0x1 +#define STORAGE_CHANNEL_EMULATED_IDE_FLAG 0x2 + +struct vstor_packet { + /* Requested operation type */ + enum vstor_packet_operation operation; + + /* Flags - see below for values */ + u32 flags; + + /* Status of the request returned from the server side. */ + u32 status; + + /* Data payload area */ + union { + /* + * Structure used to forward SCSI commands from the + * client to the server. + */ + struct vmscsi_request vm_srb; + + /* Structure used to query channel properties. */ + struct vmstorage_channel_properties storage_channel_properties; + + /* Used during version negotiations. */ + struct vmstorage_protocol_version version; + }; +} __packed; + +/* + * Packet Flags: + * + * This flag indicates that the server should send back a completion for this + * packet. + */ + +#define REQUEST_COMPLETION_FLAG 0x1 + +/* Matches Windows-end */ +enum storvsc_request_type { + WRITE_TYPE = 0, + READ_TYPE, + UNKNOWN_TYPE, +}; + +/* + * SRB status codes and masks; a subset of the codes used here. + */ + +#define SRB_STATUS_AUTOSENSE_VALID 0x80 +#define SRB_STATUS_INVALID_LUN 0x20 +#define SRB_STATUS_SUCCESS 0x01 +#define SRB_STATUS_ERROR 0x04 + +/* + * This is the end of Protocol specific defines. + */ + + +/* + * We setup a mempool to allocate request structures for this driver + * on a per-lun basis. The following define specifies the number of + * elements in the pool. + */ + +#define STORVSC_MIN_BUF_NR 64 +static int storvsc_ringbuffer_size = (20 * PAGE_SIZE); + +module_param(storvsc_ringbuffer_size, int, S_IRUGO); +MODULE_PARM_DESC(storvsc_ringbuffer_size, "Ring buffer size (bytes)"); + +#define STORVSC_MAX_IO_REQUESTS 128 + +/* + * In Hyper-V, each port/path/target maps to 1 scsi host adapter. In + * reality, the path/target is not used (ie always set to 0) so our + * scsi host adapter essentially has 1 bus with 1 target that contains + * up to 256 luns. + */ +#define STORVSC_MAX_LUNS_PER_TARGET 64 +#define STORVSC_MAX_TARGETS 1 +#define STORVSC_MAX_CHANNELS 1 + + + +struct storvsc_cmd_request { + struct list_head entry; + struct scsi_cmnd *cmd; + + unsigned int bounce_sgl_count; + struct scatterlist *bounce_sgl; + + struct hv_device *device; + + /* Synchronize the request/response if needed */ + struct completion wait_event; + + unsigned char *sense_buffer; + struct hv_multipage_buffer data_buffer; + struct vstor_packet vstor_packet; +}; + + +/* A storvsc device is a device object that contains a vmbus channel */ +struct storvsc_device { + struct hv_device *device; + + bool destroy; + bool drain_notify; + atomic_t num_outstanding_req; + struct Scsi_Host *host; + + wait_queue_head_t waiting_to_drain; + + /* + * Each unique Port/Path/Target represents 1 channel ie scsi + * controller. In reality, the pathid, targetid is always 0 + * and the port is set by us + */ + unsigned int port_number; + unsigned char path_id; + unsigned char target_id; + + /* Used for vsc/vsp channel reset process */ + struct storvsc_cmd_request init_request; + struct storvsc_cmd_request reset_request; +}; + +struct stor_mem_pools { + struct kmem_cache *request_pool; + mempool_t *request_mempool; +}; + +struct hv_host_device { + struct hv_device *dev; + unsigned int port; + unsigned char path; + unsigned char target; +}; + +struct storvsc_scan_work { + struct work_struct work; + struct Scsi_Host *host; + uint lun; +}; + +static void storvsc_bus_scan(struct work_struct *work) +{ + struct storvsc_scan_work *wrk; + int id, order_id; + + wrk = container_of(work, struct storvsc_scan_work, work); + for (id = 0; id < wrk->host->max_id; ++id) { + if (wrk->host->reverse_ordering) + order_id = wrk->host->max_id - id - 1; + else + order_id = id; + + scsi_scan_target(&wrk->host->shost_gendev, 0, + order_id, SCAN_WILD_CARD, 1); + } + kfree(wrk); +} + +static void storvsc_remove_lun(struct work_struct *work) +{ + struct storvsc_scan_work *wrk; + struct scsi_device *sdev; + + wrk = container_of(work, struct storvsc_scan_work, work); + if (!scsi_host_get(wrk->host)) + goto done; + + sdev = scsi_device_lookup(wrk->host, 0, 0, wrk->lun); + + if (sdev) { + scsi_remove_device(sdev); + scsi_device_put(sdev); + } + scsi_host_put(wrk->host); + +done: + kfree(wrk); +} + +/* + * Major/minor macros. Minor version is in LSB, meaning that earlier flat + * version numbers will be interpreted as "0.x" (i.e., 1 becomes 0.1). + */ + +static inline u16 storvsc_get_version(u8 major, u8 minor) +{ + u16 version; + + version = ((major << 8) | minor); + return version; +} + +/* + * We can get incoming messages from the host that are not in response to + * messages that we have sent out. An example of this would be messages + * received by the guest to notify dynamic addition/removal of LUNs. To + * deal with potential race conditions where the driver may be in the + * midst of being unloaded when we might receive an unsolicited message + * from the host, we have implemented a mechanism to gurantee sequential + * consistency: + * + * 1) Once the device is marked as being destroyed, we will fail all + * outgoing messages. + * 2) We permit incoming messages when the device is being destroyed, + * only to properly account for messages already sent out. + */ + +static inline struct storvsc_device *get_out_stor_device( + struct hv_device *device) +{ + struct storvsc_device *stor_device; + + stor_device = hv_get_drvdata(device); + + if (stor_device && stor_device->destroy) + stor_device = NULL; + + return stor_device; +} + + +static inline void storvsc_wait_to_drain(struct storvsc_device *dev) +{ + dev->drain_notify = true; + wait_event(dev->waiting_to_drain, + atomic_read(&dev->num_outstanding_req) == 0); + dev->drain_notify = false; +} + +static inline struct storvsc_device *get_in_stor_device( + struct hv_device *device) +{ + struct storvsc_device *stor_device; + + stor_device = hv_get_drvdata(device); + + if (!stor_device) + goto get_in_err; + + /* + * If the device is being destroyed; allow incoming + * traffic only to cleanup outstanding requests. + */ + + if (stor_device->destroy && + (atomic_read(&stor_device->num_outstanding_req) == 0)) + stor_device = NULL; + +get_in_err: + return stor_device; + +} + +static void destroy_bounce_buffer(struct scatterlist *sgl, + unsigned int sg_count) +{ + int i; + struct page *page_buf; + + for (i = 0; i < sg_count; i++) { + page_buf = sg_page((&sgl[i])); + if (page_buf != NULL) + __free_page(page_buf); + } + + kfree(sgl); +} + +static int do_bounce_buffer(struct scatterlist *sgl, unsigned int sg_count) +{ + int i; + + /* No need to check */ + if (sg_count < 2) + return -1; + + /* We have at least 2 sg entries */ + for (i = 0; i < sg_count; i++) { + if (i == 0) { + /* make sure 1st one does not have hole */ + if (sgl[i].offset + sgl[i].length != PAGE_SIZE) + return i; + } else if (i == sg_count - 1) { + /* make sure last one does not have hole */ + if (sgl[i].offset != 0) + return i; + } else { + /* make sure no hole in the middle */ + if (sgl[i].length != PAGE_SIZE || sgl[i].offset != 0) + return i; + } + } + return -1; +} + +static struct scatterlist *create_bounce_buffer(struct scatterlist *sgl, + unsigned int sg_count, + unsigned int len, + int write) +{ + int i; + int num_pages; + struct scatterlist *bounce_sgl; + struct page *page_buf; + unsigned int buf_len = ((write == WRITE_TYPE) ? 0 : PAGE_SIZE); + + num_pages = ALIGN(len, PAGE_SIZE) >> PAGE_SHIFT; + + bounce_sgl = kcalloc(num_pages, sizeof(struct scatterlist), GFP_ATOMIC); + if (!bounce_sgl) + return NULL; + + for (i = 0; i < num_pages; i++) { + page_buf = alloc_page(GFP_ATOMIC); + if (!page_buf) + goto cleanup; + sg_set_page(&bounce_sgl[i], page_buf, buf_len, 0); + } + + return bounce_sgl; + +cleanup: + destroy_bounce_buffer(bounce_sgl, num_pages); + return NULL; +} + +/* Assume the original sgl has enough room */ +static unsigned int copy_from_bounce_buffer(struct scatterlist *orig_sgl, + struct scatterlist *bounce_sgl, + unsigned int orig_sgl_count, + unsigned int bounce_sgl_count) +{ + int i; + int j = 0; + unsigned long src, dest; + unsigned int srclen, destlen, copylen; + unsigned int total_copied = 0; + unsigned long bounce_addr = 0; + unsigned long dest_addr = 0; + unsigned long flags; + + local_irq_save(flags); + + for (i = 0; i < orig_sgl_count; i++) { + dest_addr = (unsigned long)kmap_atomic(sg_page((&orig_sgl[i])), + KM_IRQ0) + orig_sgl[i].offset; + dest = dest_addr; + destlen = orig_sgl[i].length; + + if (bounce_addr == 0) + bounce_addr = + (unsigned long)kmap_atomic(sg_page((&bounce_sgl[j])), + KM_IRQ0); + + while (destlen) { + src = bounce_addr + bounce_sgl[j].offset; + srclen = bounce_sgl[j].length - bounce_sgl[j].offset; + + copylen = min(srclen, destlen); + memcpy((void *)dest, (void *)src, copylen); + + total_copied += copylen; + bounce_sgl[j].offset += copylen; + destlen -= copylen; + dest += copylen; + + if (bounce_sgl[j].offset == bounce_sgl[j].length) { + /* full */ + kunmap_atomic((void *)bounce_addr, KM_IRQ0); + j++; + + /* + * It is possible that the number of elements + * in the bounce buffer may not be equal to + * the number of elements in the original + * scatter list. Handle this correctly. + */ + + if (j == bounce_sgl_count) { + /* + * We are done; cleanup and return. + */ + kunmap_atomic((void *)(dest_addr - + orig_sgl[i].offset), + KM_IRQ0); + local_irq_restore(flags); + return total_copied; + } + + /* if we need to use another bounce buffer */ + if (destlen || i != orig_sgl_count - 1) + bounce_addr = + (unsigned long)kmap_atomic( + sg_page((&bounce_sgl[j])), KM_IRQ0); + } else if (destlen == 0 && i == orig_sgl_count - 1) { + /* unmap the last bounce that is < PAGE_SIZE */ + kunmap_atomic((void *)bounce_addr, KM_IRQ0); + } + } + + kunmap_atomic((void *)(dest_addr - orig_sgl[i].offset), + KM_IRQ0); + } + + local_irq_restore(flags); + + return total_copied; +} + +/* Assume the bounce_sgl has enough room ie using the create_bounce_buffer() */ +static unsigned int copy_to_bounce_buffer(struct scatterlist *orig_sgl, + struct scatterlist *bounce_sgl, + unsigned int orig_sgl_count) +{ + int i; + int j = 0; + unsigned long src, dest; + unsigned int srclen, destlen, copylen; + unsigned int total_copied = 0; + unsigned long bounce_addr = 0; + unsigned long src_addr = 0; + unsigned long flags; + + local_irq_save(flags); + + for (i = 0; i < orig_sgl_count; i++) { + src_addr = (unsigned long)kmap_atomic(sg_page((&orig_sgl[i])), + KM_IRQ0) + orig_sgl[i].offset; + src = src_addr; + srclen = orig_sgl[i].length; + + if (bounce_addr == 0) + bounce_addr = + (unsigned long)kmap_atomic(sg_page((&bounce_sgl[j])), + KM_IRQ0); + + while (srclen) { + /* assume bounce offset always == 0 */ + dest = bounce_addr + bounce_sgl[j].length; + destlen = PAGE_SIZE - bounce_sgl[j].length; + + copylen = min(srclen, destlen); + memcpy((void *)dest, (void *)src, copylen); + + total_copied += copylen; + bounce_sgl[j].length += copylen; + srclen -= copylen; + src += copylen; + + if (bounce_sgl[j].length == PAGE_SIZE) { + /* full..move to next entry */ + kunmap_atomic((void *)bounce_addr, KM_IRQ0); + j++; + + /* if we need to use another bounce buffer */ + if (srclen || i != orig_sgl_count - 1) + bounce_addr = + (unsigned long)kmap_atomic( + sg_page((&bounce_sgl[j])), KM_IRQ0); + + } else if (srclen == 0 && i == orig_sgl_count - 1) { + /* unmap the last bounce that is < PAGE_SIZE */ + kunmap_atomic((void *)bounce_addr, KM_IRQ0); + } + } + + kunmap_atomic((void *)(src_addr - orig_sgl[i].offset), KM_IRQ0); + } + + local_irq_restore(flags); + + return total_copied; +} + +static int storvsc_channel_init(struct hv_device *device) +{ + struct storvsc_device *stor_device; + struct storvsc_cmd_request *request; + struct vstor_packet *vstor_packet; + int ret, t; + + stor_device = get_out_stor_device(device); + if (!stor_device) + return -ENODEV; + + request = &stor_device->init_request; + vstor_packet = &request->vstor_packet; + + /* + * Now, initiate the vsc/vsp initialization protocol on the open + * channel + */ + memset(request, 0, sizeof(struct storvsc_cmd_request)); + init_completion(&request->wait_event); + vstor_packet->operation = VSTOR_OPERATION_BEGIN_INITIALIZATION; + vstor_packet->flags = REQUEST_COMPLETION_FLAG; + + ret = vmbus_sendpacket(device->channel, vstor_packet, + sizeof(struct vstor_packet), + (unsigned long)request, + VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + if (ret != 0) + goto cleanup; + + t = wait_for_completion_timeout(&request->wait_event, 5*HZ); + if (t == 0) { + ret = -ETIMEDOUT; + goto cleanup; + } + + if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO || + vstor_packet->status != 0) + goto cleanup; + + + /* reuse the packet for version range supported */ + memset(vstor_packet, 0, sizeof(struct vstor_packet)); + vstor_packet->operation = VSTOR_OPERATION_QUERY_PROTOCOL_VERSION; + vstor_packet->flags = REQUEST_COMPLETION_FLAG; + + vstor_packet->version.major_minor = + storvsc_get_version(VMSTOR_CURRENT_MAJOR, VMSTOR_CURRENT_MINOR); + + /* + * The revision number is only used in Windows; set it to 0. + */ + vstor_packet->version.revision = 0; + + ret = vmbus_sendpacket(device->channel, vstor_packet, + sizeof(struct vstor_packet), + (unsigned long)request, + VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + if (ret != 0) + goto cleanup; + + t = wait_for_completion_timeout(&request->wait_event, 5*HZ); + if (t == 0) { + ret = -ETIMEDOUT; + goto cleanup; + } + + if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO || + vstor_packet->status != 0) + goto cleanup; + + + memset(vstor_packet, 0, sizeof(struct vstor_packet)); + vstor_packet->operation = VSTOR_OPERATION_QUERY_PROPERTIES; + vstor_packet->flags = REQUEST_COMPLETION_FLAG; + vstor_packet->storage_channel_properties.port_number = + stor_device->port_number; + + ret = vmbus_sendpacket(device->channel, vstor_packet, + sizeof(struct vstor_packet), + (unsigned long)request, + VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + + if (ret != 0) + goto cleanup; + + t = wait_for_completion_timeout(&request->wait_event, 5*HZ); + if (t == 0) { + ret = -ETIMEDOUT; + goto cleanup; + } + + if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO || + vstor_packet->status != 0) + goto cleanup; + + stor_device->path_id = vstor_packet->storage_channel_properties.path_id; + stor_device->target_id + = vstor_packet->storage_channel_properties.target_id; + + memset(vstor_packet, 0, sizeof(struct vstor_packet)); + vstor_packet->operation = VSTOR_OPERATION_END_INITIALIZATION; + vstor_packet->flags = REQUEST_COMPLETION_FLAG; + + ret = vmbus_sendpacket(device->channel, vstor_packet, + sizeof(struct vstor_packet), + (unsigned long)request, + VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + + if (ret != 0) + goto cleanup; + + t = wait_for_completion_timeout(&request->wait_event, 5*HZ); + if (t == 0) { + ret = -ETIMEDOUT; + goto cleanup; + } + + if (vstor_packet->operation != VSTOR_OPERATION_COMPLETE_IO || + vstor_packet->status != 0) + goto cleanup; + + +cleanup: + return ret; +} + + +static void storvsc_command_completion(struct storvsc_cmd_request *cmd_request) +{ + struct scsi_cmnd *scmnd = cmd_request->cmd; + struct hv_host_device *host_dev = shost_priv(scmnd->device->host); + void (*scsi_done_fn)(struct scsi_cmnd *); + struct scsi_sense_hdr sense_hdr; + struct vmscsi_request *vm_srb; + struct storvsc_scan_work *wrk; + struct stor_mem_pools *memp = scmnd->device->hostdata; + + vm_srb = &cmd_request->vstor_packet.vm_srb; + if (cmd_request->bounce_sgl_count) { + if (vm_srb->data_in == READ_TYPE) + copy_from_bounce_buffer(scsi_sglist(scmnd), + cmd_request->bounce_sgl, + scsi_sg_count(scmnd), + cmd_request->bounce_sgl_count); + destroy_bounce_buffer(cmd_request->bounce_sgl, + cmd_request->bounce_sgl_count); + } + + /* + * If there is an error; offline the device since all + * error recovery strategies would have already been + * deployed on the host side. However, if the command + * were a pass-through command deal with it appropriately. + */ + switch (vm_srb->srb_status) { + case SRB_STATUS_ERROR: + switch (scmnd->cmnd[0]) { + case ATA_16: + case ATA_12: + scmnd->result = DID_PASSTHROUGH << 16; + break; + default: + scmnd->result = DID_TARGET_FAILURE << 16; + } + break; + default: + scmnd->result = vm_srb->scsi_status; + } + + + /* + * If the LUN is invalid; remove the device. + */ + if (vm_srb->srb_status == SRB_STATUS_INVALID_LUN) { + struct storvsc_device *stor_dev; + struct hv_device *dev = host_dev->dev; + struct Scsi_Host *host; + + stor_dev = get_in_stor_device(dev); + host = stor_dev->host; + + wrk = kmalloc(sizeof(struct storvsc_scan_work), + GFP_ATOMIC); + if (!wrk) { + scmnd->result = DID_TARGET_FAILURE << 16; + } else { + wrk->host = host; + wrk->lun = vm_srb->lun; + INIT_WORK(&wrk->work, storvsc_remove_lun); + schedule_work(&wrk->work); + } + } + + if (scmnd->result) { + if (scsi_normalize_sense(scmnd->sense_buffer, + SCSI_SENSE_BUFFERSIZE, &sense_hdr)) + scsi_print_sense_hdr("storvsc", &sense_hdr); + } + + scsi_set_resid(scmnd, + cmd_request->data_buffer.len - + vm_srb->data_transfer_length); + + scsi_done_fn = scmnd->scsi_done; + + scmnd->host_scribble = NULL; + scmnd->scsi_done = NULL; + + scsi_done_fn(scmnd); + + mempool_free(cmd_request, memp->request_mempool); +} + +static void storvsc_on_io_completion(struct hv_device *device, + struct vstor_packet *vstor_packet, + struct storvsc_cmd_request *request) +{ + struct storvsc_device *stor_device; + struct vstor_packet *stor_pkt; + + stor_device = hv_get_drvdata(device); + stor_pkt = &request->vstor_packet; + + /* + * The current SCSI handling on the host side does + * not correctly handle: + * INQUIRY command with page code parameter set to 0x80 + * MODE_SENSE command with cmd[2] == 0x1c + * + * Setup srb and scsi status so this won't be fatal. + * We do this so we can distinguish truly fatal failues + * (srb status == 0x4) and off-line the device in that case. + */ + + if ((stor_pkt->vm_srb.cdb[0] == INQUIRY) || + (stor_pkt->vm_srb.cdb[0] == MODE_SENSE)) { + vstor_packet->vm_srb.scsi_status = 0; + vstor_packet->vm_srb.srb_status = SRB_STATUS_SUCCESS; + } + + + /* Copy over the status...etc */ + stor_pkt->vm_srb.scsi_status = vstor_packet->vm_srb.scsi_status; + stor_pkt->vm_srb.srb_status = vstor_packet->vm_srb.srb_status; + stor_pkt->vm_srb.sense_info_length = + vstor_packet->vm_srb.sense_info_length; + + if (vstor_packet->vm_srb.scsi_status != 0 || + vstor_packet->vm_srb.srb_status != SRB_STATUS_SUCCESS){ + dev_warn(&device->device, + "cmd 0x%x scsi status 0x%x srb status 0x%x\n", + stor_pkt->vm_srb.cdb[0], + vstor_packet->vm_srb.scsi_status, + vstor_packet->vm_srb.srb_status); + } + + if ((vstor_packet->vm_srb.scsi_status & 0xFF) == 0x02) { + /* CHECK_CONDITION */ + if (vstor_packet->vm_srb.srb_status & + SRB_STATUS_AUTOSENSE_VALID) { + /* autosense data available */ + dev_warn(&device->device, + "stor pkt %p autosense data valid - len %d\n", + request, + vstor_packet->vm_srb.sense_info_length); + + memcpy(request->sense_buffer, + vstor_packet->vm_srb.sense_data, + vstor_packet->vm_srb.sense_info_length); + + } + } + + stor_pkt->vm_srb.data_transfer_length = + vstor_packet->vm_srb.data_transfer_length; + + storvsc_command_completion(request); + + if (atomic_dec_and_test(&stor_device->num_outstanding_req) && + stor_device->drain_notify) + wake_up(&stor_device->waiting_to_drain); + + +} + +static void storvsc_on_receive(struct hv_device *device, + struct vstor_packet *vstor_packet, + struct storvsc_cmd_request *request) +{ + struct storvsc_scan_work *work; + struct storvsc_device *stor_device; + + switch (vstor_packet->operation) { + case VSTOR_OPERATION_COMPLETE_IO: + storvsc_on_io_completion(device, vstor_packet, request); + break; + + case VSTOR_OPERATION_REMOVE_DEVICE: + case VSTOR_OPERATION_ENUMERATE_BUS: + stor_device = get_in_stor_device(device); + work = kmalloc(sizeof(struct storvsc_scan_work), GFP_ATOMIC); + if (!work) + return; + + INIT_WORK(&work->work, storvsc_bus_scan); + work->host = stor_device->host; + schedule_work(&work->work); + break; + + default: + break; + } +} + +static void storvsc_on_channel_callback(void *context) +{ + struct hv_device *device = (struct hv_device *)context; + struct storvsc_device *stor_device; + u32 bytes_recvd; + u64 request_id; + unsigned char packet[ALIGN(sizeof(struct vstor_packet), 8)]; + struct storvsc_cmd_request *request; + int ret; + + + stor_device = get_in_stor_device(device); + if (!stor_device) + return; + + do { + ret = vmbus_recvpacket(device->channel, packet, + ALIGN(sizeof(struct vstor_packet), 8), + &bytes_recvd, &request_id); + if (ret == 0 && bytes_recvd > 0) { + + request = (struct storvsc_cmd_request *) + (unsigned long)request_id; + + if ((request == &stor_device->init_request) || + (request == &stor_device->reset_request)) { + + memcpy(&request->vstor_packet, packet, + sizeof(struct vstor_packet)); + complete(&request->wait_event); + } else { + storvsc_on_receive(device, + (struct vstor_packet *)packet, + request); + } + } else { + break; + } + } while (1); + + return; +} + +static int storvsc_connect_to_vsp(struct hv_device *device, u32 ring_size) +{ + struct vmstorage_channel_properties props; + int ret; + + memset(&props, 0, sizeof(struct vmstorage_channel_properties)); + + ret = vmbus_open(device->channel, + ring_size, + ring_size, + (void *)&props, + sizeof(struct vmstorage_channel_properties), + storvsc_on_channel_callback, device); + + if (ret != 0) + return ret; + + ret = storvsc_channel_init(device); + + return ret; +} + +static int storvsc_dev_remove(struct hv_device *device) +{ + struct storvsc_device *stor_device; + unsigned long flags; + + stor_device = hv_get_drvdata(device); + + spin_lock_irqsave(&device->channel->inbound_lock, flags); + stor_device->destroy = true; + spin_unlock_irqrestore(&device->channel->inbound_lock, flags); + + /* + * At this point, all outbound traffic should be disable. We + * only allow inbound traffic (responses) to proceed so that + * outstanding requests can be completed. + */ + + storvsc_wait_to_drain(stor_device); + + /* + * Since we have already drained, we don't need to busy wait + * as was done in final_release_stor_device() + * Note that we cannot set the ext pointer to NULL until + * we have drained - to drain the outgoing packets, we need to + * allow incoming packets. + */ + spin_lock_irqsave(&device->channel->inbound_lock, flags); + hv_set_drvdata(device, NULL); + spin_unlock_irqrestore(&device->channel->inbound_lock, flags); + + /* Close the channel */ + vmbus_close(device->channel); + + kfree(stor_device); + return 0; +} + +static int storvsc_do_io(struct hv_device *device, + struct storvsc_cmd_request *request) +{ + struct storvsc_device *stor_device; + struct vstor_packet *vstor_packet; + int ret = 0; + + vstor_packet = &request->vstor_packet; + stor_device = get_out_stor_device(device); + + if (!stor_device) + return -ENODEV; + + + request->device = device; + + + vstor_packet->flags |= REQUEST_COMPLETION_FLAG; + + vstor_packet->vm_srb.length = sizeof(struct vmscsi_request); + + + vstor_packet->vm_srb.sense_info_length = STORVSC_SENSE_BUFFER_SIZE; + + + vstor_packet->vm_srb.data_transfer_length = + request->data_buffer.len; + + vstor_packet->operation = VSTOR_OPERATION_EXECUTE_SRB; + + if (request->data_buffer.len) { + ret = vmbus_sendpacket_multipagebuffer(device->channel, + &request->data_buffer, + vstor_packet, + sizeof(struct vstor_packet), + (unsigned long)request); + } else { + ret = vmbus_sendpacket(device->channel, vstor_packet, + sizeof(struct vstor_packet), + (unsigned long)request, + VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + } + + if (ret != 0) + return ret; + + atomic_inc(&stor_device->num_outstanding_req); + + return ret; +} + +static int storvsc_device_alloc(struct scsi_device *sdevice) +{ + struct stor_mem_pools *memp; + int number = STORVSC_MIN_BUF_NR; + + memp = kzalloc(sizeof(struct stor_mem_pools), GFP_KERNEL); + if (!memp) + return -ENOMEM; + + memp->request_pool = + kmem_cache_create(dev_name(&sdevice->sdev_dev), + sizeof(struct storvsc_cmd_request), 0, + SLAB_HWCACHE_ALIGN, NULL); + + if (!memp->request_pool) + goto err0; + + memp->request_mempool = mempool_create(number, mempool_alloc_slab, + mempool_free_slab, + memp->request_pool); + + if (!memp->request_mempool) + goto err1; + + sdevice->hostdata = memp; + + return 0; + +err1: + kmem_cache_destroy(memp->request_pool); + +err0: + kfree(memp); + return -ENOMEM; +} + +static void storvsc_device_destroy(struct scsi_device *sdevice) +{ + struct stor_mem_pools *memp = sdevice->hostdata; + + mempool_destroy(memp->request_mempool); + kmem_cache_destroy(memp->request_pool); + kfree(memp); + sdevice->hostdata = NULL; +} + +static int storvsc_device_configure(struct scsi_device *sdevice) +{ + scsi_adjust_queue_depth(sdevice, MSG_SIMPLE_TAG, + STORVSC_MAX_IO_REQUESTS); + + blk_queue_max_segment_size(sdevice->request_queue, PAGE_SIZE); + + blk_queue_bounce_limit(sdevice->request_queue, BLK_BOUNCE_ANY); + + return 0; +} + +static int storvsc_get_chs(struct scsi_device *sdev, struct block_device * bdev, + sector_t capacity, int *info) +{ + sector_t nsect = capacity; + sector_t cylinders = nsect; + int heads, sectors_pt; + + /* + * We are making up these values; let us keep it simple. + */ + heads = 0xff; + sectors_pt = 0x3f; /* Sectors per track */ + sector_div(cylinders, heads * sectors_pt); + if ((sector_t)(cylinders + 1) * heads * sectors_pt < nsect) + cylinders = 0xffff; + + info[0] = heads; + info[1] = sectors_pt; + info[2] = (int)cylinders; + + return 0; +} + +static int storvsc_host_reset_handler(struct scsi_cmnd *scmnd) +{ + struct hv_host_device *host_dev = shost_priv(scmnd->device->host); + struct hv_device *device = host_dev->dev; + + struct storvsc_device *stor_device; + struct storvsc_cmd_request *request; + struct vstor_packet *vstor_packet; + int ret, t; + + + stor_device = get_out_stor_device(device); + if (!stor_device) + return FAILED; + + request = &stor_device->reset_request; + vstor_packet = &request->vstor_packet; + + init_completion(&request->wait_event); + + vstor_packet->operation = VSTOR_OPERATION_RESET_BUS; + vstor_packet->flags = REQUEST_COMPLETION_FLAG; + vstor_packet->vm_srb.path_id = stor_device->path_id; + + ret = vmbus_sendpacket(device->channel, vstor_packet, + sizeof(struct vstor_packet), + (unsigned long)&stor_device->reset_request, + VM_PKT_DATA_INBAND, + VMBUS_DATA_PACKET_FLAG_COMPLETION_REQUESTED); + if (ret != 0) + return FAILED; + + t = wait_for_completion_timeout(&request->wait_event, 5*HZ); + if (t == 0) + return TIMEOUT_ERROR; + + + /* + * At this point, all outstanding requests in the adapter + * should have been flushed out and return to us + * There is a potential race here where the host may be in + * the process of responding when we return from here. + * Just wait for all in-transit packets to be accounted for + * before we return from here. + */ + storvsc_wait_to_drain(stor_device); + + return SUCCESS; +} + +static bool storvsc_scsi_cmd_ok(struct scsi_cmnd *scmnd) +{ + bool allowed = true; + u8 scsi_op = scmnd->cmnd[0]; + + switch (scsi_op) { + /* + * smartd sends this command and the host does not handle + * this. So, don't send it. + */ + case SET_WINDOW: + scmnd->result = ILLEGAL_REQUEST << 16; + allowed = false; + break; + default: + break; + } + return allowed; +} + +static int storvsc_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *scmnd) +{ + int ret; + struct hv_host_device *host_dev = shost_priv(host); + struct hv_device *dev = host_dev->dev; + struct storvsc_cmd_request *cmd_request; + unsigned int request_size = 0; + int i; + struct scatterlist *sgl; + unsigned int sg_count = 0; + struct vmscsi_request *vm_srb; + struct stor_mem_pools *memp = scmnd->device->hostdata; + + if (!storvsc_scsi_cmd_ok(scmnd)) { + scmnd->scsi_done(scmnd); + return 0; + } + + request_size = sizeof(struct storvsc_cmd_request); + + cmd_request = mempool_alloc(memp->request_mempool, + GFP_ATOMIC); + + /* + * We might be invoked in an interrupt context; hence + * mempool_alloc() can fail. + */ + if (!cmd_request) + return SCSI_MLQUEUE_DEVICE_BUSY; + + memset(cmd_request, 0, sizeof(struct storvsc_cmd_request)); + + /* Setup the cmd request */ + cmd_request->cmd = scmnd; + + scmnd->host_scribble = (unsigned char *)cmd_request; + + vm_srb = &cmd_request->vstor_packet.vm_srb; + + + /* Build the SRB */ + switch (scmnd->sc_data_direction) { + case DMA_TO_DEVICE: + vm_srb->data_in = WRITE_TYPE; + break; + case DMA_FROM_DEVICE: + vm_srb->data_in = READ_TYPE; + break; + default: + vm_srb->data_in = UNKNOWN_TYPE; + break; + } + + + vm_srb->port_number = host_dev->port; + vm_srb->path_id = scmnd->device->channel; + vm_srb->target_id = scmnd->device->id; + vm_srb->lun = scmnd->device->lun; + + vm_srb->cdb_length = scmnd->cmd_len; + + memcpy(vm_srb->cdb, scmnd->cmnd, vm_srb->cdb_length); + + cmd_request->sense_buffer = scmnd->sense_buffer; + + + cmd_request->data_buffer.len = scsi_bufflen(scmnd); + if (scsi_sg_count(scmnd)) { + sgl = (struct scatterlist *)scsi_sglist(scmnd); + sg_count = scsi_sg_count(scmnd); + + /* check if we need to bounce the sgl */ + if (do_bounce_buffer(sgl, scsi_sg_count(scmnd)) != -1) { + cmd_request->bounce_sgl = + create_bounce_buffer(sgl, scsi_sg_count(scmnd), + scsi_bufflen(scmnd), + vm_srb->data_in); + if (!cmd_request->bounce_sgl) { + ret = SCSI_MLQUEUE_HOST_BUSY; + goto queue_error; + } + + cmd_request->bounce_sgl_count = + ALIGN(scsi_bufflen(scmnd), PAGE_SIZE) >> + PAGE_SHIFT; + + if (vm_srb->data_in == WRITE_TYPE) + copy_to_bounce_buffer(sgl, + cmd_request->bounce_sgl, + scsi_sg_count(scmnd)); + + sgl = cmd_request->bounce_sgl; + sg_count = cmd_request->bounce_sgl_count; + } + + cmd_request->data_buffer.offset = sgl[0].offset; + + for (i = 0; i < sg_count; i++) + cmd_request->data_buffer.pfn_array[i] = + page_to_pfn(sg_page((&sgl[i]))); + + } else if (scsi_sglist(scmnd)) { + cmd_request->data_buffer.offset = + virt_to_phys(scsi_sglist(scmnd)) & (PAGE_SIZE-1); + cmd_request->data_buffer.pfn_array[0] = + virt_to_phys(scsi_sglist(scmnd)) >> PAGE_SHIFT; + } + + /* Invokes the vsc to start an IO */ + ret = storvsc_do_io(dev, cmd_request); + + if (ret == -EAGAIN) { + /* no more space */ + + if (cmd_request->bounce_sgl_count) { + destroy_bounce_buffer(cmd_request->bounce_sgl, + cmd_request->bounce_sgl_count); + + ret = SCSI_MLQUEUE_DEVICE_BUSY; + goto queue_error; + } + } + + return 0; + +queue_error: + mempool_free(cmd_request, memp->request_mempool); + scmnd->host_scribble = NULL; + return ret; +} + +static struct scsi_host_template scsi_driver = { + .module = THIS_MODULE, + .name = "storvsc_host_t", + .bios_param = storvsc_get_chs, + .queuecommand = storvsc_queuecommand, + .eh_host_reset_handler = storvsc_host_reset_handler, + .slave_alloc = storvsc_device_alloc, + .slave_destroy = storvsc_device_destroy, + .slave_configure = storvsc_device_configure, + .cmd_per_lun = 1, + /* 64 max_queue * 1 target */ + .can_queue = STORVSC_MAX_IO_REQUESTS*STORVSC_MAX_TARGETS, + .this_id = -1, + /* no use setting to 0 since ll_blk_rw reset it to 1 */ + /* currently 32 */ + .sg_tablesize = MAX_MULTIPAGE_BUFFER_COUNT, + .use_clustering = DISABLE_CLUSTERING, + /* Make sure we dont get a sg segment crosses a page boundary */ + .dma_boundary = PAGE_SIZE-1, +}; + +enum { + SCSI_GUID, + IDE_GUID, +}; + +static const struct hv_vmbus_device_id id_table[] = { + /* SCSI guid */ + { VMBUS_DEVICE(0xd9, 0x63, 0x61, 0xba, 0xa1, 0x04, 0x29, 0x4d, + 0xb6, 0x05, 0x72, 0xe2, 0xff, 0xb1, 0xdc, 0x7f) + .driver_data = SCSI_GUID }, + /* IDE guid */ + { VMBUS_DEVICE(0x32, 0x26, 0x41, 0x32, 0xcb, 0x86, 0xa2, 0x44, + 0x9b, 0x5c, 0x50, 0xd1, 0x41, 0x73, 0x54, 0xf5) + .driver_data = IDE_GUID }, + { }, +}; + +MODULE_DEVICE_TABLE(vmbus, id_table); + +static int storvsc_probe(struct hv_device *device, + const struct hv_vmbus_device_id *dev_id) +{ + int ret; + struct Scsi_Host *host; + struct hv_host_device *host_dev; + bool dev_is_ide = ((dev_id->driver_data == IDE_GUID) ? true : false); + int target = 0; + struct storvsc_device *stor_device; + + host = scsi_host_alloc(&scsi_driver, + sizeof(struct hv_host_device)); + if (!host) + return -ENOMEM; + + host_dev = shost_priv(host); + memset(host_dev, 0, sizeof(struct hv_host_device)); + + host_dev->port = host->host_no; + host_dev->dev = device; + + + stor_device = kzalloc(sizeof(struct storvsc_device), GFP_KERNEL); + if (!stor_device) { + ret = -ENOMEM; + goto err_out0; + } + + stor_device->destroy = false; + init_waitqueue_head(&stor_device->waiting_to_drain); + stor_device->device = device; + stor_device->host = host; + hv_set_drvdata(device, stor_device); + + stor_device->port_number = host->host_no; + ret = storvsc_connect_to_vsp(device, storvsc_ringbuffer_size); + if (ret) + goto err_out1; + + host_dev->path = stor_device->path_id; + host_dev->target = stor_device->target_id; + + /* max # of devices per target */ + host->max_lun = STORVSC_MAX_LUNS_PER_TARGET; + /* max # of targets per channel */ + host->max_id = STORVSC_MAX_TARGETS; + /* max # of channels */ + host->max_channel = STORVSC_MAX_CHANNELS - 1; + /* max cmd length */ + host->max_cmd_len = STORVSC_MAX_CMD_LEN; + + /* Register the HBA and start the scsi bus scan */ + ret = scsi_add_host(host, &device->device); + if (ret != 0) + goto err_out2; + + if (!dev_is_ide) { + scsi_scan_host(host); + } else { + target = (device->dev_instance.b[5] << 8 | + device->dev_instance.b[4]); + ret = scsi_add_device(host, 0, target, 0); + if (ret) { + scsi_remove_host(host); + goto err_out2; + } + } + return 0; + +err_out2: + /* + * Once we have connected with the host, we would need to + * to invoke storvsc_dev_remove() to rollback this state and + * this call also frees up the stor_device; hence the jump around + * err_out1 label. + */ + storvsc_dev_remove(device); + goto err_out0; + +err_out1: + kfree(stor_device); + +err_out0: + scsi_host_put(host); + return ret; +} + +static int storvsc_remove(struct hv_device *dev) +{ + struct storvsc_device *stor_device = hv_get_drvdata(dev); + struct Scsi_Host *host = stor_device->host; + + scsi_remove_host(host); + storvsc_dev_remove(dev); + scsi_host_put(host); + + return 0; +} + +static struct hv_driver storvsc_drv = { + .name = KBUILD_MODNAME, + .id_table = id_table, + .probe = storvsc_probe, + .remove = storvsc_remove, +}; + +static int __init storvsc_drv_init(void) +{ + u32 max_outstanding_req_per_channel; + + /* + * Divide the ring buffer data size (which is 1 page less + * than the ring buffer size since that page is reserved for + * the ring buffer indices) by the max request size (which is + * vmbus_channel_packet_multipage_buffer + struct vstor_packet + u64) + */ + max_outstanding_req_per_channel = + ((storvsc_ringbuffer_size - PAGE_SIZE) / + ALIGN(MAX_MULTIPAGE_BUFFER_PACKET + + sizeof(struct vstor_packet) + sizeof(u64), + sizeof(u64))); + + if (max_outstanding_req_per_channel < + STORVSC_MAX_IO_REQUESTS) + return -EINVAL; + + return vmbus_driver_register(&storvsc_drv); +} + +static void __exit storvsc_drv_exit(void) +{ + vmbus_driver_unregister(&storvsc_drv); +} + +MODULE_LICENSE("GPL"); +MODULE_VERSION(HV_DRV_VERSION); +MODULE_DESCRIPTION("Microsoft Hyper-V virtual storage driver"); +module_init(storvsc_drv_init); +module_exit(storvsc_drv_exit); --- linux-3.2.0.orig/drivers/scsi/Kconfig +++ linux-3.2.0/drivers/scsi/Kconfig @@ -662,6 +662,13 @@ To compile this driver as a module, choose M here: the module will be called vmw_pvscsi. +config HYPERV_STORAGE + tristate "Microsoft Hyper-V virtual storage driver" + depends on SCSI && HYPERV + default HYPERV + help + Select this option to enable the Hyper-V virtual storage driver. + config LIBFC tristate "LibFC module" select SCSI_FC_ATTRS --- linux-3.2.0.orig/drivers/scsi/scsi_scan.c +++ linux-3.2.0/drivers/scsi/scsi_scan.c @@ -1815,6 +1815,7 @@ } spin_unlock(&async_scan_lock); + scsi_autopm_put_host(shost); scsi_host_put(shost); kfree(data); } @@ -1841,7 +1842,6 @@ do_scsi_scan_host(shost); scsi_finish_async_scan(data); - scsi_autopm_put_host(shost); return 0; } @@ -1869,7 +1869,7 @@ p = kthread_run(do_scan_async, data, "scsi_scan_%d", shost->host_no); if (IS_ERR(p)) do_scan_async(data); - /* scsi_autopm_put_host(shost) is called in do_scan_async() */ + /* scsi_autopm_put_host(shost) is called in scsi_finish_async_scan() */ } EXPORT_SYMBOL(scsi_scan_host); --- linux-3.2.0.orig/drivers/scsi/Makefile +++ linux-3.2.0/drivers/scsi/Makefile @@ -142,6 +142,7 @@ obj-$(CONFIG_BE2ISCSI) += libiscsi.o be2iscsi/ obj-$(CONFIG_SCSI_PMCRAID) += pmcraid.o obj-$(CONFIG_VMWARE_PVSCSI) += vmw_pvscsi.o +obj-$(CONFIG_HYPERV_STORAGE) += hv_storvsc.o obj-$(CONFIG_ARM) += arm/ @@ -170,6 +171,8 @@ scsi_mod-y += scsi_trace.o scsi_mod-$(CONFIG_PM) += scsi_pm.o +hv_storvsc-y := storvsc_drv.o + scsi_tgt-y += scsi_tgt_lib.o scsi_tgt_if.o sd_mod-objs := sd.o --- linux-3.2.0.orig/drivers/scsi/scsi_pm.c +++ linux-3.2.0/drivers/scsi/scsi_pm.c @@ -7,6 +7,7 @@ #include #include +#include #include #include @@ -69,6 +70,19 @@ return err; } +static int scsi_bus_prepare(struct device *dev) +{ + if (scsi_is_sdev_device(dev)) { + /* sd probing uses async_schedule. Wait until it finishes. */ + async_synchronize_full(); + + } else if (scsi_is_host_device(dev)) { + /* Wait until async scanning is finished */ + scsi_complete_async_scans(); + } + return 0; +} + static int scsi_bus_suspend(struct device *dev) { return scsi_bus_suspend_common(dev, PMSG_SUSPEND); @@ -87,6 +101,7 @@ #else /* CONFIG_PM_SLEEP */ #define scsi_bus_resume_common NULL +#define scsi_bus_prepare NULL #define scsi_bus_suspend NULL #define scsi_bus_freeze NULL #define scsi_bus_poweroff NULL @@ -195,6 +210,7 @@ #endif /* CONFIG_PM_RUNTIME */ const struct dev_pm_ops scsi_bus_pm_ops = { + .prepare = scsi_bus_prepare, .suspend = scsi_bus_suspend, .resume = scsi_bus_resume_common, .freeze = scsi_bus_freeze, --- linux-3.2.0.orig/drivers/scsi/hpsa.c +++ linux-3.2.0/drivers/scsi/hpsa.c @@ -1674,30 +1674,26 @@ if (is_logical_dev_addr_mode(lunaddrbytes)) { /* logical device */ - if (unlikely(is_scsi_rev_5(h))) { - /* p1210m, logical drives lun assignments - * match SCSI REPORT LUNS data. + lunid = le32_to_cpu(*((__le32 *) lunaddrbytes)); + if (is_msa2xxx(h, device)) { + /* msa2xxx way, put logicals on bus 1 + * and match target/lun numbers box + * reports. */ - lunid = le32_to_cpu(*((__le32 *) lunaddrbytes)); - *bus = 0; - *target = 0; - *lun = (lunid & 0x3fff) + 1; + *bus = 1; + *target = (lunid >> 16) & 0x3fff; + *lun = lunid & 0x00ff; } else { - /* not p1210m... */ - lunid = le32_to_cpu(*((__le32 *) lunaddrbytes)); - if (is_msa2xxx(h, device)) { - /* msa2xxx way, put logicals on bus 1 - * and match target/lun numbers box - * reports. - */ - *bus = 1; - *target = (lunid >> 16) & 0x3fff; - *lun = lunid & 0x00ff; + if (likely(is_scsi_rev_5(h))) { + /* All current smart arrays (circa 2011) */ + *bus = 0; + *target = 0; + *lun = (lunid & 0x3fff) + 1; } else { - /* Traditional smart array way. */ + /* Traditional old smart array way. */ *bus = 0; - *lun = 0; *target = lunid & 0x3fff; + *lun = 0; } } } else { @@ -4072,10 +4068,10 @@ if (h->msix_vector || h->msi_vector) rc = request_irq(h->intr[h->intr_mode], msixhandler, - IRQF_DISABLED, h->devname, h); + 0, h->devname, h); else rc = request_irq(h->intr[h->intr_mode], intxhandler, - IRQF_DISABLED, h->devname, h); + IRQF_SHARED, h->devname, h); if (rc) { dev_err(&h->pdev->dev, "unable to get irq %d for %s\n", h->intr[h->intr_mode], h->devname); --- linux-3.2.0.orig/drivers/scsi/sd.c +++ linux-3.2.0/drivers/scsi/sd.c @@ -1074,6 +1074,10 @@ SCSI_LOG_IOCTL(1, sd_printk(KERN_INFO, sdkp, "sd_ioctl: disk=%s, " "cmd=0x%x\n", disk->disk_name, cmd)); + error = scsi_verify_blk_ioctl(bdev, cmd); + if (error < 0) + return error; + /* * If we are in the middle of error recovery, don't let anyone * else try and use this device. Also, if error recovery fails, it @@ -1096,7 +1100,7 @@ error = scsi_ioctl(sdp, cmd, p); break; default: - error = scsi_cmd_ioctl(disk->queue, disk, mode, cmd, p); + error = scsi_cmd_blk_ioctl(bdev, mode, cmd, p); if (error != -ENOTTY) break; error = scsi_ioctl(sdp, cmd, p); @@ -1266,6 +1270,11 @@ unsigned int cmd, unsigned long arg) { struct scsi_device *sdev = scsi_disk(bdev->bd_disk)->device; + int ret; + + ret = scsi_verify_blk_ioctl(bdev, cmd); + if (ret < 0) + return -ENOIOCTLCMD; /* * If we are in the middle of error recovery, don't let anyone @@ -1277,8 +1286,6 @@ return -ENODEV; if (sdev->host->hostt->compat_ioctl) { - int ret; - ret = sdev->host->hostt->compat_ioctl(sdev, cmd, (void __user *)arg); return ret; --- linux-3.2.0.orig/drivers/scsi/isci/init.c +++ linux-3.2.0/drivers/scsi/isci/init.c @@ -465,7 +465,7 @@ if (!orom) orom = isci_request_oprom(pdev); - for (i = 0; orom && i < ARRAY_SIZE(orom->ctrl); i++) { + for (i = 0; orom && i < num_controllers(pdev); i++) { if (sci_oem_parameters_validate(&orom->ctrl[i])) { dev_warn(&pdev->dev, "[%d]: invalid oem parameters detected, falling back to firmware\n", i); --- linux-3.2.0.orig/drivers/scsi/mpt2sas/mpt2sas_scsih.c +++ linux-3.2.0/drivers/scsi/mpt2sas/mpt2sas_scsih.c @@ -1007,8 +1007,8 @@ spin_lock_irqsave(&ioc->scsi_lookup_lock, flags); if (list_empty(&ioc->free_chain_list)) { spin_unlock_irqrestore(&ioc->scsi_lookup_lock, flags); - printk(MPT2SAS_WARN_FMT "chain buffers not available\n", - ioc->name); + dfailprintk(ioc, printk(MPT2SAS_WARN_FMT "chain buffers not " + "available\n", ioc->name)); return NULL; } chain_req = list_entry(ioc->free_chain_list.next, @@ -6714,6 +6714,7 @@ } else sas_target_priv_data = NULL; raid_device->responding = 1; + spin_unlock_irqrestore(&ioc->raid_device_lock, flags); starget_printk(KERN_INFO, raid_device->starget, "handle(0x%04x), wwid(0x%016llx)\n", handle, (unsigned long long)raid_device->wwid); @@ -6724,16 +6725,16 @@ */ _scsih_init_warpdrive_properties(ioc, raid_device); if (raid_device->handle == handle) - goto out; + return; printk(KERN_INFO "\thandle changed from(0x%04x)!!!\n", raid_device->handle); raid_device->handle = handle; if (sas_target_priv_data) sas_target_priv_data->handle = handle; - goto out; + return; } } - out: + spin_unlock_irqrestore(&ioc->raid_device_lock, flags); } @@ -8000,7 +8001,6 @@ goto out_attach_fail; } - scsi_scan_host(shost); if (ioc->is_warpdrive) { if (ioc->mfg_pg10_hide_flag == MFG_PAGE10_EXPOSE_ALL_DISKS) ioc->hide_drives = 0; @@ -8014,8 +8014,8 @@ } } else ioc->hide_drives = 0; + scsi_scan_host(shost); - _scsih_probe_devices(ioc); return 0; out_attach_fail: --- linux-3.2.0.orig/drivers/scsi/mpt2sas/mpt2sas_base.c +++ linux-3.2.0/drivers/scsi/mpt2sas/mpt2sas_base.c @@ -65,6 +65,8 @@ #define FAULT_POLLING_INTERVAL 1000 /* in milliseconds */ +#define MAX_HBA_QUEUE_DEPTH 30000 +#define MAX_CHAIN_DEPTH 100000 static int max_queue_depth = -1; module_param(max_queue_depth, int, 0); MODULE_PARM_DESC(max_queue_depth, " max controller queue depth "); @@ -2311,8 +2313,6 @@ } if (ioc->chain_dma_pool) pci_pool_destroy(ioc->chain_dma_pool); - } - if (ioc->chain_lookup) { free_pages((ulong)ioc->chain_lookup, ioc->chain_pages); ioc->chain_lookup = NULL; } @@ -2330,9 +2330,7 @@ _base_allocate_memory_pools(struct MPT2SAS_ADAPTER *ioc, int sleep_flag) { struct mpt2sas_facts *facts; - u32 queue_size, queue_diff; u16 max_sge_elements; - u16 num_of_reply_frames; u16 chains_needed_per_io; u32 sz, total_sz, reply_post_free_sz; u32 retry_sz; @@ -2359,7 +2357,8 @@ max_request_credit = (max_queue_depth < facts->RequestCredit) ? max_queue_depth : facts->RequestCredit; else - max_request_credit = facts->RequestCredit; + max_request_credit = min_t(u16, facts->RequestCredit, + MAX_HBA_QUEUE_DEPTH); ioc->hba_queue_depth = max_request_credit; ioc->hi_priority_depth = facts->HighPriorityCredit; @@ -2400,50 +2399,25 @@ } ioc->chains_needed_per_io = chains_needed_per_io; - /* reply free queue sizing - taking into account for events */ - num_of_reply_frames = ioc->hba_queue_depth + 32; - - /* number of replies frames can't be a multiple of 16 */ - /* decrease number of reply frames by 1 */ - if (!(num_of_reply_frames % 16)) - num_of_reply_frames--; - - /* calculate number of reply free queue entries - * (must be multiple of 16) - */ - - /* (we know reply_free_queue_depth is not a multiple of 16) */ - queue_size = num_of_reply_frames; - queue_size += 16 - (queue_size % 16); - ioc->reply_free_queue_depth = queue_size; - - /* reply descriptor post queue sizing */ - /* this size should be the number of request frames + number of reply - * frames - */ + /* reply free queue sizing - taking into account for 64 FW events */ + ioc->reply_free_queue_depth = ioc->hba_queue_depth + 64; - queue_size = ioc->hba_queue_depth + num_of_reply_frames + 1; - /* round up to 16 byte boundary */ - if (queue_size % 16) - queue_size += 16 - (queue_size % 16); - - /* check against IOC maximum reply post queue depth */ - if (queue_size > facts->MaxReplyDescriptorPostQueueDepth) { - queue_diff = queue_size - - facts->MaxReplyDescriptorPostQueueDepth; - - /* round queue_diff up to multiple of 16 */ - if (queue_diff % 16) - queue_diff += 16 - (queue_diff % 16); - - /* adjust hba_queue_depth, reply_free_queue_depth, - * and queue_size - */ - ioc->hba_queue_depth -= (queue_diff / 2); - ioc->reply_free_queue_depth -= (queue_diff / 2); - queue_size = facts->MaxReplyDescriptorPostQueueDepth; + /* align the reply post queue on the next 16 count boundary */ + if (!ioc->reply_free_queue_depth % 16) + ioc->reply_post_queue_depth = ioc->reply_free_queue_depth + 16; + else + ioc->reply_post_queue_depth = ioc->reply_free_queue_depth + + 32 - (ioc->reply_free_queue_depth % 16); + if (ioc->reply_post_queue_depth > + facts->MaxReplyDescriptorPostQueueDepth) { + ioc->reply_post_queue_depth = min_t(u16, + (facts->MaxReplyDescriptorPostQueueDepth - + (facts->MaxReplyDescriptorPostQueueDepth % 16)), + (ioc->hba_queue_depth - (ioc->hba_queue_depth % 16))); + ioc->reply_free_queue_depth = ioc->reply_post_queue_depth - 16; + ioc->hba_queue_depth = ioc->reply_free_queue_depth - 64; } - ioc->reply_post_queue_depth = queue_size; + dinitprintk(ioc, printk(MPT2SAS_INFO_FMT "scatter gather: " "sge_in_main_msg(%d), sge_per_chain(%d), sge_per_io(%d), " @@ -2529,15 +2503,12 @@ "depth(%d)\n", ioc->name, ioc->request, ioc->scsiio_depth)); - /* loop till the allocation succeeds */ - do { - sz = ioc->chain_depth * sizeof(struct chain_tracker); - ioc->chain_pages = get_order(sz); - ioc->chain_lookup = (struct chain_tracker *)__get_free_pages( - GFP_KERNEL, ioc->chain_pages); - if (ioc->chain_lookup == NULL) - ioc->chain_depth -= 100; - } while (ioc->chain_lookup == NULL); + ioc->chain_depth = min_t(u32, ioc->chain_depth, MAX_CHAIN_DEPTH); + sz = ioc->chain_depth * sizeof(struct chain_tracker); + ioc->chain_pages = get_order(sz); + + ioc->chain_lookup = (struct chain_tracker *)__get_free_pages( + GFP_KERNEL, ioc->chain_pages); ioc->chain_dma_pool = pci_pool_create("chain pool", ioc->pdev, ioc->request_sz, 16, 0); if (!ioc->chain_dma_pool) { @@ -3303,7 +3274,7 @@ } pfacts = &ioc->pfacts[port]; - memset(pfacts, 0, sizeof(Mpi2PortFactsReply_t)); + memset(pfacts, 0, sizeof(struct mpt2sas_port_facts)); pfacts->PortNumber = mpi_reply.PortNumber; pfacts->VP_ID = mpi_reply.VP_ID; pfacts->VF_ID = mpi_reply.VF_ID; @@ -3345,7 +3316,7 @@ } facts = &ioc->facts; - memset(facts, 0, sizeof(Mpi2IOCFactsReply_t)); + memset(facts, 0, sizeof(struct mpt2sas_facts)); facts->MsgVersion = le16_to_cpu(mpi_reply.MsgVersion); facts->HeaderVersion = le16_to_cpu(mpi_reply.HeaderVersion); facts->VP_ID = mpi_reply.VP_ID; @@ -4062,7 +4033,8 @@ ioc->reply_free[i] = cpu_to_le32(reply_address); /* initialize reply queues */ - _base_assign_reply_queues(ioc); + if (ioc->is_driver_loading) + _base_assign_reply_queues(ioc); /* initialize Reply Post Free Queue */ reply_post_free = (long)ioc->reply_post_free; @@ -4110,24 +4082,17 @@ if (ioc->is_driver_loading) { - - - - ioc->wait_for_discovery_to_complete = - _base_determine_wait_on_discovery(ioc); - return r; /* scan_start and scan_finished support */ - } - - - if (ioc->wait_for_discovery_to_complete && ioc->is_warpdrive) { - if (ioc->manu_pg10.OEMIdentifier == 0x80) { + if (ioc->is_warpdrive && ioc->manu_pg10.OEMIdentifier + == 0x80) { hide_flag = (u8) (ioc->manu_pg10.OEMSpecificFlags0 & MFG_PAGE10_HIDE_SSDS_MASK); if (hide_flag != MFG_PAGE10_HIDE_SSDS_MASK) ioc->mfg_pg10_hide_flag = hide_flag; } + ioc->wait_for_discovery_to_complete = + _base_determine_wait_on_discovery(ioc); + return r; /* scan_start and scan_finished support */ } - r = _base_send_port_enable(ioc, sleep_flag); if (r) return r; @@ -4228,7 +4193,7 @@ goto out_free_resources; ioc->pfacts = kcalloc(ioc->facts.NumberOfPorts, - sizeof(Mpi2PortFactsReply_t), GFP_KERNEL); + sizeof(struct mpt2sas_port_facts), GFP_KERNEL); if (!ioc->pfacts) { r = -ENOMEM; goto out_free_resources; --- linux-3.2.0.orig/drivers/scsi/libsas/sas_expander.c +++ linux-3.2.0/drivers/scsi/libsas/sas_expander.c @@ -192,7 +192,14 @@ phy->attached_sata_ps = dr->attached_sata_ps; phy->attached_iproto = dr->iproto << 1; phy->attached_tproto = dr->tproto << 1; - memcpy(phy->attached_sas_addr, dr->attached_sas_addr, SAS_ADDR_SIZE); + /* help some expanders that fail to zero sas_address in the 'no + * device' case + */ + if (phy->attached_dev_type == NO_DEVICE || + phy->linkrate < SAS_LINK_RATE_1_5_GBPS) + memset(phy->attached_sas_addr, 0, SAS_ADDR_SIZE); + else + memcpy(phy->attached_sas_addr, dr->attached_sas_addr, SAS_ADDR_SIZE); phy->attached_phy_id = dr->attached_phy_id; phy->phy_change_count = dr->change_count; phy->routing_attr = dr->routing_attr; @@ -1643,9 +1650,17 @@ int phy_change_count = 0; res = sas_get_phy_change_count(dev, i, &phy_change_count); - if (res) - goto out; - else if (phy_change_count != ex->ex_phy[i].phy_change_count) { + switch (res) { + case SMP_RESP_PHY_VACANT: + case SMP_RESP_NO_PHY: + continue; + case SMP_RESP_FUNC_ACC: + break; + default: + return res; + } + + if (phy_change_count != ex->ex_phy[i].phy_change_count) { if (update) ex->ex_phy[i].phy_change_count = phy_change_count; @@ -1653,8 +1668,7 @@ return 0; } } -out: - return res; + return 0; } static int sas_get_ex_change_count(struct domain_device *dev, int *ecc) --- linux-3.2.0.orig/drivers/scsi/osd/osd_uld.c +++ linux-3.2.0/drivers/scsi/osd/osd_uld.c @@ -69,10 +69,10 @@ #ifndef SCSI_OSD_MAJOR # define SCSI_OSD_MAJOR 260 #endif -#define SCSI_OSD_MAX_MINOR 64 +#define SCSI_OSD_MAX_MINOR MINORMASK static const char osd_name[] = "osd"; -static const char *osd_version_string = "open-osd 0.2.0"; +static const char *osd_version_string = "open-osd 0.2.1"; MODULE_AUTHOR("Boaz Harrosh "); MODULE_DESCRIPTION("open-osd Upper-Layer-Driver osd.ko"); --- linux-3.2.0.orig/drivers/scsi/sym53c8xx_2/sym_glue.c +++ linux-3.2.0/drivers/scsi/sym53c8xx_2/sym_glue.c @@ -839,6 +839,10 @@ struct sym_lcb *lp = sym_lp(tp, sdev->lun); unsigned long flags; + /* if slave_alloc returned before allocating a sym_lcb, return */ + if (!lp) + return; + spin_lock_irqsave(np->s.host->host_lock, flags); if (lp->busy_itlq || lp->busy_itl) { --- linux-3.2.0.orig/drivers/usb/misc/usbsevseg.c +++ linux-3.2.0/drivers/usb/misc/usbsevseg.c @@ -24,7 +24,7 @@ #define VENDOR_ID 0x0fc5 #define PRODUCT_ID 0x1227 -#define MAXLEN 6 +#define MAXLEN 8 /* table of devices that work with this driver */ static const struct usb_device_id id_table[] = { --- linux-3.2.0.orig/drivers/usb/misc/yurex.c +++ linux-3.2.0/drivers/usb/misc/yurex.c @@ -99,9 +99,7 @@ usb_put_dev(dev->udev); if (dev->cntl_urb) { usb_kill_urb(dev->cntl_urb); - if (dev->cntl_req) - usb_free_coherent(dev->udev, YUREX_BUF_SIZE, - dev->cntl_req, dev->cntl_urb->setup_dma); + kfree(dev->cntl_req); if (dev->cntl_buffer) usb_free_coherent(dev->udev, YUREX_BUF_SIZE, dev->cntl_buffer, dev->cntl_urb->transfer_dma); @@ -234,9 +232,7 @@ } /* allocate buffer for control req */ - dev->cntl_req = usb_alloc_coherent(dev->udev, YUREX_BUF_SIZE, - GFP_KERNEL, - &dev->cntl_urb->setup_dma); + dev->cntl_req = kmalloc(YUREX_BUF_SIZE, GFP_KERNEL); if (!dev->cntl_req) { err("Could not allocate cntl_req"); goto error; @@ -286,7 +282,7 @@ usb_rcvintpipe(dev->udev, dev->int_in_endpointAddr), dev->int_buffer, YUREX_BUF_SIZE, yurex_interrupt, dev, 1); - dev->cntl_urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; + dev->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP; if (usb_submit_urb(dev->urb, GFP_KERNEL)) { retval = -EIO; err("Could not submitting URB"); --- linux-3.2.0.orig/drivers/usb/misc/usbtest.c +++ linux-3.2.0/drivers/usb/misc/usbtest.c @@ -1025,7 +1025,10 @@ case 13: /* short read, resembling case 10 */ req.wValue = cpu_to_le16((USB_DT_CONFIG << 8) | 0); /* last data packet "should" be DATA1, not DATA0 */ - len = 1024 - udev->descriptor.bMaxPacketSize0; + if (udev->speed == USB_SPEED_SUPER) + len = 1024 - 512; + else + len = 1024 - udev->descriptor.bMaxPacketSize0; expected = -EREMOTEIO; break; case 14: /* short read; try to fill the last packet */ @@ -1384,11 +1387,15 @@ static int halt_simple(struct usbtest_dev *dev) { - int ep; - int retval = 0; - struct urb *urb; + int ep; + int retval = 0; + struct urb *urb; + struct usb_device *udev = testdev_to_usbdev(dev); - urb = simple_alloc_urb(testdev_to_usbdev(dev), 0, 512); + if (udev->speed == USB_SPEED_SUPER) + urb = simple_alloc_urb(udev, 0, 1024); + else + urb = simple_alloc_urb(udev, 0, 512); if (urb == NULL) return -ENOMEM; --- linux-3.2.0.orig/drivers/usb/misc/isight_firmware.c +++ linux-3.2.0/drivers/usb/misc/isight_firmware.c @@ -55,8 +55,9 @@ ptr = firmware->data; + buf[0] = 0x01; if (usb_control_msg - (dev, usb_sndctrlpipe(dev, 0), 0xa0, 0x40, 0xe600, 0, "\1", 1, + (dev, usb_sndctrlpipe(dev, 0), 0xa0, 0x40, 0xe600, 0, buf, 1, 300) != 1) { printk(KERN_ERR "Failed to initialise isight firmware loader\n"); @@ -100,8 +101,9 @@ } } + buf[0] = 0x00; if (usb_control_msg - (dev, usb_sndctrlpipe(dev, 0), 0xa0, 0x40, 0xe600, 0, "\0", 1, + (dev, usb_sndctrlpipe(dev, 0), 0xa0, 0x40, 0xe600, 0, buf, 1, 300) != 1) { printk(KERN_ERR "isight firmware loading completion failed\n"); ret = -ENODEV; --- linux-3.2.0.orig/drivers/usb/dwc3/gadget.c +++ linux-3.2.0/drivers/usb/dwc3/gadget.c @@ -449,16 +449,16 @@ switch (usb_endpoint_type(desc)) { case USB_ENDPOINT_XFER_CONTROL: - strncat(dep->name, "-control", sizeof(dep->name)); + strlcat(dep->name, "-control", sizeof(dep->name)); break; case USB_ENDPOINT_XFER_ISOC: - strncat(dep->name, "-isoc", sizeof(dep->name)); + strlcat(dep->name, "-isoc", sizeof(dep->name)); break; case USB_ENDPOINT_XFER_BULK: - strncat(dep->name, "-bulk", sizeof(dep->name)); + strlcat(dep->name, "-bulk", sizeof(dep->name)); break; case USB_ENDPOINT_XFER_INT: - strncat(dep->name, "-int", sizeof(dep->name)); + strlcat(dep->name, "-int", sizeof(dep->name)); break; default: dev_err(dwc->dev, "invalid endpoint transfer type\n"); @@ -1405,7 +1405,7 @@ static void dwc3_gadget_start_isoc(struct dwc3 *dwc, struct dwc3_ep *dep, const struct dwc3_event_depevt *event) { - u32 uf; + u32 uf, mask; if (list_empty(&dep->request_list)) { dev_vdbg(dwc->dev, "ISOC ep %s run out for requests.\n", @@ -1413,16 +1413,10 @@ return; } - if (event->parameters) { - u32 mask; - - mask = ~(dep->interval - 1); - uf = event->parameters & mask; - /* 4 micro frames in the future */ - uf += dep->interval * 4; - } else { - uf = 0; - } + mask = ~(dep->interval - 1); + uf = event->parameters & mask; + /* 4 micro frames in the future */ + uf += dep->interval * 4; __dwc3_gadget_kick_transfer(dep, uf, 1); } --- linux-3.2.0.orig/drivers/usb/dwc3/ep0.c +++ linux-3.2.0/drivers/usb/dwc3/ep0.c @@ -149,20 +149,14 @@ direction = !!(dep->flags & DWC3_EP0_DIR_IN); - if (dwc->ep0state == EP0_STATUS_PHASE) { - type = dwc->three_stage_setup - ? DWC3_TRBCTL_CONTROL_STATUS3 - : DWC3_TRBCTL_CONTROL_STATUS2; - } else if (dwc->ep0state == EP0_DATA_PHASE) { - type = DWC3_TRBCTL_CONTROL_DATA; - } else { - /* should never happen */ - WARN_ON(1); + if (dwc->ep0state != EP0_DATA_PHASE) { + dev_WARN(dwc->dev, "Unexpected pending request\n"); return 0; } ret = dwc3_ep0_start_trans(dwc, direction, - req->request.dma, req->request.length, type); + req->request.dma, req->request.length, + DWC3_TRBCTL_CONTROL_DATA); dep->flags &= ~(DWC3_EP_PENDING_REQUEST | DWC3_EP0_DIR_IN); } @@ -578,9 +572,10 @@ dwc->ep0_bounced = false; } else { transferred = ur->length - trb.length; - ur->actual += transferred; } + ur->actual += transferred; + if ((epnum & 1) && ur->actual < ur->length) { /* for some reason we did not get everything out */ --- linux-3.2.0.orig/drivers/usb/serial/cp210x.c +++ linux-3.2.0/drivers/usb/serial/cp210x.c @@ -39,6 +39,8 @@ struct usb_serial_port *port); static void cp210x_get_termios_port(struct usb_serial_port *port, unsigned int *cflagp, unsigned int *baudp); +static void cp210x_change_speed(struct tty_struct *, struct usb_serial_port *, + struct ktermios *); static void cp210x_set_termios(struct tty_struct *, struct usb_serial_port *, struct ktermios*); static int cp210x_tiocmget(struct tty_struct *); @@ -47,6 +49,7 @@ unsigned int, unsigned int); static void cp210x_break_ctl(struct tty_struct *, int); static int cp210x_startup(struct usb_serial *); +static void cp210x_release(struct usb_serial *); static void cp210x_dtr_rts(struct usb_serial_port *p, int on); static int debug; @@ -92,6 +95,7 @@ { USB_DEVICE(0x10C4, 0x818B) }, /* AVIT Research USB to TTL */ { USB_DEVICE(0x10C4, 0x819F) }, /* MJS USB Toslink Switcher */ { USB_DEVICE(0x10C4, 0x81A6) }, /* ThinkOptics WavIt */ + { USB_DEVICE(0x10C4, 0x81A9) }, /* Multiplex RC Interface */ { USB_DEVICE(0x10C4, 0x81AC) }, /* MSD Dash Hawk */ { USB_DEVICE(0x10C4, 0x81AD) }, /* INSYS USB Modem */ { USB_DEVICE(0x10C4, 0x81C8) }, /* Lipowsky Industrie Elektronik GmbH, Baby-JTAG */ @@ -118,6 +122,8 @@ { USB_DEVICE(0x10C4, 0x8665) }, /* AC-Services OBD-IF */ { USB_DEVICE(0x10C4, 0xEA60) }, /* Silicon Labs factory default */ { USB_DEVICE(0x10C4, 0xEA61) }, /* Silicon Labs factory default */ + { USB_DEVICE(0x10C4, 0xEA70) }, /* Silicon Labs factory default */ + { USB_DEVICE(0x10C4, 0xEA80) }, /* Silicon Labs factory default */ { USB_DEVICE(0x10C4, 0xEA71) }, /* Infinity GPS-MIC-1 Radio Monophone */ { USB_DEVICE(0x10C4, 0xF001) }, /* Elan Digital Systems USBscope50 */ { USB_DEVICE(0x10C4, 0xF002) }, /* Elan Digital Systems USBwave12 */ @@ -133,16 +139,23 @@ { USB_DEVICE(0x16DC, 0x0011) }, /* W-IE-NE-R Plein & Baus GmbH RCM Remote Control for MARATON Power Supply */ { USB_DEVICE(0x16DC, 0x0012) }, /* W-IE-NE-R Plein & Baus GmbH MPOD Multi Channel Power Supply */ { USB_DEVICE(0x16DC, 0x0015) }, /* W-IE-NE-R Plein & Baus GmbH CML Control, Monitoring and Data Logger */ + { USB_DEVICE(0x17A8, 0x0001) }, /* Kamstrup Optical Eye/3-wire */ + { USB_DEVICE(0x17A8, 0x0005) }, /* Kamstrup M-Bus Master MultiPort 250D */ { USB_DEVICE(0x17F4, 0xAAAA) }, /* Wavesense Jazz blood glucose meter */ { USB_DEVICE(0x1843, 0x0200) }, /* Vaisala USB Instrument Cable */ { USB_DEVICE(0x18EF, 0xE00F) }, /* ELV USB-I2C-Interface */ { USB_DEVICE(0x1BE3, 0x07A6) }, /* WAGO 750-923 USB Service Cable */ + { USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */ { USB_DEVICE(0x413C, 0x9500) }, /* DW700 GPS USB interface */ { } /* Terminating Entry */ }; MODULE_DEVICE_TABLE(usb, id_table); +struct cp210x_port_private { + __u8 bInterfaceNumber; +}; + static struct usb_driver cp210x_driver = { .name = "cp210x", .probe = usb_serial_probe, @@ -168,6 +181,7 @@ .tiocmget = cp210x_tiocmget, .tiocmset = cp210x_tiocmset, .attach = cp210x_startup, + .release = cp210x_release, .dtr_rts = cp210x_dtr_rts }; @@ -200,6 +214,8 @@ #define CP210X_EMBED_EVENTS 0x15 #define CP210X_GET_EVENTSTATE 0x16 #define CP210X_SET_CHARS 0x19 +#define CP210X_GET_BAUDRATE 0x1D +#define CP210X_SET_BAUDRATE 0x1E /* CP210X_IFC_ENABLE */ #define UART_ENABLE 0x0001 @@ -253,6 +269,7 @@ unsigned int *data, int size) { struct usb_serial *serial = port->serial; + struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); __le32 *buf; int result, i, length; @@ -268,7 +285,8 @@ /* Issue the request, attempting to read 'size' bytes */ result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), request, REQTYPE_DEVICE_TO_HOST, 0x0000, - 0, buf, size, 300); + port_priv->bInterfaceNumber, buf, size, + USB_CTRL_GET_TIMEOUT); /* Convert data into an array of integers */ for (i = 0; i < length; i++) @@ -296,6 +314,7 @@ unsigned int *data, int size) { struct usb_serial *serial = port->serial; + struct cp210x_port_private *port_priv = usb_get_serial_port_data(port); __le32 *buf; int result, i, length; @@ -317,12 +336,14 @@ result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), request, REQTYPE_HOST_TO_DEVICE, 0x0000, - 0, buf, size, 300); + port_priv->bInterfaceNumber, buf, size, + USB_CTRL_SET_TIMEOUT); } else { result = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0), request, REQTYPE_HOST_TO_DEVICE, data[0], - 0, NULL, 0, 300); + port_priv->bInterfaceNumber, NULL, 0, + USB_CTRL_SET_TIMEOUT); } kfree(buf); @@ -353,8 +374,8 @@ * Quantises the baud rate as per AN205 Table 1 */ static unsigned int cp210x_quantise_baudrate(unsigned int baud) { - if (baud <= 56) baud = 0; - else if (baud <= 300) baud = 300; + if (baud <= 300) + baud = 300; else if (baud <= 600) baud = 600; else if (baud <= 1200) baud = 1200; else if (baud <= 1800) baud = 1800; @@ -382,17 +403,15 @@ else if (baud <= 491520) baud = 460800; else if (baud <= 567138) baud = 500000; else if (baud <= 670254) baud = 576000; - else if (baud <= 1053257) baud = 921600; - else if (baud <= 1474560) baud = 1228800; - else if (baud <= 2457600) baud = 1843200; - else baud = 3686400; + else if (baud < 1000000) + baud = 921600; + else if (baud > 2000000) + baud = 2000000; return baud; } static int cp210x_open(struct tty_struct *tty, struct usb_serial_port *port) { - int result; - dbg("%s - port %d", __func__, port->number); if (cp210x_set_config_single(port, CP210X_IFC_ENABLE, UART_ENABLE)) { @@ -401,13 +420,14 @@ return -EPROTO; } - result = usb_serial_generic_open(tty, port); - if (result) - return result; - /* Configure the termios structure */ cp210x_get_termios(tty, port); - return 0; + + /* The baud rate must be initialised on cp2104 */ + if (tty) + cp210x_change_speed(tty, port, NULL); + + return usb_serial_generic_open(tty, port); } static void cp210x_close(struct usb_serial_port *port) @@ -459,10 +479,7 @@ dbg("%s - port %d", __func__, port->number); - cp210x_get_config(port, CP210X_GET_BAUDDIV, &baud, 2); - /* Convert to baudrate */ - if (baud) - baud = cp210x_quantise_baudrate((BAUD_RATE_GEN_FREQ + baud/2)/ baud); + cp210x_get_config(port, CP210X_GET_BAUDRATE, &baud, 4); dbg("%s - baud rate = %d", __func__, baud); *baudp = baud; @@ -576,11 +593,64 @@ *cflagp = cflag; } +/* + * CP2101 supports the following baud rates: + * + * 300, 600, 1200, 1800, 2400, 4800, 7200, 9600, 14400, 19200, 28800, + * 38400, 56000, 57600, 115200, 128000, 230400, 460800, 921600 + * + * CP2102 and CP2103 support the following additional rates: + * + * 4000, 16000, 51200, 64000, 76800, 153600, 250000, 256000, 500000, + * 576000 + * + * The device will map a requested rate to a supported one, but the result + * of requests for rates greater than 1053257 is undefined (see AN205). + * + * CP2104, CP2105 and CP2110 support most rates up to 2M, 921k and 1M baud, + * respectively, with an error less than 1%. The actual rates are determined + * by + * + * div = round(freq / (2 x prescale x request)) + * actual = freq / (2 x prescale x div) + * + * For CP2104 and CP2105 freq is 48Mhz and prescale is 4 for request <= 365bps + * or 1 otherwise. + * For CP2110 freq is 24Mhz and prescale is 4 for request <= 300bps or 1 + * otherwise. + */ +static void cp210x_change_speed(struct tty_struct *tty, + struct usb_serial_port *port, struct ktermios *old_termios) +{ + u32 baud; + + baud = tty->termios->c_ospeed; + + /* This maps the requested rate to a rate valid on cp2102 or cp2103, + * or to an arbitrary rate in [1M,2M]. + * + * NOTE: B0 is not implemented. + */ + baud = cp210x_quantise_baudrate(baud); + + dbg("%s - setting baud rate to %u", __func__, baud); + if (cp210x_set_config(port, CP210X_SET_BAUDRATE, &baud, + sizeof(baud))) { + dev_warn(&port->dev, "failed to set baud rate to %u\n", baud); + if (old_termios) + baud = old_termios->c_ospeed; + else + baud = 9600; + } + + tty_encode_baud_rate(tty, baud, baud); +} + static void cp210x_set_termios(struct tty_struct *tty, struct usb_serial_port *port, struct ktermios *old_termios) { unsigned int cflag, old_cflag; - unsigned int baud = 0, bits; + unsigned int bits; unsigned int modem_ctl[4]; dbg("%s - port %d", __func__, port->number); @@ -591,20 +661,9 @@ tty->termios->c_cflag &= ~CMSPAR; cflag = tty->termios->c_cflag; old_cflag = old_termios->c_cflag; - baud = cp210x_quantise_baudrate(tty_get_baud_rate(tty)); - /* If the baud rate is to be updated*/ - if (baud != tty_termios_baud_rate(old_termios) && baud != 0) { - dbg("%s - Setting baud rate to %d baud", __func__, - baud); - if (cp210x_set_config_single(port, CP210X_SET_BAUDDIV, - ((BAUD_RATE_GEN_FREQ + baud/2) / baud))) { - dbg("Baud rate requested not supported by device"); - baud = tty_termios_baud_rate(old_termios); - } - } - /* Report back the resulting baud rate */ - tty_encode_baud_rate(tty, baud, baud); + if (tty->termios->c_ospeed != old_termios->c_ospeed) + cp210x_change_speed(tty, port, old_termios); /* If the number of data bits is to be updated */ if ((cflag & CSIZE) != (old_cflag & CSIZE)) { @@ -784,11 +843,39 @@ static int cp210x_startup(struct usb_serial *serial) { + struct cp210x_port_private *port_priv; + int i; + /* cp210x buffers behave strangely unless device is reset */ usb_reset_device(serial->dev); + + for (i = 0; i < serial->num_ports; i++) { + port_priv = kzalloc(sizeof(*port_priv), GFP_KERNEL); + if (!port_priv) + return -ENOMEM; + + memset(port_priv, 0x00, sizeof(*port_priv)); + port_priv->bInterfaceNumber = + serial->interface->cur_altsetting->desc.bInterfaceNumber; + + usb_set_serial_port_data(serial->port[i], port_priv); + } + return 0; } +static void cp210x_release(struct usb_serial *serial) +{ + struct cp210x_port_private *port_priv; + int i; + + for (i = 0; i < serial->num_ports; i++) { + port_priv = usb_get_serial_port_data(serial->port[i]); + kfree(port_priv); + usb_set_serial_port_data(serial->port[i], NULL); + } +} + static int __init cp210x_init(void) { int retval; --- linux-3.2.0.orig/drivers/usb/serial/ftdi_sio.c +++ linux-3.2.0/drivers/usb/serial/ftdi_sio.c @@ -75,7 +75,8 @@ unsigned long last_dtr_rts; /* saved modem control outputs */ struct async_icount icount; wait_queue_head_t delta_msr_wait; /* Used for TIOCMIWAIT */ - char prev_status, diff_status; /* Used for TIOCMIWAIT */ + char prev_status; /* Used for TIOCMIWAIT */ + bool dev_gone; /* Used to abort TIOCMIWAIT */ char transmit_empty; /* If transmitter is empty or not */ struct usb_serial_port *port; __u16 interface; /* FT2232C, FT2232H or FT4232H port interface @@ -188,6 +189,7 @@ .driver_info = (kernel_ulong_t)&ftdi_8u2232c_quirk }, { USB_DEVICE(FTDI_VID, FTDI_4232H_PID) }, { USB_DEVICE(FTDI_VID, FTDI_232H_PID) }, + { USB_DEVICE(FTDI_VID, FTDI_FTX_PID) }, { USB_DEVICE(FTDI_VID, FTDI_MICRO_CHAMELEON_PID) }, { USB_DEVICE(FTDI_VID, FTDI_RELAIS_PID) }, { USB_DEVICE(FTDI_VID, FTDI_OPENDCC_PID) }, @@ -536,6 +538,10 @@ { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_6_PID) }, { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_7_PID) }, { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803_8_PID) }, + { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803R_1_PID) }, + { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803R_2_PID) }, + { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803R_3_PID) }, + { USB_DEVICE(SEALEVEL_VID, SEALEVEL_2803R_4_PID) }, { USB_DEVICE(IDTECH_VID, IDTECH_IDT1221U_PID) }, { USB_DEVICE(OCT_VID, OCT_US101_PID) }, { USB_DEVICE(OCT_VID, OCT_DK201_PID) }, @@ -797,14 +803,18 @@ .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, { USB_DEVICE(ADI_VID, ADI_GNICEPLUS_PID), .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, + { USB_DEVICE(MICROCHIP_VID, MICROCHIP_USB_BOARD_PID) }, { USB_DEVICE(JETI_VID, JETI_SPC1201_PID) }, { USB_DEVICE(MARVELL_VID, MARVELL_SHEEVAPLUG_PID), .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, { USB_DEVICE(LARSENBRUSGAARD_VID, LB_ALTITRACK_PID) }, { USB_DEVICE(GN_OTOMETRICS_VID, AURICAL_USB_PID) }, + { USB_DEVICE(PI_VID, PI_E861_PID) }, { USB_DEVICE(BAYER_VID, BAYER_CONTOUR_CABLE_PID) }, { USB_DEVICE(FTDI_VID, MARVELL_OPENRD_PID), .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, + { USB_DEVICE(FTDI_VID, TI_XDS100V2_PID), + .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, { USB_DEVICE(FTDI_VID, HAMEG_HO820_PID) }, { USB_DEVICE(FTDI_VID, HAMEG_HO720_PID) }, { USB_DEVICE(FTDI_VID, HAMEG_HO730_PID) }, @@ -836,11 +846,16 @@ { USB_DEVICE(FTDI_VID, FTDI_SCIENCESCOPE_LOGBOOKML_PID) }, { USB_DEVICE(FTDI_VID, FTDI_SCIENCESCOPE_LS_LOGBOOK_PID) }, { USB_DEVICE(FTDI_VID, FTDI_SCIENCESCOPE_HS_LOGBOOK_PID) }, + { USB_DEVICE(FTDI_VID, FTDI_CINTERION_MC55I_PID) }, { USB_DEVICE(FTDI_VID, FTDI_DOTEC_PID) }, { USB_DEVICE(QIHARDWARE_VID, MILKYMISTONE_JTAGSERIAL_PID), .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, { USB_DEVICE(ST_VID, ST_STMCLT1030_PID), .driver_info = (kernel_ulong_t)&ftdi_stmclite_quirk }, + { USB_DEVICE(FTDI_VID, FTDI_RF_R106) }, + { USB_DEVICE(FTDI_VID, FTDI_DISTORTEC_JTAG_LOCK_PICK_PID), + .driver_info = (kernel_ulong_t)&ftdi_jtag_quirk }, + { USB_DEVICE(FTDI_VID, FTDI_LUMEL_PD12_PID) }, { }, /* Optional parameter entry */ { } /* Terminating entry */ }; @@ -863,7 +878,8 @@ [FT232RL] = "FT232RL", [FT2232H] = "FT2232H", [FT4232H] = "FT4232H", - [FT232H] = "FT232H" + [FT232H] = "FT232H", + [FTX] = "FT-X" }; @@ -1164,7 +1180,8 @@ break; case FT232BM: /* FT232BM chip */ case FT2232C: /* FT2232C chip */ - case FT232RL: + case FT232RL: /* FT232RL chip */ + case FTX: /* FT-X series */ if (baud <= 3000000) { __u16 product_id = le16_to_cpu( port->serial->dev->descriptor.idProduct); @@ -1333,8 +1350,7 @@ goto check_and_exit; } - if ((new_serial.baud_base != priv->baud_base) && - (new_serial.baud_base < 9600)) { + if (new_serial.baud_base != priv->baud_base) { mutex_unlock(&priv->cfg_lock); return -EINVAL; } @@ -1454,10 +1470,14 @@ } else if (version < 0x900) { /* Assume it's an FT232RL */ priv->chip_type = FT232RL; - } else { + } else if (version < 0x1000) { /* Assume it's an FT232H */ priv->chip_type = FT232H; + } else { + /* Assume it's an FT-X series device */ + priv->chip_type = FTX; } + dev_info(&udev->dev, "Detected %s\n", ftdi_chip_name[priv->chip_type]); } @@ -1585,7 +1605,8 @@ priv->chip_type == FT232RL || priv->chip_type == FT2232H || priv->chip_type == FT4232H || - priv->chip_type == FT232H)) { + priv->chip_type == FT232H || + priv->chip_type == FTX)) { retval = device_create_file(&port->dev, &dev_attr_latency_timer); } @@ -1607,7 +1628,8 @@ priv->chip_type == FT232RL || priv->chip_type == FT2232H || priv->chip_type == FT4232H || - priv->chip_type == FT232H) { + priv->chip_type == FT232H || + priv->chip_type == FTX) { device_remove_file(&port->dev, &dev_attr_latency_timer); } } @@ -1659,6 +1681,7 @@ init_waitqueue_head(&priv->delta_msr_wait); priv->flags = ASYNC_LOW_LATENCY; + priv->dev_gone = false; if (quirk && quirk->port_probe) quirk->port_probe(priv); @@ -1759,7 +1782,8 @@ dbg("%s", __func__); - if (strcmp(udev->manufacturer, "CALAO Systems") == 0) + if ((udev->manufacturer && !strcmp(udev->manufacturer, "CALAO Systems")) || + (udev->product && !strcmp(udev->product, "BeagleBone/XDS100"))) return ftdi_jtag_probe(serial); return 0; @@ -1815,6 +1839,9 @@ dbg("%s", __func__); + priv->dev_gone = true; + wake_up_interruptible_all(&priv->delta_msr_wait); + remove_sysfs_attrs(port); kref_put(&priv->kref, ftdi_sio_priv_release); @@ -1824,6 +1851,7 @@ static int ftdi_open(struct tty_struct *tty, struct usb_serial_port *port) { + struct ktermios dummy; struct usb_device *dev = port->serial->dev; struct ftdi_private *priv = usb_get_serial_port_data(port); int result; @@ -1842,8 +1870,10 @@ This is same behaviour as serial.c/rs_open() - Kuba */ /* ftdi_set_termios will send usb control messages */ - if (tty) - ftdi_set_termios(tty, port, tty->termios); + if (tty) { + memset(&dummy, 0, sizeof(dummy)); + ftdi_set_termios(tty, port, &dummy); + } /* Start reading from the device */ result = usb_serial_generic_open(tty, port); @@ -1955,17 +1985,19 @@ N.B. packet may be processed more than once, but differences are only processed once. */ status = packet[0] & FTDI_STATUS_B0_MASK; - if (status & FTDI_RS0_CTS) - priv->icount.cts++; - if (status & FTDI_RS0_DSR) - priv->icount.dsr++; - if (status & FTDI_RS0_RI) - priv->icount.rng++; - if (status & FTDI_RS0_RLSD) - priv->icount.dcd++; if (status != priv->prev_status) { - priv->diff_status |= status ^ priv->prev_status; - wake_up_interruptible(&priv->delta_msr_wait); + char diff_status = status ^ priv->prev_status; + + if (diff_status & FTDI_RS0_CTS) + priv->icount.cts++; + if (diff_status & FTDI_RS0_DSR) + priv->icount.dsr++; + if (diff_status & FTDI_RS0_RI) + priv->icount.rng++; + if (diff_status & FTDI_RS0_RLSD) + priv->icount.dcd++; + + wake_up_interruptible_all(&priv->delta_msr_wait); priv->prev_status = status; } @@ -2277,6 +2309,7 @@ case FT2232H: case FT4232H: case FT232H: + case FTX: len = 2; break; default: @@ -2363,15 +2396,12 @@ */ case TIOCMIWAIT: cprev = priv->icount; - while (1) { + while (!priv->dev_gone) { interruptible_sleep_on(&priv->delta_msr_wait); /* see if a signal did it */ if (signal_pending(current)) return -ERESTARTSYS; cnow = priv->icount; - if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr && - cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) - return -EIO; /* no change => error */ if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) || ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) || ((arg & TIOCM_CD) && (cnow.dcd != cprev.dcd)) || @@ -2380,7 +2410,7 @@ } cprev = cnow; } - /* not reached */ + return -EIO; break; case TIOCSERGETLSR: return get_lsr_info(port, (struct serial_struct __user *)arg); --- linux-3.2.0.orig/drivers/usb/serial/qcaux.c +++ linux-3.2.0/drivers/usb/serial/qcaux.c @@ -36,6 +36,7 @@ #define UTSTARCOM_PRODUCT_UM175_V1 0x3712 #define UTSTARCOM_PRODUCT_UM175_V2 0x3714 #define UTSTARCOM_PRODUCT_UM175_ALLTEL 0x3715 +#define PANTECH_PRODUCT_UML190_VZW 0x3716 #define PANTECH_PRODUCT_UML290_VZW 0x3718 /* CMOTECH devices */ @@ -67,7 +68,11 @@ { USB_DEVICE_AND_INTERFACE_INFO(LG_VENDOR_ID, LG_PRODUCT_VX4400_6000, 0xff, 0xff, 0x00) }, { USB_DEVICE_AND_INTERFACE_INFO(SANYO_VENDOR_ID, SANYO_PRODUCT_KATANA_LX, 0xff, 0xff, 0x00) }, { USB_DEVICE_AND_INTERFACE_INFO(SAMSUNG_VENDOR_ID, SAMSUNG_PRODUCT_U520, 0xff, 0x00, 0x00) }, - { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, PANTECH_PRODUCT_UML290_VZW, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, PANTECH_PRODUCT_UML190_VZW, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, PANTECH_PRODUCT_UML190_VZW, 0xff, 0xfe, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, PANTECH_PRODUCT_UML290_VZW, 0xff, 0xfd, 0xff) }, /* NMEA */ + { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, PANTECH_PRODUCT_UML290_VZW, 0xff, 0xfe, 0xff) }, /* WMC */ + { USB_DEVICE_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, PANTECH_PRODUCT_UML290_VZW, 0xff, 0xff, 0xff) }, /* DIAG */ { }, }; MODULE_DEVICE_TABLE(usb, id_table); --- linux-3.2.0.orig/drivers/usb/serial/pl2303.c +++ linux-3.2.0/drivers/usb/serial/pl2303.c @@ -421,7 +421,7 @@ control = priv->line_control; if ((cflag & CBAUD) == B0) priv->line_control &= ~(CONTROL_DTR | CONTROL_RTS); - else + else if ((old_termios->c_cflag & CBAUD) == B0) priv->line_control |= (CONTROL_DTR | CONTROL_RTS); if (control != priv->line_control) { control = priv->line_control; --- linux-3.2.0.orig/drivers/usb/serial/ti_usb_3410_5052.h +++ linux-3.2.0/drivers/usb/serial/ti_usb_3410_5052.h @@ -37,6 +37,7 @@ #define TI_5152_BOOT_PRODUCT_ID 0x5152 /* no EEPROM, no firmware */ #define TI_5052_EEPROM_PRODUCT_ID 0x505A /* EEPROM, no firmware */ #define TI_5052_FIRMWARE_PRODUCT_ID 0x505F /* firmware is running */ +#define FRI2_PRODUCT_ID 0x5053 /* Fish River Island II */ /* Multi-Tech vendor and product ids */ #define MTS_VENDOR_ID 0x06E0 @@ -49,6 +50,10 @@ #define MTS_MT9234ZBA_PRODUCT_ID 0xF115 #define MTS_MT9234ZBAOLD_PRODUCT_ID 0x0319 +/* Abbott Diabetics vendor and product ids */ +#define ABBOTT_VENDOR_ID 0x1a61 +#define ABBOTT_PRODUCT_ID 0x3410 + /* Commands */ #define TI_GET_VERSION 0x01 #define TI_GET_PORT_STATUS 0x02 --- linux-3.2.0.orig/drivers/usb/serial/ti_usb_3410_5052.c +++ linux-3.2.0/drivers/usb/serial/ti_usb_3410_5052.c @@ -165,7 +165,7 @@ /* the array dimension is the number of default entries plus */ /* TI_EXTRA_VID_PID_COUNT user defined entries plus 1 terminating */ /* null entry */ -static struct usb_device_id ti_id_table_3410[13+TI_EXTRA_VID_PID_COUNT+1] = { +static struct usb_device_id ti_id_table_3410[15+TI_EXTRA_VID_PID_COUNT+1] = { { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) }, { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) }, { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) }, @@ -179,6 +179,8 @@ { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) }, { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) }, { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) }, + { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_PRODUCT_ID) }, + { USB_DEVICE(TI_VENDOR_ID, FRI2_PRODUCT_ID) }, }; static struct usb_device_id ti_id_table_5052[5+TI_EXTRA_VID_PID_COUNT+1] = { @@ -188,7 +190,7 @@ { USB_DEVICE(TI_VENDOR_ID, TI_5052_FIRMWARE_PRODUCT_ID) }, }; -static struct usb_device_id ti_id_table_combined[17+2*TI_EXTRA_VID_PID_COUNT+1] = { +static struct usb_device_id ti_id_table_combined[19+2*TI_EXTRA_VID_PID_COUNT+1] = { { USB_DEVICE(TI_VENDOR_ID, TI_3410_PRODUCT_ID) }, { USB_DEVICE(TI_VENDOR_ID, TI_3410_EZ430_ID) }, { USB_DEVICE(MTS_VENDOR_ID, MTS_GSM_NO_FW_PRODUCT_ID) }, @@ -206,6 +208,8 @@ { USB_DEVICE(IBM_VENDOR_ID, IBM_4543_PRODUCT_ID) }, { USB_DEVICE(IBM_VENDOR_ID, IBM_454B_PRODUCT_ID) }, { USB_DEVICE(IBM_VENDOR_ID, IBM_454C_PRODUCT_ID) }, + { USB_DEVICE(ABBOTT_VENDOR_ID, ABBOTT_PRODUCT_ID) }, + { USB_DEVICE(TI_VENDOR_ID, FRI2_PRODUCT_ID) }, { } }; --- linux-3.2.0.orig/drivers/usb/serial/ftdi_sio_ids.h +++ linux-3.2.0/drivers/usb/serial/ftdi_sio_ids.h @@ -23,12 +23,15 @@ #define FTDI_8U2232C_PID 0x6010 /* Dual channel device */ #define FTDI_4232H_PID 0x6011 /* Quad channel hi-speed device */ #define FTDI_232H_PID 0x6014 /* Single channel hi-speed device */ +#define FTDI_FTX_PID 0x6015 /* FT-X series (FT201X, FT230X, FT231X, etc) */ #define FTDI_SIO_PID 0x8372 /* Product Id SIO application of 8U100AX */ #define FTDI_232RL_PID 0xFBFA /* Product ID for FT232RL */ /*** third-party PIDs (using FTDI_VID) ***/ +#define FTDI_LUMEL_PD12_PID 0x6002 + /* * Marvell OpenRD Base, Client * http://www.open-rd.org @@ -39,6 +42,13 @@ /* www.candapter.com Ewert Energy Systems CANdapter device */ #define FTDI_CANDAPTER_PID 0x9F80 /* Product Id */ +/* + * Texas Instruments XDS100v2 JTAG / BeagleBone A3 + * http://processors.wiki.ti.com/index.php/XDS100 + * http://beagleboard.org/bone + */ +#define TI_XDS100V2_PID 0xa6d0 + #define FTDI_NXTCAM_PID 0xABB8 /* NXTCam for Mindstorms NXT */ /* US Interface Navigator (http://www.usinterface.com/) */ @@ -90,6 +100,8 @@ #define FTDI_TACTRIX_OPENPORT_13S_PID 0xCC49 /* OpenPort 1.3 Subaru */ #define FTDI_TACTRIX_OPENPORT_13U_PID 0xCC4A /* OpenPort 1.3 Universal */ +#define FTDI_DISTORTEC_JTAG_LOCK_PICK_PID 0xCFF8 + /* SCS HF Radio Modems PID's (http://www.scs-ptc.com) */ /* the VID is the standard ftdi vid (FTDI_VID) */ #define FTDI_SCS_DEVICE_0_PID 0xD010 /* SCS PTC-IIusb */ @@ -525,6 +537,16 @@ #define ADI_GNICEPLUS_PID 0xF001 /* + * Microchip Technology, Inc. + * + * MICROCHIP_VID (0x04D8) and MICROCHIP_USB_BOARD_PID (0x000A) are also used by: + * Hornby Elite - Digital Command Control Console + * http://www.hornby.com/hornby-dcc/controllers/ + */ +#define MICROCHIP_VID 0x04D8 +#define MICROCHIP_USB_BOARD_PID 0x000A /* CDC RS-232 Emulation Demo */ + +/* * RATOC REX-USB60F */ #define RATOC_VENDOR_ID 0x0584 @@ -667,6 +689,10 @@ #define SEALEVEL_2803_6_PID 0X2863 /* SeaLINK+8 (2803) Port 6 */ #define SEALEVEL_2803_7_PID 0X2873 /* SeaLINK+8 (2803) Port 7 */ #define SEALEVEL_2803_8_PID 0X2883 /* SeaLINK+8 (2803) Port 8 */ +#define SEALEVEL_2803R_1_PID 0Xa02a /* SeaLINK+8 (2803-ROHS) Port 1+2 */ +#define SEALEVEL_2803R_2_PID 0Xa02b /* SeaLINK+8 (2803-ROHS) Port 3+4 */ +#define SEALEVEL_2803R_3_PID 0Xa02c /* SeaLINK+8 (2803-ROHS) Port 5+6 */ +#define SEALEVEL_2803R_4_PID 0Xa02d /* SeaLINK+8 (2803-ROHS) Port 7+8 */ /* * JETI SPECTROMETER SPECBOS 1201 @@ -759,6 +785,14 @@ #define RTSYSTEMS_SERIAL_VX7_PID 0x9e52 /* Serial converter for VX-7 Radios using FT232RL */ #define RTSYSTEMS_CT29B_PID 0x9e54 /* CT29B Radio Cable */ + +/* + * Physik Instrumente + * http://www.physikinstrumente.com/en/products/ + */ +#define PI_VID 0x1a72 /* Vendor ID */ +#define PI_E861_PID 0x1008 /* E-861 piezo controller USB connection */ + /* * Bayer Ascensia Contour blood glucose meter USB-converter cable. * http://winglucofacts.com/cables/ @@ -1168,3 +1202,16 @@ */ /* TagTracer MIFARE*/ #define FTDI_ZEITCONTROL_TAGTRACE_MIFARE_PID 0xF7C0 + +/* + * Rainforest Automation + */ +/* ZigBee controller */ +#define FTDI_RF_R106 0x8A28 + +/* + * Product: HCP HIT GPRS modem + * Manufacturer: HCP d.o.o. + * ATI command output: Cinterion MC55i + */ +#define FTDI_CINTERION_MC55I_PID 0xA951 --- linux-3.2.0.orig/drivers/usb/serial/omninet.c +++ linux-3.2.0/drivers/usb/serial/omninet.c @@ -315,7 +315,7 @@ int room = 0; /* Default: no room */ /* FIXME: no consistent locking for write_urb_busy */ - if (wport->write_urb_busy) + if (!wport->write_urb_busy) room = wport->bulk_out_size - OMNINET_HEADERLEN; dbg("%s - returns %d", __func__, room); --- linux-3.2.0.orig/drivers/usb/serial/io_ti.c +++ linux-3.2.0/drivers/usb/serial/io_ti.c @@ -2677,15 +2677,7 @@ static void edge_disconnect(struct usb_serial *serial) { - int i; - struct edgeport_port *edge_port; - dbg("%s", __func__); - - for (i = 0; i < serial->num_ports; ++i) { - edge_port = usb_get_serial_port_data(serial->port[i]); - edge_remove_sysfs_attrs(edge_port->port); - } } static void edge_release(struct usb_serial *serial) @@ -2764,6 +2756,7 @@ .disconnect = edge_disconnect, .release = edge_release, .port_probe = edge_create_sysfs_attrs, + .port_remove = edge_remove_sysfs_attrs, .ioctl = edge_ioctl, .set_termios = edge_set_termios, .tiocmget = edge_tiocmget, @@ -2795,6 +2788,7 @@ .disconnect = edge_disconnect, .release = edge_release, .port_probe = edge_create_sysfs_attrs, + .port_remove = edge_remove_sysfs_attrs, .ioctl = edge_ioctl, .set_termios = edge_set_termios, .tiocmget = edge_tiocmget, --- linux-3.2.0.orig/drivers/usb/serial/sierra.c +++ linux-3.2.0/drivers/usb/serial/sierra.c @@ -221,7 +221,7 @@ }; /* 'blacklist' of interfaces not served by this driver */ -static const u8 direct_ip_non_serial_ifaces[] = { 7, 8, 9, 10, 11 }; +static const u8 direct_ip_non_serial_ifaces[] = { 7, 8, 9, 10, 11, 19, 20 }; static const struct sierra_iface_info direct_ip_interface_blacklist = { .infolen = ARRAY_SIZE(direct_ip_non_serial_ifaces), .ifaceinfo = direct_ip_non_serial_ifaces, @@ -298,6 +298,9 @@ /* Sierra Wireless HSPA Non-Composite Device */ { USB_DEVICE_AND_INTERFACE_INFO(0x1199, 0x6892, 0xFF, 0xFF, 0xFF)}, { USB_DEVICE(0x1199, 0x6893) }, /* Sierra Wireless Device */ + { USB_DEVICE(0x1199, 0x68A2), /* Sierra Wireless MC77xx in QMI mode */ + .driver_info = (kernel_ulong_t)&direct_ip_interface_blacklist + }, { USB_DEVICE(0x1199, 0x68A3), /* Sierra Wireless Direct IP modems */ .driver_info = (kernel_ulong_t)&direct_ip_interface_blacklist }, --- linux-3.2.0.orig/drivers/usb/serial/usb-serial.c +++ linux-3.2.0/drivers/usb/serial/usb-serial.c @@ -1059,6 +1059,12 @@ serial->attached = 1; } + /* Avoid race with tty_open and serial_install by setting the + * disconnected flag and not clearing it until all ports have been + * registered. + */ + serial->disconnected = 1; + if (get_free_serial(serial, num_ports, &minor) == NULL) { dev_err(&interface->dev, "No more free serial devices\n"); goto probe_error; @@ -1083,6 +1089,8 @@ } } + serial->disconnected = 0; + usb_serial_console_init(debug, minor); exit: --- linux-3.2.0.orig/drivers/usb/serial/generic.c +++ linux-3.2.0/drivers/usb/serial/generic.c @@ -215,8 +215,10 @@ clear_bit(i, &port->write_urbs_free); result = usb_submit_urb(urb, GFP_ATOMIC); if (result) { - dev_err(&port->dev, "%s - error submitting urb: %d\n", + if (!port->port.console) { + dev_err(&port->dev, "%s - error submitting urb: %d\n", __func__, result); + } set_bit(i, &port->write_urbs_free); spin_lock_irqsave(&port->lock, flags); port->tx_bytes -= count; --- linux-3.2.0.orig/drivers/usb/serial/mos7840.c +++ linux-3.2.0/drivers/usb/serial/mos7840.c @@ -174,6 +174,7 @@ #define CLK_MULTI_REGISTER ((__u16)(0x02)) #define CLK_START_VALUE_REGISTER ((__u16)(0x03)) +#define GPIO_REGISTER ((__u16)(0x07)) #define SERIAL_LCR_DLAB ((__u16)(0x0080)) @@ -1103,14 +1104,25 @@ mos7840_port->read_urb = port->read_urb; /* set up our bulk in urb */ - - usb_fill_bulk_urb(mos7840_port->read_urb, - serial->dev, - usb_rcvbulkpipe(serial->dev, - port->bulk_in_endpointAddress), - port->bulk_in_buffer, - mos7840_port->read_urb->transfer_buffer_length, - mos7840_bulk_in_callback, mos7840_port); + if ((serial->num_ports == 2) + && ((((__u16)port->number - + (__u16)(port->serial->minor)) % 2) != 0)) { + usb_fill_bulk_urb(mos7840_port->read_urb, + serial->dev, + usb_rcvbulkpipe(serial->dev, + (port->bulk_in_endpointAddress) + 2), + port->bulk_in_buffer, + mos7840_port->read_urb->transfer_buffer_length, + mos7840_bulk_in_callback, mos7840_port); + } else { + usb_fill_bulk_urb(mos7840_port->read_urb, + serial->dev, + usb_rcvbulkpipe(serial->dev, + port->bulk_in_endpointAddress), + port->bulk_in_buffer, + mos7840_port->read_urb->transfer_buffer_length, + mos7840_bulk_in_callback, mos7840_port); + } dbg("mos7840_open: bulkin endpoint is %d", port->bulk_in_endpointAddress); @@ -1521,13 +1533,25 @@ memcpy(urb->transfer_buffer, current_position, transfer_size); /* fill urb with data and submit */ - usb_fill_bulk_urb(urb, - serial->dev, - usb_sndbulkpipe(serial->dev, - port->bulk_out_endpointAddress), - urb->transfer_buffer, - transfer_size, - mos7840_bulk_out_data_callback, mos7840_port); + if ((serial->num_ports == 2) + && ((((__u16)port->number - + (__u16)(port->serial->minor)) % 2) != 0)) { + usb_fill_bulk_urb(urb, + serial->dev, + usb_sndbulkpipe(serial->dev, + (port->bulk_out_endpointAddress) + 2), + urb->transfer_buffer, + transfer_size, + mos7840_bulk_out_data_callback, mos7840_port); + } else { + usb_fill_bulk_urb(urb, + serial->dev, + usb_sndbulkpipe(serial->dev, + port->bulk_out_endpointAddress), + urb->transfer_buffer, + transfer_size, + mos7840_bulk_out_data_callback, mos7840_port); + } data1 = urb->transfer_buffer; dbg("bulkout endpoint is %d", port->bulk_out_endpointAddress); @@ -1840,7 +1864,7 @@ } else { #ifdef HW_flow_control - / *setting h/w flow control bit to 0 */ + /* setting h/w flow control bit to 0 */ Data = 0xb; mos7840_port->shadowMCR = Data; status = mos7840_set_uart_reg(port, MODEM_CONTROL_REGISTER, @@ -2309,19 +2333,26 @@ static int mos7840_calc_num_ports(struct usb_serial *serial) { - int mos7840_num_ports = 0; + __u16 Data = 0x00; + int ret = 0; + int mos7840_num_ports; - dbg("numberofendpoints: cur %d, alt %d", - (int)serial->interface->cur_altsetting->desc.bNumEndpoints, - (int)serial->interface->altsetting->desc.bNumEndpoints); - if (serial->interface->cur_altsetting->desc.bNumEndpoints == 5) { - mos7840_num_ports = serial->num_ports = 2; - } else if (serial->interface->cur_altsetting->desc.bNumEndpoints == 9) { + ret = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0), + MCS_RDREQ, MCS_RD_RTYPE, 0, GPIO_REGISTER, &Data, + VENDOR_READ_LENGTH, MOS_WDR_TIMEOUT); + + if ((Data & 0x01) == 0) { + mos7840_num_ports = 2; + serial->num_bulk_in = 2; + serial->num_bulk_out = 2; + serial->num_ports = 2; + } else { + mos7840_num_ports = 4; serial->num_bulk_in = 4; serial->num_bulk_out = 4; - mos7840_num_ports = serial->num_ports = 4; + serial->num_ports = 4; } - dbg ("mos7840_num_ports = %d", mos7840_num_ports); + return mos7840_num_ports; } --- linux-3.2.0.orig/drivers/usb/serial/qcserial.c +++ linux-3.2.0/drivers/usb/serial/qcserial.c @@ -24,34 +24,44 @@ static int debug; +#define DEVICE_G1K(v, p) \ + USB_DEVICE(v, p), .driver_info = 1 + static const struct usb_device_id id_table[] = { - {USB_DEVICE(0x05c6, 0x9211)}, /* Acer Gobi QDL device */ - {USB_DEVICE(0x05c6, 0x9212)}, /* Acer Gobi Modem Device */ - {USB_DEVICE(0x03f0, 0x1f1d)}, /* HP un2400 Gobi Modem Device */ - {USB_DEVICE(0x03f0, 0x201d)}, /* HP un2400 Gobi QDL Device */ - {USB_DEVICE(0x03f0, 0x371d)}, /* HP un2430 Mobile Broadband Module */ - {USB_DEVICE(0x04da, 0x250d)}, /* Panasonic Gobi Modem device */ - {USB_DEVICE(0x04da, 0x250c)}, /* Panasonic Gobi QDL device */ - {USB_DEVICE(0x413c, 0x8172)}, /* Dell Gobi Modem device */ - {USB_DEVICE(0x413c, 0x8171)}, /* Dell Gobi QDL device */ - {USB_DEVICE(0x1410, 0xa001)}, /* Novatel Gobi Modem device */ - {USB_DEVICE(0x1410, 0xa008)}, /* Novatel Gobi QDL device */ - {USB_DEVICE(0x0b05, 0x1776)}, /* Asus Gobi Modem device */ - {USB_DEVICE(0x0b05, 0x1774)}, /* Asus Gobi QDL device */ - {USB_DEVICE(0x19d2, 0xfff3)}, /* ONDA Gobi Modem device */ - {USB_DEVICE(0x19d2, 0xfff2)}, /* ONDA Gobi QDL device */ - {USB_DEVICE(0x1557, 0x0a80)}, /* OQO Gobi QDL device */ - {USB_DEVICE(0x05c6, 0x9001)}, /* Generic Gobi Modem device */ - {USB_DEVICE(0x05c6, 0x9002)}, /* Generic Gobi Modem device */ - {USB_DEVICE(0x05c6, 0x9202)}, /* Generic Gobi Modem device */ - {USB_DEVICE(0x05c6, 0x9203)}, /* Generic Gobi Modem device */ - {USB_DEVICE(0x05c6, 0x9222)}, /* Generic Gobi Modem device */ - {USB_DEVICE(0x05c6, 0x9008)}, /* Generic Gobi QDL device */ - {USB_DEVICE(0x05c6, 0x9009)}, /* Generic Gobi Modem device */ - {USB_DEVICE(0x05c6, 0x9201)}, /* Generic Gobi QDL device */ - {USB_DEVICE(0x05c6, 0x9221)}, /* Generic Gobi QDL device */ - {USB_DEVICE(0x05c6, 0x9231)}, /* Generic Gobi QDL device */ - {USB_DEVICE(0x1f45, 0x0001)}, /* Unknown Gobi QDL device */ + /* Gobi 1000 devices */ + {DEVICE_G1K(0x05c6, 0x9211)}, /* Acer Gobi QDL device */ + {DEVICE_G1K(0x05c6, 0x9212)}, /* Acer Gobi Modem Device */ + {DEVICE_G1K(0x03f0, 0x1f1d)}, /* HP un2400 Gobi Modem Device */ + {DEVICE_G1K(0x03f0, 0x201d)}, /* HP un2400 Gobi QDL Device */ + {DEVICE_G1K(0x04da, 0x250d)}, /* Panasonic Gobi Modem device */ + {DEVICE_G1K(0x04da, 0x250c)}, /* Panasonic Gobi QDL device */ + {DEVICE_G1K(0x413c, 0x8172)}, /* Dell Gobi Modem device */ + {DEVICE_G1K(0x413c, 0x8171)}, /* Dell Gobi QDL device */ + {DEVICE_G1K(0x1410, 0xa001)}, /* Novatel Gobi Modem device */ + {DEVICE_G1K(0x1410, 0xa008)}, /* Novatel Gobi QDL device */ + {DEVICE_G1K(0x0b05, 0x1776)}, /* Asus Gobi Modem device */ + {DEVICE_G1K(0x0b05, 0x1774)}, /* Asus Gobi QDL device */ + {DEVICE_G1K(0x19d2, 0xfff3)}, /* ONDA Gobi Modem device */ + {DEVICE_G1K(0x19d2, 0xfff2)}, /* ONDA Gobi QDL device */ + {DEVICE_G1K(0x1557, 0x0a80)}, /* OQO Gobi QDL device */ + {DEVICE_G1K(0x05c6, 0x9001)}, /* Generic Gobi Modem device */ + {DEVICE_G1K(0x05c6, 0x9002)}, /* Generic Gobi Modem device */ + {DEVICE_G1K(0x05c6, 0x9202)}, /* Generic Gobi Modem device */ + {DEVICE_G1K(0x05c6, 0x9203)}, /* Generic Gobi Modem device */ + {DEVICE_G1K(0x05c6, 0x9222)}, /* Generic Gobi Modem device */ + {DEVICE_G1K(0x05c6, 0x9008)}, /* Generic Gobi QDL device */ + {DEVICE_G1K(0x05c6, 0x9009)}, /* Generic Gobi Modem device */ + {DEVICE_G1K(0x05c6, 0x9201)}, /* Generic Gobi QDL device */ + {DEVICE_G1K(0x05c6, 0x9221)}, /* Generic Gobi QDL device */ + {DEVICE_G1K(0x05c6, 0x9231)}, /* Generic Gobi QDL device */ + {DEVICE_G1K(0x1f45, 0x0001)}, /* Unknown Gobi QDL device */ + + /* Gobi 2000 devices */ + {USB_DEVICE(0x1410, 0xa010)}, /* Novatel Gobi 2000 QDL device */ + {USB_DEVICE(0x1410, 0xa011)}, /* Novatel Gobi 2000 QDL device */ + {USB_DEVICE(0x1410, 0xa012)}, /* Novatel Gobi 2000 QDL device */ + {USB_DEVICE(0x1410, 0xa013)}, /* Novatel Gobi 2000 QDL device */ + {USB_DEVICE(0x1410, 0xa014)}, /* Novatel Gobi 2000 QDL device */ {USB_DEVICE(0x413c, 0x8185)}, /* Dell Gobi 2000 QDL device (N0218, VU936) */ {USB_DEVICE(0x413c, 0x8186)}, /* Dell Gobi 2000 Modem device (N0218, VU936) */ {USB_DEVICE(0x05c6, 0x9208)}, /* Generic Gobi 2000 QDL device */ @@ -86,7 +96,18 @@ {USB_DEVICE(0x16d8, 0x8002)}, /* CMDTech Gobi 2000 Modem device (VU922) */ {USB_DEVICE(0x05c6, 0x9204)}, /* Gobi 2000 QDL device */ {USB_DEVICE(0x05c6, 0x9205)}, /* Gobi 2000 Modem device */ + + /* Gobi 3000 devices */ + {USB_DEVICE(0x03f0, 0x371d)}, /* HP un2430 Gobi 3000 QDL */ + {USB_DEVICE(0x05c6, 0x920c)}, /* Gobi 3000 QDL */ + {USB_DEVICE(0x05c6, 0x920d)}, /* Gobi 3000 Composite */ + {USB_DEVICE(0x1410, 0xa020)}, /* Novatel Gobi 3000 QDL */ + {USB_DEVICE(0x1410, 0xa021)}, /* Novatel Gobi 3000 Composite */ + {USB_DEVICE(0x413c, 0x8193)}, /* Dell Gobi 3000 QDL */ + {USB_DEVICE(0x413c, 0x8194)}, /* Dell Gobi 3000 Composite */ {USB_DEVICE(0x1199, 0x9013)}, /* Sierra Wireless Gobi 3000 Modem device (MC8355) */ + {USB_DEVICE(0x12D1, 0x14F0)}, /* Sony Gobi 3000 QDL */ + {USB_DEVICE(0x12D1, 0x14F1)}, /* Sony Gobi 3000 Composite */ { } /* Terminating entry */ }; MODULE_DEVICE_TABLE(usb, id_table); @@ -108,8 +129,10 @@ int retval = -ENODEV; __u8 nintf; __u8 ifnum; + bool is_gobi1k = id->driver_info ? true : false; dbg("%s", __func__); + dbg("Is Gobi 1000 = %d", is_gobi1k); nintf = serial->dev->actconfig->desc.bNumInterfaces; dbg("Num Interfaces = %d", nintf); @@ -157,15 +180,25 @@ case 3: case 4: - /* Composite mode */ - /* ifnum == 0 is a broadband network adapter */ - if (ifnum == 1) { - /* - * Diagnostics Monitor (serial line 9600 8N1) - * Qualcomm DM protocol - * use "libqcdm" (ModemManager) for communication - */ - dbg("Diagnostics Monitor found"); + /* Composite mode; don't bind to the QMI/net interface as that + * gets handled by other drivers. + */ + + /* Gobi 1K USB layout: + * 0: serial port (doesn't respond) + * 1: serial port (doesn't respond) + * 2: AT-capable modem port + * 3: QMI/net + * + * Gobi 2K+ USB layout: + * 0: QMI/net + * 1: DM/DIAG (use libqcdm from ModemManager for communication) + * 2: AT-capable modem port + * 3: NMEA + */ + + if (ifnum == 1 && !is_gobi1k) { + dbg("Gobi 2K+ DM/DIAG interface found"); retval = usb_set_interface(serial->dev, ifnum, 0); if (retval < 0) { dev_err(&serial->dev->dev, @@ -184,13 +217,13 @@ retval = -ENODEV; kfree(data); } - } else if (ifnum==3) { + } else if (ifnum==3 && !is_gobi1k) { /* * NMEA (serial line 9600 8N1) * # echo "\$GPS_START" > /dev/ttyUSBx * # echo "\$GPS_STOP" > /dev/ttyUSBx */ - dbg("NMEA GPS interface found"); + dbg("Gobi 2K+ NMEA GPS interface found"); retval = usb_set_interface(serial->dev, ifnum, 0); if (retval < 0) { dev_err(&serial->dev->dev, --- linux-3.2.0.orig/drivers/usb/serial/option.c +++ linux-3.2.0/drivers/usb/serial/option.c @@ -307,6 +307,9 @@ #define TELIT_VENDOR_ID 0x1bc7 #define TELIT_PRODUCT_UC864E 0x1003 #define TELIT_PRODUCT_UC864G 0x1004 +#define TELIT_PRODUCT_CC864_DUAL 0x1005 +#define TELIT_PRODUCT_CC864_SINGLE 0x1006 +#define TELIT_PRODUCT_DE910_DUAL 0x1010 /* ZTE PRODUCTS */ #define ZTE_VENDOR_ID 0x19d2 @@ -476,6 +479,17 @@ #define VIETTEL_VENDOR_ID 0x2262 #define VIETTEL_PRODUCT_VT1000 0x0002 +/* ZD Incorporated */ +#define ZD_VENDOR_ID 0x0685 +#define ZD_PRODUCT_7000 0x7000 + +/* LG products */ +#define LG_VENDOR_ID 0x1004 +#define LG_PRODUCT_L02C 0x618f + +/* MediaTek products */ +#define MEDIATEK_VENDOR_ID 0x0e8d + /* some devices interfaces need special handling due to a number of reasons */ enum option_blacklist_reason { OPTION_BLACKLIST_NONE = 0, @@ -694,6 +708,7 @@ { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_EMBEDDED_FULLSPEED) }, { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_EMBEDDED_FULLSPEED) }, { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_EVDO_HIGHSPEED) }, + { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED) }, { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED3) }, { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED4) }, { USB_DEVICE(NOVATELWIRELESS_VENDOR_ID, NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED5) }, @@ -760,6 +775,9 @@ { USB_DEVICE(CMOTECH_VENDOR_ID, CMOTECH_PRODUCT_6008) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864E) }, { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_UC864G) }, + { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_CC864_DUAL) }, + { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_CC864_SINGLE) }, + { USB_DEVICE(TELIT_VENDOR_ID, TELIT_PRODUCT_DE910_DUAL) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF622, 0xff, 0xff, 0xff) }, /* ZTE WCDMA products */ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0002, 0xff, 0xff, 0xff), .driver_info = (kernel_ulong_t)&net_intf1_blacklist }, @@ -780,7 +798,6 @@ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0012, 0xff, 0xff, 0xff), .driver_info = (kernel_ulong_t)&net_intf1_blacklist }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0013, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0014, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_MF628, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0016, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0017, 0xff, 0xff, 0xff), @@ -795,7 +812,6 @@ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0024, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0025, 0xff, 0xff, 0xff), .driver_info = (kernel_ulong_t)&net_intf1_blacklist }, - /* { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0026, 0xff, 0xff, 0xff) }, */ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0028, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0029, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0030, 0xff, 0xff, 0xff) }, @@ -820,7 +836,6 @@ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0051, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0052, 0xff, 0xff, 0xff), .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, - /* { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0053, 0xff, 0xff, 0xff) }, */ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0054, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0055, 0xff, 0xff, 0xff), .driver_info = (kernel_ulong_t)&net_intf1_blacklist }, @@ -828,7 +843,6 @@ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0057, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0058, 0xff, 0xff, 0xff), .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0059, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0061, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0062, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0063, 0xff, 0xff, 0xff), @@ -838,7 +852,6 @@ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0066, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0067, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0069, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0070, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0076, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0077, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0078, 0xff, 0xff, 0xff) }, @@ -847,6 +860,16 @@ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0083, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0086, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0087, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0088, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0089, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0090, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0091, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0092, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0093, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0094, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0095, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0096, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0097, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0104, 0xff, 0xff, 0xff), .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0105, 0xff, 0xff, 0xff) }, @@ -867,23 +890,20 @@ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0143, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0144, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0145, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0146, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0147, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0148, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0149, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0150, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0151, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0152, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0153, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0154, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0155, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0156, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0157, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0158, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0159, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0160, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0161, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0162, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0164, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0165, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0167, 0xff, 0xff, 0xff), + .driver_info = (kernel_ulong_t)&net_intf4_blacklist }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1008, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1010, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1012, 0xff, 0xff, 0xff) }, @@ -1058,17 +1078,27 @@ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1298, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1299, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x1300, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x2002, 0xff, + 0xff, 0xff), .driver_info = (kernel_ulong_t)&zte_k3765_z_blacklist }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x2003, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0014, 0xff, 0xff, 0xff) }, /* ZTE CDMA products */ { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0027, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0059, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0060, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0070, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0073, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0094, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0130, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0133, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0141, 0xff, 0xff, 0xff) }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x2002, 0xff, - 0xff, 0xff), .driver_info = (kernel_ulong_t)&zte_k3765_z_blacklist }, - { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x2003, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0147, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0152, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0168, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0170, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0176, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, 0x0178, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_CDMA_TECH, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_AC8710, 0xff, 0xff, 0xff) }, { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_AC2726, 0xff, 0xff, 0xff) }, @@ -1178,6 +1208,12 @@ { USB_DEVICE(YUGA_VENDOR_ID, YUGA_PRODUCT_CLU528) }, { USB_DEVICE(YUGA_VENDOR_ID, YUGA_PRODUCT_CLU526) }, { USB_DEVICE_AND_INTERFACE_INFO(VIETTEL_VENDOR_ID, VIETTEL_PRODUCT_VT1000, 0xff, 0xff, 0xff) }, + { USB_DEVICE_AND_INTERFACE_INFO(ZD_VENDOR_ID, ZD_PRODUCT_7000, 0xff, 0xff, 0xff) }, + { USB_DEVICE(LG_VENDOR_ID, LG_PRODUCT_L02C) }, /* docomo L-02C modem */ + { USB_DEVICE_AND_INTERFACE_INFO(MEDIATEK_VENDOR_ID, 0x00a1, 0xff, 0x00, 0x00) }, + { USB_DEVICE_AND_INTERFACE_INFO(MEDIATEK_VENDOR_ID, 0x00a1, 0xff, 0x02, 0x01) }, + { USB_DEVICE_AND_INTERFACE_INFO(MEDIATEK_VENDOR_ID, 0x00a2, 0xff, 0x00, 0x00) }, + { USB_DEVICE_AND_INTERFACE_INFO(MEDIATEK_VENDOR_ID, 0x00a2, 0xff, 0x02, 0x01) }, /* MediaTek MT6276M modem & app port */ { } /* Terminating entry */ }; MODULE_DEVICE_TABLE(usb, option_ids); @@ -1340,6 +1376,7 @@ serial->interface->cur_altsetting->desc.bInterfaceNumber, OPTION_BLACKLIST_RESERVED_IF, (const struct option_blacklist_info *) id->driver_info)) + return -ENODEV; /* Don't bind network interface on Samsung GT-B3730, it is handled by a separate module */ if (serial->dev->descriptor.idVendor == SAMSUNG_VENDOR_ID && --- linux-3.2.0.orig/drivers/usb/serial/ftdi_sio.h +++ linux-3.2.0/drivers/usb/serial/ftdi_sio.h @@ -157,7 +157,8 @@ FT232RL = 5, FT2232H = 6, FT4232H = 7, - FT232H = 8 + FT232H = 8, + FTX = 9, }; enum ftdi_sio_baudrate { --- linux-3.2.0.orig/drivers/usb/storage/realtek_cr.c +++ linux-3.2.0/drivers/usb/storage/realtek_cr.c @@ -509,9 +509,14 @@ int retval; u16 addr = 0xFE47; u8 cmnd[12] = {0}; + u8 *buf; US_DEBUGP("%s, addr = 0x%x, len = %d\n", __FUNCTION__, addr, len); + buf = kmemdup(data, len, GFP_NOIO); + if (!buf) + return USB_STOR_TRANSPORT_ERROR; + cmnd[0] = 0xF0; cmnd[1] = 0x0E; cmnd[2] = (u8)(addr >> 8); @@ -519,7 +524,8 @@ cmnd[4] = (u8)(len >> 8); cmnd[5] = (u8)len; - retval = rts51x_bulk_transport_special(us, 0, cmnd, 12, data, len, DMA_TO_DEVICE, NULL); + retval = rts51x_bulk_transport_special(us, 0, cmnd, 12, buf, len, DMA_TO_DEVICE, NULL); + kfree(buf); if (retval != USB_STOR_TRANSPORT_GOOD) { return -EIO; } @@ -791,7 +797,7 @@ rts51x_set_stat(chip, RTS51X_STAT_SS); /* ignore mass storage interface's children */ pm_suspend_ignore_children(&us->pusb_intf->dev, true); - usb_autopm_put_interface(us->pusb_intf); + usb_autopm_put_interface_async(us->pusb_intf); US_DEBUGP("%s: RTS51X_STAT_SS 01," "intf->pm_usage_cnt:%d, power.usage:%d\n", __func__, --- linux-3.2.0.orig/drivers/usb/storage/unusual_devs.h +++ linux-3.2.0/drivers/usb/storage/unusual_devs.h @@ -1163,6 +1163,13 @@ USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init, 0), +/* Reported by Timo Aaltonen */ +UNUSUAL_DEV( 0x0af0, 0x7011, 0x0000, 0x9999, + "Option", + "Mass Storage", + USB_SC_DEVICE, USB_PR_DEVICE, option_ms_init, + 0 ), + /* Reported by F. Aben * This device (wrongly) has a vendor-specific device descriptor. * The entry is needed so usb-storage can bind to it's mass-storage @@ -1885,6 +1892,13 @@ USB_SC_DEVICE, USB_PR_DEVICE, NULL, US_FL_IGNORE_RESIDUE ), +/* Reported by Jesse Feddema */ +UNUSUAL_DEV( 0x177f, 0x0400, 0x0000, 0x0000, + "Yarvik", + "PMP400", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_BULK_IGNORE_TAG | US_FL_MAX_SECTORS_64 ), + /* Reported by Hans de Goede * These Appotech controllers are found in Picture Frames, they provide a * (buggy) emulation of a cdrom drive which contains the windows software --- linux-3.2.0.orig/drivers/usb/storage/usb.h +++ linux-3.2.0/drivers/usb/storage/usb.h @@ -47,6 +47,7 @@ #include #include #include +#include #include struct us_data; @@ -72,7 +73,7 @@ #define US_FLIDX_DISCONNECTING 3 /* disconnect in progress */ #define US_FLIDX_RESETTING 4 /* device reset in progress */ #define US_FLIDX_TIMED_OUT 5 /* SCSI midlayer timed out */ -#define US_FLIDX_DONT_SCAN 6 /* don't scan (disconnect) */ +#define US_FLIDX_SCAN_PENDING 6 /* scanning not yet done */ #define US_FLIDX_REDO_READ10 7 /* redo READ(10) command */ #define US_FLIDX_READ10_WORKED 8 /* previous READ(10) succeeded */ @@ -147,8 +148,8 @@ /* mutual exclusion and synchronization structures */ struct completion cmnd_ready; /* to sleep thread on */ struct completion notify; /* thread begin/end */ - wait_queue_head_t delay_wait; /* wait during scan, reset */ - struct completion scanning_done; /* wait for scan thread */ + wait_queue_head_t delay_wait; /* wait during reset */ + struct delayed_work scan_dwork; /* for async scanning */ /* subdriver information */ void *extra; /* Any extra data */ --- linux-3.2.0.orig/drivers/usb/storage/usb.c +++ linux-3.2.0/drivers/usb/storage/usb.c @@ -788,15 +788,19 @@ struct Scsi_Host *host = us_to_host(us); /* If the device is really gone, cut short reset delays */ - if (us->pusb_dev->state == USB_STATE_NOTATTACHED) + if (us->pusb_dev->state == USB_STATE_NOTATTACHED) { set_bit(US_FLIDX_DISCONNECTING, &us->dflags); + wake_up(&us->delay_wait); + } - /* Prevent SCSI-scanning (if it hasn't started yet) - * and wait for the SCSI-scanning thread to stop. + /* Prevent SCSI scanning (if it hasn't started yet) + * or wait for the SCSI-scanning routine to stop. */ - set_bit(US_FLIDX_DONT_SCAN, &us->dflags); - wake_up(&us->delay_wait); - wait_for_completion(&us->scanning_done); + cancel_delayed_work_sync(&us->scan_dwork); + + /* Balance autopm calls if scanning was cancelled */ + if (test_bit(US_FLIDX_SCAN_PENDING, &us->dflags)) + usb_autopm_put_interface_no_suspend(us->pusb_intf); /* Removing the host will perform an orderly shutdown: caches * synchronized, disks spun down, etc. @@ -823,52 +827,28 @@ scsi_host_put(us_to_host(us)); } -/* Thread to carry out delayed SCSI-device scanning */ -static int usb_stor_scan_thread(void * __us) +/* Delayed-work routine to carry out SCSI-device scanning */ +static void usb_stor_scan_dwork(struct work_struct *work) { - struct us_data *us = (struct us_data *)__us; + struct us_data *us = container_of(work, struct us_data, + scan_dwork.work); struct device *dev = &us->pusb_intf->dev; - dev_dbg(dev, "device found\n"); + dev_dbg(dev, "starting scan\n"); - set_freezable_with_signal(); - /* - * Wait for the timeout to expire or for a disconnect - * - * We can't freeze in this thread or we risk causing khubd to - * fail to freeze, but we can't be non-freezable either. Nor can - * khubd freeze while waiting for scanning to complete as it may - * hold the device lock, causing a hang when suspending devices. - * So we request a fake signal when freezing and use - * interruptible sleep to kick us out of our wait early when - * freezing happens. - */ - if (delay_use > 0) { - dev_dbg(dev, "waiting for device to settle " - "before scanning\n"); - wait_event_interruptible_timeout(us->delay_wait, - test_bit(US_FLIDX_DONT_SCAN, &us->dflags), - delay_use * HZ); + /* For bulk-only devices, determine the max LUN value */ + if (us->protocol == USB_PR_BULK && !(us->fflags & US_FL_SINGLE_LUN)) { + mutex_lock(&us->dev_mutex); + us->max_lun = usb_stor_Bulk_max_lun(us); + mutex_unlock(&us->dev_mutex); } + scsi_scan_host(us_to_host(us)); + dev_dbg(dev, "scan complete\n"); - /* If the device is still connected, perform the scanning */ - if (!test_bit(US_FLIDX_DONT_SCAN, &us->dflags)) { - - /* For bulk-only devices, determine the max LUN value */ - if (us->protocol == USB_PR_BULK && - !(us->fflags & US_FL_SINGLE_LUN)) { - mutex_lock(&us->dev_mutex); - us->max_lun = usb_stor_Bulk_max_lun(us); - mutex_unlock(&us->dev_mutex); - } - scsi_scan_host(us_to_host(us)); - dev_dbg(dev, "scan complete\n"); - - /* Should we unbind if no devices were detected? */ - } + /* Should we unbind if no devices were detected? */ usb_autopm_put_interface(us->pusb_intf); - complete_and_exit(&us->scanning_done, 0); + clear_bit(US_FLIDX_SCAN_PENDING, &us->dflags); } static unsigned int usb_stor_sg_tablesize(struct usb_interface *intf) @@ -915,7 +895,7 @@ init_completion(&us->cmnd_ready); init_completion(&(us->notify)); init_waitqueue_head(&us->delay_wait); - init_completion(&us->scanning_done); + INIT_DELAYED_WORK(&us->scan_dwork, usb_stor_scan_dwork); /* Associate the us_data structure with the USB device */ result = associate_dev(us, intf); @@ -946,7 +926,6 @@ /* Second part of general USB mass-storage probing */ int usb_stor_probe2(struct us_data *us) { - struct task_struct *th; int result; struct device *dev = &us->pusb_intf->dev; @@ -987,20 +966,14 @@ goto BadDevice; } - /* Start up the thread for delayed SCSI-device scanning */ - th = kthread_create(usb_stor_scan_thread, us, "usb-stor-scan"); - if (IS_ERR(th)) { - dev_warn(dev, - "Unable to start the device-scanning thread\n"); - complete(&us->scanning_done); - quiesce_and_remove_host(us); - result = PTR_ERR(th); - goto BadDevice; - } - + /* Submit the delayed_work for SCSI-device scanning */ usb_autopm_get_interface_no_resume(us->pusb_intf); - wake_up_process(th); + set_bit(US_FLIDX_SCAN_PENDING, &us->dflags); + if (delay_use > 0) + dev_dbg(dev, "waiting for device to settle before scanning\n"); + queue_delayed_work(system_freezable_wq, &us->scan_dwork, + delay_use * HZ); return 0; /* We come here if there are any problems */ @@ -1073,6 +1046,7 @@ .id_table = usb_storage_usb_ids, .supports_autosuspend = 1, .soft_unbind = 1, + .no_dynamic_id = 1, }; static int __init usb_stor_init(void) --- linux-3.2.0.orig/drivers/usb/storage/uas.c +++ linux-3.2.0/drivers/usb/storage/uas.c @@ -13,7 +13,9 @@ #include #include #include +#include #include +#include #include #include @@ -22,49 +24,6 @@ #include #include -/* Common header for all IUs */ -struct iu { - __u8 iu_id; - __u8 rsvd1; - __be16 tag; -}; - -enum { - IU_ID_COMMAND = 0x01, - IU_ID_STATUS = 0x03, - IU_ID_RESPONSE = 0x04, - IU_ID_TASK_MGMT = 0x05, - IU_ID_READ_READY = 0x06, - IU_ID_WRITE_READY = 0x07, -}; - -struct command_iu { - __u8 iu_id; - __u8 rsvd1; - __be16 tag; - __u8 prio_attr; - __u8 rsvd5; - __u8 len; - __u8 rsvd7; - struct scsi_lun lun; - __u8 cdb[16]; /* XXX: Overflow-checking tools may misunderstand */ -}; - -/* - * Also used for the Read Ready and Write Ready IUs since they have the - * same first four bytes - */ -struct sense_iu { - __u8 iu_id; - __u8 rsvd1; - __be16 tag; - __be16 status_qual; - __u8 status; - __u8 rsvd7[7]; - __be16 len; - __u8 sense[SCSI_SENSE_BUFFERSIZE]; -}; - /* * The r00-r01c specs define this version of the SENSE IU data structure. * It's still in use by several different firmware releases. @@ -79,18 +38,6 @@ __u8 sense[SCSI_SENSE_BUFFERSIZE]; }; -enum { - CMD_PIPE_ID = 1, - STATUS_PIPE_ID = 2, - DATA_IN_PIPE_ID = 3, - DATA_OUT_PIPE_ID = 4, - - UAS_SIMPLE_TAG = 0, - UAS_HEAD_TAG = 1, - UAS_ORDERED_TAG = 2, - UAS_ACA = 4, -}; - struct uas_dev_info { struct usb_interface *intf; struct usb_device *udev; @@ -98,6 +45,8 @@ unsigned cmd_pipe, status_pipe, data_in_pipe, data_out_pipe; unsigned use_streams:1; unsigned uas_sense_old:1; + struct scsi_cmnd *cmnd; + struct urb *status_urb; /* used only if stream support is available */ }; enum { @@ -109,6 +58,9 @@ SUBMIT_DATA_OUT_URB = (1 << 5), ALLOC_CMD_URB = (1 << 6), SUBMIT_CMD_URB = (1 << 7), + COMPLETED_DATA_IN = (1 << 8), + COMPLETED_DATA_OUT = (1 << 9), + DATA_COMPLETES_CMD = (1 << 10), }; /* Overrides scsi_pointer */ @@ -116,6 +68,7 @@ unsigned int state; unsigned int stream; struct urb *cmd_urb; + /* status_urb is used only if stream support isn't available */ struct urb *status_urb; struct urb *data_in_urb; struct urb *data_out_urb; @@ -125,33 +78,43 @@ /* I hate forward declarations, but I actually have a loop */ static int uas_submit_urbs(struct scsi_cmnd *cmnd, struct uas_dev_info *devinfo, gfp_t gfp); +static void uas_do_work(struct work_struct *work); +static DECLARE_WORK(uas_work, uas_do_work); static DEFINE_SPINLOCK(uas_work_lock); static LIST_HEAD(uas_work_list); static void uas_do_work(struct work_struct *work) { struct uas_cmd_info *cmdinfo; + struct uas_cmd_info *temp; struct list_head list; + int err; spin_lock_irq(&uas_work_lock); list_replace_init(&uas_work_list, &list); spin_unlock_irq(&uas_work_lock); - list_for_each_entry(cmdinfo, &list, list) { + list_for_each_entry_safe(cmdinfo, temp, &list, list) { struct scsi_pointer *scp = (void *)cmdinfo; struct scsi_cmnd *cmnd = container_of(scp, struct scsi_cmnd, SCp); - uas_submit_urbs(cmnd, cmnd->device->hostdata, GFP_NOIO); + err = uas_submit_urbs(cmnd, cmnd->device->hostdata, GFP_NOIO); + if (err) { + list_del(&cmdinfo->list); + spin_lock_irq(&uas_work_lock); + list_add_tail(&cmdinfo->list, &uas_work_list); + spin_unlock_irq(&uas_work_lock); + schedule_work(&uas_work); + } } } -static DECLARE_WORK(uas_work, uas_do_work); - static void uas_sense(struct urb *urb, struct scsi_cmnd *cmnd) { struct sense_iu *sense_iu = urb->transfer_buffer; struct scsi_device *sdev = cmnd->device; + struct uas_cmd_info *cmdinfo = (void *)&cmnd->SCp; if (urb->actual_length > 16) { unsigned len = be16_to_cpup(&sense_iu->len); @@ -169,16 +132,15 @@ } cmnd->result = sense_iu->status; - if (sdev->current_cmnd) - sdev->current_cmnd = NULL; - cmnd->scsi_done(cmnd); - usb_free_urb(urb); + if (!(cmdinfo->state & DATA_COMPLETES_CMD)) + cmnd->scsi_done(cmnd); } static void uas_sense_old(struct urb *urb, struct scsi_cmnd *cmnd) { struct sense_iu_old *sense_iu = urb->transfer_buffer; struct scsi_device *sdev = cmnd->device; + struct uas_cmd_info *cmdinfo = (void *)&cmnd->SCp; if (urb->actual_length > 8) { unsigned len = be16_to_cpup(&sense_iu->len) - 2; @@ -196,10 +158,8 @@ } cmnd->result = sense_iu->status; - if (sdev->current_cmnd) - sdev->current_cmnd = NULL; - cmnd->scsi_done(cmnd); - usb_free_urb(urb); + if (!(cmdinfo->state & DATA_COMPLETES_CMD)) + cmnd->scsi_done(cmnd); } static void uas_xfer_data(struct urb *urb, struct scsi_cmnd *cmnd, @@ -208,7 +168,7 @@ struct uas_cmd_info *cmdinfo = (void *)&cmnd->SCp; int err; - cmdinfo->state = direction | SUBMIT_STATUS_URB; + cmdinfo->state = direction; err = uas_submit_urbs(cmnd, cmnd->device->hostdata, GFP_ATOMIC); if (err) { spin_lock(&uas_work_lock); @@ -221,27 +181,61 @@ static void uas_stat_cmplt(struct urb *urb) { struct iu *iu = urb->transfer_buffer; - struct scsi_device *sdev = urb->context; - struct uas_dev_info *devinfo = sdev->hostdata; + struct Scsi_Host *shost = urb->context; + struct uas_dev_info *devinfo = (void *)shost->hostdata[0]; struct scsi_cmnd *cmnd; + struct uas_cmd_info *cmdinfo; u16 tag; + int ret; if (urb->status) { dev_err(&urb->dev->dev, "URB BAD STATUS %d\n", urb->status); - usb_free_urb(urb); + if (devinfo->use_streams) + usb_free_urb(urb); return; } tag = be16_to_cpup(&iu->tag) - 1; - if (sdev->current_cmnd) - cmnd = sdev->current_cmnd; + if (tag == 0) + cmnd = devinfo->cmnd; else - cmnd = scsi_find_tag(sdev, tag); - if (!cmnd) + cmnd = scsi_host_find_tag(shost, tag - 1); + if (!cmnd) { + if (devinfo->use_streams) { + usb_free_urb(urb); + return; + } + ret = usb_submit_urb(urb, GFP_ATOMIC); + if (ret) + dev_err(&urb->dev->dev, "failed submit status urb\n"); return; + } + cmdinfo = (void *)&cmnd->SCp; switch (iu->iu_id) { case IU_ID_STATUS: + if (devinfo->cmnd == cmnd) + devinfo->cmnd = NULL; + + if (!(cmdinfo->state & COMPLETED_DATA_IN) && + cmdinfo->data_in_urb) { + if (devinfo->use_streams) { + cmdinfo->state |= DATA_COMPLETES_CMD; + usb_unlink_urb(cmdinfo->data_in_urb); + } else { + usb_free_urb(cmdinfo->data_in_urb); + } + } + if (!(cmdinfo->state & COMPLETED_DATA_OUT) && + cmdinfo->data_out_urb) { + if (devinfo->use_streams) { + cmdinfo->state |= DATA_COMPLETES_CMD; + usb_unlink_urb(cmdinfo->data_in_urb); + } else { + usb_free_urb(cmdinfo->data_out_urb); + } + } + if (urb->actual_length < 16) devinfo->uas_sense_old = 1; if (devinfo->uas_sense_old) @@ -259,29 +253,70 @@ scmd_printk(KERN_ERR, cmnd, "Bogus IU (%d) received on status pipe\n", iu->iu_id); } + + if (devinfo->use_streams) { + usb_free_urb(urb); + return; + } + + ret = usb_submit_urb(urb, GFP_ATOMIC); + if (ret) + dev_err(&urb->dev->dev, "failed submit status urb\n"); +} + +static void uas_data_out_cmplt(struct urb *urb) +{ + struct scsi_cmnd *cmnd = urb->context; + struct scsi_data_buffer *sdb = scsi_out(cmnd); + struct uas_cmd_info *cmdinfo = (void *)&cmnd->SCp; + + cmdinfo->state |= COMPLETED_DATA_OUT; + + sdb->resid = sdb->length - urb->actual_length; + usb_free_urb(urb); + + if (cmdinfo->state & DATA_COMPLETES_CMD) + cmnd->scsi_done(cmnd); } -static void uas_data_cmplt(struct urb *urb) +static void uas_data_in_cmplt(struct urb *urb) { - struct scsi_data_buffer *sdb = urb->context; + struct scsi_cmnd *cmnd = urb->context; + struct scsi_data_buffer *sdb = scsi_in(cmnd); + struct uas_cmd_info *cmdinfo = (void *)&cmnd->SCp; + + cmdinfo->state |= COMPLETED_DATA_IN; + sdb->resid = sdb->length - urb->actual_length; usb_free_urb(urb); + + if (cmdinfo->state & DATA_COMPLETES_CMD) + cmnd->scsi_done(cmnd); } static struct urb *uas_alloc_data_urb(struct uas_dev_info *devinfo, gfp_t gfp, - unsigned int pipe, u16 stream_id, - struct scsi_data_buffer *sdb, - enum dma_data_direction dir) + unsigned int pipe, struct scsi_cmnd *cmnd, + enum dma_data_direction dir) { + struct uas_cmd_info *cmdinfo = (void *)&cmnd->SCp; struct usb_device *udev = devinfo->udev; struct urb *urb = usb_alloc_urb(0, gfp); + struct scsi_data_buffer *sdb; + usb_complete_t complete_fn; + u16 stream_id = cmdinfo->stream; if (!urb) goto out; - usb_fill_bulk_urb(urb, udev, pipe, NULL, sdb->length, uas_data_cmplt, - sdb); - if (devinfo->use_streams) - urb->stream_id = stream_id; + if (dir == DMA_FROM_DEVICE) { + sdb = scsi_in(cmnd); + complete_fn = uas_data_in_cmplt; + } else { + sdb = scsi_out(cmnd); + complete_fn = uas_data_out_cmplt; + } + usb_fill_bulk_urb(urb, udev, pipe, NULL, sdb->length, + complete_fn, cmnd); + urb->stream_id = stream_id; urb->num_sgs = udev->bus->sg_tablesize ? sdb->table.nents : 0; urb->sg = sdb->table.sgl; out: @@ -289,7 +324,7 @@ } static struct urb *uas_alloc_sense_urb(struct uas_dev_info *devinfo, gfp_t gfp, - struct scsi_cmnd *cmnd, u16 stream_id) + struct Scsi_Host *shost, u16 stream_id) { struct usb_device *udev = devinfo->udev; struct urb *urb = usb_alloc_urb(0, gfp); @@ -303,7 +338,7 @@ goto free; usb_fill_bulk_urb(urb, udev, devinfo->status_pipe, iu, sizeof(*iu), - uas_stat_cmplt, cmnd->device); + uas_stat_cmplt, shost); urb->stream_id = stream_id; urb->transfer_flags |= URB_FREE_BUFFER; out: @@ -334,7 +369,10 @@ goto free; iu->iu_id = IU_ID_COMMAND; - iu->tag = cpu_to_be16(stream_id); + if (blk_rq_tagged(cmnd->request)) + iu->tag = cpu_to_be16(cmnd->request->tag + 2); + else + iu->tag = cpu_to_be16(1); iu->prio_attr = UAS_SIMPLE_TAG; iu->len = len; int_to_scsilun(sdev->lun, &iu->lun); @@ -362,8 +400,8 @@ struct uas_cmd_info *cmdinfo = (void *)&cmnd->SCp; if (cmdinfo->state & ALLOC_STATUS_URB) { - cmdinfo->status_urb = uas_alloc_sense_urb(devinfo, gfp, cmnd, - cmdinfo->stream); + cmdinfo->status_urb = uas_alloc_sense_urb(devinfo, gfp, + cmnd->device->host, cmdinfo->stream); if (!cmdinfo->status_urb) return SCSI_MLQUEUE_DEVICE_BUSY; cmdinfo->state &= ~ALLOC_STATUS_URB; @@ -380,8 +418,8 @@ if (cmdinfo->state & ALLOC_DATA_IN_URB) { cmdinfo->data_in_urb = uas_alloc_data_urb(devinfo, gfp, - devinfo->data_in_pipe, cmdinfo->stream, - scsi_in(cmnd), DMA_FROM_DEVICE); + devinfo->data_in_pipe, cmnd, + DMA_FROM_DEVICE); if (!cmdinfo->data_in_urb) return SCSI_MLQUEUE_DEVICE_BUSY; cmdinfo->state &= ~ALLOC_DATA_IN_URB; @@ -398,8 +436,8 @@ if (cmdinfo->state & ALLOC_DATA_OUT_URB) { cmdinfo->data_out_urb = uas_alloc_data_urb(devinfo, gfp, - devinfo->data_out_pipe, cmdinfo->stream, - scsi_out(cmnd), DMA_TO_DEVICE); + devinfo->data_out_pipe, cmnd, + DMA_TO_DEVICE); if (!cmdinfo->data_out_urb) return SCSI_MLQUEUE_DEVICE_BUSY; cmdinfo->state &= ~ALLOC_DATA_OUT_URB; @@ -444,13 +482,13 @@ BUILD_BUG_ON(sizeof(struct uas_cmd_info) > sizeof(struct scsi_pointer)); - if (!cmdinfo->status_urb && sdev->current_cmnd) + if (devinfo->cmnd) return SCSI_MLQUEUE_DEVICE_BUSY; if (blk_rq_tagged(cmnd->request)) { - cmdinfo->stream = cmnd->request->tag + 1; + cmdinfo->stream = cmnd->request->tag + 2; } else { - sdev->current_cmnd = cmnd; + devinfo->cmnd = cmnd; cmdinfo->stream = 1; } @@ -472,7 +510,8 @@ } if (!devinfo->use_streams) { - cmdinfo->state &= ~(SUBMIT_DATA_IN_URB | SUBMIT_DATA_OUT_URB); + cmdinfo->state &= ~(SUBMIT_DATA_IN_URB | SUBMIT_DATA_OUT_URB | + ALLOC_STATUS_URB | SUBMIT_STATUS_URB); cmdinfo->stream = 0; } @@ -551,7 +590,7 @@ { struct uas_dev_info *devinfo = sdev->hostdata; scsi_set_tag_type(sdev, MSG_ORDERED_TAG); - scsi_activate_tcq(sdev, devinfo->qdepth - 1); + scsi_activate_tcq(sdev, devinfo->qdepth - 2); return 0; } @@ -589,22 +628,34 @@ intf->desc.bInterfaceProtocol == USB_PR_UAS); } +static int uas_isnt_supported(struct usb_device *udev) +{ + struct usb_hcd *hcd = bus_to_hcd(udev->bus); + + dev_warn(&udev->dev, "The driver for the USB controller %s does not " + "support scatter-gather which is\n", + hcd->driver->description); + dev_warn(&udev->dev, "required by the UAS driver. Please try an" + "alternative USB controller if you wish to use UAS.\n"); + return -ENODEV; +} + static int uas_switch_interface(struct usb_device *udev, struct usb_interface *intf) { int i; - - if (uas_is_interface(intf->cur_altsetting)) - return 0; + int sg_supported = udev->bus->sg_tablesize != 0; for (i = 0; i < intf->num_altsetting; i++) { struct usb_host_interface *alt = &intf->altsetting[i]; - if (alt == intf->cur_altsetting) - continue; - if (uas_is_interface(alt)) + + if (uas_is_interface(alt)) { + if (!sg_supported) + return uas_isnt_supported(udev); return usb_set_interface(udev, alt->desc.bInterfaceNumber, alt->desc.bAlternateSetting); + } } return -ENODEV; @@ -619,6 +670,7 @@ unsigned i, n_endpoints = intf->cur_altsetting->desc.bNumEndpoints; devinfo->uas_sense_old = 0; + devinfo->cmnd = NULL; for (i = 0; i < n_endpoints; i++) { unsigned char *extra = endpoint[i].extra; @@ -670,6 +722,40 @@ } } +static int uas_alloc_status_urb(struct uas_dev_info *devinfo, + struct Scsi_Host *shost) +{ + if (devinfo->use_streams) { + devinfo->status_urb = NULL; + return 0; + } + + devinfo->status_urb = uas_alloc_sense_urb(devinfo, GFP_KERNEL, + shost, 0); + if (!devinfo->status_urb) + goto err_s_urb; + + if (usb_submit_urb(devinfo->status_urb, GFP_KERNEL)) + goto err_submit_urb; + + return 0; +err_submit_urb: + usb_free_urb(devinfo->status_urb); +err_s_urb: + return -ENOMEM; +} + +static void uas_free_streams(struct uas_dev_info *devinfo) +{ + struct usb_device *udev = devinfo->udev; + struct usb_host_endpoint *eps[3]; + + eps[0] = usb_pipe_endpoint(udev, devinfo->status_pipe); + eps[1] = usb_pipe_endpoint(udev, devinfo->data_in_pipe); + eps[2] = usb_pipe_endpoint(udev, devinfo->data_out_pipe); + usb_free_streams(devinfo->intf, eps, 3, GFP_KERNEL); +} + /* * XXX: What I'd like to do here is register a SCSI host for each USB host in * the system. Follow usb-storage's design of registering a SCSI host for @@ -699,18 +785,33 @@ shost->max_id = 1; shost->sg_tablesize = udev->bus->sg_tablesize; - result = scsi_add_host(shost, &intf->dev); + devinfo->intf = intf; + devinfo->udev = udev; + uas_configure_endpoints(devinfo); + + result = scsi_init_shared_tag_map(shost, devinfo->qdepth - 2); if (result) goto free; + + result = scsi_add_host(shost, &intf->dev); + if (result) + goto deconfig_eps; + shost->hostdata[0] = (unsigned long)devinfo; - devinfo->intf = intf; - devinfo->udev = udev; - uas_configure_endpoints(devinfo); + result = uas_alloc_status_urb(devinfo, shost); + if (result) + goto err_alloc_status; scsi_scan_host(shost); usb_set_intfdata(intf, shost); return result; + +err_alloc_status: + scsi_remove_host(shost); + shost = NULL; +deconfig_eps: + uas_free_streams(devinfo); free: kfree(devinfo); if (shost) @@ -732,18 +833,13 @@ static void uas_disconnect(struct usb_interface *intf) { - struct usb_device *udev = interface_to_usbdev(intf); - struct usb_host_endpoint *eps[3]; struct Scsi_Host *shost = usb_get_intfdata(intf); struct uas_dev_info *devinfo = (void *)shost->hostdata[0]; scsi_remove_host(shost); - - eps[0] = usb_pipe_endpoint(udev, devinfo->status_pipe); - eps[1] = usb_pipe_endpoint(udev, devinfo->data_in_pipe); - eps[2] = usb_pipe_endpoint(udev, devinfo->data_out_pipe); - usb_free_streams(intf, eps, 3, GFP_KERNEL); - + usb_kill_urb(devinfo->status_urb); + usb_free_urb(devinfo->status_urb); + uas_free_streams(devinfo); kfree(devinfo); } --- linux-3.2.0.orig/drivers/usb/class/cdc-acm.c +++ linux-3.2.0/drivers/usb/class/cdc-acm.c @@ -554,10 +554,18 @@ static void acm_tty_hangup(struct tty_struct *tty) { - struct acm *acm = tty->driver_data; - tty_port_hangup(&acm->port); + struct acm *acm; + mutex_lock(&open_mutex); + acm = tty->driver_data; + + if (!acm) + goto out; + + tty_port_hangup(&acm->port); acm_port_down(acm); + +out: mutex_unlock(&open_mutex); } @@ -1183,6 +1191,8 @@ i = device_create_file(&intf->dev, &dev_attr_wCountryCodes); if (i < 0) { kfree(acm->country_codes); + acm->country_codes = NULL; + acm->country_code_size = 0; goto skip_countries; } @@ -1191,6 +1201,8 @@ if (i < 0) { device_remove_file(&intf->dev, &dev_attr_wCountryCodes); kfree(acm->country_codes); + acm->country_codes = NULL; + acm->country_code_size = 0; goto skip_countries; } } --- linux-3.2.0.orig/drivers/usb/class/cdc-wdm.c +++ linux-3.2.0/drivers/usb/class/cdc-wdm.c @@ -57,6 +57,8 @@ #define WDM_MAX 16 +/* CDC-WMC r1.1 requires wMaxCommand to be "at least 256 decimal (0x100)" */ +#define WDM_DEFAULT_BUFSIZE 256 static DEFINE_MUTEX(wdm_mutex); @@ -88,7 +90,8 @@ int count; dma_addr_t shandle; dma_addr_t ihandle; - struct mutex lock; + struct mutex wlock; + struct mutex rlock; wait_queue_head_t wait; struct work_struct rxwork; int werr; @@ -105,8 +108,9 @@ spin_lock(&desc->iuspin); desc->werr = urb->status; spin_unlock(&desc->iuspin); - clear_bit(WDM_IN_USE, &desc->flags); kfree(desc->outbuf); + desc->outbuf = NULL; + clear_bit(WDM_IN_USE, &desc->flags); wake_up(&desc->wait); } @@ -309,7 +313,7 @@ if (we < 0) return -EIO; - desc->outbuf = buf = kmalloc(count, GFP_KERNEL); + buf = kmalloc(count, GFP_KERNEL); if (!buf) { rv = -ENOMEM; goto outnl; @@ -323,7 +327,7 @@ } /* concurrent writes and disconnect */ - r = mutex_lock_interruptible(&desc->lock); + r = mutex_lock_interruptible(&desc->wlock); rv = -ERESTARTSYS; if (r) { kfree(buf); @@ -373,10 +377,12 @@ req->wIndex = desc->inum; req->wLength = cpu_to_le16(count); set_bit(WDM_IN_USE, &desc->flags); + desc->outbuf = buf; rv = usb_submit_urb(desc->command, GFP_KERNEL); if (rv < 0) { kfree(buf); + desc->outbuf = NULL; clear_bit(WDM_IN_USE, &desc->flags); dev_err(&desc->intf->dev, "Tx URB error: %d\n", rv); } else { @@ -386,7 +392,7 @@ out: usb_autopm_put_interface(desc->intf); outnp: - mutex_unlock(&desc->lock); + mutex_unlock(&desc->wlock); outnl: return rv < 0 ? rv : count; } @@ -394,16 +400,17 @@ static ssize_t wdm_read (struct file *file, char __user *buffer, size_t count, loff_t *ppos) { - int rv, cntr = 0; + int rv, cntr; int i = 0; struct wdm_device *desc = file->private_data; - rv = mutex_lock_interruptible(&desc->lock); /*concurrent reads */ + rv = mutex_lock_interruptible(&desc->rlock); /*concurrent reads */ if (rv < 0) return -ERESTARTSYS; - if (desc->length == 0) { + cntr = ACCESS_ONCE(desc->length); + if (cntr == 0) { desc->read = 0; retry: if (test_bit(WDM_DISCONNECTING, &desc->flags)) { @@ -453,17 +460,20 @@ spin_unlock_irq(&desc->iuspin); goto retry; } - clear_bit(WDM_READ, &desc->flags); + cntr = desc->length; spin_unlock_irq(&desc->iuspin); } - cntr = count > desc->length ? desc->length : count; + if (cntr > count) + cntr = count; rv = copy_to_user(buffer, desc->ubuf, cntr); if (rv > 0) { rv = -EFAULT; goto err; } + spin_lock_irq(&desc->iuspin); + for (i = 0; i < desc->length - cntr; i++) desc->ubuf[i] = desc->ubuf[i + cntr]; @@ -471,10 +481,13 @@ /* in case we had outstanding data */ if (!desc->length) clear_bit(WDM_READ, &desc->flags); + + spin_unlock_irq(&desc->iuspin); + rv = cntr; err: - mutex_unlock(&desc->lock); + mutex_unlock(&desc->rlock); return rv; } @@ -483,11 +496,13 @@ struct wdm_device *desc = file->private_data; wait_event(desc->wait, !test_bit(WDM_IN_USE, &desc->flags)); - if (desc->werr < 0) + + /* cannot dereference desc->intf if WDM_DISCONNECTING */ + if (desc->werr < 0 && !test_bit(WDM_DISCONNECTING, &desc->flags)) dev_err(&desc->intf->dev, "Error in flush path: %d\n", desc->werr); - return desc->werr; + return usb_translate_errors(desc->werr); } static unsigned int wdm_poll(struct file *file, struct poll_table_struct *wait) @@ -498,7 +513,7 @@ spin_lock_irqsave(&desc->iuspin, flags); if (test_bit(WDM_DISCONNECTING, &desc->flags)) { - mask = POLLERR; + mask = POLLHUP | POLLERR; spin_unlock_irqrestore(&desc->iuspin, flags); goto desc_out; } @@ -540,7 +555,8 @@ } intf->needs_remote_wakeup = 1; - mutex_lock(&desc->lock); + /* using write lock to protect desc->count */ + mutex_lock(&desc->wlock); if (!desc->count++) { desc->werr = 0; desc->rerr = 0; @@ -553,7 +569,7 @@ } else { rv = 0; } - mutex_unlock(&desc->lock); + mutex_unlock(&desc->wlock); usb_autopm_put_interface(desc->intf); out: mutex_unlock(&wdm_mutex); @@ -565,15 +581,22 @@ struct wdm_device *desc = file->private_data; mutex_lock(&wdm_mutex); - mutex_lock(&desc->lock); + + /* using write lock to protect desc->count */ + mutex_lock(&desc->wlock); desc->count--; - mutex_unlock(&desc->lock); + mutex_unlock(&desc->wlock); if (!desc->count) { - dev_dbg(&desc->intf->dev, "wdm_release: cleanup"); - kill_urbs(desc); - if (!test_bit(WDM_DISCONNECTING, &desc->flags)) + if (!test_bit(WDM_DISCONNECTING, &desc->flags)) { + dev_dbg(&desc->intf->dev, "wdm_release: cleanup"); + kill_urbs(desc); desc->intf->needs_remote_wakeup = 0; + } else { + /* must avoid dev_printk here as desc->intf is invalid */ + pr_debug(KBUILD_MODNAME " %s: device gone - cleaning up\n", __func__); + cleanup(desc); + } } mutex_unlock(&wdm_mutex); return 0; @@ -630,7 +653,7 @@ struct usb_cdc_dmm_desc *dmhd; u8 *buffer = intf->altsetting->extra; int buflen = intf->altsetting->extralen; - u16 maxcom = 0; + u16 maxcom = WDM_DEFAULT_BUFSIZE; if (!buffer) goto out; @@ -665,7 +688,8 @@ desc = kzalloc(sizeof(struct wdm_device), GFP_KERNEL); if (!desc) goto out; - mutex_init(&desc->lock); + mutex_init(&desc->rlock); + mutex_init(&desc->wlock); spin_lock_init(&desc->iuspin); init_waitqueue_head(&desc->wait); desc->wMaxCommand = maxcom; @@ -716,7 +740,7 @@ goto err; desc->inbuf = usb_alloc_coherent(interface_to_usbdev(intf), - desc->bMaxPacketSize0, + desc->wMaxCommand, GFP_KERNEL, &desc->response->transfer_dma); if (!desc->inbuf) @@ -779,13 +803,17 @@ /* to terminate pending flushes */ clear_bit(WDM_IN_USE, &desc->flags); spin_unlock_irqrestore(&desc->iuspin, flags); - mutex_lock(&desc->lock); + wake_up_all(&desc->wait); + mutex_lock(&desc->rlock); + mutex_lock(&desc->wlock); kill_urbs(desc); cancel_work_sync(&desc->rxwork); - mutex_unlock(&desc->lock); - wake_up_all(&desc->wait); + mutex_unlock(&desc->wlock); + mutex_unlock(&desc->rlock); if (!desc->count) cleanup(desc); + else + dev_dbg(&intf->dev, "%s: %d open files - postponing cleanup\n", __func__, desc->count); mutex_unlock(&wdm_mutex); } @@ -798,8 +826,10 @@ dev_dbg(&desc->intf->dev, "wdm%d_suspend\n", intf->minor); /* if this is an autosuspend the caller does the locking */ - if (!PMSG_IS_AUTO(message)) - mutex_lock(&desc->lock); + if (!PMSG_IS_AUTO(message)) { + mutex_lock(&desc->rlock); + mutex_lock(&desc->wlock); + } spin_lock_irq(&desc->iuspin); if (PMSG_IS_AUTO(message) && @@ -815,8 +845,10 @@ kill_urbs(desc); cancel_work_sync(&desc->rxwork); } - if (!PMSG_IS_AUTO(message)) - mutex_unlock(&desc->lock); + if (!PMSG_IS_AUTO(message)) { + mutex_unlock(&desc->wlock); + mutex_unlock(&desc->rlock); + } return rv; } @@ -854,7 +886,8 @@ { struct wdm_device *desc = usb_get_intfdata(intf); - mutex_lock(&desc->lock); + mutex_lock(&desc->rlock); + mutex_lock(&desc->wlock); kill_urbs(desc); /* @@ -876,7 +909,8 @@ int rv; rv = recover_from_urb_loss(desc); - mutex_unlock(&desc->lock); + mutex_unlock(&desc->wlock); + mutex_unlock(&desc->rlock); return 0; } --- linux-3.2.0.orig/drivers/usb/renesas_usbhs/mod_gadget.c +++ linux-3.2.0/drivers/usb/renesas_usbhs/mod_gadget.c @@ -816,6 +816,11 @@ return usbhsg_try_stop(priv, USBHSG_STATUS_STARTED); } +static void usbhs_mod_gadget_release(struct device *pdev) +{ + /* do nothing */ +} + int usbhs_mod_gadget_probe(struct usbhs_priv *priv) { struct usbhsg_gpriv *gpriv; @@ -864,6 +869,7 @@ */ dev_set_name(&gpriv->gadget.dev, "gadget"); gpriv->gadget.dev.parent = dev; + gpriv->gadget.dev.release = usbhs_mod_gadget_release; gpriv->gadget.name = "renesas_usbhs_udc"; gpriv->gadget.ops = &usbhsg_gadget_ops; gpriv->gadget.is_dualspeed = 1; --- linux-3.2.0.orig/drivers/usb/gadget/uvc_v4l2.c +++ linux-3.2.0/drivers/usb/gadget/uvc_v4l2.c @@ -39,7 +39,7 @@ if (data->length < 0) return usb_ep_set_halt(cdev->gadget->ep0); - req->length = min(uvc->event_length, data->length); + req->length = min_t(unsigned int, uvc->event_length, data->length); req->zero = data->length < uvc->event_length; req->dma = DMA_ADDR_INVALID; --- linux-3.2.0.orig/drivers/usb/gadget/fsl_udc_core.c +++ linux-3.2.0/drivers/usb/gadget/fsl_udc_core.c @@ -736,6 +736,8 @@ lastreq = list_entry(ep->queue.prev, struct fsl_req, queue); lastreq->tail->next_td_ptr = cpu_to_hc32(req->head->td_dma & DTD_ADDR_MASK); + /* Ensure dTD's next dtd pointer to be updated */ + wmb(); /* Read prime bit, if 1 goto done */ if (fsl_readl(&dr_regs->endpointprime) & bitmask) return; @@ -768,7 +770,7 @@ * @is_last: return flag if it is the last dTD of the request * return: pointer to the built dTD */ static struct ep_td_struct *fsl_build_dtd(struct fsl_req *req, unsigned *length, - dma_addr_t *dma, int *is_last) + dma_addr_t *dma, int *is_last, gfp_t gfp_flags) { u32 swap_temp; struct ep_td_struct *dtd; @@ -777,7 +779,7 @@ *length = min(req->req.length - req->req.actual, (unsigned)EP_MAX_LENGTH_TRANSFER); - dtd = dma_pool_alloc(udc_controller->td_pool, GFP_KERNEL, dma); + dtd = dma_pool_alloc(udc_controller->td_pool, gfp_flags, dma); if (dtd == NULL) return dtd; @@ -827,7 +829,7 @@ } /* Generate dtd chain for a request */ -static int fsl_req_to_dtd(struct fsl_req *req) +static int fsl_req_to_dtd(struct fsl_req *req, gfp_t gfp_flags) { unsigned count; int is_last; @@ -836,7 +838,7 @@ dma_addr_t dma; do { - dtd = fsl_build_dtd(req, &count, &dma, &is_last); + dtd = fsl_build_dtd(req, &count, &dma, &is_last, gfp_flags); if (dtd == NULL) return -ENOMEM; @@ -910,13 +912,11 @@ req->req.actual = 0; req->dtd_count = 0; - spin_lock_irqsave(&udc->lock, flags); - /* build dtds and push them to device queue */ - if (!fsl_req_to_dtd(req)) { + if (!fsl_req_to_dtd(req, gfp_flags)) { + spin_lock_irqsave(&udc->lock, flags); fsl_queue_td(ep, req); } else { - spin_unlock_irqrestore(&udc->lock, flags); return -ENOMEM; } @@ -1295,7 +1295,7 @@ ep_is_in(ep) ? DMA_TO_DEVICE : DMA_FROM_DEVICE); req->mapped = 1; - if (fsl_req_to_dtd(req) == 0) + if (fsl_req_to_dtd(req, GFP_ATOMIC) == 0) fsl_queue_td(ep, req); else return -ENOMEM; @@ -1379,7 +1379,7 @@ req->mapped = 1; /* prime the data phase */ - if ((fsl_req_to_dtd(req) == 0)) + if ((fsl_req_to_dtd(req, GFP_ATOMIC) == 0)) fsl_queue_td(ep, req); else /* no mem */ goto stall; --- linux-3.2.0.orig/drivers/usb/gadget/f_fs.c +++ linux-3.2.0/drivers/usb/gadget/f_fs.c @@ -712,7 +712,7 @@ if (code == FUNCTIONFS_INTERFACE_REVMAP) { struct ffs_function *func = ffs->func; ret = func ? ffs_func_revmap_intf(func, value) : -ENODEV; - } else if (gadget->ops->ioctl) { + } else if (gadget && gadget->ops->ioctl) { ret = gadget->ops->ioctl(gadget, code, value); } else { ret = -ENOTTY; --- linux-3.2.0.orig/drivers/usb/gadget/f_mass_storage.c +++ linux-3.2.0/drivers/usb/gadget/f_mass_storage.c @@ -2182,7 +2182,7 @@ common->data_size_from_cmnd = 0; sprintf(unknown, "Unknown x%02x", common->cmnd[0]); reply = check_command(common, common->cmnd_size, - DATA_DIR_UNKNOWN, 0xff, 0, unknown); + DATA_DIR_UNKNOWN, ~0, 0, unknown); if (reply == 0) { common->curlun->sense_data = SS_INVALID_COMMAND; reply = -EINVAL; --- linux-3.2.0.orig/drivers/usb/gadget/pch_udc.c +++ linux-3.2.0/drivers/usb/gadget/pch_udc.c @@ -311,6 +311,7 @@ * @registered: driver regsitered with system * @suspended: driver in suspended state * @connected: gadget driver associated + * @vbus_session: required vbus_session state * @set_cfg_not_acked: pending acknowledgement 4 setup * @waiting_zlp_ack: pending acknowledgement 4 ZLP * @data_requests: DMA pool for data requests @@ -337,6 +338,7 @@ registered:1, suspended:1, connected:1, + vbus_session:1, set_cfg_not_acked:1, waiting_zlp_ack:1; struct pci_pool *data_requests; @@ -554,6 +556,29 @@ } /** + * pch_udc_reconnect() - This API initializes usb device controller, + * and clear the disconnect status. + * @dev: Reference to pch_udc_regs structure + */ +static void pch_udc_init(struct pch_udc_dev *dev); +static void pch_udc_reconnect(struct pch_udc_dev *dev) +{ + pch_udc_init(dev); + + /* enable device interrupts */ + /* pch_udc_enable_interrupts() */ + pch_udc_bit_clr(dev, UDC_DEVIRQMSK_ADDR, + UDC_DEVINT_UR | UDC_DEVINT_ENUM); + + /* Clear the disconnect */ + pch_udc_bit_set(dev, UDC_DEVCTL_ADDR, UDC_DEVCTL_RES); + pch_udc_bit_clr(dev, UDC_DEVCTL_ADDR, UDC_DEVCTL_SD); + mdelay(1); + /* Resume USB signalling */ + pch_udc_bit_clr(dev, UDC_DEVCTL_ADDR, UDC_DEVCTL_RES); +} + +/** * pch_udc_vbus_session() - set or clearr the disconnect status. * @dev: Reference to pch_udc_regs structure * @is_active: Parameter specifying the action @@ -563,10 +588,18 @@ static inline void pch_udc_vbus_session(struct pch_udc_dev *dev, int is_active) { - if (is_active) - pch_udc_clear_disconnect(dev); - else + if (is_active) { + pch_udc_reconnect(dev); + dev->vbus_session = 1; + } else { + if (dev->driver && dev->driver->disconnect) { + spin_unlock(&dev->lock); + dev->driver->disconnect(&dev->gadget); + spin_lock(&dev->lock); + } pch_udc_set_disconnect(dev); + dev->vbus_session = 0; + } } /** @@ -1126,7 +1159,17 @@ if (!gadget) return -EINVAL; dev = container_of(gadget, struct pch_udc_dev, gadget); - pch_udc_vbus_session(dev, is_on); + if (is_on) { + pch_udc_reconnect(dev); + } else { + if (dev->driver && dev->driver->disconnect) { + spin_unlock(&dev->lock); + dev->driver->disconnect(&dev->gadget); + spin_lock(&dev->lock); + } + pch_udc_set_disconnect(dev); + } + return 0; } @@ -2335,8 +2378,11 @@ /* Complete request queue */ empty_req_queue(ep); } - if (dev->driver && dev->driver->disconnect) + if (dev->driver && dev->driver->disconnect) { + spin_unlock(&dev->lock); dev->driver->disconnect(&dev->gadget); + spin_lock(&dev->lock); + } } /** @@ -2371,6 +2417,11 @@ pch_udc_set_dma(dev, DMA_DIR_TX); pch_udc_set_dma(dev, DMA_DIR_RX); pch_udc_ep_set_rrdy(&(dev->ep[UDC_EP0OUT_IDX])); + + /* enable device interrupts */ + pch_udc_enable_interrupts(dev, UDC_DEVINT_UR | UDC_DEVINT_US | + UDC_DEVINT_ES | UDC_DEVINT_ENUM | + UDC_DEVINT_SI | UDC_DEVINT_SC); } /** @@ -2472,8 +2523,24 @@ if (dev_intr & UDC_DEVINT_SC) pch_udc_svc_cfg_interrupt(dev); /* USB Suspend interrupt */ - if (dev_intr & UDC_DEVINT_US) + if (dev_intr & UDC_DEVINT_US) { + if (dev->driver + && dev->driver->suspend) { + spin_unlock(&dev->lock); + dev->driver->suspend(&dev->gadget); + spin_lock(&dev->lock); + } + + if (dev->vbus_session == 0) { + if (dev->driver && dev->driver->disconnect) { + spin_unlock(&dev->lock); + dev->driver->disconnect(&dev->gadget); + spin_lock(&dev->lock); + } + pch_udc_reconnect(dev); + } dev_dbg(&dev->pdev->dev, "USB_SUSPEND\n"); + } /* Clear the SOF interrupt, if enabled */ if (dev_intr & UDC_DEVINT_SOF) dev_dbg(&dev->pdev->dev, "SOF\n"); @@ -2499,6 +2566,14 @@ dev_intr = pch_udc_read_device_interrupts(dev); ep_intr = pch_udc_read_ep_interrupts(dev); + /* For a hot plug, this find that the controller is hung up. */ + if (dev_intr == ep_intr) + if (dev_intr == pch_udc_readl(dev, UDC_DEVCFG_ADDR)) { + dev_dbg(&dev->pdev->dev, "UDC: Hung up\n"); + /* The controller is reset */ + pch_udc_writel(dev, UDC_SRST, UDC_SRST_ADDR); + return IRQ_HANDLED; + } if (dev_intr) /* Clear device interrupts */ pch_udc_write_device_interrupts(dev, dev_intr); @@ -2912,8 +2987,10 @@ } pch_udc = dev; /* initialize the hardware */ - if (pch_udc_pcd_init(dev)) + if (pch_udc_pcd_init(dev)) { + retval = -ENODEV; goto finished; + } if (request_irq(pdev->irq, pch_udc_isr, IRQF_SHARED, KBUILD_MODNAME, dev)) { dev_err(&pdev->dev, "%s: request_irq(%d) fail\n", __func__, --- linux-3.2.0.orig/drivers/usb/gadget/langwell_udc.c +++ linux-3.2.0/drivers/usb/gadget/langwell_udc.c @@ -1522,8 +1522,7 @@ /* stop all USB activities */ -static void stop_activity(struct langwell_udc *dev, - struct usb_gadget_driver *driver) +static void stop_activity(struct langwell_udc *dev) { struct langwell_ep *ep; dev_dbg(&dev->pdev->dev, "---> %s()\n", __func__); @@ -1535,9 +1534,9 @@ } /* report disconnect; the driver is already quiesced */ - if (driver) { + if (dev->driver) { spin_unlock(&dev->lock); - driver->disconnect(&dev->gadget); + dev->driver->disconnect(&dev->gadget); spin_lock(&dev->lock); } @@ -1925,11 +1924,10 @@ /* stop all usb activities */ dev->gadget.speed = USB_SPEED_UNKNOWN; - stop_activity(dev, driver); - spin_unlock_irqrestore(&dev->lock, flags); - dev->gadget.dev.driver = NULL; dev->driver = NULL; + stop_activity(dev); + spin_unlock_irqrestore(&dev->lock, flags); device_remove_file(&dev->pdev->dev, &dev_attr_function); @@ -2733,7 +2731,7 @@ dev->bus_reset = 1; /* reset all the queues, stop all USB activities */ - stop_activity(dev, dev->driver); + stop_activity(dev); dev->usb_state = USB_STATE_DEFAULT; } else { dev_vdbg(&dev->pdev->dev, "device controller reset\n"); @@ -2741,7 +2739,7 @@ langwell_udc_reset(dev); /* reset all the queues, stop all USB activities */ - stop_activity(dev, dev->driver); + stop_activity(dev); /* reset ep0 dQH and endptctrl */ ep0_reset(dev); @@ -3367,7 +3365,7 @@ spin_lock_irq(&dev->lock); /* stop all usb activities */ - stop_activity(dev, dev->driver); + stop_activity(dev); spin_unlock_irq(&dev->lock); /* free dTD dma_pool and dQH */ --- linux-3.2.0.orig/drivers/usb/gadget/inode.c +++ linux-3.2.0/drivers/usb/gadget/inode.c @@ -1043,6 +1043,8 @@ // FIXME don't call this with the spinlock held ... if (copy_to_user (buf, dev->req->buf, len)) retval = -EFAULT; + else + retval = len; clean_req (dev->gadget->ep0, dev->req); /* NOTE userspace can't yet choose to stall */ } --- linux-3.2.0.orig/drivers/usb/gadget/file_storage.c +++ linux-3.2.0/drivers/usb/gadget/file_storage.c @@ -2569,7 +2569,7 @@ fsg->data_size_from_cmnd = 0; sprintf(unknown, "Unknown x%02x", fsg->cmnd[0]); if ((reply = check_command(fsg, fsg->cmnd_size, - DATA_DIR_UNKNOWN, 0xff, 0, unknown)) == 0) { + DATA_DIR_UNKNOWN, ~0, 0, unknown)) == 0) { fsg->curlun->sense_data = SS_INVALID_COMMAND; reply = -EINVAL; } --- linux-3.2.0.orig/drivers/usb/gadget/dummy_hcd.c +++ linux-3.2.0/drivers/usb/gadget/dummy_hcd.c @@ -925,7 +925,6 @@ dum->driver = NULL; - dummy_pullup(&dum->gadget, 0); return 0; } --- linux-3.2.0.orig/drivers/usb/gadget/f_subset.c +++ linux-3.2.0/drivers/usb/gadget/f_subset.c @@ -74,7 +74,7 @@ /* interface descriptor: */ -static struct usb_interface_descriptor subset_data_intf __initdata = { +static struct usb_interface_descriptor subset_data_intf = { .bLength = sizeof subset_data_intf, .bDescriptorType = USB_DT_INTERFACE, @@ -87,7 +87,7 @@ /* .iInterface = DYNAMIC */ }; -static struct usb_cdc_header_desc mdlm_header_desc __initdata = { +static struct usb_cdc_header_desc mdlm_header_desc = { .bLength = sizeof mdlm_header_desc, .bDescriptorType = USB_DT_CS_INTERFACE, .bDescriptorSubType = USB_CDC_HEADER_TYPE, @@ -95,7 +95,7 @@ .bcdCDC = cpu_to_le16(0x0110), }; -static struct usb_cdc_mdlm_desc mdlm_desc __initdata = { +static struct usb_cdc_mdlm_desc mdlm_desc = { .bLength = sizeof mdlm_desc, .bDescriptorType = USB_DT_CS_INTERFACE, .bDescriptorSubType = USB_CDC_MDLM_TYPE, @@ -111,7 +111,7 @@ * can't really use its struct. All we do here is say that we're using * the submode of "SAFE" which directly matches the CDC Subset. */ -static u8 mdlm_detail_desc[] __initdata = { +static u8 mdlm_detail_desc[] = { 6, USB_DT_CS_INTERFACE, USB_CDC_MDLM_DETAIL_TYPE, @@ -121,7 +121,7 @@ 0, /* network data capabilities ("raw" encapsulation) */ }; -static struct usb_cdc_ether_desc ether_desc __initdata = { +static struct usb_cdc_ether_desc ether_desc = { .bLength = sizeof ether_desc, .bDescriptorType = USB_DT_CS_INTERFACE, .bDescriptorSubType = USB_CDC_ETHERNET_TYPE, @@ -136,7 +136,7 @@ /* full speed support: */ -static struct usb_endpoint_descriptor fs_subset_in_desc __initdata = { +static struct usb_endpoint_descriptor fs_subset_in_desc = { .bLength = USB_DT_ENDPOINT_SIZE, .bDescriptorType = USB_DT_ENDPOINT, @@ -144,7 +144,7 @@ .bmAttributes = USB_ENDPOINT_XFER_BULK, }; -static struct usb_endpoint_descriptor fs_subset_out_desc __initdata = { +static struct usb_endpoint_descriptor fs_subset_out_desc = { .bLength = USB_DT_ENDPOINT_SIZE, .bDescriptorType = USB_DT_ENDPOINT, @@ -152,7 +152,7 @@ .bmAttributes = USB_ENDPOINT_XFER_BULK, }; -static struct usb_descriptor_header *fs_eth_function[] __initdata = { +static struct usb_descriptor_header *fs_eth_function[] = { (struct usb_descriptor_header *) &subset_data_intf, (struct usb_descriptor_header *) &mdlm_header_desc, (struct usb_descriptor_header *) &mdlm_desc, @@ -165,7 +165,7 @@ /* high speed support: */ -static struct usb_endpoint_descriptor hs_subset_in_desc __initdata = { +static struct usb_endpoint_descriptor hs_subset_in_desc = { .bLength = USB_DT_ENDPOINT_SIZE, .bDescriptorType = USB_DT_ENDPOINT, @@ -173,7 +173,7 @@ .wMaxPacketSize = cpu_to_le16(512), }; -static struct usb_endpoint_descriptor hs_subset_out_desc __initdata = { +static struct usb_endpoint_descriptor hs_subset_out_desc = { .bLength = USB_DT_ENDPOINT_SIZE, .bDescriptorType = USB_DT_ENDPOINT, @@ -181,7 +181,7 @@ .wMaxPacketSize = cpu_to_le16(512), }; -static struct usb_descriptor_header *hs_eth_function[] __initdata = { +static struct usb_descriptor_header *hs_eth_function[] = { (struct usb_descriptor_header *) &subset_data_intf, (struct usb_descriptor_header *) &mdlm_header_desc, (struct usb_descriptor_header *) &mdlm_desc, @@ -194,7 +194,7 @@ /* super speed support: */ -static struct usb_endpoint_descriptor ss_subset_in_desc __initdata = { +static struct usb_endpoint_descriptor ss_subset_in_desc = { .bLength = USB_DT_ENDPOINT_SIZE, .bDescriptorType = USB_DT_ENDPOINT, @@ -202,7 +202,7 @@ .wMaxPacketSize = cpu_to_le16(1024), }; -static struct usb_endpoint_descriptor ss_subset_out_desc __initdata = { +static struct usb_endpoint_descriptor ss_subset_out_desc = { .bLength = USB_DT_ENDPOINT_SIZE, .bDescriptorType = USB_DT_ENDPOINT, @@ -210,7 +210,7 @@ .wMaxPacketSize = cpu_to_le16(1024), }; -static struct usb_ss_ep_comp_descriptor ss_subset_bulk_comp_desc __initdata = { +static struct usb_ss_ep_comp_descriptor ss_subset_bulk_comp_desc = { .bLength = sizeof ss_subset_bulk_comp_desc, .bDescriptorType = USB_DT_SS_ENDPOINT_COMP, @@ -219,7 +219,7 @@ /* .bmAttributes = 0, */ }; -static struct usb_descriptor_header *ss_eth_function[] __initdata = { +static struct usb_descriptor_header *ss_eth_function[] = { (struct usb_descriptor_header *) &subset_data_intf, (struct usb_descriptor_header *) &mdlm_header_desc, (struct usb_descriptor_header *) &mdlm_desc, @@ -290,7 +290,7 @@ /* serial function driver setup/binding */ -static int __init +static int geth_bind(struct usb_configuration *c, struct usb_function *f) { struct usb_composite_dev *cdev = c->cdev; @@ -404,7 +404,7 @@ * Caller must have called @gether_setup(). Caller is also responsible * for calling @gether_cleanup() before module unload. */ -int __init geth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN]) +int geth_bind_config(struct usb_configuration *c, u8 ethaddr[ETH_ALEN]) { struct f_gether *geth; int status; --- linux-3.2.0.orig/drivers/usb/gadget/f_loopback.c +++ linux-3.2.0/drivers/usb/gadget/f_loopback.c @@ -418,7 +418,7 @@ /* support autoresume for remote wakeup testing */ if (autoresume) - sourcesink_driver.bmAttributes |= USB_CONFIG_ATT_WAKEUP; + loopback_driver.bmAttributes |= USB_CONFIG_ATT_WAKEUP; /* support OTG systems */ if (gadget_is_otg(cdev->gadget)) { --- linux-3.2.0.orig/drivers/usb/gadget/hid.c +++ linux-3.2.0/drivers/usb/gadget/hid.c @@ -60,9 +60,9 @@ /* .bDeviceClass = USB_CLASS_COMM, */ /* .bDeviceSubClass = 0, */ /* .bDeviceProtocol = 0, */ - .bDeviceClass = 0xEF, - .bDeviceSubClass = 2, - .bDeviceProtocol = 1, + .bDeviceClass = USB_CLASS_PER_INTERFACE, + .bDeviceSubClass = 0, + .bDeviceProtocol = 0, /* .bMaxPacketSize0 = f(hardware) */ /* Vendor and product id can be overridden by module parameters. */ --- linux-3.2.0.orig/drivers/usb/gadget/storage_common.c +++ linux-3.2.0/drivers/usb/gadget/storage_common.c @@ -598,16 +598,16 @@ | USB_5GBPS_OPERATION), .bFunctionalitySupport = USB_LOW_SPEED_OPERATION, .bU1devExitLat = USB_DEFAULT_U1_DEV_EXIT_LAT, - .bU2DevExitLat = USB_DEFAULT_U2_DEV_EXIT_LAT, + .bU2DevExitLat = cpu_to_le16(USB_DEFAULT_U2_DEV_EXIT_LAT), }; static __maybe_unused struct usb_bos_descriptor fsg_bos_desc = { .bLength = USB_DT_BOS_SIZE, .bDescriptorType = USB_DT_BOS, - .wTotalLength = USB_DT_BOS_SIZE + .wTotalLength = cpu_to_le16(USB_DT_BOS_SIZE + USB_DT_USB_EXT_CAP_SIZE - + USB_DT_USB_SS_CAP_SIZE, + + USB_DT_USB_SS_CAP_SIZE), .bNumDeviceCaps = 2, }; --- linux-3.2.0.orig/drivers/usb/gadget/udc-core.c +++ linux-3.2.0/drivers/usb/gadget/udc-core.c @@ -211,9 +211,9 @@ if (udc_is_newstyle(udc)) { udc->driver->disconnect(udc->gadget); + usb_gadget_disconnect(udc->gadget); udc->driver->unbind(udc->gadget); usb_gadget_udc_stop(udc->gadget, udc->driver); - usb_gadget_disconnect(udc->gadget); } else { usb_gadget_stop(udc->gadget, udc->driver); } @@ -359,9 +359,13 @@ struct usb_udc *udc = container_of(dev, struct usb_udc, dev); if (sysfs_streq(buf, "connect")) { + if (udc_is_newstyle(udc)) + usb_gadget_udc_start(udc->gadget, udc->driver); usb_gadget_connect(udc->gadget); } else if (sysfs_streq(buf, "disconnect")) { usb_gadget_disconnect(udc->gadget); + if (udc_is_newstyle(udc)) + usb_gadget_udc_stop(udc->gadget, udc->driver); } else { dev_err(dev, "unsupported command '%s'\n", buf); return -EINVAL; --- linux-3.2.0.orig/drivers/usb/gadget/uvc.h +++ linux-3.2.0/drivers/usb/gadget/uvc.h @@ -28,7 +28,7 @@ struct uvc_request_data { - unsigned int length; + __s32 length; __u8 data[60]; }; --- linux-3.2.0.orig/drivers/usb/host/pci-quirks.c +++ linux-3.2.0/drivers/usb/host/pci-quirks.c @@ -9,6 +9,7 @@ */ #include +#include #include #include #include @@ -712,12 +713,28 @@ return -ETIMEDOUT; } -bool usb_is_intel_switchable_xhci(struct pci_dev *pdev) +#define PCI_DEVICE_ID_INTEL_LYNX_POINT_XHCI 0x8C31 + +bool usb_is_intel_ppt_switchable_xhci(struct pci_dev *pdev) { return pdev->class == PCI_CLASS_SERIAL_USB_XHCI && pdev->vendor == PCI_VENDOR_ID_INTEL && pdev->device == PCI_DEVICE_ID_INTEL_PANTHERPOINT_XHCI; } + +/* The Intel Lynx Point chipset also has switchable ports. */ +bool usb_is_intel_lpt_switchable_xhci(struct pci_dev *pdev) +{ + return pdev->class == PCI_CLASS_SERIAL_USB_XHCI && + pdev->vendor == PCI_VENDOR_ID_INTEL && + pdev->device == PCI_DEVICE_ID_INTEL_LYNX_POINT_XHCI; +} + +bool usb_is_intel_switchable_xhci(struct pci_dev *pdev) +{ + return usb_is_intel_ppt_switchable_xhci(pdev) || + usb_is_intel_lpt_switchable_xhci(pdev); +} EXPORT_SYMBOL_GPL(usb_is_intel_switchable_xhci); /* @@ -742,6 +759,19 @@ { u32 ports_available; + /* Don't switchover the ports if the user hasn't compiled the xHCI + * driver. Otherwise they will see "dead" USB ports that don't power + * the devices. + */ + if (!IS_ENABLED(CONFIG_USB_XHCI_HCD)) { + dev_warn(&xhci_pdev->dev, + "CONFIG_USB_XHCI_HCD is turned off, " + "defaulting to EHCI.\n"); + dev_warn(&xhci_pdev->dev, + "USB 3.0 devices will work at USB 2.0 speeds.\n"); + return; + } + ports_available = 0xffffffff; /* Write USB3_PSSEN, the USB 3.0 Port SuperSpeed Enable * Register, to turn on SuperSpeed terminations for all @@ -825,9 +855,13 @@ } } - /* Disable any BIOS SMIs */ - writel(XHCI_LEGACY_DISABLE_SMI, - base + ext_cap_offset + XHCI_LEGACY_CONTROL_OFFSET); + val = readl(base + ext_cap_offset + XHCI_LEGACY_CONTROL_OFFSET); + /* Mask off (turn off) any enabled SMIs */ + val &= XHCI_LEGACY_DISABLE_SMI; + /* Mask all SMI events bits, RW1C */ + val |= XHCI_LEGACY_SMI_EVENTS; + /* Disable any BIOS SMIs and clear all SMI events*/ + writel(val, base + ext_cap_offset + XHCI_LEGACY_CONTROL_OFFSET); if (usb_is_intel_switchable_xhci(pdev)) usb_enable_xhci_ports(pdev); @@ -867,6 +901,22 @@ static void __devinit quirk_usb_early_handoff(struct pci_dev *pdev) { + /* Skip Netlogic mips SoC's internal PCI USB controller. + * This device does not need/support EHCI/OHCI handoff + */ + if (pdev->vendor == 0x184e) /* vendor Netlogic */ + return; + if (pdev->class != PCI_CLASS_SERIAL_USB_UHCI && + pdev->class != PCI_CLASS_SERIAL_USB_OHCI && + pdev->class != PCI_CLASS_SERIAL_USB_EHCI && + pdev->class != PCI_CLASS_SERIAL_USB_XHCI) + return; + + if (pci_enable_device(pdev) < 0) { + dev_warn(&pdev->dev, "Can't enable PCI device, " + "BIOS handoff failed.\n"); + return; + } if (pdev->class == PCI_CLASS_SERIAL_USB_UHCI) quirk_usb_handoff_uhci(pdev); else if (pdev->class == PCI_CLASS_SERIAL_USB_OHCI) @@ -875,5 +925,6 @@ quirk_usb_disable_ehci(pdev); else if (pdev->class == PCI_CLASS_SERIAL_USB_XHCI) quirk_usb_handoff_xhci(pdev); + pci_disable_device(pdev); } DECLARE_PCI_FIXUP_FINAL(PCI_ANY_ID, PCI_ANY_ID, quirk_usb_early_handoff); --- linux-3.2.0.orig/drivers/usb/host/ehci-fsl.c +++ linux-3.2.0/drivers/usb/host/ehci-fsl.c @@ -125,7 +125,7 @@ */ if (pdata->init && pdata->init(pdev)) { retval = -ENODEV; - goto err3; + goto err4; } /* Enable USB controller, 83xx or 8536 */ @@ -216,6 +216,8 @@ unsigned int port_offset) { u32 portsc; + struct usb_hcd *hcd = ehci_to_hcd(ehci); + void __iomem *non_ehci = hcd->regs; portsc = ehci_readl(ehci, &ehci->regs->port_status[port_offset]); portsc &= ~(PORT_PTS_MSK | PORT_PTS_PTW); @@ -231,6 +233,8 @@ portsc |= PORT_PTS_PTW; /* fall through */ case FSL_USB2_PHY_UTMI: + /* enable UTMI PHY */ + setbits32(non_ehci + FSL_SOC_USB_CTRL, CTRL_UTMI_PHY_EN); portsc |= PORT_PTS_UTMI; break; case FSL_USB2_PHY_NONE: --- linux-3.2.0.orig/drivers/usb/host/xhci-ring.c +++ linux-3.2.0/drivers/usb/host/xhci-ring.c @@ -1215,6 +1215,7 @@ * * Returns a zero-based port number, which is suitable for indexing into each of * the split roothubs' port arrays and bus state arrays. + * Add one to it in order to call xhci_find_slot_id_by_port. */ static unsigned int find_faked_portnum_from_hw_portnum(struct usb_hcd *hcd, struct xhci_hcd *xhci, u32 port_id) @@ -1335,7 +1336,7 @@ xhci_set_link_state(xhci, port_array, faked_port_index, XDEV_U0); slot_id = xhci_find_slot_id_by_port(hcd, xhci, - faked_port_index); + faked_port_index + 1); if (!slot_id) { xhci_dbg(xhci, "slot_id is zero\n"); goto cleanup; @@ -1643,7 +1644,6 @@ } break; case COMP_SHORT_TX: - xhci_warn(xhci, "WARN: short transfer on control ep\n"); if (td->urb->transfer_flags & URB_SHORT_NOT_OK) *status = -EREMOTEIO; else @@ -1734,8 +1734,12 @@ /* handle completion code */ switch (trb_comp_code) { case COMP_SUCCESS: - frame->status = 0; - break; + if (TRB_LEN(le32_to_cpu(event->transfer_len)) == 0) { + frame->status = 0; + break; + } + if ((xhci->quirks & XHCI_TRUST_TX_LENGTH)) + trb_comp_code = COMP_SHORT_TX; case COMP_SHORT_TX: frame->status = td->urb->transfer_flags & URB_SHORT_NOT_OK ? -EREMOTEIO : 0; @@ -1751,6 +1755,7 @@ break; case COMP_DEV_ERR: case COMP_STALL: + case COMP_TX_ERR: frame->status = -EPROTO; skip_td = true; break; @@ -1831,13 +1836,16 @@ switch (trb_comp_code) { case COMP_SUCCESS: /* Double check that the HW transferred everything. */ - if (event_trb != td->last_trb) { + if (event_trb != td->last_trb || + TRB_LEN(le32_to_cpu(event->transfer_len)) != 0) { xhci_warn(xhci, "WARN Successful completion " "on short TX\n"); if (td->urb->transfer_flags & URB_SHORT_NOT_OK) *status = -EREMOTEIO; else *status = 0; + if ((xhci->quirks & XHCI_TRUST_TX_LENGTH)) + trb_comp_code = COMP_SHORT_TX; } else { *status = 0; } @@ -1976,6 +1984,13 @@ * transfer type */ case COMP_SUCCESS: + if (TRB_LEN(le32_to_cpu(event->transfer_len)) == 0) + break; + if (xhci->quirks & XHCI_TRUST_TX_LENGTH) + trb_comp_code = COMP_SHORT_TX; + else + xhci_warn(xhci, "WARN Successful completion on short TX: " + "needs XHCI_TRUST_TX_LENGTH quirk?\n"); case COMP_SHORT_TX: break; case COMP_STOP: @@ -1985,7 +2000,7 @@ xhci_dbg(xhci, "Stopped on No-op or Link TRB\n"); break; case COMP_STALL: - xhci_warn(xhci, "WARN: Stalled endpoint\n"); + xhci_dbg(xhci, "Stalled endpoint\n"); ep->ep_state |= EP_HALTED; status = -EPIPE; break; @@ -1995,11 +2010,11 @@ break; case COMP_SPLIT_ERR: case COMP_TX_ERR: - xhci_warn(xhci, "WARN: transfer error on endpoint\n"); + xhci_dbg(xhci, "Transfer error on endpoint\n"); status = -EPROTO; break; case COMP_BABBLE: - xhci_warn(xhci, "WARN: babble error on endpoint\n"); + xhci_dbg(xhci, "Babble error on endpoint\n"); status = -EOVERFLOW; break; case COMP_DB_ERR: @@ -2342,7 +2357,7 @@ u32 irq_pending; /* Acknowledge the PCI interrupt */ irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending); - irq_pending |= 0x3; + irq_pending |= IMAN_IP; xhci_writel(xhci, irq_pending, &xhci->ir_set->irq_pending); } @@ -2561,7 +2576,7 @@ struct scatterlist *sg; sg = NULL; - num_sgs = urb->num_sgs; + num_sgs = urb->num_mapped_sgs; temp = urb->transfer_buffer_length; xhci_dbg(xhci, "count sg list trbs: \n"); @@ -2745,7 +2760,7 @@ return -EINVAL; num_trbs = count_sg_trbs_needed(xhci, urb); - num_sgs = urb->num_sgs; + num_sgs = urb->num_mapped_sgs; total_packet_count = roundup(urb->transfer_buffer_length, usb_endpoint_maxp(&urb->ep->desc)); @@ -3372,7 +3387,8 @@ /* Check TD length */ if (running_total != td_len) { xhci_err(xhci, "ISOC TD length unmatch\n"); - return -EINVAL; + ret = -EINVAL; + goto cleanup; } } --- linux-3.2.0.orig/drivers/usb/host/xhci-mem.c +++ linux-3.2.0/drivers/usb/host/xhci-mem.c @@ -1140,26 +1140,42 @@ } /* - * Convert bInterval expressed in frames (in 1-255 range) to exponent of + * Convert bInterval expressed in microframes (in 1-255 range) to exponent of * microframes, rounded down to nearest power of 2. */ -static unsigned int xhci_parse_frame_interval(struct usb_device *udev, - struct usb_host_endpoint *ep) +static unsigned int xhci_microframes_to_exponent(struct usb_device *udev, + struct usb_host_endpoint *ep, unsigned int desc_interval, + unsigned int min_exponent, unsigned int max_exponent) { unsigned int interval; - interval = fls(8 * ep->desc.bInterval) - 1; - interval = clamp_val(interval, 3, 10); - if ((1 << interval) != 8 * ep->desc.bInterval) + interval = fls(desc_interval) - 1; + interval = clamp_val(interval, min_exponent, max_exponent); + if ((1 << interval) != desc_interval) dev_warn(&udev->dev, "ep %#x - rounding interval to %d microframes, ep desc says %d microframes\n", ep->desc.bEndpointAddress, 1 << interval, - 8 * ep->desc.bInterval); + desc_interval); return interval; } +static unsigned int xhci_parse_microframe_interval(struct usb_device *udev, + struct usb_host_endpoint *ep) +{ + return xhci_microframes_to_exponent(udev, ep, + ep->desc.bInterval, 0, 15); +} + + +static unsigned int xhci_parse_frame_interval(struct usb_device *udev, + struct usb_host_endpoint *ep) +{ + return xhci_microframes_to_exponent(udev, ep, + ep->desc.bInterval * 8, 3, 10); +} + /* Return the polling or NAK interval. * * The polling interval is expressed in "microframes". If xHCI's Interval field @@ -1178,7 +1194,7 @@ /* Max NAK rate */ if (usb_endpoint_xfer_control(&ep->desc) || usb_endpoint_xfer_bulk(&ep->desc)) { - interval = ep->desc.bInterval; + interval = xhci_parse_microframe_interval(udev, ep); break; } /* Fall through - SS and HS isoc/int have same decoding */ @@ -1683,16 +1699,19 @@ { struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller); struct dev_info *dev_info, *next; + struct list_head *tt_list_head; + struct list_head *tt; + struct list_head *endpoints; + struct list_head *ep, *q; + struct xhci_tt_bw_info *tt_info; + struct xhci_interval_bw_table *bwt; + struct xhci_virt_ep *virt_ep; + unsigned long flags; int size; int i; /* Free the Event Ring Segment Table and the actual Event Ring */ - if (xhci->ir_set) { - xhci_writel(xhci, 0, &xhci->ir_set->erst_size); - xhci_write_64(xhci, 0, &xhci->ir_set->erst_base); - xhci_write_64(xhci, 0, &xhci->ir_set->erst_dequeue); - } size = sizeof(struct xhci_erst_entry)*(xhci->erst.num_entries); if (xhci->erst.entries) dma_free_coherent(&pdev->dev, size, @@ -1704,7 +1723,7 @@ xhci->event_ring = NULL; xhci_dbg(xhci, "Freed event ring\n"); - xhci_write_64(xhci, 0, &xhci->op_regs->cmd_ring); + xhci->cmd_ring_reserved_trbs = 0; if (xhci->cmd_ring) xhci_ring_free(xhci, xhci->cmd_ring); xhci->cmd_ring = NULL; @@ -1733,7 +1752,6 @@ xhci->medium_streams_pool = NULL; xhci_dbg(xhci, "Freed medium stream array pool\n"); - xhci_write_64(xhci, 0, &xhci->op_regs->dcbaa_ptr); if (xhci->dcbaa) dma_free_coherent(&pdev->dev, sizeof(*xhci->dcbaa), xhci->dcbaa, xhci->dcbaa->dma); @@ -1748,8 +1766,26 @@ } spin_unlock_irqrestore(&xhci->lock, flags); + bwt = &xhci->rh_bw->bw_table; + for (i = 0; i < XHCI_MAX_INTERVAL; i++) { + endpoints = &bwt->interval_bw[i].endpoints; + list_for_each_safe(ep, q, endpoints) { + virt_ep = list_entry(ep, struct xhci_virt_ep, bw_endpoint_list); + list_del(&virt_ep->bw_endpoint_list); + kfree(virt_ep); + } + } + + tt_list_head = &xhci->rh_bw->tts; + list_for_each_safe(tt, q, tt_list_head) { + tt_info = list_entry(tt, struct xhci_tt_bw_info, tt_list); + list_del(tt); + kfree(tt_info); + } + xhci->num_usb2_ports = 0; xhci->num_usb3_ports = 0; + xhci->num_active_eps = 0; kfree(xhci->usb2_ports); kfree(xhci->usb3_ports); kfree(xhci->port_array); @@ -2342,6 +2378,8 @@ fail: xhci_warn(xhci, "Couldn't initialize memory\n"); + xhci_halt(xhci); + xhci_reset(xhci); xhci_mem_cleanup(xhci); return -ENOMEM; } --- linux-3.2.0.orig/drivers/usb/host/uhci-q.c +++ linux-3.2.0/drivers/usb/host/uhci-q.c @@ -943,7 +943,7 @@ if (usb_pipein(urb->pipe)) status |= TD_CTRL_SPD; - i = urb->num_sgs; + i = urb->num_mapped_sgs; if (len > 0 && i > 0) { sg = urb->sg; data = sg_dma_address(sg); --- linux-3.2.0.orig/drivers/usb/host/xhci.c +++ linux-3.2.0/drivers/usb/host/xhci.c @@ -200,14 +200,14 @@ ret = pci_enable_msi(pdev); if (ret) { - xhci_err(xhci, "failed to allocate MSI entry\n"); + xhci_dbg(xhci, "failed to allocate MSI entry\n"); return ret; } ret = request_irq(pdev->irq, (irq_handler_t)xhci_msi_irq, 0, "xhci_hcd", xhci_to_hcd(xhci)); if (ret) { - xhci_err(xhci, "disable MSI interrupt\n"); + xhci_dbg(xhci, "disable MSI interrupt\n"); pci_disable_msi(pdev); } @@ -270,7 +270,7 @@ ret = pci_enable_msix(pdev, xhci->msix_entries, xhci->msix_count); if (ret) { - xhci_err(xhci, "Failed to enable MSI-X\n"); + xhci_dbg(xhci, "Failed to enable MSI-X\n"); goto free_entries; } @@ -286,7 +286,7 @@ return ret; disable_msix: - xhci_err(xhci, "disable MSI-X interrupt\n"); + xhci_dbg(xhci, "disable MSI-X interrupt\n"); xhci_free_irq(xhci); pci_disable_msix(pdev); free_entries: @@ -352,6 +352,11 @@ /* hcd->irq is -1, we have MSI */ return 0; + if (!pdev->irq) { + xhci_err(xhci, "No msi-x/msi found and no IRQ in BIOS\n"); + return -EINVAL; + } + /* fall back to legacy interrupt*/ ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED, hcd->irq_descr, hcd); @@ -659,11 +664,11 @@ xhci->s3.dev_nt = xhci_readl(xhci, &xhci->op_regs->dev_notification); xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr); xhci->s3.config_reg = xhci_readl(xhci, &xhci->op_regs->config_reg); - xhci->s3.irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending); - xhci->s3.irq_control = xhci_readl(xhci, &xhci->ir_set->irq_control); xhci->s3.erst_size = xhci_readl(xhci, &xhci->ir_set->erst_size); xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base); xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue); + xhci->s3.irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending); + xhci->s3.irq_control = xhci_readl(xhci, &xhci->ir_set->irq_control); } static void xhci_restore_registers(struct xhci_hcd *xhci) @@ -672,10 +677,11 @@ xhci_writel(xhci, xhci->s3.dev_nt, &xhci->op_regs->dev_notification); xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr); xhci_writel(xhci, xhci->s3.config_reg, &xhci->op_regs->config_reg); - xhci_writel(xhci, xhci->s3.irq_pending, &xhci->ir_set->irq_pending); - xhci_writel(xhci, xhci->s3.irq_control, &xhci->ir_set->irq_control); xhci_writel(xhci, xhci->s3.erst_size, &xhci->ir_set->erst_size); xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base); + xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue); + xhci_writel(xhci, xhci->s3.irq_pending, &xhci->ir_set->irq_pending); + xhci_writel(xhci, xhci->s3.irq_control, &xhci->ir_set->irq_control); } static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci) @@ -1620,6 +1626,7 @@ /* FIXME: can we allocate more resources for the HC? */ break; case COMP_BW_ERR: + case COMP_2ND_BW_ERR: dev_warn(&udev->dev, "Not enough bandwidth " "for new device state.\n"); ret = -ENOSPC; @@ -2796,8 +2803,7 @@ if (ret < 0) return ret; - max_streams = USB_SS_MAX_STREAMS( - eps[i]->ss_ep_comp.bmAttributes); + max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp); if (max_streams < (*num_streams - 1)) { xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n", eps[i]->desc.bEndpointAddress, --- linux-3.2.0.orig/drivers/usb/host/xhci.h +++ linux-3.2.0/drivers/usb/host/xhci.h @@ -205,6 +205,10 @@ #define CMD_PM_INDEX (1 << 11) /* bits 12:31 are reserved (and should be preserved on writes). */ +/* IMAN - Interrupt Management Register */ +#define IMAN_IP (1 << 1) +#define IMAN_IE (1 << 0) + /* USBSTS - USB status - status bitmasks */ /* HC not running - set to 1 when run/stop bit is cleared. */ #define STS_HALT XHCI_STS_HALT @@ -1033,7 +1037,6 @@ /* Invalid Stream ID Error */ #define COMP_STRID_ERR 34 /* Secondary Bandwidth Error - may be returned by a Configure Endpoint cmd */ -/* FIXME - check for this */ #define COMP_2ND_BW_ERR 35 /* Split Transaction Error */ #define COMP_SPLIT_ERR 36 @@ -1463,6 +1466,7 @@ #define XHCI_RESET_ON_RESUME (1 << 7) #define XHCI_SW_BW_CHECKING (1 << 8) #define XHCI_AMD_0x96_HOST (1 << 9) +#define XHCI_TRUST_TX_LENGTH (1 << 10) unsigned int num_active_eps; unsigned int limit_active_eps; /* There are two roothubs to keep track of bus suspend info for */ --- linux-3.2.0.orig/drivers/usb/host/ehci-pci.c +++ linux-3.2.0/drivers/usb/host/ehci-pci.c @@ -144,6 +144,14 @@ hcd->has_tt = 1; tdi_reset(ehci); } + if (pdev->subsystem_vendor == PCI_VENDOR_ID_ASUSTEK) { + /* EHCI #1 or #2 on 6 Series/C200 Series chipset */ + if (pdev->device == 0x1c26 || pdev->device == 0x1c2d) { + ehci_info(ehci, "broken D3 during system sleep on ASUS\n"); + hcd->broken_pci_sleep = 1; + device_set_wakeup_capable(&pdev->dev, false); + } + } break; case PCI_VENDOR_ID_TDI: if (pdev->device == PCI_DEVICE_ID_TDI_EHCI) { @@ -357,7 +365,9 @@ { return pdev->class == PCI_CLASS_SERIAL_USB_EHCI && pdev->vendor == PCI_VENDOR_ID_INTEL && - pdev->device == 0x1E26; + (pdev->device == 0x1E26 || + pdev->device == 0x8C2D || + pdev->device == 0x8C26); } static void ehci_enable_xhci_companion(void) --- linux-3.2.0.orig/drivers/usb/host/xhci-ext-caps.h +++ linux-3.2.0/drivers/usb/host/xhci-ext-caps.h @@ -62,8 +62,9 @@ /* USB Legacy Support Control and Status Register - section 7.1.2 */ /* Add this offset, plus the value of xECP in HCCPARAMS to the base address */ #define XHCI_LEGACY_CONTROL_OFFSET (0x04) -/* bits 1:2, 5:12, and 17:19 need to be preserved; bits 21:28 should be zero */ -#define XHCI_LEGACY_DISABLE_SMI ((0x3 << 1) + (0xff << 5) + (0x7 << 17)) +/* bits 1:3, 5:12, and 17:19 need to be preserved; bits 21:28 should be zero */ +#define XHCI_LEGACY_DISABLE_SMI ((0x7 << 1) + (0xff << 5) + (0x7 << 17)) +#define XHCI_LEGACY_SMI_EVENTS (0x7 << 29) /* USB 2.0 xHCI 0.96 L1C capability - section 7.2.2.1.3.2 */ #define XHCI_L1C (1 << 16) --- linux-3.2.0.orig/drivers/usb/host/ehci-pxa168.c +++ linux-3.2.0/drivers/usb/host/ehci-pxa168.c @@ -299,7 +299,7 @@ ehci = hcd_to_ehci(hcd); ehci->caps = hcd->regs + 0x100; ehci->regs = hcd->regs + 0x100 + - HC_LENGTH(ehci_readl(ehci, &ehci->caps->hc_capbase)); + HC_LENGTH(ehci, ehci_readl(ehci, &ehci->caps->hc_capbase)); ehci->hcs_params = ehci_readl(ehci, &ehci->caps->hcs_params); hcd->has_tt = 1; ehci->sbrn = 0x20; --- linux-3.2.0.orig/drivers/usb/host/ohci-at91.c +++ linux-3.2.0/drivers/usb/host/ohci-at91.c @@ -199,7 +199,7 @@ /*-------------------------------------------------------------------------*/ static int __devinit -ohci_at91_start (struct usb_hcd *hcd) +ohci_at91_reset (struct usb_hcd *hcd) { struct at91_usbh_data *board = hcd->self.controller->platform_data; struct ohci_hcd *ohci = hcd_to_ohci (hcd); @@ -209,6 +209,14 @@ return ret; ohci->num_ports = board->ports; + return 0; +} + +static int __devinit +ohci_at91_start (struct usb_hcd *hcd) +{ + struct ohci_hcd *ohci = hcd_to_ohci (hcd); + int ret; if ((ret = ohci_run(ohci)) < 0) { err("can't start %s", hcd->self.bus_name); @@ -390,6 +398,7 @@ /* * basic lifecycle operations */ + .reset = ohci_at91_reset, .start = ohci_at91_start, .stop = ohci_stop, .shutdown = ohci_shutdown, --- linux-3.2.0.orig/drivers/usb/host/fsl-mph-dr-of.c +++ linux-3.2.0/drivers/usb/host/fsl-mph-dr-of.c @@ -94,7 +94,6 @@ pdev->dev.parent = &ofdev->dev; pdev->dev.coherent_dma_mask = ofdev->dev.coherent_dma_mask; - pdev->dev.dma_mask = &pdev->archdata.dma_mask; *pdev->dev.dma_mask = *ofdev->dev.dma_mask; retval = platform_device_add_data(pdev, pdata, sizeof(*pdata)); --- linux-3.2.0.orig/drivers/usb/host/ehci-fsl.h +++ linux-3.2.0/drivers/usb/host/ehci-fsl.h @@ -45,5 +45,6 @@ #define FSL_SOC_USB_PRICTRL 0x40c /* NOTE: big-endian */ #define FSL_SOC_USB_SICTRL 0x410 /* NOTE: big-endian */ #define FSL_SOC_USB_CTRL 0x500 /* NOTE: big-endian */ +#define CTRL_UTMI_PHY_EN (1<<9) #define SNOOP_SIZE_2GB 0x1e #endif /* _EHCI_FSL_H */ --- linux-3.2.0.orig/drivers/usb/host/ehci-hcd.c +++ linux-3.2.0/drivers/usb/host/ehci-hcd.c @@ -815,8 +815,13 @@ goto dead; } + /* + * We don't use STS_FLR, but some controllers don't like it to + * remain on, so mask it out along with the other status bits. + */ + masked_status = status & (INTR_MASK | STS_FLR); + /* Shared IRQ? */ - masked_status = status & INTR_MASK; if (!masked_status || unlikely(ehci->rh_state == EHCI_RH_HALTED)) { spin_unlock(&ehci->lock); return IRQ_NONE; @@ -867,7 +872,7 @@ pcd_status = status; /* resume root hub? */ - if (!(cmd & CMD_RUN)) + if (ehci->rh_state == EHCI_RH_SUSPENDED) usb_hcd_resume_root_hub(hcd); /* get per-port change detect bits */ --- linux-3.2.0.orig/drivers/usb/host/xhci-hub.c +++ linux-3.2.0/drivers/usb/host/xhci-hub.c @@ -95,7 +95,7 @@ */ memset(port_removable, 0, sizeof(port_removable)); for (i = 0; i < ports; i++) { - portsc = xhci_readl(xhci, xhci->usb3_ports[i]); + portsc = xhci_readl(xhci, xhci->usb2_ports[i]); /* If a device is removable, PORTSC reports a 0, same as in the * hub descriptor DeviceRemovable bits. */ --- linux-3.2.0.orig/drivers/usb/host/xhci-pci.c +++ linux-3.2.0/drivers/usb/host/xhci-pci.c @@ -72,6 +72,7 @@ xhci_dbg(xhci, "QUIRK: Fresco Logic revision %u " "has broken MSI implementation\n", pdev->revision); + xhci->quirks |= XHCI_TRUST_TX_LENGTH; } if (pdev->vendor == PCI_VENDOR_ID_NEC) @@ -95,6 +96,8 @@ xhci->quirks |= XHCI_RESET_ON_RESUME; xhci_dbg(xhci, "QUIRK: Resetting on resume\n"); } + if (pdev->vendor == PCI_VENDOR_ID_VIA) + xhci->quirks |= XHCI_RESET_ON_RESUME; } /* called during probe() after chip reset completes */ --- linux-3.2.0.orig/drivers/usb/host/ehci-q.c +++ linux-3.2.0/drivers/usb/host/ehci-q.c @@ -647,7 +647,7 @@ /* * data transfer stage: buffer setup */ - i = urb->num_sgs; + i = urb->num_mapped_sgs; if (len > 0 && i > 0) { sg = urb->sg; buf = sg_dma_address(sg); --- linux-3.2.0.orig/drivers/usb/host/whci/qset.c +++ linux-3.2.0/drivers/usb/host/whci/qset.c @@ -443,7 +443,7 @@ remaining = urb->transfer_buffer_length; - for_each_sg(urb->sg, sg, urb->num_sgs, i) { + for_each_sg(urb->sg, sg, urb->num_mapped_sgs, i) { dma_addr_t dma_addr; size_t dma_remaining; dma_addr_t sp, ep; @@ -561,7 +561,7 @@ remaining = urb->transfer_buffer_length; - for_each_sg(urb->sg, sg, urb->num_sgs, i) { + for_each_sg(urb->sg, sg, urb->num_mapped_sgs, i) { size_t len; size_t sg_remaining; void *orig; --- linux-3.2.0.orig/drivers/usb/core/driver.c +++ linux-3.2.0/drivers/usb/core/driver.c @@ -1198,8 +1198,13 @@ if (status == 0) { status = usb_suspend_device(udev, msg); - /* Again, ignore errors during system sleep transitions */ - if (!PMSG_IS_AUTO(msg)) + /* + * Ignore errors from non-root-hub devices during + * system sleep transitions. For the most part, + * these devices should go to low power anyway when + * the entire bus is suspended. + */ + if (udev->parent && !PMSG_IS_AUTO(msg)) status = 0; } --- linux-3.2.0.orig/drivers/usb/core/sysfs.c +++ linux-3.2.0/drivers/usb/core/sysfs.c @@ -85,9 +85,9 @@ int retval; \ \ udev = to_usb_device(dev); \ - usb_lock_device(udev); \ - retval = sprintf(buf, "%s\n", udev->name); \ - usb_unlock_device(udev); \ + rcu_read_lock(); \ + retval = sprintf(buf, "%s\n", rcu_dereference(udev->name)); \ + rcu_read_unlock(); \ return retval; \ } \ static DEVICE_ATTR(name, S_IRUGO, show_##name, NULL); --- linux-3.2.0.orig/drivers/usb/core/hcd.c +++ linux-3.2.0/drivers/usb/core/hcd.c @@ -1412,11 +1412,10 @@ ret = -EAGAIN; else urb->transfer_flags |= URB_DMA_MAP_SG; - if (n != urb->num_sgs) { - urb->num_sgs = n; + urb->num_mapped_sgs = n; + if (n != urb->num_sgs) urb->transfer_flags |= URB_DMA_SG_COMBINED; - } } else if (urb->sg) { struct scatterlist *sg = urb->sg; urb->transfer_dma = dma_map_page( @@ -2466,8 +2465,10 @@ && device_can_wakeup(&hcd->self.root_hub->dev)) dev_dbg(hcd->self.controller, "supports USB remote wakeup\n"); - /* enable irqs just before we start the controller */ - if (usb_hcd_is_primary_hcd(hcd)) { + /* enable irqs just before we start the controller, + * if the BIOS provides legacy PCI irqs. + */ + if (usb_hcd_is_primary_hcd(hcd) && irqnum) { retval = usb_hcd_request_irqs(hcd, irqnum, irqflags); if (retval) goto err_request_irq; --- linux-3.2.0.orig/drivers/usb/core/message.c +++ linux-3.2.0/drivers/usb/core/message.c @@ -308,7 +308,8 @@ retval = usb_unlink_urb(io->urbs [i]); if (retval != -EINPROGRESS && retval != -ENODEV && - retval != -EBUSY) + retval != -EBUSY && + retval != -EIDRM) dev_err(&io->dev->dev, "%s, unlink --> %d\n", __func__, retval); @@ -317,7 +318,6 @@ } spin_lock(&io->lock); } - urb->dev = NULL; /* on the last completion, signal usb_sg_wait() */ io->bytes += urb->actual_length; @@ -524,7 +524,6 @@ case -ENXIO: /* hc didn't queue this one */ case -EAGAIN: case -ENOMEM: - io->urbs[i]->dev = NULL; retval = 0; yield(); break; @@ -542,7 +541,6 @@ /* fail any uncompleted urbs */ default: - io->urbs[i]->dev = NULL; io->urbs[i]->status = retval; dev_dbg(&io->dev->dev, "%s, submit --> %d\n", __func__, retval); @@ -593,7 +591,10 @@ if (!io->urbs [i]->dev) continue; retval = usb_unlink_urb(io->urbs [i]); - if (retval != -EINPROGRESS && retval != -EBUSY) + if (retval != -EINPROGRESS + && retval != -ENODEV + && retval != -EBUSY + && retval != -EIDRM) dev_warn(&io->dev->dev, "%s, unlink --> %d\n", __func__, retval); } @@ -1135,8 +1136,6 @@ * Deallocates hcd/hardware state for the endpoints (nuking all or most * pending urbs) and usbcore state for the interfaces, so that usbcore * must usb_set_configuration() before any interfaces could be used. - * - * Must be called with hcd->bandwidth_mutex held. */ void usb_disable_device(struct usb_device *dev, int skip_ep0) { @@ -1189,7 +1188,9 @@ usb_disable_endpoint(dev, i + USB_DIR_IN, false); } /* Remove endpoints from the host controller internal state */ + mutex_lock(hcd->bandwidth_mutex); usb_hcd_alloc_bandwidth(dev, NULL, NULL, NULL); + mutex_unlock(hcd->bandwidth_mutex); /* Second pass: remove endpoint pointers */ } for (i = skip_ep0; i < 16; ++i) { @@ -1749,7 +1750,6 @@ /* if it's already configured, clear out old state first. * getting rid of old interfaces means unbinding their drivers. */ - mutex_lock(hcd->bandwidth_mutex); if (dev->state != USB_STATE_ADDRESS) usb_disable_device(dev, 1); /* Skip ep0 */ @@ -1762,6 +1762,7 @@ * host controller will not allow submissions to dropped endpoints. If * this call fails, the device state is unchanged. */ + mutex_lock(hcd->bandwidth_mutex); ret = usb_hcd_alloc_bandwidth(dev, cp, NULL, NULL); if (ret < 0) { mutex_unlock(hcd->bandwidth_mutex); --- linux-3.2.0.orig/drivers/usb/core/usb.h +++ linux-3.2.0/drivers/usb/core/usb.h @@ -132,20 +132,6 @@ for_devices; } -/* translate USB error codes to codes user space understands */ -static inline int usb_translate_errors(int error_code) -{ - switch (error_code) { - case 0: - case -ENOMEM: - case -ENODEV: - return error_code; - default: - return -EIO; - } -} - - /* for labeling diagnostics */ extern const char *usbcore_name; --- linux-3.2.0.orig/drivers/usb/core/hub.c +++ linux-3.2.0/drivers/usb/core/hub.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include @@ -705,10 +706,26 @@ if (type == HUB_INIT3) goto init3; - /* After a resume, port power should still be on. + /* The superspeed hub except for root hub has to use Hub Depth + * value as an offset into the route string to locate the bits + * it uses to determine the downstream port number. So hub driver + * should send a set hub depth request to superspeed hub after + * the superspeed hub is set configuration in initialization or + * reset procedure. + * + * After a resume, port power should still be on. * For any other type of activation, turn it on. */ if (type != HUB_RESUME) { + if (hdev->parent && hub_is_superspeed(hdev)) { + ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), + HUB_SET_DEPTH, USB_RT_HUB, + hdev->level - 1, 0, NULL, 0, + USB_CTRL_SET_TIMEOUT); + if (ret < 0) + dev_err(hub->intfdev, + "set hub depth failed\n"); + } /* Speed up system boot by using a delayed_work for the * hub's initial power-up delays. This is pretty awkward @@ -987,18 +1004,6 @@ goto fail; } - if (hub_is_superspeed(hdev) && (hdev->parent != NULL)) { - ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), - HUB_SET_DEPTH, USB_RT_HUB, - hdev->level - 1, 0, NULL, 0, - USB_CTRL_SET_TIMEOUT); - - if (ret < 0) { - message = "can't set hub depth"; - goto fail; - } - } - /* Request the entire hub descriptor. * hub->descriptor can handle USB_MAXCHILDREN ports, * but the hub can/will return fewer bytes here. @@ -1640,7 +1645,6 @@ { struct usb_device *udev = *pdev; int i; - struct usb_hcd *hcd = bus_to_hcd(udev->bus); /* mark the device as inactive, so any further urb submissions for * this device (and any of its children) will fail immediately. @@ -1663,9 +1667,7 @@ * so that the hardware is now fully quiesced. */ dev_dbg (&udev->dev, "unregistering device\n"); - mutex_lock(hcd->bandwidth_mutex); usb_disable_device(udev, 0); - mutex_unlock(hcd->bandwidth_mutex); usb_hcd_synchronize_unlinks(udev); usb_remove_ep_devs(&udev->ep0); @@ -1932,6 +1934,10 @@ */ int usb_deauthorize_device(struct usb_device *usb_dev) { + char *product = NULL; + char *manufacturer = NULL; + char *serial = NULL; + usb_lock_device(usb_dev); if (usb_dev->authorized == 0) goto out_unauthorized; @@ -1939,11 +1945,12 @@ usb_dev->authorized = 0; usb_set_configuration(usb_dev, -1); - kfree(usb_dev->product); + product = usb_dev->product; + manufacturer = usb_dev->manufacturer; + serial = usb_dev->serial; + usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL); - kfree(usb_dev->manufacturer); usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL); - kfree(usb_dev->serial); usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL); usb_destroy_configuration(usb_dev); @@ -1951,6 +1958,12 @@ out_unauthorized: usb_unlock_device(usb_dev); + if (product || manufacturer || serial) { + synchronize_rcu(); + kfree(product); + kfree(manufacturer); + kfree(serial); + } return 0; } @@ -1958,6 +1971,9 @@ int usb_authorize_device(struct usb_device *usb_dev) { int result = 0, c; + char *product = NULL; + char *manufacturer = NULL; + char *serial = NULL; usb_lock_device(usb_dev); if (usb_dev->authorized == 1) @@ -1976,11 +1992,12 @@ goto error_device_descriptor; } - kfree(usb_dev->product); + product = usb_dev->product; + manufacturer = usb_dev->manufacturer; + serial = usb_dev->serial; + usb_dev->product = NULL; - kfree(usb_dev->manufacturer); usb_dev->manufacturer = NULL; - kfree(usb_dev->serial); usb_dev->serial = NULL; usb_dev->authorized = 1; @@ -2008,6 +2025,12 @@ error_autoresume: out_authorized: usb_unlock_device(usb_dev); // complements locktree + if (product || manufacturer || serial) { + synchronize_rcu(); + kfree(product); + kfree(manufacturer); + kfree(serial); + } return result; } @@ -2419,6 +2442,10 @@ NULL, 0, USB_CTRL_SET_TIMEOUT); + /* Try to enable USB2 hardware LPM again */ + if (udev->usb2_hw_lpm_capable == 1) + usb_set_usb2_hardware_lpm(udev, 1); + /* System sleep transitions should never fail */ if (!PMSG_IS_AUTO(msg)) status = 0; @@ -3068,6 +3095,22 @@ if (retval) goto fail; + /* + * Some superspeed devices have finished the link training process + * and attached to a superspeed hub port, but the device descriptor + * got from those devices show they aren't superspeed devices. Warm + * reset the port attached by the devices can fix them. + */ + if ((udev->speed == USB_SPEED_SUPER) && + (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) { + dev_err(&udev->dev, "got a wrong device descriptor, " + "warm reset device\n"); + hub_port_reset(hub, port1, udev, + HUB_BH_RESET_TIME, true); + retval = -EINVAL; + goto fail; + } + if (udev->descriptor.bMaxPacketSize0 == 0xff || udev->speed == USB_SPEED_SUPER) i = 512; --- linux-3.2.0.orig/drivers/usb/core/quirks.c +++ linux-3.2.0/drivers/usb/core/quirks.c @@ -117,9 +117,15 @@ { USB_DEVICE(0x06a3, 0x0006), .driver_info = USB_QUIRK_CONFIG_INTF_STRINGS }, - /* Guillemot Webcam Hercules Dualpix Exchange*/ + /* Guillemot Webcam Hercules Dualpix Exchange (2nd ID) */ { USB_DEVICE(0x06f8, 0x0804), .driver_info = USB_QUIRK_RESET_RESUME }, + /* Guillemot Webcam Hercules Dualpix Exchange*/ + { USB_DEVICE(0x06f8, 0x3005), .driver_info = USB_QUIRK_RESET_RESUME }, + + /* Midiman M-Audio Keystation 88es */ + { USB_DEVICE(0x0763, 0x0192), .driver_info = USB_QUIRK_RESET_RESUME }, + /* M-Systems Flash Disk Pioneers */ { USB_DEVICE(0x08ec, 0x1000), .driver_info = USB_QUIRK_RESET_RESUME }, --- linux-3.2.0.orig/drivers/usb/core/devio.c +++ linux-3.2.0/drivers/usb/core/devio.c @@ -249,7 +249,8 @@ static void free_async(struct async *as) { put_pid(as->pid); - put_cred(as->cred); + if (as->cred) + put_cred(as->cred); kfree(as->urb->transfer_buffer); kfree(as->urb->setup_packet); usb_free_urb(as->urb); @@ -294,17 +295,14 @@ static struct async *async_getpending(struct dev_state *ps, void __user *userurb) { - unsigned long flags; struct async *as; - spin_lock_irqsave(&ps->lock, flags); list_for_each_entry(as, &ps->async_pending, asynclist) if (as->userurb == userurb) { list_del_init(&as->asynclist); - spin_unlock_irqrestore(&ps->lock, flags); return as; } - spin_unlock_irqrestore(&ps->lock, flags); + return NULL; } @@ -359,6 +357,7 @@ __releases(ps->lock) __acquires(ps->lock) { + struct urb *urb; struct async *as; /* Mark all the pending URBs that match bulk_addr, up to but not @@ -381,8 +380,11 @@ list_for_each_entry(as, &ps->async_pending, asynclist) { if (as->bulk_status == AS_UNLINK) { as->bulk_status = 0; /* Only once */ + urb = as->urb; + usb_get_urb(urb); spin_unlock(&ps->lock); /* Allow completions */ - usb_unlink_urb(as->urb); + usb_unlink_urb(urb); + usb_put_urb(urb); spin_lock(&ps->lock); goto rescan; } @@ -433,6 +435,7 @@ static void destroy_async(struct dev_state *ps, struct list_head *list) { + struct urb *urb; struct async *as; unsigned long flags; @@ -440,10 +443,13 @@ while (!list_empty(list)) { as = list_entry(list->next, struct async, asynclist); list_del_init(&as->asynclist); + urb = as->urb; + usb_get_urb(urb); /* drop the spinlock so the completion handler can run */ spin_unlock_irqrestore(&ps->lock, flags); - usb_kill_urb(as->urb); + usb_kill_urb(urb); + usb_put_urb(urb); spin_lock_irqsave(&ps->lock, flags); } spin_unlock_irqrestore(&ps->lock, flags); @@ -1349,12 +1355,24 @@ static int proc_unlinkurb(struct dev_state *ps, void __user *arg) { + struct urb *urb; struct async *as; + unsigned long flags; + spin_lock_irqsave(&ps->lock, flags); as = async_getpending(ps, arg); - if (!as) + if (!as) { + spin_unlock_irqrestore(&ps->lock, flags); return -EINVAL; - usb_kill_urb(as->urb); + } + + urb = as->urb; + usb_get_urb(urb); + spin_unlock_irqrestore(&ps->lock, flags); + + usb_kill_urb(urb); + usb_put_urb(urb); + return 0; } --- linux-3.2.0.orig/drivers/usb/core/hcd-pci.c +++ linux-3.2.0/drivers/usb/core/hcd-pci.c @@ -187,7 +187,10 @@ return -ENODEV; dev->current_state = PCI_D0; - if (!dev->irq) { + /* The xHCI driver supports MSI and MSI-X, + * so don't fail if the BIOS doesn't provide a legacy IRQ. + */ + if (!dev->irq && (driver->flags & HCD_MASK) != HCD_USB3) { dev_err(&dev->dev, "Found HC with no IRQ. Check BIOS/PCI %s setup!\n", pci_name(dev)); @@ -492,6 +495,15 @@ pci_save_state(pci_dev); + /* + * Some systems crash if an EHCI controller is in D3 during + * a sleep transition. We have to leave such controllers in D0. + */ + if (hcd->broken_pci_sleep) { + dev_dbg(dev, "Staying in PCI D0\n"); + return retval; + } + /* If the root hub is dead rather than suspended, disallow remote * wakeup. usb_hc_died() should ensure that both hosts are marked as * dying, so we only need to check the primary roothub. --- linux-3.2.0.orig/drivers/usb/musb/omap2430.c +++ linux-3.2.0/drivers/usb/musb/omap2430.c @@ -282,7 +282,8 @@ static int omap2430_musb_init(struct musb *musb) { - u32 l, status = 0; + u32 l; + int status = 0; struct device *dev = musb->controller; struct musb_hdrc_platform_data *plat = dev->platform_data; struct omap_musb_board_data *data = plat->board_data; @@ -299,7 +300,7 @@ status = pm_runtime_get_sync(dev); if (status < 0) { - dev_err(dev, "pm_runtime_get_sync FAILED"); + dev_err(dev, "pm_runtime_get_sync FAILED %d\n", status); goto err1; } @@ -451,14 +452,14 @@ goto err2; } + pm_runtime_enable(&pdev->dev); + ret = platform_device_add(musb); if (ret) { dev_err(&pdev->dev, "failed to register musb device\n"); goto err2; } - pm_runtime_enable(&pdev->dev); - return 0; err2: --- linux-3.2.0.orig/drivers/usb/musb/davinci.c +++ linux-3.2.0/drivers/usb/musb/davinci.c @@ -33,9 +33,6 @@ #include #include -#include -#include -#include #include #include --- linux-3.2.0.orig/drivers/usb/musb/musb_core.c +++ linux-3.2.0/drivers/usb/musb/musb_core.c @@ -2012,8 +2012,6 @@ if (status < 0) goto fail3; - pm_runtime_put(musb->controller); - status = musb_init_debugfs(musb); if (status < 0) goto fail4; --- linux-3.2.0.orig/drivers/usb/musb/musb_gadget.c +++ linux-3.2.0/drivers/usb/musb/musb_gadget.c @@ -576,6 +576,15 @@ if (request->actual == request->length) { musb_g_giveback(musb_ep, request, 0); + /* + * In the giveback function the MUSB lock is + * released and acquired after sometime. During + * this time period the INDEX register could get + * changed by the gadget_queue function especially + * on SMP systems. Reselect the INDEX to be sure + * we are reading/modifying the right registers + */ + musb_ep_select(mbase, epnum); req = musb_ep->desc ? next_request(musb_ep) : NULL; if (!req) { dev_dbg(musb->controller, "%s idle now\n", @@ -985,6 +994,15 @@ } #endif musb_g_giveback(musb_ep, request, 0); + /* + * In the giveback function the MUSB lock is + * released and acquired after sometime. During + * this time period the INDEX register could get + * changed by the gadget_queue function especially + * on SMP systems. Reselect the INDEX to be sure + * we are reading/modifying the right registers + */ + musb_ep_select(mbase, epnum); req = next_request(musb_ep); if (!req) --- linux-3.2.0.orig/drivers/tty/Kconfig +++ linux-3.2.0/drivers/tty/Kconfig @@ -365,7 +365,7 @@ config PPC_EARLY_DEBUG_EHV_BC bool "Early console (udbg) support for ePAPR hypervisors" - depends on PPC_EPAPR_HV_BYTECHAN + depends on PPC_EPAPR_HV_BYTECHAN=y help Select this option to enable early console (a.k.a. "udbg") support via an ePAPR byte channel. You also need to choose the byte channel --- linux-3.2.0.orig/drivers/tty/amiserial.c +++ linux-3.2.0/drivers/tty/amiserial.c @@ -1113,8 +1113,10 @@ (new_serial.close_delay != state->close_delay) || (new_serial.xmit_fifo_size != state->xmit_fifo_size) || ((new_serial.flags & ~ASYNC_USR_MASK) != - (state->flags & ~ASYNC_USR_MASK))) + (state->flags & ~ASYNC_USR_MASK))) { + tty_unlock(); return -EPERM; + } state->flags = ((state->flags & ~ASYNC_USR_MASK) | (new_serial.flags & ASYNC_USR_MASK)); info->flags = ((info->flags & ~ASYNC_USR_MASK) | --- linux-3.2.0.orig/drivers/tty/moxa.c +++ linux-3.2.0/drivers/tty/moxa.c @@ -1331,7 +1331,7 @@ if (ch == NULL) return; - if (!(ch->statusflags & TXSTOPPED)) + if (!test_bit(TXSTOPPED, &ch->statusflags)) return; MoxaPortTxEnable(ch); --- linux-3.2.0.orig/drivers/tty/tty_port.c +++ linux-3.2.0/drivers/tty/tty_port.c @@ -227,7 +227,6 @@ int do_clocal = 0, retval; unsigned long flags; DEFINE_WAIT(wait); - int cd; /* block if port is in the process of being closed */ if (tty_hung_up_p(filp) || port->flags & ASYNC_CLOSING) { @@ -284,11 +283,14 @@ retval = -ERESTARTSYS; break; } - /* Probe the carrier. For devices with no carrier detect this - will always return true */ - cd = tty_port_carrier_raised(port); + /* + * Probe the carrier. For devices with no carrier detect + * tty_port_carrier_raised will always return true. + * Never ask drivers if CLOCAL is set, this causes troubles + * on some hardware. + */ if (!(port->flags & ASYNC_CLOSING) && - (do_clocal || cd)) + (do_clocal || tty_port_carrier_raised(port))) break; if (signal_pending(current)) { retval = -ERESTARTSYS; --- linux-3.2.0.orig/drivers/tty/serial/pch_uart.c +++ linux-3.2.0/drivers/tty/serial/pch_uart.c @@ -1356,9 +1356,11 @@ __func__); return -EOPNOTSUPP; #endif - priv->use_dma = 1; priv->use_dma_flag = 1; dev_info(priv->port.dev, "PCH UART : Use DMA Mode\n"); + if (!priv->use_dma) + pch_request_dma(port); + priv->use_dma = 1; } return 0; @@ -1438,6 +1440,7 @@ } pci_enable_msi(pdev); + pci_set_master(pdev); iobase = pci_resource_start(pdev, 0); mapbase = pci_resource_start(pdev, 1); --- linux-3.2.0.orig/drivers/tty/serial/8250_pci.c +++ linux-3.2.0/drivers/tty/serial/8250_pci.c @@ -1590,54 +1590,72 @@ { .vendor = PCI_VENDOR_ID_INTEL, .device = 0x8811, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, .init = pci_eg20t_init, .setup = pci_default_setup, }, { .vendor = PCI_VENDOR_ID_INTEL, .device = 0x8812, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, .init = pci_eg20t_init, .setup = pci_default_setup, }, { .vendor = PCI_VENDOR_ID_INTEL, .device = 0x8813, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, .init = pci_eg20t_init, .setup = pci_default_setup, }, { .vendor = PCI_VENDOR_ID_INTEL, .device = 0x8814, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, .init = pci_eg20t_init, .setup = pci_default_setup, }, { .vendor = 0x10DB, .device = 0x8027, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, .init = pci_eg20t_init, .setup = pci_default_setup, }, { .vendor = 0x10DB, .device = 0x8028, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, .init = pci_eg20t_init, .setup = pci_default_setup, }, { .vendor = 0x10DB, .device = 0x8029, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, .init = pci_eg20t_init, .setup = pci_default_setup, }, { .vendor = 0x10DB, .device = 0x800C, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, .init = pci_eg20t_init, .setup = pci_default_setup, }, { .vendor = 0x10DB, .device = 0x800D, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, .init = pci_eg20t_init, .setup = pci_default_setup, }, --- linux-3.2.0.orig/drivers/tty/serial/altera_uart.c +++ linux-3.2.0/drivers/tty/serial/altera_uart.c @@ -555,7 +555,7 @@ res_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); if (res_mem) port->mapbase = res_mem->start; - else if (platp->mapbase) + else if (platp) port->mapbase = platp->mapbase; else return -EINVAL; @@ -563,7 +563,7 @@ res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0); if (res_irq) port->irq = res_irq->start; - else if (platp->irq) + else if (platp) port->irq = platp->irq; /* Check platform data first so we can override device node data */ --- linux-3.2.0.orig/drivers/tty/serial/mxs-auart.c +++ linux-3.2.0/drivers/tty/serial/mxs-auart.c @@ -368,6 +368,8 @@ writel(ctrl, u->membase + AUART_LINECTRL); writel(ctrl2, u->membase + AUART_CTRL2); + + uart_update_timeout(u, termios->c_cflag, baud); } static irqreturn_t mxs_auart_irq_handle(int irq, void *context) --- linux-3.2.0.orig/drivers/tty/serial/serial_core.c +++ linux-3.2.0/drivers/tty/serial/serial_core.c @@ -2305,6 +2305,7 @@ tty_unregister_driver(p); put_tty_driver(p); kfree(drv->state); + drv->state = NULL; drv->tty_driver = NULL; } --- linux-3.2.0.orig/drivers/tty/serial/amba-pl011.c +++ linux-3.2.0/drivers/tty/serial/amba-pl011.c @@ -1380,6 +1380,10 @@ uap->port.uartclk = clk_get_rate(uap->clk); + /* Clear pending error and receive interrupts */ + writew(UART011_OEIS | UART011_BEIS | UART011_PEIS | UART011_FEIS | + UART011_RTIS | UART011_RXIS, uap->port.membase + UART011_ICR); + /* * Allocate the IRQ */ @@ -1414,10 +1418,6 @@ cr = UART01x_CR_UARTEN | UART011_CR_RXE | UART011_CR_TXE; writew(cr, uap->port.membase + UART011_CR); - /* Clear pending error interrupts */ - writew(UART011_OEIS | UART011_BEIS | UART011_PEIS | UART011_FEIS, - uap->port.membase + UART011_ICR); - /* * initialise the old status of the modem signals */ @@ -1432,6 +1432,9 @@ * as well. */ spin_lock_irq(&uap->port.lock); + /* Clear out any spuriously appearing RX interrupts */ + writew(UART011_RTIS | UART011_RXIS, + uap->port.membase + UART011_ICR); uap->im = UART011_RTIM; if (!pl011_dma_rx_running(uap)) uap->im |= UART011_RXIM; @@ -1740,9 +1743,19 @@ { struct uart_amba_port *uap = amba_ports[co->index]; unsigned int status, old_cr, new_cr; + unsigned long flags; + int locked = 1; clk_enable(uap->clk); + local_irq_save(flags); + if (uap->port.sysrq) + locked = 0; + else if (oops_in_progress) + locked = spin_trylock(&uap->port.lock); + else + spin_lock(&uap->port.lock); + /* * First save the CR then disable the interrupts */ @@ -1762,6 +1775,10 @@ } while (status & UART01x_FR_BUSY); writew(old_cr, uap->port.membase + UART011_CR); + if (locked) + spin_unlock(&uap->port.lock); + local_irq_restore(flags); + clk_disable(uap->clk); } @@ -1918,6 +1935,10 @@ uap->port.line = i; pl011_dma_probe(uap); + /* Ensure interrupts from this UART are masked and cleared */ + writew(0, uap->port.membase + UART011_IMSC); + writew(0xffff, uap->port.membase + UART011_ICR); + snprintf(uap->type, sizeof(uap->type), "PL011 rev%u", amba_rev(dev)); amba_ports[i] = uap; --- linux-3.2.0.orig/drivers/tty/serial/sh-sci.c +++ linux-3.2.0/drivers/tty/serial/sh-sci.c @@ -1123,17 +1123,20 @@ port->icount.tx += sg_dma_len(&s->sg_tx); async_tx_ack(s->desc_tx); - s->cookie_tx = -EINVAL; s->desc_tx = NULL; if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) uart_write_wakeup(port); if (!uart_circ_empty(xmit)) { + s->cookie_tx = 0; schedule_work(&s->work_tx); - } else if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) { - u16 ctrl = sci_in(port, SCSCR); - sci_out(port, SCSCR, ctrl & ~SCSCR_TIE); + } else { + s->cookie_tx = -EINVAL; + if (port->type == PORT_SCIFA || port->type == PORT_SCIFB) { + u16 ctrl = sci_in(port, SCSCR); + sci_out(port, SCSCR, ctrl & ~SCSCR_TIE); + } } spin_unlock_irqrestore(&port->lock, flags); @@ -1395,8 +1398,10 @@ } if (s->chan_tx && !uart_circ_empty(&s->port.state->xmit) && - s->cookie_tx < 0) + s->cookie_tx < 0) { + s->cookie_tx = 0; schedule_work(&s->work_tx); + } #endif if (!s->chan_tx || port->type == PORT_SCIFA || port->type == PORT_SCIFB) { --- linux-3.2.0.orig/drivers/tty/serial/atmel_serial.c +++ linux-3.2.0/drivers/tty/serial/atmel_serial.c @@ -212,8 +212,9 @@ { struct atmel_uart_port *atmel_port = to_atmel_uart_port(port); unsigned int mode; + unsigned long flags; - spin_lock(&port->lock); + spin_lock_irqsave(&port->lock, flags); /* Disable interrupts */ UART_PUT_IDR(port, atmel_port->tx_done_mask); @@ -244,7 +245,7 @@ /* Enable interrupts */ UART_PUT_IER(port, atmel_port->tx_done_mask); - spin_unlock(&port->lock); + spin_unlock_irqrestore(&port->lock, flags); } --- linux-3.2.0.orig/drivers/tty/serial/8250.c +++ linux-3.2.0/drivers/tty/serial/8250.c @@ -2327,10 +2327,11 @@ quot++; if (up->capabilities & UART_CAP_FIFO && up->port.fifosize > 1) { - if (baud < 2400) - fcr = UART_FCR_ENABLE_FIFO | UART_FCR_TRIGGER_1; - else - fcr = uart_config[up->port.type].fcr; + fcr = uart_config[up->port.type].fcr; + if (baud < 2400) { + fcr &= ~UART_FCR_TRIGGER_MASK; + fcr |= UART_FCR_TRIGGER_1; + } } /* --- linux-3.2.0.orig/drivers/tty/serial/clps711x.c +++ linux-3.2.0/drivers/tty/serial/clps711x.c @@ -154,10 +154,9 @@ port->x_char = 0; return IRQ_HANDLED; } - if (uart_circ_empty(xmit) || uart_tx_stopped(port)) { - clps711xuart_stop_tx(port); - return IRQ_HANDLED; - } + + if (uart_circ_empty(xmit) || uart_tx_stopped(port)) + goto disable_tx_irq; count = port->fifosize >> 1; do { @@ -171,8 +170,11 @@ if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS) uart_write_wakeup(port); - if (uart_circ_empty(xmit)) - clps711xuart_stop_tx(port); + if (uart_circ_empty(xmit)) { + disable_tx_irq: + disable_irq_nosync(TX_IRQ(port)); + tx_enabled(port) = 0; + } return IRQ_HANDLED; } --- linux-3.2.0.orig/drivers/tty/serial/jsm/jsm_driver.c +++ linux-3.2.0/drivers/tty/serial/jsm/jsm_driver.c @@ -251,6 +251,7 @@ struct jsm_board *brd = pci_get_drvdata(pdev); pci_restore_state(pdev); + pci_save_state(pdev); jsm_uart_port_init(brd); } --- linux-3.2.0.orig/drivers/tty/vt/consolemap.c +++ linux-3.2.0/drivers/tty/vt/consolemap.c @@ -516,6 +516,7 @@ int err = 0, err1, i; struct uni_pagedir *p, *q; + /* Save original vc_unipagdir_loc in case we allocate a new one */ p = (struct uni_pagedir *)*vc->vc_uni_pagedir_loc; if (p->readonly) return -EIO; @@ -528,26 +529,57 @@ err1 = con_clear_unimap(vc, NULL); if (err1) return err1; + /* + * Since refcount was > 1, con_clear_unimap() allocated a + * a new uni_pagedir for this vc. Re: p != q + */ q = (struct uni_pagedir *)*vc->vc_uni_pagedir_loc; - for (i = 0, l = 0; i < 32; i++) + + /* + * uni_pgdir is a 32*32*64 table with rows allocated + * when its first entry is added. The unicode value must + * still be incremented for empty rows. We are copying + * entries from "p" (old) to "q" (new). + */ + l = 0; /* unicode value */ + for (i = 0; i < 32; i++) if ((p1 = p->uni_pgdir[i])) for (j = 0; j < 32; j++) - if ((p2 = p1[j])) + if ((p2 = p1[j])) { for (k = 0; k < 64; k++, l++) if (p2[k] != 0xffff) { + /* + * Found one, copy entry for unicode + * l with fontpos value p2[k]. + */ err1 = con_insert_unipair(q, l, p2[k]); if (err1) { p->refcount++; *vc->vc_uni_pagedir_loc = (unsigned long)p; con_release_unimap(q); kfree(q); - return err1; + return err1; } - } - p = q; - } else if (p == dflt) + } + } else { + /* Account for row of 64 empty entries */ + l += 64; + } + else + /* Account for empty table */ + l += 32 * 64; + + /* + * Finished copying font table, set vc_uni_pagedir to new table + */ + p = q; + } else if (p == dflt) { dflt = NULL; - + } + + /* + * Insert user specified unicode pairs into new table. + */ while (ct--) { unsigned short unicode, fontpos; __get_user(unicode, &list->unicode); @@ -557,11 +589,14 @@ list++; } + /* + * Merge with fontmaps of any other virtual consoles. + */ if (con_unify_unimap(vc, p)) return err; for (i = 0; i <= 3; i++) - set_inverse_transl(vc, p, i); /* Update all inverse translations */ + set_inverse_transl(vc, p, i); /* Update inverse translations */ set_inverse_trans_unicode(vc, p); return err; --- linux-3.2.0.orig/drivers/tty/vt/vt.c +++ linux-3.2.0/drivers/tty/vt/vt.c @@ -103,6 +103,7 @@ #include #include #include +#include #define MAX_NR_CON_DRIVER 16 @@ -145,7 +146,7 @@ static int con_open(struct tty_struct *, struct file *); static void vc_init(struct vc_data *vc, unsigned int rows, - unsigned int cols, int do_clear); + unsigned int cols, int do_clear, int mode); static void gotoxy(struct vc_data *vc, int new_x, int new_y); static void save_cur(struct vc_data *vc); static void reset_terminal(struct vc_data *vc, int do_clear); @@ -166,6 +167,9 @@ static int cur_default = CUR_DEFAULT; module_param(cur_default, int, S_IRUGO | S_IWUSR); +int vt_handoff = 0; +module_param_named(handoff, vt_handoff, int, S_IRUGO | S_IWUSR); + /* * ignore_poke: don't unblank the screen when things are typed. This is * mainly for the privacy of braille terminal users. @@ -695,6 +699,13 @@ } if (tty0dev) sysfs_notify(&tty0dev->kobj, NULL, "active"); + /* + * If we are switching away from a transparent VT the contents + * will be lost, convert it into a blank text console then + * it will be repainted blank if we ever switch back. + */ + if (old_vc->vc_mode == KD_TRANSPARENT) + old_vc->vc_mode = KD_TEXT; } else { hide_cursor(vc); redraw = 1; @@ -808,7 +819,7 @@ if (global_cursor_default == -1) global_cursor_default = 1; - vc_init(vc, vc->vc_rows, vc->vc_cols, 1); + vc_init(vc, vc->vc_rows, vc->vc_cols, 1, KD_TEXT); vcs_make_sysfs(currcons); atomic_notifier_call_chain(&vt_notifier_list, VT_ALLOCATE, ¶m); } @@ -2846,7 +2857,7 @@ module_param_named(underline, default_underline_color, int, S_IRUGO | S_IWUSR); static void vc_init(struct vc_data *vc, unsigned int rows, - unsigned int cols, int do_clear) + unsigned int cols, int do_clear, int mode) { int j, k ; @@ -2857,7 +2868,7 @@ set_origin(vc); vc->vc_pos = vc->vc_origin; - reset_vc(vc); + reset_vc(vc, mode); for (j=k=0; j<16; j++) { vc->vc_palette[k++] = default_red[j] ; vc->vc_palette[k++] = default_grn[j] ; @@ -2883,6 +2894,13 @@ struct vc_data *vc; unsigned int currcons = 0, i; + if (screen_info.flags & VIDEO_FLAGS_HANDOFF) { + if (vt_handoff == 0) + vt_handoff = 8; + printk(KERN_INFO "vt handoff: grub requested handoff (vt#%d)\n", + vt_handoff); + } + console_lock(); if (conswitchp) @@ -2914,16 +2932,31 @@ mod_timer(&console_timer, jiffies + (blankinterval * HZ)); } + if (vt_handoff > 0 && vt_handoff <= MAX_NR_CONSOLES) { + currcons = vt_handoff - 1; + vc_cons[currcons].d = vc = kzalloc(sizeof(struct vc_data), GFP_NOWAIT); + INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK); + visual_init(vc, currcons, 1); + vc->vc_screenbuf = kzalloc(vc->vc_screenbuf_size, GFP_NOWAIT); + vc_init(vc, vc->vc_rows, vc->vc_cols, 0, KD_TRANSPARENT); + } for (currcons = 0; currcons < MIN_NR_CONSOLES; currcons++) { + if (currcons == vt_handoff - 1) + continue; vc_cons[currcons].d = vc = kzalloc(sizeof(struct vc_data), GFP_NOWAIT); INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK); tty_port_init(&vc->port); visual_init(vc, currcons, 1); vc->vc_screenbuf = kzalloc(vc->vc_screenbuf_size, GFP_NOWAIT); vc_init(vc, vc->vc_rows, vc->vc_cols, - currcons || !vc->vc_sw->con_save_screen); + currcons || !vc->vc_sw->con_save_screen, KD_TEXT); } currcons = fg_console = 0; + if (vt_handoff > 0) { + printk(KERN_INFO "vt handoff: transparent VT on vt#%d\n", + vt_handoff); + currcons = fg_console = vt_handoff - 1; + } master_display_fg = vc = vc_cons[currcons].d; set_origin(vc); save_screen(vc); --- linux-3.2.0.orig/drivers/tty/vt/vt_ioctl.c +++ linux-3.2.0/drivers/tty/vt/vt_ioctl.c @@ -1358,9 +1358,9 @@ goto out; } -void reset_vc(struct vc_data *vc) +void reset_vc(struct vc_data *vc, int mode) { - vc->vc_mode = KD_TEXT; + vc->vc_mode = mode; kbd_table[vc->vc_num].kbdmode = default_utf8 ? VC_UNICODE : VC_XLATE; vc->vt_mode.mode = VT_AUTO; vc->vt_mode.waitv = 0; @@ -1391,7 +1391,7 @@ */ if (tty) __do_SAK(tty); - reset_vc(vc); + reset_vc(vc, KD_TEXT); } console_unlock(); } @@ -1463,7 +1463,6 @@ if (!perm && op->op != KD_FONT_OP_GET) return -EPERM; op->data = compat_ptr(((struct compat_console_font_op *)op)->data); - op->flags |= KD_FONT_FLAG_OLD; i = con_font_op(vc, op); if (i) return i; @@ -1653,7 +1652,7 @@ * this outside of VT_PROCESS but there is no single process * to account for and tracking tty count may be undesirable. */ - reset_vc(vc); + reset_vc(vc, KD_TEXT); if (old_vc_mode != vc->vc_mode) { if (vc->vc_mode == KD_TEXT) @@ -1725,7 +1724,7 @@ * this outside of VT_PROCESS but there is no single process * to account for and tracking tty count may be undesirable. */ - reset_vc(vc); + reset_vc(vc, KD_TEXT); /* * Fall through to normal (VT_AUTO) handling of the switch... --- linux-3.2.0.orig/drivers/idle/intel_idle.c +++ linux-3.2.0/drivers/idle/intel_idle.c @@ -348,7 +348,8 @@ cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &mwait_substates); if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) || - !(ecx & CPUID5_ECX_INTERRUPT_BREAK)) + !(ecx & CPUID5_ECX_INTERRUPT_BREAK) || + !mwait_substates) return -ENODEV; pr_debug(PREFIX "MWAIT substates: 0x%x\n", mwait_substates); @@ -394,7 +395,7 @@ if (boot_cpu_has(X86_FEATURE_ARAT)) /* Always Reliable APIC Timer */ lapic_timer_reliable_states = LAPIC_TIMER_ALWAYS_RELIABLE; else { - smp_call_function(__setup_broadcast_timer, (void *)true, 1); + on_each_cpu(__setup_broadcast_timer, (void *)true, 1); register_cpu_notifier(&setup_broadcast_notifier); } @@ -471,7 +472,7 @@ } if (auto_demotion_disable_flags) - smp_call_function(auto_demotion_disable, NULL, 1); + on_each_cpu(auto_demotion_disable, NULL, 1); return 0; } @@ -568,7 +569,7 @@ cpuidle_unregister_driver(&intel_idle_driver); if (lapic_timer_reliable_states != LAPIC_TIMER_ALWAYS_RELIABLE) { - smp_call_function(__setup_broadcast_timer, (void *)false, 1); + on_each_cpu(__setup_broadcast_timer, (void *)false, 1); unregister_cpu_notifier(&setup_broadcast_notifier); } --- linux-3.2.0.orig/debian/control.stub +++ linux-3.2.0/debian/control.stub @@ -0,0 +1,625 @@ +Source: linux +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.8.4.0 +Build-Depends: debhelper (>= 5), cpio, module-init-tools, kernel-wedge (>= 2.24ubuntu1), makedumpfile [amd64 i386], device-tree-compiler [powerpc], libelf-dev, libnewt-dev, binutils-dev, rsync, libdw-dev, dpkg (>= 1.16.0~ubuntu4), util-linux +Build-Depends-Indep: xmlto, docbook-utils, ghostscript, transfig, bzip2, sharutils, asciidoc +Build-Conflicts: findutils (= 4.4.1-1ubuntu1) +Vcs-Git: http://kernel.ubuntu.com/git-repos/ubuntu/ubuntu-precise.git + +Package: linux-source-3.2.0 +Architecture: all +Section: devel +Priority: optional +Provides: linux-source, linux-source-3 +Depends: ${misc:Depends}, binutils, bzip2, coreutils | fileutils (>= 4.0) +Recommends: libc-dev, gcc, make +Suggests: libncurses-dev | ncurses-dev, kernel-package, libqt3-dev +Description: Linux kernel source for version 3.2.0 with Ubuntu patches + This package provides the source code for the Linux kernel version + 3.2.0. + . + This package is mainly meant for other packages to use, in order to build + custom flavours. + . + If you wish to use this package to create a custom Linux kernel, then it + is suggested that you investigate the package kernel-package, which has + been designed to ease the task of creating kernel image packages. + . + If you are simply trying to build third-party modules for your kernel, + you do not want this package. Install the appropriate linux-headers + package instead. + +Package: linux-doc +Architecture: all +Section: doc +Priority: optional +Depends: ${misc:Depends} +Conflicts: linux-doc-3 +Replaces: linux-doc-3 +Description: Linux kernel specific documentation for version 3.2.0 + This package provides the various documents in the 3.2.0 kernel + Documentation/ subdirectory. These document kernel subsystems, APIs, device + drivers, and so on. See + /usr/share/doc/linux-doc/00-INDEX for a list of what is + contained in each file. + +Package: linux-tools-common +Architecture: all +Section: kernel +Priority: optional +Depends: ${misc:Depends} +Replaces: linux-tools (<= 2.6.32-16.25) +Description: Linux kernel version specific tools for version 3.2.0 + This package provides the architecture independent parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PGKVER. + +Package: linux-headers-3.2.0-26 +Architecture: all +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils | fileutils (>= 4.0) +Provides: linux-headers, linux-headers-3 +Description: Header files related to Linux kernel version 3.2.0 + This package provides kernel header files for version 3.2.0, for sites + that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details + +Package: linux-libc-dev +Architecture: i386 amd64 powerpc ppc64 armel armhf +Depends: ${misc:Depends} +Conflicts: libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), dvb-dev (<< 1.0.1-6), amd64-libs-dev (<= 1.1), linux-kernel-headers +Replaces: libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), dvb-dev (<< 1.0.1-6), linux-kernel-headers, libdrm-dev +Provides: linux-kernel-headers +Multi-Arch: same +Description: Linux Kernel Headers for development + This package provides headers from the Linux kernel. These headers + are used by the installed headers for GNU glibc and other system + libraries. They are NOT meant to be used to build third-party modules for + your kernel. Use linux-headers-* packages for that. + +Package: linux-tools-3.2.0-26 +Architecture: i386 amd64 powerpc ppc64 armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version 3.2.0-26 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 3.2.0-26 on + 64 bit x86. + + +Package: linux-image-3.2.0-26-generic +Architecture: i386 amd64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub-efi-amd64 | grub-efi-ia32 | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-generic +Architecture: i386 amd64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-generic +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-generic +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 SMP + This package provides kernel header files for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-generic-dbgsym +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 SMP + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-generic-pae +Architecture: i386 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward 32 bit desktop or server systems with more than 4GB RAM. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-pae meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-generic-pae +Architecture: i386 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-generic-pae +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward 32 bit desktop or server systems with more than 4GB RAM. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-pae meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-generic-pae +Architecture: i386 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 SMP + This package provides kernel header files for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-generic-pae-dbgsym +Architecture: i386 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 SMP + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-highbank +Architecture: armhf +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: flash-kernel +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on Calxeda highbank ARM Server + This package contains the Linux kernel image for version 3.2.0 on + Calxeda highbank ARM Server. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Calxeda highbank processors. + . + Targeted towards Calxeda highbank ARM Server + . + You likely do not want to install this package directly. Instead, install + the linux-highbank meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-highbank +Architecture: armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-highbank +Description: Linux kernel image for version 3.2.0 on Calxeda highbank ARM Server + This package contains the Linux kernel image for version 3.2.0 on + Calxeda highbank ARM Server. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Calxeda highbank processors. + . + Targeted towards Calxeda highbank ARM Server + . + You likely do not want to install this package directly. Instead, install + the linux-highbank meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-highbank +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on Calxeda highbank ARM Server + This package provides kernel header files for version 3.2.0 on + Calxeda highbank ARM Server. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-highbank-dbgsym +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on Calxeda highbank ARM Server + This package provides a kernel debug image for version 3.2.0 on + Calxeda highbank ARM Server. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-omap +Architecture: armel armhf +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: flash-kernel +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package contains the Linux kernel image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports TI OMAP3 processors. + . + Targeted towards boards such as Beagleboard, Gumstix, IGEPv2, etc. + . + You likely do not want to install this package directly. Instead, install + the linux-omap meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-omap +Architecture: armel armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-omap +Description: Linux kernel image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package contains the Linux kernel image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports TI OMAP3 processors. + . + Targeted towards boards such as Beagleboard, Gumstix, IGEPv2, etc. + . + You likely do not want to install this package directly. Instead, install + the linux-omap meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-omap +Architecture: armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package provides kernel header files for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-omap-dbgsym +Architecture: armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package provides a kernel debug image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, redhat-cluster-modules, ivtv-modules +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: yaboot +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 64-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 64-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc64-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-powerpc64-smp +Description: Linux kernel image for version 3.2.0 on 64-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 64-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 64-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc64-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64-bit PowerPC SMP + This package provides kernel header files for version 3.2.0 on + 64-bit PowerPC SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-powerpc64-smp-dbgsym +Architecture: powerpc ppc64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64-bit PowerPC SMP + This package provides a kernel debug image for version 3.2.0 on + 64-bit PowerPC SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, redhat-cluster-modules, ivtv-modules +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: yaboot +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 32-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 32-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 32-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-powerpc-smp +Description: Linux kernel image for version 3.2.0 on 32-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 32-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 32-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 32-bit PowerPC SMP + This package provides kernel header files for version 3.2.0 on + 32-bit PowerPC SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-powerpc-smp-dbgsym +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 32-bit PowerPC SMP + This package provides a kernel debug image for version 3.2.0 on + 32-bit PowerPC SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-virtual +Architecture: i386 amd64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 Virtual Guests + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Virtual processors. + . + Geared toward virtual appliances. + . + You likely do not want to install this package directly. Instead, install + the linux-virtual meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-virtual +Architecture: i386 amd64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-virtual +Description: Linux kernel image for version 3.2.0 on 64 bit x86 Virtual Guests + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Virtual processors. + . + Geared toward virtual appliances. + . + You likely do not want to install this package directly. Instead, install + the linux-virtual meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-virtual +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 Virtual Guests + This package provides kernel header files for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-virtual-dbgsym +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 Virtual Guests + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. --- linux-3.2.0.orig/debian/copyright +++ linux-3.2.0/debian/copyright @@ -0,0 +1,29 @@ +This is the Ubuntu prepackaged version of the Linux kernel. +Linux was written by Linus Torvalds +and others. + +This package was put together by the Ubuntu Kernel Team, from +sources retrieved from upstream linux git. +The sources may be found at most Linux ftp sites, including +ftp://ftp.kernel.org/pub/linux/kernel/ + +This package is currently maintained by the +Ubuntu Kernel Team + +Linux is copyrighted by Linus Torvalds and others. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Ubuntu Linux systems, the complete text of the GNU General +Public License v2 can be found in `/usr/share/common-licenses/GPL-2'. --- linux-3.2.0.orig/debian/changelog +++ linux-3.2.0/debian/changelog @@ -0,0 +1,9297 @@ +linux (3.2.0-26.41) precise-proposed; urgency=low + + [Luis Henriques] + + * Release Tracking Bug + - LP: #1012057 + + [ Andy Whitcroft ] + + * [Config] fix up postinst to ensure we know which error is which + - LP: #1002388 + * [Config] highbank -- commonise filesystems + - LP: #1000831, #1010463 + * [Config] highbank -- commonise subsystems + - LP: #1000831, #1010463 + * [Config] highbank -- commonise network protocols + - LP: #1000831, #1010463 + * [Config] highbank -- commonise input drivers + - LP: #1000831, #1010463 + * [Config] highbank -- commonise CRYPTO options + - LP: #1000831, #1010463 + * [Config] highbank -- commonise HID options + - LP: #1000831, #1010463 + * [Config] highbank -- commonise sensors options + - LP: #1000831, #1010463 + * [Config] highbank -- commonise EXPORTFS/FHANDLE + - LP: #1000831, #1010463 + * [Config] highbank -- commonise CONFIG_CRYPTO_LZO + - LP: #1000831, #1010463 + * [Config] highbank -- commonise ENCRYPTED_KEYS + - LP: #1000831, #1010463 + * [Config] highbank -- commonise CONFIG_ATALK + - LP: #1000831, #1010463 + * [Config] highbank -- commonise INET/INET6 + - LP: #1000831, #1010463 + * [Config] highbank -- commonise NLS + - LP: #1000831, #1010463 + * [Config] highbank -- commonise BLK/CHR + - LP: #1000831, #1010463 + * [Config] highbank -- commonise PHY settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise CRC settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise BINFMT settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise DM settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise RTC_DRV settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise KEYBOARD/MOUSE settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise USB settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise GPIO settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise I2C settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise numerous subsystem selectors + - LP: #1000831, #1010463 + * [Config] highbank -- commonise A-C modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise D-F modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise G-I modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise J-L modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise M modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise N-P modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise Q-R modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise S modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise T modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise U-Z modules missmatches + - LP: #1000831, #1010463 + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: fix get_gate_vma call in i386 NX emulation code + - LP: #1009200 + + [ Ike Panhc ] + + * [Config] add highbank into d-i list + - LP: #1007459 + + [ Mario Limonciello ] + + * SAUCE: dell-laptop: rfkill blacklist Dell XPS 13z, 15 + - LP: #901410 + + [ Theodore Ts'o ] + + * SAUCE: ext4: fix the free blocks calculation for ext3 file systems w/ + uninit_bg + - LP: #1010022 + + [ Tim Gardner ] + + * [Config] CONFIG_NET_DSA=m + - LP: #1004148 + * [Config] armhf should not be skipabi or skipmodules + - LP: #1006913 + * [Config] highbank -- highbank.ignore.modules + + [ Upstream Kernel Changes ] + + * dsa: Change dsa_uses_{dsa, trailer}_tags() into inline functions + - LP: #1004148 + * dsa: Export functions from core to modules + - LP: #1004148 + * dsa: Combine core and tagging code + - LP: #1004148 + * mv88e6xxx: Combine mv88e6131 and mv88e612_61_65 drivers + - LP: #1004148 + * dsa: Define module author, description, license and aliases for drivers + - LP: #1004148 + * dsa: Allow core and drivers to be built as modules + - LP: #1004148 + * dsa: Remove unnecessary exports + - LP: #1004148 + * dsa: Move all definitions needed by drivers into + - LP: #1004148 + * dsa: Move switch drivers to new directory drivers/net/dsa + - LP: #1004148 + * dsa: Add reporting of silicon revision for Marvell + 88E6123/88E6161/88E6165 switches. + - LP: #1004148 + * drivers/net: dsa/mv88e6xxx.c files need linux/module.h + - LP: #1004148 + * power_supply: Drop usage of nowarn variant of sysfs_create_link() + - LP: #1005264 + * KVM: mmu_notifier: Flush TLBs before releasing mmu_lock + - LP: #1008711 + * KVM: lock slots_lock around device assignment + - LP: #1008711 + * KVM: nVMX: Fix erroneous exception bitmap check + - LP: #1008711 + * KVM: VMX: vmx_set_cr0 expects kvm->srcu locked + - LP: #1008711 + * KVM: s390: do store status after handling STOP_ON_STOP bit + - LP: #1008711 + * KVM: s390: Sanitize fpc registers for KVM_SET_FPU + - LP: #1008711 + * bio: don't overflow in bio_get_nr_vecs() + - LP: #1008711 + * bio allocation failure due to bio_get_nr_vecs() + - LP: #1008711 + * block: fix buffer overflow when printing partition UUIDs + - LP: #1008711 + * fix PA1.1 oops on boot + - LP: #1008711 + * fix crash in flush_icache_page_asm on PA1.1 + - LP: #1008711 + * fix panic on prefetch(NULL) on PA7300LC + - LP: #1008711 + * arch/tile/Kconfig: remove pointless "!M386" test. + - LP: #1008711 + * tilegx: enable SYSCALL_WRAPPERS support + - LP: #1008711 + * mtd: sm_ftl: fix typo in major number. + - LP: #1008711 + * hpsa: Fix problem with MSA2xxx devices + - LP: #1008711 + * SELinux: if sel_make_bools errors don't leave inconsistent state + - LP: #1008711 + * cfg80211: warn if db.txt is empty with CONFIG_CFG80211_INTERNAL_REGDB + - LP: #1008711 + * mpt2sas: Fix for panic happening because of improper memory allocation + - LP: #1008711 + * isdn/gigaset: ratelimit CAPI message dumps + - LP: #1008711 + * isdn/gigaset: fix CAPI disconnect B3 handling + - LP: #1008711 + * isdn/gigaset: improve error handling querying firmware version + - LP: #1008711 + * KEYS: Use the compat keyctl() syscall wrapper on Sparc64 for Sparc32 + compat + - LP: #1008711 + * IB/core: Fix mismatch between locked and pinned pages + - LP: #1008711 + * regulator: core: Release regulator-regulator supplies on error + - LP: #1008711 + * iommu: Fix off by one in dmar_get_fault_reason() + - LP: #1008711 + * RDMA/cxgb4: Always wake up waiters in c4iw_peer_abort_intr() + - LP: #1008711 + * RDMA/cxgb4: Drop peer_abort when no endpoint found + - LP: #1008711 + * s390/pfault: fix task state race + - LP: #1008711 + * isci: fix oem parameter validation on single controller skus + - LP: #1008711 + * Fix blocking allocations called very early during bootup + - LP: #1008711 + * vfs: make AIO use the proper rw_verify_area() area helpers + - LP: #1008711 + * docs: update HOWTO for 2.6.x -> 3.x versioning + - LP: #1008711 + * drivers/staging/comedi/comedi_fops.c: add missing vfree + - LP: #1008711 + * USB: move usb_translate_errors to linux/usb.h + - LP: #1008711 + * USB: cdc-wdm: sanitize error returns + - LP: #1008711 + * USB: cdc-wdm: fix memory leak + - LP: #1008711 + * 8250_pci: fix pch uart matching + - LP: #1008711 + * usb: add USB_QUIRK_RESET_RESUME for M-Audio 88es + - LP: #1008711 + * usb: usbtest: two super speed fixes for usbtest + - LP: #1008711 + * 8250.c: less than 2400 baud fix. + - LP: #1008711 + * usb-xhci: Handle COMP_TX_ERR for isoc tds + - LP: #1008711 + * xhci: Avoid dead ports when CONFIG_USB_XHCI_HCD=n + - LP: #1008711 + * xhci: Add Lynx Point to list of Intel switchable hosts. + - LP: #1008711 + * usb: gadget: fsl_udc_core: dTD's next dtd pointer need to be updated + once written + - LP: #1008711 + * Add missing call to uart_update_timeout() + - LP: #1008711 + * USB: ftdi-sio: add support for Physik Instrumente E-861 + - LP: #1008711 + * USB: ffs-test: fix length argument of out function call + - LP: #1008711 + * HID: wiimote: Fix IR data parser + - LP: #1008711 + * usb-storage: unusual_devs entry for Yarvik PMP400 MP4 player + - LP: #1008711 + * USB: ohci-at91: add a reset function to fix race condition + - LP: #1008711 + * HID: logitech: read all 32 bits of report type bitfield + - LP: #1008711 + * USB: serial: ti_usb_3410_5052: Add support for the FRI2 serial console + - LP: #1008711 + * USB: cdc-wdm: poll must return POLLHUP if device is gone + - LP: #1008711 + * USB: cdc-wdm: add debug messages on cleanup + - LP: #1008711 + * USB: cdc-wdm: cannot use dev_printk when device is gone + - LP: #1008711 + * tty: Allow uart_register/unregister/register + - LP: #1008711 + * workqueue: skip nr_running sanity check in worker_enter_idle() if + trustee is active + - LP: #1008711 + * xhci: Add new short TX quirk for Fresco Logic host. + - LP: #1008711 + * usbcore: enable USB2 LPM if port suspend fails + - LP: #1008711 + * perf/x86: Update event scheduling constraints for AMD family 15h models + - LP: #1008711 + * USB: fix resource leak in xhci power loss path + - LP: #1008711 + * xhci: Reset reserved command ring TRBs on cleanup. + - LP: #1008711 + * USB: Remove races in devio.c + - LP: #1008711 + * md: using GFP_NOIO to allocate bio for flush request + - LP: #1008711 + * um: Implement a custom pte_same() function + - LP: #1008711 + * um: Fix __swp_type() + - LP: #1008711 + * swap: don't do discard if no discard option added + - LP: #1008711 + * ahci: Detect Marvell 88SE9172 SATA controller + - LP: #1008711 + * ARM: 7365/1: drop unused parameter from flush_cache_user_range + - LP: #1008711 + * ARM: 7409/1: Do not call flush_cache_user_range with mmap_sem held + - LP: #1008711 + * sony-laptop: Enable keyboard backlight by default + - LP: #1008711 + * init: don't try mounting device as nfs root unless type fully matches + - LP: #1008711 + * memcg: free spare array to avoid memory leak + - LP: #1008711 + * compat: Fix RT signal mask corruption via sigprocmask + - LP: #1008711 + * ext3: Fix error handling on inode bitmap corruption + - LP: #1008711 + * ext4: fix error handling on inode bitmap corruption + - LP: #1008711 + * ACPI / PM: Add Sony Vaio VPCCW29FX to nonvs blacklist. + - LP: #1008711 + * hpsa: Add IRQF_SHARED back in for the non-MSI(X) interrupt handler + - LP: #1008711 + * wake up s_wait_unfrozen when ->freeze_fs fails + - LP: #1008711 + * cifs: fix revalidation test in cifs_llseek() + - LP: #1008711 + * OMAPDSS: VENC: fix NULL pointer dereference in DSS2 VENC sysfs debug + attr on OMAP4 + - LP: #1008711 + * i2c-eg20t: change timeout value 50msec to 1000msec + - LP: #1008711 + * drm/i915: [GEN7] Use HW scheduler for fixed function shaders + - LP: #1008711 + * mmc: sdio: avoid spurious calls to interrupt handlers + - LP: #1008711 + * smsusb: add autodetection support for USB ID 2040:c0a0 + - LP: #1008711 + * uvcvideo: Fix ENUMINPUT handling + - LP: #1008711 + * drm/i915: Avoid a double-read of PCH_IIR during interrupt handling + - LP: #1008711 + * b43legacy: Fix error due to MMIO access with SSB unpowered + - LP: #1008711 + * gpio: mpc8xxx: Prevent NULL pointer deref in demux handler + - LP: #1008711 + * drm/i915: don't clobber the pipe param in sanitize_modesetting + - LP: #1008711 + * spi/spi-fsl-spi: reference correct pdata in fsl_spi_cs_control + - LP: #1008711 + * xen: do not map the same GSI twice in PVHVM guests. + - LP: #1008711 + * nouveau: nouveau_set_bo_placement takes TTM flags + - LP: #1008711 + * MCE: Fix vm86 handling for 32bit mce handler + - LP: #1008711 + * x86/mce: Fix check for processor context when machine check was taken. + - LP: #1008711 + * tile: fix bug where fls(0) was not returning 0 + - LP: #1008711 + * intel-iommu: Add device info into list before doing context mapping + - LP: #1008711 + * block: don't mark buffers beyond end of disk as mapped + - LP: #1008711 + * drivers/rtc/rtc-pl031.c: configure correct wday for 2000-01-01 + - LP: #1008711 + * rtlwifi: Preallocate USB read buffers and eliminate kalloc in read + routine + - LP: #1008711 + * NFS4: fix compile warnings in nfs4proc.c + * Avoid reading past buffer when calling GETACL + - LP: #1002505, #1008711 + - CVE-2012-2375 + * Avoid beyond bounds copy while caching ACL + - LP: #1002505, #1008711 + - CVE-2012-2375 + * i2c: tegra: notify transfer-complete after clearing status. + - LP: #1008711 + * i2c: davinci: Free requested IRQ in remove + - LP: #1008711 + * x86, realmode: 16-bit real-mode code support for relocs tool + - LP: #1008711 + * x86, relocs: Workaround for binutils 2.22.52.0.1 section bug + - LP: #1008711 + * x86, relocs: When printing an error, say relative or absolute + - LP: #1008711 + * x86, relocs: Build clean fix + - LP: #1008711 + * x86-32, relocs: Whitelist more symbols for ld bug workaround + - LP: #1008711 + * x86, relocs: Add jiffies and jiffies_64 to the relative whitelist + - LP: #1008711 + * Linux 3.2.19 + - LP: #1008711 + * ALSA: HDA: Add support for Cirrus Logic 4213 + - LP: #910792 + * tg3: Fix TSO CAP for 5704 devs w / ASF enabled + - LP: #1005699 + * drm/i915:: Disable FBC on SandyBridge + - LP: #974830 + + -- Luis Henriques Wed, 13 Jun 2012 18:16:46 +0100 + +linux (3.2.0-25.40) precise-proposed; urgency=low + + [Luis Henriques] + + * Release Tracking Bug + - LP: #1003534 + + [ Andy Whitcroft ] + + * [Config] control.stub is an intermediate product not a dependancy + - LP: #992414 + * [Config] include include/generated/compile.h + - LP: #942569 + + [ Dave Martin ] + + * SAUCE: rtc: pl031: Enable module alias autogeneration for AMBA drivers + - LP: #1000831 + + [ Herton Ronaldo Krzesinski ] + + * Revert "SAUCE: ite-cir: postpone ISR registration" + - LP: #1002484 + * SAUCE: async_populate_rootfs: fix build warnings + - LP: #1003417 + + [ Ike Panhc ] + + * [Config] add highbank flavour + - LP: #1000831 + + [ John Johansen ] + + * SAUCE: apparmor: fix long path failure due to disconnected path + - LP: #955892 + * SAUCE: apparmor: fix profile lookup for unconfined + - LP: #978038, #987371 + + [ Mark Langsdorf ] + + * SAUCE: arm highbank: add support for pl320-ipc driver + - LP: #1000831 + + [ Rob Herring ] + + * SAUCE: input: add a key driver for highbank + - LP: #1000831 + * SAUCE: ARM: highbank: Add smc calls to enable/disable the L2 + - LP: #1000831 + * SAUCE: force DMA buffers to non-bufferable on highbank + - LP: #1000831 + * SAUCE: net: calxedaxgmac: fix net timeout recovery + - LP: #1000831 + + [ Tim Gardner ] + + * [Config] perarch and indep tools builds need separate build directories + * [Config] CONFIG_XEN_ACPI_PROCESSOR=y + - LP: #898112 + + [ Upstream Kernel Changes ] + + * Revert "autofs: work around unhappy compat problem on x86-64" + - LP: #1002482 + * Input: wacom - cleanup feature report for bamboos + - LP: #568064 + * Input: wacom - remove unused bamboo HID parsing + - LP: #568064 + * Input: wacom - add some comments to wacom_parse_hid + - LP: #568064 + * Input: wacom - relax Bamboo stylus ID check + - LP: #568064 + * Input: wacom - read 3rd gen Bamboo Touch HID data + - LP: #568064 + * Input: wacom - 3rd gen Bamboo P&Touch packet support + - LP: #568064 + * Input: wacom - ignore unwanted bamboo packets + - LP: #568064 + * HID: wacom: Move parsing to a separate function + - LP: #568064 + * HID: wacom: Initial driver for Wacom Intuos4 Wireless (Bluetooth) + - LP: #568064 + * Input: wacom - add support for Cintiq 24HD + - LP: #568064 + * Input: wacom - add LED support for Cintiq 24HD + - LP: #568064 + * Input: wacom - add missing LEDS_CLASS to Kconfig + - LP: #568064 + * Input: wacom - fix 3rd-gen Bamboo MT when 4+ fingers are in use + - LP: #568064 + * power_supply: allow a power supply to explicitly point to powered + device + - LP: #568064 + * power_supply: add "powers" links to self-powered HID devices + - LP: #568064 + * HID: wiimote: fix invalid power_supply_powers call + - LP: #568064 + * HID: wacom: Fix invalid power_supply_powers calls + - LP: #568064 + * ARM: 7178/1: fault.c: Port OOM changes into do_page_fault + - LP: #951043 + * ARM: 7368/1: fault.c: correct how the tsk->[maj|min]_flt gets + incremented + - LP: #951043 + * hugepages: fix use after free bug in "quota" handling + - LP: #990368 + - CVE-2012-2133 + * provide disable_cpufreq() function to disable the API. + - LP: #898112 + * xen/acpi-processor: C and P-state driver that uploads said data to + hypervisor. + - LP: #898112 + * xen/acpi-processor: Do not depend on CPU frequency scaling drivers. + - LP: #898112 + * xen/acpi: Fix Kconfig dependency on CPU_FREQ + - LP: #898112 + * xen/acpi: Remove the WARN's as they just create noise. + - LP: #898112 + * xen/cpufreq: Disable the cpu frequency scaling drivers from loading. + - LP: #898112 + * xen/apic: Return the APIC ID (and version) for CPU 0. + - LP: #898112 + * ARM: highbank: add xgmac ethernet devices to dts + - LP: #1000831 + * net: add calxeda xgmac ethernet driver + - LP: #1000831 + * ARM: versatile: Add missing ENDPROC to headsmp.S + - LP: #1000831 + * ARM: msm: Add missing ENDPROC to headsmp.S + - LP: #1000831 + * ARM: ux500: add missing ENDPROC to headsmp.S + - LP: #1000831 + * ARM: exynos: remove incorrect BSYM usage + - LP: #1000831 + * ARM: imx: remove incorrect BSYM usage + - LP: #1000831 + * ARM: highbank: remove incorrect BSYM usage + - LP: #1000831 + * ARM: make BSYM macro assembly only + - LP: #1000831 + * ARM: amba: Auto-generate AMBA driver module aliases during modpost + - LP: #1000831 + * ARM: amba: Move definition of struct amba_id to mod_devicetable.h + - LP: #1000831 + * dmaengine: pl330: Enable module alias autogeneration for AMBA drivers + - LP: #1000831 + * crypto: sha512 - Fix byte counter overflow in SHA-512 + - LP: #1002482 + * ALSA: hda/conexant - Don't set HP pin-control bit unconditionally + - LP: #1002482 + * ALSA: hda/conexant - Set up the missing docking-station pins + - LP: #1002482 + * ARM: clps711x: serial driver hungs are a result of call disable_irq + within ISR + - LP: #1002482 + * ARM: OMAP1: DMTIMER: fix broken timer clock source selection + - LP: #1002482 + * mmc: fixes for eMMC v4.5 discard operation + - LP: #1002482 + * mmc: fixes for eMMC v4.5 sanitize operation + - LP: #1002482 + * mmc: unbreak sdhci-esdhc-imx on i.MX25 + - LP: #1002482 + * xen/gntdev: do not set VM_PFNMAP + - LP: #1002482 + * xen/xenbus: Add quirk to deal with misconfigured backends. + - LP: #1002482 + * USB: yurex: Remove allocation of coherent buffer for setup-packet + buffer + - LP: #1002482 + * USB: yurex: Fix missing URB_NO_TRANSFER_DMA_MAP flag in urb + - LP: #1002482 + * uwb: fix use of del_timer_sync() in interrupt + - LP: #1002482 + * uwb: fix error handling + - LP: #1002482 + * davinci_mdio: Fix MDIO timeout check + - LP: #1002482 + * mwifiex: update pcie8766 scratch register addresses + - LP: #1002482 + * brcm80211: smac: resume transmit fifo upon receiving frames + - LP: #1002482 + * rc-core: set mode for winbond-cir + - LP: #1002482 + * drxk: Does not unlock mutex if sanity check failed in scu_command() + - LP: #1002482 + * cfg80211: fix interface combinations check. + - LP: #1002482 + * Fix modpost failures in fedora 17 + - LP: #1002482 + * mm: fix s390 BUG by __set_page_dirty_no_writeback on swap + - LP: #1002482 + * jbd2: use GFP_NOFS for blkdev_issue_flush + - LP: #1002482 + * USB: serial: cp210x: Fixed usb_control_msg timeout values + - LP: #1002482 + * pch_uart: Fix dma channel unallocated issue + - LP: #1002482 + * drivers/tty/amiserial.c: add missing tty_unlock + - LP: #1002482 + * USB: sierra: avoid QMI/wwan interface on MC77xx + - LP: #1002482 + * EHCI: fix criterion for resuming the root hub + - LP: #1002482 + * EHCI: always clear the STS_FLR status bit + - LP: #1002482 + * USB: fix deadlock in bConfigurationValue attribute method + - LP: #1002482 + * usb: gadget: udc-core: stop UDC on device-initiated disconnect + - LP: #1002482 + * usb: gadget: udc-core: fix asymmetric calls in remove_driver + - LP: #1002482 + * usb: gadget: udc-core: fix wrong call order + - LP: #1002482 + * usb: gadget: udc-core: fix incompatibility with dummy-hcd + - LP: #1002482 + * usb: gadget: eliminate NULL pointer dereference (bugfix) + - LP: #1002482 + * usb: musb: omap: fix crash when musb glue (omap) gets initialized + - LP: #1002482 + * usb: musb: omap: fix the error check for pm_runtime_get_sync + - LP: #1002482 + * PCI: Add quirk for still enabled interrupts on Intel Sandy Bridge GPUs + - LP: #1002482 + * ext4: fix endianness breakage in ext4_split_extent_at() + - LP: #1002482 + * KVM: unmap pages from the iommu when slots are removed + - LP: #1002482 + * dell-laptop: add 3 machines that has touchpad LED + - LP: #1002482 + * dell-laptop: touchpad LED should persist its status after S3 + - LP: #1002482 + * Bluetooth: Add support for Atheros [04ca:3005] + - LP: #1002482 + * Don't limit non-nested epoll paths + - LP: #1002482 + * spi: Fix device unregistration when unregistering the bus master + - LP: #1002482 + * spi/mpc83xx: fix NULL pdata dereference bug + - LP: #1002482 + * rt2800: Add support for the Fujitsu Stylistic Q550 + - LP: #1002482 + * rt2x00: Identify rt2800usb chipsets. + - LP: #1002482 + * nfsd: fix b0rken error value for setattr on read-only mount + - LP: #1002482 + * nfsd: fix error values returned by nfsd4_lockt() when nfsd_open() fails + - LP: #1002482 + * nfsd: fix endianness breakage in TEST_STATEID handling + - LP: #1002482 + * nfsd: fix compose_entry_fh() failure exits + - LP: #1002482 + * btrfs: btrfs_root_readonly() broken on big-endian + - LP: #1002482 + * ocfs2: ->l_next_free_req breakage on big-endian + - LP: #1002482 + * ocfs: ->rl_used breakage on big-endian + - LP: #1002482 + * ocfs2: ->rl_count endianness breakage + - LP: #1002482 + * ocfs2: ->e_leaf_clusters endianness breakage + - LP: #1002482 + * lockd: fix the endianness bug + - LP: #1002482 + * usb: dwc3: ep0: increment "actual" on bounced ep0 case + - LP: #1002482 + * net: fix /proc/net/dev regression + - LP: #1002482 + * nfsd: don't fail unchecked creates of non-special files + - LP: #1002482 + * ppp: Don't stop and restart queue on every TX packet + - LP: #1002482 + * tcp: allow splice() to build full TSO packets + - LP: #1002482 + * sctp: Allow struct sctp_event_subscribe to grow without breaking + binaries + - LP: #1002482 + * bridge: Do not send queries on multicast group leaves + - LP: #1002482 + * ipv6: fix array index in ip6_mc_add_src() + - LP: #1002482 + * phonet: Check input from user before allocating + - LP: #1002482 + * bonding: properly unset current_arp_slave on slave link up + - LP: #1002482 + * wimax: i2400m - prevent a possible kernel bug due to missing fw_name + string + - LP: #1002482 + * netlink: fix races after skb queueing + - LP: #1002482 + * net: fix a race in sock_queue_err_skb() + - LP: #1002482 + * tcp: fix tcp_rcv_rtt_update() use of an unscaled RTT sample + - LP: #1002482 + * net: allow pskb_expand_head() to get maximum tailroom + - LP: #1002482 + * tcp: fix tcp_trim_head() + - LP: #1002482 + * tcp: avoid order-1 allocations on wifi and tx path + - LP: #1002482 + * atl1: fix kernel panic in case of DMA errors + - LP: #1002482 + * 8139cp: set intr mask after its handler is registered + - LP: #1002482 + * net: smsc911x: fix skb handling in receive path + - LP: #1002482 + * net/ethernet: ks8851_mll fix rx frame buffer overflow + - LP: #1002482 + * net_sched: gred: Fix oops in gred_dump() in WRED mode + - LP: #1002482 + * net: usb: smsc75xx: fix mtu + - LP: #1002482 + * dummy: Add ndo_uninit(). + - LP: #1002482 + * tcp: fix tcp_grow_window() for large incoming frames + - LP: #1002482 + * netns: do not leak net_generic data on failed init + - LP: #1002482 + * ksz884x: don't copy too much in netdev_set_mac_address() + - LP: #1002482 + * net ax25: Reorder ax25_exit to remove races. + - LP: #1002482 + * tcp: fix TCP_MAXSEG for established IPv6 passive sockets + - LP: #1002482 + * nfs: Enclose hostname in brackets when needed in nfs_do_root_mount + - LP: #1002482 + * NFS: put open context on error in nfs_pagein_multi + - LP: #1002482 + * NFS: put open context on error in nfs_flush_multi + - LP: #1002482 + * x86, microcode: Fix sysfs warning during module unload on unsupported + CPUs + - LP: #1002482 + * x86, apic: APIC code touches invalid MSR on P5 class machines + - LP: #1002482 + * xen: correctly check for pending events when restoring irq flags + - LP: #1002482 + * xen/smp: Fix crash when booting with ACPI hotplug CPUs. + - LP: #1002482 + * ASoC: dapm: Ensure power gets managed for line widgets + - LP: #1002482 + * ASoC: wm8994: Improve sequencing of AIF channel enables + - LP: #1002482 + * dmaengine: at_hdmac: remove clear-on-read in atc_dostart() + - LP: #1002482 + * sched: Fix OOPS when build_sched_domains() percpu allocation fails + - LP: #1002482 + * tracing: Fix stacktrace of latency tracers (irqsoff and friends) + - LP: #1002482 + * hwmon: fam15h_power: fix bogus values with current BIOSes + - LP: #1002482 + * hwmon: (fam15h_power) Fix pci_device_id array + - LP: #1002482 + * dell-laptop: Terminate quirks list properly + - LP: #1002482 + * drm/radeon/kms: need to set up ss on DP bridges as well + - LP: #1002482 + * drm/i915: handle input/output sdvo timings separately in mode_set + - LP: #1002482 + * drm/i915: relative_constants_mode race fix + - LP: #1002482 + * drm/i915: Force sync command ordering (Gen6+) + - LP: #1002482 + * drm/i915: Set the Stencil Cache eviction policy to non-LRA mode. + - LP: #1002482 + * drm/i915: fix integer overflow in i915_gem_execbuffer2() + - LP: #1002482 + * drm/i915: fix integer overflow in i915_gem_do_execbuffer() + - LP: #1002482 + * nl80211: ensure interface is up in various APIs + - LP: #1002482 + * ALSA: HDA: Add external mic quirk for Asus Zenbook UX31E + - LP: #1002482, #950490 + * USB: cdc-wdm: fix race leading leading to memory corruption + - LP: #1002482 + * USB: EHCI: fix crash during suspend on ASUS computers + - LP: #1002482 + * USB: gadget: storage gadgets send wrong error code for unknown commands + - LP: #1002482 + * usb: gadget: dummy: do not call pullup() on udc_stop() + - LP: #1002482 + * usb gadget: uvc: uvc_request_data::length field must be signed + - LP: #1002482 + * pipes: add a "packetized pipe" mode for writing + - LP: #1002482 + * autofs: make the autofsv5 packet file descriptor use a packetized pipe + - LP: #1002482 + * ARM: 7396/1: errata: only handle ARM erratum #326103 on affected cores + - LP: #1002482 + * ARM: 7397/1: l2x0: only apply workaround for erratum #753970 on PL310 + - LP: #1002482 + * ARM: 7398/1: l2x0: only write to debug registers on PL310 + - LP: #1002482 + * ARM: 7403/1: tls: remove covert channel via TPIDRURW + - LP: #1002482 + * ARM: 7406/1: hotplug: copy the affinity mask when forcefully migrating + IRQs + - LP: #1002482 + * libsas: fix sas_find_bcast_phy() in the presence of 'vacant' phys + - LP: #1002482 + * libsas: fix false positive 'device attached' conditions + - LP: #1002482 + * efi: Add new variable attributes + - LP: #1002482 + * efi: Validate UEFI boot variables + - LP: #1002482 + * PM / Hibernate: fix the number of pages used for hibernate/thaw + buffering + - LP: #1002482 + * drm/i915: enable dip before writing data on gen4 + - LP: #1002482 + * efivars: Improve variable validation + - LP: #1002482 + * fs/cifs: fix parsing of dfs referrals + - LP: #1002482 + * Fix __read_seqcount_begin() to use ACCESS_ONCE for sequence value read + - LP: #1002482 + * hwmon: (coretemp) Increase CPU core limit + - LP: #1002482 + * nouveau: initialise has_optimus variable. + - LP: #1002482 + * hwmon: (coretemp) fix oops on cpu unplug + - LP: #1002482 + * libata: skip old error history when counting probe trials + - LP: #1002482 + * b43: only reload config after successful initialization + - LP: #1002482, #950295 + * i2c: pnx: Disable clk in suspend + - LP: #1002482 + * ipw2200: Fix race condition in the command completion acknowledge + - LP: #1002482 + * mac80211: fix AP mode EAP tx for VLAN stations + - LP: #1002482 + * rtlwifi: Fix oops on unload + - LP: #1002482 + * wl1251: fix crash on remove due to premature kfree + - LP: #1002482 + * wl1251: fix crash on remove due to leftover work item + - LP: #1002482 + * iwlwifi: do not nulify ctx->vif on reset + - LP: #1002482 + * iwlwifi: fix hardware queue programming + - LP: #1002482 + * hfsplus: Fix potential buffer overflows + - LP: #1002482 + * ASoC: tlv312aic23: unbreak resume + - LP: #1002482 + * asm-generic: Use __BITS_PER_LONG in statfs.h + - LP: #1002482 + * x86, relocs: Remove an unused variable + - LP: #1002482 + * ARM: 7410/1: Add extra clobber registers for assembly in kernel_execve + - LP: #1002482 + * ARM: 7414/1: SMP: prevent use of the console when using idmap_pgd + - LP: #1002482 + * drm/i915: disable sdvo hotplug on i945g/gm + - LP: #1002482 + * drm/i915: Do no set Stencil Cache eviction LRA w/a on gen7+ + - LP: #1002482 + * xen/pte: Fix crashes when trying to see non-existent PGD/PMD/PUD/PTEs + - LP: #1002482 + * xen/pci: don't use PCI BIOS service for configuration space accesses + - LP: #1002482 + * percpu, x86: don't use PMD_SIZE as embedded atom_size on 32bit + - LP: #1002482 + * iwlagn: allow up to uCode API 6 for 6000 devices + - LP: #1002482 + * iwlwifi: use correct released ucode version + - LP: #1002482 + * iwlwifi: use 6000G2B for 6030 device series + - LP: #1002482 + * exit_signal: simplify the "we have changed execution domain" logic + - LP: #1002482 + * exit_signal: fix the "parent has changed security domain" logic + - LP: #1002482 + * staging: r8712u: Fix regression caused by commit 8c213fa + - LP: #1002482 + * smsc95xx: mark link down on startup and let PHY interrupt deal with + carrier changes + - LP: #1002482 + * Linux 3.2.17 + - LP: #1002482 + * regulator: Fix the logic to ensure new voltage setting in valid range + - LP: #1002484 + * ARM: OMAP: Revert "ARM: OMAP: ctrl: Fix CONTROL_DSIPHY register fields" + - LP: #1002484 + * ALSA: echoaudio: Remove incorrect part of assertion + - LP: #1002484 + * ARM: orion5x: Fix GPIO enable bits for MPP9 + - LP: #1002484 + * ALSA: HDA: Lessen CPU usage when waiting for chip to respond + - LP: #1002484 + * percpu: pcpu_embed_first_chunk() should free unused parts after all + allocs are complete + - LP: #1002484 + * hugetlb: prevent BUG_ON in hugetlb_fault() -> hugetlb_cow() + - LP: #1002484 + * namespaces, pid_ns: fix leakage on fork() failure + - LP: #1002484 + * mm: nobootmem: fix sign extend problem in __free_pages_memory() + - LP: #1002484 + * asix: Fix tx transfer padding for full-speed USB + - LP: #1002484 + * netem: fix possible skb leak + - LP: #1002484 + * net: In unregister_netdevice_notifier unregister the netdevices. + - LP: #1002484 + * net: l2tp: unlock socket lock before returning from l2tp_ip_sendmsg + - LP: #1002484 + * sky2: propogate rx hash when packet is copied + - LP: #1002484 + * sky2: fix receive length error in mixed non-VLAN/VLAN traffic + - LP: #1002484 + * sungem: Fix WakeOnLan + - LP: #1002484 + * tg3: Avoid panic from reserved statblk field access + - LP: #1002484 + * tcp: fix infinite cwnd in tcp_complete_cwr() + - LP: #1002484 + * tcp: change tcp_adv_win_scale and tcp_rmem[2] + - LP: #1002484 + * brcm80211: smac: pass missing argument to 'brcms_b_mute' + - LP: #1002484 + * phy:icplus:fix Auto Power Saving in ip101a_config_init. + - LP: #1002484 + * NFSv4: Revalidate uid/gid after open + - LP: #1002484 + * target: Drop incorrect se_lun_acl release for dynamic -> explict ACL + conversion + - LP: #1002484 + * marvell-cam: fix an ARM build error + - LP: #1002484 + * rc: Postpone ISR registration + - LP: #1002484 + * cdc_ether: Ignore bogus union descriptor for RNDIS devices + - LP: #1002484 + * jffs2: Fix lock acquisition order bug in gc path + - LP: #1002484 + * s5p-fimc: Fix locking in subdev set_crop op + - LP: #1002484 + * dm mpath: check if scsi_dh module already loaded before trying to load + - LP: #1002484 + * sparc64: Do not clobber %g2 in xcall_fetch_glob_regs(). + - LP: #1002484 + * gpio: Add missing spin_lock_init in gpio-ml-ioh driver + - LP: #1002484 + * spi-topcliff-pch: Modify pci-bus number dynamically to get DMA device + info + - LP: #1002484 + * spi-topcliff-pch: Fix issue for transmitting over 4KByte + - LP: #1002484 + * spi-topcliff-pch: supports a spi mode setup and bit order setup by IO + control + - LP: #1002484 + * spi-topcliff-pch: add recovery processing in case wait-event timeout + - LP: #1002484 + * ext4: avoid deadlock on sync-mounted FS w/o journal + - LP: #1002484 + * ia64: Add accept4() syscall + - LP: #1002484 + * brcm80211: smac: fix endless retry of A-MPDU transmissions + - LP: #1002484 + * ARM: 7417/1: vfp: ensure preemption is disabled when enabling VFP + access + - LP: #1002484 + * target: Fix SPC-2 RELEASE bug for multi-session iSCSI client setups + - LP: #1002484 + * crypto: mv_cesa requires on CRYPTO_HASH to build + - LP: #1002484 + * ALSA: hda/idt - Fix power-map for speaker-pins with some HP laptops + - LP: #1002484 + * ASoC: wm8994: Fix AIF2ADC power down + - LP: #1002484 + * usbnet: fix skb traversing races during unlink(v2) + - LP: #1002484 + * cdc_ether: add Novatel USB551L device IDs for FLAG_WWAN + - LP: #1002484 + * ARM: prevent VM_GROWSDOWN mmaps extending below FIRST_USER_ADDRESS + - LP: #1002484 + * arch/tile: apply commit 74fca9da0 to the compat signal handling as well + - LP: #1002484 + * MD: Add del_timer_sync to mddev_suspend (fix nasty panic) + - LP: #1002484 + * target: Fix bug in handling of FILEIO + block_device resize ops + - LP: #1002484 + * tcp: do_tcp_sendpages() must try to push data out on oom conditions + - LP: #1002484 + * e1000: Prevent reset task killing itself. + - LP: #1002484 + * pktgen: fix crash at module unload + - LP: #1002484 + * pktgen: fix module unload for good + - LP: #1002484 + * Linux 3.2.18 + - LP: #1002484 + * thinkpad-acpi: recognize Lenovo as version string in newer V-series + BIOS + - LP: #1002920 + * dl2k: Clean up rio_ioctl + - CVE-2012-2313 + + -- Luis Henriques Wed, 23 May 2012 17:37:05 +0100 + +linux (3.2.0-24.39) precise-proposed; urgency=low + + [Luis Henriques] + + * Release Tracking Bug + - LP: #1002329 + + [ Andy Whitcroft ] + + * SAUCE: ata_piix: add a disable_driver option + - LP: #994870 + + -- Luis Henriques Mon, 21 May 2012 15:51:25 +0100 + +linux (3.2.0-24.38) precise-proposed; urgency=low + + [ Luis Henriques ] + + * Release Tracking Bug + - LP: #991925 + + [ Herton Ronaldo Krzesinski ] + + * linux: add Build-Depends for libnewt-dev, to enable perf TUI support + - LP: #981717 + + [ Tim Gardner ] + + * SAUCE: Allow filtering of cpufreq drivers + - LP: #984288 + + [ Upstream Kernel Changes ] + + * x86 bpf_jit: fix a bug in emitting the 16-bit immediate operand of AND + - LP: #981162 + * tg3: Fix 5717 serdes powerdown problem + - LP: #981162 + * sky2: dont overwrite settings for PHY Quick link + - LP: #981162 + * rose_dev: fix memcpy-bug in rose_set_mac_address + - LP: #981162 + * net: usb: cdc_eem: fix mtu + - LP: #981162 + * Fix non TBI PHY access; a bad merge undid bug fix in a previous commit. + - LP: #981162 + * ASoC: wm8994: Update WM8994 DCS calibration + - LP: #981162 + * mtd: ixp4xx: oops in ixp4xx_flash_probe + - LP: #981162 + * mtd: mips: lantiq: reintroduce support for cmdline partitions + - LP: #981162 + * mtd: nand: gpmi: use correct member for checking NAND_BBT_USE_FLASH + - LP: #981162 + * mtd: sst25l: initialize writebufsize + - LP: #981162 + * mtd: block2mtd: initialize writebufsize + - LP: #981162 + * mtd: lart: initialize writebufsize + - LP: #981162 + * mtd: m25p80: set writebufsize + - LP: #981162 + * ACPI: Do cpufreq clamping for throttling per package v2 + - LP: #981162 + * PNPACPI: Fix device ref leaking in acpi_pnp_match + - LP: #981162 + * modpost: fix ALL_INIT_DATA_SECTIONS + - LP: #981162 + * genirq: Adjust irq thread affinity on IRQ_SET_MASK_OK_NOCOPY return + value + - LP: #981162 + * tracing: Fix ftrace stack trace entries + - LP: #981162 + * tracing: Fix ent_size in trace output + - LP: #981162 + * m68k/mac: Add missing platform check before registering platform + devices + - LP: #981162 + * mac80211: fix possible tid_rx->reorder_timer use after free + - LP: #981162 + * rtlwifi: rtl8192ce: rtl8192cu: rtl8192de: Fix low-gain setting when + scanning + - LP: #981162 + * drm: Validate requested virtual size against allocated fb size + - LP: #981162 + * drm/radeon/kms: fix fans after resume + - LP: #981162 + * drm/i915: no-lvds quirk on MSI DC500 + - LP: #981162 + * drm/i915: Add lock on drm_helper_resume_force_mode + - LP: #981162 + * drm/i915: quirk away broken OpRegion VBT + - LP: #981162 + * r8169: runtime resume before shutdown. + - LP: #981162 + * target: Fix unsupported WRITE_SAME sense payload + - LP: #981162 + * kgdb,debug_core: pass the breakpoint struct instead of address and + memory + - LP: #981162 + * kgdbts: Fix kernel oops with CONFIG_DEBUG_RODATA + - LP: #981162 + * kgdbts: (1 of 2) fix single step awareness to work correctly with SMP + - LP: #981162 + * kgdbts: (2 of 2) fix single step awareness to work correctly with SMP + - LP: #981162 + * x86,kgdb: Fix DEBUG_RODATA limitation using text_poke() + - LP: #981162 + * CIFS: Fix VFS lock usage for oplocked files + - LP: #981162 + * ARM: tegra: remove Tegra30 errata from MACH_TEGRA_DT + - LP: #981162 + * mmc: sdhci-dove: Fix compile error by including module.h + - LP: #981162 + * mmc: atmel-mci: correct data timeout computation + - LP: #981162 + * tcm_fc: Add abort flag for gracefully handling exchange timeout + - LP: #981162 + * tcm_fc: Do not free tpg structure during wq allocation failure + - LP: #981162 + * sysctl: fix write access to dmesg_restrict/kptr_restrict + - LP: #981162 + * modpost: Fix modpost license checking of vmlinux.o + - LP: #981162 + * x86/PCI: use host bridge _CRS info on MSI MS-7253 + - LP: #981162 + * x86/PCI: do not tie MSI MS-7253 use_crs quirk to BIOS version + - LP: #981162 + * TOMOYO: Fix mount flags checking order. + - LP: #981162 + * acer-wmi: No wifi rfkill on Sony machines + - LP: #981162 + * Fix length of buffer copied in __nfs4_get_acl_uncached + - LP: #981162 + * sched/x86: Fix overflow in cyc2ns_offset + - LP: #981162 + * mfd: Clear twl6030 IRQ status register only once + - LP: #981162 + * USB: Add Motorola Rokr E6 Id to the USBNet driver "zaurus" + - LP: #981162 + * ioat: fix size of 'completion' for Xen + - LP: #981162 + * ASoC: ak4642: fixup: mute needs +1 step + - LP: #981162 + * cred: copy_process() should clear child->replacement_session_keyring + - LP: #981162 + * iommu/amd: Make sure IOMMU interrupts are re-enabled on resume + - LP: #981162 + * Linux 3.2.15 + - LP: #981162 + * drm/radeon/kms: fix DVO setup on some r4xx chips + - LP: #987337 + * drm/i915/ringbuffer: Exclude last 2 cachlines of ring on 845g + - LP: #987337 + * drm/radeon: only add the mm i2c bus if the hw_i2c module param is set + - LP: #987337 + * drm/i915: properly compute dp dithering for user-created modes + - LP: #987337 + * drm/i915: make rc6 module parameter read-only + - LP: #987337 + * rtlwifi: Add missing DMA buffer unmapping for PCI drivers + - LP: #987337 + * ARM: 7379/1: DT: fix atags_to_fdt() second call site + - LP: #987337 + * ARM: 7384/1: ThumbEE: Disable userspace TEEHBR access for + !CONFIG_ARM_THUMBEE + - LP: #987337 + * md/bitmap: prevent bitmap_daemon_work running while initialising bitmap + - LP: #987337 + * Bluetooth: uart-ldisc: Fix memory leak + - LP: #987337 + * Bluetooth: hci_ldisc: fix NULL-pointer dereference on tty_close + - LP: #987337 + * ext4: address scalability issue by removing extent cache statistics + - LP: #987337 + * ia64: fix futex_atomic_cmpxchg_inatomic() + - LP: #987337 + * drivers/rtc/rtc-pl031.c: enable clock on all ST variants + - LP: #987337 + * hugetlb: fix race condition in hugetlb_fault() + - LP: #987337 + * staging: iio: hmc5843: Fix crash in probe function. + - LP: #987337 + * tty: serial: altera_uart: Check for NULL platform_data in probe. + - LP: #987337 + * sparc64: Eliminate obsolete __handle_softirq() function + - LP: #987337 + * sparc64: Fix bootup crash on sun4v. + - LP: #987337 + * cciss: Initialize scsi host max_sectors for tape drive support + - LP: #987337 + * cciss: Fix scsi tape io with more than 255 scatter gather elements + - LP: #987337 + * video:uvesafb: Fix oops that uvesafb try to execute NX-protected page + - LP: #987337 + * nohz: Fix stale jiffies update in tick_nohz_restart() + - LP: #987337 + * pch_uart: Fix MSI setting issue + - LP: #987337 + * USB: serial: fix race between probe and open + - LP: #987337 + * USB: pl2303: fix DTR/RTS being raised on baud rate change + - LP: #987337 + * USB: option: re-add NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED to option_id + array + - LP: #987337 + * USB: ftdi_sio: fix status line change handling for TIOCMIWAIT and + TIOCGICOUNT + - LP: #987337 + * USB: ftdi_sio: fix race condition in TIOCMIWAIT, and abort of + TIOCMIWAIT when the device is removed + - LP: #987337 + * USB: sierra: add support for Sierra Wireless MC7710 + - LP: #987337 + * USB: don't clear urb->dev in scatter-gather library + - LP: #987337 + * USB: don't ignore suspend errors for root hubs + - LP: #987337 + * xhci: don't re-enable IE constantly + - LP: #987337 + * xhci: Don't write zeroed pointers to xHC registers. + - LP: #987337 + * xhci: Restore event ring dequeue pointer on resume. + - LP: #987337 + * USB: fix bug of device descriptor got from superspeed device + - LP: #987337 + * xHCI: add XHCI_RESET_ON_RESUME quirk for VIA xHCI host + - LP: #987337 + * xHCI: Correct the #define XHCI_LEGACY_DISABLE_SMI + - LP: #987337 + * fix tlb flushing for page table pages + - LP: #987337 + * serial: PL011: clear pending interrupts + - LP: #987337 + * serial: PL011: move interrupt clearing + - LP: #987337 + * fcaps: clear the same personality flags as suid when fcaps are used + - LP: #987337 + * ath9k: fix max noise floor threshold + - LP: #987337 + * xhci: Fix register save/restore order. + - LP: #987337 + * Bluetooth: hci_core: fix NULL-pointer dereference at unregister + - LP: #987337 + * pch_gpio: Support new device LAPIS Semiconductor ML7831 IOH + - LP: #987337 + * gpio: Add missing spin_lock_init in gpio-pch driver + - LP: #987337 + * usb: gadget: pch_udc: Fix disconnect issue + - LP: #987337 + * usb: gadget: pch_udc: Fix wrong return value + - LP: #987337 + * usb: gadget: pch_udc: Fix USB suspend issue + - LP: #987337 + * usb: gadget: pch_udc: Fix usb/gadget/pch_udc: Fix ether gadget + connect/disconnect issue + - LP: #987337 + * usb: gadget: pch_udc: Reduce redundant interrupt + - LP: #987337 + * ACPICA: Fix to allow region arguments to reference other scopes + - LP: #987337 + * security: fix compile error in commoncap.c + - LP: #987337 + * pch_gbe: Do not abort probe on bad MAC + - LP: #987337 + * pch_gbe: memory corruption calling pch_gbe_validate_option() + - LP: #987337 + * pch_dma: Support new device LAPIS Semiconductor ML7831 IOH + - LP: #987337 + * spi-topcliff-pch: fix -Wuninitialized warning + - LP: #987337 + * spi-topcliff-pch: Support new device LAPIS Semiconductor ML7831 IOH + - LP: #987337 + * Bluetooth: Add Atheros maryann PIDVID support + - LP: #987337 + * futex: Do not leak robust list to unprivileged process + - LP: #987337 + * drm/radeon/kms: fix the regression of DVI connector check + - LP: #987337 + * drm/radeon: disable MSI on RV515 + - LP: #987337 + * drm/radeon: fix load detect on rn50 with hardcoded EDIDs. + - LP: #987337 + * perf hists: Catch and handle out-of-date hist entry maps. + - LP: #987337 + * Linux 3.2.16 + - LP: #987337 + * KVM: Ensure all vcpus are consistent with in-kernel irqchip settings + - LP: #971685 + - CVE-2012-1601 + * HID: multitouch: correct eGalax a001 protocol + - LP: #913164 + * HID: multitouch: add more eGalax devices + - LP: #913164 + * HID: multitouch: add support for eGalax 0x722a + - LP: #913164 + * UAS: Re-add workqueue items if submission fails. + - LP: #901215 + * UAS: Use unique tags on non-streams devices. + - LP: #901215 + * UAS: Free status URB when we can't find the SCSI tag. + - LP: #901215 + * usb/uas: use unique tags for all LUNs + - LP: #901215 + * usb/uas: use scsi_host_find_tag() to find command from a tag + - LP: #901215 + * usb/uas: one only one status URB/host on stream-less connection + - LP: #901215 + * usb/uas: only bind if the hcd supports SG + - LP: #901215 + * usb/uas: move UAS structs / defines into a header file + - LP: #901215 + * usb/uas: add usb_pipe_usage_descriptor + - LP: #901215 + * usb/uas: make sure data urb is gone if we receive status before that + - LP: #901215 + * md: fix possible corruption of array metadata on shutdown. + - LP: #992038 + + -- Luis Henriques Mon, 30 Apr 2012 19:04:27 +0100 + +linux (3.2.0-24.37) precise-proposed; urgency=low + + [ Herton Ronaldo Krzesinski ] + + * d-i: Add hid-logitech-dj to input-modules + - LP: #975198 + * d-i: Add rtl8187 driver to nic-usb-modules + - LP: #971719 + + [ Ian Abbott ] + + * SAUCE: staging: comedi: Add module parameters for default buffer size + - LP: #981234 + * SAUCE: staging: comedi: Add kernel config for default buffer sizes + - LP: #981234 + + [ K. Y. Srinivasan ] + + * SAUCE: hv_storvsc: Account for in-transit packets in the RESET path + - LP: #978394 + + [ Leann Ogasawara ] + + * [Config] Set CONFIG_COMEDI_DEFAULT_BUF_[SIZE_KB,MAXSIZE_KB] + - LP: #981234 + + [ Luis Henriques ] + + * SAUCE: ite-cir: postpone ISR registration + - LP: #984387 + + [ Manoj Iyer ] + + * SAUCE: Bluetooth: btusb: Add vendor specific ID (0489 e042) for + BCM20702A0 + - LP: #980965 + + [ Tim Gardner ] + + * Extract firmware module info during getabi + * [Config] Remove hiq-quanta module references + - LP: #913164 + * [Config] powerpc-smp: build in ATI and RADEON frame buffer drivers + - LP: #949288 + + [ Trond Myklebust ] + + * SAUCE: NFSv4: Ensure that the LOCK code sets exception->inode + - LP: #974664 + * SAUCE: NFSv4: Ensure that we check lock exclusive/shared type against + open modes + - LP: #974664 + + [ Upstream Kernel Changes ] + + * Input: psmouse - allow drivers to use psmouse_{de,}activate + - LP: #969334 + * Input: psmouse - use psmouse_[de]activate() from sentelic and hgpk + drivers + - LP: #969334 + * Input: sentelic - refactor code for upcoming new hardware support + - LP: #969334 + * Input: sentelic - enabling absolute coordinates output for newer + hardware + - LP: #969334 + * Input: sentelic - minor code cleanup + - LP: #969334 + * Input: sentelic - improve packet debugging information + - LP: #969334 + * Input: sentelic - filter taps in absolute mode + - LP: #969334 + * drm/i915: Fixes distorted external screen image on HP 2730p + - LP: #796030 + * NFSv4: Minor cleanups for nfs4_handle_exception and + nfs4_async_handle_error + - LP: #974664 + * NFSv4: Rate limit the state manager for lock reclaim warning messages + - LP: #974664 + * HID: multitouch: merge quanta driver into hid-multitouch + - LP: #913164 + * HID: usbhid: add quirk no_get for quanta 3008 devices + - LP: #913164 + + -- Leann Ogasawara Tue, 24 Apr 2012 07:47:49 -0700 + +linux (3.2.0-23.36) precise-proposed; urgency=low + + [ Andy Whitcroft ] + + * tools/hv: add basic Makefile + - LP: #977246 + * tools/hv: add basic manual pages + - LP: #977246 + * Hyper-V KVP daemon -- add to the tools package + - LP: #977246 + + [ David Henningsson ] + + * SAUCE: (drop after 3.3) ALSA: HDA: Remove quirk for Gigabyte + GA-H61M-S2PV + - LP: #948360 + + [ Leann Ogasawara ] + + * d-i: Add dm-mirror and dm-raid to md-modules + - LP: #919281 + + [ Tim Gardner ] + + * [Config] Fix invalid linux-headers link + - LP: #974403 + * Remove headers asm symlink entirely + - LP: #974403 + + [ Upstream Kernel Changes ] + + * Revert "x86/ioapic: Add register level checks to detect bogus io-apic + entries" + - LP: #974982 + * ALSA: HDA: Realtek: Take vmaster dac from multiout dac list + - LP: #974090 + * kexec: remove KMSG_DUMP_KEXEC + - LP: #944772 + * kmsg_dump: don't run on non-error paths by default + - LP: #944772 + * pstore: Introduce get_reason_str() to pstore + - LP: #944772 + + -- Leann Ogasawara Tue, 10 Apr 2012 08:16:09 -0700 + +linux (3.2.0-22.35) precise; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: hotkey quirks for various Zeptro Znote and Fujitsu Amilo + laptops" + * SAUCE: (no-up) elide some ioctl warnings which are known benign + - LP: #972355 + + [ Brad Figg ] + + * SAUCE (no-up) Provide a param for allowing the BIOS to handle changing + the brightness on AC/battery status changes. + - LP: #949311 + * SAUCE (drop after 3.4) Quirk for enabling backlight hotkeys on Samsung + N150P + - LP: #875893 + + [ Colin Ian King ] + + * SAUCE: PCI: Allow pcie_aspm=force to work even when FADT indicates it + is unsupported + - LP: #962038 + + [ Daniel Vetter ] + + * SAUCE: (drop after 3.5) drm/i915: reinstate GM45 TV detection fix + - LP: #638939 + + [ Kees Cook ] + + * SAUCE: SECCOMP: audit: always report seccomp violations + * SAUCE: SECCOMP: adjust prctl constant + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_USBIP_CORE=m + - LP: #900384 + * Rebase to v3.2.14 + * [Config] Updateconfigs after rebase to v3.2.14 + + [ Stefan Bader ] + + * d-i: Fix module name for dm-raid45 + - LP: #969248 + + [ Tim Gardner ] + + * SAUCE: remove __initdata from vesafb_fix + - LP: #969309 + + [ Upstream Kernel Changes ] + + * Revert "sched: tg->se->load should be initialised to tg->shares" + * toshiba_acpi: make one-bit bitfields unsigned + - LP: #810015 + * ACPI: EC: Add ec_get_handle() + - LP: #810015 + * toshiba_acpi: Support alternate hotkey interfaces + - LP: #810015 + * toshiba_acpi: Support additional hotkey scancodes + - LP: #810015 + * toshiba_acpi: Refuse to load on machines with buggy INFO + implementations + - LP: #810015 + * ata_piix: Add Toshiba Satellite Pro A120 to the quirks list due to + broken suspend functionality. + - LP: #886850 + * sweep the floors and convert some .get_drvinfo routines to strlcpy + - LP: #921793 + * be2net: init (vf)_if_handle/vf_pmac_id to handle failure scenarios + - LP: #921793 + * be2net: stop checking the UE registers after an EEH error + - LP: #921793 + * be2net: don't log more than one error on detecting EEH/UE errors + - LP: #921793 + * be2net: stop issuing FW cmds if any cmd times out + - LP: #921793 + * be2net: Fix TX queue create for Lancer + - LP: #921793 + * be2net: add register dump feature for Lancer + - LP: #921793 + * be2net: Add EEPROM dump feature for Lancer + - LP: #921793 + * be2net: Fix VLAN promiscous mode for Lancer + - LP: #921793 + * be2net: Use V1 query link status command for lancer + - LP: #921793 + * be2net: Move to new SR-IOV implementation in Lancer + - LP: #921793 + * be2net: Fix error recovery paths + - LP: #921793 + * be2net: Add error handling for Lancer + - LP: #921793 + * be2net: Use new hash key + - LP: #921793 + * be2net: Fix non utilization of RX queues + - LP: #921793 + * be2net: netpoll support + - LP: #921793 + * be2net: update some counters to display via ethtool + - LP: #921793 + * be2net: workaround to fix a bug in BE + - LP: #921793 + * be2net: fix ethtool ringparam reporting + - LP: #921793 + * be2net: refactor/cleanup vf configuration code + - LP: #921793 + * be2net: Add support for Skyhawk cards + - LP: #921793 + * be2net: Fix INTx processing for Lancer + - LP: #921793 + * be2net: fix range check for set_qos for a VF + - LP: #921793 + * be2net: query link status in be_open() + - LP: #921793 + * netdev: make net_device_ops const + - LP: #921793 + * be2net: create RSS rings even in multi-channel configs + - LP: #921793 + * ethtool: Null-terminate filename passed to ethtool_ops::flash_device + - LP: #921793 + * sched: Fix nohz load accounting + - LP: #838811 + * ACPICA: Fix regression in FADT revision checks + - LP: #883441 + * asus-wmi: move WAPF variable into quirks_entry + - LP: #969576 + * eeepc-wmi: refine quirks handling + - LP: #969576 + * drm/i915: Sanitize BIOS debugging bits from PIPECONF + - LP: #968307 + * drivers: hv: Get rid of some unnecessary code + * drivers: hv: kvp: Add/cleanup connector defines + * drivers: hv: kvp: Move the contents of hv_kvp.h to hyperv.h + * net/hyperv: Convert camel cased variables in rndis_filter.c to lower + cases + * net/hyperv: Correct the assignment in netvsc_recv_callback() + * net/hyperv: Remove the unnecessary memset in rndis_filter_send() + * tools: hv: Use hyperv.h to get the KVP definitions + * drivers: hv: Cleanup the kvp related state in hyperv.h + * drivers: hv: kvp: Cleanup the kernel/user protocol + * drivers: hv: Increase the number of VCPUs supported in the guest + * net/hyperv: Fix data corruption in rndis_filter_receive() + * net/hyperv: Add support for vlan trunking from guests + * Drivers: hv: Add new message types to enhance KVP + * net/hyperv: fix erroneous NETDEV_TX_BUSY use + * NLS: improve UTF8 -> UTF16 string conversion routine + * Drivers: hv: Support the newly introduced KVP messages in the driver + * Tools: hv: Fully support the new KVP verbs in the user level daemon + * Tools: hv: Support enumeration from all the pools + * Drivers: scsi: storvsc: Properly handle errors from the host + * net: mv643xx_eth: fix build error + - LP: #921793 + * rebase to v3.2.14 + + -- Leann Ogasawara Tue, 03 Apr 2012 08:59:16 -0700 + +linux (3.2.0-21.34) precise; urgency=low + + [ AceLan Kao ] + + * SAUCE: (drop after 3.4) asus-wmi: add scalar board brightness adj. + support + - LP: #961879 + * SAUCE: (drop after 3.4) asus-wmi: store backlight power status for AIO + machine + - LP: #961880 + + [ Andy Whitcroft ] + + * [Config]: enable CONFIG_DRM_LOAD_EDID_FIRMWARE + + [ John Johansen ] + + * SAUCE: AppArmor: Add the ability to mediate mount + * SAUCE: AppArmor: Add profile introspection file to interface + * SAUCE: AppArmor: basic networking rules + * SAUCE: Update aufs for build failure caused by apparmor backport + * SAUCE: AppArmor: Fix change_onexec when called from a confined task + - LP: #963756 + + [ Leann Ogasawara ] + + * Revert "SAUCE: (drop after 3.3) platform/x86: Add driver for Apple gmux + device" + * Rebase to v3.2.13 + * d-i: Fix iwl3945 driver name typo in nic-modules + * d-i: Add missing iwl* drivers to nic-modules + - LP: #965116 + * d-i: Remove obsolete bcm43xx* drivers from nic-modules + * d-i: Add brcm*mac drivers to nic-modules + + [ Seth Forshee ] + + * SAUCE: (drop after 3.3) apple_bl: Add register/unregister functions + * SAUCE: (drop after 3.3) platform/x86: Add driver for Apple gmux device + + [ Tim Gardner ] + + * Add isci to debian scsi-modules udeb + - LP: #963306 + * SAUCE: fsam7400: use UMH_WAIT_PROC consistently + - LP: #963685 + * SAUCE: disable_nx should not be in __cpuinitdata section for X86_32 + - LP: #968233 + + [ Upstream Kernel Changes ] + + * Bluetooth: Adding USB device 13d3:3375 as an Atheros AR3012. + - LP: #916319 + * x86: Report cpb and eff_freq_ro flags correctly + - LP: #960461 + * x86/amd: Add missing feature flag for fam15h models 10h-1fh processors + - LP: #960461 + * KVM: Move cpuid code to new file + - LP: #960466 + * KVM: expose latest Intel cpu new features (BMI1/BMI2/FMA/AVX2) to guest + - LP: #960466 + * apparmor: add missing rcu_dereference() + * apparmor: fix module parameter handling + * btrfs, nfs, apparmor: don't pull mnt_namespace.h for no reason... + * switch security_path_chmod() to umode_t + * switch securityfs_create_file() to umode_t + * switch ->path_mkdir() to umode_t + * switch ->path_mknod() to umode_t + * capabilities: remove the task from capable LSM hook entirely + * switch security_path_chmod() to struct path * + * AppArmor: refactor securityfs to use structures + * AppArmor: add initial "features" directory to securityfs + * AppArmor: add "file" details to securityfs + * AppArmor: export known rlimit names/value mappings in securityfs + * AppArmor: Add mising end of structure test to caps unpacking + * AppArmor: Fix dropping of allowed operations that are force audited + * AppArmor: Fix underflow in xindex calculation + * AppArmor: fix mapping of META_READ to audit and quiet flags + * AppArmor: Fix the error case for chroot relative path name lookup + * AppArmor: Fix error returned when a path lookup is disconnected + * AppArmor: Fix oops in policy unpack auditing + * AppArmor: Add const qualifiers to generated string tables + * AppArmor: Retrieve the dentry_path for error reporting when path lookup + fails + * AppArmor: Minor cleanup of d_namespace_path to consolidate error + handling + * AppArmor: Update dfa matching routines. + * AppArmor: Move path failure information into aa_get_name and rename + * AppArmor: Add ability to load extended policy + * AppArmor: add const qualifiers to string arrays + * AppArmor: Fix location of const qualifier on generated string tables + * drm: allow loading an EDID as firmware to override broken monitor + * usermodehelper: use UMH_WAIT_PROC consistently + - LP: #963685 + * usermodehelper: introduce umh_complete(sub_info) + - LP: #963685 + * usermodehelper: implement UMH_KILLABLE + - LP: #963685 + * usermodehelper: kill umh_wait, renumber UMH_* constants + - LP: #963685 + * usermodehelper: ____call_usermodehelper() doesn't need do_exit() + - LP: #963685 + * kmod: introduce call_modprobe() helper + - LP: #963685 + * kmod: make __request_module() killable + - LP: #963685 + * x86, tsc: Fix SMI induced variation in quick_pit_calibrate() + - LP: #965586 + * drm/i915: Ignore LVDS on hp t5745 and hp st5747 thin client + - LP: #911916, #911920 + * drm/i915: Add Clientron E830 to the ignore LVDS list + - LP: #907055 + * rebase to v3.2.13 + + -- Leann Ogasawara Thu, 29 Mar 2012 08:33:38 -0700 + +linux (3.2.0-20.33) precise; urgency=low + + [ Upstream Kernel Changes ] + + * (pre-stable) ASPM: Fix pcie devices with non-pcie children + - LP: #961482 + + -- Leann Ogasawara Tue, 27 Mar 2012 08:37:43 -0700 + +linux (3.2.0-20.32) precise; urgency=low + + [ Andy Lutomirski ] + + * SAUCE: SECCOMP: Add PR_{GET,SET}_NO_NEW_PRIVS to prevent execve from + granting privs + + [ John Johansen ] + + * SAUCE: SECCOMP: Fix apparmor for PR_{GET,SET}_NO_NEW_PRIVS + + [ Kees Cook ] + + * SAUCE: SECCOMP: seccomp: remove duplicated failure logging + * [Config] SECCOMP_FILTER=y + + [ Upstream Kernel Changes ] + + * seccomp: audit abnormal end to a process due to seccomp + + [ Will Drewry ] + + * SAUCE: SECCOMP: sk_run_filter: add BPF_S_ANC_SECCOMP_LD_W + * SAUCE: SECCOMP: net/compat.c,linux/filter.h: share compat_sock_fprog + * SAUCE: SECCOMP: seccomp: kill the seccomp_t typedef + * SAUCE: SECCOMP: arch/x86: add syscall_get_arch to syscall.h + * SAUCE: SECCOMP: asm/syscall.h: add syscall_get_arch + * SAUCE: SECCOMP: seccomp: add system call filtering using BPF + * SAUCE: SECCOMP: seccomp: add SECCOMP_RET_ERRNO + * SAUCE: SECCOMP: signal, x86: add SIGSYS info and make it synchronous. + * SAUCE: SECCOMP: seccomp: Add SECCOMP_RET_TRAP + * SAUCE: SECCOMP: ptrace,seccomp: Add PTRACE_SECCOMP support + * SAUCE: SECCOMP: x86: Enable HAVE_ARCH_SECCOMP_FILTER + * SAUCE: SECCOMP: Documentation: prctl/seccomp_filter + + -- Leann Ogasawara Wed, 21 Mar 2012 14:03:41 -0700 + +linux (3.2.0-19.31) precise; urgency=low + + [ Stefan Bader ] + + * d-i: Add dm-multipath and scsi device handlers + - LP: #959749 + * d-i: Move multipath modules into their own udeb + - LP: #598251, #959749 + + [ Tim Gardner ] + + * [Config] Auto-detect do_tools setting + * [Config] correctly specify CROSS_COMPILE for tools build + * [Config] CONFIG_DRM_PSB_CDV=n + * Rebase to v3.2.12 + + [ Upstream Kernel Changes ] + + * powerpc/pmac: Fix SMP kernels on pre-core99 UP machines + - LP: #959959 + * rebase to v3.2.12 + + -- Leann Ogasawara Tue, 20 Mar 2012 09:11:26 -0700 + +linux (3.2.0-19.30) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] Fix typeo in the Hyper-V module names + + [ Colin Watson ] + + * [Config] Move kernels to "Section: kernel" + - LP: #499557 + + [ John Johansen ] + + * SAUCE: AppArmor: Add ability to load extended policy + * SAUCE: AppArmor: Add the ability to mediate mount + * SAUCE: AppArmor: Add profile introspection file to interface + * SAUCE: AppArmor: basic networking rules + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER + - LP: #952035 + * Rebase to v3.2.10 + * [Config] Update configs after rebase to v3.2.10 + * Rebase to v3.2.11 + * [Config] Disable CONFIG_STUB_POULSBO + - LP: #899244 + * [Config] Add CONFIG_DRM_PSB check to enforcer + - LP: #899244 + + [ Tim Gardner ] + + * [Config] Drop non-SMP powerpc + + [ Upstream Kernel Changes ] + + * net/hyperv: Use the built-in macro KBUILD_MODNAME for this driver + * x86: Derandom delay_tsc for 64 bit + * Bluetooth: Fix l2cap conn failures for ssp devices + - LP: #872044 + * KVM: x86: extend "struct x86_emulate_ops" with "get_cpuid" + - LP: #917842 + - CVE-2012-0045 + * KVM: x86: fix missing checks in syscall emulation + - LP: #917842 + - CVE-2012-0045 + * rebase to v3.2.11 + * rebase to v3.2.10 + + -- Leann Ogasawara Fri, 16 Mar 2012 08:02:07 -0700 + +linux (3.2.0-18.29) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] restore build-% shortcut + * SAUCE: ata_piix: defer disks to the Hyper-V drivers by default + - LP: #929545, #942316 + + [ Eugeni Dodonov ] + + * SAUCE: drm: give up on edid retries when i2c bus is not responding + - LP: #855124 + + [ Seth Forshee ] + + * SAUCE: (drop after 3.3) platform/x86: Add driver for Apple gmux device + - LP: #925544 + + [ Upstream Kernel Changes ] + + * bsg: fix sysfs link remove warning + - LP: #946928 + * regset: Prevent null pointer reference on readonly regsets + - LP: #949905 + - CVE-2012-1097 + * regset: Return -EFAULT, not -EIO, on host-side memory fault + - LP: #949905 + - CVE-2012-1097 + + [ Wu Fengguang ] + + * SAUCE: (drop after 3.4) ALSA: hda - add id for Atom Cedar Trail HDMI + codec + + -- Leann Ogasawara Fri, 09 Mar 2012 07:56:11 -0800 + +linux (3.2.0-18.28) precise; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- adapt to the new changelog handling + * ubuntu: AUFS -- sort out the relative header paths + * ubuntu: AUFS -- update to d266b0c5d0693d6383976ee54b9e2c0fa9a3f5b0 + + [ Chase Douglas ] + + * SAUCE: (drop after 3.3) HID: hid-magicmouse: Add pointer and buttonpad + properties for Magic Trackpad + * SAUCE: Input: synaptics - add second variant of two-button clickpad + * SAUCE: Input: synapticss - Set buttonpad property for all clickpads + + [ Johannes Berg ] + + * SAUCE: iwlwifi: fix key removal + - LP: #911059 + + [ John Johansen ] + + * Revert "SAUCE: AppArmor: Fix unpack of network tables." + * Revert "SAUCE: AppArmor: Allow dfa backward compatibility with broken + userspace" + * SAUCE: AppArmor: Add mising end of structure test to caps unpacking + * SAUCE: AppArmor: Fix dropping of allowed operations that are force + audited + * SAUCE: AppArmor: Fix underflow in xindex calculation + * SAUCE: AppArmor: fix mapping of META_READ to audit and quiet flags + * SAUCE: AppArmor: Fix the error case for chroot relative path name + lookup + - LP: #925028 + * SAUCE: AppArmor: Retrieve the dentry_path for error reporting when path + lookup fails + - LP: #925028 + * SAUCE: AppArmor: Minor cleanup of d_namespace_path to consolidate error + handling + * SAUCE: AppArmor: Update dfa matching routines. + * SAUCE: AppArmor: Move path failure information into aa_get_name and + rename + * SAUCE: AppArmor: Make chroot relative the default path lookup type + * SAUCE: AppArmor: Add ability to load extended policy + * SAUCE: AppArmor: basic networking rules + * SAUCE: AppArmor: Add profile introspection file to interface + * SAUCE: AppArmor: Add the ability to mediate mount + * SAUCE: AppArmor: Add mount information to apparmorfs + + [ Kees Cook ] + + * SAUCE: AppArmor: refactor securityfs to use structures + * SAUCE: AppArmor: add initial "features" directory to securityfs + * SAUCE: AppArmor: add "file" details to securityfs + * SAUCE: AppArmor: export known rlimit names/value mappings in securityfs + + [ Leann Ogasawara ] + + * Revert "[Config] Enable CONFIG_NVRAM=m" + - LP: #942193 + * Rebase to v3.2.7 + * [Config] Enable CONFIG_USB_SERIAL_QUATECH2=m on arm and powerpc + * [Config] Enable CONFIG_USB_SERIAL_QUATECH_USB2=m on arm and powerpc + * [Config] Add CONFIG_NVRAM to config enforcer + - LP: #942193 + * [Config] Enable CONFIG_SCSI_IBMVSCSI=m for powerpc + - LP: #943090 + * [Config] Enable CONFIG_SCSI_IPR=m for powerpc + - LP: #943090 + * provide ipmi udeb + - LP: #942926 + * Rebase to v3.2.9 + * Add ibmveth to d-i/modules-powerpc/nic-modules + - LP: #712188 + * [Config] Enable CONFIG_SCSI_IBMVFC=m for powerpc + - LP: #712188 + * Add ibmvfc and ibmvscsic to d-i/modules-powerpc/nic-modules + - LP: #712188 + + [ Seth Heasley ] + + * SAUCE: ALSA: hda - Add Lynx Point HD Audio Controller DeviceIDs + - LP: #900119 + * SAUCE: ahci: AHCI-mode SATA patch for Intel Lynx Point DeviceIDs + - LP: #900119 + * SAUCE: ata_piix: IDE-mode SATA patch for Intel Lynx Point DeviceIDs + - LP: #900119 + * SAUCE: i2c-i801: Add device IDs for Intel Lynx Point + - LP: #900119 + + [ Tim Gardner ] + + * [Config] updateconfigs after apparmor patches + * [Config] Added hv_netvsc and hv_storvsc to -virtual + - LP: #942256 + * [Config] Enable aufs + - LP: #943119 + + [ Upstream Kernel Changes ] + + * Revert "Revert "ath9k_hw: fix interpretation of the rx KeyMiss flag"" + * Revert "AppArmor: compatibility patch for v5 interface" + * Revert "AppArmor: compatibility patch for v5 network controll" + * ACPI / PM: Do not save/restore NVS on Asus K54C/K54HR + - LP: #898503 + * rebase to v3.2.9 + - LP: #900802 + * rebase to v3.2.8 + * rebase to v3.2.7 + - LP: #930842 + + -- Leann Ogasawara Fri, 02 Mar 2012 07:30:45 -0800 + +linux (3.2.0-17.27) precise; urgency=low + + [ Eugeni Dodonov ] + + * SAUCE: drm/i915: fix operator precedence when enabling RC6p + + -- Leann Ogasawara Tue, 21 Feb 2012 06:31:42 -0800 + +linux (3.2.0-17.26) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] clean up the human consumable package descriptions + * [Config] fix generic flavour description + * [Config] clean up linux-tools package descriptions + - LP: #593107 + * deviations -- note the source of the Hyper-V updates + * SAUCE: ata_piix: defer to the Hyper-V drivers by default + - LP: #929545 + + [ Eugeni Dodonov ] + + * SAUCE: drm/i915: do not enable RC6p on Sandy Bridge + + [ Kees Cook ] + + * SAUCE: (drop after 3.3) security: create task_free security callback + * SAUCE: (drop after 3.3) security: Yama LSM + * SAUCE: (drop after 3.3) Yama: add PR_SET_PTRACER_ANY + * SAUCE: Yama: add link restrictions + * SAUCE: security: unconditionally chain to Yama LSM + + [ Leann Ogasawara ] + + * Drop ndiswrapper + + [ Robert Hooker ] + + * SAUCE: drm/i915: Enable RC6 by default on sandybridge. + + [ Tim Gardner ] + + * SAUCE: ipheth: Add iPhone 4S + - LP: #900802 + * dropped hv_mouse + * [Config] CONFIG_X86_NUMACHIP=y + + [ Upstream Kernel Changes ] + + * Staging: hv: vmbus: Support building the vmbus driver as part of the + kernel + * hv: Add Kconfig menu entry + * Drivers: hv: Fix a memory leak + * Drivers: hv: Make the vmbus driver unloadable + * Drivers: hv: Get rid of an unnecessary check in hv.c + * Staging: hv: mousevsc: Make boolean states boolean + * Staging: hv: mousevsc: Inline the code for mousevsc_on_device_add() + * Staging: hv: mousevsc: Inline the code for reportdesc_callback() + * Staging: hv: mousevsc: Cleanup mousevsc_on_channel_callback() + * Staging: hv: mousevsc: Add a new line to a debug string + * Staging: hv: mousevsc: Get rid of unnecessary include files + * Staging: hv: mousevsc: Address some style issues + * Staging: hv: mousevsc: Add a check to prevent memory corruption + * Staging: hv: mousevsc: Use the KBUILD_MODNAME macro + * Staging: hv: storvsc: Use mempools to allocate struct + storvsc_cmd_request + * Staging: hv: storvsc: Cleanup error handling in the probe function + * Staging: hv: storvsc: Fixup the error when processing SET_WINDOW + command + * Staging: hv: storvsc: Fix error handling storvsc_host_reset() + * Staging: hv: storvsc: Use the accessor function shost_priv() + * Staging: hv: storvsc: Use the unlocked version queuecommand + * Staging: hv: storvsc: use the macro KBUILD_MODNAME + * Staging: hv: storvsc: Get rid of an unnecessary forward declaration + * Staging: hv: storvsc: Upgrade the vmstor protocol version + * Staging: hv: storvsc: Support hot add of scsi disks + * Staging: hv: storvsc: Support hot-removing of scsi devices + * staging: hv: Use kmemdup rather than duplicating its implementation + * staging: hv: move hv_netvsc out of staging area + * Staging: hv: mousevsc: Properly add the hid device + * Staging: hv: storvsc: Disable clustering + * Staging: hv: storvsc: Cleanup storvsc_device_alloc() + * Staging: hv: storvsc: Fix a bug in storvsc_command_completion() + * Staging: hv: storvsc: Fix a bug in copy_from_bounce_buffer() + * Staging: hv: storvsc: Implement per device memory pools + * Staging: hv: remove hv_mouse driver as it's now in the hid directory + * Staging: hv: update TODO file + * Staging: hv: storvsc: Fix a bug in create_bounce_buffer() + * net/hyperv: Fix long lines in netvsc.c + * net/hyperv: Add support for promiscuous mode setting + * net/hyperv: Fix the stop/wake queue mechanism + * net/hyperv: Remove unnecessary kmap_atomic in netvsc driver + * net/hyperv: Add NETVSP protocol version negotiation + * net/hyperv: Add support for jumbo frame up to 64KB + * net/hyperv: fix possible memory leak in do_set_multicast() + * net/hyperv: rx_bytes should account the ether header size + * net/hyperv: fix the issue that large packets be dropped under bridge + * net/hyperv: Use netif_tx_disable() instead of netif_stop_queue() when + necessary + * net/hyperv: Fix the page buffer when an RNDIS message goes beyond page + boundary + * HID: Move the hid-hyperv driver out of staging + * HID: hv_mouse: Properly add the hid device + * HID: hyperv: Properly disconnect the input device + * Staging: hv: storvsc: Cleanup some comments + * Staging: hv: storvsc: Cleanup storvsc_probe() + * Staging: hv: storvsc: Cleanup storvsc_queuecommand() + * Staging: hv: storvsc: Introduce defines for srb status codes + * Staging: hv: storvsc: Cleanup storvsc_host_reset_handler() + * Staging: hv: storvsc: Move and cleanup storvsc_remove() + * Staging: hv: storvsc: Add a comment to explain life-cycle management + * Staging: hv: storvsc: Get rid of the on_io_completion in + hv_storvsc_request + * Staging: hv: storvsc: Rename the context field in hv_storvsc_request + * Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver + * Staging: hv: storvsc: Cleanup the code for generating protocol version + * Staging: hv: storvsc: Cleanup some protocol related constants + * Staging: hv: storvsc: Get rid of some unused defines + * Staging: hv: storvsc: Consolidate the request structure + * Staging: hv: storvsc: Consolidate all the wire protocol definitions + * Staging: hv: storvsc: Move the storage driver out of the staging area + * x86: Make flat_init_apic_ldr() available + * x86: Add x86_init platform override to fix up NUMA core numbering + * x86: Add NumaChip support + * x86/numachip: Drop unnecessary conflict with EDAC + * Input: bcm5974 - set BUTTONPAD property + + -- Leann Ogasawara Fri, 17 Feb 2012 10:12:34 -0800 + +linux (3.2.0-16.25) precise; urgency=low + + [ Andy Whitcroft ] + + * d-i -- include the Hyper-V drivers in the virtio udeb + - LP: #917135 + + [ Felix Fietkau ] + + * (pre-stable): ath9k_hw: fix a RTS/CTS timeout regression + - LP: #925602 + + [ Keith Packard ] + + * SAUCE: drm/i915: Force explicit bpp selection for + intel_dp_link_required + - LP: #745112, #912387, #917330 + + [ Leann Ogasawara ] + + * Fix typo in generic-pae description + - LP: #928448 + * Rebase to v3.2.6 + + [ Upstream Kernel Changes ] + + * procfs: parse mount options + - CVE-2011-4917 + * procfs: add hidepid= and gid= mount options + - CVE-2011-4917 + * proc: fix null pointer deref in proc_pid_permission() + - CVE-2011-4917 + * xhci: Remove warnings about MSI and MSI-X capabilities. + - LP: #929656 + * xhci: Remove scary warnings about transfer issues. + - LP: #929656 + * x86, mce, therm_throt: Don't report power limit and package level + thermal throttle events in mcelog + - LP: #930288 + * rebase to v3.2.6 + - LP: #924320 + - LP: #918254 + + -- Leann Ogasawara Mon, 13 Feb 2012 13:00:08 -0800 + +linux (3.2.0-15.24) precise; urgency=low + + [ Leann Ogasawara ] + + * Add CONFIG_THERM_ADT746X=y to config enforcer for powerpc and + powerpc-smp flavours + - LP: #923094 + + [ Merlin Schumacher ] + + * SAUCE: acer-wmi: support for P key on TM8372 + - LP: #865807 + + [ Tim Gardner ] + + * [Config] Rebase to v3.2.5 + * [Config] CONFIG_THERM_ADT746X=y + - LP: #923094 + + [ Upstream Kernel Changes ] + + * rebase to v3.2.5 + + -- Leann Ogasawara Tue, 07 Feb 2012 11:47:43 -0800 + +linux (3.2.0-14.23) precise; urgency=low + + [ Andy Whitcroft ] + + * debian -- add usage help to insert-mainline-changes + + [ Tim Gardner ] + + * [Config] Rebase to v3.2.3 + + [ Upstream Kernel Changes ] + + * Revert "ASoC: Don't go through cache when applying WM5100 rev A + updates" + * Revert "ASoC: Mark WM5100 register map cache only when going into + BIAS_OFF" + * rebase to v3.2.3 + + -- Leann Ogasawara Fri, 03 Feb 2012 12:12:25 -0800 + +linux (3.2.0-13.22) precise; urgency=low + + [ Alex Deucher ] + + * (pre-stable): drm/radeon/kms: move panel mode setup into encoder mode + set + - LP: #925538 + * (pre-stable): drm/radeon/kms: rework modeset sequence for DCE41 and + DCE5 + - LP: #925538 + + [ Andy Whitcroft ] + + * [Config] review IPv6 configuration options and enable + + [ David Henningsson ] + + * SAUCE: ALSA: HDA: Remove quirk for Toshiba Qosmio G50 + - LP: #923316 + * SAUCE: ALSA: HDA: Fix jack creation for codecs with front and rear Line + In + - LP: #923409 + + [ James M. Leddy ] + + * SAUCE: Bluetooth: Add support for BCM20702A0 [0a5c:21e6] + - LP: #906832 + + [ Manoj Iyer ] + + * SAUCE: Bluetooth: Add support for BCM20702A0 [0a5c:21e1] + - LP: #906832 + * SAUCE: Add vendor specific ID (0a5c 21f3) for BCM20702A0. + - LP: #925552 + + [ Seth Forshee ] + + * (pre-stable): drm/radeon/kms: disable output polling when suspended + - LP: #925570 + + [ Tim Gardner ] + + * [Config] CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m + - LP: #922221 + * [Config] Add mtip32xx to d-i block modules + - LP: #922221 + * [Config] Enable USB3.0 in d-i + + [ Upstream Kernel Changes ] + + * block: Add driver for Micron RealSSD pcie flash cards + - LP: #922221 + * mtip32xx: fix warnings/errors on 32-bit compiles + - LP: #922221 + * mtip32xx: cleanup compat ioctl handling + - LP: #922221 + * mtip32xx: ensure that all local functions are static + - LP: #922221 + * mtip32xx: mark a few more items static + - LP: #922221 + * mtip32xx: add module.h include to avoid conflict with moduleh tree + - LP: #922221 + * mtip32xx: update to new ->make_request() API + - LP: #922221 + * mtip32xx: updates based on feedback + - LP: #922221 + * mtip32xx: uninitialized variable in mtip_quiesce_io() + - LP: #922221 + * mtip32xx: do rebuild monitoring asynchronously + - LP: #922221 + * watchdog: iTCO_wdt: add Intel Lynx Point DeviceIDs + - LP: #900119 + * drm/i915: mask transcoder select bits before setting them on LVDS + - LP: #924989 + * (pre-stable) USB: Realtek cr: fix autopm scheduling while atomic + - LP: #917962 + * nouveau: properly check for _DSM function support + - LP: #925608 + * nouveau: Support Optimus models for vga_switcheroo + - LP: #925608 + + -- Leann Ogasawara Thu, 02 Feb 2012 13:26:59 -0800 + +linux (3.2.0-12.21) precise; urgency=low + + [ Upstream Kernel Changes ] + + * Revert "ath9k_hw: fix interpretation of the rx KeyMiss flag" + - LP: #923512 + + -- Leann Ogasawara Mon, 30 Jan 2012 06:46:01 -0800 + +linux (3.2.0-12.20) precise; urgency=low + + [ Andy Whitcroft ] + + * switch to new style rebase marker with bug number + + [ Leann Ogasawara ] + + * Add CONFIG_GPIO_TWL4030=y for arm[el|hf] to the config enforcer + - LP: #921934 + + [ Paolo Pisati ] + + * [Config] Switch CONFIG_GPIO_TWL4030=y back on arm[el|hf]. + - LP: #921934 + + [ Tim Gardner ] + + * Rebase to v3.2.2, CONFIG_SND_KCTL_JACK=y + * [Config] Add Hyper-V modules to virtual inclusion list + - LP: #922063 + + [ Upstream Kernel Changes ] + + * Revert "CHROMIUM: enable CONFIG_SECCOMP_FILTER and + CONFIG_HAVE_SECCOMP_FILTER" + * Revert "CHROMIUM: Fix kref usage" + * Revert "CHROMIUM: Fix seccomp_t compile error" + * Revert "CHROMIUM: seccomp_filter: make inherited filters composable" + * Revert "CHROMIUM: seccomp_filter: inheritance documentation" + * Revert "CHROMIUM: seccomp_filter: allow CAP_SYS_ADMIN management of + execve" + * Revert "CHROMIUM: seccomp_filter: remove "skip" from copy and add drop + helper" + * Revert "CHROMIUM: seccomp_filters: clean up warnings; kref mistake" + * Revert "CHROMIUM: seccomp_filters: guard all ftrace wrapper code" + * Revert "CHROMIUM: seccomp_filter: kill NR_syscall references" + * Revert "CHROMIUM: enable CONFIG_BTREE" + * Revert "CHROMIUM: seccomp_filters: move to btrees" + * Revert "CHROMIUM: arm: select HAVE_SECCOMP_FILTER" + * Revert "CHROMIUM: x86: add HAVE_SECCOMP_FILTER and seccomp_execve" + * Revert "CHROMIUM: seccomp_filter: Document what seccomp_filter is and + how it works." + * Revert "CHROMIUM: seccomp_filter: add process state reporting" + * Revert "CHROMIUM: seccomp_filter: new mode with configurable syscall + filters" + * rebase to v3.2.2 + - LP: #795823 + - LP: #909419 + - LP: #724831 + + -- Tim Gardner Thu, 26 Jan 2012 02:54:56 +0000 + +linux (3.2.0-11.19) precise; urgency=low + + [ Daniel Lezcano ] + + * SAUCE: Add reboot_pid_ns to handle the reboot syscall + - LP: #914676 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Introduce snd_hda_get_pin_label() + * ALSA: hda - Cache the jack-detection value + * ALSA: hda - Create jack-detection kcontrols + * ALSA: hda - Manage unsol tags in hda_jack.c + * ALSA: Introduce common helper functions for jack-detection control + * ALSA: HDA: Jack: Export required functions from hda_jack.c + * ALSA: hda/jack - Fix NULL-dereference at probing + * ALSA: hda/jack - Fix the assignment of input jack-type + * ALSA: hda - Add missing initialization of kctl jack status + * ALSA: hda - Add missing inclusion of linux/export.h + * ALSA: hda - Give more unique names by snd_hda_get_pin_label() + * ALSA: hda - Fix a typo + * ALSA: hda - Don't add channel suffix for headphone pin labels + * ALSA: hda - Integrate input-jack stuff into kctl-jack + * ALSA: hda/realtek - Avoid conflict of unsol-events with static quirks + * ALSA: hda/realtek - Remove use_jack_tbl field + + -- Leann Ogasawara Wed, 25 Jan 2012 06:57:19 -0800 + +linux (3.2.0-10.18) precise; urgency=low + + [ Tim Gardner ] + + * SAUCE: ecryptfs: Print inode on metadata error + + [ Upstream Kernel Changes ] + + * Revert "proc: enable writing to /proc/pid/mem" + - LP: #919115 + - CVE-2012-0056 + * (pre-stable) ALSA: HDA: Use LPIB position fix for Macbook Pro 7, 1 + - LP: #909419 + + -- Andy Whitcroft Tue, 24 Jan 2012 10:15:12 +0000 + +linux (3.2.0-10.17) precise; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: overlayfs -- fs: limit filesystem stacking depth" + * Revert "SAUCE: overlayfs -- overlay: overlay filesystem documentation" + * Revert "SAUCE: overlayfs -- overlayfs: implement show_options" + * Revert "SAUCE: overlayfs -- overlayfs: add statfs support" + * Revert "SAUCE: overlayfs -- overlay filesystem" + * Revert "SAUCE: overlayfs -- vfs: introduce clone_private_mount()" + * Revert "SAUCE: overlayfs -- vfs: export do_splice_direct() to modules" + * Revert "SAUCE: overlayfs -- vfs: add i_op->open()" + * ensure debian/ is not excluded from git by default + * add new scripting to handle buglinks in rebases + * ubuntu: overlayfs -- overlayfs: add statfs support + * ubuntu: overlayfs -- overlayfs: apply device cgroup and security + permissions to overlay files + - LP: #915941, #918212 + - CVE-2012-0055 + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Leann Ogasawara ] + + * Revert "SAUCE: dmar: disable if ricoh multifunction detected" + * [Config] Disable CONFIG_INTEL_IOMMU_DEFAULT_ON + - LP: #907377, #911236 + * [Config] Enable CONFIG_IRQ_REMAP + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: pass struct path to __dentry_open() + * ubuntu: overlayfs -- vfs: add i_op->open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Upstream Kernel Changes ] + + * (pre-stable) x86/PCI: amd: factor out MMCONFIG discovery + - LP: #647043 + * (pre-stable) PNP: work around Dell 1536/1546 BIOS MMCONFIG bug that + breaks USB + - LP: #647043 + + -- Leann Ogasawara Mon, 16 Jan 2012 07:10:08 -0800 + +linux (3.2.0-9.16) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] Enable numerous CONFIG_VIDEO_* cards on ARM + * [Config] pull ARM sound modules =m + * [Config] CONFIG_RTC_DRV_TEST is for testing only + * [Config] CONFIG_USB_DUMMY_HCD is testing only + * [Config] CONFIG_USB_FILE_STORAGE is deprecated + + [ Leann Ogasawara ] + + * Revert "[Config] Temporarily disable CONFIG_CAN_TI_HECC on armel" + * [Config] Enable CONFIG_HW_RANDOM_PASEMI=m + * [Config] Enable CONFIG_MMC_TMIO=m + * [Config] Enable CONFIG_MTD_NAND_FSL_ELBC=m + * [Config] Enable CONFIG_ISI=m + * [Config] Enable CONFIG_MMC=y + * [Config] Enable CONFIG_LIRC_PARALLEL=m + * [Config] Enable CONFIG_MAC_EMUMOUSEBTN=m + * [Config] Enable CONFIG_CHR_DEV_SG=y + * [Config] Enable CONFIG_GPIO_PCA953X=m + * [Config] Enable CONFIG_GPIO_TWL4030=m + * [Config] Enable CONFIG_INET_DIAG=m + * [Config] Enable CONFIG_NLS_ISO8859_1=m + * [Config] Enable CONFIG_NVRAM=m + * [Config] Enable CONFIG_SLIP=m + * [Config] Enable CONFIG_PC300TOO=m + * [Config] Enable CONFIG_TUN=y + * [Config] Enable CONFIG_NET_CLS_CGROUP=m + * [Config] Enable CONFIG_THERMAL=y + * [Config] Enable CONFIG_PPP=y + * [Config] Enable CONFIG_PCI_STUB=m + * Rebase to v3.2.1 + * [Config] Enable CONFIG_RTL8192E=m + * [Config] Enable CONFIG_RTS5139=m + + [ Stefan Bader ] + + * [Config] Make CONFIG_VIRTIO_(NET|BLK)=y + + [ Upstream Kernel Changes ] + + * ARM: restart: add restart hook to machine_desc record + * ARM: restart: allow platforms more flexibility specifying restart mode + * ARM: restart: move reboot failure handing into machine_restart() + * ARM: restart: remove argument to setup_mm_for_reboot() + * ARM: 7159/1: OMAP: Introduce local common.h files + * ARM: restart: only perform setup for restart when soft-restarting + * ARM: 7189/1: OMAP3: Fix build break in cpuidle34xx.c because of irq + function + * ARM: idmap: populate identity map pgd at init time using .init.text + * ARM: suspend: use idmap_pgd instead of suspend_pgd + * ARM: proc-*.S: place cpu_reset functions into .idmap.text section + * ARM: idmap: use idmap_pgd when setting up mm for reboot + * ARM: head.S: only include __turn_mmu_on in the initial identity mapping + * ARM: SMP: use idmap_pgd for mapping MMU enable during secondary booting + * ARM: 7194/1: OMAP: Fix build after a merge between v3.2-rc4 and ARM + restart changes + * ARM: lib: add call_with_stack function for safely changing stack + * ARM: reset: implement soft_restart for jumping to a physical address + * ARM: stop: execute platform callback from cpu_stop code + * ARM: kexec: use soft_restart for branching to the reboot buffer + * ARM: restart: omap: use new restart hook + * topdown mmap support + - LP: #861296 + + [ Upstream Kernel Changes ] + + * Rebase to v3.2.1 + + -- Leann Ogasawara Fri, 13 Jan 2012 20:32:08 +0100 + +linux (3.2.0-8.15) precise; urgency=low + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_ACPI_PROCFS + * Remove server from getabis + * Temporarily disable module check + * [Config] Disable CONFIG_MTD_TESTS + * [Config] Disable CONFIG_X86_E_POWERSAVER + * [Config] Set CONFIG_ARCNET=m + * [Config] Enable CONFIG_ATM_DUMMY=m + * [Config] Enable CONFIG_BLK_DEV_MD=y + * ubuntu: fsam7400 select CHECK_SIGNATURE and depend on X86 + * [Config] Enable CONFIG_BLK_DEV_SD=y + * [Config] Enable CONFIG_BLK_DEV_SR=y + * [Config] Enable CONFIG_BLK_DEV_UB=m + * [Config] Enable CONFIG_COPS=m + * [Config] Enable CONFIG_DVB_USB_EC168=m + * [Config] Enable CONFIG_ENC28J60=m + * [Config] Enable CONFIG_FB_UVESA=m + * [Config] Enable CONFIG_FB_ATY=m + * [Config] Enable CONFIG_BROADCOM_PHY=y + * [Config] Enable CONFIG_CICADA_PHY=y + * [Config] Enable CONFIG_DAVICOM_PHY=y + * [Config] Enable CONFIG_ICPLUS_PHY=y + * [Config] Enable CONFIG_LSI_ET1011C_PHY=y + * [Config] Enable CONFIG_LXT_PHY=y + * [Config] Enable CONFIG_MARVELL_PHY=y + * [Config] Enable CONFIG_NATIONAL_PHY=y + * [Config] Enable CONFIG_QSEMI_PHY=y + * [Config] Enable CONFIG_SMSC_PHY=y + * [Config] Enable CONFIG_VITESSE_PHY=y + * Add 3w-sas to scsi-modules + - LP: #776542 + + [ Mathieu Trudel-Lapierre ] + + * SAUCE: ipv6: make the net.ipv6.conf.all.use_tempaddr sysctl propagate + to interface settings + + [ Paolo Pisati ] + + * Revert "SAUCE: omap3: beagle: if rev unknown, assume xM revision C" + - LP: #912199 + * Revert "SAUCE: omap3: beagle: detect new xM revision B" + - LP: #912199 + * Revert "SAUCE: omap3: beaglexm: fix DVI initialization" + - LP: #912199 + + [ Upstream Kernel Changes ] + + * Bluetooth: Add support for BCM20702A0 [0a5c:21e3] + - LP: #906832 + + -- Leann Ogasawara Fri, 06 Jan 2012 10:02:03 -0800 + +linux (3.2.0-8.14) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_SND_USB_6FIRE + - LP: #912197 + * rebase to mainline v3.2 final release + * updateconfigs following rebase to v3.2 final + * ubuntu: AUFS -- add BOM and automated update script + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + * ubuntu: AUFS -- update aufs-update to track new locations of headers + * ubuntu: AUFS -- clean up the aufs updater and BOM + * ubuntu: AUFS -- documentation on updating aufs2 + * ubuntu: AUFS -- aufs3-base.patch + * ubuntu: AUFS -- aufs3-standalone.patch + * ubuntu: AUFS -- fix undefined __devcgroup_inode_permission + * ubuntu: AUFS -- fix undefined security_path_link + * ubuntu: AUFS -- update to 4cf5db36bcd9748e8e7270022f295f84d1fc2245 + * ubuntu: AUFS -- updateconfigs following update + * ubuntu: AUFS -- suppress benign plink warning messages + - LP: #621195 + * ubuntu: AUFS -- enable in config and makefile + * ubuntu: AUFS -- disable in favor of overlayfs + * [Config] linux-virtual -- should include the extX modules + - LP: #912308 + + [ Tyler Hicks ] + + * SAUCE: eCryptfs: Improve statfs reporting + - LP: #885744 + + [ Upstream Kernel Changes ] + + * rebase to upstream v3.2 + + -- Leann Ogasawara Mon, 26 Dec 2011 20:24:30 -0800 + +linux (3.2.0-7.13) precise; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to upstream 3.2-rc7 + + -- Leann Ogasawara Mon, 19 Dec 2011 09:14:34 -0800 + +linux (3.2.0-6.12) precise; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to upstream v3.2-rc6 + + -- Leann Ogasawara Fri, 16 Dec 2011 10:19:02 -0800 + +linux (3.2.0-5.11) precise; urgency=low + + [ Andy Whitcroft ] + + * enforcer -- allow arch and flavour predicates to take lists + * enforcer -- simplify armel/armhf specific options + * enforcer -- fix incorrectly specified flavour matches + + [ Leann Ogasawara ] + + * [Config] Disable IRQ_REMAP + * [Config] Enable CONFIG_SENSORS_LM95245=m + * [Config] Enable CONFIG_SENSORS_MAX1668=m + * [Config] Enable CONFIG_SENSORS_NTC_THERMISTOR=m + * [Config] Enable CONFIG_SENSORS_MAX6639=m + * [Config] Enable CONFIG_SENSORS_MAX6642=m + * [Config] Enable CONFIG_SENSORS_LINEAGE=m + * [Config] Enable CONFIG_CRYPTO_SALSA20=m + * [Config] Enable CONFIG_PATA_TOSHIBA=m + * [Config] Enable CONFIG_POHMELFS=m + * [Config] Enable CONFIG_NET_PACKET_ENGINE=y + * [Config] Enable CONFIG_PATA_OPTI=m + * add overlayfs to virtual inclusion list + - LP: #903897 + * add veth to virtual inclusion list + - LP: #903897 + * SAUCE: resolve WARNING: at drivers/block/floppy.c:2929 do_fd_request + + [ Paolo Pisati ] + + * [Config] DEFAULT_MMAP_MIN_ADDR=32k on arm + - LP: #903346 + + [ Tim Gardner ] + + * [Config] CONFIG_LOCKUP_DETECTOR=y + - LP: #903615 + + [ Upstream Kernel Changes ] + + * rebase to upstream 55b02d2f + + -- Leann Ogasawara Mon, 12 Dec 2011 07:08:10 -0800 + +linux (3.2.0-4.10) precise; urgency=low + + [ Kyle McMartin ] + + * SAUCE: dmar: disable if ricoh multifunction detected + - LP: #894070 + + [ Seth Forshee ] + + * SAUCE: dell-wmi: Demote unknown WMI event message to pr_debug + - LP: #581312 + + [ Tim Gardner ] + + * Start new release, Bump ABI, rebase to 3.2-rc5 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_SENSORS_AK8975=m + + -- Tim Gardner Sat, 10 Dec 2011 08:57:04 -0700 + +linux (3.2.0-3.9) precise; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: ext4: correct partial write discard size calculation + - LP: #894768 + + [ Leann Ogasawara ] + + * Revert "SAUCE: x86, microcode, AMD: Restrict microcode reporting" + - LP: #892615 + + [ Matthew Garrett ] + + * SAUCE: pci: Rework ASPM disable code + + [ Upstream Kernel Changes ] + + * x86: Fix boot failures on older AMD CPU's + - LP: #892615 + * EHCI : Fix a regression in the ISO scheduler + - LP: #899165 + + -- Leann Ogasawara Mon, 05 Dec 2011 10:37:36 -0800 + +linux (3.2.0-3.8) precise; urgency=low + + [ Andy Whitcroft ] + + * armhf -- add d-i configuration + * armhf -- disable ABI checks for armhf + * armhf -- add arch to getabis config + + -- Andy Whitcroft Sat, 03 Dec 2011 14:22:52 +0000 + +linux (3.2.0-3.7) precise; urgency=low + + [ Stefan Bader ] + + * SAUCE: x86/paravirt: PTE updates in k(un)map_atomic need to be + synchronous, regardless of lazy_mmu mode + - LP: #854050 + + [ Tim Gardner ] + + * rebase to v3.2-rc4 + + -- Leann Ogasawara Fri, 02 Dec 2011 11:53:56 -0800 + +linux (3.2.0-2.6) precise; urgency=low + + [ Andy Whitcroft ] + + * armhf -- fix omap flavour to build on armhf + * [Config] CONFIG_PATA_MACIO=y to fix MAC qemu boot + + [ Borislav Petkov ] + + * SAUCE: x86, microcode, AMD: Restrict microcode reporting + - LP: #892615 + + [ Colin Watson ] + + * Add pata_macio to pata-modules + + [ Tim Gardner ] + + * [Config] Prefer crda over wireless-crda + * [Config] Fix virtual inclusion list. + - LP: #897795 + + -- Leann Ogasawara Wed, 30 Nov 2011 06:09:35 -0800 + +linux (3.2.0-2.5) precise; urgency=low + + [ Paolo Pisati ] + + * [Config] PANEL_DVI=y + + -- Leann Ogasawara Mon, 28 Nov 2011 09:13:24 -0800 + +linux (3.2.0-2.4) precise; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.2-rc3 + + [ Leann Ogasawara ] + + * Revert "SAUCE: xen: Do not use pv spinlocks on HVM" + * Revert "fix ERROR: __devcgroup_inode_permission undefined" + * Revert "olpc_dcon_xo_1_5 needs delay.h" + * Revert "olpc_dcon_xo_1 needs delay.h" + * rebase to 6fe4c6d4 + * [Config] updateconfigs after rebase to 6fe4c6d4 + + [ Tim Gardner ] + + * [Config] Replace wireless-crda with crda,wireless-regdb + - LP: #856421 + * [Config] Relax the dependencies on crda + + [ Upstream Kernel Changes ] + + * (pre-stable) HID: bump maximum global item tag report size to 96 bytes + - LP: #724831 + * Ubuntu: remove coreutils|fileutils package dependency + - LP: #892814 + * iio: iio_event_getfd -- fix ev_int build failure + + [ Upstream Kernel Changes ] + + * Rebase to v3.2-rc3 + + -- Andy Whitcroft Thu, 24 Nov 2011 16:20:45 +0000 + +linux (3.2.0-1.3) precise; urgency=low + + [ Upstream Kernel Changes ] + + * Ubuntu: Add ext2 to fs-core-modules + - LP: #893395 + + -- Leann Ogasawara Mon, 21 Nov 2011 20:42:33 -0800 + +linux (3.2.0-1.2) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_NFC and associated devices + * SAUCE: allow brcmsmac and b43 to both build + + [ Soren Hansen ] + + * Add ixgbe driver to d-i + - LP: #891969 + + -- Leann Ogasawara Mon, 21 Nov 2011 08:33:46 -0800 + +linux (3.2.0-1.1) precise; urgency=low + [ Andy Whitcroft ] + + * armhf -- enable armhf and create the first flavours + * SAUCE: ensure root is ready before running usermodehelpers in it + * [Config] enforcer -- ensure CONFIG_FAT_FS is built-in on arm + + [ Leann Ogasawara ] + + * Temporarily ignore module check + * [Config] Enable PCI_IOV on powerpc + * [Config] Temporarily disable CONFIG_PASEMI_MAC on powerpc + * rebase to v3.2-rc2 + * SAUCE: include for cpuidle34xx arm build + * SAUCE: include for linux/mtd/map.h arm build + * SAUCE: include and for mmc_core arm build + * SAUCE: select ARM_AMBA if OMAP3_EMU + * [Config] updateconfigs after select ARM_AMBA + * [Config] Temporarily disable CONFIG_KVM_BOOK3S_32 on powerpc + * [Config] Enable CONFIG_EXT2_FS=m + * [Config] Build in CONFIG_SATA_AHCI=y + * Resolve linux-image-extra's install dependency + + [ Seth Forshee ] + + * [Config] Enable EVENT_POWER_TRACING_DEPRECATED=y for powertop + * SAUCE: (drop after 3.2) Input: ALPS - move protocol information to + Documentation + * SAUCE: (drop after 3.2) Input: ALPS - add protocol version field in + alps_model_info + * SAUCE: (drop after 3.2) Input: ALPS - remove assumptions about packet + size + * SAUCE: (drop after 3.2) Input: ALPS - add support for protocol versions + 3 and 4 + * SAUCE: (drop after 3.2) Input: ALPS - add semi-MT support for v3 + protocol + * SAUCE: (drop after 3.2) Input: ALPS - add documentation for protocol + versions 3 and 4 + + [ Stefan Bader ] + + * [Config] Built-in xen-netfront and xen-blkfront + * Fix build of dm-raid45 and re-enable it + + [ Tim Gardner ] + + * [Config] CONFIG_USB_XHCI_HCD=y + - LP: #886167 + * [Config] CONFIG_R6040=m + - LP: #650899 + * SAUCE: Add a new entry (413c:8197) to Bluetooth USB device ID table + - LP: #854399 + * [Config] Consolidated amd64 server flavour into generic + * [Config] updateconfigs after rebase to 3.2-rc1 + * [Config] Disabled dm-raid4-5 + * [Config] Disabled ndiswrapper + * [Config] Disable vt6656 + * [Config] exclude ppp-modules for virtual flavour + * [Config] CONFIG_MEMSTICK_R592=m + - LP: #238208 + + [ Upstream Kernel Changes ] + + * CHROMIUM: seccomp_filter: new mode with configurable syscall filters + - LP: #887780 + * CHROMIUM: seccomp_filter: add process state reporting + - LP: #887780 + * CHROMIUM: seccomp_filter: Document what seccomp_filter is and how it + works. + - LP: #887780 + * CHROMIUM: x86: add HAVE_SECCOMP_FILTER and seccomp_execve + - LP: #887780 + * CHROMIUM: arm: select HAVE_SECCOMP_FILTER + - LP: #887780 + * CHROMIUM: seccomp_filters: move to btrees + * CHROMIUM: enable CONFIG_BTREE + * CHROMIUM: seccomp_filter: kill NR_syscall references + * CHROMIUM: seccomp_filters: guard all ftrace wrapper code + * CHROMIUM: seccomp_filters: clean up warnings; kref mistake + * CHROMIUM: seccomp_filter: remove "skip" from copy and add drop helper + * CHROMIUM: seccomp_filter: allow CAP_SYS_ADMIN management of execve + * CHROMIUM: seccomp_filter: inheritance documentation + * CHROMIUM: seccomp_filter: make inherited filters composable + * CHROMIUM: Fix seccomp_t compile error + - LP: #887780 + * CHROMIUM: Fix kref usage + - LP: #887780 + * CHROMIUM: enable CONFIG_SECCOMP_FILTER and CONFIG_HAVE_SECCOMP_FILTER + * rebase to v3.2-rc2 + + -- Leann Ogasawara Mon, 31 Oct 2011 09:24:39 -0400 + +linux (3.1.0-2.3) precise; urgency=low + + [ Tim Gardner ] + + * Add postinit and postrm scripts to the extras package + - LP: #882120 + + -- Leann Ogasawara Fri, 28 Oct 2011 12:48:33 -0700 + +linux (3.1.0-2.2) precise; urgency=low + + [ Andy Whitcroft ] + + * debian: add locking to protect debian/files from parallel update + + [ Leann Ogasawara ] + + * rebase to v3.1 + + [ Upstream Kernel Changes ] + + * rebase to v3.1 + + -- Leann Ogasawara Wed, 19 Oct 2011 07:12:38 -0700 + +linux (3.1.0-1.1) precise; urgency=low + + [ Andiry Xu ] + + * SAUCE: (drop during 3.2 merge) xHCI: AMD isoc link TRB chain bit quirk + - LP: #872811 + + [ Andy Whitcroft ] + + * Revert "ubuntu: compcache -- follow changes to bd_claim/bd_release" + - LP: #832694 + * Revert "ubuntu: compcache -- version 0.5.3" + - LP: #832694 + * [Config] standardise CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + * [Config] Enable CONFIG_MACVTAP=m + - LP: #822601 + * record the compiler in the ABI and check for inconsistant builds + * [Config] move ECRYPT_FS back to =y for all architectures + - LP: #827197 + * [Config] enable CONFIG_DRM_VMWGFX=m + - LP: #698009 + * [Config] re-fix ECRYPT_FS=y + - LP: #827197 + * enforcer -- ensure we have CONFIG_ECRYPT_FS=y + - LP: #827197 + * [Config] dropping compcache configuration options + * [Config] standardise on HZ=250 + * SAUCE: headers_install: fix #include "..." usage for userspace + - LP: #824377 + * make module-inclusion selection retain the left overs + * add a new linux-image-extras package for virtual + + [ Colin Watson ] + + * Deliver more Atheros, Ralink, and iwlagn NIC drivers to d-i + + [ edwin_rong ] + + * SAUCE: Staging: add driver for Realtek RTS5139 cardreader + - LP: #824273 + + [ Greg Kroah-Hartman ] + + * SAUCE: staging: rts5139: add vmalloc.h to some files to fix the build. + - LP: #824273 + + [ Jesse Sung ] + + * SAUCE: Unregister input device only if it is registered + - LP: #839238 + + [ Jiri Kosina ] + + * SAUCE: HID: add MacBookAir4, 2 to hid_have_special_driver[] + + [ Joshua V. Dillon ] + + * SAUCE: HID: add support for MacBookAir4,2 keyboard. + + [ Kees Cook ] + + * [Config] enable and enforce SECCOMP_FILTER on x86 + + [ Keng-Yu Lin ] + + * [Config] Enable CONFIG_RTS5139=m on i386/amd64 + - LP: #824273 + + [ Leann Ogasawara ] + + * Revert "ubuntu: overlayfs -- ovl: make lower mount read-only" + * Revert "ubuntu: overlayfs -- fs: limit filesystem stacking depth" + * Revert "ubuntu: overlayfs -- ovl: improve stack use of lookup and + readdir" + * Revert "ubuntu: overlayfs -- ovl: fix overlayfs over overlayfs" + * Revert "ubuntu: overlayfs -- overlayfs: implement show_options" + * Revert "ubuntu: overlayfs -- overlayfs: add statfs support" + * Revert "ubuntu: overlayfs -- overlay filesystem" + * Revert "ubuntu: overlayfs -- overlay: overlay filesystem documentation" + * Revert "SAUCE: ARM: OMAP: Add macros for comparing silicon revision" + * Revert "SAUCE: OMAP: DSS2: check for both cpu type and revision, rather + than just revision" + * Revert "SAUCE: OMAP: DSS2: enable hsclk in dsi_pll_init for OMAP36XX" + * Revert "ubuntu: fsam7400 disable driver" + - LP: #876030 + * rebase to v3.1-rc1 + * [Config] updateconfigs after rebase to v3.1-rc1 + * rebase to v3.1-rc2 + * [Config] Updateconfigs after rebase to v3.1-rc2 + * ubuntu: Yama - update calls to generic_permission() and + inode->i_op->permission() + * ubuntu: ndiswrapper -- remove netdev_priv macro + * ubuntu: aufs -- Temporarily disable due to build failure + * [Config] Diable INTEL_MID_PTI on armel + * [Config] Temporarily disable CONFIG_FTMAC100 on armel + * [Config] Temporarily disable CONFIG_FTGMAC100 on armel + * [Config] Temporarily disable CONFIG_CAN_TI_HECC on armel + * [Config] Temporarily disable CONFIG_VIDEO_OMAP2_VOUT on armel + * [Config] Set CONFIG_DM_MIRROR=m on amd64, i386, and arm + * [Config] Set CONFIG_DM_MULTIPATH=m on amd64, i386, and arm + * [Config] Set CONFIG_DM_SNAPSHOT=m on amd64, i386, and arm + * [Config] Enable CONFIG_EDAC_AMD8111=m on powerpc + * [Config] Enable CONFIG_EDAC_AMD8131=m on powerpc + * [Config] Enable CONFIG_EDAC_CPC925=m on powerpc + * [Config] Enable CONFIG_EDAC_PASEMI=m on powerpc + * [Config] Enable CONFIG_ECHO=m on powerpc + * [Config] Enable CONFIG_ET131X=m on powerpc + * [Config] Set CONFIG_FB_MATROX=m + * [Config] Enable CONFIG_FB_UDL=m on powerpc + * [Config] Set CONFIG_FB_VIRTUAL=n + * [Config] Enable CONFIG_FB_VGA16=m on powerpc + * [Config] Enable CONFIG_GPIO_MAX732X=m on arm + * [Config] Enable CONFIG_GPIO_PCF857X=m on arm + * [Config] Set CONFIG_HOTPLUG_PCI_FAKE=m + * [Config] Enable CONFIG_HOTPLUG_PCI=y on powerpc + * [Config] Enable CONFIG_HOTPLUG_PCI_CPCI=y on powerpc + * [Config] Enable CONFIG_HP_ILO=m on powerpc-smp + * [Config] Enable CONFIG_I2C_PASEMI=m on powerpc + * [Config] Enable CONFIG_IBM_BSR=m on powerpc + * [Config] Enable CONFIG_IBMVETH=m on powerpc + * [Config] Enable CONFIG_IDE_PHISON=m on powerpc + * [Config] Enable CONFIG_IGB=m on powerpc + * [Config] Enable CONFIG_IIO=m on powerpc + * [Config] Enable CONFIG_INFINIBAND_NES=m + * [Config] Enable CONFIG_IPMI_HANDLER=m on arm + * [Config] Enable CONFIG_IWL3945=m on powerpc + * [Config] Disable CONFIG_KVM_BOOK3S_64 + * [Config] Enable CONFIG_LAPBETHER=m on arm + * [Config] Enable CONFIG_LEDS_GPIO=m on powerpc + * [Config] Enable CONFIG_LEDS_CLEVO_MAIL=m all arch's + * [Config] Enable CONFIG_LEDS_PCA9532=m on powerpc + * [Config] Enable CONFIG_LEDS_PCA955X=m on powerpc + * [Config] Enable CONFIG_LEDS_TRIGGER_DEFAULT_ON=m on powerpc + * [Config] Set CONFIG_LEDS_TRIGGER_HEARTBEAT=m on arm and powerpc + * [Config] Set CONFIG_LEDS_TRIGGER_TIMER=m on powerpc + * [Config] Enable CONFIG_LINE6_USB=m on arm and powerpc + * [Config] Enable CONFIG_MEMSTICK=m on arm + * [Config] Enable CONFIG_MTD_AFS_PARTS=m on arm + * [Config] Enable CONFIG_MTD_ALAUDA=m on arm + * [Config] Enable CONFIG_MTD_AR7_PARTS=m on arm + * [Config] Enable CONFIG_MTD_ARM_INTEGRATOR=m on arm + * [Config] Enable CONFIG_MOXA_SMARTIO=m on powerpc + * [Config] Enable CONFIG_MTD_DATAFLASH=m on arm + * [Config] Enable CONFIG_MTD_GPIO_ADDR=m on arm + * [Config] Enable CONFIG_MTD_IMPA7=m on arm + * [Config] Enable CONFIG_MTD_NAND_GPIO=m on arm + * [Config] Enable CONFIG_MTD_NAND_NANDSIM=m on arm + * [Config] Enable CONFIG_MTD_NAND_PASEMI=m on powerpc + * [Config] Enable CONFIG_MTD_NAND_PLATFORM=m on arm + * [Config] Enable CONFIG_MTD_NAND_TMIO=m on arm + * [Config] Enable CONFIG_MTD_SST25L=m on arm + * [Config] Enable CONFIG_NET_CLS_CGROUP=y on arm + * [Config] Enable CONFIG_NET_CLS_FLOW=m on arm + * [Config] Enable CONFIG_NET_CLS_U32=m on arm + * [Config] Enable CONFIG_NET_DCCPPROBE=m on arm + * [Config] Enable CONFIG_NET_SCH_INGRESS=m on arm + * [Config] Enable CONFIG_NET_TCPPROBE=m on arm + * [Config] Enable CONFIG_PASEMI_MAC=m on powerpc + * [Config] Enable CONFIG_PATA_NS87410=m on powerpc + * [Config] Enable CONFIG_I2C_GPIO=m on powerpc64-smp + * [Config] Enable CONFIG_PANEL=m on powerpc + * [Config] Enable CONFIG_PATA_CMD640_PCI=m on powerpc + * SAUCE: x86: reboot: Make Dell Latitude E6520 use reboot=pci + - LP: #833705 + * [Config] Add CONFIG_EFI_VARS=y to the enforcer + - LP: #837332 + * [Config] Update CONFIG_EFI_VARS enforcer check + * [Config] Add aufs to virtual flavor inclusion list + - LP: #844159 + * SAUCE: x86: reboot: Make Dell Optiplex 790 use reboot=pci + - LP: #818933 + * SAUCE: x86: reboot: Make Dell Optiplex 990 use reboot=pci + - LP: #768039 + * SAUCE: x86: reboot: Make Dell Latitude E6220 use reboot=pci + - LP: #838402 + * [Config] Add igbvf to the virtual flavor inclusion list + - LP: #794570 + * [Config] Add ixgbevf to the virtual inclusion list + - LP: #872411 + * [Config] Transition -generic and -server to be identical + * rebase to v3.1-rc10 + + [ Luke Yelavich ] + + * [Config] Disable legacy IDE drivers on powerpc + + [ Ming Lei ] + + * SAUCE: fireware: add NO_MSI quirks for o2micro controller + - LP: #801719 + * SAUCE: ata_piix: make DVD Drive recognisable on systems with Intel + Sandybridge chipsets(v2) + - LP: #737388, #782389, #794642 + + [ Paolo Pisati ] + + * [Config] Compile-in vfat support for armel + - LP: #853783 + + [ Randy Dunlap ] + + * SAUCE: staging: fix rts5139 depends & build + - LP: #824273 + + [ Rene Bolldorf ] + + * SAUCE: (drop after 3.0) ideapad: Check if acpi already handle backlight + power in 'ideapad_backlight_notify_power' to avoid a page fault + + [ Seth Forshee ] + + * SAUCE: (no-up) Input: elantech - Add v3 hardware support + - LP: #681904 + * SAUCE: (drop after 3.1) usb_storage: Don't freeze in usb-stor-scan + - LP: #810020 + + [ Stefan Bader ] + + * (config) Package macvlan and macvtap for virtual + * [Config] Force perf to use libiberty for demangling + - LP: #783660 + * SAUCE: xen: Do not use pv spinlocks on HVM + - LP: #838026 + + [ Tim Gardner ] + + * [Config] Clean up tools rules + * [Config] Package x86_energy_perf_policy and turbostat + - LP: #797556 + * rebase to v3.1-rc3 + * [Config] Simplify binary-udebs dependencies + * [Config] kernel preparation cannot be parallelized + * [Config] Linearize module/abi checks + * [Config] Linearize and simplify tree preparation rules + * [Config] Build kernel image in parallel with modules + * [Config] Set concurrency for kmake invocations + * [Config] Improve install-arch-headers speed + * [Config] Fix binary-perarch dependencies + * [Config] Removed stamp-flavours target + * [Config] Serialize binary indep targets + * [Config] Use build stamp directly + * [Config] Restore prepare-% target + * rebase to v3.1-rc4 + * rebase to v3.1-rc5 + * [Config] Disable makedumpfile for i386/amd64 + * rebase to v3.1-rc6 + * [Config] Fix binary-% build target + * rebase to v3.1-rc7 + * rebase to v3.1-rc8 + * SAUCE: Add a new entry (413c:8197) to Bluetooth USB device ID table + - LP: #854399 + * [Config] Enable ftrace support in the mac80211 layer + - LP: #865171 + * rebase to v3.1-rc9 + * SAUCE: usb/core/devio.c: Check for printer class specific request + - LP: #872711 + + [ Upstream Kernel Changes ] + + * overlay filesystem + * overlayfs: add statfs support + * overlayfs: implement show_options + * overlay: overlay filesystem documentation + * fs: limit filesystem stacking depth + + [ Will Drewry ] + + * SAUCE: seccomp_filter: new mode with configurable syscall filters + * SAUCE: seccomp_filter: add process state reporting + * SAUCE: seccomp_filter: Document what seccomp_filter is and how it + works. + * SAUCE: seccomp_filter: add HAVE_SECCOMP_FILTER and seccomp_execve + + [ Upstream Kernel Changes ] + + * rebase to v3.1-rc1 + * rebase to v3.1-rc2 + * rebase to v3.1-rc3 + +CONFIG_BLK_DEV_BSGLIB=y + +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 + -CONFIG_VIDEO_OMAP2_VOUT_VRFB=y + * rebase to v3.1-rc4 + * rebase to v3.1-rc5 + * rebase to v3.1-rc6 + * rebase to v3.1-rc7 + * rebase to v3.1-rc8 + * rebase to v3.1-rc9 + * rebase to v3.1-rc10 + + -- Leann Ogasawara Wed, 10 Aug 2011 15:43:38 -0700 + +linux (3.1.0-1.0) oneiric; urgency=low + + [ Leann Ogasawara ] + + * Open P-series + + -- Leann Ogasawara Wed, 10 Aug 2011 13:42:40 -0700 + +linux (3.0.0-8.10) oneiric; urgency=low + + [ Adam Jackson ] + + * SAUCE: drm/i915/pch: Fix integer math bugs in panel fitting + - LP: #753994 + + [ John Johansen ] + + * [Config] Enable missing IPv6 options + + [ Leann Ogasawara ] + + * [Config] Disable config IWLWIFI_DEVICE_SVTOOL + - LP: #819925 + * Rebase to 3.0.1 + + [ Upstream Kernel Changes ] + + * x86, intel, power: Correct the MSR_IA32_ENERGY_PERF_BIAS message + * ALSA: hda - Turn on extra EAPDs on Conexant codecs + - LP: #783582 + * KVM: Remove SMEP bit from CR4_RESERVED_BITS + - LP: #796476 + * KVM: Add SMEP support when setting CR4 + - LP: #796476 + * KVM: Mask function7 ebx against host capability word9 + - LP: #796476 + * KVM: Add instruction fetch checking when walking guest page table + - LP: #796476 + + [ Upstream Kernel Changes ] + + * rebase to v3.0.1 + + -- Leann Ogasawara Fri, 05 Aug 2011 11:32:25 -0700 + +linux (3.0.0-7.9) oneiric; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] add local prefix to oss local change_bits" + * Revert "SAUCE: add tracing for user initiated readahead requests" + * Revert "SAUCE: vfs: Add a trace point in the mark_inode_dirty function" + * Revert "SAUCE: Input: ALPS - Enable Intellimouse mode for Lenovo + Zhaoyang E47" + * Revert "SAUCE: fix documentation strings for struct input_keymap_entry" + * Revert "SAUCE: vt -- fix handoff numbering to 1..n and add range checks + (grub)" + * Revert "SAUCE: vt -- fix handoff numbering to 1..n and add range + checks" + * Revert "SAUCE: vt -- allow grub to request automatic vt_handoff" + * Revert "SAUCE: vt -- maintain bootloader screen mode and content until + vt switch" + * [Config] enable CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 + - LP: #816035 + * ubuntu: Yama: if an underlying filesystem provides a permissions op use + it + * SAUCE: (no-up) add tracing for user initiated readahead requests + * SAUCE: vt -- maintain bootloader screen mode and content until vt + switch + * SAUCE: vt -- allow grub to request automatic vt_handoff + + [ Arjan van de Ven ] + + * SAUCE: (no-up) vfs: Add a trace point in the mark_inode_dirty function + + [ Kees Cook ] + + * Revert "SAUCE: (no-up) Disable building the ACPI debugfs source" + * [Config] enforce ACPI_CUSTOM_METHOD disabled + + [ Keng-Yu Lin ] + + * SAUCE: (no-up) Input: ALPS - Enable Intellimouse mode for Lenovo + Zhaoyang E47 + - LP: #632884, #803005 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_BLK_DEV_CMD64X=m on powerpc + - LP: #513131 + * [Config] Enable CONFIG_RT2800PCI_RT53XX=y + - LP: #815064 + + [ Rezwanul Kabir ] + + * SAUCE: (no-up) Add support for Intellimouse Mode in ALPS touchpad on + Dell E2 series Laptops + - LP: #632884 + + [ Upstream Kernel Changes ] + + * Revert "yama: if an underlying filesystem provides a permissions op use + it" + * Revert "Add support for Intellimouse Mode in ALPS touchpad on Dell E2 + series Laptops" + * Revert "tty: include linux/slab.h for kfree" + * Revert "gpio/ml_ioh_gpio: include linux/slab.h for kfree" + * Revert "pch_dma: add include/slab.h for kfree" + * mmc: Added quirks for Ricoh 1180:e823 lower base clock frequency + - LP: #773524 + * oss: rename local change_bits to avoid powerpc bitsops.h definition + + -- Leann Ogasawara Mon, 25 Jul 2011 09:08:01 -0700 + +linux (3.0.0-7.8) oneiric; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: overlayfs -- overlayfs: add statfs support + * [Config] enable CONFIG_OVERLAYFS + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_ALIM7101_WDT=m on powerpc + * [Config] Enable CONFIG_ASUS_OLED=m on powerpc + * [Config] Disable CONFIG_ATM_DUMMY on arm + * [Config] Enable CONFIG_BLK_DEV_DRBD=m on powerpc + * Temporarily disable module check on arm + * Rebase to 3.0 final + * [Config] Enable CONFIG_CAN_TI_HECC=m on arm + * [Config] Set CONFIG_CDROM_PKTCDVD=m on amd64 and i386 + * [Config] Enable CONFIG_CRYPTO_CCM=m on powerpc + * [Config] Enable CONFIG_CRYPTO_DEV_HIFN_795X=m on powerpc + * [Config] Enable CONFIG_CRYPTO_GCM=m on powerpc + * [Config] Set CRYPTO_LZO=m on powerpc64-smp + * [Config] Enable CONFIG_DM9000=m on arm + * [Config] Set CONFIG_DISPLAY_SUPPORT=m on arm + * [Config] Enable CONFIG_DL2K=m on amd64 and i386 + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: add i_op->open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- ovl: fix overlayfs over overlayfs + * ubuntu: overlayfs -- ovl: improve stack use of lookup and readdir + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + * ubuntu: overlayfs -- ovl: make lower mount read-only + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Tim Gardner ] + + * [Config] Add enic/fnic to udebs + - LP: #801610 + + [ Upstream Kernel Changes ] + + * yama: if an underlying filesystem provides a permissions op use it + + [ Major Kernel Changes ] + + * Rebase to 3.0 final + + -- Leann Ogasawara Thu, 21 Jul 2011 07:01:32 -0700 + +linux (3.0.0-6.7) oneiric; urgency=low + + [ Eagon Yager ] + + * [Config] Fix misspelled 'skipmodule' in arm makefile. + + [ Keng-Yu Lin ] + + * SAUCE: Input: ALPS - Enable Intellimouse mode for Lenovo Zhaoyang E47 + - LP: #632884, #803005 + + [ Leann Ogasawara ] + + * Revert "[Config] Temporarily disable CONFIG_SMC91X on armel-omap" + * Revert "[Config] Temporarily Disable CONFIG_BRCMSMAC on arm" + * Revert "[Config] Temporarily Disable CONFIG_RTL8192SE on powerpc" + * Revert "[Config] Temporarily Disable CONFIG_RTL8192SE on arm" + * Revert "[Config] Temporarily disable CONFIG_BRCMSMAC on powerpc" + * [Config] Set CONFIG_ACPI_PCI_SLOT=m + * [Config] Set CONFIG_ACPI_SBS=m + * [Config] Set CONFIG_ACPI_WMI=m + * [Config] Set CONFIG_AD7150=m on arm + * [Config] Set CONFIG_AD7152=m on arm + * [Config] Drop CONFIG_GPIO_S5PV210 + * [Config] Drop CONFIG_GPIO_S5PC100 + * [Config] Drop CONFIG_GPIO_PLAT_SAMSUNG + * [Config] Drop CONFIG_GPIO_EXYNOS4 + + [ Stefan Bader ] + + * SAUCE: Re-enable RODATA for i386 virtual + - LP: #809838 + + [ Upstream Kernel Changes ] + + * Revert "Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15" + * (drop after 3.0.0) acer-wmi: Add support for Aspire 1830 wlan hotkey + - LP: #771758 + + -- Leann Ogasawara Wed, 20 Jul 2011 06:36:02 -0700 + +linux (3.0.0-5.6) oneiric; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_RTL8192CU=m + * Rebase to -rc7 + + -- Tim Gardner Mon, 11 Jul 2011 22:13:50 +0100 + +linux (3.0.0-4.5) oneiric; urgency=low + + [ Ming Lei ] + + * SAUCE: fix yama_ptracer_del lockdep warning + - LP: #791019 + + [ Seth Forshee ] + + * SAUCE: (drop after 3.0) asus-wmi: Add callback for hotkey filtering + * SAUCE: (drop after 3.0) eeepc-wmi: Add support for T101MT Home/Express Gate key + * SAUCE: (drop after 3.0) asus-wmi: Enable autorepeat for hotkey input device + * [Config] CONFIG_{ASUS,ASUS_NB,EEEPC}_WMI=m + - LP: #805218 + + [ Tim Gardner ] + + * [Config] updateconfigs after rebase to -rc6+ + Rebased against 4dd1b49c6d215dc41ce50c80b4868388b93f31a3 + * Adopt a 3 digit verion, e.g., 3.0.0-x.x + * Revert "UBUNTU: add dependancies for module-init-tools" + This dependency is no longer required for a 3 digit version. + + -- Tim Gardner Tue, 05 Jul 2011 14:03:04 +0100 + +linux (3.0-3.4) oneiric; urgency=low + + [ Keng-Yu Lin ] + + * SAUCE: Revert: "dell-laptop: Toggle the unsupported hardware + killswitch" + - LP: #775281 + + [ Leann Ogasawara ] + + * rebase to v3.0-rc5 + * [Config] updateconfigs after rebase to 3.0-rc5 + + [ Tim Gardner ] + + * [Config] Remove ubuntu/rtl8192se + * [Config] Added armel ABI files + * [Config] Removed armel versatile flavour + * [Config] CONFIG_INTEL_MEI=m + - LP: #716867 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Enable auto-parser as default for Conexant codecs + + [ Upstream Kernel Changes ] + + * rebase to v3.0-rc5 + + -- Leann Ogasawara Thu, 30 Jun 2011 14:27:10 +0100 + +linux (3.0-2.3) oneiric; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to 0e2bafab74f0d1463383faeb93f9fc5eb8c2c54e + + [ Leann Ogasawara ] + + * rebase to v3.0-rc4 + * [Config] updateconfigs after rebase to 3.0-rc4 + * fix ERROR: __devcgroup_inode_permission undefined + + [ Stefan Bader ] + + * SAUCE: iscsitarget: Remove driver from the kernel + + [ Tim Gardner ] + + * SAUCE: rtl8192se: Force a build for a 2.6/3.0 kernel + * [Config] Add grub-efi as a recommended bootloader for server and + generic + - LP: #800910 + + [ Upstream Kernel Changes ] + + * Fix node_start/end_pfn() definition for mm/page_cgroup.c + + [ Leann Ogasawara ] + + * rebase to v3.0-rc4 + + -- Leann Ogasawara Fri, 24 Jun 2011 11:51:12 -0700 + +linux (3.0-1.2) oneiric; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_CAN_CALC_BITTIMING + + [ Leann Ogasawara ] + + * rebase to v3.0-rc3 + * [Config] updateconfigs after rebase to 3.0-rc3 + + [ Upstream Kernel Changes ] + + * perf: clear out make flags when calling kernel make kernelver + + [ Leann Ogasawara ] + + * rebase to v3.0-rc3 + + -- Leann Ogasawara Tue, 14 Jun 2011 07:25:35 -0700 + +linux (3.0-0.1) oneiric; urgency=low + + [ Andy Whitcroft ] + + * use the packaging version in the kernel + * use the kernels idea of its version for version_signature + * add dependancies for module-init-tools + * update control files to version 3 + * printchanges/insertchanges allow override of prev_release + * correct Vcs-Git: to point to oneiric + + [ Leann Ogasawara ] + + * rebase to v3.0-rc1 + * [Config] updateconfigs after rebase to 3.0-rc1 + * ubuntu: dm-raid4-5 fix up build failure + * [Config] Temporarily Disable CONFIG_GPIO_EXYNOS4 on arm + * [Config] Temporarily Disable CONFIG_GPIO_PLAT_SAMSUNG on arm + * [Config] Temporarily Disable CONFIG_GPIO_S5PC100 on arm + * [Config] Temporarily Disable CONFIG_GPIO_S5PV210 on arm + * [Config] Temporarily disable CONFIG_BRCMSMAC on powerpc + * [Config] Temporarily Disable CONFIG_BRCMSMAC on arm + * [Config] Temporarily Disable CONFIG_RTL8192SE on arm + * [Config] Temporarily Disable CONFIG_RTL8192SE on powerpc + * [Config] Temporarily disable CONFIG_SMC91X on armel-omap + * rebase to v3.0-rc2 + + [ Manoj Iyer ] + + * SAUCE: mmc: Enable MMC card reader for RICOH [1180:e823] + - LP: #790754 + + [ Upstream Kernel Changes ] + + * Revert "x86 idle: EXPORT_SYMBOL(default_idle, pm_idle) only when APM + demands it" + * drm/i915: fix regression after clock gating init split + + [ Major Kernel Changes ] + + * rebase from v2.6.39 to v3.0-rc1 + * rebase from v3.0-rc1 to v3.0-rc2 + + -- Andy Whitcroft Thu, 09 Jun 2011 15:18:33 +0100 + +linux (2.6.39-3.10) oneiric; urgency=low + + [ Colin Ian King ] + + * SAUCE: S3 early resume debug via keyboard LEDs + + [ Ingo Molnar ] + + * ubuntu: nx-emu - i386: NX emulation + * ubuntu: nx-emu - i386: mmap randomization for executable mappings + + [ Leann Ogasawara ] + + * Revert "[Config] Disable CONFIG_FT1000 on powerpc64-smp" + * Revert "[Config] Disable CONFIG_DM_RAID45" + * [Config] enable CONFIG_BRCMFMAC=y + * [Config] enable CONFIG_MDIO_BITBANG=m across all arch's and flavors + * [Config] enable CONFIG_VIDEO_OUTPUT_CONTROL=m on armel-omap + + [ Robert Nelson ] + + * SAUCE: omap3: beagle: detect new xM revision B + - LP: #770679 + * SAUCE: omap3: beagle: detect new xM revision C + - LP: #770679 + * SAUCE: omap3: beagle: if rev unknown, assume xM revision C + - LP: #770679 + + [ Stefan Bader ] + + * SAUCE: Convert dm-raid45 to new block plugging + + -- Leann Ogasawara Mon, 23 May 2011 11:46:43 -0700 + +linux (2.6.39-3.9) oneiric; urgency=low + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_SCSI_LPFC_DEBUG_FS + * rebase to v2.6.39 + * [Config] enable CONFIG_LLC2=m across all arch's and flavours + * [Config] enable CONFIG_INPUT_APANEL=m + + [ Thomas Schlichter ] + + * SAUCE: vesafb: mtrr module parameter is uint, not bool + - LP: #778043 + * SAUCE: vesafb: enable mtrr WC by default + - LP: #778043 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc7 to v2.6.39 + + -- Andy Whitcroft Fri, 20 May 2011 09:52:32 +0100 + +linux (2.6.39-2.8) oneiric; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-37" + * Revert "ubuntu: AUFS -- aufs2-base.patch aufs2.1-37" + * Revert "[Config] Disable CONFIG_AUFS_FS" + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-39 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-39 + * ubuntu: AUFS -- update to c6b76974311efc5bf3eddf921cd015b6aae46935 + * ubuntu: AUFS -- clean up the aufs updater and BOM + * ubuntu: AUFS -- documentation on updating aufs2 + + [ Kees Cook ] + + * ubuntu: Yama - LSM hooks + * ubuntu: Yama - create task_free security callback + * ubuntu: Yama - add ptrace relationship tracking interface + * ubuntu: Yama - unconditionally chain to Yama LSM + + [ Leann Ogasawara ] + + * Revert "SAUCE: Fix drivers/staging/easycap FTBS" + * Revert "[Config] Disable CONFIG_EASYCAP" + * ubuntu: fsam7400 disable driver + * ubuntu: omnibook disable driver + * ubuntu: rfkill disable driver + + [ Tim Gardner ] + + * SAUCE: Fix extra reference in fb_open() + + -- Leann Ogasawara Mon, 16 May 2011 09:23:56 -0700 + +linux (2.6.39-2.7) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc7 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc6 to v2.6.39-rc7 + + -- Leann Ogasawara Tue, 10 May 2011 10:18:28 +0200 + +linux (2.6.39-1.6) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc6 + * SAUCE: [arm] fixup __aeabi_uldivmod undefined build error + + [ Tim Gardner ] + + * [Config] updateconfigs after rebase to 2.6.39-rc6 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc5 to v2.6.39-rc6 + - LP: #740126 + + -- Leann Ogasawara Thu, 05 May 2011 09:46:12 -0700 + +linux (2.6.39-0.5) oneiric; urgency=low + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: Revert "x86, hibernate: Initialize mmu_cr4_features during boot" + - LP: #764758 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc5 + * [Config] updateconfigs following rebase to v2.6.39-rc5 + + [ Paolo Pisati ] + + * [Config] s/USB_MUSB_TUSB6010/USB_MUSB_OMAP2PLUS/ on omap3 to get musb + - LP: #759913 + + [ Stefan Bader ] + + * Include nls_iso8859-1 for virtual images + - LP: #732046 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc4 to v2.6.39-rc5 + + -- Leann Ogasawara Wed, 27 Apr 2011 06:39:42 -0700 + +linux (2.6.39-0.4) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc4 + * [Config] updateconfigs following rebase to v2.6.39-rc4 + * fixup powerpc implicit declaration of function + 'crash_kexec_wait_realmode' + * [Config] Disable CONFIG_FT1000 on powerpc64-smp + + [ Tim Gardner ] + + * [Config] CONFIG_TRANSPARENT_HUGEPAGE=y + - LP: #769503 + * [Config] Add cachefiles.ko to virtual flavour + - LP: #770430 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc3 to v2.6.39-rc4 + + -- Leann Ogasawara Tue, 19 Apr 2011 06:25:20 -0700 + +linux (2.6.39-0.3) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc3 + * crash_kexec_wait_realmode() undefined when !SMP + + [ Tim Gardner ] + + * [Config] CONFIG_PM_ADVANCED_DEBUG=y for i386/amd64 + - LP: #632327 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc2 to v2.6.39-rc3 + + -- Leann Ogasawara Tue, 12 Apr 2011 06:52:24 -0700 + +linux (2.6.39-0.2) oneiric; urgency=low + + [ Gustavo F. Padovan ] + + * SAUCE: Revert "Bluetooth: Add new PID for Atheros 3011" + - LP: #720949 + + [ John Johansen ] + + * AppArmor: Fix masking of capabilities in complain mode + - LP: #748656 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc2 + * [Config] updateconfigs following rebase to v2.6.39-rc2 + * hv_mouse needs delay.h + * olpc_dcon_xo_1 needs delay.h + * olpc_dcon_xo_1_5 needs delay.h + * Update dropped.txt for Oneiric + + [ Steve Langasek ] + + * [Config] Make linux-libc-dev coinstallable under multiarch + - LP: #750585 + + [ Upstream Kernel Changes ] + + * x86, hibernate: Initialize mmu_cr4_features during boot + - LP: #752870 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc1 to v2.6.39-rc2 + + -- Leann Ogasawara Wed, 06 Apr 2011 11:04:15 -0700 + +linux (2.6.39-0.1) oneiric; urgency=low + + [ Brad Figg ] + + * [Config] Set CONFIG_NR_CPUS=256 for amd64 generic + - LP: #737124 + + [ Henrik Rydberg ] + + * SAUCE: HID: hid-ntrig: add support for 1b96:0006 model + * SAUCE: HID: ntrig: fix suspend/resume on recent models + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: (drop after 2.6.39) v4l: make sure drivers supply a zeroed + struct v4l2_subdev + - LP: #745213 + + [ Kees Cook ] + + * [Config] packaging: adjust perms on vmlinuz as well + * SAUCE: nx-emu: further clarify dmesg reporting + - LP: #745181 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc1 + * [Config] updateconfigs following rebase to v2.6.39-rc1 + * [Config] Disable CONFIG_DM_RAID45 + * [Config] Disable CONFIG_SCSI_ISCSITARGET + * [Config] Disable CONFIG_EASYCAP + * [Config] Disable CONFIG_AUFS_FS + * update bnx2 firmware files in d-i/firmware/nic-modules + * xhci-pci.c resolve implicit declaration of kzalloc + * [Config] Enable CONFIG_DRM_PSB for only x86 + * [Config] Enable CONFIG_RTS_PSTOR for only x86 + * mfd/asic3: Fix typo, s/irq_data/data/ + + [ Luke Yelavich ] + + * [Config] Disable CONFIG_CRASH_DUMP on 32-bit powerpc kernels + - LP: #745358 + * [Config] Disable CONFIG_DRM_RADEON_KMS on powerpc kernels + * [Config] Build some framebuffer drivers as modules for powerpc kernels. + + [ Manoj Iyer ] + + * SAUCE: thinkpad-acpi: module autoloading for newer Lenovo ThinkPads. + - LP: #745217 + + [ Tim Gardner ] + + * SAUCE: INR_OPEN=4096 + - LP: #663090 + * SAUCE: Increase the default hard limit for open FDs to 4096 + - LP: #663090 + + [ Upstream Kernel Changes ] + + * (drop after 2.6.39-rc1) arm: versatile : Fix typo introduced in irq + namespace cleanup + * (drop after 2.6.39-rc1) [media] staging: altera-jtag needs delay.h + * ALSA: pcm: fix infinite loop in snd_pcm_update_hw_ptr0() + + [ Major Kernel Changes ] + + * rebase from v2.6.38 to v2.6.39-rc1 + + -- Leann Ogasawara Thu, 31 Mar 2011 12:50:10 -0700 + +linux (2.6.39-0.0) oneiric; urgency=low + + [ Leann Ogasawara ] + + * Open Oneiric + + -- Leann Ogasawara Thu, 31 Mar 2011 12:29:23 -0700 + +linux (2.6.38-7.39) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload. This is just to rebuild with gcc-4.5.2-7ubuntu1. + + -- Leann Ogasawara Thu, 24 Mar 2011 09:27:45 -0700 + +linux (2.6.38-7.38) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload take 2. 2.6.38-7.37 was accidentally uploaded before + gcc-4.5.2-6ubuntu5 finished building on all arches. + + -- Leann Ogasawara Tue, 22 Mar 2011 06:12:47 -0700 + +linux (2.6.38-7.37) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload. This is just to rebuild with gcc-4.5.2-6ubuntu5. + + -- Leann Ogasawara Sun, 20 Mar 2011 16:02:48 -0700 + +linux (2.6.38-7.36) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: KLUDGE: work around failed 'shrink-wrap' compiler + optimisation" + * purge last vestiges of maverick + * [Config] switch CONFIG_FB_VESA back to module + + [ Chris Wilson ] + + * SAUCE: drm/i915: Fix pipelined fencing + - LP: #717114 + + [ Loïc Minier ] + + * Include nls_cp437 module in virtual for fat + - LP: #732046 + * Support arch= cross-compilation for any arch + * Fix couple of typos in 0-common-vars.mk + * Enforce DEFAULT_MMAP_MIN_ADDR on armhf + * Add armhf to Debian -> Linux arch map + * Add initial armhf.mk + * Enable common packages for armhf + + [ Upstream Kernel Changes ] + + * Yama: fix default relationship to check thread group + - LP: #737676 + + -- Andy Whitcroft Fri, 18 Mar 2011 18:18:02 +0000 + +linux (2.6.38-7.35) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to 2fbfac4e053861925fa3fffcdc327649b09af54c + * rebase fixes bug #715330 + * [Config] disable CONFIG_SCSI_QLA_ISCSI for powerpc 32bit to fix FTBS + * rebase to v2.6.38 final + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: Apply OPTION_BLACKLIST_SENDSETUP also for ZTE MF626 + - LP: #636091 + + [ Tim Gardner ] + + * [Confg] CONFIG_BOOT_PRINTK_DELAY=y + + [ Upstream Kernel Changes ] + + * Yama: use thread group leader when creating match + - LP: #729839 + * (drop after 2.6.38) ahci: AHCI mode SATA patch for Intel Patsburg SATA + RAID controller + - LP: #735240 + * (drop after v2.6.38) x86, quirk: Fix SB600 revision check + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc8 to v2.6.38 final + - LP: #715330 + + -- Andy Whitcroft Tue, 15 Mar 2011 19:04:19 +0000 + +linux (2.6.38-6.34) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] normalise CONFIG_INTEL_TXT + * SAUCE: KLUDGE: work around failed 'shrink-wrap' compiler optimisation + - LP: #730860 + * rebase to mainline v2.6.38-rc8 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc7 + fb62c00a6d8942775abc23d1621db1252e2d93d1 + to v2.6.38-rc8 + + -- Andy Whitcroft Tue, 08 Mar 2011 11:54:48 +0000 + +linux (2.6.38-6.33) natty; urgency=low + + [ Andy Whitcroft ] + + * d-i -- enable speakup-modules udeb + - LP: #672699 + * rebase to 493f3358cb289ccf716c5a14fa5bb52ab75943e5 + * [Config] debian PPC64 configuration + * [Config] cleanup powerpc config fixing unexpected inconsistancies + * [Config] resync ppc64 configuration + * SAUCE: match up ENTRY/END naming for 32/64 bit + * rebase to fb62c00a6d8942775abc23d1621db1252e2d93d1 + * [Config] update configs after rebase to + fb62c00a6d8942775abc23d1621db1252e2d93d1 + * [Config] pps_gen_parport no longer built + + [ Corentin Chary ] + + * SAUCE: (drop after 2.6.38) eeepc-wmi: reorder keymap + - LP: #689393 + * SAUCE: (drop after 2.6.38) eeepc-wmi: add wlan key found on 1015P + - LP: #689393 + + [ John Johansen ] + + * SAUCE: Fix aufs calling of security_path_mknod + - LP: #724456 + + [ Kees Cook ] + + * SAUCE: proc: hide kernel addresses via %pK in /proc//stack + + [ Tim Gardner ] + + * rebase to 2.6.38-rc7 + + [ Upstream Kernel Changes ] + + * Revert "drm/i915: fix corruptions on i8xx due to relaxed fencing" + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc6 to v2.6.38-rc7 + + fb62c00a6d8942775abc23d1621db1252e2d93d1 + - LP: #721389 + - LP: #722925 + - LP: #723672 + - LP: #723676 + - LP: #715318 + + -- Andy Whitcroft Mon, 07 Mar 2011 15:33:17 +0000 + +linux (2.6.38-5.32) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to mainline 6f576d57f1fa0d6026b495d8746d56d949989161 + * [Config] updateconfigs following rebase to v2.6.38-rc6 + * [Config] enable CONFIG_DMAR + - LP: #552311 + + [ Upstream Kernel Changes ] + + * drm/i915: skip FDI & PCH enabling for DP_A + - LP: #561802, #600453, #681877 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc5 to v2.6.38-rc6 + - LP: #718402 + - LP: #719524 + - LP: #721126 + - LP: #719691 + - LP: #722689 + - LP: #722310 + + -- Andy Whitcroft Tue, 22 Feb 2011 13:28:39 +0000 + +linux (2.6.38-4.31) natty; urgency=low + + [ Andy Whitcroft ] + + * add in bugs closed by upstream patches pulled in by rebases + * rebase to 795abaf1e4e188c4171e3cd3dbb11a9fcacaf505 + * [Config] enable CONFIG_VSX to allow use of vector instuctions + * resync with maverick 98defa1c5773a3d7e4c524967eb01d5bae035816 + * rebase to mainline v2.6.38-rc5 + * SAUCE: ecryptfs: read on a directory should return EISDIR if not + supported + - LP: #719691 + + [ Colin Ian King ] + + * SAUCE: Dell All-In-One: Remove need for Dell module alias + + [ Manoj Iyer ] + + * SAUCE: (drop after 2.6.38) add ricoh 0xe823 pci id. + - LP: #717435 + + [ Tim Gardner ] + + * [Config] CONFIG_CRYPTO_CRC32C_INTEL=y + + [ Upstream Kernel Changes ] + + * Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15 + - LP: #702434 + * vfs: fix BUG_ON() in fs/namei.c:1461 + + [ Vladislav P ] + + * SAUCE: Release BTM while sleeping to avoid deadlock. + - LP: #713837 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc4 to v2.6.38-rc5 + - LP: #579276 + - LP: #715877 + - LP: #713769 + - LP: #716811 + * resync with Maverick Ubuntu-2.6.35-27.47 + + -- Andy Whitcroft Fri, 11 Feb 2011 17:24:09 +0000 + +linux (2.6.38-3.30) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.38-rc4 + * ppc64 -- add basic architecture + * ubuntu: AUFS -- update to 65835da20b77c98fb538c9114fc31f5de1328230 + + [ Colin Ian King ] + + * SAUCE: Add WMI hotkeys support for Dell All-In-One series + - LP: #676997 + * SAUCE: Add WMI hotkeys support for another Dell All-In-One series + - LP: #701530 + * SAUCE: Dell WMI: Use sparse keymaps and tidy up code. + - LP: #701530 + + [ Dan Rosenberg ] + + * SAUCE: (drop after 2.6.38) Convert net %p usage %pK + + [ Kees Cook ] + + * Revert "SAUCE: kernel: make /proc/kallsyms mode 400 to reduce ease of + attacking" + * SAUCE: (drop after 2.6.38) use %pK for /proc/kallsyms and /proc/modules + + [ Tim Gardner ] + + * [Config] CONFIG_BLK_CGROUP=y + - LP: #706394 + * [Config] CONFIG_DELL_WMI_AIO=m + + [ Upstream Kernel Changes ] + + * drm/i915/lvds: Restore dithering on native modes for gen2/3 + - LP: #711568 + + [ Upstream Kernel Changes ] + + * rebase from v2.6.38-rc3 to v2.6.38-rc4. + - LP: #701271 + - LP: #708521 + - LP: #710371 + + -- Andy Whitcroft Tue, 08 Feb 2011 02:07:18 +0000 + +linux (2.6.38-2.29) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to 1f0324caefd39985e9fe052fac97da31694db31e + * [Config] updateconfigs following rebase to + 1f0324caefd39985e9fe052fac97da31694db31e + * rebase to 70d1f365568e0cdbc9f4ab92428e1830fdb09ab0 + * [Config] reenable HIBERNATE + - LP: #710877 + * rebase to v2.6.38-rc3 + * [Config] reenable CONFIG_CRASH_DUMP + + [ Kamal Mostafa ] + + * SAUCE: rtl8192se: fix source file perms + * SAUCE: rtl8192se: fix source file newline + * SAUCE: omnibook: fix source file newline + + [ Kees Cook ] + + * [Config] packaging: really make System.map mode 0600 + + [ Ricardo Salveti de Araujo ] + + * SAUCE: OMAP3630: PM: don't warn the user with a trace in case of + PM34XX_ERRATUM + + [ Soren Hansen ] + + * SAUCE: nbd: Remove module-level ioctl mutex + + [ Tim Gardner ] + + * SAUCE: Disable building the ACPI debugfs source + + [ Upstream Kernel Changes ] + + * Set physical start and alignment 1M for virtual i386 + - LP: #710754 + + [ Upstream Kernel Changes ] + + * rebase from v2.6.38-rc2 + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + to v2.6.38-rc3 + - LP: #707902 + + -- Andy Whitcroft Fri, 28 Jan 2011 16:30:32 +0000 + +linux (2.6.38-1.28) natty; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to b1cee06249dfa0ab30951e7f06490a75c155b620 + + [ Ricardo Salveti de Araujo ] + + * SAUCE: omap3: beaglexm: fix DVI initialization + * [Config] omap: move CONFIG_PANEL_GENERIC_DPI to build in to make + display work at Beagle + + -- Andy Whitcroft Fri, 28 Jan 2011 10:51:57 +0000 + +linux (2.6.38-1.27) natty; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update aufs-update to track new locations of headers + * ubuntu: AUFS -- update to c5021514085a5d96364e096dbd34cadb2251abfd + * SAUCE: ensure root is ready before running usermodehelpers in it + * correct the Vcs linkage to point to natty + * rebase to linux tip e78bf5e6cbe837daa6ab628a5f679548742994d3 + * [Config] update configs following rebase + e78bf5e6cbe837daa6ab628a5f679548742994d3 + * SAUCE: Yama: follow changes to generic_permission + * ubuntu: compcache -- follow changes to bd_claim/bd_release + * ubuntu: iscsitarget -- follow changes to open_bdev_exclusive + * ubuntu: ndiswrapper -- fix interaction between __packed and packed + * ubuntu: AUFS -- update to 806051bcbeec27748aae2b7957726a4e63ff308e + * update package version to match payload version + * rebase to e6f597a1425b5af64917be3448b29e2d5a585ac8 + * rebase to v2.6.38-rc1 + * [Config] updateconfigs following rebase to v2.6.38-rc1 + * SAUCE: x86 fix up jiffies/jiffies_64 handling + * rebase to linus tip 2b1caf6ed7b888c95a1909d343799672731651a5 + * [Config] updateconfigs following rebase to + 2b1caf6ed7b888c95a1909d343799672731651a5 + * [Config] disable CONFIG_TRANSPARENT_HUGEPAGE to fix i386 boot crashes + * ubuntu: AUFS -- suppress benign plink warning messages + - LP: #621195 + * [Config] CONFIG_NR_CPUS=256 for amd64 -server flavour + * rebase to v2.6.38-rc2 + * rebase to mainline d315777b32a4696feb86f2a0c9e9f39c94683649 + * rebase to c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + * [Config] update configs following rebase to + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + * [Config] disable CONFIG_AD7152 to fix FTBS on armel versatile + * [Config] disable CONFIG_AD7150 to fix FTBS on armel versatile + * [Config] disable CONFIG_RTL8192CE to fix FTBS on armel omap + * [Config] disable CONFIG_MANTIS_CORE to fix FTBS on armel versatile + + [ Kees Cook ] + + * SAUCE: kernel: make /proc/kallsyms mode 400 to reduce ease of attacking + + [ Stefan Bader ] + + * Temporarily disable RODATA for virtual i386 + - LP: #699828 + + [ Tim Gardner ] + + * [Config] CONFIG_NLS_DEFAULT=utf8 + - LP: #683690 + * [Config] CONFIG_HIBERNATION=n + * update bnx2 firmware files in d-i/firmware/nic-modules + + [ Upstream Kernel Changes ] + + * Revert "drm/radeon/bo: add some fallback placements for VRAM only + objects." + * packaging: make System.map mode 0600 + * thinkpad_acpi: Always report scancodes for hotkeys + - LP: #702407 + * sched: tg->se->load should be initialised to tg->shares + * Input: sysrq -- ensure sysrq_enabled and __sysrq_enabled are consistent + * brcm80211: include linux/slab.h for kfree + * pch_dma: add include/slab.h for kfree + * i2c-eg20t: include linux/slab.h for kfree + * gpio/ml_ioh_gpio: include linux/slab.h for kfree + * tty: include linux/slab.h for kfree + * winbond: include linux/delay.h for mdelay et al + + [ Upstream Kernel Changes ] + + * mark the start of v2.6.38 versioning + * rebase v2.6.37 to v2.6.38-rc2 + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + - LP: #689886 + - LP: #702125 + - LP: #608775 + - LP: #215802 + - LP: #686333 + - LP: #677830 + - LP: #677652 + - LP: #696493 + - LP: #697240 + - LP: #689036 + - LP: #705323 + - LP: #686692 + + -- Andy Whitcroft Sun, 09 Jan 2011 13:44:52 +0000 + +linux (2.6.37-12.26) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.37-rc8 + * [Config] armel -- reenable omap flavour + * [Config] disable CONFIG_MACH_OMAP3517EVM to fix FTBS on armel omap + * [Config] disable CONFIG_GPIO_VX855 to fix FTBS on omap armel + * [Config] disable CONFIG_WESTBRIDGE_ASTORIA to fix FTBS on omap armel + * [Config] disable CONFIG_TI_DAVINCI_EMAC to fix FTBS on omap armel + * rebase to mainline 989d873fc5b6a96695b97738dea8d9f02a60f8ab + * [Config] track missing modules + * rebase to v2.6.37 final + + [ Chase Douglas ] + + * SAUCE: (drop after 2.6.37) HID: magicmouse: Don't report REL_{X, Y} for + Magic Trackpad + + [ Stefan Bader ] + + * Revert "SAUCE: blkfront: default to sd devices" + - LP: #684875 + + [ Tim Gardner ] + + * Revert "SAUCE: (no-up) libata: Ignore HPA by default." + - LP: #380138 + * [Config] Added autofs4.ko to -virtual flavour + - LP: #692917 + + [ Upstream Kernel Changes ] + + * Add support for Intellimouse Mode in ALPS touchpad on Dell E2 series + Laptops + - LP: #632884 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc8 + * rebase to mainline 989d873fc5b6a96695b97738dea8d9f02a60f8ab + * rebase to v2.6.37 final + + -- Andy Whitcroft Thu, 23 Dec 2010 18:34:13 +0000 + +linux (2.6.37-11.25) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] d-i -- add hpsa to the list of block devices + - LP: #684304 + * [Config] add vmw-balloon driver to -virtual flavour + - LP: #592039 + * rebase to v2.6.37-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc7 + + -- Andy Whitcroft Tue, 21 Dec 2010 13:35:28 +0000 + +linux (2.6.37-10.24) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.37-rc6 + * updateconfigs following rebase to v2.6.37-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc6 + + -- Andy Whitcroft Thu, 16 Dec 2010 12:34:19 +0000 + +linux (2.6.37-9.23) natty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: vt -- fix handoff numbering to 1..n and add range checks + - LP: #689606 + * SAUCE: vt -- fix handoff numbering to 1..n and add range checks (grub) + - LP: #689606 + + [ Kees Cook ] + + * SAUCE: RO/NX protection for loadable kernel, fix ftrace + - LP: #690190 + + -- Andy Whitcroft Wed, 15 Dec 2010 19:29:57 +0000 + +linux (2.6.37-9.22) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.35-rc5 + * [Config] updateconfigs following rebase to v2.6.37-rc5 + * (no-up) add support for installed header files to ubuntu directory + - LP: #684666 + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + * ubuntu: dm-raid4-5 -- follow changes to bio flags + * ubuntu: dm-raid4-5 -- re-enable + * ubuntu: omnibook -- update BOM + * ubuntu: ndiswrapper -- update BOM to match actual version + * ubuntu: ndiswrapper -- follow removal of the BKL and locked ioctl + * ubuntu: ndiswrapper -- re-enable + * ubuntu: iscsitarget -- re-instate copy_io_context + * ubuntu: iscsitarget -- follow changes to semaphore initialisation + * ubuntu: iscsitarget -- convert NIPQUAD to %pI4 + * ubuntu: iscsitarget -- re-enable + + [ Kees Cook ] + + * [Config] update config for CONFIG_DEBUG_SET_MODULE_RONX + + [ Manoj Iyer ] + + * SAUCE: Enable jack sense for Thinkpad Edge 13 + - LP: #685015 + + [ Tim Gardner ] + + * [Config] CONFIG_9P_FSCACHE=y,CONFIG_9P_FS_POSIX_ACL=y + * [Config] CONFIG_CRYPTO_CRC32C=y + - LP: #681819 + * [Config] CONFIG_9P_FSCACHE=n + * [Config] Add nfsd modules to -virtual flavour + - LP: #688070 + + [ Upstream Kernel Changes ] + + * Revert "Staging: zram: work around oops due to startup ordering snafu" + * NFS: Fix panic after nfs_umount() + - LP: #683938 + * x86: Add NX protection for kernel data + * x86: Add RO/NX protection for loadable kernel modules + * x86: Resume trampoline must be executable + * x86: RO/NX protection for loadable kernel, jump_table fix + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc5 + + -- Andy Whitcroft Thu, 09 Dec 2010 18:15:35 +0000 + +linux (2.6.37-8.21) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- include the aufs_types.h file in + linux-libc-headers" + * Revert "(no-up) add support for installed header files to ubuntu + directory" + + -- Andy Whitcroft Sun, 05 Dec 2010 17:33:28 +0000 + +linux (2.6.37-8.20) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] drivers/serial/mfd.c: Fix ARM compile error" + * Revert "SAUCE: Nouveau: Disable acceleration on MacBook Pros" + * Revert "SAUCE: Nouveau: Add quirk framework to disable acceleration" + * Revert "SAUCE: i915 -- disable powersave by default" + * SAUCE: enable Marvell 9128 PCIe SATA controller + - LP: #658521 + * [Config] evtchn has been renamed + * (no-up) add support for installed header files to ubuntu directory + - LP: #684666 + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + + [ Tim Gardner ] + + * [Config] MISS: evtchn, NEW : xen-evtchn + * rebase to v2.6.37-rc4 + + [ Upstream Kernel Changes ] + + * drm/i915: Clean conflicting modesetting registers upon init + - LP: #683775 + * rebase to v2.6.37-rc4 + + -- Andy Whitcroft Fri, 03 Dec 2010 18:42:07 +0000 + +linux (2.6.37-7.19) natty; urgency=low + + [ Tim Gardner ] + + * [Config] Add bnx2 firmware to nic-modules udeb + - LP: #676245 + + -- Andy Whitcroft Fri, 26 Nov 2010 17:53:45 +0000 + +linux (2.6.37-7.18) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] USB: option: Remove duplicate AMOI_VENDOR_ID" + * Revert "SAUCE: Add extra headers to linux-libc-dev" + * Revert "SAUCE: Enable speedstep for sonoma processors." + * [Config] enable CONFIG_BT_HCIUART_ATH3K + * [Config] enable CONFIG_IWLWIFI_DEBUGFS + * [Config] standardise CONFIG_MII + * [Config] standardise CONFIG_PRISM2_USB + * [Config] standardise CONFIG_SCSI_QLA_ISCSI + * [Config] build in CONFIG_AGP + * [Config] build in CONFIG_AGP_INTEL + * [Config] build in CONFIG_AGP_AMD + * [Config] build in CONFIG_AGP_AMD64 + * [Config] build in CONFIG_AGP_NVIDIA + * [Config] build in CONFIG_AGP_VIA + * [Config] disable CONFIG_SCSI_QLA_ISCSI for FTBS (arm) + * (no-up): document the new ## scheme + * [Config] harmonise CONFIG_SERIAL_8250_NR_UARTS + * [Config] update CONFIG_SERIAL_8250_RUNTIME_UARTS=32 + - LP: #675453 + + [ Mathieu J. Poirier ] + + * SAUCE: ARM: Adding vdd_sdi regulator supply to OMAP3EVM + + [ Upstream Kernel Changes ] + + * nx-emu: fix inverted report of disable_nx + + -- Andy Whitcroft Tue, 23 Nov 2010 21:00:39 +0000 + +linux (2.6.37-6.17) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2-standalone.patch + aufs2.1-36-UNRELEASED-20101103" + * Revert "ubuntu: AUFS -- aufs2-base.patch + aufs2.1-36-UNRELEASED-20101103" + * [Config] standardise CONFIG_BT + * [Config] standardise CONFIG_IRDA + * [Config] standardise CONFIG_LAPB + * [Config] standardise CONFIG_RDS + * [Config] standardise CONFIG_RFKILL + * [Config] standardise CONFIG_TIPC + * [Config] standardise CONFIG_X25 + * [Config] standardise CONFIG_INPUT_EVDEV + * [Config] standardise CONFIG_INPUT_JOYDEV + * [Config] standardise CONFIG_INPUT_JOYSTICK + * [Config] standardise CONFIG_INPUT_TOUCHSCREEN + * [Config] CONFIG_INPUT_TOUCHSCREEN=n for FTBS (arm) + * [Config] CONFIG_IRDA=n for FTBS (arm) + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-37 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-37 + * ubuntu: AUFS -- update to 097bf62d6f49619359d34bf17f242df38562489a + + [ Tim Gardner ] + + * SAUCE: Fix drivers/staging/easycap FTBS + * [Config] CONFIG_EASYCAP=m after fixing FTBS + + [ Upstream Kernel Changes ] + + * Revert "x86: Add NX protection for kernel data" + + -- Andy Whitcroft Mon, 22 Nov 2010 18:09:10 +0000 + +linux (2.6.37-6.16) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] update config for CONFIG_DEBUG_SET_MODULE_RONX" + * rebase to v2.6.37-rc3 + + [ Tim Gardner ] + + * [Config] CONFIG_SCHED_AUTOGROUP=y + + [ Upstream Kernel Changes ] + + * Revert "x86: Add RO/NX protection for loadable kernel modules" + * sched: automated per session task groups + * rebase to v2.6.37-rc3 + + -- Andy Whitcroft Mon, 22 Nov 2010 10:11:13 +0000 + +linux (2.6.37-6.15) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] standardise CONFIG_CEPH_FS + * [Config] standardise CONFIG_SCSI_LPFC_DEBUG_FS + * [Config] standardise CONFIG_SCSI_PROC_FS + * [Config] standardise CONFIG_UBIFS_FS + * [Config] standardise CONFIG_USB_GADGET_DEBUG_FS + + [ Kees Cook ] + + * [Config] update config for CONFIG_DEBUG_SET_MODULE_RONX + + [ Manoj Iyer ] + + * SAUCE: Enable jack sense for Thinkpad Edge 11 + - LP: #677210 + * SAUCE: enable rfkill for rtl8192se driver + - LP: #640992 + + [ Tim Gardner ] + + * [Config] CONFIG_EASYCAP=n for FTBS + * Rebase to v2.6.32-rc2+git + + [ Upstream Kernel Changes ] + + * x86: Fix improper large page preservation + * x86: Add NX protection for kernel data + * x86: Add RO/NX protection for loadable kernel modules + + [ Upstream Kernel Changes ] + + * Rebase to Linus 2.6.37-rc2+git + + -- Andy Whitcroft Sat, 20 Nov 2010 11:40:00 +0000 + +linux (2.6.37-5.14) natty; urgency=low + + [ Upstream Kernel Changes ] + + * PCI: fix offset check for sysfs mmapped files + - LP: #676963 + + -- Andy Whitcroft Thu, 18 Nov 2010 18:12:27 +0000 + +linux (2.6.37-5.13) natty; urgency=low + + [ Andy Whitcroft ] + + * rebased to v2.6.37-rc2 + * updateconfigs following rebase to v2.6.37-rc2 + + [ Tim Gardner ] + + * [Config] Added NFS and related modules to virtual flavour + - LP: #659084 + + [ Upstream Kernel Changes ] + + * x86, cpu: Rename verify_cpu_64.S to verify_cpu.S + * x86, cpu: Clear XD_DISABLED flag on Intel to regain NX + * x86, cpu: Call verify_cpu during 32bit CPU startup + * x86, cpu: Only CPU features determine NX capabilities + + [ Upstream Changes ] + + * rebased to v2.67.37-rc2 + + -- Andy Whitcroft Tue, 16 Nov 2010 13:13:29 +0000 + +linux (2.6.37-4.12) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] HID: magicmouse: add param for scroll speed" + * Revert "[Upstream] HID: magicmouse: properly account for scroll + movement in state" + * Revert "[Upstream] HID: magicmouse: disable and add module param for + scroll acceleration" + * Revert "[Upstream] HID: magicmouse: scroll on entire surface, not just + middle of mouse" + + [ Henrik Rydberg ] + + * SAUCE: hid: ntrig: remove sysfs nodes + * SAUCE: hid: ntrig: Setup input filtering manually + * SAUCE: hid: ntrig: New ghost-filtering event logic + + [ Manoj Iyer ] + + * SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + - LP: #348861 + + [ Upstream Kernel Changes ] + + * Revert "mmc: fix all hangs related to mmc/sd card insert/removal during + suspend/resume" + * Revert "[ARM] implement arch_randomize_brk()" + * Revert "ARM: stack protector: change the canary value per task" + * Revert "ARM: initial stack protector (-fstack-protector) support" + * Revert "ALSA: hda - Handle pin NID 0x1a on ALC259/269" + * Revert "ALSA: hda - Handle missing NID 0x1b on ALC259 codec" + * Revert "perf probe: Add kernel source path option" + * hid: ntrig: Support single-touch devices + * hid: ntrig: Mask pen switch events + * net: rtnetlink.h -- only include linux/netdevice.h when used by the + kernel + - LP: #673073 + * Fix userspace build of linux/fs.h + + -- Andy Whitcroft Mon, 15 Nov 2010 19:31:44 +0000 + +linux (2.6.37-3.11) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- update to + b37c575759dc4535ccc03241c584ad5fe69e3b25" + * Revert "ubuntu: AUFS -- track changes to the arguements to fop fsync()" + * Revert "ubuntu: AUFS -- update to standalone 2.6.35-rcN as at 20100601" + * Revert "ubuntu: AUFS -- update to standalone 2.6.34 as at 20100601" + * Revert "ubuntu: AUFS -- aufs2 base patch for linux-2.6.34" + * [Config] Disable intel_idle for -virtual kernels + - LP: #651370 + * [Config] enforcer -- ensure we never enable CONFIG_IMA + * debian -- pass the correct flavour name when checking configs + * [Config] enforcer -- ensure CONFIG_INTEL_IDLE is off for -virtual + * [Config] ensure CONFIG_IPV6=y for powerpc + * [Config] enforcer -- ensure CONFIG_IPV6=y + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- update to aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- re-enable + * ubuntu: AUFS -- track changes to work queue initialisation + * ubuntu: AUFS -- track changes to llseek in v2.6.37-rc1 + * SAUCE: fbcon -- fix race between open and removal of framebuffers + * SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + - LP: #614008 + * SAUCE: drm -- stop early access to drm devices + + [ Jeremy Kerr ] + + * [Config] Build-in powermac ZILOG serial driver + - LP: #673346 + + [ Kees Cook ] + + * SAUCE: nx-emu: use upstream ASLR when possible + + [ Tim Gardner ] + + * [Config] Use correct be2iscsi module name in d-i/modules/scsi-modules + - LP: #628776 + + [ Upstream Kernel Changes ] + + * i386: NX emulation + * nx-emu: drop exec-shield sysctl, merge with disable_nx + * nx-emu: standardize boottime message prefix + * mmap randomization for executable mappings on 32-bit + * exec-randomization: brk away from exec rand area + + -- Andy Whitcroft Thu, 11 Nov 2010 23:46:37 +0000 + +linux (2.6.37-2.10) natty; urgency=low + + [ Andy Whitcroft ] + + * reinstate armel config changes: + * [Config] CONFIG_GPIO_PCH=n for armel FTBS + * [Config] CONFIG_GPIO_VX855=n for armel FTBS + + -- Andy Whitcroft Wed, 03 Nov 2010 22:20:35 +0000 + +linux (2.6.37-2.9) natty; urgency=low + + [ Andy Whitcroft ] + + * config -- fix genportsconfig + * [Config] move powerpc over from ports to distro + * bump master version number to match contained kernel + * SAUCE: fix documentation strings for struct input_keymap_entry + * usb: gadget: goku_udc: add registered flag bit + + -- Andy Whitcroft Tue, 02 Nov 2010 15:14:11 +0000 + +linux (2.6.36-2.8) natty; urgency=low + + [ Tim Gardner ] + + * [Config]: fix changed CONFIG_SYSFS_DEPRECATED_V2 enforcement rules + * [Config]: TWL4030_CORE=n for FTBS + * [Config]: CONFIG_ATH6K_LEGACY=n for FTBS + * [Config]: CONFIG_SOLO6X10=n for FTBS + * [Config]: CONFIG_GPIO_PCH=n for armel FTBS + * [Config]: CONFIG_GPIO_VX855=n for armel FTBS + * [Config]: CONFIG_DRM_NOUVEAU=n for armel FTBS + * [Config]: CONFIG_LINE6_USB=n for armel FTBS + * [Config]: CONFIG_SENSORS_AK8975=n for armel FTBS + * [Config]: CONFIG_I2C_I801=n for armel FTBS + * UBUNTU: SAUCE: AppArmor: Fix unpack of network tables. + * AppArmor: compatibility patch for v5 interface + * AppArmor: compatibility patch for v5 network controll + * Dropped (pre-stable): input: Support Clickpad devices in ClickZone mode + * Dropped: UBUNTU: SAUCE: libata: Add ALPM power state accounting to the AHCI driver + * Dropped: UBUNTU: SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + * Dropped: hid: 3m: Convert to MT slots + * Dropped: HID: magicmouse: don't allow hidinput to initialize the device + * Dropped: HID: magicmouse: simplify touch data bit manipulation + * Dropped: HID: magicmouse: simplify touch down logic + * Dropped: HID: magicmouse: enable Magic Trackpad support + * Dropped: UBUNTU: SAUCE: hid: ntrig: remove sysfs nodes + * Dropped: UBUNTU: SAUCE: hid: ntrig: Setup input filtering manually + * Dropped: UBUNTU: SAUCE: hid: ntrig: New ghost-filtering event logic + * Dropped: UBUNTU: SAUCE: hid: ntrig: identify firmware version (wiggled) + * Dropped: UBUNTU: (pre-stable): input: Support Clickpad devices in ClickZone mode + * Dropped: UBUNTU: SAUCE: KMS: cache the EDID information of the LVDS + * Dropped: UBUNTU: SAUCE: fbcon -- fix race between open and removal of framebuffers + * Dropped: UBUNTU: SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + * Dropped: UBUNTU: SAUCE: x86: implement cs-limit nx-emulation for ia32 + * Dropped: UBUNTU: SAUCE: x86: more tightly confine cs-limit nx-emulation to ia32 only + * Dropped: UBUNTU: SAUCE: [um] Don't use nx_enabled under UML + * Dropped: UBUNTU: SAUCE: x86: brk away from exec rand area + + [ Upstream Kernel Changes ] + + * rebased against 2.6.27-rc1 + + -- Tim Gardner Fri, 22 Oct 2010 19:35:05 -0600 + +linux (2.6.36-1.7) natty; urgency=low + + [ Andy Whitcroft ] + + * rebased to v2.6.36 final + * [Config] update configs following rebase to v2.6.36 final + * [Config] update ports configs following rebase to v2.6.36 final + + [ Upstream Kernel Changes ] + + * rebased to v2.6.36 final + + -- Andy Whitcroft Thu, 21 Oct 2010 14:28:57 +0100 + +linux (2.6.36-1.6) natty; urgency=low + + [ Upstream Kernel Changes ] + + * drop broadcom staging driver preview: + * Revert "Staging: Add initial release of brcm80211 - Broadcom 802.11n + wireless LAN driver." + + -- Andy Whitcroft Wed, 20 Oct 2010 10:41:25 +0100 + +linux (2.6.36-1.5) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.36-rc8 + * updateconfigs following rebase to v2.6.36-rc8 + * updateportsconfigs following rebase to v2.6.36-rc8 + * config -- simplify the kernelconfig interface + * config -- add new config mode 'dumpconfigs' + + [ Tim Gardner ] + + * Simplify the use of CROSS_COMPILER + + [ Upstream Kernel Changes ] + + * drop broadcom staging driver preview: + * Revert "staging: brcm80211: Make compiling of brcm80211.ko and + brcmfmac.ko mutually exclusive." + * Revert "staging: brcm80211: Fix compile issue when BRCM80211_PCI is not + set." + * Revert "Staging: brcm80211: remove driver specific -W options" + * Revert "Staging: brcm80211: clean up makefile cflag lines" + * Revert "staging: brcm80211: add fullmac driver" + * Revert "staging: brcm80211: use string native library" + * Revert "staging: brcm80211: use native ctype library" + * Revert "staging: brcm80211: fix remaining checkpatch errors." + * Revert "staging: brcm80211: fix "ERROR: trailing whitespace."" + * Revert "staging: brcm80211: fix "ERROR: spaces required around that + ..."" + * Revert "staging: brcm80211: fix "ERROR: spaces prohibited around that + ':' ..."" + * Revert "staging: brcm80211: fix "ERROR: space required before that + ..."" + * Revert "staging: brcm80211: fix "ERROR: space required after that ..."" + * Revert "staging: brcm80211: fix "ERROR: space required after that close + brace"" + * Revert "staging: brcm80211: fix "ERROR: space prohibited before + ...close square bracket"" + * Revert "staging: brcm80211: fix "ERROR: space prohibited after that + ..."" + * Revert "staging: brcm80211: fix "ERROR: need consistent spacing around + '*'"" + * Revert "staging: brcm80211: fix 'ERROR: "(foo*)" should be "(foo *)"'" + * Revert "staging: brcm80211: fix "ERROR: Macros w/ mult. statements ... + do - while loop"" + * Revert "staging: brcm80211: fix "ERROR: Macros w/ complex values ... + parenthesis"" + * Revert "staging: brcm80211: fix "ERROR: do not initialise statics to 0 + or NULL"" + * Revert "staging: brcm80211: fix "ERROR: do not initialise globals to 0 + or NULL"" + * Revert "staging: brcm80211: fix "ERROR: while should follow close brace + '}'"" + * Revert "staging: brcm80211: fix "ERROR: that open brace { ... prev + line"" + * Revert "staging: brcm80211: fix "ERROR: trailing statements should be + on next line"" + * Revert "staging: brcm80211: fix "ERROR: do not use assignment in if + condition"" + * Revert "staging: brcm80211: fix "ERROR: return is not a function, + paren..."" + * Revert "staging: brcm80211: fix "ERROR: open brace '{' following + function dec..."" + * Revert "staging: brcm80211: fix 'ERROR: "foo * bar" should be "foo + *bar"'" + * Revert "staging: brcm80211: Fix URLs for firmware files." + * Revert "staging: brcm80211: use '%pM' format to print MAC address" + * Revert "staging: brcm80211: Add contact info to TODO list." + * Revert "staging: brcm80211: Fix some initialisation failure paths" + * Export dump_{write,seek} to binary loader modules + * rebase to v2.6.36-rc8. + + -- Andy Whitcroft Tue, 19 Oct 2010 18:58:11 +0100 + +linux (2.6.36-0.4) natty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: perf: increase stack footprint to avoid stack-protector warning + (fixes FTBS on powerpc) + + -- Andy Whitcroft Thu, 14 Oct 2010 13:16:16 +0100 + +linux (2.6.36-0.3) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable CONFIG_SCSI_QLA_ISCSI to fix FTBS on powerpc + + -- Andy Whitcroft Thu, 14 Oct 2010 03:01:30 +0100 + +linux (2.6.36-0.2) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] updateportsconfigs following rebase to 2.6.36-rc7 + (fix FTBS on powerpc) + + -- Andy Whitcroft Wed, 13 Oct 2010 23:25:12 +0100 + +linux (2.6.36-0.1) natty; urgency=low + + [ Andy Whitcroft ] + + * reduce disk usage during buildd builds + - LP: #645653 + * [Config] enforcer -- ensure CONFIG_INIT_PASS_ALL_PARAMS is y + * [Config] armel -- drop omap flavour + + [ Tim Gardner ] + + * Added dropped patch list + * more dropped patches + * [Config] Disable aufs, dmraid-4.5, ndis-wrapper + * [Config] Add support for cross compiling armel + * [Config] CONFIG_SCSI_QLA_ISCSI=n for armel + * [Upstream] drivers/serial/mfd.c: Fix ARM compile error + * [Config]: updateconfigs after adding brcm80211 + * staging: brcm80211: Fix Makefile syntax error + * rebased to v2.6.36-rc7 + + [ Upstream Kernel Changes ] + + * (upstream) IPS driver: don't toggle CPU turbo on unsupported CPUs + * (upstream) IPS driver: verify BIOS provided limits + * intel_ips: Print MCP limit exceeded values. + * Staging: Add initial release of brcm80211 - Broadcom 802.11n wireless + LAN driver. + * staging: brcm80211: Fix some initialisation failure paths + * staging: brcm80211: Add contact info to TODO list. + * staging: brcm80211: use '%pM' format to print MAC address + * staging: brcm80211: Fix URLs for firmware files. + * staging: brcm80211: fix 'ERROR: "foo * bar" should be "foo *bar"' + * staging: brcm80211: fix "ERROR: open brace '{' following function + dec..." + * staging: brcm80211: fix "ERROR: return is not a function, paren..." + * staging: brcm80211: fix "ERROR: do not use assignment in if condition" + * staging: brcm80211: fix "ERROR: trailing statements should be on next + line" + * staging: brcm80211: fix "ERROR: that open brace { ... prev line" + * staging: brcm80211: fix "ERROR: while should follow close brace '}'" + * staging: brcm80211: fix "ERROR: do not initialise globals to 0 or NULL" + * staging: brcm80211: fix "ERROR: do not initialise statics to 0 or NULL" + * staging: brcm80211: fix "ERROR: Macros w/ complex values ... + parenthesis" + * staging: brcm80211: fix "ERROR: Macros w/ mult. statements ... do - + while loop" + * staging: brcm80211: fix 'ERROR: "(foo*)" should be "(foo *)"' + * staging: brcm80211: fix "ERROR: need consistent spacing around '*'" + * staging: brcm80211: fix "ERROR: space prohibited after that ..." + * staging: brcm80211: fix "ERROR: space prohibited before ...close square + bracket" + * staging: brcm80211: fix "ERROR: space required after that close brace" + * staging: brcm80211: fix "ERROR: space required after that ..." + * staging: brcm80211: fix "ERROR: space required before that ..." + * staging: brcm80211: fix "ERROR: spaces prohibited around that ':' ..." + * staging: brcm80211: fix "ERROR: spaces required around that ..." + * staging: brcm80211: fix "ERROR: trailing whitespace." + * staging: brcm80211: fix remaining checkpatch errors. + * staging: brcm80211: use native ctype library + * staging: brcm80211: use string native library + * staging: brcm80211: add fullmac driver + * Staging: brcm80211: clean up makefile cflag lines + * Staging: brcm80211: remove driver specific -W options + * staging: brcm80211: Fix compile issue when BRCM80211_PCI is not set. + * staging: brcm80211: Make compiling of brcm80211.ko and brcmfmac.ko + mutually exclusive. + + -- Andy Whitcroft Tue, 12 Oct 2010 16:00:27 +0100 + +linux (2.6.35-22.33) maverick; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: Add support for Intellimouse Mode in ALPS touchpad on + Dell E2 series Laptops" + - LP: #641320 + + [ Brian Rogers ] + + * SAUCE: ir-core: Fix null dereferences in the protocols sysfs interface + - LP: #624701 + + [ Christopher James Halse Rogers ] + + * SAUCE: Nouveau: Add quirk framework to disable acceleration + - LP: #544088, #546393 + * SAUCE: Nouveau: Disable acceleration on MacBook Pros + - LP: #546393 + + [ John Johansen ] + + * Revert "SAUCE: AppArmor: allow newer tools to load policy on older + kernels" + * SAUCE: AppArmor: allow newer tools to load policy on older kernels + - LP: #639758 + + [ Mathieu J. Poirier ] + + * SAUCE: Adding vdd_sdi regulator supply to OMAP3EVM + + [ Upstream Kernel Changes ] + + * ALSA: HDA: Enable internal speaker on Dell M101z + - LP: #640254 + + -- Leann Ogasawara Fri, 17 Sep 2010 13:21:28 -0700 + +linux (2.6.35-22.32) maverick; urgency=low + + [ Arjan van de Ven ] + + * SAUCE: libata: Add ALPM power state accounting to the AHCI driver + + [ David Henningsson ] + + * SAUCE: ALSA: HDA: Enable internal mic on Dell E6410 and Dell E6510 + - LP: #605047, #628961 + + [ John Johansen ] + + * [Upstream] AppArmor: Fix splitting an fqname into separate namespace + and profile names + - LP: #615947 + * [Upstream] AppArmor: Fix locking from removal of profile namespace + - LP: #615947 + * SAUCE: AppArmor: allow newer tools to load policy on older kernels + - LP: #639758 + * SAUCE: Improve Amazon EBS performance for EC2 + - LP: #634316 + + [ Leann Ogasawara ] + + * Revert "SAUCE: i915 KMS -- blacklist i855" + * Revert "SAUCE: i915 KMS -- blacklist i845g" + * Revert "SAUCE: i915 KMS -- blacklist i830" + * Revert "SAUCE: i915 KMS -- support disabling KMS for known broken + devices" + * execute module-inclusion within a subshell + - LP: #621175 + + [ Upstream Kernel Changes ] + + * (pre-stable) bounce: call flush_dcache_page() after bounce_copy_vec() + - LP: #633227 + * (pre-stable) drm/i915: don't enable self-refresh on Ironlake + - LP: #629711 + * (pre-stable) mm: Move vma_stack_continue into mm.h + * x86, hwmon: Fix unsafe smp_processor_id() in thermal_throttle_add_dev + - LP: #601073 + * PM / Runtime: Make runtime_status attribute not debug-only (v. 2) + * PM / Runtime: Add runtime PM statistics (v3) + * compat: Make compat_alloc_user_space() incorporate the access_ok() + - CVE-2010-3081 + * x86-64, compat: Test %rax for the syscall number, not %eax + - CVE-2010-3301 + * x86-64, compat: Retruncate rax after ia32 syscall entry tracing + - CVE-2010-3301 + + -- Leann Ogasawara Tue, 14 Sep 2010 08:46:49 -0700 + +linux (2.6.35-21.31) maverick; urgency=low + + [ Andy Whitcroft ] + + * bodge linux-libc-dev package version due to ti-omap4 error + * linux-libc-dev -- ensure we can only build this on debian.master + + -- Leann Ogasawara Mon, 13 Sep 2010 09:54:31 -0700 + +linux (2.6.35-21.30) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + - LP: #614008 + + [ Daniel Lezcano ] + + * SAUCE: fix compilation warning when CONFIG_SECURITY is not set + + [ Henrik Rydberg ] + + * SAUCE: Input: wacom - add fuzz parameters to features + * SAUCE: Input: wacom - collect device quirks into single function + * SAUCE: Input: wacom - add support for the Bamboo Touch trackpad + * SAUCE: Input: wacom - add a quirk for low resolution Bamboo devices + * SAUCE: hid: ntrig: Remove unused device ids + * SAUCE: hid: ntrig: remove sysfs nodes + * SAUCE: hid: ntrig: Correct logic for quirks + * SAUCE: hid: ntrig: zero-initialize ntrig struct + * SAUCE: hid: ntrig: Setup input filtering manually + * SAUCE: hid: ntrig: New ghost-filtering event logic + + [ Leann Ogasawara ] + + * SAUCE: ndiswrapper: Initialize buffer index and check its value + - LP: #613796 + + [ Manoj Iyer ] + + * SAUCE: Add support for Intellimouse Mode in ALPS touchpad on Dell E2 + series Laptops + - LP: #632884 + + [ Ping Cheng ] + + * SAUCE: Input: wacom - parse the Bamboo device family + + [ Rafi Rubin ] + + * SAUCE: hid: ntrig: identify firmware version (wiggled) + + [ Tim Gardner ] + + * [Config] CONFIG_NL80211_TESTMODE=n + + [ Upstream Kernel Changes ] + + * Revert "input: mt: Add support for the Bamboo Touch trackpad" + * e1000e: initial support for 82579 LOMs + * e1000e: correct MAC-PHY interconnect register offset for 82579 + * (pre-stable) ALSA: hda - Add a new hp-laptop model for Conexant 5066, + tested on HP G60 + - LP: #587388 + * DSS2: Don't power off a panel twice + - LP: #588243 + * mmc: build fix: mmc_pm_notify is only available with CONFIG_PM=y + * Input: i8042 - reset keyboard controller wehen resuming from S2R + - LP: #86820 + * ALSA: hda - Fix beep frequency on IDT 92HD73xx and 92HD71Bxx codecs + - LP: #414795 + * agp/intel: Support the extended physical addressing bits on + Sandybridge. + - LP: #632488 + * drm/i915,intel_agp: Add support for Sandybridge D0 + - LP: #632488 + * (pre-stable) intel_agp,i915: Add more sandybridge graphics device ids + - LP: #632488 + * mmc: omap: fix for bus width which improves SD card's peformance. + + -- Leann Ogasawara Tue, 07 Sep 2010 09:58:52 -0700 + +linux (2.6.35-20.29) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: i915 KMS -- support disabling KMS for known broken devices + - LP: #563277 + * SAUCE: i915 KMS -- blacklist i830 + - LP: #542208, #563277 + * SAUCE: i915 KMS -- blacklist i845g + - LP: #541492, #563277 + * SAUCE: i915 KMS -- blacklist i855 + - LP: #511001, #541511, #563277 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_SENSORS_PKGTEMP=m + - LP: #601073 + * ARM: Temporarily disable module check for armel + * rebase to v2.6.35.4 + * [Config] update configs following rebase to v2.6.35.4 + + [ Ricardo Salveti de Araujo ] + + * [Config] Change CONFIG_LEDS_TRIGGER_HEARTBEAT from module to built-in + in Omap + + [ Tim Gardner ] + + * [Config] Added be2net, be2scsi to udebs + - LP: #628776 + + [ Upstream Kernel Changes ] + + * x86, cpu: Package Level Thermal Control, Power Limit Notification + definitions + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: pkgtemp hwmon driver + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: thermal throttling handler + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: power limit + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: pkgtemp documentation + - LP: #601073 + * hid: 3m: Adjust to sequential MT HID protocol + * hid: 3m: Convert to MT slots + * hid: 3m: Correct touchscreen emulation + * hid: 3m: Adjust major / minor axes to scale + * input: bcm5974: Adjust major / minor to scale + * HID: magicmouse: don't allow hidinput to initialize the device + * HID: magicmouse: simplify multitouch feature request + * HID: magicmouse: simplify touch data bit manipulation + * HID: magicmouse: simplify touch down logic + * HID: magicmouse: remove timestamp logic + * HID: magicmouse: enable Magic Trackpad support + * HID: magicmouse: Adjust major / minor axes to scale + * mmc: fix all hangs related to mmc/sd card insert/removal during + suspend/resume + - LP: #477106 + * drm/i915: fix VGA plane disable for Ironlake+ + - LP: #602281 + + -- Leann Ogasawara Mon, 30 Aug 2010 08:38:01 -0700 + +linux (2.6.35-19.28) maverick; urgency=low + + [ Leann Ogasawara ] + + * No changes from 2.6.35-19.27. Some armel udebs were accidentally deleted + from the archive and a no-change rebuild was attempted. However, the ABI + did not get bumped and resulted in build failures for 2.6.35-19.27. Fix + up the ABI and re-upload. + + -- Leann Ogasawara Sat, 28 Aug 2010 16:42:27 -0700 + +linux (2.6.35-19.27) maverick; urgency=low + + [ Leann Ogasawara ] + + * No changes from 2.6.35-19.26. Some armel udebs were accidentally deleted + from the archive. + + -- Leann Ogasawara Fri, 27 Aug 2010 08:58:35 -0700 + +linux (2.6.35-19.26) maverick; urgency=low + + [ Upstream Kernel Changes ] + + * ARM: OMAP: Beagle: revision detection + * ARM: OMAP: Beagle: only Cx boards use pin 23 for write protect + * ARM: OMAP: Beagle: no gpio_wp pin connection on xM + + -- Leann Ogasawara Thu, 26 Aug 2010 09:15:09 -0700 + +linux (2.6.35-19.25) maverick; urgency=low + + [ Jarod Wilson ] + + * SAUCE: Bring in staging/lirc from 2.6.36 + - LP: #609234 + * SAUCE: Update ir-core to linuxtv/other which should be merged for + 2.6.36. + - LP: #609234 + * SAUCE: Fix memleaks in imon and mceusb drivers + - LP: #609234 + * SAUCE: Bring in streamzap support from linuxtv/other + - LP: #609234 + + [ Mario Limonciello ] + + * Remove ubuntu/lirc in favor of staging/lirc from 2.6.36 + - LP: #609234 + + [ Mathieu J. Poirier ] + + * SAUCE: ARM: adding i2c eeprom driver to read EDID + - LP: #608279 + + [ Upstream Kernel Changes ] + + * intel_idle: disable module support + - LP: #615265 + * (pre-stable) ALSA: hda - Ensure codec patch files are checked for the + correct codec ID + * (pre-stable) ALSA: hda - Rename iMic to Int Mic on Lenovo NB0763 + - LP: #605101 + * (pre-stable) ALSA: HDA: Use model=auto for LG R510 + - LP: #495134 + * (pre-stable) ALSA: HDA: Add Sony VAIO quirk for ALC269 + - LP: #519066 + * (pre-stable) ALSA: HDA: Fix front mic on Dell Precision M6500 + - LP: #519066 + * input: mt: Initialize slots to unused (rev2) + * input: mt: Add support for the Bamboo Touch trackpad + * hid: Add a hid quirk for input sync override + + -- Leann Ogasawara Mon, 23 Aug 2010 12:42:52 -0700 + +linux (2.6.35-18.24) maverick; urgency=low + + [ Colin Watson ] + + * Pass DEB_MAINT_PARAMS to hook scripts + + [ Leann Ogasawara ] + + * [Config] Add CONFIG_INPUT_UINPUT=y to config enforcer + - LP: #584812 + * rebase to v2.6.35.3 + + [ Upstream Kernel Changes ] + + * (pre-stable) dell-wmi: Add support for eject key on Dell Studio 1555 + - LP: #609234 + * can: add limit for nframes and clean up signed/unsigned variables + - CVE-2010-2959 + * drm: Initialize ioctl struct when no user data is present + - CVE-2010-2803 + * ARM: initial stack protector (-fstack-protector) support + * ARM: stack protector: change the canary value per task + * [ARM] implement arch_randomize_brk() + * [ARM] add address randomization to mmap() + * ARM: fix ASLR of PIE executables + + -- Leann Ogasawara Sun, 22 Aug 2010 19:22:04 -0700 + +linux (2.6.35-17.23) maverick; urgency=low + + [ Jeremy Kerr ] + + * [Config] build-in uinput module + - LP: #584812 + + [ Leann Ogasawara ] + + * Revert "[Config] [FTBS] ia64: Temporarily disable CONFIG_CEPH_FS" + * Revert "[Config] [FTBS] ia64: Temporarily disable gpiolib" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_MTD_NAND_DENALI" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_MFD_JANZ_CMODIO" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_INFINIBAND_QIB" + * [Config] Enable INTEL_IPS + - LP: #601057 + * Remove ia64 support + * [Config] Update portsconfigs after removing ia64 support + * Remove sparc support + * [Config] Update portsconfigs after removing sparc support + + [ Linus Torvalds ] + + * (pre-stable) mm: fix page table unmap for stack guard page properly + + [ Mathieu J. Poirier ] + + * SAUCE: (no-up) ARM: Resetting power_mode to its original value. + - LP: #591941 + + [ Upstream Kernel Changes ] + + * timer: add on-stack deferrable timer interfaces + - LP: #601057 + * x86 platform driver: intelligent power sharing driver + - LP: #601057 + * IPS driver: add GPU busy and turbo checking + - LP: #601057 + * X86: intel_ips, check for kzalloc properly + - LP: #601057 + * ips driver: make it less chatty + - LP: #601057 + + -- Leann Ogasawara Tue, 17 Aug 2010 09:38:08 -0700 + +linux (2.6.35-16.22) maverick; urgency=low + + [ Andy Whitcroft ] + + * debian -- more agressivly clean up after depmod on purge + - LP: #618591 + + [ Henrik Rydberg ] + + * SAUCE: hid: 3m: Simplify touchsreen emulation logic + + [ Leann Ogasawara ] + + * ubuntu: iscsitarget -- version 1.4.20.2 + * ubuntu: rtl8192se -- update to version 0017.0507.2010 + * rebase to v2.6.35.2 + * [Config] update configs following rebase to v2.6.35.2 + * [Config] update ports configs following rebase to v2.6.35.2 + + [ Luke Yelavich ] + + * [Config] Enable new firewire stack on powerpc + + [ Mathieu J. Poirier ] + + * SAUCE: (drop after 2.6.35) ARM: Using gpmc function to init nand flash. + - LP: #608266 + + -- Leann Ogasawara Thu, 12 Aug 2010 09:58:01 -0700 + +linux (2.6.35-15.21) maverick; urgency=low + + [ Luke Yelavich ] + + * [Config] CONFIG_SND_USB_UA101=m for all architectures + + [ Upstream Kernel Changes ] + + * Input: introduce MT event slots + * Input: document the MT event slot protocol + * (pre-stable) sched: Revert nohz_ratelimit() for now + * (pre-stable) drm/radeon/kms: add missing copy from user + - LP: #606081 + + [ Leann Ogasawara ] + + * rebase to v2.6.35.1 + + -- Leann Ogasawara Mon, 09 Aug 2010 09:24:04 -0700 + +linux (2.6.35-14.20) maverick; urgency=low + + [ Andy Whitcroft ] + + * update Vcs-Git to point to maverick repo + * debian -- include the debian packaging in the -source package + - LP: #608674 + * select debian source format 1.0 + * add support for building selected stages of kernel + - LP: #603087 + * cleanup conditional dependancy handling + - LP: #603087 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Handle missing NID 0x1b on ALC259 codec + - LP: #582199, #586418, #588031 + * ALSA: hda - Handle pin NID 0x1a on ALC259/269 + - LP: #582199, #586418, #588031 + * sched: Revert nohz_ratelimit() for now + + -- Leann Ogasawara Tue, 03 Aug 2010 08:46:47 -0700 + +linux (2.6.35-14.19) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.35 + + -- Leann Ogasawara Sun, 01 Aug 2010 10:35:56 -0700 + +linux (2.6.35-13.18) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: (no-up) Modularize vesafb -- fix initialisation + * SAUCE: add tracing for user initiated readahead requests + * SAUCE: vt -- maintain bootloader screen mode and content until vt + switch + * SAUCE: vt -- allow grub to request automatic vt_handoff + * SAUCE: fbcon -- fix race between open and removal of framebuffers + * SAUCE: drm -- stop early access to drm devices + + [ Bryan Wu ] + + * CONFIG: compile in OTG driver and Transceiver driver + - LP: #566645 + * remove OTG modules from modules list file + + [ John Johansen ] + + * SAUCE: AppArmor: -- sync to AppArmor mainline 2010-07-27 + - LP: #581525, #599450 + * SAUCE: AppArmor: -- sync to AppArmor mainline 2010-07-29 + * SAUCE: AppArmor 2.4 compatibility patch + * SAUCE: AppArmor: Allow dfa backward compatibility with broken userspace + * SAUCE: fix pv-ops for legacy Xen + * SAUCE: blkfront: default to sd devices + * [Config] Build in drivers required for Xen pv-ops + + [ Leann Ogasawara ] + + * Revert "[Upstream] i915: Use the correct mask to detect i830 aperture + size." + + [ Lee Jones ] + + * SAUCE: ARM: OMAP: Add macros for comparing silicon revision + - LP: #608095 + * SAUCE: OMAP: DSS2: check for both cpu type and revision, rather than + just revision + - LP: #608095 + * SAUCE: OMAP: DSS2: enable hsclk in dsi_pll_init for OMAP36XX + - LP: #608095 + * SAUCE: ARM: OMAP: Beagle: support twl gpio differences on xM + - LP: #608095 + + [ Upstream Kernel Changes ] + + * agp/intel: Use the correct mask to detect i830 aperture size. + - LP: #597075 + + -- Leann Ogasawara Fri, 30 Jul 2010 15:46:59 -0700 + +linux (2.6.35-12.17) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc6 + * [Config] update configs following rebase to v2.6.35-rc6 + * [Config] update ports configs following rebase to v2.6.35-rc6 + * SAUCE: [FTBS] armel: define KEY_F10 and KEYF11 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc6 + + -- Leann Ogasawara Fri, 23 Jul 2010 16:16:38 +0200 + +linux (2.6.35-11.16) maverick; urgency=low + + [ Leann Ogasawara ] + + * Bump ABI for new compiler update + + -- Leann Ogasawara Fri, 23 Jul 2010 10:24:58 +0200 + +linux (2.6.35-10.15) maverick; urgency=low + + [ Leann Ogasawara ] + + * Revert "SAUCE: ensure vga16fb loads if no other driver claims the VGA + device" + * [Config] Enable CONFIG_M686=y + - LP: #592495 + + [ Upstream Kernel Changes ] + + * tracing: Add alignment to syscall metadata declarations + + -- Leann Ogasawara Tue, 20 Jul 2010 18:18:49 +0200 + +linux (2.6.35-9.14) maverick; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- add BOM and automated update script + * ubuntu: AUFS -- update to b37c575759dc4535ccc03241c584ad5fe69e3b25 + + [ John Johansen ] + + * [Config] Enable DRBD as a module + + [ Kees Cook ] + + * SAUCE: Yama: verify inode is symlink to avoid bind mounts + - LP: #604407 + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_DRM_VMWGFX (staging driver) + - LP: #606139 + * [Config] ports: Disable CONFIG_DRM_VMWGFX (staging driver) + - LP: #606139 + * [Config] Enable CONFIG_DEBUG_STRICT_USER_COPY_CHECKS=y + * [Config] ports: Enable CONFIG_DEBUG_STRICT_USER_COPY_CHECKS=y + + [ Lee Jones ] + + * Stop ARM boards crashing when CUPS is loaded + - LP: #601226 + + [ Upstream Kernel Changes ] + + * perf probe: Support tracing an entry of array + * perf probe: Support static and global variables + + -- Leann Ogasawara Fri, 16 Jul 2010 14:38:17 -0700 + +linux (2.6.35-8.13) maverick; urgency=low + + [ Kees Cook ] + + * SAUCE: Yama: check PTRACE using thread group leader + * SAUCE: Yama: search for PTRACE exceptions via thread group leader + - LP: #603716 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc5 + * [Config] update configs following rebase to v2.6.35-rc5 + + [ Nicolas Pitre ] + + * SAUCE: make ndiswrapper available on X86 only + + [ Tim Gardner ] + + * [Config] Added ums-cypress to udeb + - LP: #576066 + * SAUCE: fix build error with CONFIG_BLK_DEV_INITRD=n + * [Config] CONFIG_NDISWRAPPER=m across all configs + + [ Upstream Kernel Changes ] + + * HID: magicmouse: report last touch up + * rebase to 2.6.35-rc5 + + -- Leann Ogasawara Tue, 13 Jul 2010 18:57:59 -0700 + +linux (2.6.35-7.12) maverick; urgency=low + + [ Tim Gardner ] + + * [Upstream] i915: Use the correct mask to detect i830 aperture size. + - LP: #597075 + + [ Upstream Kernel Changes ] + + * (drop after 2.6.35) drm/radeon/kms: add ioport register access + (squashed) + + -- Tim Gardner Thu, 08 Jul 2010 09:53:13 -0600 + +linux (2.6.35-7.11) maverick; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_X86_MRST=n + + [ Upstream Kernel Changes ] + + * (drop after 2.6.35-rc5) writeback: remove writeback_inodes_wbc + * (drop after 2.6.35-rc5) writeback: split writeback_inodes_wb + * (drop after 2.6.35-rc5) writeback: simplify the write back thread queue + + -- Tim Gardner Tue, 06 Jul 2010 18:39:08 -0600 + +linux (2.6.35-7.10) maverick; urgency=low + + [ Kees Cook ] + + * SAUCE: security: create task_free security callback + * SAUCE: Yama: add PTRACE exception tracking and interface + * SAUCE: security: unconditionally chain to Yama LSM + * Revert "SAUCE: ptrace: restrict ptrace scope to children" + * Revert "SAUCE: fs: block hardlinks to non-accessible sources" + * Revert "SAUCE: fs: block cross-uid sticky symlinks" + * [Upstream] security: Yama LSM + * [Config] Enable CONFIG_SECURITY_YAMA=y + + [ Tim Gardner ] + + * [Config] updateconfigs/updateportsconfigs after rebase to 2.6.35-rc4 + + [ Upstream Kernel Changes ] + + * rebase to 2.6.35-rc4 + + -- Leann Ogasawara Thu, 01 Jul 2010 08:55:57 -0700 + +linux (2.6.35-6.9) maverick; urgency=low + + [ Tim Gardner ] + + * [Upstream] direct_splice_actor() should not use pos in sd + - LP: #588861 + + -- Leann Ogasawara Mon, 28 Jun 2010 12:35:49 -0700 + +linux (2.6.35-6.8) maverick; urgency=low + + [ Mathieu J. Poirier ] + + * ARM: Adding regulator supply for vdds_sdi. + - LP: #597904 + + -- Leann Ogasawara Sun, 27 Jun 2010 16:34:43 -0700 + +linux (2.6.35-6.7) maverick; urgency=low + + [ Alberto Milone ] + + * [Upstream] Add support for the ATIF ACPI method to the radeon driver + + [ Chase Douglas ] + + * [Upstream] HID: magicmouse: scroll on entire surface, not just middle + of mouse + * [Upstream] HID: magicmouse: disable and add module param for scroll + acceleration + * [Upstream] HID: magicmouse: properly account for scroll movement in + state + * [Upstream] HID: magicmouse: add param for scroll speed + * [Upstream] HID: magicmouse: enable horizontal scrolling + + [ Henrik Rydberg ] + + * [Upstream] Input: evdev - convert to dynamic event buffer + * [Upstream] Input: evdev - use driver hint to compute size of event + buffer + * [Upstream] Input: bcm5974 - set the average number of events per MT + event packet + * [Upstream] Input: hid-input - use a larger event buffer for MT devices + * [Upstream] Input: evdev - never leave the client buffer empty after + write + + [ John Johansen ] + + * SAUCE: AppArmor: -- mainline 2010-06-23 + * SAUCE: AppArmor 2.4 compatibility patch + * SAUCE: fs: block hardlinks to non-accessible sources AppArmor portion + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_INTR_REMAP=y + - LP: #597091 + * [Config] Enable CONFIG_X86_X2APIC + - LP: #597091 + + [ Mathieu J. Poirier ] + + * [Config] ARM: Turning off CONFIG_CPU_IDLE on omap + - LP: #594382 + + -- Leann Ogasawara Thu, 24 Jun 2010 12:19:48 -0700 + +linux (2.6.35-5.6) maverick; urgency=low + + [ Amit Kucheria ] + + * [Config] update omap flavour description + + [ Andy Whitcroft ] + + * update to ubuntu-debian:508b7aa34b578c0d1e51bfb571f2bfb824dc65ac + - LP: #570500, #576274 + * SAUCE: add option to hand off all kernel parameters to init + - LP: #586386 + * [Config] enable passing all kernel command line to init + - LP: #586386 + * [Config] disable CONFIG_VMI + - LP: #537601 + * [Config] enable CONFIG_IPV6_SIT_6RD + - LP: #591869 + * [Config] enable CONFIG_VMWARE_BALOON as module + - LP: #592039 + + [ Leann Ogasawara ] + + * Revert "SAUCE: pm: Config option to disable handling of console during + suspend/resume" + - LP: #594885 + * [Config] Remove CONFIG_PM_DISABLE_CONSOLE + * [Config] ports: enable passing all kernel command line to init + - LP: #586386 + * [Config] Enable CONFIG_FB_VESA=y for x86 + * [Config] Add CONFIG_FRAMEBUFFER_CONSOLE=y to config enforcer + * [Config] Add CONFIG_FB_VESA=y for x86 to config enforcer + * [Config] Enable CONFIG_TASK_DELAY_ACCT=y + - LP: #493156 + + [ Mathieu Poirier ] + + * ARM: Adding MosChip MCS7830 to nic-usb + - LP: #584920 + + [ Upstream Kernel Changes ] + + * Revert "[Upstream] docbook: need xmldoclinks for all doc types" + * docbook: need xmldoclinks for all doc types + * perf probe: Add kernel source path option + + -- Leann Ogasawara Thu, 17 Jun 2010 08:05:29 -0700 + +linux (2.6.35-4.5) maverick; urgency=low + + [ Leann Ogasawara ] + + * Revert "[Upstream] (evdev) Use driver hint to compute the evdev buffer + size (rev2)" + * Revert "[Upstream] (evdev) Convert to dynamic event buffer (rev4)" + * Revert "[Upstream] (evdev) Use multi-reader buffer to save space + (rev4)" + * Revert "SAUCE: drivers: Remove some duplicate device entries in various + modules" + * [Upstream] USB: option: Remove duplicate AMOI_VENDOR_ID + * [Upstream] Revert "USB: Adding support for HTC Smartphones to ipaq" + * [Upstream] p54usb: Comment out duplicate Medion MD40900 device id + + [ Tim Gardner ] + + * [Config] CONFIG_NFS_FSCACHE=y + - LP: #440522 + * [Config] CONFIG_FSCACHE_STATS=y, CONFIG_FSCACHE_HISTOGRAM=y + - LP: #440522 + + -- Leann Ogasawara Wed, 16 Jun 2010 08:43:07 -0700 + +linux (2.6.35-3.4) maverick; urgency=low + + [ Andy Whitcroft ] + + * debian -- ensure the version number is clean + + [ Henrik Rydberg ] + + * [Upstream] Introduce MT event slots (rev 5) + * [Upstream] Document the MT event slot protocol (rev5) + * [Upstream] (evdev) Use multi-reader buffer to save space (rev4) + * [Upstream] (evdev) Convert to dynamic event buffer (rev4) + * [Upstream] (evdev) Use driver hint to compute the evdev buffer size + (rev2) + + [ Leann Ogasawara ] + + * Revert "SAUCE: Add MODULE_ALIAS for Dell WMI module" + * Revert "SAUCE: hostap: send events on data interface as well as master + interface" + * Revert "Fix webcam having USB ID 0ac8:303b" + * Revert "SAUCE: toshiba_acpi -- pull in current -dev version of driver" + * rebase to v2.6.35-rc3 + + [ Maxim Levitsky ] + + * [Config] Enable new Smartmedia/xD translation layer + - LP: #202490 + + [ Upstream Kernel Changes ] + + * net: fix deliver_no_wcard regression on loopback device + + [ Upstream changes ] + + * rebased to v2.6.35-rc3 + + -- Leann Ogasawara Thu, 10 Jun 2010 16:15:22 -0700 + +linux (2.6.35-2.3) maverick; urgency=low + + [ Bryan Wu ] + + * CONFIG: enforce -- make sure we disable CONFIG_LOCALVERSION_AUTO + + [ Leann Ogasawara ] + + * [Config] armel: Enable CONFIG_BNX2=m + * [Config] ports: Enable CONFIG_BNX2X=m + * SAUCE: armel: define get_dma_ops to fix FTBS + + [ Tim Gardner ] + + * [Upstream] net: Print num_rx_queues imbalance warning only when there + are allocated queues + - LP: #591416 + + -- Leann Ogasawara Wed, 09 Jun 2010 08:27:41 -0700 + +linux (2.6.35-2.2) maverick; urgency=low + + [ Andy Whitcroft ] + + * [Config] d-i: make armel configuration versatile flavour specific + - LP: #588805 + * [Config] d-i: enable .udebs for omap flavour + - LP: #588805 + + [ Kees Cook ] + + * ptrace: limit scope to attach only (allow read) + - LP: #589656 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc2 + * [Config] update configs following rebase to v2.6.35-rc2 + * [Config] update port configs following rebase to v2.6.35-rc2 + + [ Lee Jones ] + + * Enable perf to be more helpful when perf_ does not exist. + - LP: #570500 + * 'fdr editconfig' modification. Easily skip over unwanted menuconfigs. + + [ Tim Gardner ] + + * [Config] Update bnx2 udeb firmware files + - LP: #589304 + + [ Upstream changes ] + + * rebased to v2.6.35-rc2 + + -- Leann Ogasawara Mon, 07 Jun 2010 09:45:04 -0700 + +linux (2.6.35-1.1) maverick; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to standalone 2.6.35-rcN as at 20100601 + - LP: #587888 + * ubuntu: AUFS -- track changes to the arguements to fop fsync() + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc1 + * [Config] update configs following rebase to v2.6.35-rc1 + * [Config] update port configs following rebase to v2.6.35-rc1 + * SAUCE: lirc: rename usb_buffer_alloc() and usb_buffer_free() + * SAUCE: ndiswrapper: rename usb_buffer_alloc() and usb_buffer_free() + * SAUCE: ndiswrapper: convert multicast list to list_head + * [Config] [FTBS] armel: Temporarily disable CONFIG_GPIO_JANZ_TTL + * [Config] [FTBS] ia64: Temporarily disable gpiolib + * [Config] [FTBS] ia64: Temporarily disable CONFIG_CEPH_FS + * [Config] [FTBS] sparc: Temporarily disable CONFIG_INFINIBAND_QIB + * [Config] [FTBS] sparc: Temporarily disable CONFIG_MFD_JANZ_CMODIO + * [Config] [FTBS] armel: Temporarily disable CONFIG_MFD_JANZ_CMODIO + * [Config] [FTBS] armel: Temporarily disable CONFIG_DT3155 + * [Config] [FTBS] sparc: Temporarily disable CONFIG_MTD_NAND_DENALI + * [Config] [FTBS] armel: Temporarily disable bnx2 + * [Config] [FTBS] armel: Temporarily disable CONFIG_SERIAL_UARTLITE + * SAUCE: [FTBS] armel: Don't include asm/agp.h for ttm + * SAUCE: [FTBS] armel: include linux/dma-mapping.h + * SAUCE: [FTBS] armel: replace omap_set_gpio_debounce with + gpio_set_debounce + + [ Upstream Kernel Changes ] + + * of/usb: fix build error due to of_node pointer move + * n2_crypto: Fix build after of_device/of_platform_driver changes. + * powerpc/fsl-booke: fix the case where we are not in the first page + * powerpc/fsl-booke: Move the entry setup code into a seperate file + * powerpc/kexec: Add support for FSL-BookE + * greth: Fix build after OF device conversions. + + [ Upstream changes ] + + * rebased to v2.6.35-rc1 + + -- Leann Ogasawara Fri, 04 Jun 2010 23:01:52 -0700 + +linux (2.6.35-1.0) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Null entry. + + -- Leann Ogasawara Wed, 02 Jun 2010 15:17:41 -0700 + +linux (2.6.34-5.14) maverick; urgency=low + + [ Tim Gardner ] + + * [Config] Added module inclusion support + * [Config] Added virtual flavour module inclusion list and d-i package + definitions + + -- Leann Ogasawara Wed, 02 Jun 2010 12:58:14 -0700 + +linux (2.6.34-5.13) maverick; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2 20091209" + * Revert "ubuntu: AUFS -- export various core functions + (aufs2-standalone.patch)" + * Revert "ubuntu: AUFS -- export various core functions + (aufs2-base.patch)" + * ubuntu: AUFS -- aufs2 base patch for linux-2.6.34 + - LP: #587888 + * ubuntu: AUFS -- aufs2 standalone patch for linux-2.6.34 + - LP: #587888 + * ubuntu: AUFS -- update to standalone 2.6.34 as at 20100601 + - LP: #587888 + * [Config] AUFS -- enable aufs options + - LP: #587888 + + -- Leann Ogasawara Tue, 01 Jun 2010 08:56:43 -0700 + +linux (2.6.34-5.12) maverick; urgency=low + + [ Andy Whitcroft ] + + * enforce -- ensure SYSFS compatibility is disabled + + [ Chase Douglas ] + + * build with libdw-dev for perf probe symbol support + * maverick ftrace configuration changes + + [ Kees Cook ] + + * Revert "SAUCE: x86: brk away from exec rand area" + * Revert "SAUCE: [um] Don't use nx_enabled under UML" + * Revert "SAUCE: [x86] implement cs-limit nx-emulation for ia32" + * SAUCE: x86: implement cs-limit nx-emulation for ia32 + - LP: #369978 + * SAUCE: x86: more tightly confine cs-limit nx-emulation to ia32 only + * SAUCE: x86: brk away from exec rand area + - LP: #452175 + * SAUCE: ptrace: restrict ptrace scope to children + + [ Leann Ogasawara ] + + * Add new omap flavour to getabis + * [Config] Enable CONFIG_FRAMEBUFFER_CONSOLE=y for all archs + - LP: #585490 + * build/modules: Temorarily add ignore.modules + * ubuntu: iscsitarget -- version 1.4.20.1 + + [ Loïc Minier ] + + * SAUCE: [um] Don't use nx_enabled under UML + - LP: #524849 + + -- Leann Ogasawara Fri, 28 May 2010 08:27:17 -0700 + +linux (2.6.34-4.11) maverick; urgency=low + + [ Amit Kucheria ] + + * SAUCE: omap: remove calls to usb_nop_xceiv_register from board files + * [Config] Add support for OMAP-mainline flavour + + [ Andy Whitcroft ] + + * SAUCE: powerpc: fix compile error when ptrace.h is included from + userspace + - LP: #583733 + + [ Chase Douglas ] + + * Revert "SAUCE: Don't register vga16fb framebuffer if other framebuffers + are present" + * Revert "SAUCE: Disable function tracing after hitting __schedule_bug" + * Revert "SAUCE: drm/i915: don't change DRM configuration when releasing + load detect pipe" + + [ Kees Cook ] + + * SAUCE: fs: block cross-uid sticky symlinks + * SAUCE: fs: block hardlinks to non-accessible sources + + [ Koen Kooi ] + + * SAUCE: board-omap3-beagle: add DSS2 support + + [ Leann Ogasawara ] + + * Revert "staging/go7007 -- disable" + * Revert "[Config] staging/winbond -- disable" + * Revert "Disable 4MB page tables for Atom, work around errata AAE44" + * Revert "SAUCE: sync before umount to reduce time taken by ext4 umount" + * Revert "SAUCE: Enable an e1000e Intel Corporation 82567 Gigabit + controller" + * Revert "SAUCE: Fix MODULE_IMPORT/MODULE_EXPORT" + * Revert "SAUCE: Created MODULE_EXPORT/MODULE_IMPORT macros" + * Revert "SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps" + * Revert "SAUCE: r8169: disable TSO by default for RTL8111/8168B + chipsets." + * Revert "[Upstream] b43: Declare all possible firmware files." + * Revert "add Breaks: against hardy lvm2" + * Revert "SAUCE: Guest OS does not recognize a lun with non zero target + id on Vmware ESX Server" + * Revert "SAUCE: Catch nonsense keycodes and silently ignore" + * [Config] Enable CONFIG_ECRYPT_FS=y for ports + * [Config] Enable CONFIG_USB=y for armel and sparc + * [Config] Enable CONFIG_SCSI=y for ia64 and sparc + * [Config] Enable CONFIG_RFKILL=y for ports + * [Config] Enable CONFIG_ATH9K_DEBUGFS=y + * [Config] Enable CONFIG_IWMC3200TOP_DEBUGFS=y + * [Config] Enable CONFIG_RCU_FAST_NO_HZ=y + * [Config] Enable CONFIG_IWLWIFI_DEVICE_TRACING=y + * [Config] Enable CONFIG_LIBERTAS_MESH=y + * [Config] Enable CONFIG_MMC_RICOH_MMC=y + * [Config] CONFIG_RT2800USB_UNKNOWN=y + * [Config] Enable CONFIG_VGA_SWITCHEROO=y + * [Config] Enable CONFIG_CEPH_FS=m + * [Config] Enable CONFIG_CRYPTO_PCRYPT=m + * [Config] Enable CONFIG_EEEPC_WMI=m + * [Config] Enable CONFIG_RT2800PCI=m + * [Config] Enable CONFIG_SCSI_HPSA=m + * [Config] Enable CONFIG_VHOST_NET=m + * [Config] Disable CONFIG_SND_HDA_INPUT_BEEP_MODE by default + - LP: #582350 + * [Config] Disable CONFIG_SOUND_OSS* and CONFIG_SND_*OSS + - LP: #579300 + * [Config] Enable CONFIG_PCIEASPM=y + - LP: #333990 + * [Config] updateconfigs for OMAP flavour + + [ Loïc Minier ] + + * Enable perf tools on armel + + [ Tim Gardner ] + + * SAUCE: Updated ndiswrapper to 1.56 + - LP: #582555 + * [Config] Added virtual flavour + * [Config] Remove support for sub-flavours + * [Config] Removed amd64 preempt flavour + * [Config] updateconfigs, updateportsconfigs after flavour munging + + -- Leann Ogasawara Tue, 25 May 2010 09:34:55 -0700 + +linux (2.6.34-3.10) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34 + + [ Upstream changes ] + + * rebased to v2.6.34 + + -- Leann Ogasawara Tue, 18 May 2010 17:35:35 -0700 + +linux (2.6.34-2.9) maverick; urgency=low + + [ Leann Ogasawara ] + + * [Config] [FTBS] Disable comedi for armel + + -- Leann Ogasawara Thu, 13 May 2010 23:20:55 +0200 + +linux (2.6.34-2.8) maverick; urgency=low + + [ Leann Ogasawara ] + + * Drop lpia + * [Config] [FTBS] disable KVM + * [Config] [FTBS] disable ipr for armel + + -- Leann Ogasawara Thu, 13 May 2010 16:07:52 +0200 + +linux (2.6.34-2.7) maverick; urgency=low + + [ Leann Ogasawara ] + + * [Config] disable CONFIG_SCSI_IPR on powerpc + * [Config] Remove 386 flavour per UDS discussion + + -- Leann Ogasawara Wed, 12 May 2010 18:26:43 +0200 + +linux (2.6.34-1.6) maverick; urgency=low + + [ Chase Douglas ] + + * enforce CONFIG_TMPFS_POSIX_ACL=y + - LP: #575940 + * don't force module dependency checking + - LP: #577029 + + [ Kees Cook ] + + * SAUCE: mmap_min_addr check CAP_SYS_RAWIO only for write + - LP: #568844 + + [ Leann Ogasawara ] + + * Revert "SAUCE: ata: blacklist FUJITSU MHW2160BH PL" + * rebase to v2.6.34-rc7 + * [Config] update configs following rebase to v2.6.34-rc7 + * [Config] update port configs following rebase to v2.6.34-rc7 + * Add btrfs to the udebs + + [ Tim Gardner ] + + * [Config] Add atl1c to nic-modules udeb + - LP: #557130 + + [ Upstream changes ] + + * rebased to v2.6.34-rc7 + + -- Leann Ogasawara Tue, 11 May 2010 11:29:08 +0200 + +linux (2.6.34-1.5) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc6 + * [Config] update configs following rebase to v2.6.34-rc6 + * [Config] update port configs following rebase to v2.6.34-rc6 + + [ Upstream changes ] + + * rebased to v2.6.34-rc6 + + -- Leann Ogasawara Fri, 30 Apr 2010 15:54:05 +0100 + +linux (2.6.34-1.4) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc5 + * [Config] update ports configs following rebase to v2.6.34-rc5 + + [ Upstream changes ] + + * rebased to v2.6.34-rc5 + + -- Leann Ogasawara Thu, 22 Apr 2010 15:36:12 -0700 + +linux (2.6.34-1.3) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc4 + * [Config] update configs following rebase to v2.6.34-rc4 + * [Config] update port configs following rebase to v2.6.34-rc4 + * ubuntu: dm-raid4-5 -- update to compile with 2.6.34-rc4 + + [ Upstream changes ] + + * rebased to v2.6.34-rc4 + + -- Leann Ogasawara Tue, 13 Apr 2010 18:33:44 -0700 + +linux (2.6.34-1.2) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Temorarily disable building linux-doc + * rebase to v2.6.34-rc3 + * [Config] update configs following rebase to v2.6.34-rc3 + * [Config] update port configs following rebase to v2.6.34-rc3 + + [ Upstream changes ] + + * rebased to v2.6.34-rc3 + + -- Leann Ogasawara Tue, 30 Mar 2010 16:55:44 -0700 + +linux (2.6.34-1.1) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc2 + * ubuntu: dm-raid4-5 -- update to compile with 2.6.34-rc2 + * [Config] update port configs following rebase to v2.6.34-rc2 + * [Config] update configs following rebase to v2.6.34-rc2 + + [ Upstream changes ] + + * rebased to v2.6.34-rc2 + + -- Leann Ogasawara Wed, 24 Mar 2010 23:00:39 -0700 + +linux (2.6.33-1.1) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * ubuntu: dm-raid4-5 -- update to compile with 2.6.33 + * ubuntu: lirc -- drop explicit include of linux/autoconf.h + * ubuntu: lirc -- pass kfifo to kfifo_alloc and move spinlock + * ubuntu: lirc -- rename kfifo_put and kfifo_get + * ubuntu: iscsitarget -- rename daddr inet_sock field + * rebased to v2.6.33 + * [Config] update configs following rebase to v2.6.33 + * [Config] update ports configs following rebase to v2.6.33 + + [ Upstream changes ] + + * rebased to v2.6.33 + + -- Leann Ogasawara Tue, 23 Mar 2010 03:55:46 -0700 + +linux (2.6.33-0.0) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Null entry. + + -- Leann Ogasawara Wed, 17 Mar 2010 07:48:56 -0700 + +linux (2.6.32-16.25) lucid; urgency=low + + [ Andy Whitcroft ] + + * linux-tools -- move to Suggests: with explicit seeding + - LP: #534635 + + [ Tim Gardner ] + + * [Config] CONFIG_HID=m + + [ Upstream Kernel Changes ] + + * (pre-stable) sched: Fix SMT scheduler regression in + find_busiest_queue() + * KVM: introduce kvm_vcpu_on_spin + * KVM: VMX: Add support for Pause-Loop Exiting + + -- Andy Whitcroft Tue, 09 Mar 2010 14:13:51 +0000 + +linux (2.6.32-16.24) lucid; urgency=low + + [ Andy Whitcroft ] + + * armel -- perf userspace does not support arm + * ia64 -- libelf-dev/binutils-dev to not provide necessary libraries + + -- Andy Whitcroft Sat, 06 Mar 2010 11:42:12 +0000 + +linux (2.6.32-16.23) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: PM report driver and device suspend/resume times -- move config + * update to standards version 3.8.4.0 + * printenv -- expose all of the package selectors + * source package -- cleanup source content control + * doc package -- ensure we do build package content on buildd + * lintian -- correct the address in the debian/copyright + * lintian -- update debhelper package version dependancy + * lintian -- fix ghostscript dependancy + * lintian -- add required misc:Depends + * lintian -- move our debhelper compat level to debian/compat + * perf -- build the kernel carried tools + * perf -- add linux-tools carrying the version switches and manuals + * SAUCE: fix up Kconfig for staging drivers + * [Config] enable NOUVEAU etc following drm backport + * update DRM to mainline v2.6.33 + * [Config] Remove AppArmor config options that no longer exist (ports) + * [Config] updateportsconfigs following drm update + + [ John Johansen ] + + * ubuntu: AppArmor -- update to mainline 2010-03-04 + * SAUCE: AppArmor: Reintroduce AppArmor 2.4 compatibility + * SAUCE: AppArmor: replace strim with strstrip for 2.6.32 kernels + * [Config] Remove AppArmor config options that no longer exist + + [ Manoj Iyer ] + + * ubuntu: rtl8192se -- version 2010-0115,0014 + - LP: #530275 + * [Config] added CONFIG_RTL8192SE module. + - LP: #530275 + + [ Tim Gardner ] + + * [Config] Added vmw_pvscsi to d-i/scsi-modules + - LP: #531017 + * [Upstream] netfilter: xt_recent: Add an entry reaper + + [ Upstream Kernel Changes ] + + * Revert "KVM: x86 emulator: Check CPL level during privilege instruction + emulation" + * Revert "KVM: x86 emulator: Fix popf emulation" + * Revert "KVM: x86 emulator: Check IOPL level during io instruction + emulation" + * Revert "KVM: x86 emulator: Add Virtual-8086 mode of emulation" + * Revert "KVM: fix memory access during x86 emulation." + * Add vlan (8021.Q) module package for d-i. + * (pre-stable) drm/i915: blacklist lid status: Sony VGN-BX196VP, Dell + Inspiron 700m + - LP: #515246 + * [Upstream] docbook: need xmldoclinks for all doc types + * x86: set_personality_ia32() misses force_personality32 + * lib: Introduce generic list_sort function + * drm/nv50: Implement ctxprog/state generation. + * drm/nv50: Remove redundant/incorrect ctxvals initialisation. + * (pre-stable) drm/i915: blacklist lid status: Sony VGN-BX196VP, Dell + Inspiron 700m + - LP: #515246 + + -- Andy Whitcroft Fri, 05 Mar 2010 15:40:38 +0000 + +linux (2.6.32-15.22) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] added new config option CONFIG_SR_REPORT_TIME_LIMIT" + * Revert "SAUCE: PM report driver and device suspend/resume times." + * [Config] set CONFIG_SR_REPORT_TIME_LIMIT + + [ Manoj Iyer ] + + * SAUCE: PM report driver and device suspend/resume times. + + -- Andy Whitcroft Tue, 02 Mar 2010 01:35:37 +0000 + +linux (2.6.32-15.21) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "(pre-stable) drm/i915: Increase fb alignment to 64k" + * Revert "[Config] lenovo-sl-laptop -- enable" + * Revert "ubuntu: lenovo-sl-laptop -- git tip (b19a08f81f)" + * armel -- cramfs module will no longer be built + * d-i -- make all modules optional + * rename the debug packages to match archive standard + - LP: #527837 + * lenovo-sl-laptop is no longer built + + [ Colin Ian King ] + + * Disable 4MB page tables for Atom, work around errata AAE44 + - LP: #523112 + + [ Colin Watson ] + + * ubuntu: dm-raid4-5: Depend on XOR_BLOCKS + * ubuntu: fsam7400: Depend on CHECK_SIGNATURE + + [ Jesse Barnes ] + + * SAUCE: drm/i915: don't change DRM configuration when releasing load + detect pipe + - LP: #488328 + + [ Loïc Minier ] + + * [Config] armel Update versatile initrd configs + - LP: #524893 + * SAUCE: [um] Don't use nx_enabled under UML + - LP: #524849 + + [ Manoj Iyer ] + + * [Config] added new config option CONFIG_SR_REPORT_TIME_LIMIT + + [ Mario Limonciello ] + + * SAUCE: v3 - Add Dell Business Class Netbook LED driver + + [ Rafael J. Wysocki ] + + * SAUCE: PM report driver and device suspend/resume times. + + [ Surbhi Palande ] + + * Revert "[Upstream] e1000e: enhance frame fragment detection" + - CVE-2009-4538 + * Revert "[Upstream] e1000: enhance frame fragment detection" + - CVE-2009-4536 + + [ Tim Gardner ] + + * [Config] Enabled CONFIG_LEDS_DELL_NETBOOKS=m + * SAUCE: (pre-stable) netfilter: xt_recent: fix buffer overflow + * SAUCE: (pre-stable) netfilter: xt_recent: fix false match + + [ Upstream Kernel Changes ] + + * Revert "(pre-stable) eCryptfs: Add getattr function" + * Fix potential crash with sys_move_pages + * futex_lock_pi() key refcnt fix + * futex: Handle user space corruption gracefully + * futex: Handle futex value corruption gracefully + * Fix race in tty_fasync() properly + * hwmon: (w83781d) Request I/O ports individually for probing + * hwmon: (lm78) Request I/O ports individually for probing + * hwmon: (adt7462) Wrong ADT7462_VOLT_COUNT + * ALSA: ctxfi - fix PTP address initialization + * drm/i915: disable hotplug detect before Ironlake CRT detect + * drm/i915: enable self-refresh on 965 + * drm/i915: Disable SR when more than one pipe is enabled + * drm/i915: Fix DDC on some systems by clearing BIOS GMBUS setup. + * drm/i915: Add HP nx9020/SamsungSX20S to ACPI LID quirk list + * drm/i915: Fix the incorrect DMI string for Samsung SX20S laptop + * drm/i915: Add MALATA PC-81005 to ACPI LID quirk list + * usb: r8a66597-hcd: Flush the D-cache for the pipe-in transfer buffers. + * i2c-tiny-usb: Fix on big-endian systems + * drm/i915: handle FBC and self-refresh better + * drm/i915: Increase fb alignment to 64k + * drm/i915: Update write_domains on active list after flush. + * regulator: Fix display of null constraints for regulators + * ALSA: hda-intel: Avoid divide by zero crash + * CPUFREQ: Fix use after free of struct powernow_k8_data + * freeze_bdev: don't deactivate successfully frozen MS_RDONLY sb + * cciss: Make cciss_seq_show handle holes in the h->drv[] array + * ioat: fix infinite timeout checking in ioat2_quiesce + * resource: add helpers for fetching rlimits + * fs/exec.c: restrict initial stack space expansion to rlimit + * cifs: fix length calculation for converted unicode readdir names + * NFS: Fix a reference leak in nfs_wb_cancel_page() + * NFS: Try to commit unstable writes in nfs_release_page() + * NFSv4: Don't allow posix locking against servers that don't support it + * NFSv4: Ensure that the NFSv4 locking can recover from stateid errors + * NFS: Fix an Oops when truncating a file + * NFS: Fix a umount race + * NFS: Fix a bug in nfs_fscache_release_page() + * NFS: Fix the mapping of the NFSERR_SERVERFAULT error + * md: fix 'degraded' calculation when starting a reshape. + * V4L/DVB: dvb-core: fix initialization of feeds list in demux filter + * Export the symbol of getboottime and mmonotonic_to_bootbased + * kvmclock: count total_sleep_time when updating guest clock + * KVM: PIT: control word is write-only + * tpm_infineon: fix suspend/resume handler for pnp_driver + * amd64_edac: Do not falsely trigger kerneloops + * netfilter: nf_conntrack: fix memory corruption with multiple namespaces + * netfilter: nf_conntrack: per netns nf_conntrack_cachep + * netfilter: nf_conntrack: restrict runtime expect hashsize modifications + * netfilter: xtables: compat out of scope fix + * netfilter: nf_conntrack: fix hash resizing with namespaces + * drm/i915: remove full registers dump debug + * drm/i915: add i915_lp_ring_sync helper + * drm/i915: Don't wait interruptible for possible plane buffer flush + * dasd: remove strings from s390dbf + * crypto: padlock-sha - Add import/export support + * wmi: Free the allocated acpi objects through wmi_get_event_data + * dell-wmi, hp-wmi, msi-wmi: check wmi_get_event_data() return value + * /dev/mem: introduce size_inside_page() + * devmem: check vmalloc address on kmem read/write + * devmem: fix kmem write bug on memory holes + * SCSI: mptfusion : mptscsih_abort return value should be SUCCESS instead + of value 0. + * sh: Couple kernel and user write page perm bits for CONFIG_X2TLB + * ALSA: hda - use WARN_ON_ONCE() for zero-division detection + * dst: call cond_resched() in dst_gc_task() + * ALSA: hda - Improved MacBook (Pro) 5,1 / 5,2 support + * befs: fix leak + * rtc-fm3130: add missing braces + * Call flush_dcache_page after PIO data transfers in libata-sff.c + * ahci: add Acer G725 to broken suspend list + * pktgen: Fix freezing problem + * x86/amd-iommu: Fix IOMMU-API initialization for iommu=pt + * x86/amd-iommu: Fix deassignment of a device from the pt_domain + * x86: Re-get cfg_new in case reuse/move irq_desc + * Staging: fix rtl8187se compilation errors with mac80211 + * ALSA: usb-audio - Avoid Oops after disconnect + * serial: 8250: add serial transmitter fully empty test + * sysfs: sysfs_sd_setattr set iattrs unconditionally + * class: Free the class private data in class_release + * USB: usbfs: only copy the actual data received + * USB: usbfs: properly clean up the as structure on error paths + * rtl8187: Add new device ID + * ACPI: Add NULL pointer check in acpi_bus_start + * ACPI: fix High cpu temperature with 2.6.32 + * drm/radeon/kms: use udelay for short delays + * NFS: Too many GETATTR and ACCESS calls after direct I/O + * eCryptfs: Add getattr function + * b43: Fix throughput regression + * ath9k: Fix sequence numbers for PAE frames + * mac80211: Fix probe request filtering in IBSS mode + * iwlwifi: Fix to set correct ht configuration + * dm stripe: avoid divide by zero with invalid stripe count + * dm log: userspace fix overhead_size calcuations + * Linux 2.6.32.9 + * sfc: Fix SFE4002 initialisation + * sfc: Fix sign of efx_mcdi_poll_reboot() error in efx_mcdi_poll() + * sfc: SFE4002/SFN4112F: Widen temperature and voltage tolerances + * (pre-stable) HID: handle joysticks with large number of buttons + - LP: #492056 + * (pre-stable) HID: extend mask for BUTTON usage page + - LP: #492056 + * PM: Measure device suspend and resume times + * e1000: enhance frame fragment detection + - CVE-2009-4536 + * e1000e: enhance frame fragment detection + - CVE-2009-4538 + * KVM: fix memory access during x86 emulation. + - CVE-2010-0306 + * KVM: x86 emulator: Add Virtual-8086 mode of emulation + - CVE-2010-0306 + * KVM: x86 emulator: Check IOPL level during io instruction emulation + - CVE-2010-0306 + * KVM: x86 emulator: Fix popf emulation + - CVE-2010-0306 + * KVM: x86 emulator: Check CPL level during privilege instruction + emulation + - CVE-2010-0306 + * Input: wacom - ensure the device is initialized properly upon resume + * Input: wacom - add defines for packet lengths of various devices + * Input: wacom - add support for new LCD tablets + - LP: #516777 + + -- Andy Whitcroft Mon, 01 Mar 2010 22:56:28 +0000 + +linux (2.6.32-14.20) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebuild following the GCC update to match compiler for out of tree modules + * Revert "[Config] drbd -- enable" + * Revert "ubuntu: drbd -- version 8.3.1" + * SAUCE: khubd -- switch USB product/manufacturer/serial handling to RCU + - LP: #510937 + + -- Andy Whitcroft Fri, 19 Feb 2010 18:47:18 +0000 + +linux (2.6.32-14.19) lucid; urgency=low + + [ Andy Whitcroft ] + + * ensure we build the source package contents when enabled + - LP: #522308 + * [Config] enable CONFIG_X86_MCE_XEON75XX + * SAUCE: AppArmor -- add linux/kref.h for struct kref + * [Config] enable CONFIG_HID_ORTEK + * enable udeb generation for arm versatile flavour + - LP: #522515 + + [ John Johansen ] + + * ubuntu: AppArmor -- update to mainline 2010-02-18 + - LP: #439560, #496110, #507069 + + [ Johnathon Harris ] + + * SAUCE: HID: add support for Ortek WKB-2000 + - LP: #405390 + + [ Upstream Kernel Changes ] + + * tpm_tis: TPM_STS_DATA_EXPECT workaround + - LP: #490487 + * x86, mce: Xeon75xx specific interface to get corrected memory error + information + * x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + * x86, mce: Make xeon75xx memory driver dependent on PCI + * drm/edid: Unify detailed block parsing between base and extension + blocks + - LP: #500999 + * (pre-stable) eCryptfs: Add getattr function + - LP: #390833 + + -- Andy Whitcroft Thu, 18 Feb 2010 19:22:02 +0000 + +linux (2.6.32-13.18) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "enforcer -- make the enforcement configuration common" + * Revert "(pre-stable) Input: ALPS - add interleaved protocol support + (Dell E6x00 series)" + * Revert "(pre-stable) driver-core: fix devtmpfs crash on s390" + * Revert "(pre-stable) Driver-Core: devtmpfs - set root directory mode to + 0755" + * Revert "SAUCE: Adds support for COMPAL JHL90 webcam" + * Revert "SAUCE: fix kernel oops in VirtualBox during paravirt patching" + * Revert "SAUCE: make fc transport removal of target configurable" + * enforcer -- make the enforcement configuration common + * getabis -- add preempt flavour to the list + * [Config] enforce DEVTMPFS options + * [Config] armel -- cleanup to-be builtin modules + * [Config] cleanup ports configs + * [Config] enable CRYPTO_GHASH_CLMUL_NI_INTEL + - LP: #485536 + * add printdebian target to find branch target + * distclean -- do not remove debian.env + * [Config] generic-pae switch to M586TSC + - LP: #519448 + * git-ubuntu-log -- commonise duplicated log handling + * git-ubuntu-log -- tighten up Bug: NNNN matching + * git-ubuntu-log -- sort the bug numbers + + [ Chris Wilson ] + + * (pre-stable) drm/i915: Increase fb alignment to 64k + - LP: #404064 + + [ Eric Miao ] + + * arm -- enable ubuntu/ directory + + [ Huang Ying ] + + * SAUCE: crypto: ghash - Add PCLMULQDQ accelerated implementation + * SAUCE: crypto: ghash-intel - Fix building failure on x86_32 + + [ Loïc Minier ] + + * [Config] cleanup preempt configuration + * [Config] versatile: Fix video output + - LP: #517594 + * [Config] armel DEFAULT_MMAP_MIN_ADDR=32768 + * [Config] Large update to armel/versatile + * [Config] versatile: Add RTC support + * [Config] armel: Enable NEON + * [Config] versatile: Builtin MMC support + * [Config] versatile Builtin SCSI controller + * [Config] armel Disable dma_cache_sync callers + * [Config] armel Disable asm/time.h users + * [Config] armel Disable out of range udelay() + * [Config] armel Disable flush_cache_range() users + * [Config] armel -- Enable ubuntu/ drivers + + [ Steve Conklin ] + + * SAUCE: drm/i915: Add display hotplug event on Ironlake + * SAUCE: drm/i915: Add ACPI OpRegion support for Ironlake + + [ Upstream Kernel Changes ] + + * Revert "[Upstream]: oprofile/x86: add Xeon 7500 series support" + * Revert "Revert "[Bluetooth] Eliminate checks for impossible conditions + in IRQ handler"" + * clockevent: Don't remove broadcast device when cpu is dead + * clockevents: Add missing include to pacify sparse + * ACPI: don't cond_resched if irq is disabled + * be2net: Add support for next generation of BladeEngine device. + * be2net: Add the new PCI IDs to PCI_DEVICE_TABLE. + * mpt2sas: New device SAS2208 support is added + * ar9170: Add support for D-Link DWA 160 A2 + * powerpc/fsl: Add PCI device ids for new QoirQ chips + * davinci: dm646x: Add support for 3.x silicon revision + * Input: ALPS - add interleaved protocol support (Dell E6x00 series) + * Driver-Core: devtmpfs - set root directory mode to 0755 + * driver-core: fix devtmpfs crash on s390 + * vfs: get_sb_single() - do not pass options twice + * ALSA: hda - Add PCI IDs for Nvidia G2xx-series + * V4L/DVB (13569): smsusb: add autodetection support for five additional + Hauppauge USB IDs + * USB: mos7840: add device IDs for B&B electronics devices + * USB: ftdi_sio: add USB device ID's for B&B Electronics line + * V4L/DVB (13168): Add support for Asus Europa Hybrid DVB-T card (SAA7134 + SubVendor ID: 0x1043 Device ID: 0x4847) + * iTCO_wdt: Add support for Intel Ibex Peak + * atl1c:use common_task instead of reset_task and link_chg_task + * atl1e:disable NETIF_F_TSO6 for hardware limit + * V4L/DVB (13680a): DocBook/media: copy images after building HTML + * V4L/DVB (13680b): DocBook/media: create links for included sources + * netfilter: xtables: fix conntrack match v1 ipt-save output + * partitions: read whole sector with EFI GPT header + * partitions: use sector size for EFI GPT + * ALSA: ice1724 - Patch for suspend/resume for ESI Juli@ + * sched: Fix isolcpus boot option + * sched: Fix missing sched tunable recalculation on cpu add/remove + * nohz: Prevent clocksource wrapping during idle + * nfsd: Fix sort_pacl in fs/nfsd/nf4acl.c to actually sort groups + * timers, init: Limit the number of per cpu calibration bootup messages + * PCI: Always set prefetchable base/limit upper32 registers + * iscsi class: modify handling of replacement timeout + * NFS: Revert default r/wsize behavior + * HID: fixup quirk for NCR devices + * scsi_devinfo: update Hitachi entries (v2) + * scsi_dh: create sysfs file, dh_state for all SCSI disk devices + * scsi_transport_fc: remove invalid BUG_ON + * lpfc: fix hang on SGI ia64 platform + * libfc: fix typo in retry check on received PRLI + * libfc: fix ddp in fc_fcp for 0 xid + * fcoe: remove redundant checking of netdev->netdev_ops + * libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + * libfc: lport: fix minor documentation errors + * libfc: don't WARN_ON in lport_timeout for RESET state + * fcoe: initialize return value in fcoe_destroy + * libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in fc_fcp_send_data + * libfc: fix memory corruption caused by double frees and bad error + handling + * libfc: fix free of fc_rport_priv with timer pending + * libfc: remote port gets stuck in restart state without really + restarting + * fcoe, libfc: fix an libfc issue with queue ramp down in libfc + * fcoe: Fix checking san mac address + * fcoe: Fix getting san mac for VLAN interface + * qlge: Remove explicit setting of PCI Dev CTL reg. + * qlge: Set PCIE max read request size. + * qlge: Don't fail open when port is not initialized. + * qlge: Add handler for DCBX firmware event. + * qlge: Bonding fix for mode 6. + * PCI: AER: fix aer inject result in kernel oops + * DMI: allow omitting ident strings in DMI tables + * Input: i8042 - remove identification strings from DMI tables + * Input: i8042 - add Gigabyte M1022M to the noloop list + * Input: i8042 - add Dritek quirk for Acer Aspire 5610. + * ALSA: hda - select IbexPeak handler for Calpella + * ALSA: hda - Fix quirk for Maxdata obook4-1 + * ALSA: hda - Add missing Line-Out and PCM switches as slave + * iTCO_wdt.c - cleanup chipset documentation + * iTCO_wdt: add PCI ID for the Intel EP80579 (Tolapai) SoC + * iTCO_wdt: Add Intel Cougar Point and PCH DeviceIDs + * ahci: disable SNotification capability for ich8 + * ata_piix: fix MWDMA handling on PIIX3 + * md: fix small irregularity with start_ro module parameter + * V4L/DVB (13826): uvcvideo: Fix controls blacklisting + * cio: fix double free in case of probe failure + * cio: dont panic in non-fatal conditions + * netiucv: displayed TX bytes value much too high + * ipc ns: fix memory leak (idr) + * ALSA: hda - Fix HP T5735 automute + * hwmon: (fschmd) Fix a memleak on multiple opens of /dev/watchdog + * UBI: fix memory leak in update path + * UBI: initialise update marker + * ASoC: fix a memory-leak in wm8903 + * mac80211: check that ieee80211_set_power_mgmt only handles STA + interfaces. + * cfg80211: fix channel setting for wext + * KVM: S390: fix potential array overrun in intercept handling + * KVM: only allow one gsi per fd + * KVM: Fix race between APIC TMR and IRR + * KVM: MMU: bail out pagewalk on kvm_read_guest error + * KVM: x86: Fix host_mapping_level() + * KVM: x86: Fix probable memory leak of vcpu->arch.mce_banks + * KVM: x86: Fix leak of free lapic date in kvm_arch_vcpu_init() + * KVM: fix lock imbalance in kvm_*_irq_source_id() + * KVM: only clear irq_source_id if irqchip is present + * IPoIB: Clear ipoib_neigh.dgid in ipoib_neigh_alloc() + * x86: Reenable TSC sync check at boot, even with NONSTOP_TSC + * ACPI: enable C2 and Turbo-mode on Nehalem notebooks on A/C + - LP: #516325 + * iwlwifi: Fix throughput stall issue in HT mode for 5000 + * fnctl: f_modown should call write_lock_irqsave/restore + * x86, msr/cpuid: Pass the number of minors when unregistering MSR and + CPUID drivers. + * Linux 2.6.32.7 + * scsi_lib: Fix bug in completion of bidi commands + * mptsas: Fix issue with chain pools allocation on katmai + * mm: add new 'read_cache_page_gfp()' helper function + * drm/i915: Selectively enable self-reclaim + * firewire: ohci: fix crashes with TSB43AB23 on 64bit systems + * S390: fix single stepped svcs with TRACE_IRQFLAGS=y + * x86: Set hotpluggable nodes in nodes_possible_map + * x86: Remove "x86 CPU features in debugfs" (CONFIG_X86_CPU_DEBUG) + * libata: retry FS IOs even if it has failed with AC_ERR_INVALID + * zcrypt: Do not remove coprocessor for error 8/72 + * dasd: fix possible NULL pointer errors + * ACPI: Add a generic API for _OSC -v2 + * ACPI: Add platform-wide _OSC support. + * ACPI: fix OSC regression that caused aer and pciehp not to load + * ACPI: Advertise to BIOS in _OSC: _OST on _PPC changes + * UBI: fix volume creation input checking + * e1000/e1000e: don't use small hardware rx buffers + * drm/i915: Reload hangcheck timer too for Ironlake + * Fix a leak in affs_fill_super() + * Fix failure exits in bfs_fill_super() + * fix oops in fs/9p late mount failure + * fix leak in romfs_fill_super() + * Fix remount races with symlink handling in affs + * fix affs parse_options() + * Fix failure exit in ipathfs + * mm: fix migratetype bug which slowed swapping + * FDPIC: Respect PT_GNU_STACK exec protection markings when creating + NOMMU stack + * Split 'flush_old_exec' into two functions + * sparc: TIF_ABI_PENDING bit removal + * x86: get rid of the insane TIF_ABI_PENDING bit + * Input: winbond-cir - remove dmesg spam + * x86: Disable HPET MSI on ATI SB700/SB800 + * iwlwifi: set default aggregation frame count limit to 31 + * drm/i915: only enable hotplug for detected outputs + * firewire: core: add_descriptor size check + * SECURITY: selinux, fix update_rlimit_cpu parameter + * regulator: Specify REGULATOR_CHANGE_STATUS for WM835x LED constraints + * x86: Add Dell OptiPlex 760 reboot quirk + - LP: #488319 + * x86: Add quirk for Intel DG45FC board to avoid low memory corruption + * x86/amd-iommu: Fix possible integer overflow + * clocksource: fix compilation if no GENERIC_TIME + * tcp: update the netstamp_needed counter when cloning sockets + * sky2: Fix oops in sky2_xmit_frame() after TX timeout + * net: restore ip source validation + * af_packet: Don't use skb after dev_queue_xmit() + * ax25: netrom: rose: Fix timer oopses + * KVM: allow userspace to adjust kvmclock offset + * oprofile/x86: add Xeon 7500 series support + * oprofile/x86: fix crash when profiling more than 28 events + * libata: retry link resume if necessary + * mm: percpu-vmap fix RCU list walking + * mm: purge fragmented percpu vmap blocks + * block: fix bio_add_page for non trivial merge_bvec_fn case + * Fix 'flush_old_exec()/setup_new_exec()' split + * random: drop weird m_time/a_time manipulation + * random: Remove unused inode variable + * block: fix bugs in bio-integrity mempool usage + * usb: r8a66597-hdc disable interrupts fix + * connector: Delete buggy notification code. + * be2net: Bug fix to support newer generation of BE ASIC + * be2net: Fix memset() arg ordering. + * mm: flush dcache before writing into page to avoid alias + * mac80211: fix NULL pointer dereference when ftrace is enabled + * imxfb: correct location of callbacks in suspend and resume + * mx3fb: some debug and initialisation fixes + * starfire: clean up properly if firmware loading fails + * kernel/cred.c: use kmem_cache_free + * uartlite: fix crash when using as console + * pktcdvd: removing device does not remove its sysfs dir + * ath9k: fix eeprom INI values override for 2GHz-only cards + * ath9k: fix beacon slot/buffer leak + * powerpc: TIF_ABI_PENDING bit removal + * NET: fix oops at bootime in sysctl code + * Linux 2.6.32.8 + + -- Andy Whitcroft Wed, 10 Feb 2010 18:56:52 +0000 + +linux (2.6.32-12.17) lucid; urgency=low + + [ Andy Whitcroft ] + + * restore linux-image prefix -- master + * enforce -- we require SELINUX enabled -- master + * enforce -- ensure APPARMOR is our default LSM -- master + * make doc package completely optional -- master + * make source package completely optional -- master + * make linux-libc-dev completly optional -- master + * convert package disable to a deps list -- master + * allow common headers to switch from indep to arch -- master + * convert binary package disable to a deps list -- master + * add configuration option for a full source build tree -- master + * add support for uImage kernels in package control scripts + * getabis -- cleanup and parameterise repository list -- master + * getabis -- move configuration to etc/getabi -- master + * kernelconfig -- move configuration to etc -- master + * rules -- make debian/debian.env master for branch name + * set the current branch name -- master + * pull back common debian.master files into debian -- master + * enforcer -- make the enforcement configuration common + * insert-changes -- correctly link to debian/rules in DROOT + + [ Colin Watson ] + + * future-proof ddeb handling against buildd changes + + [ Eric Miao ] + + * SAUCE: Make CONFIG_{OMNIBOOK, AVERATEC_5100P, PACKARDBELL_E5} depend on + X86 + + [ Loïc Minier ] + + * Add modules.builtin.bin to prerm rm list + - LP: #516584 + + [ Tim Gardner ] + + * [Config] Implement the amd64 preempt flavour + + [ Upstream Kernel Changes ] + + * syslog: distinguish between /proc/kmsg and syscalls + - LP: #515623 + * sfc: Fix polling for slow MCDI operations + * sfc: Fix conditions for MDIO self-test + * sfc: QT202x: Remove unreliable MMD check at initialisation + * sfc: Add workspace for GMAC bug workaround to MCDI MAC_STATS buffer + * sfc: Use fixed-size buffers for MCDI NVRAM requests + + -- Andy Whitcroft Fri, 05 Feb 2010 07:09:31 +0000 + +linux (2.6.32-12.16) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: acpi battery -- delay first lookup of the battery until + first use" + * SAUCE: acpi battery -- move first lookup asynchronous + - LP: #507211 + * [Config] update configs to cleanup generic configs + * [Config] disable CONFIG_X86_CPU_DEBUG for amd64 + * [Config] enable USER_NS + - LP: #480739, #509808 + + [ Heiko Carstens ] + + * (pre-stable) driver-core: fix devtmpfs crash on s390 + - LP: #512370 + + [ John Johansen ] + + * [Config] for server and virtual flavours make CONFIG_SCSI_SYM53C8XX_2=y + - LP: #494565 + * [Config] VIRTIO=y for server/virtual flavours + - LP: #494565 + + [ Kay Sievers ] + + * (pre-stable) Driver-Core: devtmpfs - set root directory mode to 0755 + - LP: #512370 + + [ Kees Cook ] + + * SAUCE: x86: brk away from exec rand area + - LP: #452175 + + [ Leann Ogasawara ] + + * [Upstream] e1000: enhance frame fragment detection + - CVE-2009-4536 + * [Upstream] e1000e: enhance frame fragment detection + - CVE-2009-4538 + + [ Sebastian Kapfer ] + + * (pre-stable) Input: ALPS - add interleaved protocol support (Dell E6x00 + series) + - LP: #296610 + + [ Upstream Kernel Changes ] + + * inotify: do not reuse watch descriptors + - LP: #485556 + * inotify: only warn once for inotify problems + * revert "drivers/video/s3c-fb.c: fix clock setting for Samsung SoC + Framebuffer" + * memcg: ensure list is empty at rmdir + * drm/i915: remove loop in Ironlake interrupt handler + * block: Fix incorrect reporting of partition alignment + * x86, mce: Thermal monitoring depends on APIC being enabled + * futexes: Remove rw parameter from get_futex_key() + * page allocator: update NR_FREE_PAGES only when necessary + * x86, apic: use physical mode for IBM summit platforms + * edac: i5000_edac critical fix panic out of bounds + * x86: SGI UV: Fix mapping of MMIO registers + * mfd: WM835x GPIO direction register is not locked + * mfd: Correct WM835x ISINK ramp time defines + * ALSA: hda - Fix missing capture mixer for ALC861/660 codecs + * V4L/DVB (13868): gspca - sn9c20x: Fix test of unsigned. + * reiserfs: truncate blocks not used by a write + * HID: add device IDs for new model of Apple Wireless Keyboard + * PCI/cardbus: Add a fixup hook and fix powerpc + * Input: pmouse - move Sentelic probe down the list + * asus-laptop: add Lenovo SL hotkey support + * sched: Fix cpu_clock() in NMIs, on !CONFIG_HAVE_UNSTABLE_SCHED_CLOCK + * sparc64: Fix NMI programming when perf events are active. + * sparc64: Fix Niagara2 perf event handling. + * i2c: Do not use device name after device_unregister + * i2c/pca: Don't use *_interruptible + * serial/8250_pnp: add a new Fujitsu Wacom Tablet PC device + * sched: Fix task priority bug + * vfs: Fix vmtruncate() regression + * Linux 2.6.32.5 + * x86, msr/cpuid: Register enough minors for the MSR and CPUID drivers + * V4L/DVB (13900): gspca - sunplus: Fix bridge exchanges. + * Staging: asus_oled: fix oops in 2.6.32.2 + * Staging: hv: fix smp problems in the hyperv core code + * tty: fix race in tty_fasync + * ecryptfs: use after free + * ecryptfs: initialize private persistent file before dereferencing + pointer + * nozomi: quick fix for the close/close bug + * serial: 8250_pnp: use wildcard for serial Wacom tablets + * usb: serial: fix memory leak in generic driver + * USB: fix bitmask merge error + * USB: Don't use GFP_KERNEL while we cannot reset a storage device + * USB: EHCI: fix handling of unusual interrupt intervals + * USB: EHCI & UHCI: fix race between root-hub suspend and port resume + * USB: add missing delay during remote wakeup + * USB: add speed values for USB 3.0 and wireless controllers + * ACPI: EC: Accelerate query execution + * ACPI: EC: Add wait for irq storm + * SCSI: enclosure: fix oops while iterating enclosure_status array + * drm/i915: Read the response after issuing DDC bus switch command + * drm/i915: try another possible DDC bus for the SDVO device with + multiple outputs + * block: bdev_stack_limits wrapper + * DM: Fix device mapper topology stacking + * x86/PCI/PAT: return EINVAL for pci mmap WC request for !pat_enabled + * USB: fix usbstorage for 2770:915d delivers no FAT + * vmalloc: remove BUG_ON due to racy counting of VM_LAZY_FREE + * perf timechart: Use tid not pid for COMM change + * perf events: Dont report side-band events on each cpu for + per-task-per-cpu events + * perf: Honour event state for aux stream data + * Linux 2.6.32.6 + + -- Andy Whitcroft Wed, 27 Jan 2010 16:40:23 +0000 + +linux (2.6.32-11.15) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "(pre-stable) drm/radeon/kms: fix crtc vblank update for r600" + * Revert "(pre-stable) sched: Fix balance vs hotplug race" + * Revert "[Upstream] acerhdf: Limit modalias matching to supported + boards" + * Revert "[Upstream] mmc: prevent dangling block device from accessing + stale queues" + * Revert "SAUCE: Fix nx_enable reporting" + * Revert "SAUCE: [x86] fix report of cs-limit nx-emulation" + * Revert "SAUCE: [x86] implement cs-limit nx-emulation for ia32" + * SAUCE: i915 -- disable powersave by default + - LP: #492392 + + [ Kees Cook ] + + * SAUCE: [x86] implement cs-limit nx-emulation for ia32 + - LP: #369978 + * SAUCE: [x86] fix report of cs-limit nx-emulation + - LP: #454285 + * SAUCE: Fix nx_enable reporting + - LP: #454285 + + [ Tim Gardner ] + + * [Upstream] b43: Declare all possible firmware files. + - LP: #488636 + * [Config] updateconfigs after adding pvscsi + - LP: #497156 + * [Config] CONFIG_BT=m + + [ Upstream Kernel Changes ] + + * Revert "x86: Side-step lguest problem by only building cmpxchg8b_emu + for pre-Pentium" + * SCSI: ipr: fix EEH recovery + * SCSI: qla2xxx: dpc thread can execute before scsi host has been added + * SCSI: st: fix mdata->page_order handling + * SCSI: fc class: fix fc_transport_init error handling + * sched: Fix task_hot() test order + * x86, cpuid: Add "volatile" to asm in native_cpuid() + * sched: Select_task_rq_fair() must honour SD_LOAD_BALANCE + * clockevents: Prevent clockevent_devices list corruption on cpu hotplug + * pata_hpt3x2n: fix clock turnaround + * pata_cmd64x: fix overclocking of UDMA0-2 modes + * ASoC: wm8974: fix a wrong bit definition + * sound: sgio2audio/pdaudiocf/usb-audio: initialize PCM buffer + * ALSA: hda - Fix missing capsrc_nids for ALC88x + * acerhdf: limit modalias matching to supported + - LP: #435958 + * ACPI: EC: Fix MSI DMI detection + * ACPI: Use the return result of ACPI lid notifier chain correctly + * powerpc: Handle VSX alignment faults correctly in little-endian mode + * ASoC: Do not write to invalid registers on the wm9712. + * drm/radeon: fix build on 64-bit with some compilers. + * USB: emi62: fix crash when trying to load EMI 6|2 firmware + * USB: option: support hi speed for modem Haier CE100 + * USB: Fix a bug on appledisplay.c regarding signedness + * USB: musb: gadget_ep0: avoid SetupEnd interrupt + * Bluetooth: Prevent ill-timed autosuspend in USB driver + * USB: rename usb_configure_device + * USB: fix bugs in usb_(de)authorize_device + * drivers/net/usb: Correct code taking the size of a pointer + * x86: SGI UV: Fix writes to led registers on remote uv hubs + * md: Fix unfortunate interaction with evms + * dma: at_hdmac: correct incompatible type for argument 1 of + 'spin_lock_bh' + * dma-debug: Do not add notifier when dma debugging is disabled. + * dma-debug: Fix bug causing build warning + * cifs: NULL out tcon, pSesInfo, and srvTcp pointers when chasing DFS + referrals + * x86/amd-iommu: Fix initialization failure panic + * ioat3: fix p-disabled q-continuation + * ioat2,3: put channel hardware in known state at init + * KVM: MMU: remove prefault from invlpg handler + * KVM: LAPIC: make sure IRR bitmap is scanned after vm load + * Libertas: fix buffer overflow in lbs_get_essid() + * iwmc3200wifi: fix array out-of-boundary access + * mac80211: fix propagation of failed hardware reconfigurations + * mac80211: fix WMM AP settings application + * mac80211: Fix IBSS merge + * cfg80211: fix race between deauth and assoc response + * ath5k: fix SWI calibration interrupt storm + * ath9k: wake hardware for interface IBSS/AP/Mesh removal + * ath9k: Fix TX queue draining + * ath9k: fix missed error codes in the tx status check + * ath9k: wake hardware during AMPDU TX actions + * ath9k: fix suspend by waking device prior to stop + * ath9k_hw: Fix possible OOB array indexing in gen_timer_index[] on + 64-bit + * ath9k_hw: Fix AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB and its shift value + in 0x4054 + * iwl3945: disable power save + * iwl3945: fix panic in iwl3945 driver + * iwlwifi: fix EEPROM/OTP reading endian annotations and a bug + * iwlwifi: fix more eeprom endian bugs + * iwlwifi: fix 40MHz operation setting on cards that do not allow it + * mac80211: fix race with suspend and dynamic_ps_disable_work + * NOMMU: Optimise away the {dac_,}mmap_min_addr tests + * 'sysctl_max_map_count' should be non-negative + * kernel/sysctl.c: fix the incomplete part of + sysctl_max_map_count-should-be-non-negative.patch + * V4L/DVB (13596): ov511.c typo: lock => unlock + * x86/ptrace: make genregs[32]_get/set more robust + * memcg: avoid oom-killing innocent task in case of use_hierarchy + * e100: Fix broken cbs accounting due to missing memset. + * ipv6: reassembly: use seperate reassembly queues for conntrack and + local delivery + * netfilter: fix crashes in bridge netfilter caused by fragment jumps + * hwmon: (sht15) Off-by-one error in array index + incorrect constants + * b43: avoid PPC fault during resume + * Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture + support + * sched: Fix balance vs hotplug race + * drm/radeon/kms: fix crtc vblank update for r600 + * drm: disable all the possible outputs/crtcs before entering KMS mode + * S390: dasd: support DIAG access for read-only devices + * xen: fix is_disconnected_device/exists_disconnected_device + * xen: improvement to wait_for_devices() + * xen: wait up to 5 minutes for device connetion + * orinoco: fix GFP_KERNEL in orinoco_set_key with interrupts disabled + * udf: Try harder when looking for VAT inode + * Add unlocked version of inode_add_bytes() function + * quota: decouple fs reserved space from quota reservation + * ext4: Convert to generic reserved quota's space management. + * ext4: fix sleep inside spinlock issue with quota and dealloc (#14739) + * x86, msr: Unify rdmsr_on_cpus/wrmsr_on_cpus + * cpumask: use modern cpumask style in drivers/edac/amd64_edac.c + * amd64_edac: unify MCGCTL ECC switching + * x86, msr: Add support for non-contiguous cpumasks + * x86, msr: msrs_alloc/free for CONFIG_SMP=n + * amd64_edac: fix driver instance freeing + * amd64_edac: make driver loading more robust + * amd64_edac: fix forcing module load/unload + * sched: Sched_rt_periodic_timer vs cpu hotplug + * ext4: Update documentation to correct the inode_readahead_blks option + name + * lguest: fix bug in setting guest GDT entry + * vmscan: do not evict inactive pages when skipping an active list scan + * ksm: fix mlockfreed to munlocked + * rt2x00: Disable powersaving for rt61pci and rt2800pci. + * generic_permission: MAY_OPEN is not write access + * Linux 2.6.32.3 + * untangle the do_mremap() mess + * fasync: split 'fasync_helper()' into separate add/remove functions + * ASoC: fix params_rate() macro use in several codecs + * modules: Skip empty sections when exporting section notes + * exofs: simple_write_end does not mark_inode_dirty + * nfsd: make sure data is on disk before calling ->fsync + * sunrpc: fix peername failed on closed listener + * SUNRPC: Fix up an error return value in + gss_import_sec_context_kerberos() + * SUNRPC: Fix the return value in gss_import_sec_context() + * sunrpc: on successful gss error pipe write, don't return error + * drm/i915: Update LVDS connector status when receiving ACPI LID event + * drm/i915: fix order of fence release wrt flushing + * drm/i915: Permit pinning whilst the device is 'suspended' + * drm: remove address mask param for drm_pci_alloc() + * drm/i915: Enable/disable the dithering for LVDS based on VBT setting + * drm/i915: Make the BPC in FDI rx/transcoder be consistent with that in + pipeconf on Ironlake + * drm/i915: Select the correct BPC for LVDS on Ironlake + * drm/i915: fix unused var + * rtc_cmos: convert shutdown to new pnp_driver->shutdown + * drivers/cpuidle/governors/menu.c: fix undefined reference to + `__udivdi3' + * cgroups: fix 2.6.32 regression causing BUG_ON() in cgroup_diput() + * lib/rational.c needs module.h + * dma-debug: allow DMA_BIDIRECTIONAL mappings to be synced with + DMA_FROM_DEVICE and + * kernel/signal.c: fix kernel information leak with print-fatal-signals=1 + * mmc_block: add dev_t initialization check + * mmc_block: fix probe error cleanup bug + * mmc_block: fix queue cleanup + * ALSA: hda - Fix ALC861-VD capture source mixer + * ALSA: ac97: Add Dell Dimension 2400 to Headphone/Line Jack Sense + blacklist + * ALSA: atiixp: Specify codec for Foxconn RC4107MA-RS2 + - LP: #498863 + * ASoC: Fix WM8350 DSP mode B configuration + * netfilter: ebtables: enforce CAP_NET_ADMIN + * netfilter: nf_ct_ftp: fix out of bounds read in update_nl_seq() + * hwmon: (coretemp) Fix TjMax for Atom N450/D410/D510 CPUs + * hwmon: (adt7462) Fix pin 28 monitoring + * quota: Fix dquot_transfer for filesystems different from ext4 + * xen: fix hang on suspend. + * iwlwifi: fix iwl_queue_used bug when read_ptr == write_ptr + * ath5k: Fix eeprom checksum check for custom sized eeproms + * cfg80211: fix syntax error on user regulatory hints + * iwl: off by one bug + * mac80211: add missing sanity checks for action frames + * drm/i915: remove render reclock support + * libertas: Remove carrier signaling from the scan code + * kernel/sysctl.c: fix stable merge error in NOMMU mmap_min_addr + * mac80211: fix skb buffering issue (and fixes to that) + * fix braindamage in audit_tree.c untag_chunk() + * fix more leaks in audit_tree.c tag_chunk() + * module: handle ppc64 relocating kcrctabs when CONFIG_RELOCATABLE=y + * ipv6: skb_dst() can be NULL in ipv6_hop_jumbo(). + * agp/intel-agp: Clear entire GTT on startup + * Linux 2.6.32.4 + * ethtool: Add reset operation + * gro: Name the GRO result enumeration type + * gro: Change all receive functions to return GRO result codes + * sfc: 10Xpress: Initialise pause advertising flags + * sfc: 10Xpress: Report support for pause frames + * sfc: Remove redundant header gmii.h + * sfc: Remove redundant hardware initialisation + * sfc: Rename Falcon-specific board code and types + * sfc: Remove boards.h, moving last remaining declaration to falcon.h + * sfc: Remove versioned bitfield macros + * sfc: Move RX data FIFO thresholds out of struct efx_nic_type + * sfc: Update hardware definitions for Siena + * sfc: Rename register I/O header and functions used by both Falcon and + Siena + * sfc: Eliminate indirect lookups of queue size constants + * sfc: Define DMA address mask explicitly in terms of descriptor field + width + * sfc: Move all TX DMA length limiting into tx.c + * sfc: Change order of device removal to reverse of probe order + * sfc: Remove declarations of nonexistent functions + * sfc: Move efx_xmit_done() declaration into correct stanza + * sfc: Move shared members of struct falcon_nic_data into struct efx_nic + * sfc: Maintain interrupt moderation values in ticks, not microseconds + * sfc: Removed kernel-doc for nonexistent member of efx_phy_operations + * sfc: Remove pointless abstraction of memory BAR number + * sfc: Remove incorrect assertion from efx_pci_remove_main() + * sfc: Remove unnecessary tests of efx->membase + * sfc: Move MTD probe after netdev registration and name allocation + * sfc: Remove unused code for non-autoneg speed/duplex switching + * sfc: Rename 'xfp' file and functions to reflect reality + * sfc: Really allow RX checksum offload to be disabled + * sfc: Feed GRO result into RX allocation policy and interrupt moderation + * sfc: Enable heuristic selection between page and skb RX buffers + * sfc: Remove pointless abstraction of memory BAR number (2) + * sfc: Remove redundant gotos from __efx_rx_packet() + * sfc: Remove ridiculously paranoid assertions + * sfc: Move assertions and buffer cleanup earlier in efx_rx_packet_lro() + * sfc: Record RX queue number on GRO path + * sfc: SFT9001: Reset LED configuration correctly after blinking + * sfc: Use a single blink implementation + * sfc: Rename efx_board::init_leds to init_phy and use for SFN4111T + * sfc: Make board information explicitly Falcon-specific + * sfc: Move definition of struct falcon_nic_data into falcon.h + * sfc: Move struct falcon_board into struct falcon_nic_data + * sfc: Move all I2C stuff into struct falcon_board + * sfc: Gather link state fields in struct efx_nic into new struct + efx_link_state + * sfc: Remove unnecessary casts to struct sk_buff * + * sfc: Remove redundant efx_xmit() function + * sfc: Combine high-level header files + * sfc: Log interrupt and reset type names, not numbers + * sfc: Fix descriptor cache sizes + * sfc: Treat all MAC registers as 128-bit + * sfc: Strengthen EFX_ASSERT_RESET_SERIALISED + * sfc: Comment corrections + * sfc: Remove unused constant + * sfc: Clean up struct falcon_board and struct falcon_board_data + * sfc: Fix bugs in RX queue flushing + * sfc: Remove unused function efx_flush_queues() + * sfc: Only switch Falcon MAC clocks as necessary + * sfc: Hold MAC lock for longer in efx_init_port() + * sfc: Split MAC stats DMA initiation and completion + * sfc: Move Falcon board/PHY/MAC monitoring code to falcon.c + * sfc: Simplify XMAC link polling + * sfc: Change MAC promiscuity and multicast hash at the same time + * sfc: Move inline comment into kernel-doc + * sfc: Do not set net_device::trans_start in self-test + * sfc: Simplify PHY polling + * sfc: QT202x: Reset before reading PHY id + * sfc: Replace MDIO spinlock with mutex + * sfc: Always start Falcon using the XMAC + * sfc: Limit some hardware workarounds to Falcon + * sfc: Remove EFX_WORKAROUND_9141 macro + * sfc: Remove another unused workaround macro + * sfc: Remove some redundant whitespace + * sfc: Decouple NIC revision number from Falcon PCI revision number + * sfc: Move descriptor cache base addresses to struct efx_nic_type + * sfc: Clean up RX event handling + * sfc: Remove redundant writes to INT_ADR_KER + * sfc: Remove duplicate hardware structure definitions + * sfc: Turn pause frame generation on and off at the MAC, not the RX FIFO + * sfc: Move Falcon NIC operations to efx_nic_type + * sfc: Refactor link configuration + * sfc: Generalise link state monitoring + * sfc: Add power-management and wake-on-LAN support + * sfc: Implement ethtool reset operation + * sfc: Add efx_nic_type operation for register self-test + * sfc: Add efx_nic_type operation for NVRAM self-test + * sfc: Add efx_nic_type operation for identity LED control + * sfc: Separate shared NIC code from Falcon-specific and rename + accordingly + * sfc: Fold falcon_probe_nic_variant() into falcon_probe_nic() + * sfc: Extend loopback mode enumeration + * sfc: Remove static PHY data and enumerations + * sfc: Extend MTD driver for use with new NICs + * sfc: Allow for additional checksum offload features + * sfc: Rename falcon.h to nic.h + * sfc: Move shared NIC code from falcon.c to new source file nic.c + * sfc: Add firmware protocol definitions (MCDI) + * sfc: Add support for SFC9000 family (1) + * sfc: Add support for SFC9000 family (2) + * sfc: Implement TSO for TCP/IPv6 + * sfc: Update version, copyright dates, authors + * drivers/net/sfc: Correct code taking the size of a pointer + * sfc: Move PHY software state initialisation from init() into probe() + * sfc: Include XGXS in XMAC link status check except in XGMII loopback + * sfc: Fix DMA mapping cleanup in case of an error in TSO + * sfc: QT2025C: Work around PHY bug + * sfc: QT2025C: Switch into self-configure mode when not in loopback + * sfc: QT2025C: Work around PHY firmware initialisation bug + * sfc: QT2025C: Add error message for suspected bad SFP+ cables + * sfc: Disable TX descriptor prefetch watchdog + * [SCSI] vmw_pvscsi: SCSI driver for VMware's virtual HBA. + - LP: #497156 + + -- Andy Whitcroft Tue, 19 Jan 2010 16:12:47 +0000 + +linux (2.6.32-10.14) lucid; urgency=low + + [ Alex Deucher ] + + * SAUCE: drm/radeon/kms: fix LVDS setup on r4xx + - LP: #493795 + + [ Andy Whitcroft ] + + * Revert "(pre-stable) acpi: Use the ARB_DISABLE for the CPU which model + id is less than 0x0f." + * config-check -- ensure the checks get run at build time + * config-check -- check the processed config during updateconfigs + * config-check -- CONFIG_SECCOMP may not be present + * TUN is now built in ignore + * SAUCE: acpi battery -- delay first lookup of the battery until first + use + * SAUCE: async_populate_rootfs: move rootfs init earlier + * ubuntu: AppArmor -- update to mainline 2010-01-06 + * SAUCE: move RLIMIT_CORE pipe dumper marker to 1 + - LP: #498525 + + [ Dave Airlie ] + + * (pre-stable) drm/radeon/kms: fix crtc vblank update for r600 + + [ Leann Ogasawara ] + + * Add asix to nic-usb-modules file + - LP: #499785 + + [ Peter Zijlstra ] + + * (pre-stable) sched: Fix balance vs hotplug race + + [ Tim Gardner ] + + * [Config] Enable CONFIG_FUNCTION_TRACER + - LP: #497989 + * [Config] Drop lpia from getabis + * [Config] Build in TUN/TAP driver + - LP: #499491 + * [Config] DH_COMPAT=5 + + [ Upstream Kernel Changes ] + + * Revert "(pre-stable) drm/i915: Avoid NULL dereference with + component_only tv_modes" + * Revert "(pre-stable) drm/i915: Fix sync to vblank when VGA output is + turned off" + * USB: usb-storage: fix bug in fill_inquiry + * USB: option: add pid for ZTE + * firewire: ohci: handle receive packets with a data length of zero + * rcu: Prepare for synchronization fixes: clean up for non-NO_HZ handling + of ->completed counter + * rcu: Fix synchronization for rcu_process_gp_end() uses of ->completed + counter + * rcu: Fix note_new_gpnum() uses of ->gpnum + * rcu: Remove inline from forward-referenced functions + * perf_event: Fix invalid type in ioctl definition + * perf_event: Initialize data.period in perf_swevent_hrtimer() + * perf: Don't free perf_mmap_data until work has been done + * PM / Runtime: Fix lockdep warning in __pm_runtime_set_status() + * sched: Check for an idle shared cache in select_task_rq_fair() + * sched: Fix affinity logic in select_task_rq_fair() + * sched: Rate-limit newidle + * sched: Fix and clean up rate-limit newidle code + * x86/amd-iommu: attach devices to pre-allocated domains early + * x86/amd-iommu: un__init iommu_setup_msi + * x86, Calgary IOMMU quirk: Find nearest matching Calgary while walking + up the PCI tree + * x86: Fix iommu=nodac parameter handling + * x86: GART: pci-gart_64.c: Use correct length in strncmp + * x86: ASUS P4S800 reboot=bios quirk + - LP: #366682 + * x86, apic: Enable lapic nmi watchdog on AMD Family 11h + * ssb: Fix range check in sprom write + * ath5k: allow setting txpower to 0 + * ath5k: enable EEPROM checksum check + * hrtimer: Fix /proc/timer_list regression + * ALSA: hrtimer - Fix lock-up + * ALSA: hda - Terradici HDA controllers does not support 64-bit mode + * KVM: x86 emulator: limit instructions to 15 bytes + * KVM: s390: Fix prefix register checking in arch/s390/kvm/sigp.c + * KVM: s390: Make psw available on all exits, not just a subset + * KVM: fix irq_source_id size verification + * KVM: x86: include pvclock MSRs in msrs_to_save + * x86: Prevent GCC 4.4.x (pentium-mmx et al) function prologue wreckage + * x86: Use -maccumulate-outgoing-args for sane mcount prologues + * x86, mce: don't restart timer if disabled + * x86/mce: Set up timer unconditionally + * x86: SGI UV: Fix BAU initialization + * x86: Fix duplicated UV BAU interrupt vector + * x86: Add new Intel CPU cache size descriptors + * x86: Fix typo in Intel CPU cache size descriptor + * pata_hpt{37x|3x2n}: fix timing register masks (take 2) + * s390: clear high-order bits of registers after sam64 + * V4L/DVB: Fix test in copy_reg_bits() + * bsdacct: fix uid/gid misreporting + * UBI: flush wl before clearing update marker + * jbd2: don't wipe the journal on a failed journal checksum + * USB: xhci: Add correct email and files to MAINTAINERS entry. + * USB: musb_gadget_ep0: fix unhandled endpoint 0 IRQs, again + * USB: option.c: add support for D-Link DWM-162-U5 + * USB: usbtmc: repeat usb_bulk_msg until whole message is transfered + * USB: usb-storage: add BAD_SENSE flag + * USB: Close usb_find_interface race v3 + * pxa/em-x270: fix usb hub power up/reset sequence + * hfs: fix a potential buffer overflow + * SUNRPC: IS_ERR/PTR_ERR confusion + * NFS: Fix nfs_migrate_page() + * md/bitmap: protect against bitmap removal while being updated. + * futex: Take mmap_sem for get_user_pages in fault_in_user_writeable + * devpts_get_tty() should validate inode + * debugfs: fix create mutex racy fops and private data + * Driver core: fix race in dev_driver_string + * Serial: Do not read IIR in serial8250_start_tx when UART_BUG_TXEN + * mac80211: Fix bug in computing crc over dynamic IEs in beacon + * mac80211: Fixed bug in mesh portal paths + * mac80211: Revert 'Use correct sign for mesh active path refresh' + * mac80211: fix scan abort sanity checks + * wireless: correctly report signal value for IEEE80211_HW_SIGNAL_UNSPEC + * rtl8187: Fix wrong rfkill switch mask for some models + * x86: Fix bogus warning in apic_noop.apic_write() + * mm: hugetlb: fix hugepage memory leak in mincore() + * mm: hugetlb: fix hugepage memory leak in walk_page_range() + * powerpc/windfarm: Add detection for second cpu pump + * powerpc/therm_adt746x: Record pwm invert bit at module load time] + * powerpc: Fix usage of 64-bit instruction in 32-bit altivec code + * drm/radeon/kms: Add quirk for HIS X1300 board + * drm/radeon/kms: handle vblanks properly with dpms on + * drm/radeon/kms: fix legacy crtc2 dpms + * drm/radeon/kms: fix vram setup on rs600 + * drm/radeon/kms: rs6xx/rs740: clamp vram to aperture size + * drm/ttm: Fix build failure due to missing struct page + * drm/i915: Set the error code after failing to insert new offset into mm + ht. + * drm/i915: Add the missing clonemask for display port on Ironlake + * xen/xenbus: make DEVICE_ATTR()s static + * xen: re-register runstate area earlier on resume. + * xen: restore runstate_info even if !have_vcpu_info_placement + * xen: correctly restore pfn_to_mfn_list_list after resume + * xen: register timer interrupt with IRQF_TIMER + * xen: register runstate on secondary CPUs + * xen: don't call dpm_resume_noirq() with interrupts disabled. + * xen: register runstate info for boot CPU early + * xen: call clock resume notifier on all CPUs + * xen: improve error handling in do_suspend. + * xen: don't leak IRQs over suspend/resume. + * xen: use iret for return from 64b kernel to 32b usermode + * xen: explicitly create/destroy stop_machine workqueues outside + suspend/resume region. + * Xen balloon: fix totalram_pages counting. + * xen: try harder to balloon up under memory pressure. + * dm exception store: free tmp_store on persistent flag error + * dm snapshot: only take lock for statustype info not table + * dm crypt: move private iv fields to structs + * dm crypt: restructure essiv error path + * dm: avoid _hash_lock deadlock + * dm snapshot: cope with chunk size larger than origin + * dm crypt: separate essiv allocation from initialisation + * dm crypt: make wipe message also wipe essiv key + * slc90e66: fix UDMA handling + * tcp: Stalling connections: Fix timeout calculation routine + * ip_fragment: also adjust skb->truesize for packets not owned by a + socket + * b44 WOL setup: one-bit-off stack corruption kernel panic fix + * sparc64: Don't specify IRQF_SHARED for LDC interrupts. + * sparc64: Fix overly strict range type matching for PCI devices. + * sparc64: Fix stack debugging IRQ stack regression. + * sparc: Set UTS_MACHINE correctly. + * b43legacy: avoid PPC fault during resume + * tracing: Fix event format export + * ath9k: Fix TX hang poll routine + * ath9k: fix processing of TX PS null data frames + * ath9k: Fix maximum tx fifo settings for single stream devices + * ath9k: fix tx status reporting + * mac80211: Fix dynamic power save for scanning. + * drm/i915: Fix sync to vblank when VGA output is turned off + * memcg: fix memory.memsw.usage_in_bytes for root cgroup + * thinkpad-acpi: fix default brightness_mode for R50e/R51 + * thinkpad-acpi: preserve rfkill state across suspend/resume + * ipw2100: fix rebooting hang with driver loaded + * matroxfb: fix problems with display stability + * acerhdf: add new BIOS versions + * asus-laptop: change light sens default values. + * vmalloc: conditionalize build of pcpu_get_vm_areas() + * ACPI: Use the ARB_DISABLE for the CPU which model id is less than 0x0f. + * net: Fix userspace RTM_NEWLINK notifications. + * ext3: Fix data / filesystem corruption when write fails to copy data + * V4L/DVB (13116): gspca - ov519: Webcam 041e:4067 added. + * bcm63xx_enet: fix compilation failure after get_stats_count removal + * x86: Under BIOS control, restore AP's APIC_LVTTHMR to the BSP value + * drm/i915: Avoid NULL dereference with component_only tv_modes + * drm/i915: PineView only has LVDS and CRT ports + * drm/i915: Fix LVDS stability issue on Ironlake + * mm: sigbus instead of abusing oom + * ipvs: zero usvc and udest + * jffs2: Fix long-standing bug with symlink garbage collection. + * intel-iommu: Detect DMAR in hyperspace at probe time. + * intel-iommu: Apply BIOS sanity checks for interrupt remapping too. + * intel-iommu: Check for an RMRR which ends before it starts. + * intel-iommu: Fix oops with intel_iommu=igfx_off + * intel-iommu: ignore page table validation in pass through mode + * netfilter: xtables: document minimal required version + * perf_event: Fix incorrect range check on cpu number + * implement early_io{re,un}map for ia64 + * Linux 2.6.32.2 + + -- Andy Whitcroft Thu, 07 Jan 2010 15:28:43 +0000 + +linux (2.6.32-9.13) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_B43_PHY_LP + - LP: #493059 + * include modules.builtin in the binary debs + * config-check -- add a configuration enforcer + * config-check -- add a unit-test suite to the checker + * [Config] Enable CONFIG_SYN_COOKIES for versatile + * [Config] Enable CONFIG_SECURITY_SMACK for ports + * [Config] Enable CONFIG_SECURITY_FILE_CAPABILITIES for ports + * [Config] Disable CONFIG_COMPAT_BRK for ports + * getabis -- add armel versatile to the list + + [ Brad Figg ] + + * SAUCE: Increase the default prealloc buffer for HDA audio devices + (non-modem) + + [ Manoj Iyer ] + + * ubuntu: onmibook -- Added missing BOM file + + [ Tim Gardner ] + + * ubuntu: fsam7400 -- Cleanup Makefile + + [ Upstream Kernel Changes ] + + * Revert "ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT" + * signal: Fix alternate signal stack check + * SCSI: scsi_lib_dma: fix bug with dma maps on nested scsi objects + * SCSI: osd_protocol.h: Add missing #include + * SCSI: megaraid_sas: fix 64 bit sense pointer truncation + * ext4: fix potential buffer head leak when add_dirent_to_buf() returns + ENOSPC + * ext4: avoid divide by zero when trying to mount a corrupted file system + * ext4: fix the returned block count if EXT4_IOC_MOVE_EXT fails + * ext4: fix lock order problem in ext4_move_extents() + * ext4: fix possible recursive locking warning in EXT4_IOC_MOVE_EXT + * ext4: plug a buffer_head leak in an error path of ext4_iget() + * ext4: make sure directory and symlink blocks are revoked + * ext4: fix i_flags access in ext4_da_writepages_trans_blocks() + * ext4: journal all modifications in ext4_xattr_set_handle + * ext4: don't update the superblock in ext4_statfs() + * ext4: fix uninit block bitmap initialization when s_meta_first_bg is + non-zero + * ext4: fix block validity checks so they work correctly with meta_bg + * ext4: avoid issuing unnecessary barriers + * ext4: fix error handling in ext4_ind_get_blocks() + * ext4: make trim/discard optional (and off by default) + * ext4: make "norecovery" an alias for "noload" + * ext4: Fix double-free of blocks with EXT4_IOC_MOVE_EXT + * ext4: initialize moved_len before calling ext4_move_extents() + * ext4: move_extent_per_page() cleanup + * jbd2: Add ENOMEM checking in and for + jbd2_journal_write_metadata_buffer() + * ext4: Return the PTR_ERR of the correct pointer in + setup_new_group_blocks() + * ext4: Avoid data / filesystem corruption when write fails to copy data + * ext4: wait for log to commit when umounting + * ext4: remove blocks from inode prealloc list on failure + * ext4: ext4_get_reserved_space() must return bytes instead of blocks + * ext4: quota macros cleanup + * ext4: fix incorrect block reservation on quota transfer. + * ext4: Wait for proper transaction commit on fsync + * ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT + * ext4: Fix potential fiemap deadlock (mmap_sem vs. i_data_sem) + * Linux 2.6.32.1 + * kbuild: generate modules.builtin + * (pre-stable) drm/i915: Fix sync to vblank when VGA output is turned off + - LP: #494461 + * (pre-stable) drm/i915: Avoid NULL dereference with component_only + tv_modes + - LP: #494045 + + [ Zhao Yakui ] + + * (pre-stable) acpi: Use the ARB_DISABLE for the CPU which model id is + less than 0x0f. + - LP: #481765 + + -- Andy Whitcroft Thu, 17 Dec 2009 15:41:21 +0000 + +linux (2.6.32-8.12) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: AppArmor -- add linux/err.h for ERR_PTR + + -- Andy Whitcroft Sat, 12 Dec 2009 10:56:16 +0000 + +linux (2.6.32-8.11) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: default ATI Radeon KMS to off until userspace catches + up" + * Revert "SAUCE: AppArmor: Fix oops there is no tracer and doing unsafe + transition." + * Revert "SAUCE: AppArmor: Fix refcounting bug causing leak of creds" + * Revert "SAUCE: AppArmor: Fix cap audit_caching preemption disabling" + * Revert "SAUCE: AppArmor: Fix Oops when in apparmor_bprm_set_creds" + * Revert "SAUCE: AppArmor: Fix oops after profile removal" + * Revert "SAUCE: AppArmor: AppArmor disallows truncate of deleted files." + * Revert "SAUCE: AppArmor: AppArmor fails to audit change_hat correctly" + * Revert "SAUCE: AppArmor: Policy load and replacement can fail to alloc + mem" + * Revert "SAUCE: AppArmor: AppArmor wrongly reports allow perms as + denied" + * Revert "SAUCE: AppArmor: Fix mediation of "deleted" paths" + * Revert "SAUCE: AppArmor: Fix off by 2 error in getprocattr mem + allocation" + * Revert "SAUCE: AppArmor: Set error code after structure + initialization." + * Revert "AppArmor -- fix pstrace_may_access rename" + * Revert "ubuntu: AppArmor security module" + * Revert "SAUCE: Add config option to set a default LSM" + * Revert "ubuntu: fsam7400 -- sw kill switch driver" + * Revert "[Config] fsam7400 -- enable" + * Revert "[Config] AUFS -- enable" + * Revert "ubuntu: AUFS -- aufs2-30 20090727" + * Revert "ubuntu: AUFS -- export various core functions -- fixes" + * Revert "ubuntu: AUFS -- export various core functions" + * Revert "[Config] ubuntu/iscsitarget -- disable" + * Revert "[Config] iscsitarget -- enable" + * Revert "ubuntu: iscsitarget -- SVN revision r214" + * update Vcs-Git to point to the correct repository + - LP: #493589 + * update build environment overrides to lucid + - LP: #493589 + * [Config] enable CONFIG_DEVTMPFS + * [Config] update all configs following AppArmor 2009-12-08 update + * SAUCE: isapnp_init: make isa PNP scans occur async + * [Config] fsam7400 -- enable + * [Config] omnibook -- enable + * [Config] cleanup CONFIG_AUDIT + * ubuntu: AUFS -- export various core functions (aufs2-base.patch) + * ubuntu: AUFS -- export various core functions (aufs2-standalone.patch) + * ubuntu: AUFS -- aufs2 20091209 + * [Config] AUFS -- enable + * [Config] iscsitarget -- enable + + [ Arjan van de Ven ] + + * SAUCE: KMS: cache the EDID information of the LVDS + + [ Colin Watson ] + + * bnx2: update d-i firmware filenames + - LP: #494052 + * add cdc_ether to nic-usb-modules udeb + - LP: #495060 + + [ John Johansen ] + + * ubuntu: AppArmor -- mainline 2009-10-08 + + [ Manoj Iyer ] + + * ubuntu: fsam7400 -- kill switch for Fujitsu Siemens Amilo M 7400 + * ubuntu: omnibook -- support Toshiba (HP) netbooks + * ubuntu: iscsitarget --- version 1.4.19 + - LP: #494693 + + [ Surbhi Palande ] + + * SAUCE: Make populate_rootfs asynchronous + + [ Tim Gardner ] + + * Parallelize flavour builds and packaging + * [Config] Enable CONFIG_KSM + + [ Upstream Kernel Changes ] + + * Config option to set a default LSM + * LSM: Add security_path_chroot(). + * LSM: Add security_path_chroot(). + * LSM: Move security_path_chmod()/security_path_chown() to after + mutex_lock(). + * ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT + + -- Andy Whitcroft Fri, 11 Dec 2009 17:45:19 +0000 + +linux (2.6.32-7.10) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable CONFIG_THUMB2_KERNEL to fix arm FTBFS + + -- Andy Whitcroft Sun, 06 Dec 2009 12:56:48 +0000 + +linux (2.6.32-7.9) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: set /proc/acpi/video/*/DOS to 4 by default + - LP: #458982 + * SAUCE: ensure vga16fb loads if no other driver claims the VGA device + * [Config] update configs following versatile switch to V7 + * rebased to v2.6.32 + * [Config] update configs following rebase to v2.6.32 + * [Config] update ports configs following rebase to v2.6.32 + * SAUCE: default ATI Radeon KMS to off until userspace catches up + + [ Arjan van de Ven ] + + * SAUCE: vfs: Add a trace point in the mark_inode_dirty function + + [ Leann Ogasawara ] + + * [SCSI] megaraid_sas: remove sysfs poll_mode_io world writeable + permissions + - CVE-2009-3939 + + [ Loic Minier ] + + * SAUCE: select a v7 CPU for versatile + + [ Takashi Iwai ] + + * SAUCE: ALSA: hda - Add power on/off counter + + [ Upstream changes ] + + * rebased to v2.6.32 + + -- Andy Whitcroft Fri, 04 Dec 2009 10:44:50 +0000 + +linux (2.6.32-6.8) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable SSB devices for armel + + -- Andy Whitcroft Sat, 28 Nov 2009 12:16:40 +0000 + +linux (2.6.32-6.7) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: default ATI Radeon KMS to off until userspace catches up" + * Revert "SAUCE: Dell XPS710 reboot quirk" + * Revert "SAUCE: Link acpi-cpufreq.o first" + * Revert "SAUCE: LPIA Logical reset of USB port on resume" + * Revert "SAUCE: LPIA Reboot fix for Intel Crownbeach development boards" + * Revert "SAUCE: Enable HDMI audio codec on Studio XPS 1340" + * Revert "SAUCE: Dell laptop digital mic does not work, PCI 1028:0271" + * Revert "Add Dell Dimension 9200 reboot quirk" + * Revert "SAUCE: Correctly blacklist Thinkpad r40e in ACPI" + * Revert "SAUCE: tulip: Define ULI PCI ID's" + * Revert "SAUCE: Lower warning level of some PCI messages" + * Revert "mac80211: fix two issues in debugfs" + Drop a number of known redundant commits as identified in the Ubuntu + delta review blueprint. + + * reenable armel versatile flavour + * [Config] disable CONFIG_USB_DEVICEFS + + [ Tim Gardner ] + + * [Config] udeb: Add squashfs to fs-core-modules + - LP: #352615 + * [Config] Create a real squashfs udeb + - LP: #352615 + + + -- Andy Whitcroft Fri, 27 Nov 2009 17:31:16 +0000 + +linux (2.6.32-5.6) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc8 + * update configs following rebase to v2.6.32-rc8 + * update ports configs since rebase to v2.6.32-rc8 + * [Config] enable cgroup options + - LP: #480739 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc8 + + -- Andy Whitcroft Mon, 23 Nov 2009 11:16:14 +0000 + +linux (2.6.32-4.5) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] SERIO_LIBPS2 and SERIO_I8042 must match + * rebase to v2.6.32-rc7 + * resync with Karmic proposed + + [ John Johansen ] + + * SAUCE: AppArmor: Fix oops after profile removal + - LP: #475619 + * SAUCE: AppArmor: Fix Oops when in apparmor_bprm_set_creds + - LP: #437258 + * SAUCE: AppArmor: Fix cap audit_caching preemption disabling + - LP: #479102 + * SAUCE: AppArmor: Fix refcounting bug causing leak of creds + - LP: #479115 + * SAUCE: AppArmor: Fix oops there is no tracer and doing unsafe + transition. + - LP: #480112 + + [ Ubuntu Changes ] + + * resync with Karmic proposed (ddbc670a86a3dee18541a3734149f250ff307adf) + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc7 + + -- Andy Whitcroft Fri, 13 Nov 2009 11:35:13 +0000 + +linux (2.6.32-3.4) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] SERIO_LIBPS2 and SERIO_I8042 must match + * [Upstream] add local prefix to oss local change_bits + + [ Upstream Kernel Changes ] + + * mtd/maps: gpio-addr-flash: pull in linux/ headers rather than asm/ + * mtd/maps: gpio-addr-flash: depend on GPIO arch support + + -- Andy Whitcroft Wed, 11 Nov 2009 14:47:04 +0000 + +linux (2.6.32-3.3) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc6 + * [Config] update configs following rebase to v2.6.32-rc6 + * [Config] update ports configs following rebase to v2.6.32-rc6 + * resync with Karmic Ubuntu-2.6.31-15.49 + * [Config] add module ignores for broken drivers + + [ John Johansen ] + + * SAUCE: AppArmor: AppArmor wrongly reports allow perms as denied + - LP: #453335 + * SAUCE: AppArmor: Policy load and replacement can fail to alloc mem + - LP: #458299 + * SAUCE: AppArmor: AppArmor fails to audit change_hat correctly + - LP: #462824 + * SAUCE: AppArmor: AppArmor disallows truncate of deleted files. + - LP: #451375 + + [ Kees Cook ] + + * SAUCE: Fix nx_enable reporting + - LP: #454285 + + [ Scott James Remnant ] + + * Revert "SAUCE: trace: add trace_event for the open() syscall" + * SAUCE: trace: add trace events for open(), exec() and uselib() + - LP: #462111 + + [ Stefan Bader ] + + * SAUCE: Fix sub-flavour script to not stop on missing directories + - LP: #453073 + + [ Ubuntu Changes ] + + * resync with Karmic Ubuntu-2.6.31-15.49 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc6 + - LP: #464552 + + -- Andy Whitcroft Tue, 10 Nov 2009 15:00:57 +0000 + +linux (2.6.32-2.2) lucid; urgency=low + + [ Andy Whitcroft ] + + * install the full changelog with the binary package + * changelog -- explicitly note rebases and clean history + * reinstate armel.mk with no flavours + - LP: #449637 + * [Upstream] block: silently error unsupported empty barriers too + - LP: #420423 + * [Config] udate configs following karmic resync + * [Config] update ports configs following karmic resync + * [Upstream] lirc -- follow removal of .id element + + [ Colin Watson ] + + * Use section 'admin' rather than 'base' + * Add more e100 firmware to nic-modules + - LP: #451872 + * Add qla1280 firmware to scsi-modules + - LP: #381037 + + [ John Johansen ] + + * SAUCE: AppArmor: Set error code after structure initialization. + - LP: #427948 + * SAUCE: AppArmor: Fix off by 2 error in getprocattr mem allocation + - LP: #446595 + * SAUCE: AppArmor: Fix mediation of "deleted" paths + + [ Kees Cook ] + + * SAUCE: [x86] fix report of cs-limit nx-emulation + - LP: #454285 + + [ Leann Ogasawara ] + + * SAUCE: (drop after 2.6.31) input: Add support for filtering input + events + - LP: #430809 + * SAUCE: (drop after 2.6.31) dell-laptop: Trigger rfkill updates on wifi + toggle switch press + - LP: #430809 + + [ Luke Yelavich ] + + * SAUCE: Add sr_mod to the scsi-modules udeb for powerpc + * [Config] Add sd_mod to scsi-modules udeb for powerpc + + [ Mario Limonciello ] + + * SAUCE: Update to LIRC 0.8.6 + - LP: #432678 + * SAUCE: dell-laptop: Store the HW switch status internally rather than + requerying every time + - LP: #430809 + * SAUCE: dell-laptop: Blacklist machines not supporting dell-laptop + - LP: #430809 + + [ Stefan Bader ] + + * [Upstream] acerhdf: Limit modalias matching to supported boards + - LP: #435958 + + [ Tim Gardner ] + + * [Upstream] i915: Fix i2c init message + - LP: #409361 + * [Config] Add sym53c8xx.ko to virtual sub-flavour + - LP: #439415 + * [Config] Add d101m_ucode.bin to d-i/firmware/nic-modules + - LP: #439456 + * [Config] Set default I/O scheduler back to CFQ for desktop flavours + - LP: #381300 + * SAUCE: Created MODULE_EXPORT/MODULE_IMPORT macros + - LP: #430694 + * SAUCE: Use MODULE_IMPORT macro to tie intel_agp to i915 + - LP: #430694 + * [Config] CONFIG_GFS2_FS_LOCKING_DLM=y + - LP: #416325 + * SAUCE: Fix MODULE_IMPORT/MODULE_EXPORT + - LP: #430694 + * SAUCE: Raise the default console 'quiet' level to 2 + * [Config] CONFIG_X86_PAT=y + * [Config] Add armel arch to linux-libc-dev arches. + - LP: #449637 + * [Config] CONFIG_X86_MCE + * [Upstream] (drop after 2.6.31) Input: synaptics - add another Protege + M300 to rate blacklist + - LP: #433801 + + [ Upstream Kernel Changes ] + + * sgi-gru: Fix kernel stack buffer overrun, CVE-2009-2584 + * drm/i915: Fix FDI M/N setting according with correct color depth + - LP: #416792 + + -- Andy Whitcroft Thu, 22 Oct 2009 16:53:33 +0100 + +linux (2.6.32-1.1) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc3 + * [Config] update configs following rebase to 2.6.32-rc3 + * [Config] update ports configs following rebase to 2.6.32-rc3 + * AppArmor -- fix pstrace_may_access rename + * staging/android -- disable + * ubuntu: dm-raid-45 -- update to compile with 2.6.32 + * ubuntu: drbd -- disable + * staging/comdi -- disable + * staging/go7007 -- disable + * [Config] staging/winbond -- disable + * [Config] ubuntu/iscsitarget -- disable + * [d-i] cbc and ecb are builtin make them optional in udebs + * rebase to v2.6.32-rc5 + * [Config] update configs following rebase to v2.6.32-rc5 + * [Config] update ports configs following rebase to v2.6.31-rc5 + + [ Tim Gardner ] + + * [Config] Add cpio as a build dependency. + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc3 + * rebase to v2.6.32-rc5 + + -- Andy Whitcroft Mon, 05 Oct 2009 15:48:58 +0100 + +linux (2.6.31-11.37) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Increase kernel log buffer to 256K for amd64 flavours + - LP: #424810 + * [Config] Set HZ=100 for amd64 flavours + - LP: #438234 + * [Upstream] e1000e: Emit notice instead of an error when + pci_enable_pcie_error_reporting() fails + - LP: #436370 + + [ Upstream Kernel Changes ] + + * n_tty: honor opost flag for echoes + * n_tty: move echoctl check and clean up logic + - LP: #438310 + + * Revert "[Upstream] drm/i915: Check that the relocation points to within + the target" - Use upstream cherry-pick. + * drm/i915: Check that the relocation points to within the target + - LP: #429241 + + * drm/i915: fix tiling on IGDNG + * drm/i915: add B43 chipset support + * agp/intel: Add B43 chipset support + Intel request from kernel team mailing list. + + * HID: completely remove apple mightymouse from blacklist + - LP: #428111 + + -- Tim Gardner Mon, 28 Sep 2009 11:47:29 -0600 + +linux (2.6.31-11.36) karmic; urgency=low + + [ Brian Rogers ] + + * SAUCE: (drop after 2.6.31) em28xx: ir-kbd-i2c init data needs a + persistent object + * SAUCE: (drop after 2.6.31) saa7134: ir-kbd-i2c init data needs a + persistent object + + [ Takashi Iwai ] + + * [Upstream] ALSA: hda - Add another entry for Nvidia HDMI device + - LP: #416482 + + [ Tyler Hicks ] + + * SAUCE: (drop after 2.6.31) eCryptfs: Prevent lower dentry from going + negative during unlink + + [ Upstream Kernel Changes ] + + * sg: fix oops in the error path in sg_build_indirect() + * mpt2sas : Rescan topology from Interrupt context instead of work thread + * mpt2sas: Prevent sending command to FW while Host Reset + * mpt2sas: setting SDEV into RUNNING state from Interrupt context + * mpt2sas: Raid 10 Volume is showing as Raid 1E in dmesg + * SCSI: fix oops during scsi scanning + * SCSI: libsrp: fix memory leak in srp_ring_free() + * cfg80211: fix looping soft lockup in find_ie() + * ath5k: write PCU registers on initial reset + * binfmt_elf: fix PT_INTERP bss handling + * TPM: Fixup boot probe timeout for tpm_tis driver + * md: Fix "strchr" [drivers/md/dm-log-userspace.ko] undefined! + * x86/amd-iommu: fix broken check in amd_iommu_flush_all_devices + * fix undefined reference to user_shm_unlock + * perf_counter: Fix buffer overflow in perf_copy_attr() + * perf_counter: Start counting time enabled when group leader gets + enabled + * powerpc/perf_counters: Reduce stack usage of power_check_constraints + * powerpc: Fix bug where perf_counters breaks oprofile + * powerpc/ps3: Workaround for flash memory I/O error + * block: don't assume device has a request list backing in nr_requests + store + * agp/intel: remove restore in resume + * ALSA: cs46xx - Fix minimum period size + * ASoC: Fix WM835x Out4 capture enumeration + * sound: oxygen: work around MCE when changing volume + * mlx4_core: Allocate and map sufficient ICM memory for EQ context + * perf stat: Change noise calculation to use stddev + * x86: Fix x86_model test in es7000_apic_is_cluster() + * x86/i386: Make sure stack-protector segment base is cache aligned + * PCI: apply nv_msi_ht_cap_quirk on resume too + * x86, pat: Fix cacheflush address in change_page_attr_set_clr() + * ARM: 5691/1: fix cache aliasing issues between kmap() and kmap_atomic() + with highmem + * KVM guest: do not batch pte updates from interrupt context + * KVM: Fix coalesced interrupt reporting in IOAPIC + * KVM: VMX: Check cpl before emulating debug register access + * KVM guest: fix bogus wallclock physical address calculation + * KVM: x86: Disallow hypercalls for guest callers in rings > 0 + * KVM: VMX: Fix cr8 exiting control clobbering by EPT + * KVM: x86 emulator: Implement zero-extended immediate decoding + * KVM: MMU: make __kvm_mmu_free_some_pages handle empty list + * KVM: x86 emulator: fix jmp far decoding (opcode 0xea) + * KVM: limit lapic periodic timer frequency + * libata: fix off-by-one error in ata_tf_read_block() + * PCI quirk: update 82576 device ids in SR-IOV quirks list + * PCI: Unhide the SMBus on the Compaq Evo D510 USDT + * powerpc/pseries: Fix to handle slb resize across migration + * Linux 2.6.31.1 + + -- Tim Gardner Thu, 24 Sep 2009 13:04:28 -0600 + +linux (2.6.31-10.35) karmic; urgency=low + + [ Amit Kucheria ] + + * Disable CONFIG_UEVENT_HELPER_PATH + + [ Andy Whitcroft ] + + * [Config] Enable CONFIG_USB_GADGET_DUMMY_HCD + * remove the tlsup driver + * remove lmpcm logitech driver support + + [ Bryan Wu ] + + * Add 3 missing files to prerm remove file list + - LP: #345623, #415832 + + [ Chris Wilson ] + + * [Upstream] drm/i915: Check that the relocation points to within the + target + - LP: #429241 + + [ Luke Yelavich ] + + * [Config] Set CONFIG_EXT4_FS=y on ports architectures + + [ Manoj Iyer ] + + * SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + - LP: #348861 + + [ Tim Gardner ] + + * Revert "[Upstream] ACPI: Add Thinkpad W500, W700, & W700ds to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad R400 & Thinkpad R500 to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad X300 & Thinkpad X301 to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad X200, X200s, X200t to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad T400 & Thinkpad T500 to OSI(Linux) white-list" + Upstream suggests that this is not the right approach. + + * [Config] Set default I/O scheduler to DEADLINE + CFQ seems to have some load related problems which are often exacerbated by sreadahead. + - LP: #381300 + + [ ubuntu@tjworld.net ] + + * SAUCE: ipw2200: Enable LED by default + - LP: #21367 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Add support for new AMD HD audio devices + - LP: #430564 + + -- Andy Whitcroft Wed, 16 Sep 2009 15:37:49 +0100 + +linux (2.6.31-10.34) karmic; urgency=low + + [ Ted Tso ] + + * [Upstream] ext3: Don't update superblock write time when filesystem is + read-only + - LP: #427822 + + -- Tim Gardner Tue, 15 Sep 2009 16:00:45 -0600 + +linux (2.6.31-10.33) karmic; urgency=low + + [ Leann Ogasawara ] + + * [Upstream] dvb-usb: fix tuning with Cinergy T2 + - LP: #421258 + + [ Tim Gardner ] + + * [Config] Unconditionally copy files from sub-flavours lists. + (really, really fix it this time) + - LP: #423426 + * [Config] Set CONFIG_CACHEFILES=m for all flavours + + [ Upstream Kernel Changes ] + + * ext4: Don't update superblock write time when filesystem is read-only + - LP: #427822 + + -- Tim Gardner Tue, 15 Sep 2009 07:50:21 -0600 + +linux (2.6.31-10.32) karmic; urgency=low + + [ Eric Miao ] + + * [Config] enable module support for memory stick + - LP: #159951 + + [ Tim Gardner ] + + * [Config] Unconditionally copy files from sub-flavours lists. + - LP: #423426 + + -- Tim Gardner Thu, 10 Sep 2009 15:57:55 -0600 + +linux (2.6.31-10.31) karmic; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.31 final + + [ Colin Watson ] + + * [Config] Recommend grub-pc in linux-image + - LP: #385741 + + [ Ike Panhc ] + + * [Upstream] Pull latest update of lenovo-sl-laptop + + [ Peter Feuerer ] + + * [Upstream] (drop after 2.6.31) acerhdf: fix fan control for AOA150 + model + - LP: #426691 + + [ Tim Gardner ] + + * [Config] De-macro some package names. + + [ Upstream Changes ] + + * rebase to 2.6.31 final. + + -- Andy Whitcroft Thu, 10 Sep 2009 09:38:10 +0100 + +linux (2.6.31-10.30) karmic; urgency=low + + [ Amit Kucheria ] + + * [Config] Enable CONFIG_USB_DEVICEFS + - LP: #417748 + * [Config] Populate the config-update template a bit more + + [ Andy Whitcroft ] + + * rebase to v2.6.31-rc9 + * [Config] update configs following rebase to v2.6.31-rc9 + * [Config] update ports configs following rebase to v2.6.31-rc9 + + [ Colin Ian King ] + + * SAUCE: wireless: hostap, fix oops due to early probing interrupt + - LP: #254837 + + [ Jerone Young ] + + * [Upstream] ACPI: Add Thinkpad T400 & Thinkpad T500 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad X200, X200s, X200t to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad X300 & Thinkpad X301 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad R400 & Thinkpad R500 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad W500, W700, & W700ds to OSI(Linux) + white-list + - LP: #281732 + + [ John Johansen ] + + * SAUCE: AppArmor: Fix profile attachment for regexp based profile names + - LP: #419308 + * SAUCE: AppArmor: Return the correct error codes on profile + addition/removal + - LP: #408473 + * SAUCE: AppArmor: Fix OOPS in profile listing, and display full list + - LP: #408454 + * SAUCE: AppArmor: Fix mapping of pux to new internal permission format + - LP: #419222 + * SAUCE: AppArmor: Fix change_profile failure + - LP: #401931 + * SAUCE: AppArmor: Tell git to ignore generated include files + - LP: #419505 + + [ Stefan Bader ] + + * [Upstream] acpi: video: Loosen strictness of video bus detection code + - LP: #333386 + * SAUCE: Remove ov511 driver from ubuntu subdirectory + + [ Tim Gardner ] + + * [Config] Exclude char-modules from non-x86 udeb creation + * SAUCE: Notify the ACPI call chain of AC events + * [Config] CONFIG_SATA_VIA=m + - LP: #403385 + * [Config] Build in all phylib support modules. + * [Config] Don't fail when sub-flavour files are missing + - LP: #423426 + * [Config] Set CONFIG_LSM_MMAP_MIN_ADDR=0 + - LP: #423513 + + [ Upstream ] + + * Rebased against v2.6.31-rc9 + + -- Andy Whitcroft Mon, 07 Sep 2009 11:33:45 +0100 + +linux (2.6.31-9.29) karmic; urgency=low + + [ Leann Ogasawara ] + + * [Upstream] agp/intel: support for new chip variant of IGDNG mobile + - LP: #419993 + * [Config] d-i/modules: Add new char-modules file, initialize with + intel-agp + - LP: #420605 + + [ Upstream ] + + * Rebased against 2.6.31-rc8 plus some inotify regression patches: + up through git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git + adda766193ea1cf3137484a9521972d080d0b7af. + + -- Tim Gardner Fri, 28 Aug 2009 06:31:30 -0600 + +linux (2.6.31-8.28) karmic; urgency=low + + [ Ike Panhc ] + + * [Config] Let nic-shared-modules depends on crypto-modules + - LP: #360966 + + [ Leann Ogasawara ] + + * [Upstream] (drop after 2.6.31) drm/i915: increase default latency + constant + - LP: #412492 + + [ Mario Limonciello ] + + * [Upstream]: (drop after 2.6.31) dell-laptop: don't change softblock + status if HW switch is disabled + - LP: #418721 + * [Upstream]: (drop after 2.6.31) compal-laptop: Add support for known + Compal made Dell laptops + * [Upstream]: (drop after 2.6.31) compal-laptop: Replace sysfs support + with rfkill support + + [ Tim Gardner ] + + * [Config] Add acpiphp to virtual sub-flavour + - LP: #364916 + * Drop KSM patch set for now because of instabilities with encrypted swap. + - LP: #418781 + + -- Tim Gardner Wed, 26 Aug 2009 08:14:26 -0600 + +linux (2.6.31-7.27) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] updateconfigs updateportsconfigs after 2.6.31-rc7 rebase + * SAUCE: (drop after 2.6.31) Added KSM from mmotm-2009-08-20-19-18 + Replaces previous ksm patches from 2.6.31-6.25 + * [Config] KSM=y + + [ Upstream ] + + * Rebased against v2.6.31-rc7 + + -- Tim Gardner Sat, 22 Aug 2009 20:32:11 -0600 + +linux (2.6.31-6.26) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_AUFS_BR_RAMFS + - LP: #414738 + * split out debian directory ready for abstraction + * add printdebian target to find branch target + * abstracted debian -- debian/files is not abstracted + * abstracted debian -- packages must be built in debian/ + * abstracted debian -- kernel-wedge needs to work in debian/ + * abstracted debian -- ensure we install the copyright file + * abstracted-debian -- drop the debian directories from headers + * abstracted-debian -- drop the debian directories from headers part 2 + * SAUCE: ubuntu-insert-changes -- follow abstracted debian + * [Upstream] aoe: ensure we initialise the request_queue correctly V2 + - LP: #410198 + + [ Luke Yelavich ] + + * [Config] Ports: Disable CONFIG_CPU_FREQ_DEBUG on powerpc-smp + * [Config] Ports: Re-enable windfarm modules on powerpc64-smp + - LP: #413150 + * [Config] Ports: Build all cpu frequency scaling governors into ports + kernels + * [Config] Ports: Build ext2 and ext3 modules into ports kernels + * [Config] Ports: CONFIG_PACKET=y for all ports kernels + * [Config] Ports: Enable PS3 network driver + + [ Stefan Bader ] + + * abstracted debian -- call $(DEBIAN)/rules using make + + [ Tim Gardner ] + + * [Config] Abstract the debian directory + * SAUCE: Improve error reporting in postinst + - LP: #358564 + + -- Tim Gardner Sun, 16 Aug 2009 20:33:28 -0600 + +linux (2.6.31-6.25) karmic; urgency=low + + [ Andy Whitcroft ] + + * script to generate Ubuntu changes from changelog + * [Config] standardise ANDROID options + * [Config] standardise CONFIG_ATM as module + * [Config] standardise CONFIG_LIB80211 as module + * [Config] disable CONFIG_PRINT_QUOTA_WARNING + * [Config] set CONFIG_CRAMFS as module + * [Config] enable CONFIG_DAB and modules + * [Config] set CONFIG_MAC80211_HWSIM as module + * [Config] set CONFIG_NET_CLS_FLOW as module + * [Config] set CONFIG_NF_CONNTRACK_SANE as module + * [Config] set CONFIG_NF_CT_PROTO_DCCP as module + * [Config] set CONFIG_RTC_DRV_DS1511 as module + * [Config] set CONFIG_RTC_DRV_R9701 as module + * [Config] set CONFIG_RTC_DRV_S35390A as module + * [Config] set CONFIG_TOIM3232_DONGLE as module + * [Config] standardise CONFIG_USB_MIDI_GADGET as module + * [Config] standardise CONFIG_USB_G_PRINTER as module + * [Config] standardise CONFIG_USB_SERIAL_IR as module + * [Config] set CONFIG_USB_SERIAL_IUU as module + * [Config] standardise CONFIG_USB_STORAGE_CYPRESS_ATACB as module + * [Config] standardise CONFIG_USB_STORAGE_ONETOUCH as module + * cleanup remains of dm-loop + * drop thinkpad ec and smapi support + * drop appleir + * [Config] update configs following rebase to v2.6.31-rc6 + * rebase to v2.6.31-rc6 + + [ Hugh Dickins ] + + * SAUCE: ksm patch 1, drop after 2.6.31 + * SAUCE: ksm patch 2, drop after 2.6.31 + * SAUCE: ksm patch 3, drop after 2.6.31 + * SAUCE: ksm patch 4, drop after 2.6.31 + * SAUCE: ksm patch 5, drop after 2.6.31 + * SAUCE: ksm patch 7, drop after 2.6.31 + + [ Izik Eidus ] + + * SAUCE: ksm patch 0, drop after 2.6.31 + * SAUCE: ksm patch 6, drop after 2.6.31 + * SAUCE: ksm patch 8, drop after 2.6.31 + * SAUCE: ksm patch 9, drop after 2.6.31 + + [ Luke Yelavich ] + + * [Config] Ports: Re-add PS3 modules to udebs + + [ Michael Casadevall ] + + * [Config] Update SPARC config and d-i files to reflect what can be built + + [ Tim Gardner ] + + * [Config] Removed armel package support + * [Config] Enabled CONFIG_KSM=y + + [ Upstream Kernel Changes ] + + * Rebased against v2.6.31-rc6 + * ARM: Cleanup: Revert "ARM: Add more cache memory types macros" + * ARM: Cleanup: Revert "Do not use OOB with MLC NAND" + * ARM: Cleanup: Revert "ARM: Make ARM arch aware of ubuntu/ drivers" + * ARM: Cleanup: Revert "ARM: IMX51: Make video capture drivers compile" + * ARM: Cleanup: Revert "ARM: IMX51: Fix isl29003 HWMON driver for i2c + changes" + * ARM: Cleanup: Revert "ARM: IMX51: IPU irq handler deadlock fix" + * ARM: Cleanup: Revert "ARM: IMX51: Babbage 2.5 needs a different system + revision" + * ARM: Cleanup: Revert "ARM: IMX51: Compile-in the IMX51 cpufreq driver + by default" + * ARM: Cleanup: Revert "ARM: IMX51: Enable ZONE_DMA for ARCH_MXC" + * ARM: Cleanup: Revert "ARM: IMX51: Make ARCH_MXC auto-enable + ARCH_MXC_CANONICAL" + * ARM: Cleanup: Revert "ARM: IMX51: Unconditionally disable + CONFIG_GPIOLIB" + * ARM: Cleanup: Revert "ARM: IMX51: Minimal changes for USB to work on + 2.6.31" + * ARM: Cleanup: Revert "ARM: IMX51: Fix plat-mxc/timer.c to handle imx51" + * ARM: Cleanup: Revert "ARM: IMX51: Make it compile." + * ARM: Cleanup: Revert "ARM: IMX51: Clean-up the craziness of including + mxc_uart.h _everywhere_" + * ARM: Cleanup: Revert "ARM: IMX51: Move board-mx51* header files to the + correct location" + * ARM: Cleanup: Revert "ARM: IMX51: Changed from snd_card_new to + snd_card_create" + * ARM: Cleanup: Revert "ARM: IMX51: Fix up merge error in Kconfig" + * ARM: Cleanup: Revert "ARM: IMX51: mxc_timer_init prototype" + * ARM: Cleanup: Revert "ARM: IMX51: Removed the mxc_gpio_port structure." + * ARM: Cleanup: Revert "ARM: IMX51: Added external declaration for + mxc_map_io." + * ARM: Cleanup: Revert "ARM: IMX51: Get to bus_id by calling dev_name." + * ARM: Cleanup: Revert "ARM: IMX51: Get to bus_id by calling dev_name." + * ARM: Cleanup: Revert "ARM: IMX51: snd_soc_machine structure replaced + with snd_soc_card." + * ARM: Cleanup: Revert "ARM: IMX51: codec structure was moved to the card + structure" + * ARM: Cleanup: Revert "ARM: IMX51: Hack to add defines for + DMA_MODE_READ/WRITE/MASK" + * ARM: Cleanup: Revert "ARM: IMX51: Add SoC and board support for + Freescale mx51 platform" + * Driver core: add new device to bus's list before probing + * [Upstream] (drop after 2.6.31) ALSA: hda - Reduce click noise at + power-saving + - LP: #381693, #399750, #380892 + + -- Andy Whitcroft Fri, 14 Aug 2009 11:32:23 +0100 + +linux (2.6.31-5.24) karmic; urgency=low + + [ Amit Kucheria ] + + * ARM: IMX51: Make video capture drivers compile + * [Config] IMX51: Config updates + + [ Andy Whitcroft ] + + * remove leftovers of dm-bbr + + [ Leann Ogasawara ] + + * Add pata_cs5535 to pata-modules + - LP: #318805 + + [ Luke Yelavich ] + + * [Config] CONFIG_PPC64=y for powerpc64-smp + * [Config] Set the maximum number of CPUs to 1024 for powerpc64-smp + * [Config] CONFIG_PPC_PS3=y for powerpc64-smp + * [Config] CONFIG_PPC_MAPLE=y on powerpc64-smp + * [Config] CONFIG_PPC_PASEMI=y on powerpc64-smp + * [Config] CONFIG_CPU_FREQ_PMAC64=y on powerpc64-smp + * [Config] Enable all PS3 drivers in powerpc64-smp + + [ Mario Limonciello ] + + * LIRC -- fix lirc-i2c 2.6.31 compilation + + [ Matthew Garrett ] + + * [Upstream] dell-laptop: Fix rfkill state queries + + [ Tim Gardner ] + + * [Config] Ignore armel ABI and module changes + * [Config] Update configs after rebase against 2.6.31-rc5 + + [ Upstream ] + + * Rebased to 2.6.31-rc5 + + -- Andy Whitcroft Tue, 28 Jul 2009 10:10:09 +0100 + +linux (2.6.31-4.23) karmic; urgency=low + + [ Andy Whitcroft ] + + * AUFS -- update to aufs2-30 20090727 + * [Config] enable AUFS FUSE support + + [ Luke Yelavich ] + + * [Config] CONFIG_JFS_FS=m on sparc + + [ Tim Gardner ] + + * [Upstream] dell-laptop: Fix rfkill state setting. + + -- Andy Whitcroft Mon, 27 Jul 2009 11:11:47 +0100 + +linux (2.6.31-4.22) karmic; urgency=low + + [ Amit Kucheria ] + + * ARM: IMX51: Add SoC and board support for Freescale mx51 platform + * ARM: IMX51: Move board-mx51* header files to the correct location + * ARM: IMX51: Clean-up the craziness of including mxc_uart.h _everywhere_ + * ARM: IMX51: Make it compile. + * ARM: IMX51: Unconditionally disable CONFIG_GPIOLIB + * ARM: IMX51: Make ARCH_MXC auto-enable ARCH_MXC_CANONICAL + * ARM: IMX51: Enable ZONE_DMA for ARCH_MXC + * ARM: IMX51: Compile-in the IMX51 cpufreq driver by default + * ARM: IMX51: Fix isl29003 HWMON driver for i2c changes + * ARM: USB: musb: Refer to musb_otg_timer_func under correct #ifdef + * ARM: staging: udlfb: Add vmalloc.h include + * UBUNTU [Config]: Bring imx51 config upto date with other flavours + + [ Brad Figg ] + + * ARM: IMX51: Hack to add defines for DMA_MODE_READ/WRITE/MASK + * ARM: IMX51: codec structure was moved to the card structure + * ARM: IMX51: snd_soc_machine structure replaced with snd_soc_card. + * ARM: IMX51: Get to bus_id by calling dev_name. + * ARM: IMX51: Get to bus_id by calling dev_name. + * ARM: IMX51: Added external declaration for mxc_map_io. + * ARM: IMX51: Removed the mxc_gpio_port structure. + * ARM: IMX51: mxc_timer_init prototype + * ARM: IMX51: Fix up merge error in Kconfig + * ARM: IMX51: Changed from snd_card_new to snd_card_create + + [ Dinh Nguyen ] + + * ARM: IMX51: Fix plat-mxc/timer.c to handle imx51 + * ARM: IMX51: Minimal changes for USB to work on 2.6.31 + * ARM: IMX51: Babbage 2.5 needs a different system revision + * ARM: IMX51: IPU irq handler deadlock fix + + [ Tim Gardner ] + + * [Config] Enabled CONFIG_CAN=m + - LP: #327243 + * [Config] Enabled CONFIG_SERIAL=m + - LP: #397189 + + -- Tim Gardner Fri, 24 Jul 2009 06:19:10 -0600 + +linux (2.6.31-4.21) karmic; urgency=low + + [ Amit Kucheria ] + + * dm-raid-4-5: Add missing brackets around test_bit() + + [ John Johansen ] + + * AppArmor: Fix change_profile failing lpn401931 + * AppArmor: Fix determination of forced AUDIT messages. + * AppArmor: Fix oops in auditing of the policy interface offset + + -- Andy Whitcroft Thu, 23 Jul 2009 19:18:30 +0100 + +linux (2.6.31-4.20) karmic; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: iscsitarget -- update to SVN revision r214 + * SAUCE: iscsitarget -- renable driver + * [Config] consolidate lpia/lpia and i386/generic configs + * [Config] enable CRYPTO modules for all architectures + * [Config] enable cryptoloop + * [Config] enable various filesystems for armel + * [Config] sync i386 generic and generic-pae + * [Config] add the 386 (486 processors and above) flavour + * [Config] re-set DEFAULT_MMAP_MIN_ADDR + - LP: #399914 + * add genconfigs/genportsconfigs to extract the built configs + * updateconfigs -- alter concatenation order allow easier updates + * intelfb -- INTELFB now conflicts with DRM_I915 + * printchanges -- rebase tree does not have stable tags use changelog + * AppArmor: fix argument size missmatch on 64 bit builds + + [ Ike Panhc ] + + * Ship bnx2x firmware in nic-modules udeb + - LP: #360966 + + [ Jeff Mahoney ] + + * AppArmor: fix build failure on ia64 + + [ John Johansen ] + + * AppArmour: ensure apparmor enabled parmater is off if AppArmor fails to + initialize. + * AppArmour: fix auditing of domain transitions to include target profile + information + * AppArmor: fix C99 violation + * AppArmor: revert reporting of create to write permission. + * SAUCE: Add config option to set a default LSM + * [Config] enable AppArmor by default + * AppArmor: Fix NULL pointer dereference oops in profile attachment. + + [ Keith Packard ] + + * SAUCE: drm/i915: Allow frame buffers up to 4096x4096 on 915/945 class + hardware + - LP: #351756 + + [ Luke Yelavich ] + + * [Config] add .o files found in arch/powerpc/lib to all powerpc kernel + header packages + - LP: #355344 + + [ Michael Casadevall ] + + * [Config] update SPARC config files to allow success build + + [ Scott James Remnant ] + + * SAUCE: trace: add trace_event for the open() syscall + + [ Stefan Bader ] + + * SAUCE: jfs: Fix early release of acl in jfs_get_acl + - LP: #396780 + + [ Tim Gardner ] + + * [Upstream] Fix Soltech TA12 volume hotkeys not sending key release + - LP: #397499 + * [Upstream] USB Option driver - Add USB ID for Novatel MC727/U727/USB727 + refresh + - LP: #365291 + * [Config] SSB/B44 are common across all arches/flavours. + + [ Upstream ] + + * Rebased to 2.6.31-rc4 + + -- Andy Whitcroft Thu, 23 Jul 2009 08:41:39 +0100 + +linux (2.6.31-3.19) karmic; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] Disabled NDISWRAPPER" + * ndiswrapper -- fix i386 compilation failures on cmpxchg8b + * AUFS -- export various core functions + * AUFS -- export various core functions -- fixes + * AUFS -- core filesystem + * AUFS -- track changes in v2.6.31 + * [Config] Enable AUFS + * droppped 'iwl3945: do not send scan command if channel count zero' as it + is already upstream but failed to auto-drop on rebase. + + [ Eric Paris ] + + * SAUCE: fsnotify: use def_bool in kconfig instead of letting the user + choose + * SAUCE: inotify: check filename before dropping repeat events + * SAUCE: fsnotify: fix inotify tail drop check with path entries + + -- Andy Whitcroft Tue, 14 Jul 2009 12:52:55 +0100 + +linux (2.6.31-3.18) karmic; urgency=low + + [ Andy Whitcroft ] + + * Revert "Add splice-2.6.23.patch from AUFS to export a symbol needed by + AUFS" + * Revert "Add put_filp.patch from AUFS to export a symbol needed by AUFS" + * Revert "Add sec_perm-2.6.24.patch from AUFS - export + security_inode_permission" + * clear out left over AUFS files and modifications + + [ Luke Yelavich ] + + * [Config] Enable CONFIG_USB_ISP116X_HCD on sparc + * SAUCE: Explicitly include header files to allow apparmor to build on + powerpc + * [Config] Enable CONFIG_BLK_DEV_IDECD on powerpc + + [ Tim Gardner ] + + * [Config] Dropped ubuntu/misc/wireless/acx + * [Config] Disabled NDISWRAPPER until the compile issues are fixed. + + [ Upstream ] + + * Rebased to 2.6.31-rc3 + + -- Andy Whitcroft Fri, 10 Jul 2009 18:59:33 +0100 + +linux (2.6.31-2.17) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_BLK_DEV_CRYPTOLOOP=m for sparc + * compcache -- remove redundant Kconfig entries part 2 + * compcache -- clean up CCFLAGS declarations + * [Config] enable AppArmor + * AppArmor: fix operator precidence issue in as_path_link + + [ John Johansen ] + + * AppArmor security module + * AppArmor: Correct mapping of file permissions. + * AppArmor: Turn auditing of ptrace on + + [ Luke Yelavich ] + + * [Config] disable CONFIG_DM_RAID45 on powerpc + + -- Andy Whitcroft Fri, 10 Jul 2009 15:02:05 +0100 + +linux (2.6.31-2.16) karmic; urgency=low + + [ Andy Whitcroft ] + + * compcache -- remove redundant Kconfig entries + added ignore and ignore.modules for all arches since the compcache update + changes the modules names as well as some compcache ABI values. + + [ Manoj Iyer ] + + * SAUCE: updated dm-raid45 module version to 2009.04.24 (2.6.30-rc3) + * SAUCE: update compcache version to 0.5.3 + + [ Tim Gardner ] + + * [Config]: Fix sparc FTBS by adding ignore.modules + + -- Tim Gardner Mon, 06 Jul 2009 13:35:29 -0600 + +linux (2.6.31-2.15) karmic; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: default ATI Radeon KMS to off until userspace catches up + * [Config] Update configs following rebase to 2.6.31-rc2 + * [Config] update ports configs following update to 2.6.31-rc2 + + [ Luke Yelavich ] + + * [Config] powerpc - Disable CONFIG_RDS + + [ Matt Zimmerman ] + + * Rename linux-doc-PKGVER to linux-doc and clean up its description + - LP: #382115 + + [ Upstream Kernel Changes ] + + * rebased to mainline 2.6.31-rc2 + + -- Andy Whitcroft Sat, 04 Jul 2009 17:39:13 +0100 + +linux (2.6.31-1.14) karmic; urgency=low + + [ Andy Whitcroft ] + + * update ndiswrapper to 1.55 + * remove leftovers of gfs + * [Config] powerpc: enable CONFIG_PPC_DISABLE_WERROR + + [ Luke Yelavich ] + + * [Config] re-enable and build the ide-pmac driver into powerpc kernels + * [Config] Build the ServerWorks Frodo / Apple K2 SATA driver into the + kernel + + [ Manoj Iyer ] + + * Remove snd-bt-sco ubuntu driver + + [ Michael Casadevall ] + + * [Config] updates ia64 config and d-i folders to allow succesful build + * [Config] Update powerpc and sparc for 2.6.31 + + [ Upstream Kernel Changes ] + + * intel-iommu: fix Identity Mapping to be arch independent + - LP: #384695 + * ACPI: video: prevent NULL deref in acpi_get_pci_dev() + + -- Andy Whitcroft Tue, 30 Jun 2009 17:47:32 +0100 + +linux (2.6.31-1.13) karmic; urgency=low + + [ Andy Whitcroft ] + + * REBASE: rebased to mainline 2.6.31-rc1 + - "UBUNTU: SAUCE: UHCI USB quirk for resume" + no longer applies, using deprecated interfaces, LPIA only, dropped + - "UBUNTU: SAUCE: Mask off garbage in Dell WMI scan code data" + changes now upstream, dropped + * [Config] Update configs following rebase to 2.6.31-rc1 + * [Config] update ports configs following update to 2.6.31-rc1 + + * [Config] disable broken staging driver CONFIG_STLC45XX + * SAUCE: fix compcache to use updates accessors + * [Config] disable staging driver CONFIG_VT6655 + * SAUCE: fix DRDB to use updates accessors + * [Disable] ndiswrapper needs update + * [Disable] LIRC I2C needs update + * [Disable] CONFIG_LENOVO_SL_LAPTOP needs update + * [Config] disable I2C_DESIGNWARE does not compile + * [Config] disable CONFIG_TLSUP for lpia + * [Config] disable CONFIG_FB_UDL for arm + * SAUCE: disable adding scsi headers to linux-libc-dev + + [ Mario Limonciello ] + + * SAUCE: Add LIRC drivers + + -- Andy Whitcroft Thu, 25 Jun 2009 12:06:22 +0100 + +linux (2.6.30-10.12) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] split out the ports configs into their own family + * [Config] update configs following introduction of ports family + + [ Upstream Kernel Changes ] + + * Revert "Rename linux-doc-PKGVER to linux-doc and clean up its + description". Fixes linux-doc package name conflicts for now. + - LP: #382115 + + -- Tim Gardner Mon, 22 Jun 2009 09:17:14 -0600 + +linux (2.6.30-10.11) karmic; urgency=low + + [ Amit Kucheria ] + + * [Config] Comment splitconfig.pl and misc cleanup + * [Config] Rename all configs to the new naming scheme + * [Config] Splitconfig rework + * [Config] Rename scripts/misc/oldconfig to kernelconfig + * [Config] Fix build system for new config split + * [Config] Run updateconfigs after the splitconfig rework + + [ Andy Whitcroft ] + + * Revert "SAUCE: Default to i915.modeset=0 if CONFIG_DRM_I915_KMS=y" + * [Config] standardise CONFIG_STAGING=y + * [Config] standardise CONFIG_RD_LZMA=y + * [Config] CONFIG_PCI_IOV=y + * [Config] CONFIG_PCI_STUB=m + * [Config] merge kernel configs more agressively + + [ Colin Watson ] + + * [Config] Run kernel-wedge in $(builddir) rather than at the top level + * [Config] Add support for including firmware in udebs + * [Config] Ship bnx2 firmware in nic-modules udeb + - LP: #384861 + + [ Luke Yelavich ] + + * [Config] ports - Import of ports architectures into kernel packaging + infrastructure + * [Config] ports - Do not update ports kernel configurations by default + * [Config] ports - Disable ABI checking for ports architectures + * [Config] ports - Build drivers in ubuntu sub-directory on powerpc + * [Config] ports - Add control.d/vars.* files for ports architectures + * [Config] ports - Add ports architectures for linux-libc-dev + * [Config] ports - Create powerpc specific message-modules and + block-modules udebs + * [Config] ports - Add configuration files for ports architectures + + [ Manoj Iyer ] + + * [Config] Enable CONFIG_BLK_DEV_AEC62XX=m for amd64 and i386 + - LP: #329864 + + [ Michael Casadevall ] + + * [Config] ports - Fix compression of kernels + + [ Stefan Bader ] + + * [Upstream] mmc: prevent dangling block device from accessing stale + queues + - LP: #383668 + + [ Tim Gardner ] + + * [Config] Recommend grub-pc in linux-image + - LP: #385741 + * [Config] Implement i386 generic and generic-pae flavours + * [Config] ports - Add control info after integrating ports arches + * [Config] Removed auto-generated files from git + * [Config] Added netxen_nic to nic-modules + - LP: #389603 + + [ Matt Zimmerman ] + + * Rename linux-doc-PKGVER to linux-doc and clean up its description + - LP: #382115 + + -- Tim Gardner Mon, 15 Jun 2009 14:38:26 -0600 + +linux (2.6.30-9.10) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_SECURITY_TOMOYO=y (amd64, i386, lpia) + * [Config] CONFIG_KEXEC_JUMP=y (amd64, lpia) + * [Config] CONFIG_LENOVO_SL_LAPTOP=m (amd64, lpia) + * [Config] CONFIG_POHMELFS_CRYPTO=y (i386, amd64) + * [Config] CONFIG_SERIAL_MAX3100=m (i386, amd64, lpia) + * [Config] CONFIG_VIDEO_GO7007=m (amd64, i386) + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30 final + + -- Andy Whitcroft Fri, 05 Jun 2009 11:42:53 +0100 + +linux (2.6.30-8.9) karmic; urgency=low + + [ Andy Whitcroft ] + + * Config update removed the following options: + CONFIG_EDAC_AMD8111=m + CONFIG_EDAC_AMD8131=m + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc8 + + -- Andy Whitcroft Wed, 03 Jun 2009 09:21:13 +0100 + +linux (2.6.30-7.8) karmic; urgency=low + + [ Andy Whitcroft ] + + * Enabled NEW configration options: + Paravirtualization layer for spinlocks (PARAVIRT_SPINLOCKS) [N/y/?] Y + Cisco FNIC Driver (FCOE_FNIC) [N/m/y/?] M + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc7 + + -- Andy Whitcroft Sat, 23 May 2009 23:47:24 +0100 + +linux (2.6.30-6.7) karmic; urgency=low + + [ Andy Whitcroft ] + + * Dropped: UBUNTU: SAUCE: input: Blacklist digitizers from joydev.c (now + upstream) + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc6 + + -- Andy Whitcroft Mon, 18 May 2009 18:05:54 +0100 + +linux (2.6.30-5.6) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Enable Keyspan USB serial device firmware in kernel module + - LP: #334285 + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc5 + + -- Tim Gardner Mon, 11 May 2009 12:02:16 -0600 + +linux (2.6.30-4.5) karmic; urgency=low + + [ Colin Watson ] + + * Build-Conflict with findutils (= 4.4.1-1ubuntu1), to avoid + /usr/include/asm/* going missing + - LP: #373214 + + -- Stefan Bader Fri, 08 May 2009 11:09:08 +0200 + +linux (2.6.30-3.4) karmic; urgency=low + + [ Kees Cook ] + + * SAUCE: [x86] implement cs-limit nx-emulation for ia32 + - LP: #369978 + + [ Stefan Bader ] + + * SAUCE: input: Blacklist digitizers from joydev.c + - LP: #300143 + + -- Tim Gardner Fri, 01 May 2009 14:00:42 -0600 + +linux (2.6.30-2.3) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Enabled CC_STACKPROTECTOR=y for all x86en + - LP: #369152 + * SAUCE: Default to i915_modeset=0 if CONFIG_DRM_I915_KMS=y + * [Config] CONFIG_DRM_I915_KMS=y + * [Config] Set CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR to appropriate ARCH + minimums + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc4 + + -- Tim Gardner Thu, 30 Apr 2009 09:17:05 -0600 + +linux (2.6.30-1.2) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] armel: disable staging drivers, fixes FTBS + * [Config] armel imx51: Disable CONFIG_MTD_NAND_MXC, fixes FTBS + + [ Upstream Kernel Changes ] + + * mpt2sas: Change reset_type enum to avoid namespace collision. + Submitted upstream. + + -- Tim Gardner Tue, 28 Apr 2009 16:54:41 -0600 + +linux (2.6.30-1.1) karmic; urgency=low + + * Initial release after rebasing against v2.6.30-rc3 + + -- Tim Gardner Thu, 12 Mar 2009 19:16:07 -0600 --- linux-3.2.0.orig/debian/debian.env +++ linux-3.2.0/debian/debian.env @@ -0,0 +1 @@ +DEBIAN=debian.master --- linux-3.2.0.orig/debian/rules +++ linux-3.2.0/debian/rules @@ -0,0 +1,238 @@ +#!/usr/bin/make -f +# +# $(DEBIAN)/rules for Ubuntu linux +# +# Use this however you want, just give credit where credit is due. +# +# Copyright (c) 2007 Ben Collins +# + +DEBIAN=$(shell awk -F= '($$1 == "DEBIAN") { print $$2 }' $$new; \ + done + flavours="$(wildcard $(DEBIAN)/control.d/vars.* $(DEBIAN)/sub-flavours/*.vars)";\ + for i in $$flavours; do \ + $(SHELL) $(DROOT)/scripts/control-create $$i | \ + sed -e 's/PKGVER/$(release)/g' \ + -e 's/ABINUM/$(abinum)/g' \ + -e 's/SRCPKGNAME/$(src_pkg_name)/g' \ + -e 's/=HUMAN=/$(human_arch)/g' \ + >> $(DEBIAN)/control.stub; \ + done + cp $(DEBIAN)/control.stub $(DEBIAN)/control + +.PHONY: debian/control +debian/control: $(DEBIAN)/control.stub + rm -rf $(builddir)/modules $(builddir)/firmware \ + $(builddir)/kernel-versions $(builddir)/package-list \ + $(builddir)/$(DEBIAN) + mkdir -p $(builddir)/modules/$(arch)/ + cp $(DEBIAN)/d-i/modules/* $(builddir)/modules/$(arch)/ + mkdir -p $(builddir)/firmware/$(arch)/ + cp $(DEBIAN)/d-i/firmware/* $(builddir)/firmware/$(arch)/ + cp $(DEBIAN)/d-i/package-list $(DEBIAN)/d-i/kernel-versions $(builddir)/ + touch $(builddir)/modules/$(arch)/kernel-image + # kernel-wedge needs to poke around in $(DEBIAN)/ + ln -nsf $(CURDIR)/debian $(builddir)/debian + + # Some files may need to differ between architectures + if [ -d $(DEBIAN)/d-i/modules-$(arch) ]; then \ + cp $(DEBIAN)/d-i/modules-$(arch)/* \ + $(builddir)/modules/$(arch)/; \ + fi + if [ -d $(DEBIAN)/d-i/firmware-$(arch) ]; then \ + cp $(DEBIAN)/d-i/firmware-$(arch)/* \ + $(builddir)/firmware/$(arch)/; \ + fi + + # Remove unwanted stuff for this architecture + if [ -r "$(DEBIAN)/d-i/exclude-modules.$(arch)" ]; then \ + (cat $(DEBIAN)/d-i/exclude-modules.$(arch); \ + ls $(builddir)/modules/$(arch)/) | sort | uniq -d | \ + (cd $(builddir)/modules/$(arch)/; xargs rm -f); \ + fi + if [ -r "$(DEBIAN)/d-i/exclude-firmware.$(arch)" ]; then \ + (cat $(DEBIAN)/d-i/exclude-firmware.$(arch); \ + ls $(builddir)/firmware/$(arch)/) | sort | uniq -d | \ + (cd $(builddir)/firmware/$(arch)/; xargs rm -f); \ + fi + + # Per flavour module lists + flavour_modules=`ls $(DEBIAN)/d-i/modules.$(arch)-* 2>/dev/null` \ + || true; \ + if [ "$$flavour_modules" != "" ]; then \ + for flav in $$flavour_modules; do \ + name=`echo $$flav | sed 's/.*\/modules.$(arch)-//'`; \ + mkdir $(builddir)/modules/$(arch)-$$name; \ + (cd $(builddir)/modules/; tar cf - `cat ../$$flav`) | \ + (cd $(builddir)/modules/$(arch)-$$name/; tar xf -); \ + touch $(builddir)/modules/$(arch)-$$name/kernel-image; \ + done; \ + fi + flavour_firmware=`ls $(DEBIAN)/d-i/firmware.$(arch)-* 2>/dev/null` \ + || true; \ + if [ "$$flavour_firmware" != "" ]; then \ + for flav in $$flavour_firmware; do \ + name=`echo $$flav | sed 's/.*\/firmware.$(arch)-//'`; \ + mkdir $(builddir)/firmware/$(arch)-$$name; \ + (cd $(builddir)/firmware/; tar cf - `cat ../$$flav`) | \ + (cd $(builddir)/firmware/$(arch)-$$name/; tar xf -);\ + touch $(builddir)/firmware/$(arch)-$$name/kernel-image; \ + done; \ + fi + + # Some files may need to differ between flavours + flavour_module_dirs=`ls -d $(DEBIAN)/d-i/modules-$(arch)-* 2>/dev/null`\ + || true; \ + if [ "$$flavour_module_dirs" ]; then \ + for flav in $$flavour_module_dirs; do \ + name=`echo $$flav | sed 's/.*\/modules-$(arch)-//'`; \ + [ -d $(builddir)/modules/$(arch)-$$name ] || \ + cp -a $(builddir)/modules/$(arch) \ + modules/$(arch)-$$name; \ + cp $$flav/* $(builddir)/modules/$(arch)-$$name/; \ + done; \ + fi + flavour_firmware_dirs=`ls -d $(DEBIAN)/d-i/firmware-$(arch)-* 2>/dev/null`\ + || true; \ + if [ "$$flavour_firmware_dirs" ]; then \ + for flav in $$flavour_firmware_dirs; do \ + name=`echo $$flav | sed 's/.*\/firmware-$(arch)-//'`; \ + [ -d $(builddir)/firmware/$(arch)-$$name ] || \ + cp -a $(builddir)/firmware/$(arch) \ + firmware/$(arch)-$$name; \ + cp $$flav/* $(builddir)/firmware/$(arch)-$$name/; \ + done; \ + fi + + # Remove unwanted stuff for each flavour + flavour_exclude=`ls $(DEBIAN)/d-i/exclude-modules.$(arch)-* 2>/dev/null`\ + || true; \ + if [ "$$flavour_exclude" ]; then \ + for flav in $$flavour_exclude; do \ + name=`echo $$flav | sed 's/.*\/exclude-modules.$(arch)-//'`;\ + [ -d $(builddir)/modules/$(arch)-$$name ] || \ + cp -a $(builddir)/modules/$(arch) \ + $(builddir)/modules/$(arch)-$$name; \ + (cat $$flav; \ + ls $(builddir)/modules/$(arch)-$$name) | \ + sort | uniq -d | \ + (cd $(builddir)/modules/$(arch)-$$name/; \ + xargs rm -f); \ + done; \ + fi + flavour_exclude=`ls $(DEBIAN)/d-i/exclude-firmware.$(arch)-* 2>/dev/null`\ + || true; \ + if [ "$$flavour_exclude" ]; then \ + for flav in $$flavour_exclude; do \ + name=`echo $$flav | sed 's/.*\/exclude-firmware.$(arch)-//'`;\ + [ -d $(builddir)/firmware/$(arch)-$$name ] || \ + cp -a $(builddir)/firmware/$(arch) \ + $(builddir)/firmware/$(arch)-$$name; \ + (cat $$flav; \ + ls $(builddir)/firmware/$(arch)-$$name) | \ + sort | uniq -d | \ + (cd $(builddir)/firmware/$(arch)-$$name/; \ + xargs rm -f); \ + done; \ + fi + + if [ ! -d $(builddir)/modules/$(build_arch) ]; then \ + mkdir -p $(builddir)/modules/$(build_arch); \ + cp $(builddir)/modules/$(arch)/* \ + $(builddir)/modules/$(build_arch); \ + fi + if [ ! -d $(builddir)/firmware/$(build_arch) ]; then \ + mkdir -p $(builddir)/firmware/$(build_arch); \ + cp $(builddir)/firmware/$(arch)/* \ + $(builddir)/firmware/$(build_arch); \ + fi + + cp $(DEBIAN)/control.stub debian/control.stub + cd $(builddir) && kernel-wedge gen-control > $(CURDIR)/debian/control --- linux-3.2.0.orig/debian/control +++ linux-3.2.0/debian/control @@ -0,0 +1,1231 @@ +Source: linux +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.8.4.0 +Build-Depends: debhelper (>= 5), cpio, module-init-tools, kernel-wedge (>= 2.24ubuntu1), makedumpfile [amd64 i386], device-tree-compiler [powerpc], libelf-dev, libnewt-dev, binutils-dev, rsync, libdw-dev, dpkg (>= 1.16.0~ubuntu4), util-linux +Build-Depends-Indep: xmlto, docbook-utils, ghostscript, transfig, bzip2, sharutils, asciidoc +Build-Conflicts: findutils (= 4.4.1-1ubuntu1) +Vcs-Git: http://kernel.ubuntu.com/git-repos/ubuntu/ubuntu-precise.git + +Package: linux-source-3.2.0 +Architecture: all +Section: devel +Priority: optional +Provides: linux-source, linux-source-3 +Depends: ${misc:Depends}, binutils, bzip2, coreutils | fileutils (>= 4.0) +Recommends: libc-dev, gcc, make +Suggests: libncurses-dev | ncurses-dev, kernel-package, libqt3-dev +Description: Linux kernel source for version 3.2.0 with Ubuntu patches + This package provides the source code for the Linux kernel version + 3.2.0. + . + This package is mainly meant for other packages to use, in order to build + custom flavours. + . + If you wish to use this package to create a custom Linux kernel, then it + is suggested that you investigate the package kernel-package, which has + been designed to ease the task of creating kernel image packages. + . + If you are simply trying to build third-party modules for your kernel, + you do not want this package. Install the appropriate linux-headers + package instead. + +Package: linux-doc +Architecture: all +Section: doc +Priority: optional +Depends: ${misc:Depends} +Conflicts: linux-doc-3 +Replaces: linux-doc-3 +Description: Linux kernel specific documentation for version 3.2.0 + This package provides the various documents in the 3.2.0 kernel + Documentation/ subdirectory. These document kernel subsystems, APIs, device + drivers, and so on. See + /usr/share/doc/linux-doc/00-INDEX for a list of what is + contained in each file. + +Package: linux-tools-common +Architecture: all +Section: kernel +Priority: optional +Depends: ${misc:Depends} +Replaces: linux-tools (<= 2.6.32-16.25) +Description: Linux kernel version specific tools for version 3.2.0 + This package provides the architecture independent parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PGKVER. + +Package: linux-headers-3.2.0-26 +Architecture: all +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils | fileutils (>= 4.0) +Provides: linux-headers, linux-headers-3 +Description: Header files related to Linux kernel version 3.2.0 + This package provides kernel header files for version 3.2.0, for sites + that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details + +Package: linux-libc-dev +Architecture: i386 amd64 powerpc ppc64 armel armhf +Depends: ${misc:Depends} +Conflicts: libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), dvb-dev (<< 1.0.1-6), amd64-libs-dev (<= 1.1), linux-kernel-headers +Replaces: libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), dvb-dev (<< 1.0.1-6), linux-kernel-headers, libdrm-dev +Provides: linux-kernel-headers +Multi-Arch: same +Description: Linux Kernel Headers for development + This package provides headers from the Linux kernel. These headers + are used by the installed headers for GNU glibc and other system + libraries. They are NOT meant to be used to build third-party modules for + your kernel. Use linux-headers-* packages for that. + +Package: linux-tools-3.2.0-26 +Architecture: i386 amd64 powerpc ppc64 armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version 3.2.0-26 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 3.2.0-26 on + 64 bit x86. + + +Package: linux-image-3.2.0-26-generic +Architecture: i386 amd64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub-efi-amd64 | grub-efi-ia32 | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-generic +Architecture: i386 amd64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-generic +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-generic +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 SMP + This package provides kernel header files for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-generic-dbgsym +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 SMP + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-generic-pae +Architecture: i386 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward 32 bit desktop or server systems with more than 4GB RAM. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-pae meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-generic-pae +Architecture: i386 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-generic-pae +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward 32 bit desktop or server systems with more than 4GB RAM. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-pae meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-generic-pae +Architecture: i386 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 SMP + This package provides kernel header files for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-generic-pae-dbgsym +Architecture: i386 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 SMP + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-highbank +Architecture: armhf +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: flash-kernel +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on Calxeda highbank ARM Server + This package contains the Linux kernel image for version 3.2.0 on + Calxeda highbank ARM Server. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Calxeda highbank processors. + . + Targeted towards Calxeda highbank ARM Server + . + You likely do not want to install this package directly. Instead, install + the linux-highbank meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-highbank +Architecture: armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-highbank +Description: Linux kernel image for version 3.2.0 on Calxeda highbank ARM Server + This package contains the Linux kernel image for version 3.2.0 on + Calxeda highbank ARM Server. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Calxeda highbank processors. + . + Targeted towards Calxeda highbank ARM Server + . + You likely do not want to install this package directly. Instead, install + the linux-highbank meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-highbank +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on Calxeda highbank ARM Server + This package provides kernel header files for version 3.2.0 on + Calxeda highbank ARM Server. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-highbank-dbgsym +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on Calxeda highbank ARM Server + This package provides a kernel debug image for version 3.2.0 on + Calxeda highbank ARM Server. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-omap +Architecture: armel armhf +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: flash-kernel +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package contains the Linux kernel image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports TI OMAP3 processors. + . + Targeted towards boards such as Beagleboard, Gumstix, IGEPv2, etc. + . + You likely do not want to install this package directly. Instead, install + the linux-omap meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-omap +Architecture: armel armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-omap +Description: Linux kernel image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package contains the Linux kernel image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports TI OMAP3 processors. + . + Targeted towards boards such as Beagleboard, Gumstix, IGEPv2, etc. + . + You likely do not want to install this package directly. Instead, install + the linux-omap meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-omap +Architecture: armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package provides kernel header files for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-omap-dbgsym +Architecture: armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package provides a kernel debug image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, redhat-cluster-modules, ivtv-modules +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: yaboot +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 64-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 64-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc64-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-powerpc64-smp +Description: Linux kernel image for version 3.2.0 on 64-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 64-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 64-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc64-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64-bit PowerPC SMP + This package provides kernel header files for version 3.2.0 on + 64-bit PowerPC SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-powerpc64-smp-dbgsym +Architecture: powerpc ppc64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64-bit PowerPC SMP + This package provides a kernel debug image for version 3.2.0 on + 64-bit PowerPC SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, redhat-cluster-modules, ivtv-modules +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: yaboot +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 32-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 32-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 32-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-powerpc-smp +Description: Linux kernel image for version 3.2.0 on 32-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 32-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 32-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 32-bit PowerPC SMP + This package provides kernel header files for version 3.2.0 on + 32-bit PowerPC SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-powerpc-smp-dbgsym +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 32-bit PowerPC SMP + This package provides a kernel debug image for version 3.2.0 on + 32-bit PowerPC SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-virtual +Architecture: i386 amd64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 Virtual Guests + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Virtual processors. + . + Geared toward virtual appliances. + . + You likely do not want to install this package directly. Instead, install + the linux-virtual meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-virtual +Architecture: i386 amd64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-virtual +Description: Linux kernel image for version 3.2.0 on 64 bit x86 Virtual Guests + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Virtual processors. + . + Geared toward virtual appliances. + . + You likely do not want to install this package directly. Instead, install + the linux-virtual meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-virtual +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 Virtual Guests + This package provides kernel header files for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-virtual-dbgsym +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 Virtual Guests + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: kernel-image-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: kernel-image +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: extra +Description: Linux kernel binary image for the Debian installer + This package contains the kernel image for the Debian installer + boot images. It does _not_ provide a usable kernel for your full + Debian system. + +Package: nic-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: nic-modules +Depends: kernel-image-3.2.0-26-generic-di, nic-shared-modules-3.2.0-26-generic-di, virtio-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Network interface support + +Package: nic-shared-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: nic-shared-modules +Depends: kernel-image-3.2.0-26-generic-di, crypto-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: nic shared modules + This package contains modules which support nic modules + +Package: serial-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: serial-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Serial port support + +Package: ppp-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: ppp-modules +Depends: kernel-image-3.2.0-26-generic-di, nic-shared-modules-3.2.0-26-generic-di, serial-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: PPP (serial port) networking support + +Package: pata-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: pata-modules +Depends: kernel-image-3.2.0-26-generic-di, storage-core-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: PATA support modules + +Package: firewire-core-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: firewire-core-modules +Depends: kernel-image-3.2.0-26-generic-di, storage-core-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Firewire (IEEE-1394) Support + +Package: scsi-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: scsi-modules +Depends: kernel-image-3.2.0-26-generic-di, storage-core-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: SCSI storage support + +Package: plip-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: plip-modules +Depends: kernel-image-3.2.0-26-generic-di, nic-shared-modules-3.2.0-26-generic-di, parport-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: PLIP (parallel port) networking support + +Package: floppy-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: floppy-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Floppy driver support + +Package: fat-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: fat-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: FAT filesystem support + This includes Windows FAT and VFAT support. + +Package: nfs-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: nfs-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: NFS filesystem drivers + Includes the NFS client driver, and supporting modules. + +Package: md-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: md-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Multi-device support (raid, device-mapper, lvm) + +Package: multipath-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: multipath-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: extra +Description: DM-Multipath support + This package contains modules for device-mapper multipath support. + +Package: usb-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: usb-modules +Depends: kernel-image-3.2.0-26-generic-di, storage-core-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Core USB support + +Package: pcmcia-storage-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: pcmcia-storage-modules +Depends: kernel-image-3.2.0-26-generic-di, scsi-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: PCMCIA storage support + +Package: fb-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: fb-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Framebuffer modules + +Package: input-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: input-modules +Depends: kernel-image-3.2.0-26-generic-di, usb-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Support for various input methods + +Package: mouse-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: mouse-modules +Depends: kernel-image-3.2.0-26-generic-di, input-modules-3.2.0-26-generic-di, usb-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: extra +Description: Mouse support + This package contains mouse drivers for the Linux kernel. + +Package: irda-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: irda-modules +Depends: kernel-image-3.2.0-26-generic-di, nic-shared-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Support for Infrared protocols + +Package: parport-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: parport-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Parallel port support + +Package: nic-pcmcia-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: nic-pcmcia-modules +Depends: kernel-image-3.2.0-26-generic-di, nic-shared-modules-3.2.0-26-generic-di, nic-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: PCMCIA network interface support + +Package: pcmcia-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: pcmcia-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: PCMCIA Modules + +Package: nic-usb-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: nic-usb-modules +Depends: kernel-image-3.2.0-26-generic-di, nic-shared-modules-3.2.0-26-generic-di, usb-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: USB network interface support + +Package: sata-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: sata-modules +Depends: kernel-image-3.2.0-26-generic-di, storage-core-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: SATA storage support + +Package: crypto-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: crypto-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: extra +Description: crypto modules + This package contains crypto modules. + +Package: squashfs-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: squashfs-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: extra +Description: squashfs modules + This package contains squashfs modules. + +Package: speakup-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: speakup-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: extra +Description: speakup modules + This package contains speakup modules. + +Package: virtio-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: virtio-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: VirtIO Modules + Includes modules for VirtIO (virtual machine, generally kvm guests) + +Package: fs-core-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: fs-core-modules, jfs-modules, reiserfs-modules, xfs-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Base filesystem modules + This includes jfs, reiserfs and xfs. + +Package: fs-secondary-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: fs-secondary-modules, ntfs-modules, hfs-modules +Depends: kernel-image-3.2.0-26-generic-di, fat-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Extra filesystem modules + This includes support for Windows NTFS and MacOS HFS/HFSPlus + +Package: storage-core-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: storage-core-modules, loop-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Core storage support + Includes core SCSI, LibATA, USB-Storage. Also includes related block + devices for CD, Disk and Tape medium (and IDE Floppy). + +Package: block-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: block-modules +Depends: kernel-image-3.2.0-26-generic-di, storage-core-modules-3.2.0-26-generic-di, parport-modules-3.2.0-26-generic-di, virtio-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Block storage devices + This package contains the block storage devices, including DAC960 and + paraide. + +Package: message-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: message-modules +Depends: kernel-image-3.2.0-26-generic-di, storage-core-modules-3.2.0-26-generic-di, scsi-modules-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: Fusion and i2o storage modules + This package containes the fusion and i2o storage modules. + +Package: vlan-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: vlan-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: extra +Description: vlan modules + This package contains vlan (8021.Q) modules. + +Package: ipmi-modules-3.2.0-26-generic-di +XC-Package-Type: udeb +Provides: ipmi-modules +Depends: kernel-image-3.2.0-26-generic-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-generic +Section: debian-installer +Priority: standard +Description: ipmi modules + +Package: kernel-image-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: kernel-image +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: extra +Description: Linux kernel binary image for the Debian installer + This package contains the kernel image for the Debian installer + boot images. It does _not_ provide a usable kernel for your full + Debian system. + +Package: nic-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: nic-modules +Depends: kernel-image-3.2.0-26-virtual-di, nic-shared-modules-3.2.0-26-virtual-di, virtio-modules-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: Network interface support + +Package: nic-shared-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: nic-shared-modules +Depends: kernel-image-3.2.0-26-virtual-di, crypto-modules-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: nic shared modules + This package contains modules which support nic modules + +Package: scsi-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: scsi-modules +Depends: kernel-image-3.2.0-26-virtual-di, storage-core-modules-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: SCSI storage support + +Package: floppy-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: floppy-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: Floppy driver support + +Package: fat-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: fat-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: FAT filesystem support + This includes Windows FAT and VFAT support. + +Package: md-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: md-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: Multi-device support (raid, device-mapper, lvm) + +Package: multipath-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: multipath-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: extra +Description: DM-Multipath support + This package contains modules for device-mapper multipath support. + +Package: fb-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: fb-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: Framebuffer modules + +Package: mouse-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: mouse-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: extra +Description: Mouse support + This package contains mouse drivers for the Linux kernel. + +Package: irda-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: irda-modules +Depends: kernel-image-3.2.0-26-virtual-di, nic-shared-modules-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: Support for Infrared protocols + +Package: parport-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: parport-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: Parallel port support + +Package: crypto-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: crypto-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: extra +Description: crypto modules + This package contains crypto modules. + +Package: squashfs-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: squashfs-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: extra +Description: squashfs modules + This package contains squashfs modules. + +Package: virtio-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: virtio-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: VirtIO Modules + Includes modules for VirtIO (virtual machine, generally kvm guests) + +Package: fs-core-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: fs-core-modules, jfs-modules, reiserfs-modules, xfs-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: Base filesystem modules + This includes jfs, reiserfs and xfs. + +Package: fs-secondary-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: fs-secondary-modules, ntfs-modules, hfs-modules +Depends: kernel-image-3.2.0-26-virtual-di, fat-modules-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: Extra filesystem modules + This includes support for Windows NTFS and MacOS HFS/HFSPlus + +Package: storage-core-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: storage-core-modules, loop-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: Core storage support + Includes core SCSI, LibATA, USB-Storage. Also includes related block + devices for CD, Disk and Tape medium (and IDE Floppy). + +Package: block-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: block-modules +Depends: kernel-image-3.2.0-26-virtual-di, storage-core-modules-3.2.0-26-virtual-di, parport-modules-3.2.0-26-virtual-di, virtio-modules-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: Block storage devices + This package contains the block storage devices, including DAC960 and + paraide. + +Package: message-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: message-modules +Depends: kernel-image-3.2.0-26-virtual-di, storage-core-modules-3.2.0-26-virtual-di, scsi-modules-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: standard +Description: Fusion and i2o storage modules + This package containes the fusion and i2o storage modules. + +Package: vlan-modules-3.2.0-26-virtual-di +XC-Package-Type: udeb +Provides: vlan-modules +Depends: kernel-image-3.2.0-26-virtual-di +Architecture: amd64 +XB-Kernel-Version: 3.2.0-26-virtual +Section: debian-installer +Priority: extra +Description: vlan modules + This package contains vlan (8021.Q) modules. --- linux-3.2.0.orig/debian/compat +++ linux-3.2.0/debian/compat @@ -0,0 +1 @@ +5 --- linux-3.2.0.orig/debian/source/format +++ linux-3.2.0/debian/source/format @@ -0,0 +1 @@ +1.0 --- linux-3.2.0.orig/debian/commit-templates/external-driver +++ linux-3.2.0/debian/commit-templates/external-driver @@ -0,0 +1,20 @@ +# Ubuntu external driver commit. +# +# NOTE: This gets reformatted for README.Ubuntu-External-Drivers and +# debian/changelog. +# +# This is only needed when a driver is added, updated or removed. It is +# not needed when patches or fixes are applied to the driver. If the +# driver is being removed, add the line: +# +# Removing: yes +# +# to the commit, and you can remove all other tags (except UBUNTU:). +# +UBUNTU: + +ExternalDriver: +Description: +Url: +Mask: +Version: --- linux-3.2.0.orig/debian/commit-templates/bumpabi +++ linux-3.2.0/debian/commit-templates/bumpabi @@ -0,0 +1,3 @@ +UBUNTU: Bump ABI + +Ignore: yes --- linux-3.2.0.orig/debian/commit-templates/upstream-patch +++ linux-3.2.0/debian/commit-templates/upstream-patch @@ -0,0 +1,27 @@ +# Ubuntu commit template. +# +# NOTE: This gets reformatted for debian/changelog +# +# The initial UBUNTU is a flag that this is an Ubuntu commit. It will be +# referenced to the Author in the debian/changelog entry. +# +# The text following is the short message that will be placed in the +# changelog. Extra text on the following lines will be ignored, but left +# in the git commit. Lines with # will be ignored in the commit. +# +# OriginalAuthor allows for alternate attribution. +# +# OriginalLocation allows for a URL or description of where the patch came +# from. +# +# BugLink is a URL to a Malone bug. +# +# Ignore: yes will keep this commit from showing up in the changelog. +# +UBUNTU: [Upstream] + +# OriginalAuthor: +# OriginalLocation: +# BugLink: http://bugs.launchpad.net/bugs/ +# Ignore: yes +# Other text below here. --- linux-3.2.0.orig/debian/commit-templates/newrelease +++ linux-3.2.0/debian/commit-templates/newrelease @@ -0,0 +1,3 @@ +UBUNTU: Start new release + +Ignore: yes --- linux-3.2.0.orig/debian/commit-templates/sauce-patch +++ linux-3.2.0/debian/commit-templates/sauce-patch @@ -0,0 +1,40 @@ +# Ubuntu commit template. +# +# NOTE: This gets reformatted for debian/changelog +# +# +# SAUCE refers to the fact that this patch might not go upstream, but we need to +# carry it to successive releases. In most cases you DONOT want to use this +# template. +# +# An example of a SAUCE patch is the ACPI DSDT-in-initramfs patch which has been +# refused upstream, but still provides useful functionality to users with broken +# BIOSes. +# +#------------------------------------------------------------------------- +# +# The initial UBUNTU is a flag that this is an Ubuntu commit. It will be +# referenced to the Author in the debian/changelog entry. +# +# The text following is the short message that will be placed in the +# changelog. Extra text on the following lines will be ignored, but left +# in the git commit. Lines with # will be ignored in the commit. +# +# OriginalAuthor allows for alternate attribution. +# +# OriginalLocation allows for a URL or description of where the patch came +# from. +# +# BugLink is a URL to a Malone bug. +# +# Ignore: yes will keep this commit from showing up in the changelog. +# +UBUNTU: SAUCE: + + + +# OriginalAuthor: +# OriginalLocation: +# BugLink: http://bugs.launchpad.net/bugs/ +# Ignore: yes +# Other text below here. --- linux-3.2.0.orig/debian/commit-templates/config-updates +++ linux-3.2.0/debian/commit-templates/config-updates @@ -0,0 +1,15 @@ +# +# This template is used for commit messages that don't need to +# show up in debian/changelog. Administrative stuff like config +# updates, ABI bumps, etc. Setting 'Ignore: yes' prevents +# 'debian/rules insertchanges' from inserting this commit meesage +# as a changelog entry. +# +# Please give a one-line description of the config change followed +# by a detailed explanation if necessary + +UBUNTU: [Config] XXXX + +# BugLink: http://bugs.launchpad.net/bugs/ +# Ignore: yes +# Other text below here. --- linux-3.2.0.orig/debian/commit-templates/missing-modules +++ linux-3.2.0/debian/commit-templates/missing-modules @@ -0,0 +1,3 @@ +UBUNTU: build/modules: Add modules that have intentionally gone missing + +Ignore: yes --- linux-3.2.0.orig/debian/rules.d/2-binary-arch.mk +++ linux-3.2.0/debian/rules.d/2-binary-arch.mk @@ -0,0 +1,458 @@ +# We don't want make removing intermediary stamps +.SECONDARY : + +# Prepare the out-of-tree build directory +ifeq ($(do_full_source),true) +build_cd = cd $(builddir)/build-$*; # +build_O = +else +build_cd = +build_O = O=$(builddir)/build-$* +endif + +$(stampdir)/stamp-prepare-%: config-prepare-check-% + @touch $@ +$(stampdir)/stamp-prepare-tree-%: target_flavour = $* +$(stampdir)/stamp-prepare-tree-%: $(commonconfdir)/config.common.$(family) $(archconfdir)/config.common.$(arch) $(archconfdir)/config.flavour.% + @echo "Preparing $*..." + install -d $(builddir)/build-$* + touch $(builddir)/build-$*/ubuntu-build + [ "$(do_full_source)" != 'true' ] && true || \ + rsync -a --exclude debian --exclude debian.master --exclude $(DEBIAN) * $(builddir)/build-$* + cat $^ | sed -e 's/.*CONFIG_VERSION_SIGNATURE.*/CONFIG_VERSION_SIGNATURE="Ubuntu $(release)-$(revision)-$* $(raw_kernelversion)"/' > $(builddir)/build-$*/.config + find $(builddir)/build-$* -name "*.ko" | xargs rm -f + $(build_cd) $(kmake) $(build_O) -j1 silentoldconfig prepare scripts + touch $@ + +# Used by developers as a shortcut to prepare a tree for compilation. +prepare-%: $(stampdir)/stamp-prepare-% + @echo Prepared $* for $(arch) +# Used by developers to allow efficient pre-building without fakeroot. +build-%: $(stampdir)/stamp-build-% + @echo Built $* for $(arch) + +# Do the actual build, including image and modules +$(stampdir)/stamp-build-%: target_flavour = $* +$(stampdir)/stamp-build-%: $(stampdir)/stamp-prepare-% + @echo "Building $*..." + $(build_cd) $(kmake) $(build_O) $(conc_level) $(build_image) modules + @touch $@ + +# Install the finished build +install-%: pkgdir = $(CURDIR)/debian/$(bin_pkg_name)-$* +install-%: pkgdir_ex = $(CURDIR)/debian/$(extra_pkg_name)-$* +install-%: bindoc = $(pkgdir)/usr/share/doc/$(bin_pkg_name)-$* +install-%: dbgpkgdir = $(CURDIR)/debian/$(bin_pkg_name)-$*-dbgsym +install-%: basepkg = $(hdrs_pkg_name) +install-%: hdrdir = $(CURDIR)/debian/$(basepkg)-$*/usr/src/$(basepkg)-$* +install-%: target_flavour = $* +install-%: checks-% + dh_testdir + dh_testroot + dh_clean -k -p$(bin_pkg_name)-$* + dh_clean -k -p$(hdrs_pkg_name)-$* + dh_clean -k -p$(dbg_pkg_name)-$* + + # The main image + # compress_file logic required because not all architectures + # generate a zImage automatically out of the box +ifeq ($(compress_file),) + install -m600 -D $(builddir)/build-$*/$(kernel_file) \ + $(pkgdir)/boot/$(install_file)-$(abi_release)-$* +else + install -d $(pkgdir)/boot + gzip -c9v $(builddir)/build-$*/$(kernel_file) > \ + $(pkgdir)/boot/$(install_file)-$(abi_release)-$* + chmod 600 $(pkgdir)/boot/$(install_file)-$(abi_release)-$* +endif + + install -m644 $(builddir)/build-$*/.config \ + $(pkgdir)/boot/config-$(abi_release)-$* + install -m644 $(abidir)/$* \ + $(pkgdir)/boot/abi-$(abi_release)-$* + install -m600 $(builddir)/build-$*/System.map \ + $(pkgdir)/boot/System.map-$(abi_release)-$* +ifeq ($(no_dumpfile),) + makedumpfile -g $(pkgdir)/boot/vmcoreinfo-$(abi_release)-$* \ + -x $(builddir)/build-$*/vmlinux + chmod 0600 $(pkgdir)/boot/vmcoreinfo-$(abi_release)-$* +endif + + $(build_cd) $(kmake) $(build_O) $(conc_level) modules_install \ + INSTALL_MOD_STRIP=1 INSTALL_MOD_PATH=$(pkgdir)/ \ + INSTALL_FW_PATH=$(pkgdir)/lib/firmware/$(abi_release)-$* + + # + # Remove all modules not in the inclusion list. + # + if [ -f $(DEBIAN)/control.d/$(target_flavour).inclusion-list ] ; then \ + mkdir -p $(pkgdir_ex)/lib/modules/$(abi_release)-$*; \ + mv $(pkgdir)/lib/modules/$(abi_release)-$*/kernel \ + $(pkgdir_ex)/lib/modules/$(abi_release)-$*/kernel; \ + $(SHELL) $(DROOT)/scripts/module-inclusion --master \ + $(pkgdir_ex)/lib/modules/$(abi_release)-$*/kernel \ + $(pkgdir)/lib/modules/$(abi_release)-$*/kernel \ + $(DEBIAN)/control.d/$(target_flavour).inclusion-list 2>&1 | \ + tee $(target_flavour).inclusion-list.log; \ + /sbin/depmod -b $(pkgdir) -ea -F $(pkgdir)/boot/System.map-$(abi_release)-$* \ + $(abi_release)-$* 2>&1 |tee $(target_flavour).depmod.log; \ + fi + +ifeq ($(no_dumpfile),) + makedumpfile -g $(pkgdir)/boot/vmcoreinfo-$(abi_release)-$* \ + -x $(builddir)/build-$*/vmlinux + chmod 0600 $(pkgdir)/boot/vmcoreinfo-$(abi_release)-$* +endif + rm -f $(pkgdir)/lib/modules/$(abi_release)-$*/build + rm -f $(pkgdir)/lib/modules/$(abi_release)-$*/source + + # Some initramfs-tools specific modules + install -d $(pkgdir)/lib/modules/$(abi_release)-$*/initrd + if [ -f $(pkgdir)/lib/modules/$(abi_release)-$*/kernel/drivers/video/vesafb.ko ]; then\ + ln -f $(pkgdir)/lib/modules/$(abi_release)-$*/kernel/drivers/video/vesafb.ko \ + $(pkgdir)/lib/modules/$(abi_release)-$*/initrd/; \ + fi + + # Now the image scripts + install -d $(pkgdir)/DEBIAN + for script in postinst postrm preinst prerm; do \ + sed -e 's/=V/$(abi_release)-$*/g' -e 's/=K/$(install_file)/g' \ + -e 's/=L/$(loader)/g' -e 's@=B@$(build_arch)@g' \ + $(DROOT)/control-scripts/$$script > $(pkgdir)/DEBIAN/$$script; \ + chmod 755 $(pkgdir)/DEBIAN/$$script; \ + done + # Install the postinit/postrm scripts in the extras package. + if [ -f $(DEBIAN)/control.d/$(target_flavour).inclusion-list ] ; then \ + install -d $(pkgdir_ex)/DEBIAN; \ + for script in postinst postrm ; do \ + sed -e 's/@@KVER@@/$(release)-$(abinum)-$(target_flavour)/g' \ + debian/control-scripts/$$script.extra > $(pkgdir_ex)/DEBIAN/$$script; \ + chmod 755 $(pkgdir_ex)/DEBIAN/$$script; \ + done; \ + fi + + # Install the full changelog. +ifeq ($(do_doc_package),true) + install -d $(bindoc) + cat $(DEBIAN)/changelog $(DEBIAN)/changelog.historical | \ + gzip -9 >$(bindoc)/changelog.Debian.old.gz + chmod 644 $(bindoc)/changelog.Debian.old.gz +endif + +ifneq ($(skipsub),true) + for sub in $($(*)_sub); do \ + if ! (TO=$$sub FROM=$* ABI_RELEASE=$(abi_release) $(SHELL) \ + $(DROOT)/scripts/sub-flavour); then exit 1; fi; \ + /sbin/depmod -b debian/$(bin_pkg_name)-$$sub \ + -ea -F debian/$(bin_pkg_name)-$$sub/boot/System.map-$(abi_release)-$* \ + $(abi_release)-$*; \ + install -d debian/$(bin_pkg_name)-$$sub/DEBIAN; \ + for script in postinst postrm preinst prerm; do \ + sed -e 's/=V/$(abi_release)-$*/g' \ + -e 's/=K/$(install_file)/g' \ + -e 's/=L/$(loader)/g' \ + -e 's@=B@$(build_arch)@g' \ + $(DROOT)/control-scripts/$$script > \ + debian/$(bin_pkg_name)-$$sub/DEBIAN/$$script;\ + chmod 755 debian/$(bin_pkg_name)-$$sub/DEBIAN/$$script;\ + done; \ + done +endif + +ifneq ($(skipdbg),true) + # Debug image is simple + install -m644 -D $(builddir)/build-$*/vmlinux \ + $(dbgpkgdir)/usr/lib/debug/boot/vmlinux-$(abi_release)-$* + $(build_cd) $(kmake) $(build_O) modules_install \ + INSTALL_MOD_PATH=$(dbgpkgdir)/usr/lib/debug + rm -f $(dbgpkgdir)/usr/lib/debug/lib/modules/$(abi_release)-$*/build + rm -f $(dbgpkgdir)/usr/lib/debug/lib/modules/$(abi_release)-$*/source + rm -f $(dbgpkgdir)/usr/lib/debug/lib/modules/$(abi_release)-$*/modules.* + rm -fr $(dbgpkgdir)/usr/lib/debug/lib/firmware +endif + + # The flavour specific headers image + # TODO: Would be nice if we didn't have to dupe the original builddir + install -d -m755 $(hdrdir) + cat $(builddir)/build-$*/.config | \ + sed -e 's/.*CONFIG_DEBUG_INFO=.*/# CONFIG_DEBUG_INFO is not set/g' > \ + $(hdrdir)/.config + chmod 644 $(hdrdir)/.config + $(kmake) O=$(hdrdir) -j1 silentoldconfig prepare scripts + # We'll symlink this stuff + rm -f $(hdrdir)/Makefile + rm -rf $(hdrdir)/include2 + # Copy over the compilation version. + cp "$(builddir)/build-$*/include/generated/compile.h" \ + "$(hdrdir)/include/generated/compile.h" + # powerpc seems to need some .o files for external module linking. Add them in. +ifeq ($(arch),powerpc) + mkdir -p $(hdrdir)/arch/powerpc/lib + cp $(builddir)/build-$*/arch/powerpc/lib/*.o $(hdrdir)/arch/powerpc/lib +endif + # Script to symlink everything up + $(SHELL) $(DROOT)/scripts/link-headers "$(hdrdir)" "$(basepkg)" "$*" + # The build symlink + install -d debian/$(basepkg)-$*/lib/modules/$(abi_release)-$* + ln -s /usr/src/$(basepkg)-$* \ + debian/$(basepkg)-$*/lib/modules/$(abi_release)-$*/build + # And finally the symvers + install -m644 $(builddir)/build-$*/Module.symvers \ + $(hdrdir)/Module.symvers + + # Now the header scripts + install -d $(CURDIR)/debian/$(basepkg)-$*/DEBIAN + for script in postinst; do \ + sed -e 's/=V/$(abi_release)-$*/g' -e 's/=K/$(install_file)/g' \ + $(DROOT)/control-scripts/headers-$$script > \ + $(CURDIR)/debian/$(basepkg)-$*/DEBIAN/$$script; \ + chmod 755 $(CURDIR)/debian/$(basepkg)-$*/DEBIAN/$$script; \ + done + + # At the end of the package prep, call the tests + DPKG_ARCH="$(arch)" KERN_ARCH="$(build_arch)" FLAVOUR="$*" \ + VERSION="$(abi_release)" REVISION="$(revision)" \ + PREV_REVISION="$(prev_revision)" ABI_NUM="$(abinum)" \ + PREV_ABI_NUM="$(prev_abinum)" BUILD_DIR="$(builddir)/build-$*" \ + INSTALL_DIR="$(pkgdir)" SOURCE_DIR="$(CURDIR)" \ + run-parts -v $(DROOT)/tests + + # + # Remove files which are generated at installation by postinst, + # except for modules.order and modules.builtin + # + # NOTE: need to keep this list in sync with postrm + # + mkdir $(pkgdir)/lib/modules/$(abi_release)-$*/_ + mv $(pkgdir)/lib/modules/$(abi_release)-$*/modules.order \ + $(pkgdir)/lib/modules/$(abi_release)-$*/_ + if [ -f $(pkgdir)/lib/modules/$(abi_release)-$*/modules.builtin ] ; then \ + mv $(pkgdir)/lib/modules/$(abi_release)-$*/modules.builtin \ + $(pkgdir)/lib/modules/$(abi_release)-$*/_; \ + fi + rm -f $(pkgdir)/lib/modules/$(abi_release)-$*/modules.* + mv $(pkgdir)/lib/modules/$(abi_release)-$*/_/* \ + $(pkgdir)/lib/modules/$(abi_release)-$* + rmdir $(pkgdir)/lib/modules/$(abi_release)-$*/_ + +headers_tmp := $(CURDIR)/debian/tmp-headers +headers_dir := $(CURDIR)/debian/linux-libc-dev + +hmake := $(MAKE) -C $(CURDIR) O=$(headers_tmp) \ + KERNELVERSION=$(abi_release) INSTALL_HDR_PATH=$(headers_tmp)/install \ + SHELL="$(SHELL)" ARCH=$(header_arch) + +install-arch-headers: + dh_testdir + dh_testroot + dh_clean -k -plinux-libc-dev + + rm -rf $(headers_tmp) + install -d $(headers_tmp) $(headers_dir)/usr/include/ + + $(hmake) $(defconfig) + mv $(headers_tmp)/.config $(headers_tmp)/.config.old + sed -e 's/^# \(CONFIG_MODVERSIONS\) is not set$$/\1=y/' \ + -e 's/.*CONFIG_LOCALVERSION_AUTO.*/# CONFIG_LOCALVERSION_AUTO is not set/' \ + $(headers_tmp)/.config.old > $(headers_tmp)/.config + $(hmake) silentoldconfig + $(hmake) $(conc_level) headers_install + + ( cd $(headers_tmp)/install/include/ && \ + find . -name '.' -o -name '.*' -prune -o -print | \ + cpio -pvd --preserve-modification-time \ + $(headers_dir)/usr/include/ ) + mkdir $(headers_dir)/usr/include/$(DEB_HOST_MULTIARCH) + mv $(headers_dir)/usr/include/asm $(headers_dir)/usr/include/$(DEB_HOST_MULTIARCH)/ + + rm -rf $(headers_tmp) + +binary-arch-headers: install-arch-headers + dh_testdir + dh_testroot +ifeq ($(do_libc_dev_package),true) +ifneq ($(DEBIAN),debian.master) + echo "non-master branch building linux-libc-dev, aborting" + exit 1 +endif + dh_installchangelogs -plinux-libc-dev + dh_installdocs -plinux-libc-dev + dh_compress -plinux-libc-dev + dh_fixperms -plinux-libc-dev + dh_installdeb -plinux-libc-dev + $(lockme) dh_gencontrol -plinux-libc-dev -- $(libc_dev_version) + dh_md5sums -plinux-libc-dev + dh_builddeb -plinux-libc-dev +endif + +binary-%: pkgimg = $(bin_pkg_name)-$* +binary-%: pkgimg_ex = $(extra_pkg_name)-$* +binary-%: pkghdr = $(hdrs_pkg_name)-$* +binary-%: dbgpkg = $(bin_pkg_name)-$*-dbgsym +binary-%: dbgpkgdir = $(CURDIR)/debian/$(bin_pkg_name)-$*-dbgsym +binary-%: target_flavour = $* +binary-%: install-% + dh_testdir + dh_testroot + + dh_installchangelogs -p$(pkgimg) + dh_installdocs -p$(pkgimg) + dh_compress -p$(pkgimg) + dh_fixperms -p$(pkgimg) -X/boot/ + dh_installdeb -p$(pkgimg) + dh_shlibdeps -p$(pkgimg) + $(lockme) dh_gencontrol -p$(pkgimg) + dh_md5sums -p$(pkgimg) + dh_builddeb -p$(pkgimg) -- -Zbzip2 -z9 + + if [ -f $(DEBIAN)/control.d/$(target_flavour).inclusion-list ] ; then \ + dh_installchangelogs -p$(pkgimg_ex); \ + dh_installdocs -p$(pkgimg_ex); \ + dh_compress -p$(pkgimg_ex); \ + dh_fixperms -p$(pkgimg_ex) -X/boot/; \ + dh_installdeb -p$(pkgimg_ex); \ + dh_shlibdeps -p$(pkgimg_ex); \ + $(lockme) dh_gencontrol -p$(pkgimg_ex); \ + dh_md5sums -p$(pkgimg_ex); \ + dh_builddeb -p$(pkgimg_ex) -- -Zbzip2 -z9; \ + fi + + dh_installchangelogs -p$(pkghdr) + dh_installdocs -p$(pkghdr) + dh_compress -p$(pkghdr) + dh_fixperms -p$(pkghdr) + dh_shlibdeps -p$(pkghdr) + dh_installdeb -p$(pkghdr) + $(lockme) dh_gencontrol -p$(pkghdr) + dh_md5sums -p$(pkghdr) + dh_builddeb -p$(pkghdr) + +ifneq ($(skipsub),true) + @set -e; for sub in $($(*)_sub); do \ + pkg=$(bin_pkg_name)-$$sub; \ + dh_installchangelogs -p$$pkg; \ + dh_installdocs -p$$pkg; \ + dh_compress -p$$pkg; \ + dh_fixperms -p$$pkg -X/boot/; \ + dh_shlibdeps -p$$pkg; \ + dh_installdeb -p$$pkg; \ + $(lockme) dh_gencontrol -p$$pkg; \ + dh_md5sums -p$$pkg; \ + dh_builddeb -p$$pkg; \ + done +endif + +ifneq ($(skipdbg),true) + dh_installchangelogs -p$(dbgpkg) + dh_installdocs -p$(dbgpkg) + dh_compress -p$(dbgpkg) + dh_fixperms -p$(dbgpkg) + dh_installdeb -p$(dbgpkg) + $(lockme) dh_gencontrol -p$(dbgpkg) + dh_md5sums -p$(dbgpkg) + dh_builddeb -p$(dbgpkg) + + # Hokay...here's where we do a little twiddling... + # Renaming the debug package prevents it from getting into + # the primary archive, and therefore prevents this very large + # package from being mirrored. It is instead, through some + # archive admin hackery, copied to http://ddebs.ubuntu.com. + # + mv ../$(dbgpkg)_$(release)-$(revision)_$(arch).deb \ + ../$(dbgpkg)_$(release)-$(revision)_$(arch).ddeb + set -e; \ + ( \ + $(lockme_cmd) 9 || exit 1; \ + if grep -qs '^Build-Debug-Symbols: yes$$' /CurrentlyBuilding; then \ + sed -i '/^$(dbgpkg)_/s/\.deb /.ddeb /' debian/files; \ + else \ + grep -v '^$(dbgpkg)_.*$$' debian/files > debian/files.new; \ + mv debian/files.new debian/files; \ + fi; \ + ) 9>$(lockme_file) + # Now, the package wont get into the archive, but it will get put + # into the debug system. +endif +ifneq ($(full_build),false) + # Clean out this flavours build directory. + rm -rf $(builddir)/build-$* + # Clean out the debugging package source directory. + rm -rf $(dbgpkgdir) +endif + +# +# per-architecture packages +# +builddirpa = $(builddir)/tools-perarch + +$(stampdir)/stamp-prepare-perarch: + @echo "Preparing perarch ..." +ifeq ($(do_tools),true) + rm -rf $(builddirpa)/tools + install -d $(builddirpa)/tools + for i in *; do ln -s $(CURDIR)/$$i $(builddirpa)/tools/; done + rm $(builddirpa)/tools/tools + rsync -a tools/ $(builddirpa)/tools/tools/ +endif + touch $@ + +$(stampdir)/stamp-build-perarch: $(stampdir)/stamp-prepare-perarch +ifeq ($(do_tools),true) + cd $(builddirpa)/tools/tools/perf && \ + make HAVE_CPLUS_DEMANGLE=1 CROSS_COMPILE=$(CROSS_COMPILE) $(conc_level) + if [ "$(arch)" = "amd64" ] || [ "$(arch)" = "i386" ]; then \ + cd $(builddirpa)/tools/tools/power/x86/x86_energy_perf_policy && make CROSS_COMPILE=$(CROSS_COMPILE); \ + cd $(builddirpa)/tools/tools/power/x86/turbostat && make CROSS_COMPILE=$(CROSS_COMPILE); \ + cd $(builddirpa)/tools/tools/hv && make CROSS_COMPILE=$(CROSS_COMPILE) CFLAGS=-I../../include; \ + fi +endif + @touch $@ + +install-perarch: toolspkgdir = $(CURDIR)/debian/$(tools_pkg_name) +install-perarch: $(stampdir)/stamp-build-perarch + # Add the tools. +ifeq ($(do_tools),true) + install -d $(toolspkgdir)/usr/bin + install -s -m755 $(builddirpa)/tools/tools/perf/perf \ + $(toolspkgdir)/usr/bin/perf_$(abi_release) + if [ "$(arch)" = "amd64" ] || [ "$(arch)" = "i386" ]; then \ + install -s -m755 $(builddirpa)/tools/tools/power/x86/x86_energy_perf_policy/x86_energy_perf_policy \ + $(toolspkgdir)/usr/bin/x86_energy_perf_policy_$(abi_release); \ + install -s -m755 $(builddirpa)/tools/tools/power/x86/turbostat/turbostat \ + $(toolspkgdir)/usr/bin/turbostat_$(abi_release); \ + install -d $(toolspkgdir)/usr/sbin; \ + install -s -m755 $(builddirpa)/tools/tools/hv/hv_kvp_daemon \ + $(toolspkgdir)/usr/sbin/hv_kvp_daemon_$(abi_release); \ + fi +endif + +binary-perarch: toolspkg = $(tools_pkg_name) +binary-perarch: install-perarch + @# Empty for make to be happy +ifeq ($(do_tools),true) + dh_installchangelogs -p$(toolspkg) + dh_installdocs -p$(toolspkg) + dh_compress -p$(toolspkg) + dh_fixperms -p$(toolspkg) + dh_shlibdeps -p$(toolspkg) + dh_installdeb -p$(toolspkg) + $(lockme) dh_gencontrol -p$(toolspkg) + dh_md5sums -p$(toolspkg) + dh_builddeb -p$(toolspkg) +endif + +binary-debs: binary-perarch $(addprefix binary-,$(flavours)) + +build-arch-deps-$(do_flavour_image_package) += $(addprefix $(stampdir)/stamp-build-,$(flavours)) +build-arch: $(build-arch-deps-true) + +ifeq ($(AUTOBUILD),) +binary-arch-deps-$(do_flavour_image_package) += binary-udebs +else +binary-arch-deps-$(do_flavour_image_package) = binary-debs +endif +binary-arch-deps-$(do_libc_dev_package) += binary-arch-headers +ifneq ($(do_common_headers_indep),true) +binary-arch-deps-$(do_flavour_header_package) += binary-headers +endif +binary-arch: $(binary-arch-deps-true) --- linux-3.2.0.orig/debian/rules.d/0-common-vars.mk +++ linux-3.2.0/debian/rules.d/0-common-vars.mk @@ -0,0 +1,232 @@ +# +# The source package name will be the first token from $(DEBIAN)/changelog +# +src_pkg_name=$(shell sed -n '1s/^\(.*\) (.*).*$$/\1/p' $(DEBIAN)/changelog) + +# Get some version info +series := oneiric +release := $(shell sed -n '1s/^$(src_pkg_name).*(\(.*\)-.*).*$$/\1/p' $(DEBIAN)/changelog) +revisions := $(shell sed -n 's/^$(src_pkg_name)\ .*($(release)-\(.*\)).*$$/\1/p' $(DEBIAN)/changelog | tac) +revision ?= $(word $(words $(revisions)),$(revisions)) +prev_revisions := $(filter-out $(revision),0.0 $(revisions)) +prev_revision := $(word $(words $(prev_revisions)),$(prev_revisions)) + +family=ubuntu + +# This is an internally used mechanism for the daily kernel builds. It +# creates packages whose ABI is suffixed with a minimal representation of +# the current git HEAD sha. If .git/HEAD is not present, then it uses the +# uuidgen program, +# +# AUTOBUILD can also be used by anyone wanting to build a custom kernel +# image, or rebuild the entire set of Ubuntu packages using custom patches +# or configs. +AUTOBUILD= + +# +# This is a way to support some external variables. A good example is +# a local setup for ccache and distcc See LOCAL_ENV_CC and +# LOCAL_ENV_DISTCC_HOSTS in the definition of kmake. +# For example: +# LOCAL_ENV_CC="ccache distcc" +# LOCAL_ENV_DISTCC_HOSTS="localhost 10.0.2.5 10.0.2.221" +# +-include $(CURDIR)/../.$(series)-env + +ifneq ($(AUTOBUILD),) +skipabi = true +skipmodule = true +skipdbg = true +gitver=$(shell if test -f .git/HEAD; then cat .git/HEAD; else uuidgen; fi) +gitverpre=$(shell echo $(gitver) | cut -b -3) +gitverpost=$(shell echo $(gitver) | cut -b 38-40) +abi_suffix = -$(gitverpre)$(gitverpost) +endif + +ifneq ($(NOKERNLOG),) +ubuntu_log_opts += --no-kern-log +endif +ifneq ($(PRINTSHAS),) +ubuntu_log_opts += --print-shas +endif + +# Get the kernels own extra version to be added to the release signature. +raw_kernelversion=$(shell make kernelversion) + +# +# full_build -- are we doing a full buildd style build +# +ifeq ($(wildcard /CurrentlyBuilding),) +full_build?=false +else +full_build?=true +endif + +# +# The debug packages are ginormous, so you probably want to skip +# building them (as a developer). +# +ifeq ($(full_build),false) +skipdbg=true +endif + +abinum := $(shell echo $(revision) | sed -e 's/\..*//')$(abi_suffix) +prev_abinum := $(shell echo $(prev_revision) | sed -e 's/\..*//')$(abi_suffix) +abi_release := $(release)-$(abinum) + +uploadnum := $(shell echo $(revision) | sed -e 's/.*\.//') +ifneq ($(full_build),false) + uploadnum := $(uploadnum)-Ubuntu +endif + +# XXX: linux-libc-dev got bumped to -803.N inadvertantly by a ti-omap4 upload +# shift our version higher for this package only. Ensure this only +# occurs for the v2.6.35 kernel so that we do not propogate this into +# any other series. +raw_uploadnum := $(shell echo $(revision) | sed -e 's/.*\.//') +libc_dev_version := +ifeq ($(DEBIAN),debian.master) +ifeq ($(release),2.6.35) +libc_dev_version := -v$(release)-$(shell expr "$(abinum)" + 1000).$(raw_uploadnum) +endif +endif + +DEB_HOST_MULTIARCH = $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) +DEB_HOST_GNU_TYPE = $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE = $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_HOST_ARCH = $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_BUILD_ARCH = $(shell dpkg-architecture -qDEB_BUILD_ARCH) + +# +# Detect invocations of the form 'fakeroot debian/rules binary arch=armel' +# within an x86'en schroot. This only gets you part of the way since the +# packaging phase fails, but you can at least compile the kernel quickly. +# +arch := $(DEB_HOST_ARCH) +ifneq ($(arch),$(DEB_HOST_ARCH)) + CROSS_COMPILE ?= $(shell dpkg-architecture -a$(arch) -qDEB_HOST_GNU_TYPE -f 2>/dev/null)- +endif + +# +# Detect invocations of the form 'dpkg-buildpackage -B -aarmel' within +# an x86'en schroot. This is the only way to build all of the packages +# (except for tools). +# +ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) + CROSS_COMPILE ?= $(DEB_HOST_GNU_TYPE)- +endif + +abidir := $(CURDIR)/$(DEBIAN)/abi/$(release)-$(revision)/$(arch) +prev_abidir := $(CURDIR)/$(DEBIAN)/abi/$(release)-$(prev_revision)/$(arch) +commonconfdir := $(CURDIR)/$(DEBIAN)/config +archconfdir := $(CURDIR)/$(DEBIAN)/config/$(arch) +sharedconfdir := $(CURDIR)/debian.master/config +builddir := $(CURDIR)/debian/build +stampdir := $(CURDIR)/debian/stamps + +# +# The binary package name always starts with linux-image-$KVER-$ABI.$UPLOAD_NUM. There +# are places that you'll find linux-image hard coded, but I guess thats OK since the +# assumption that the binary package always starts with linux-image will never change. +# +bin_pkg_name=linux-image-$(abi_release) +extra_pkg_name=linux-image-extra-$(abi_release) +hdrs_pkg_name=linux-headers-$(abi_release) +# +# The generation of content in the doc package depends on both 'AUTOBUILD=' and +# 'do_doc_package_content=true'. There are usually build errors during the development +# cycle, so its OK to leave 'do_doc_package_content=false' until those build +# failures get sorted out. Finally, the doc package doesn't really need to be built +# for developer testing (its kind of slow), so only do it if on a buildd. +do_doc_package=true +do_doc_package_content=true +ifeq ($(full_build),false) +do_doc_package_content=false +endif +doc_pkg_name=$(src_pkg_name)-doc + +# +# Similarly with the linux-source package, you need not build it as a developer. Its +# somewhat I/O intensive and utterly useless. +# +do_source_package=true +do_source_package_content=true +ifeq ($(full_build),false) +do_source_package_content=false +endif + +# linux-libc-dev may not be needed, default to building it. +do_libc_dev_package=true + +# common headers normally is built as an indep package, but may be arch +do_common_headers_indep=true + +# add a 'full source' mode +do_full_source=false + +# build tools +ifneq ($(wildcard $(CURDIR)/tools),) + ifeq ($(do_tools),) + ifneq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) + do_tools=false + endif + endif + do_tools?=true +else + do_tools?=false +endif +tools_pkg_name=$(src_pkg_name)-tools-$(abi_release) +tools_common_pkg_name=$(src_pkg_name)-tools-common + +# The general flavour specific image package. +do_flavour_image_package=true + +# The general flavour specific header package. +do_flavour_header_package=true + +# Support parallel= in DEB_BUILD_OPTIONS (see #209008) +# +# These 2 environment variables set the -j value of the kernel build. For example, +# CONCURRENCY_LEVEL=16 fakeroot $(DEBIAN)/rules binary-debs +# or +# DEB_BUILD_OPTIONS=parallel=16 fakeroot $(DEBIAN)/rules binary-debs +# +# The default is to use the number of CPUs. +# +COMMA=, +DEB_BUILD_OPTIONS_PARA = $(subst parallel=,,$(filter parallel=%,$(subst $(COMMA), ,$(DEB_BUILD_OPTIONS)))) +ifneq (,$(DEB_BUILD_OPTIONS_PARA)) + CONCURRENCY_LEVEL := $(DEB_BUILD_OPTIONS_PARA) +endif + +ifeq ($(CONCURRENCY_LEVEL),) + # Check the environment + CONCURRENCY_LEVEL := $(shell echo $$CONCURRENCY_LEVEL) + # No? Then build with the number of CPUs on the host. + ifeq ($(CONCURRENCY_LEVEL),) + CONCURRENCY_LEVEL := $(shell expr `getconf _NPROCESSORS_ONLN` \* 1) + endif + # Oh hell, give 'em one + ifeq ($(CONCURRENCY_LEVEL),) + CONCURRENCY_LEVEL := 1 + endif +endif + +conc_level = -j$(CONCURRENCY_LEVEL) + +# target_flavour is filled in for each step +kmake = make ARCH=$(build_arch) \ + CROSS_COMPILE=$(CROSS_COMPILE) \ + KERNELVERSION=$(abi_release)-$(target_flavour) \ + CONFIG_DEBUG_SECTION_MISMATCH=y \ + KBUILD_BUILD_VERSION="$(uploadnum)" \ + LOCALVERSION= localver-extra= +ifneq ($(LOCAL_ENV_CC),) +kmake += CC=$(LOCAL_ENV_CC) DISTCC_HOSTS=$(LOCAL_ENV_DISTCC_HOSTS) +endif + +# Locking is required in parallel builds to prevent loss of contents +# of the debian/files. +lockme_file = $(CURDIR)/debian/.LOCK +lockme_cmd = flock -w 60 +lockme = $(lockme_cmd) $(lockme_file) --- linux-3.2.0.orig/debian/rules.d/1-maintainer.mk +++ linux-3.2.0/debian/rules.d/1-maintainer.mk @@ -0,0 +1,120 @@ +# The following targets are for the maintainer only! do not run if you don't +# know what they do. + +.PHONY: printenv updateconfigs printchanges insertchanges startnewrelease diffupstream help updateportsconfigs editportsconfigs + +help: + @echo "These are the targets in addition to the normal $(DEBIAN) ones:" + @echo + @echo " printenv : Print some variables used in the build" + @echo + @echo " updateconfigs : Update core arch configs" + @echo + @echo " editconfigs : Update core arch configs interractively" + @echo " genconfigs : Generate core arch configs in CONFIGS/*" + @echo + @echo " updateportsconfigs : Update ports arch configs" + @echo + @echo " editportsconfigs : Update ports arch configs interactivly" + @echo " genportconfigs : Generate ports arch configs in CONFIGS/*" + @echo + @echo " printchanges : Print the current changelog entries (from git)" + @echo + @echo " insertchanges : Insert current changelog entries (from git)" + @echo + @echo " startnewrelease : Start a new changelog set" + @echo + @echo " diffupstream : Diff stock kernel code against upstream (git)" + @echo + @echo " help : If you are kernel hacking, you need the professional" + @echo " version of this" + @echo + @echo "Environment variables:" + @echo + @echo " NOKERNLOG : Do not add upstream kernel commits to changelog" + @echo " CONCURRENCY_LEVEL=X" + @echo " : Use -jX for kernel compile" + @echo " PRINTSHAS : Include SHAs for commits in changelog" + +printdebian: + @echo "$(DEBIAN)" + +updateconfigs defaultconfigs editconfigs genconfigs dumpconfigs: + dh_testdir; + $(SHELL) $(DROOT)/scripts/misc/kernelconfig $@ + rm -rf build + +updateportsconfigs defaultportsconfigs editportsconfigs genportsconfigs askconfigs: + dh_testdir; + $(SHELL) $(DROOT)/scripts/misc/kernelconfig $@ ports + rm -rf build + +printenv: + dh_testdir + @echo "src package name = $(src_pkg_name)" + @echo "release = $(release)" + @echo "revisions = $(revisions)" + @echo "revision = $(revision)" + @echo "uploadnum = $(uploadnum)" + @echo "prev_revisions = $(prev_revisions)" + @echo "prev_revision = $(prev_revision)" + @echo "abinum = $(abinum)" + @echo "gitver = $(gitver)" + @echo "flavours = $(flavours)" + @echo "skipabi = $(skipabi)" + @echo "skipmodule = $(skipmodule)" + @echo "skipdbg = $(skipdbg)" + @echo "ubuntu_log_opts = $(ubuntu_log_opts)" + @echo "CONCURRENCY_LEVEL = $(CONCURRENCY_LEVEL)" + @echo "bin package name = $(bin_pkg_name)" + @echo "hdr package name = $(hdrs_pkg_name)" + @echo "doc package name = $(doc_pkg_name)" + @echo "do_doc_package = $(do_doc_package)" + @echo "do_doc_package_content = $(do_doc_package_content)" + @echo "do_source_package = $(do_source_package)" + @echo "do_source_package_content = $(do_source_package_content)" + @echo "do_libc_dev_package = $(do_libc_dev_package)" + @echo "do_flavour_image_package = $(do_flavour_image_package)" + @echo "do_flavour_header_package = $(do_flavour_header_package)" + @echo "do_common_headers_indep = $(do_common_headers_indep)" + @echo "do_full_source = $(do_full_source)" + @echo "do_tools = $(do_tools)" + @echo "full_build = $(full_build)" + @echo "libc_dev_version = $(libc_dev_version)" + @echo "DEB_HOST_GNU_TYPE = $(DEB_HOST_GNU_TYPE)" + @echo "DEB_BUILD_GNU_TYPE = $(DEB_BUILD_GNU_TYPE)" + @echo "DEB_HOST_ARCH = $(DEB_HOST_ARCH)" + @echo "DEB_BUILD_ARCH = $(DEB_BUILD_ARCH)" + @echo "arch = $(arch)" + @echo "kmake = $(kmake)" + +prev_release="$(release)-$(prev_revision)" +printchanges: + @baseCommit=$$(git log --pretty=format:'%H %s' | \ + awk '/UBUNTU: '".*Ubuntu-$(prev_release)"'$$/ { print $$1; exit }'); \ + git log "$$baseCommit"..HEAD | \ + perl -w -f $(DROOT)/scripts/misc/git-ubuntu-log $(ubuntu_log_opts) + +insertchanges: + @perl -w -f $(DROOT)/scripts/misc/insert-changes.pl $(DROOT) $(DEBIAN) + +diffupstream: + @git diff-tree -p refs/remotes/linux-2.6/master..HEAD $(shell ls | grep -vE '^(ubuntu|$(DEBIAN)|\.git.*)') + +startnewrelease: + dh_testdir + @nextminor=$(shell expr `echo $(revision) | awk -F. '{print $$2}'` + 1); \ + now="$(shell date -R)"; \ + echo "Creating new changelog set for $(abi_release).$$nextminor..."; \ + echo -e "$(src_pkg_name) ($(abi_release).$$nextminor) UNRELEASED; urgency=low\n" > $(DEBIAN)/changelog.new; \ + echo " CHANGELOG: Do not edit directly. Autogenerated at release." >> \ + $(DEBIAN)/changelog.new; \ + echo " CHANGELOG: Use the printchanges target to see the curent changes." \ + >> $(DEBIAN)/changelog.new; \ + echo " CHANGELOG: Use the insertchanges target to create the final log." \ + >> $(DEBIAN)/changelog.new; \ + echo -e "\n -- $$DEBFULLNAME <$$DEBEMAIL> $$now\n" >> \ + $(DEBIAN)/changelog.new ; \ + cat $(DEBIAN)/changelog >> $(DEBIAN)/changelog.new; \ + mv $(DEBIAN)/changelog.new $(DEBIAN)/changelog + --- linux-3.2.0.orig/debian/rules.d/5-udebs.mk +++ linux-3.2.0/debian/rules.d/5-udebs.mk @@ -0,0 +1,38 @@ +# Do udebs if not disabled in the arch-specific makefile +binary-udebs: binary-debs +ifeq ($(disable_d_i),) + @$(MAKE) --no-print-directory -f $(DROOT)/rules DEBIAN=$(DEBIAN) \ + do-binary-udebs +endif + +do-binary-udebs: debian/control + dh_testdir + dh_testroot + + # unpack the kernels into a temporary directory + mkdir -p debian/d-i-${arch} + + imagelist=$$(cat $(builddir)/kernel-versions | grep ^${arch} | awk '{print $$4}') && \ + for i in $$imagelist; do \ + dpkg -x $$(ls ../linux-image-$$i\_$(release)-$(revision)_${arch}.deb) \ + debian/d-i-${arch}; \ + /sbin/depmod -b debian/d-i-${arch} $$i; \ + done + + # kernel-wedge will error if no modules unless this is touched + touch $(CURDIR)/debian/build/no-modules + + touch ignore-dups + export SOURCEDIR=$(CURDIR)/debian/d-i-${arch} && \ + cd $(builddir) && \ + kernel-wedge install-files && \ + kernel-wedge check + + # Build just the udebs + dilist=$$(dh_listpackages -s | grep "\-di$$") && \ + [ -z "$dilist" ] || \ + for i in $$dilist; do \ + dh_fixperms -p$$i; \ + $(lockme) dh_gencontrol -p$$i; \ + dh_builddeb -p$$i; \ + done --- linux-3.2.0.orig/debian/rules.d/3-binary-indep.mk +++ linux-3.2.0/debian/rules.d/3-binary-indep.mk @@ -0,0 +1,147 @@ +build-indep: + +docpkg = $(doc_pkg_name) +docdir = $(CURDIR)/debian/$(docpkg)/usr/share/doc/$(docpkg) +install-doc: install-headers +ifeq ($(do_doc_package),true) + dh_testdir + dh_testroot + dh_clean -k -p$(docpkg) + + install -d $(docdir) +ifeq ($(do_doc_package_content),true) + # First the html docs. We skip these for autobuilds + if [ -z "$(AUTOBUILD)" ]; then \ + install -d $(docdir)/$(doc_pkg_name)-tmp; \ + $(kmake) O=$(docdir)/$(doc_pkg_name)-tmp htmldocs; \ + mv $(docdir)/$(doc_pkg_name)-tmp/Documentation/DocBook \ + $(docdir)/html; \ + rm -rf $(docdir)/$(doc_pkg_name)-tmp; \ + fi +endif + # Copy the rest + cp -a Documentation/* $(docdir) + rm -rf $(docdir)/DocBook + find $(docdir) -name .gitignore | xargs rm -f +endif + +indep_hdrpkg = $(hdrs_pkg_name) +indep_hdrdir = $(CURDIR)/debian/$(indep_hdrpkg)/usr/src/$(indep_hdrpkg) +install-headers: +ifeq ($(do_flavour_header_package),true) + dh_testdir + dh_testroot + dh_clean -k -p$(indep_hdrpkg) + + install -d $(indep_hdrdir) + find . -path './debian' -prune -o -path './$(DEBIAN)' -prune \ + -o -path './include/*' -prune \ + -o -path './scripts/*' -prune -o -type f \ + \( -name 'Makefile*' -o -name 'Kconfig*' -o -name 'Kbuild*' -o \ + -name '*.sh' -o -name '*.pl' -o -name '*.lds' \) \ + -print | cpio -pd --preserve-modification-time $(indep_hdrdir) + cp -a drivers/media/dvb/dvb-core/*.h $(indep_hdrdir)/drivers/media/dvb/dvb-core + cp -a drivers/media/video/*.h $(indep_hdrdir)/drivers/media/video + cp -a drivers/media/dvb/frontends/*.h $(indep_hdrdir)/drivers/media/dvb/frontends + cp -a scripts include $(indep_hdrdir) + (find arch -name include -type d -print | \ + xargs -n1 -i: find : -type f) | \ + cpio -pd --preserve-modification-time $(indep_hdrdir) +endif + +srcpkg = $(src_pkg_name)-source-$(release) +srcdir = $(CURDIR)/debian/$(srcpkg)/usr/src/$(srcpkg) +balldir = $(CURDIR)/debian/$(srcpkg)/usr/src/$(srcpkg)/$(srcpkg) +install-source: install-doc +ifeq ($(do_source_package),true) + dh_testdir + dh_testroot + dh_clean -k -p$(srcpkg) + + install -d $(srcdir) +ifeq ($(do_source_package_content),true) + find . -path './debian' -prune -o -path './$(DEBIAN)' -prune -o \ + -path './.*' -prune -o -print | \ + cpio -pd --preserve-modification-time $(balldir) + (cd $(srcdir); tar cf - $(srcpkg)) | bzip2 -9c > \ + $(srcdir)/$(srcpkg).tar.bz2 + rm -rf $(balldir) + find './debian' './$(DEBIAN)' \ + -path './debian/linux-*' -prune -o \ + -path './debian/$(src_pkg_name)-*' -prune -o \ + -path './debian/build' -prune -o \ + -path './debian/files' -prune -o \ + -path './debian/stamps' -prune -o \ + -path './debian/tmp' -prune -o \ + -print | \ + cpio -pd --preserve-modification-time $(srcdir) + ln -s $(srcpkg)/$(srcpkg).tar.bz2 $(srcdir)/.. +endif +endif + +install-tools: toolspkg = $(tools_common_pkg_name) +install-tools: toolsbin = $(CURDIR)/debian/$(toolspkg)/usr/bin +install-tools: toolssbin = $(CURDIR)/debian/$(toolspkg)/usr/sbin +install-tools: toolsman = $(CURDIR)/debian/$(toolspkg)/usr/share/man +install-tools: install-source +ifeq ($(do_tools),true) + dh_testdir + dh_testroot + dh_clean -k -p$(toolspkg) + + install -d $(toolsbin) + install -d $(toolsman)/man1 + + install -m755 debian/tools/perf $(toolsbin)/perf + if [ "$(arch)" = "amd64" ] || [ "$(arch)" = "i386" ]; then \ + install -m755 debian/tools/x86_energy_perf_policy $(toolsbin)/x86_energy_perf_policy; \ + install -m755 debian/tools/turbostat $(toolsbin)/turbostat; \ + install -d $(toolssbin) ; \ + install -m755 debian/tools/generic $(toolssbin)/hv_kvp_daemon; \ + fi + + rm -rf $(builddir)/tools + install -d $(builddir)/tools + for i in *; do ln -s $(CURDIR)/$$i $(builddir)/tools/; done + rm $(builddir)/tools/tools + rsync -a tools/ $(builddir)/tools/tools/ + + cd $(builddir)/tools/tools/perf && make man + install -m644 $(builddir)/tools/tools/perf/Documentation/*.1 \ + $(toolsman)/man1 + if [ "$(arch)" = "amd64" ] || [ "$(arch)" = "i386" ]; then \ + install -d $(toolsman)/man8; \ + install -m644 $(CURDIR)/tools/power/x86/x86_energy_perf_policy/*.8 $(toolsman)/man8; \ + install -m644 $(CURDIR)/tools/power/x86/turbostat/*.8 $(toolsman)/man8; \ + install -m644 $(CURDIR)/tools/hv/*.8 $(toolsman)/man8; \ + fi +endif + +install-indep: install-tools + +# This is just to make it easy to call manually. Normally done in +# binary-indep target during builds. +binary-headers: install-headers + dh_testdir + dh_testroot + dh_installchangelogs -p$(indep_hdrpkg) + dh_installdocs -p$(indep_hdrpkg) + dh_compress -p$(indep_hdrpkg) + dh_fixperms -p$(indep_hdrpkg) + dh_installdeb -p$(indep_hdrpkg) + $(lockme) dh_gencontrol -p$(indep_hdrpkg) + dh_md5sums -p$(indep_hdrpkg) + dh_builddeb -p$(indep_hdrpkg) + +binary-indep: install-indep + dh_testdir + dh_testroot + + dh_installchangelogs -i + dh_installdocs -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + $(lockme) dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i --- linux-3.2.0.orig/debian/rules.d/4-checks.mk +++ linux-3.2.0/debian/rules.d/4-checks.mk @@ -0,0 +1,24 @@ +# Check ABI for package against last release (if not same abinum) +abi-check-%: $(stampdir)/stamp-build-% + install -d $(abidir) + sed -e 's/^\(.\+\)[[:space:]]\+\(.\+\)[[:space:]]\(.\+\)$$/\3 \2 \1/' \ + $(builddir)/build-$*/Module.symvers | sort > $(abidir)/$* + @perl -f $(DROOT)/scripts/abi-check "$*" "$(prev_abinum)" "$(abinum)" \ + "$(prev_abidir)" "$(abidir)" "$(skipabi)" + +# Check the module list against the last release (always) +module-check-%: $(stampdir)/stamp-build-% + install -d $(abidir) + find $(builddir)/build-$*/ -name \*.ko | \ + sed -e 's/.*\/\([^\/]*\)\.ko/\1/' | sort > $(abidir)/$*.modules + @perl -f $(DROOT)/scripts/module-check "$*" \ + "$(prev_abidir)" "$(abidir)" $(skipmodule) + +checks-%: module-check-% abi-check-% + @echo checks-$* + +# Check the config against the known options list. +config-prepare-check-%: $(stampdir)/stamp-prepare-tree-% + @perl -f $(DROOT)/scripts/config-check \ + $(builddir)/build-$*/.config "$(arch)" "$*" "$(sharedconfdir)" "$(skipconfig)" + --- linux-3.2.0.orig/debian/control-scripts/postrm +++ linux-3.2.0/debian/control-scripts/postrm @@ -0,0 +1,361 @@ +#! /usr/bin/perl +# -*- Mode: Cperl -*- +# image.postrm --- +# Author : Manoj Srivastava ( srivasta@glaurung.green-gryphon.com ) +# Created On : Sat May 15 11:05:13 1999 +# Created On Node : glaurung.green-gryphon.com +# Last Modified By : Manoj Srivastava +# Last Modified On : Wed Sep 13 11:26:19 2006 +# Last Machine Used: glaurung.internal.golden-gryphon.com +# Update Count : 57 +# Status : Unknown, Use with caution! +# HISTORY : +# Description : +# +# $Id: image.postrm,v 1.31 2003/10/07 16:24:20 srivasta Exp $ +# + + +# +#use strict; #for debugging +use Cwd 'abs_path'; + +$|=1; + +# Predefined values: +my $version = "=V"; +my $link_in_boot = ""; # Should be empty, mostly +my $no_symlink = ""; # Should be empty, mostly +my $reverse_symlink = ""; # Should be empty, mostly +my $do_symlink = "Yes"; # target machine defined +my $do_boot_enable = "Yes"; # target machine defined +my $do_bootfloppy = "Yes"; # target machine defined +my $do_bootloader = "Yes"; # target machine defined +my $move_image = ''; # target machine defined +my $kimage = "=K"; # Should be empty, mostly +my $loader = "=L"; # lilo, silo, quik, palo, vmelilo, or nettrom +my $image_dir = "/boot"; # where the image is located +my $clobber_modules = ''; # target machine defined +my $initrd = "YES"; # initrd kernel +my $do_initrd = ''; # Normally, we don't +my $warn_initrd = 'YES'; # Normally we do +my $use_hard_links = ''; # hardlinks do not work across fs boundaries +my $postinst_hook = ''; #Normally we do not +my $postrm_hook = ''; #Normally we do not +my $preinst_hook = ''; #Normally we do not +my $prerm_hook = ''; #Normally we do not +my $minimal_swap = ''; # Do not swap symlinks +my $ignore_depmod_err = ''; # normally we do not +my $relink_build_link = 'YES'; # There is no harm in checking the link +my $force_build_link = ''; # we shall not create a dangling link +my $kernel_arch = "=B"; +my $ramdisk = "/usr/sbin/update-initramfs"; +my $package_name = "linux-image-$version"; + +my $Loader = "NoLOADER"; # +$Loader = "LILO" if $loader =~ /^lilo/io; +$Loader = "SILO" if $loader =~ /^silo/io; +$Loader = "QUIK" if $loader =~ /^quik/io; +$Loader = "yaboot" if $loader =~ /^yaboot/io; +$Loader = "PALO" if $loader =~ /^palo/io; +$Loader = "NETTROM" if $loader =~ /^nettrom/io; +$Loader = "VMELILO" if $loader =~ /^vmelilo/io; +$Loader = "ZIPL" if $loader =~ /^zipl/io; +$Loader = "ELILO" if $loader =~ /^elilo/io; + + +# This should not point to /tmp, because of security risks. +my $temp_file_name = "/var/log/$loader" . "_log.$$"; + +#known variables +my @boilerplate = (); +my @silotemplate = (); +my @quiktemplate = (); +my @palotemplate = (); +my @vmelilotemplate = (); +my $bootdevice = ''; +my $rootdevice = ''; +my $rootdisk = ''; +my $rootpartition = ''; +my $image_dest = "/"; +my $realimageloc = "/$image_dir/"; +my $have_conffile = ""; +my $CONF_LOC = '/etc/kernel-img.conf'; +my $relative_links = ''; +my $silent_modules = ''; +my $silent_loader = ''; +my $warn_reboot = 'Yes'; # Warn that we are installing a version of + # the kernel we are running + +chdir('/') or die "could not chdir to /:$!\n"; +# remove multiple leading slashes; make sure there is at least one. +$realimageloc =~ s|^/*|/|o; +$realimageloc =~ s|/+|/|o; + + +if (-r "$CONF_LOC" && -f "$CONF_LOC" ) { + if (open(CONF, "$CONF_LOC")) { + while () { + chomp; + s/\#.*$//g; + next if /^\s*$/; + + $do_symlink = "" if /^\s*do_symlinks\s*=\s*(no|false|0)\s*$/ig; + $no_symlink = "" if /^\s*no_symlinks\s*=\s*(no|false|0)\s*$/ig; + $reverse_symlink = "" if /^\s*reverse_symlinks\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*image_in_boot\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*link_in_boot\s*=\s*(no|false|0)\s*$/ig; + $move_image = "" if /^\s*move_image\s*=\s*(no|false|0)\s*$/ig; + $clobber_modules = '' if /^\s*clobber_modules\s*=\s*(no|false|0)\s*$/ig; + $do_boot_enable = '' if /^\s*do_boot_enable\s*=\s*(no|false|0)\s*$/ig; + $do_bootfloppy = '' if /^\s*do_bootfloppy\s*=\s*(no|false|0)\s*$/ig; + $relative_links = '' if /^\s*relative_links \s*=\s*(no|false|0)\s*$/ig; + $do_bootloader = '' if /^\s*do_bootloader\s*=\s*(no|false|0)\s*$/ig; + $do_initrd = '' if /^\s*do_initrd\s*=\s*(no|false|0)\s*$/ig; + $warn_initrd = '' if /^\s*warn_initrd\s*=\s*(no|false|0)\s*$/ig; + $use_hard_links = '' if /^\s*use_hard_links\s*=\s*(no|false|0)\s*$/ig; + $silent_modules = '' if /^\s*silent_modules\s*=\s*(no|false|0)\s*$/ig; + $silent_loader = '' if /^\s*silent_loader\s*=\s*(no|false|0)\s*$/ig; + $warn_reboot = '' if /^\s*warn_reboot\s*=\s*(no|false|0)\s*$/ig; + $minimal_swap = '' if /^\s*minimal_swap\s*=\s*(no|false|0)\s*$/ig; + $ignore_depmod_err = '' if /^\s*ignore_depmod_err\s*=\s*(no|false|0)\s*$/ig; + $relink_build_link = '' if /^\s*relink_build_link\s*=\s*(no|false|0)\s*$/ig; + $force_build_link = '' if /^\s*force_build_link\s*=\s*(no|false|0)\s*$/ig; + + $do_symlink = "Yes" if /^\s*do_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $no_symlink = "Yes" if /^\s*no_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $reverse_symlink = "Yes" if /^\s*reverse_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*image_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*link_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $move_image = "Yes" if /^\s*move_image\s*=\s*(yes|true|1)\s*$/ig; + $clobber_modules = "Yes" if /^\s*clobber_modules\s*=\s*(yes|true|1)\s*$/ig; + $do_boot_enable = "Yes" if /^\s*do_boot_enable\s*=\s*(yes|true|1)\s*$/ig; + $do_bootfloppy = "Yes" if /^\s*do_bootfloppy\s*=\s*(yes|true|1)\s*$/ig; + $do_bootloader = "Yes" if /^\s*do_bootloader\s*=\s*(yes|true|1)\s*$/ig; + $relative_links = "Yes" if /^\s*relative_links\s*=\s*(yes|true|1)\s*$/ig; + $do_initrd = "Yes" if /^\s*do_initrd\s*=\s*(yes|true|1)\s*$/ig; + $warn_initrd = "Yes" if /^\s*warn_initrd\s*=\s*(yes|true|1)\s*$/ig; + $use_hard_links = "Yes" if /^\s*use_hard_links\s*=\s*(yes|true|1)\s*$/ig; + $silent_modules = 'Yes' if /^\s*silent_modules\s*=\s*(yes|true|1)\s*$/ig; + $silent_loader = 'Yes' if /^\s*silent_loader\s*=\s*(yes|true|1)\s*$/ig; + $warn_reboot = 'Yes' if /^\s*warn_reboot\s*=\s*(yes|true|1)\s*$/ig; + $minimal_swap = 'Yes' if /^\s*minimal_swap\s*=\s*(yes|true|1)\s*$/ig; + $ignore_depmod_err = 'Yes' if /^\s*ignore_depmod_err\s*=\s*(yes|true|1)\s*$/ig; + $relink_build_link = 'Yes' if /^\s*relink_build_link\s*=\s*(yes|true|1)\s*$/ig; + $force_build_link = 'Yes' if /^\s*force_build_link\s*=\s*(yes|true|1)\s*$/ig; + + $image_dest = "$1" if /^\s*image_dest\s*=\s*(\S+)/ig; + $postinst_hook = "$1" if /^\s*postinst_hook\s*=\s*(\S+)/ig; + $postrm_hook = "$1" if /^\s*postrm_hook\s*=\s*(\S+)/ig; + $preinst_hook = "$1" if /^\s*preinst_hook\s*=\s*(\S+)/ig; + $prerm_hook = "$1" if /^\s*prerm_hook\s*=\s*(\S+)/ig; + $ramdisk = "$1" if /^\s*ramdisk\s*=\s*(.+)$/ig; + } + close CONF; + $have_conffile = "Yes"; + } +} + +if ($link_in_boot) { + $image_dest = "/$image_dir/"; + $image_dest =~ s|^/*|/|o; +} + +$image_dest = "$image_dest/"; +$image_dest =~ s|/+$|/|o; + +# The destdir may be gone by now. +if (-d "$image_dest") { + chdir("$image_dest") or die "could not chdir to $image_dest:$!\n"; +} + +# Paranoid check to make sure that the correct value is put in there +if (! $kimage) {$kimage = "vmlinuz"} # Hmm. empty +elsif ($kimage =~ m/^b?uImage$/o) {$kimage = "vmlinuz"} # these produce vmlinuz +elsif ($kimage =~ m/^b?zImage$/o) {$kimage = "vmlinuz"} # these produce vmlinuz +elsif ($kimage =~ m/^[iI]mage$/o) { my $nop = $kimage;} +elsif ($kimage =~ m/^vmlinux$/o) { my $nop = $kimage;} +else {$kimage = "vmlinuz"} # default + +$ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; + + +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### +sub remove_sym_link { + my $bad_image = $_[0]; + + warn "Removing symbolic link $bad_image \n"; + if ($loader =~ /lilo/i) + { + warn "Unless you used the optional flag in lilo, \n"; + } + warn " you may need to re-run your boot loader" . ($loader ? "[$loader]":"") + . "\n"; + # Remove the dangling link + unlink "$bad_image"; +} + +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### +sub CanonicalizePath { + my $path = join '/', @_; + my @work = split '/', $path; + my @out; + my $is_absolute; + + if (@work && $work[0] eq "") { $is_absolute = 1; shift @work; } + + while (@work) { + my $seg = shift @work; + if ($seg eq "." || $seg eq "") { + } elsif ($seg eq "..") { + if (@out && $out[-1] ne "..") { + pop @out; + } else { + # Leading "..", or "../..", etc. + push @out, $seg; + } + } else { + push @out, $seg; + } + } + + unshift @out, "" if $is_absolute; + return join('/', @out); +} + +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### +# This removes dangling symlinks. What do we do about hard links? Surely a +# something with the nane $image_dest . "$kimage" ought not to be left behind? +sub image_magic { + my $kimage = $_[0]; + my $image_dest = $_[1]; + + if (-l "$kimage") { + # There is a symbolic link + my $force_move = 0; + my $vmlinuz_target = readlink "$kimage"; + my $real_target = ''; + $real_target = abs_path($vmlinuz_target) if defined ($vmlinuz_target); + if (!defined($vmlinuz_target) || ! -f "$real_target") { + # what, a dangling symlink? + warn "The link " . $image_dest . "$kimage is a damaged link\n"; + # Remove the dangling link + &remove_sym_link("$kimage"); + } + else { + my $canonical_target = CanonicalizePath("$vmlinuz_target"); + if (! -e $canonical_target) { + warn "The link " . $image_dest . "$kimage is a dangling link\n"; + &remove_sym_link("$kimage"); + } + } + } +} + +# set the env var stem +$ENV{'STEM'} = "linux"; + +sub exec_script { + my $type = shift; + my $script = shift; + print STDERR "Running $type hook script $script.\n"; + system ("$script $version $realimageloc$kimage-$version") && + print STDERR "User $type hook script [$script] "; + if ($?) { + if ($? == -1) { + print STDERR "failed to execute: $!\n"; + } + elsif ($? & 127) { + printf STDERR "died with signal %d, %s coredump\n", + ($? & 127), ($? & 128) ? 'with' : 'without'; + } + else { + printf STDERR "exited with value %d\n", $? >> 8; + } + } +} +sub run_hook { + my $type = shift; + my $script = shift; + if ($script =~ m,^/,) { + # Full path provided for the hook script + if (-x "$script") { + &exec_script($type,$script); + } + else { + warn "The provided $type hook script [$script] could not be run.\n"; + } + } + else { + # Look for it in a safe path + for my $path ('/bin', '/sbin', '/usr/bin', '/usr/sbin') { + if (-x "$path/$script") { + &exec_script($type, "$path/$script"); + return 0; + } + } + # No luck + print STDERR "Could not find $type hook script [$script].\n"; + warn "Looked in: '/bin', '/sbin', '/usr/bin', '/usr/sbin'\n"; + } +} + +my $options; +for (@ARGV) { + s,','\\'',g; + $options .= " '$_'"; +} +$ENV{'DEB_MAINT_PARAMS'}="$options"; + +## Run user hook script here, if any +if ($postrm_hook) { + &run_hook("postrm", $postrm_hook); +} +if (-d "/etc/kernel/postrm.d") { + warn "Examining /etc/kernel/postrm.d .\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/postrm.d") && + die "Failed to process /etc/kernel/postrm.d"; +} +if (-d "/etc/kernel/postrm.d/$version") { + warn "Examining /etc/kernel/postrm.d/$version .\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/postrm.d/$version") && + die "Failed to process /etc/kernel/postrm.d/$version"; +} + +# check and remove damaged and dangling symlinks +if ($ARGV[0] !~ /upgrade/) { + system("$ramdisk -d -k " . $version . " > /dev/null 2>&1"); + if (-f $realimageloc . "initrd.img-$version.bak") { + unlink $realimageloc . "initrd.img-$version.bak"; + } + image_magic($kimage, $image_dest); + image_magic($kimage . ".old", $image_dest); + image_magic("initrd.img", $image_dest) if $initrd; + image_magic("initrd.img.old", $image_dest) if $initrd; +} + +exit 0; + +__END__ + + + + + + --- linux-3.2.0.orig/debian/control-scripts/postinst +++ linux-3.2.0/debian/control-scripts/postinst @@ -0,0 +1,1095 @@ +#! /usr/bin/perl +# OriginalAuthor : Manoj Srivastava ( srivasta@pilgrim.umass.edu ) +# +# Customized for Ubuntu by: Ben Collins + +#use strict; #for debugging +use Cwd 'abs_path'; + +$|=1; + +# Predefined values: +my $version = "=V"; +my $link_in_boot = ""; # Should be empty, mostly +my $no_symlink = ""; # Should be empty, mostly +my $reverse_symlink = ""; # Should be empty, mostly +my $do_symlink = "Yes"; # target machine defined +my $do_boot_enable = "Yes"; # target machine defined +my $do_bootfloppy = "Yes"; # target machine defined +my $do_bootloader = "Yes"; # target machine defined +my $move_image = ''; # target machine defined +my $kimage = "=K"; # Should be empty, mostly +my $loader = "=L"; # lilo, silo, quik, palo, vmelilo, nettrom, arcboot or delo +my $image_dir = "/boot"; # where the image is located +my $clobber_modules = ''; # target machine defined +my $relative_links = ""; # target machine defined +my $initrd = "YES"; # initrd kernel +my $do_initrd = ''; # Normally we do not +my $use_hard_links = ''; # hardlinks do not work across fs boundaries +my $postinst_hook = ''; #Normally we do not +my $postrm_hook = ''; #Normally we do not +my $preinst_hook = ''; #Normally we do not +my $prerm_hook = ''; #Normally we do not +my $minimal_swap = ''; # Do not swap symlinks +my $ignore_depmod_err = ''; # normally we do not +my $kernel_arch = "=B"; +my $ramdisk = "/usr/sbin/update-initramfs"; # List of tools to create initial ram fs. +my $notifier = "/usr/share/update-notifier/notify-reboot-required"; +my $package_name = "linux-image-$version"; +my $explicit_do_loader = 'Yes'; + +my $Loader = "NoLOADER"; # +$Loader = "LILO" if $loader =~ /^lilo/io; +$Loader = "SILO" if $loader =~ /^silo/io; +$Loader = "QUIK" if $loader =~ /^quik/io; +$Loader = "yaboot" if $loader =~ /^yaboot/io; +$Loader = "PALO" if $loader =~ /^palo/io; +$Loader = "NETTROM" if $loader =~ /^nettrom/io; +$Loader = "VMELILO" if $loader =~ /^vmelilo/io; +$Loader = "ZIPL" if $loader =~ /^zipl/io; +$Loader = "ELILO" if $loader =~ /^elilo/io; +$Loader = "ARCBOOT" if $loader =~ /^arcboot/io; +$Loader = "DELO" if $loader =~ /^delo/io; + +# This should not point to /tmp, because of security risks. +my $temp_file_name = "/var/log/$loader" . "_log.$$"; + +#known variables +my $image_dest = "/"; +my $realimageloc = "/$image_dir/"; +my $have_conffile = ""; +my $silent_modules = ''; +my $silent_loader = ''; +my $warn_reboot = 'Yes'; # Warn that we are installing a version of + # the kernel we are running + +my $modules_base = '/lib/modules'; +my $CONF_LOC = '/etc/kernel-img.conf'; + +# Ignore all invocations except when called on to configure. +exit 0 unless $ARGV[0] =~ /configure/; + +my $DEBUG = 0; + +# Do some preliminary sanity checks here to ensure we actually have an +# valid image dir +chdir('/') or die "could not chdir to /:$!\n"; +die "Internal Error: ($image_dir) is not a directory!\n" + unless -d $image_dir; + +# remove multiple leading slashes; make sure there is at least one. +$realimageloc =~ s|^/*|/|o; +$realimageloc =~ s|/+|/|o; +die "Internal Error: ($realimageloc) is not a directory!\n" + unless -d $realimageloc; + +if (-r "$CONF_LOC" && -f "$CONF_LOC" ) { + if (open(CONF, "$CONF_LOC")) { + while () { + chomp; + s/\#.*$//g; + next if /^\s*$/; + + $do_symlink = "" if /^\s*do_symlinks\s*=\s*(no|false|0)\s*$/ig; + $no_symlink = "" if /^\s*no_symlinks\s*=\s*(no|false|0)\s*$/ig; + $reverse_symlink = "" if /^\s*reverse_symlink\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*image_in_boot\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*link_in_boot\s*=\s*(no|false|0)\s*$/ig; + $move_image = "" if /^\s*move_image\s*=\s*(no|false|0)\s*$/ig; + $clobber_modules = '' if /^\s*clobber_modules\s*=\s*(no|false|0)\s*$/ig; + $do_boot_enable = '' if /^\s*do_boot_enable\s*=\s*(no|false|0)\s*$/ig; + $do_bootfloppy = '' if /^\s*do_bootfloppy\s*=\s*(no|false|0)\s*$/ig; + $relative_links = '' if /^\s*relative_links \s*=\s*(no|false|0)\s*$/ig; + $do_bootloader = '' if /^\s*do_bootloader\s*=\s*(no|false|0)\s*$/ig; + $explicit_do_loader = '' if /^\s*do_bootloader\s*=\s*(no|false|0)\s*$/ig; + $do_initrd = '' if /^\s*do_initrd\s*=\s*(no|false|0)\s*$/ig; + $use_hard_links = '' if /^\s*use_hard_links\s*=\s*(no|false|0)\s*$/ig; + $silent_modules = '' if /^\s*silent_modules\s*=\s*(no|false|0)\s*$/ig; + $silent_loader = '' if /^\s*silent_loader\s*=\s*(no|false|0)\s*$/ig; + $warn_reboot = '' if /^\s*warn_reboot\s*=\s*(no|false|0)\s*$/ig; + $minimal_swap = '' if /^\s*minimal_swap\s*=\s*(no|false|0)\s*$/ig; + $ignore_depmod_err = '' if /^\s*ignore_depmod_err\s*=\s*(no|false|0)\s*$/ig; + + $do_symlink = "Yes" if /^\s*do_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $no_symlink = "Yes" if /^\s*no_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $reverse_symlink = "Yes" if /^\s*reverse_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*image_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*link_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $move_image = "Yes" if /^\s*move_image\s*=\s*(yes|true|1)\s*$/ig; + $clobber_modules = "Yes" if /^\s*clobber_modules\s*=\s*(yes|true|1)\s*$/ig; + $do_boot_enable = "Yes" if /^\s*do_boot_enable\s*=\s*(yes|true|1)\s*$/ig; + $do_bootfloppy = "Yes" if /^\s*do_bootfloppy\s*=\s*(yes|true|1)\s*$/ig; + $do_bootloader = "Yes" if /^\s*do_bootloader\s*=\s*(yes|true|1)\s*$/ig; + $explicit_do_loader = "YES" if /^\s*do_bootloader\s*=\s*(yes|true|1)\s*$/ig; + $relative_links = "Yes" if /^\s*relative_links\s*=\s*(yes|true|1)\s*$/ig; + $do_initrd = "Yes" if /^\s*do_initrd\s*=\s*(yes|true|1)\s*$/ig; + $use_hard_links = "Yes" if /^\s*use_hard_links\s*=\s*(yes|true|1)\s*$/ig; + $silent_modules = 'Yes' if /^\s*silent_modules\s*=\s*(yes|true|1)\s*$/ig; + $silent_loader = 'Yes' if /^\s*silent_loader\s*=\s*(yes|true|1)\s*$/ig; + $warn_reboot = 'Yes' if /^\s*warn_reboot\s*=\s*(yes|true|1)\s*$/ig; + $minimal_swap = 'Yes' if /^\s*minimal_swap\s*=\s*(yes|true|1)\s*$/ig; + $ignore_depmod_err = 'Yes' if /^\s*ignore_depmod_err\s*=\s*(yes|true|1)\s*$/ig; + + $image_dest = "$1" if /^\s*image_dest\s*=\s*(\S+)/ig; + $postinst_hook = "$1" if /^\s*postinst_hook\s*=\s*(\S+)/ig; + $postrm_hook = "$1" if /^\s*postrm_hook\s*=\s*(\S+)/ig; + $preinst_hook = "$1" if /^\s*preinst_hook\s*=\s*(\S+)/ig; + $prerm_hook = "$1" if /^\s*prerm_hook\s*=\s*(\S+)/ig; + $ramdisk = "$1" if /^\s*ramdisk\s*=\s*(.+)$/ig; + } + close CONF; + $have_conffile = "Yes"; + } +} + + + +# For some versions of kernel-package, we had this warning in the +# postinst, but the rules did not really interpolate the value in. +# Here is a sanity check. +my $pattern = "=" . "I"; +$initrd=~ s/^$pattern$//; + +if ($link_in_boot) { + $image_dest = "/$image_dir/"; # same as realimageloc +} + +# Tack on at least one trainling / +$image_dest = "$image_dest/"; +$image_dest =~ s|^/*|/|o; +$image_dest =~ s|/+$|/|o; + +if (! -d "$image_dest") { + die "Expected Image Destination dir ($image_dest) to be a valid directory!\n"; +} + +# sanity +if (!($do_bootfloppy || $do_bootloader)) { + $do_boot_enable = ''; +} +if ($do_symlink && $no_symlink) { + warn "Both do_symlinks and no_symlinks options enabled; disabling no_symlinks\n"; + $no_symlink = 0; +} + +# most of our work is done in $image_dest (nominally /) +chdir("$image_dest") or die "could not chdir to $image_dest:$!\n"; + +# Paranoid check to make sure that the correct value is put in there +if (! $kimage) { $kimage = "vmlinuz"; } # Hmm. empty +elsif ($kimage =~ m/^b?uImage$/o) { $kimage = "vmlinuz"; } # these produce vmlinuz +elsif ($kimage =~ m/^b?zImage$/o) { $kimage = "vmlinuz"; } # these produce vmlinuz +elsif ($kimage =~ m/^[iI]mage$/o) { my $nop = $kimage; } +elsif ($kimage =~ m/^vmlinux$/o) { my $nop = $kimage; } +else { $kimage = "vmlinuz"; } # Default + +$ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; + + +die "Internal Error: Could not find image (" . $realimageloc + . "$kimage-$version)\n" unless -e $realimageloc + . "$kimage-$version"; + +# search for the boot loader in the path +my $loader_exec; +($loader_exec = $loader) =~ s|.*/||; +my ($loaderloc) = grep -x, map "$_/$loader_exec", + map { length($_) ? $_ : "." } split /:/, $ENV{PATH}; + + +###################################################################### +###################################################################### +########### Test whether a relative symlinkwould be OK ####### +###################################################################### +###################################################################### +sub test_relative { + my %params = @_; + my $cwd; + + die "Internal Error: Missing Required paramater 'Old Dir' " + unless $params{'Old Dir'}; + die "Internal Error: Missing Required paramater New Dir' " + unless $params{'New Dir'}; + + + die "Internal Error: No such dir $params{'Old Dir'} " + unless -d $params{'Old Dir'}; + die "Internal Error: No such dir $params{'New Dir'} " + unless -d $params{'New Dir'}; + + warn "Test relative: testing $params{'Old Dir'} -> $params{'New Dir'}" + if $DEBUG; + chomp($cwd = `pwd`); + chdir ($params{'New Dir'}) or die "Could not chdir to $params{'New Dir'}:$!"; + my $ok = 0; + $params{'Old Dir'} =~ s|^/*||o; + if (-d $params{'Old Dir'} ) { + if (defined $params{'Test File'}) { + if (-e $params{'Old Dir'} . $params{'Test File'}) { + $ok = 1; + } + } else { + $ok = 1; # well, backward compatibility + } + } + chdir ($cwd) or die "Could not chdir to $params{'New Dir'}:$!"; + return $ok; +} + +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### +# sub CanonicalizePath { +# my $path = join '/', @_; +# my @work = split '/', $path; +# my @out; +# my $is_absolute; + +# if (@work && $work[0] eq "") { +# $is_absolute = 1; shift @work; +# } + +# while (@work) { +# my $seg = shift @work; +# if ($seg eq "." || $seg eq "") { +# } +# elsif ($seg eq "..") { +# if (@out && $out[-1] ne "..") { +# pop @out; +# } +# else { +# # Leading "..", or "../..", etc. +# push @out, $seg; +# } +# } +# else { +# push @out, $seg; +# } +# } + +# unshift @out, "" if $is_absolute; +# return join('/', @out); +# } +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### + +sub spath { + my %params = @_; + + die "Missing Required paramater 'Old'" unless $params{'Old'}; + die "Missing Required paramater 'New'" unless $params{'New'}; + + my @olddir = split '/', `readlink -q -m $params{'Old'}`; + my @newdir = split '/', `readlink -q -m $params{'New'}`; + my @outdir = @olddir; + + my $out = ''; + my $i; + for ($i = 0; $i <= $#olddir && $i <= $#newdir; $i++) { + $out++ if ($olddir[$i] ne $newdir[$i]); + shift @outdir unless $out; + unshift @outdir, ".." if $out; + } + if ($#newdir > $#olddir) { + for ($i=0; $i < $#newdir; $i++) { + unshift @outdir, ".."; + } + } + return join ('/', @outdir); +} +###################################################################### +###################################################################### +############ +###################################################################### +###################################################################### + + +# This routine actually moves the kernel image +# From: $realimageloc/$kimage-$version (/boot/vmlinuz-2.6.12) +# To: $image_dest/$kimage-$version (/vmlinuz-2.6.12) +# Note that the image is moved to a versioned destination, but ordinary +# symlinks we create otherwise are not normally versioned +sub really_move_image { + my $src_dir = $_[0]; + my $target = $_[1]; + my $dest_dir = $_[2]; + + warn "Really move image: src_dir=$src_dir, target=$target,\n destdir=$dest_dir" + if $DEBUG; + if (-e "$target") { + # we should be in dir $dest_dir == $image_dest /, normally + rename("$target", "$target.$$") || + die "failed to move " . $dest_dir . "$target:$!"; + warn "mv $target $target.$$" if $DEBUG; + } + warn "mv -f $src_dir$target $target" if $DEBUG; + my $ret = system("mv -f " . $src_dir . "$target " . + " $target"); + if ($ret) { + die("Failed to move " . $src_dir . "$target to " + . $dest_dir . "$target"); + } + # Ok, now we may clobber the previous .old files + if (-e "$target.$$") { + rename("$target.$$", "$target.old") || + die "failed to move " . $dest_dir . "$target:$!"; + warn "mv $target.$$ $target " if $DEBUG; + } +} + +# Normally called after really_move_image; and only called if we asked for +# reversed link this routine reverses the symbolic link that is notmally +# created. Since the real kernel image has been moved over to +# $image_dest/$kimage-$version. So, this routine links +# From: $image_dest/$kimage-$version (/vmlinuz-2.6.12) +# To: $realimageloc/$kimage-$version (/boot/vmlinuz-2.6.12) +sub really_reverse_link { + my $src_dir = $_[0]; + my $link_name = $_[1]; + my $dest_dir = $_[2]; + warn "Really reverse link: src_dir=$src_dir, link name=$link_name\n" . + "\tdestdir=$dest_dir" if $DEBUG; + + my $Old = $dest_dir; + if (test_relative ('Old Dir' => $Old, 'New Dir' => $src_dir, + 'Test File' => "$link_name")) { + $Old =~ s|^/*||o; + } + # Special case is they are in the same dir + my $rel_path = spath('Old' => "$Old", 'New' => "$src_dir" ); + $Old ="" if $rel_path =~ m/^\s*$/o; + + if ($use_hard_links =~ m/YES/i) { + link($Old . "$link_name", $src_dir . "$link_name") || + die("Failed to link " . $dest_dir . "$link_name to " . $src_dir . + "$link_name:$!"); + warn "ln " . $Old . "$link_name " . $src_dir . "$link_name" if $DEBUG; + } + else { + symlink($Old . "$link_name", $src_dir . "$link_name") || + die("Failed to symbolic-link " . $dest_dir . "$link_name to " . $src_dir + . "$link_name:$!"); + warn "ln -s " . $Old . "$link_name " . $src_dir . "$link_name" if $DEBUG; + } +} + +# This routine is invoked if there is a symbolic link in place +# in $image_dest/$kimage -- so a symlink exists in the destination. +# What we are trying to determine is if we need to move the symbolic link over +# to the the .old location +sub move_p { + my $kimage = $_[0]; # Name of the symbolic link + my $image_dest = $_[1]; # The directory the links goes into + my $image_name = $_[2]; + my $src_dir = $_[3]; + my $force_move = 0; + warn "Move?: kimage=$kimage, image_dest=$image_dest, \n" . + "\timage_name=$image_name, src_dir=$src_dir" if $DEBUG; + + if ($no_symlink || $reverse_symlink) { + # we do not want links, yet we have a symbolic link here! + warn "found a symbolic link in " . $image_dest . "$kimage \n" . + "even though no_symlink is defined\n" if $no_symlink; + warn "found a symbolic link in " . $image_dest . "$kimage \n" . + "even though reverse_symlink is defined\n" if $reverse_symlink; + # make sure we change this state of affairs + $force_move = 1; + return $force_move; + } + + warn "DEBUG: OK. We found symlink, and we should have a symlink here.\n" + if $DEBUG; + my $vmlinuz_target = readlink "$kimage"; + my $real_target = ''; + my $target = `readlink -q -m "${realimageloc}${kimage-$version}"`; + $real_target = abs_path($vmlinuz_target) if defined($vmlinuz_target); + + if (!defined($vmlinuz_target) || ! -f "$real_target") { + # what, a dangling symlink? + warn "The link " . $image_dest . "$kimage is a dangling link" . + "to $real_target\n"; + $force_move = 1; + return $force_move; + } + + + warn "DEBUG: The link $kimage points to ($vmlinuz_target)\n" if $DEBUG; + warn "DEBUG: ($vmlinuz_target) is really ($real_target)\n" if $DEBUG; + my $cwd; + chomp ($cwd=`pwd`); + if ($vmlinuz_target !~ m|^/|o) { + $vmlinuz_target = $cwd . "/" . $vmlinuz_target; + $vmlinuz_target =~ s|/+|/|o; + } + $vmlinuz_target = `readlink -q -m $vmlinuz_target`; + + if ("$vmlinuz_target" ne "$target") { + warn "DEBUG: We need to handle this.\n" if $DEBUG; + if ($minimal_swap) { + warn "DEBUG: Minimal swap.\n" if $DEBUG; + if (-l "$kimage.old") { + warn "DEBUG: There is an old link at $kimage.old\n" if $DEBUG; + my $old_target = readlink "$kimage.old"; + my $real_old_target = ''; + $real_old_target=abs_path($old_target) if defined ($old_target); + + if ($real_old_target && -f "$real_old_target") { + if ($old_target !~ m|^/|o) { + $old_target = $cwd . "/" . $old_target; + $old_target =~ s|/+|/|o; + } + $old_target = `readlink -q -m $old_target`; + if ("$old_target" ne "$target") { + $force_move = 1; + warn "DEBUG: Old link ($old_target) does not point to us ($target)\n" + if $DEBUG; + } + else { # The .old points to the current + warn "$kimage.old --> $target -- doing nothing"; + $force_move = 0; + } + } + else { + warn "DEBUG: Well, the old link does not exist -- so we move\n" + if $DEBUG; + $force_move = 1; + } + } + else { + warn "DEBUG: No .old link -- OK to move\n" + if $DEBUG; + $force_move = 1; + } + } + else { + warn "DEBUG: ok, minimal swap is no-- so we move.\n" + if $DEBUG; + $force_move = 1; + } + } + else { # already have proper link + warn "$kimage($vmlinuz_target) points to $target ($real_target) -- doing nothing"; + $force_move = 0; + } + return $force_move; +} + + +# This routine moves the symbolic link around (/vmlinuz -> /vmlinuz.old) +# It pays attention to whether we should the fact whether we should be using +# hard links or not. +sub really_move_link { + my $kimage = $_[0]; # Name of the symbolic link + my $image_dest = $_[1]; # The directory the links goes into + my $image_name = $_[2]; + my $src_dir = $_[3]; + warn "really_move_link: kimage=$kimage, image_dest=$image_dest\n" . + "\t image_name=$image_name, src_dir=$src_dir" if $DEBUG; + + # don't clobber $kimage.old quite yet + rename("$kimage", "$kimage.$$") || + die "failed to move " . $image_dest . "$kimage:$!"; + warn "mv $kimage $kimage.$$" if $DEBUG; + my $Old = $src_dir; + my $cwd; + + chomp($cwd=`pwd`); + if (test_relative ('Old Dir' => $Old, 'New Dir' => $cwd, + 'Test File' => "$image_name")) { + $Old =~ s|^/*||o; + } + # Special case is they are in the same dir + my $rel_path = spath('Old' => "$Old", 'New' => "$cwd" ); + $Old ="" if $rel_path =~ m/^\s*$/o; + + if ($use_hard_links =~ m/YES/i) { + warn "ln ${Old}${image_name} $kimage" if $DEBUG; + if (! link("${Old}${image_name}", "$kimage")) { + rename("$kimage.$$", "$kimage"); + die("Failed to link ${Old}${image_name} to " . + "${image_dest}${kimage}:$!"); + } + } + else { + warn "ln -s ${Old}${image_name} $kimage" if $DEBUG; + if (! symlink("${Old}${image_name}", "$kimage")) { + rename("$kimage.$$", "$kimage"); + die("Failed to symbolic-link ${Old}${image_name} to " . + "${image_dest}${kimage}:$!"); + } + } + + # Ok, now we may clobber the previous .old file + if (-l "$kimage.old" || ! -e "$kimage.old" ) { + rename("$kimage.$$", "$kimage.old"); + warn "mv $kimage.$$ $kimage.old" if $DEBUG; + } + else { + warn "$kimage.old is not a symlink, not clobbering\n"; + warn "rm $kimage.$$"; + unlink "$kimage.$$" if $DEBUG; + } +} + +# This routine handles a request to do symlinks, but there is no +# symlink file already there. Either we are supposed to use copy, or we are +# installing on a pristine system, or the user does not want symbolic links at +# all. We use a configuration file to tell the last two cases apart, creating +# a config file if needed. +sub handle_missing_link { + my $kimage = $_[0]; # Name of the symbolic link + my $image_dest = $_[1]; # The directory the links goes into + my $image_name = $_[2]; + my $src_dir = $_[3]; + warn "handle_missing_link: kimage=$kimage, image_dest=$image_dest\n" . + "\t image_name=$image_name, src_dir=$src_dir" if $DEBUG; + + if ($no_symlink) { + warn "cp -a --backup=t $realimageloc$image_name $kimage" if $DEBUG; + my $ret = system("cp -a --backup=t " . $realimageloc . + "$image_name " . " $kimage"); + if ($ret) { + die("Failed to copy " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + } + elsif ($reverse_symlink) { + warn "mv -f $realimageloc$image_name $kimage" if $DEBUG; + my $ret = system("mv -f " . $realimageloc . "$image_name " + . "$kimage"); + if ($ret) { + die("Failed to move " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + } + else { + if (! $have_conffile) { + my $ret; + my $answer=''; + $do_symlink = "Yes"; + + if (open(CONF, ">$CONF_LOC")) { + print CONF "# Kernel Image management overrides\n"; + print CONF "# See kernel-img.conf(5) for details\n"; + if ($loader =~ /palo/i) { + print CONF "link_in_boot = Yes\n"; + print CONF "do_symlinks = Yes\n"; + print CONF "relative_links = Yes\n"; + print CONF "do_bootloader = No\n"; + } else { + print CONF "do_symlinks = $do_symlink\n"; + } + close CONF; + } + $have_conffile = "Yes"; + } + } + + if (! $no_symlink && $do_symlink =~ /Yes/i) { + my $Old = $realimageloc; + my $New = $image_dest; + my $Name = "$image_name"; + my $Link_Dest = "$kimage"; + + if ($reverse_symlink) { + $Old = $image_dest; + $New = $realimageloc; + $Name = "$kimage"; + $Link_Dest = $realimageloc . "$image_name"; + } + if (test_relative ('Old Dir' => $Old, + 'New Dir' => $New, + 'Test File' => $Name)) { + $Old =~ s|^/*||o; + } + # Special case is they are in the same dir + my $rel_path = spath('Old' => "$Old", 'New' => "$New" ); + $Old ="" if $rel_path =~ m/^\s*$/o; + + symlink($Old . "$Name", "$Link_Dest") || + die("Failed to symbolic-link ${Old}$Name to $Link_Dest:$!"); + warn "ln -s ${Old}$Name $Link_Dest" if $DEBUG; + + } +} + +# This routine handles the rest of the cases, where the user has requested +# non-traditional handling, like using cp, or reverse symlinks, or hard links. +sub handle_non_symlinks { + my $kimage = $_[0]; # Name of the symbolic link + my $image_dest = $_[1]; # The directory the links goes into + my $image_name = $_[2]; + my $src_dir = $_[3]; + warn "handle_non_link: kimage=$kimage, image_dest=$image_dest\n" . + "\t image_name=$image_name, src_dir=$src_dir" if $DEBUG; + + # Save the current image. We do this in all four cases + rename("$kimage", "$kimage.$$") || + die "failed to move " . $image_dest . "$kimage:$!"; + warn "mv $kimage $kimage.$$" if $DEBUG; + + ##,#### + # case One + #`#### + if ($no_symlink) { + # Maybe /$image_dest is on a dos system? + warn "cp -a --backup=t $realimageloc$image_name $kimage" if $DEBUG; + my $ret = system("cp -a --backup=t " . $realimageloc + . "$image_name " . "$kimage"); + if ($ret) { + if (-e "$kimage.$$") { + rename("$kimage.$$", "$kimage"); + warn "mv $kimage.$$ $kimage" if $DEBUG; + } + die("Failed to copy " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + } + ##,#### + # case Two + #`#### + elsif ($reverse_symlink) { # Maybe /$image_dest is on a dos system? + warn "mv -f $realimageloc$image_name $kimage" if $DEBUG; + my $ret = system("mv -f " . $realimageloc . "$image_name " + . $image_dest . "$kimage"); + if ($ret) { + if (-e "$kimage.$$") { + rename("$kimage.$$", "$kimage"); + warn "mv $kimage.$$ $kimage" if $DEBUG; + } + die("Failed to move " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + my $Old = $image_dest; + if (test_relative ('Old Dir' => $Old, 'New Dir' => $realimageloc, + 'Test File' => "$kimage")) { + $Old =~ s|^/*||o; + } + # Special case is they are in the same dir + my $rel_path = spath('Old' => "$Old", 'New' => "$realimageloc" ); + $Old ="" if $rel_path =~ m/^\s*$/o; + + if ($use_hard_links =~ m/YES/i) { + warn "ln " . $Old . "$kimage " . $realimageloc . "$image_name" if $DEBUG; + if (! link($Old . "$kimage", $realimageloc . "$image_name")) { + warn "Could not link " . $image_dest . + "$kimage to $image_name :$!"; + } + } + else { + warn "ln -s " . $Old . "$kimage " . $realimageloc . "$image_name" if $DEBUG; + if (! symlink($Old . "$kimage", $realimageloc . "$image_name")) { + warn "Could not symlink " . $image_dest . + "$kimage to $image_name :$!"; + } + } + } + ##,#### + # case Three + #`#### + elsif ($use_hard_links =~ m/YES/i ) { + # Ok then. this ought to be a hard link, and hence fair game + # don't clobber $kimage.old quite yet + my $Old = $realimageloc; + my $cwd; + chomp($cwd=`pwd`); + if (test_relative ('Old Dir' => $Old, 'New Dir' => $cwd, + 'Test File' => "$image_name")) { + $Old =~ s|^/*||o; + } + # Special case is they are in the same dir + my $rel_path = spath('Old' => "$Old", 'New' => "$cwd" ); + $Old ="" if $rel_path =~ m/^\s*$/o; + + warn "ln " . $Old . "$image_name " . "$kimage" if $DEBUG; + if (! link($Old . "$image_name", "$kimage")) { + warn "mv $kimage.$$ $kimage" if $DEBUG; + rename("$kimage.$$", "$kimage"); + die("Failed to link " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + } + ##,#### + # case Four + #`#### + else { + # We just use cp + warn "cp -a --backup=t $realimageloc$image_name $kimage" if $DEBUG; + my $ret = system("cp -a --backup=t " . $realimageloc + . "$image_name " . "$kimage"); + if ($ret) { + if (-e "$kimage.$$") { + warn "mv $kimage.$$ $kimage" if $DEBUG; + rename("$kimage.$$", "$kimage"); + } + die("Failed to copy " . $realimageloc . "$image_name to " + . $image_dest . "$kimage"); + } + } + # Ok, now we may clobber the previous .old file + warn "mv $kimage.$$ $kimage.old if -e $kimage.$$" if $DEBUG; + rename("$kimage.$$", "$kimage.old") if -e "$kimage.$$"; +} + +# This routine is responsible for setting up the symbolic links +# So, the actual kernel image lives in +# $realimageloc/$image_name (/boot/vmlinuz-2.6.12). +# This routine creates symbolic links in $image_dest/$kimage (/vmlinuz) +sub image_magic { + my $kimage = $_[0]; # Name of the symbolic link + my $image_dest = $_[1]; # The directory the links goes into + my $image_name = "$kimage-$version"; + my $src_dir = $realimageloc; + warn "image_magic: kimage=$kimage, image_dest=$image_dest\n" . + "\t image_name=$image_name, src_dir=$src_dir" if $DEBUG; + + # Well, in any case, if the destination (the symlink we are trying + # to create) is a directory, we should do nothing, except throw a + # diagnostic. + if (-d "$kimage" ) { + die ("Hmm. $kimage is a directory, which I did not expect. I am\n" . + "trying to create a symbolic link with that name linked to \n" . + "$image_dest . Since a directory exists here, my assumptions \n" . + "are way off, and I am aborting.\n" ); + exit (3); + } + + if ($move_image) { # Maybe $image_dest is in on dos, or something? + # source dir, link name, dest dir + really_move_image( $realimageloc, $image_name, $image_dest); + really_reverse_link($realimageloc, $image_name, $image_dest) + if $reverse_symlink; + return; + } + + if (-l "$kimage") { # There is a symbolic link + warn "DEBUG: There is a symlink for $kimage\n" if $DEBUG; + my $force_move = move_p($kimage, $image_dest, $image_name, $src_dir); + + if ($force_move) { + really_move_link($kimage, $image_dest, $image_name, $src_dir); + } + } + elsif (! -e "$kimage") { + # Hmm. Pristine system? How can that be? Installing from scratch? + # Or maybe the user does not want a symbolic link here. + # Possibly they do not want a link here. (we should be in / + # here[$image_dest, really] + handle_missing_link($kimage, $image_dest, $image_name, $src_dir); + } + elsif (-e "$kimage" ) { + # OK, $kimage exists -- but is not a link + handle_non_symlinks($kimage, $image_dest, $image_name, $src_dir); + } +} + +###################################################################### +###################################################################### +###################################################################### +###################################################################### + +# We may not have any modules installed +if ( -d "$modules_base/$version" ) { + print STDERR "Running depmod.\n"; + my $ret = system("depmod -a $version"); + if ($ret) { + print STDERR "Failed to run depmod\n"; + exit(1); + } +} + + + +sub find_initrd_tool { + my $hostversion = shift; + my $version = shift; + print STDERR "Finding valid ramdisk creators.\n"; + my @ramdisks = + grep { + my $args = + "$_ " . + "--supported-host-version=$hostversion " . + "--supported-target-version=$version " . + "1>/dev/null 2>&1" + ; + system($args) == 0; + } + split (/[:,\s]+/, $ramdisk); +} + +# The initrd symlink should probably be in the same dir that the +# symlinks are in +if ($initrd) { + my $success = 0; + + # Update-initramfs is called slightly different than mkinitrd and + # mkinitramfs. XXX It should really be made compatible with this stuff + # some how. + my $upgrading = 1; + if (! defined $ARGV[1] || ! $ARGV[1] || $ARGV[1] =~ m//og) { + $upgrading = 0; + } + my $ret = system("$ramdisk " . ($upgrading ? "-u" : "-c") . " -k " . $version . " >&2"); + $success = 1 unless $ret; + die "Failed to create initrd image.\n" unless $success; + if (! defined $ARGV[1] || ! $ARGV[1] || $ARGV[1] =~ m//og) { + image_magic("initrd.img", $image_dest); + } + else { + if (! -e "initrd.img") { + handle_missing_link("initrd.img", $image_dest, "initrd.img-$version", + $realimageloc); + } + else { + print STDERR + "Not updating initrd symbolic links since we are being updated/reinstalled \n"; + print STDERR + "($ARGV[1] was configured last, according to dpkg)\n"; + } + } + + if ($initrd && -l "initrd" ) { + unlink "initrd"; + } + + if ($initrd && -l "$image_dir/initrd" && ! $link_in_boot) { + unlink "$image_dir/initrd"; + } +} +else { # Not making an initrd emage + if (-l "initrd.img") { + # Ooh, last image was an initrd image? in any case, we should move it. + my $target = readlink "initrd.img"; + my $real_target = ''; + $real_target = abs_path($target) if defined ($target); + + if (!defined($target) || ! -f "$real_target") { + # Eh. dangling link. can safely be removed. + unlink("initrd.img"); + } else { + if (-l "initrd.img.old" || ! -e "initrd.img.old" ) { + rename("initrd.img", "initrd.img.old"); + } else { + warn "initrd.img.old is not a symlink, not clobbering\n"; + unlink("initrd.img"); + } + } + } +} + +# Warn of a reboot +if (-x $notifier) { + system($notifier); +} + +# Let programs know not to hibernate if the kernel that would be used for +# resume-from-hibernate is likely to differ from the currently running kernel. +system("mountpoint -q /var/run"); +if ($? eq 0) { + system("touch /var/run/do-not-hibernate"); +} + +# Only change the symlinks if we are not being upgraded +if (! defined $ARGV[1] || ! $ARGV[1] || $ARGV[1] =~ m//og) { + image_magic($kimage, $image_dest); +} +else { + if (! -e "$kimage") { + handle_missing_link($kimage, $image_dest, "$kimage-$version", + $realimageloc); + } + else { + print STDERR + "Not updating image symbolic links since we are being updated/reinstalled \n"; + print STDERR + "($ARGV[1] was configured last, according to dpkg)\n"; + } +} + +# We used to have System.* files in / +if (-e "/System.map" || -e "/System.old") { + unlink '/System.map' if -e '/System.map'; + unlink '/System.old' if -e '/System.old'; +} + +# creating some info about kernel and initrd +if ($DEBUG) { + my $ksize=sprintf("%.0f",(stat($realimageloc . + "$kimage-$version"))[7]/1024)."kB"; + my $initrdsize=''; + if ($initrd) { + $initrdsize=sprintf("%.0f",(stat($realimageloc . + "initrd.img-$version"))[7]/1024)."kB"; + } + + print STDERR <<"EOMSG"; +A new kernel image has been installed at $realimageloc$kimage-$version + (Size: $ksize) + +Symbolic links, unless otherwise specified, can be found in $image_dest + +EOMSG + ; + + if ($initrd) { + print STDERR <<"EOMSGA"; + + Initial rootdisk image: ${realimageloc}initrd.img-$version (Size: $initrdsize) +EOMSGA + ; + } +} + +# set the env var stem +$ENV{'STEM'} = "linux"; +sub exec_script { + my $type = shift; + my $script = shift; + print STDERR "Running $type hook script $script.\n"; + system ("$script $version $realimageloc$kimage-$version") && + print STDERR "User $type hook script [$script] "; + if ($?) { + if ($? == -1) { + print STDERR "failed to execute: $!\n"; + } + elsif ($? & 127) { + printf STDERR "died with signal %d, %s coredump\n", + ($? & 127), ($? & 128) ? 'with' : 'without'; + } + else { + printf STDERR "exited with value %d\n", $? >> 8; + } + exit $? >> 8; + } +} +sub run_hook { + my $type = shift; + my $script = shift; + if ($script =~ m,^/,) { + # Full path provided for the hook script + if (-x "$script") { + &exec_script($type,$script); + } + else { + die "The provided $type hook script [$script] could not be run.\n"; + } + } + else { + # Look for it in a safe path + for my $path ('/bin', '/sbin', '/usr/bin', '/usr/sbin') { + if (-x "$path/$script") { + &exec_script($type, "$path/$script"); + return 0; + } + } + # No luck + print STDERR "Could not find $type hook script [$script].\n"; + die "Looked in: '/bin', '/sbin', '/usr/bin', '/usr/sbin'\n"; + } +} + +my $options; +for (@ARGV) { + s,','\\'',g; + $options .= " '$_'"; +} +$ENV{'DEB_MAINT_PARAMS'}="$options"; + +## Run user hook script here, if any +if ($postinst_hook) { + &run_hook("postinst", $postinst_hook); +} + +if (-d "/etc/kernel/postinst.d") { + print STDERR "Examining /etc/kernel/postinst.d.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/postinst.d") && + die "Failed to process /etc/kernel/postinst.d"; +} + +if (-d "/etc/kernel/postinst.d/$version") { + print STDERR "Examining /etc/kernel/postinst.d/$version.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/postinst.d/$version") && + die "Failed to process /etc/kernel/postinst.d/$version"; +} + +LOADER: { + last unless $do_boot_enable; # Exit if explicitly asked to + + last if $loader =~ /silo/i; # SILO does not have to be executed. + last if $loader =~ /yaboot/i; # yaboot does not have to be executed. + last if $loader =~ /milo/i; # MILO does not have to be executed. + last if $loader =~ /nettrom/i; # NETTROM does not have to be executed. + last if $loader =~ /arcboot/i; # ARCBOOT does not have to be executed. + last if $loader =~ /delo/i; # DELO does not have to be executed. + last if $loader =~ /quik/i; # maintainer asked quik invocation to be ignored + + last unless $loaderloc; + last unless -x $loaderloc; + last unless $do_bootloader; + + if (-T "/etc/$loader.conf") { + # Trust and use the existing lilo.conf. + print STDERR "You already have a $Loader configuration in /etc/$loader.conf\n"; + my $ret = &run_lilo(); + exit $ret if $ret; + } +} + + +sub run_lilo (){ + my $ret; + # Try and figure out if the user really wants lilo to be run -- + # since the default is to run the boot laoder, which is ! grub -- but + # the user may be using grub now, and not changed the default. + + # So, if the user has explicitly asked for the loader to be run, or + # if there is no postinst hook, or if there is no grub installed -- + # we are OK. Or else, we ask. + if ($explicit_do_loader || (! ($postinst_hook && -x '/usr/sbin/grub'))) { + print STDERR "Running boot loader as requested\n"; + } else { + print STDERR "Ok, not running $loader\n"; + } + if ($loader =~ /^lilo/io or $loader =~ /vmelilo/io) { + print STDERR "Testing $loader.conf ... \n"; + unlink $temp_file_name; # security + $ret = system("$loaderloc -t >$temp_file_name 2>&1"); + if ($ret) { + print STDERR "Boot loader test failed\n"; + return $ret; + } + unlink "$temp_file_name"; + print STDERR "Testing successful.\n"; + print STDERR "Installing the "; + print STDERR "partition " if $loader =~ /^lilo/io; + print STDERR "boot sector... \n"; + } + + print STDERR "Running $loaderloc ... \n"; + if ($loader =~ /^elilo/io) { + $ret = system("$loaderloc 2>&1 | tee $temp_file_name"); + } else { + $ret = system("$loaderloc >$temp_file_name 2>&1"); + } + if ($ret) { + print STDERR "Boot loader failed to run\n"; + return $ret; + } + unlink $temp_file_name; + print STDERR "Installation successful.\n"; + return 0; +} + +exit 0; + +__END__ + --- linux-3.2.0.orig/debian/control-scripts/prerm +++ linux-3.2.0/debian/control-scripts/prerm @@ -0,0 +1,312 @@ +#! /usr/bin/perl +# -*- Mode: Perl -*- +# image.prerm --- +# Author : root ( root@melkor.pilgrim.umass.edu ) +# Created On : Fri May 17 03:28:59 1996 +# Created On Node : melkor.pilgrim.umass.edu +# Last Modified By : Manoj Srivastava +# Last Modified On : Sat Aug 5 13:14:17 2006 +# Last Machine Used: glaurung.internal.golden-gryphon.com +# Update Count : 85 +# Status : Unknown, Use with caution! +# HISTORY : +# Description : +# +# +# $Id: image.prerm,v 1.22 2003/10/07 16:24:20 srivasta Exp $ +# +# +#use strict; + +$|=1; +# Predefined values: +my $version = "=V"; +my $link_in_boot = ""; # Should be empty, mostly +my $no_symlink = ""; # Should be empty, mostly +my $reverse_symlink = ""; # Should be empty, mostly +my $do_symlinks = "Yes"; # target machine defined +my $do_boot_enable = "Yes"; # target machine defined +my $do_bootfloppy = "Yes"; # target machine defined +my $do_bootloader = "Yes"; # target machine defined +my $move_image = ''; # target machine defined +my $kimage = "=K"; # Should be empty, mostly +my $loader = "=L"; # lilo, silo, quik, palo, vmelilo, or nettrom +my $image_dir = "/boot"; # where the image is located +my $clobber_modules = ''; # target machine defined +my $initrd = "YES"; # initrd kernel +my $use_hard_links = ''; # hardlinks do not wirk across fs boundaries +my $postinst_hook = ''; #Normally we do not +my $postrm_hook = ''; #Normally we do not +my $preinst_hook = ''; #Normally we do not +my $prerm_hook = ''; #Normally we do not +my $minimal_swap = ''; # Do not swap symlinks +my $ignore_depmod_err = ''; # normally we do not +my $relink_build_link = 'YES'; # There is no harm in checking the link +my $force_build_link = ''; # There is no harm in checking the link +my $kernel_arch = "=B"; +my $ramdisk = "/usr/sbin/update-initramfs"; +my $package_name = "linux-image-$version"; + +my $Loader = "NoLOADER"; # +$Loader = "LILO" if $loader =~ /^lilo/io; +$Loader = "SILO" if $loader =~ /^silo/io; +$Loader = "QUIK" if $loader =~ /^quik/io; +$Loader = "yaboot" if $loader =~ /^yaboot/io; +$Loader = "PALO" if $loader =~ /^palo/io; +$Loader = "NETTROM" if $loader =~ /^nettrom/io; +$Loader = "VMELILO" if $loader =~ /^vmelilo/io; +$Loader = "ZIPL" if $loader =~ /^zipl/io; +$Loader = "ELILO" if $loader =~ /^elilo/io; + + +# This should not point to /tmp, because of security risks. +my $temp_file_name = "/var/log/$loader" . "_log.$$"; + +#known variables +my $image_dest = "/"; +my $realimageloc = "/$image_dir/"; +my $have_conffile = ""; +my $CONF_LOC = '/etc/kernel-img.conf'; +my $relative_links = ''; +my $silent_loader = ''; +my $warn_reboot = 'Yes'; # Warn that we are installing a version of + # the kernel we are running + +# remove multiple leading slashes; make sure there is at least one. +$realimageloc =~ s|^/*|/|o; +$realimageloc =~ s|/+|/|o; + +my $DEBUG = 0; + +# Variables used +my $image=''; +my $ret=0; +my $seen=''; +my $answer=''; +my $running = ''; +my $WouldInvalidate = 0; + +if ($ARGV[0] && ($ARGV[0] =~ /remove/ || $ARGV[0] =~ /upgrade/)) { + if (-l "/usr/doc/linux-image-$version") { + unlink "/usr/doc/linux-image-$version"; + } +} + +# Ignore all invocations uxcept when called on to remove +exit 0 unless ($ARGV[0] && $ARGV[0] =~ /remove/) ; + +# Paranoid check to make sure that the correct value is put in there +if (! $kimage) { $kimage = "vmlinuz";} # Hmm. empty +elsif ($kimage =~ m/^b?uImage$/o) { $kimage = "vmlinuz";} # these produce vmlinuz +elsif ($kimage =~ m/^b?zImage$/o) { $kimage = "vmlinuz";} # these produce vmlinuz +elsif ($kimage =~ m/^[iI]mage$/o) { my $nop = $kimage; } +elsif ($kimage =~ m/^vmlinux$/o) { my $nop = $kimage; } +else { $kimage = "vmlinuz";} # Default + +if (-r "$CONF_LOC" && -f "$CONF_LOC" ) { + if (open(CONF, "$CONF_LOC")) { + while () { + chomp; + s/\#.*$//g; + next if /^\s*$/; + + $do_symlink = "" if /^\s*do_symlinks\s*=\s*(no|false|0)\s*$/ig; + $no_symlink = "" if /^\s*no_symlinks\s*=\s*(no|false|0)\s*$/ig; + $reverse_symlink = "" if /^\s*reverse_symlinks\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*image_in_boot\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*link_in_boot\s*=\s*(no|false|0)\s*$/ig; + $move_image = "" if /^\s*move_image\s*=\s*(no|false|0)\s*$/ig; + $clobber_modules = '' if /^\s*clobber_modules\s*=\s*(no|false|0)\s*$/ig; + $do_boot_enable = '' if /^\s*do_boot_enable\s*=\s*(no|false|0)\s*$/ig; + $do_bootfloppy = '' if /^\s*do_bootfloppy\s*=\s*(no|false|0)\s*$/ig; + $relative_links = '' if /^\s*relative_links \s*=\s*(no|false|0)\s*$/ig; + $do_bootloader = '' if /^\s*do_bootloader\s*=\s*(no|false|0)\s*$/ig; + $do_initrd = '' if /^\s*do_initrd\s*=\s*(no|false|0)\s*$/ig; + $use_hard_links = '' if /^\s*use_hard_links\s*=\s*(no|false|0)\s*$/ig; + $silent_loader = '' if /^\s*silent_loader\s*=\s*(no|false|0)\s*$/ig; + $warn_reboot = '' if /^\s*warn_reboot\s*=\s*(no|false|0)\s*$/ig; + $minimal_swap = '' if /^\s*minimal_swap\s*=\s*(no|false|0)\s*$/ig; + $ignore_depmod_err = '' if /^\s*ignore_depmod_err\s*=\s*(no|false|0)\s*$/ig; + $relink_build_link = '' if /^\s*relink_build_link\s*=\s*(no|false|0)\s*$/ig; + $force_build_link = '' if /^\s*force_build_link\s*=\s*(no|false|0)\s*$/ig; + + + $do_symlink = "Yes" if /^\s*do_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $no_symlink = "Yes" if /^\s*no_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $reverse_symlink = "Yes" if /^\s*reverse_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*image_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*link_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $move_image = "Yes" if /^\s*move_image\s*=\s*(yes|true|1)\s*$/ig; + $clobber_modules = "Yes" if /^\s*clobber_modules\s*=\s*(yes|true|1)\s*$/ig; + $do_boot_enable = "Yes" if /^\s*do_boot_enable\s*=\s*(yes|true|1)\s*$/ig; + $do_bootfloppy = "Yes" if /^\s*do_bootfloppy\s*=\s*(yes|true|1)\s*$/ig; + $do_bootloader = "Yes" if /^\s*do_bootloader\s*=\s*(yes|true|1)\s*$/ig; + $relative_links = "Yes" if /^\s*relative_links\s*=\s*(yes|true|1)\s*$/ig; + $do_initrd = "Yes" if /^\s*do_initrd\s*=\s*(yes|true|1)\s*$/ig; + $use_hard_links = "Yes" if /^\s*use_hard_links\s*=\s*(yes|true|1)\s*$/ig; + $silent_loader = 'Yes' if /^\s*silent_loader\s*=\s*(yes|true|1)\s*$/ig; + $warn_reboot = 'Yes' if /^\s*warn_reboot\s*=\s*(yes|true|1)\s*$/ig; + $minimal_swap = 'Yes' if /^\s*minimal_swap\s*=\s*(yes|true|1)\s*$/ig; + $ignore_depmod_err = 'Yes' if /^\s*ignore_depmod_err\s*=\s*(yes|true|1)\s*$/ig; + $relink_build_link = 'Yes' if /^\s*relink_build_link\s*=\s*(yes|true|1)\s*$/ig; + $force_build_link = 'Yes' if /^\s*force_build_link\s*=\s*(yes|true|1)\s*$/ig; + + $image_dest = "$1" if /^\s*image_dest\s*=\s*(\S+)/ig; + $postinst_hook = "$1" if /^\s*postinst_hook\s*=\s*(\S+)/ig; + $postrm_hook = "$1" if /^\s*postrm_hook\s*=\s*(\S+)/ig; + $preinst_hook = "$1" if /^\s*preinst_hook\s*=\s*(\S+)/ig; + $prerm_hook = "$1" if /^\s*prerm_hook\s*=\s*(\S+)/ig; + $ramdisk = "$1" if /^\s*ramdisk\s*=\s*(.+)$/ig; + } + close CONF; + $have_conffile = "Yes"; + } +} + + +$ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; + +#check to see if we are trying to remove a running kernel +# if so we abort right now. +chop($running=`uname -r`); +if ($running eq $version) { + print STDERR "WARN: Proceeding with removing running kernel image.\n"; +} + +#Now, they have an alternate kernel which they are currently running + +# This is just us being nice to lilo users. + +chdir("/") or die "could not chdir to /:$!\n"; + +if (-f "/etc/$loader.conf") { #I know, could be a link, but .. + open (LILO, "/etc/$loader.conf") || &success(); # this is not critical + while () { + chop; + s/\#.*//; # nix the comments + next unless /^\s*image\s*=\s(\S+)/o; + $image = $1; + if ($image && -e $image) { + while (defined($image) && -l $image) { + $image = readlink ($image); + } + if (defined($image) && -e $image) { + $WouldInvalidate |= $image =~ /$kimage-$version/; + } + else { + &success(); # invalid $loader.conf file + } + } + else { + &success(); # invalid $loader.conf file + } + } + close (LILO); + if ($WouldInvalidate) { + print STFERR "WARN: Proceeding with removing running kernel image.\n"; + &success(); + } +} + + +# set the env var stem +$ENV{'STEM'} = "linux"; + +sub exec_script { + my $type = shift; + my $script = shift; + print STDERR "Running $type hook script $script.\n"; + system ("$script $version $realimageloc$kimage-$version") && + print STDERR "User $type hook script [$script] "; + if ($?) { + if ($? == -1) { + print STDERR "failed to execute: $!\n"; + } + elsif ($? & 127) { + printf STDERR "died with signal %d, %s coredump\n", + ($? & 127), ($? & 128) ? 'with' : 'without'; + } + else { + printf STDERR "exited with value %d\n", $? >> 8; + } + exit $? >> 8; + } +} +sub run_hook { + my $type = shift; + my $script = shift; + if ($script =~ m,^/,) { + # Full path provided for the hook script + if (-x "$script") { + &exec_script($type,$script); + } + else { + die "The provided $type hook script [$script] could not be run.\n"; + } + } + else { + # Look for it in a safe path + for my $path ('/bin', '/sbin', '/usr/bin', '/usr/sbin') { + if (-x "$path/$script") { + &exec_script($type, "$path/$script"); + return 0; + } + } + # No luck + print STDERR "Could not find $type hook script [$script].\n"; + die "Looked in: '/bin', '/sbin', '/usr/bin', '/usr/sbin'\n"; + } +} + + +my $options; +for (@ARGV) { + s,','\\'',g; + $options .= " '$_'"; +} +$ENV{'DEB_MAINT_PARAMS'}="$options"; + +## Run user hook script here, if any +if (-x "$prerm_hook") { + &run_hook("prerm", $prerm_hook); +} +if (-d "/etc/kernel/prerm.d") { + print STDERR "Examining /etc/kernel/prerm.d.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version /etc/kernel/prerm.d") && + die "Failed to process /etc/kernel/prerm.d"; +} +if (-d "/etc/kernel/prerm.d/$version") { + print STDERR "Examining /etc/kernel/prerm.d/$version.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version" . + " --arg=$realimageloc$kimage-$version " . + "/etc/kernel/prerm.d/$version") && + die "Failed to process /etc/kernel/prerm.d/$version"; +} + +sub success () { + # NOTE: need to keep this list in sync with rules.d/2-binary-arch.mk + my %files_to_keep = ( + 'modules.builtin' => 1, + 'modules.order' => 1, + ); + my $short; + for my $file () { + $short = $file; $short =~ s,.*/,,; + if (!defined $files_to_keep{$short}) { + unlink "$file"; + } + } + exit 0; +} + + + +&success(); +exit 0; +__END__ + + + + + --- linux-3.2.0.orig/debian/control-scripts/postinst.extra +++ linux-3.2.0/debian/control-scripts/postinst.extra @@ -0,0 +1,8 @@ +#!/bin/sh + +case "$1" in + configure) + depmod -a -F /boot/System.map-@@KVER@@ @@KVER@@ + update-initramfs -u -k @@KVER@@ + ;; +esac --- linux-3.2.0.orig/debian/control-scripts/headers-postinst +++ linux-3.2.0/debian/control-scripts/headers-postinst @@ -0,0 +1,126 @@ +#!/usr/bin/perl +# -*- Mode: Cperl -*- +# debian.postinst --- +# Author : Manoj Srivastava ( srivasta@pilgrim.umass.edu ) +# Created On : Sat Apr 27 05:42:43 1996 +# Created On Node : melkor.pilgrim.umass.edu +# Last Modified By : Manoj Srivastava +# Last Modified On : Sat Aug 5 13:20:22 2006 +# Last Machine Used: glaurung.internal.golden-gryphon.com +# Update Count : 45 +# Status : Unknown, Use with caution! +# HISTORY : +# Description : +# +# +# +# arch-tag: 1c716174-2f0a-476d-a626-a1322e62503a +# + + +$|=1; + +# Predefined values: +my $version = "=V"; +my $kimage = "=K"; +my $package_name = "linux-image-$version"; + + +# Ignore all invocations uxcept when called on to configure. +exit 0 unless ($ARGV[0] && $ARGV[0] =~ /configure/); + +#known variables +my $image_dest = "/"; +my $realimageloc = "/boot/"; +my $silent_modules = ''; +my $modules_base = '/lib/modules'; +my $CONF_LOC = '/etc/kernel-img.conf'; +# remove multiple leading slashes; make sure there is at least one. +$realimageloc =~ s|^/*|/|o; +$realimageloc =~ s|/+|/|o; + +chdir '/usr/src' or die "Could not chdir to /usr/src:$!"; + +if (-r "$CONF_LOC" && -f "$CONF_LOC" ) { + if (open(CONF, "$CONF_LOC")) { + while () { + chomp; + s/\#.*$//g; + next if /^\s*$/; + + $header_postinst_hook = "$1" if /^\s*header_postinst_hook\s*=\s*(\S+)/ig; + } + close CONF; + } +} + +sub exec_script { + my $type = shift; + my $script = shift; + print STDERR "Running $type hook script $script.\n"; + system ("$script $version $realimageloc$kimage-$version") && + print STDERR "User $type hook script [$script] "; + if ($?) { + if ($? == -1) { + print STDERR "failed to execute: $!\n"; + } + elsif ($? & 127) { + printf STDERR "died with signal %d, %s coredump\n", + ($? & 127), ($? & 128) ? 'with' : 'without'; + } + else { + printf STDERR "exited with value %d\n", $? >> 8; + } + exit $? >> 8; + } +} +sub run_hook { + my $type = shift; + my $script = shift; + if ($script =~ m,^/,) { + # Full path provided for the hook script + if (-x "$script") { + &exec_script($type,$script); + } + else { + die "The provided $type hook script [$script] could not be run.\n"; + } + } + else { + # Look for it in a safe path + for my $path ('/bin', '/sbin', '/usr/bin', '/usr/sbin') { + if (-x "$path/$script") { + &exec_script($type, "$path/$script"); + return 0; + } + } + # No luck + print STDERR "Could not find $type hook script [$script].\n"; + die "Looked in: '/bin', '/sbin', '/usr/bin', '/usr/sbin'\n"; + } +} + +## Run user hook script here, if any +if (-x "$header_postinst_hook") { + &run_hook("postinst", $header_postinst_hook); +} + +if (-d "/etc/kernel/header_postinst.d") { + print STDERR "Examining /etc/kernel/header_postinst.d.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/header_postinst.d") && + die "Failed to process /etc/kernel/header_postinst.d"; +} + +if (-d "/etc/kernel/header_postinst.d/$version") { + print STDERR "Examining /etc/kernel/header_postinst.d/$version.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version " . + "--arg=$realimageloc$kimage-$version " . + "/etc/kernel/header_postinst.d/$version") && + die "Failed to process /etc/kernel/header_postinst.d/$version"; +} + +exit 0; + +__END__ --- linux-3.2.0.orig/debian/control-scripts/postrm.extra +++ linux-3.2.0/debian/control-scripts/postrm.extra @@ -0,0 +1,8 @@ +#!/bin/sh + +case "$1" in + remove|purge) + depmod -a -F /boot/System.map-@@KVER@@ @@KVER@@ + update-initramfs -u -k @@KVER@@ + ;; +esac --- linux-3.2.0.orig/debian/control-scripts/preinst +++ linux-3.2.0/debian/control-scripts/preinst @@ -0,0 +1,306 @@ +#! /usr/bin/perl +# -*- Mode: Cperl -*- +# image.preinst --- +# Author : Manoj Srivastava ( srivasta@tiamat.datasync.com ) +# Created On : Sun Jun 14 03:38:02 1998 +# Created On Node : tiamat.datasync.com +# Last Modified By : Manoj Srivastava +# Last Modified On : Sun Sep 24 14:04:42 2006 +# Last Machine Used: glaurung.internal.golden-gryphon.com +# Update Count : 99 +# Status : Unknown, Use with caution! +# HISTORY : +# Description : +# +# + +# +#use strict; #for debugging + +use Debconf::Client::ConfModule qw(:all); +version('2.0'); +my $capb=capb("backup"); + +$|=1; + +# Predefined values: +my $version = "=V"; +my $link_in_boot = ""; # Should be empty, mostly +my $no_symlink = ""; # Should be empty, mostly +my $reverse_symlink = ""; # Should be empty, mostly +my $do_symlink = "Yes"; # target machine defined +my $do_boot_enable = "Yes"; # target machine defined +my $do_bootfloppy = "Yes"; # target machine defined +my $do_bootloader = "Yes"; # target machine defined +my $move_image = ''; # target machine defined +my $kimage = "=K"; # Should be empty, mostly +my $loader = "=L"; # lilo, silo, quik, palo, vmelilo, nettrom + # or elilo +my $image_dir = "/boot"; # where the image is located +my $initrd = "YES"; # initrd kernel +my $use_hard_links = ''; # hardlinks do not wirk across fs boundaries +my $postinst_hook = ''; #Normally we do not +my $postrm_hook = ''; #Normally we do not +my $preinst_hook = ''; #Normally we do not +my $prerm_hook = ''; #Normally we do not +my $minimal_swap = ''; # Do not swap symlinks +my $ignore_depmod_err = ''; # normally we do not +my $relink_src_link = 'YES'; # There is no harm in checking the link +my $relink_build_link = 'YES'; # There is no harm in checking the link +my $force_build_link = ''; # There is no harm in checking the link +my $kernel_arch = "=B"; +my $ramdisk = "/usr/sbin/update-initramfs"; # List of tools to create initial ram fs. +my $package_name = "linux-image-$version"; + +my $Loader = "NoLOADER"; # +$Loader = "LILO" if $loader =~ /^lilo/io; +$Loader = "SILO" if $loader =~ /^silo/io; +$Loader = "QUIK" if $loader =~ /^quik/io; +$Loader = "yaboot" if $loader =~ /^yaboot/io; +$Loader = "PALO" if $loader =~ /^palo/io; +$Loader = "NETTROM" if $loader =~ /^nettrom/io; +$Loader = "VMELILO" if $loader =~ /^vmelilo/io; +$Loader = "ZIPL" if $loader =~ /^zipl/io; +$Loader = "ELILO" if $loader =~ /^elilo/io; + + +#known variables +my @boilerplate = (); +my @silotemplate = (); +my @quiktemplate = (); +my @palotemplate = (); +my @vmelilotemplate = (); +my $bootdevice = ''; +my $rootdevice = ''; +my $rootdisk = ''; +my $rootpartition = ''; +my $image_dest = "/"; +my $realimageloc = "/$image_dir/"; +my $have_conffile = ""; +my $CONF_LOC = '/etc/kernel-img.conf'; +my $relative_links = ''; +my $silent_loader = ''; +my $warn_reboot = ''; # Warn that we are installing a version of + # the kernel we are running + +my $modules_base = '/lib/modules'; + +die "Pre inst Internal error. Aborting." unless $version; + +exit 0 if $ARGV[0] =~ /abort-upgrade/; +exit 1 unless $ARGV[0] =~ /(install|upgrade)/; + +# remove multiple leading slashes; make sure there is at least one. +$realimageloc =~ s|^/*|/|o; +$realimageloc =~ s|/+|/|o; + +if (-r "$CONF_LOC" && -f "$CONF_LOC" ) { + if (open(CONF, "$CONF_LOC")) { + while () { + chomp; + s/\#.*$//g; + next if /^\s*$/; + + $do_symlink = "" if /^\s*do_symlinks\s*=\s*(no|false|0)\s*$/ig; + $no_symlink = "" if /^\s*no_symlinks\s*=\s*(no|false|0)\s*$/ig; + $reverse_symlink = "" if /^\s*reverse_symlinks\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*image_in_boot\s*=\s*(no|false|0)\s*$/ig; + $link_in_boot = "" if /^\s*link_in_boot\s*=\s*(no|false|0)\s*$/ig; + $move_image = "" if /^\s*move_image\s*=\s*(no|false|0)\s*$/ig; + $do_boot_enable = '' if /^\s*do_boot_enable\s*=\s*(no|false|0)\s*$/ig; + $do_bootfloppy = '' if /^\s*do_bootfloppy\s*=\s*(no|false|0)\s*$/ig; + $do_bootloader = '' if /^\s*do_bootloader\s*=\s*(no|false|0)\s*$/ig; + $relative_links = '' if /^\s*relative_links \s*=\s*(no|false|0)\s*$/ig; + $use_hard_links = '' if /^\s*use_hard_links\s*=\s*(no|false|0)\s*$/ig; + $silent_loader = '' if /^\s*silent_loader\s*=\s*(no|false|0)\s*$/ig; + $warn_reboot = '' if /^\s*warn_reboot\s*=\s*(no|false|0)\s*$/ig; + $minimal_swap = '' if /^\s*minimal_swap\s*=\s*(no|false|0)\s*$/ig; + $ignore_depmod_err = '' if /^\s*ignore_depmod_err\s*=\s*(no|false|0)\s*$/ig; + $relink_src_link = '' if /^\s*relink_src_link\s*=\s*(no|false|0)\s*$/ig; + $relink_build_link = '' if /^\s*relink_build_link\s*=\s*(no|false|0)\s*$/ig; + $force_build_link = '' if /^\s*force_build_link\s*=\s*(no|false|0)\s*$/ig; + + $do_symlink = "Yes" if /^\s*do_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $no_symlink = "Yes" if /^\s*no_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $reverse_symlink = "Yes" if /^\s*reverse_symlinks\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*image_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $link_in_boot = "Yes" if /^\s*link_in_boot\s*=\s*(yes|true|1)\s*$/ig; + $move_image = "Yes" if /^\s*move_image\s*=\s*(yes|true|1)\s*$/ig; + $do_boot_enable = "Yes" if /^\s*do_boot_enable\s*=\s*(yes|true|1)\s*$/ig; + $do_bootfloppy = "Yes" if /^\s*do_bootfloppy\s*=\s*(yes|true|1)\s*$/ig; + $do_bootloader = "Yes" if /^\s*do_bootloader\s*=\s*(yes|true|1)\s*$/ig; + $relative_links = "Yes" if /^\s*relative_links\s*=\s*(yes|true|1)\s*$/ig; + $use_hard_links = "Yes" if /^\s*use_hard_links\s*=\s*(yes|true|1)\s*$/ig; + $silent_loader = 'Yes' if /^\s*silent_loader\s*=\s*(yes|true|1)\s*$/ig; + $warn_reboot = 'Yes' if /^\s*warn_reboot\s*=\s*(yes|true|1)\s*$/ig; + $minimal_swap = 'Yes' if /^\s*minimal_swap\s*=\s*(yes|true|1)\s*$/ig; + $ignore_depmod_err = 'Yes' if /^\s*ignore_depmod_err\s*=\s*(yes|true|1)\s*$/ig; + $relink_src_link = 'Yes' if /^\s*relink_src_link\s*=\s*(yes|true|1)\s*$/ig; + $relink_build_link = 'Yes' if /^\s*relink_build_link\s*=\s*(yes|true|1)\s*$/ig; + $force_build_link = 'Yes' if /^\s*force_build_link\s*=\s*(yes|true|1)\s*$/ig; + + $image_dest = "$1" if /^\s*image_dest\s*=\s*(\S+)/ig; + $postinst_hook = "$1" if /^\s*postinst_hook\s*=\s*(\S+)/ig; + $postrm_hook = "$1" if /^\s*postrm_hook\s*=\s*(\S+)/ig; + $preinst_hook = "$1" if /^\s*preinst_hook\s*=\s*(\S+)/ig; + $prerm_hook = "$1" if /^\s*prerm_hook\s*=\s*(\S+)/ig; + $ramdisk = "$1" if /^\s*ramdisk\s*=\s*(.+)$/ig; + } + close CONF; + $have_conffile = "Yes"; + $have_conffile = "Yes"; # stop perl complaining + } +} + +$ENV{KERNEL_ARCH}=$kernel_arch if $kernel_arch; + +# About to upgrade this package from version $2 TO THIS VERSION. +# "prerm upgrade" has already been called for the old version of +# this package. + +sub find_initrd_tool { + my $hostversion = shift; + my $version = shift; + my @ramdisks = + grep { + my $args = + "$_ " . + "--supported-host-version=$hostversion " . + "--supported-target-version=$version " . + "1>/dev/null 2>&1" + ; + system($args) == 0; + } + split (/[:,\s]+/, $ramdisk); +} + +sub check { + my $version = shift; + my $lib_modules="$modules_base/$version"; + my $message = ''; + + if (-d "$lib_modules") { + opendir(DIR, $lib_modules) || die "can’t opendir $lib_modules: $!"; + my @children = readdir(DIR); + if ($#children > 1) { + my @dirs = grep { -d "$lib_modules/$_" } @children; + if ($#dirs > 1) { # we have subdirs + my $dir_message=''; + for my $dir (@dirs) { + if ($dir =~/kernel$/) { + $dir_message="An older install was detected.\n"; + } + else { + $dir_message="Module sub-directories were detected.\n" + unless $dir_message; + } + } + $message += $dir_message if $dir_message; + } + + my @links = grep { -l "$lib_modules/$_" } @children; + if ($#links > -1) { + my $links_message = ''; + for my $link (@links) { + next if ($link =~ /^build$/); + next if ($link =~ /^source$/); + $links_message = "Symbolic links were detected in $modules_base/$version.\n"; + } + $message += $links_message if $links_message; + } + my @files = grep { -f "$lib_modules/$_" } @children; + $message += "Additional files also exist in $modules_base/$version.\n" + if ($#files > -1); + } + } + else { $message .= "$lib_modules does not exist. ";} + return $message; +} + +if (-d "$modules_base/$version") { + my $errors=check($version); + warn "Info:\n$errors\n" if $errors; +} + +# set the env var stem +$ENV{'STEM'} = "linux"; + +sub exec_script { + my $type = shift; + my $script = shift; + print STDERR "Running $type hook script $script.\n"; + system ("$script $version $realimageloc$kimage-$version") && + print STDERR "User $type hook script [$script] "; + if ($?) { + if ($? == -1) { + print STDERR "failed to execute: $!\n"; + } + elsif ($? & 127) { + printf STDERR "died with signal %d, %s coredump\n", + ($? & 127), ($? & 128) ? 'with' : 'without'; + } + else { + printf STDERR "exited with value %d\n", $? >> 8; + } + exit $? >> 8; + } +} +sub run_hook { + my $type = shift; + my $script = shift; + if ($script =~ m,^/,) { + # Full path provided for the hook script + if (-x "$script") { + &exec_script($type,$script); + } + else { + die "The provided $type hook script [$script] could not be run.\n"; + } + } + else { + # Look for it in a safe path + for my $path ('/bin', '/sbin', '/usr/bin', '/usr/sbin') { + if (-x "$path/$script") { + &exec_script($type, "$path/$script"); + return 0; + } + } + # No luck + print STDERR "Could not find $type hook script [$script].\n"; + die "Looked in: '/bin', '/sbin', '/usr/bin', '/usr/sbin'\n"; + } +} + + +my $options; +for (@ARGV) { + s,','\\'',g; + $options .= " '$_'"; +} +$ENV{'DEB_MAINT_PARAMS'}="$options"; + +## Run user hook script here, if any +if (-x "$preinst_hook") { + &run_hook("preinst", $preinst_hook); +} +if (-d "/etc/kernel/preinst.d") { + print STDERR "Examining /etc/kernel/preinst.d/\n"; + system ("run-parts --verbose --exit-on-error --arg=$version" . + " --arg=$realimageloc$kimage-$version" . + " /etc/kernel/preinst.d") && + die "Failed to process /etc/kernel/preinst.d"; +} +if (-d "/etc/kernel/preinst.d/$version") { + print STDERR "Examining /etc/kernel/preinst.d/$version.\n"; + system ("run-parts --verbose --exit-on-error --arg=$version" . + " --arg=$realimageloc$kimage-$version" . + " /etc/kernel/preinst.d/$version") && + die "Failed to process /etc/kernel/preinst.d/$version"; +} +print STDERR "Done.\n"; + +exit 0; + +__END__ + + --- linux-3.2.0.orig/debian/tests/check-aliases +++ linux-3.2.0/debian/tests/check-aliases @@ -0,0 +1,24 @@ +#!/usr/bin/perl -w + +my %map; + +print "Checking for dupe aliases in $ENV{'FLAVOUR'}...\n"; + +$aliases = + "$ENV{'INSTALL_DIR'}/lib/modules/$ENV{'VERSION'}-$ENV{'FLAVOUR'}/modules.alias"; + +open(ALIASES, "< $aliases") or die "Could not open $aliases"; + +while () { + chomp; + my ($junk, $alias, $module) = split; + + if (defined($map{$alias})) { + printf("%s %20s / %-20s : %s \n", ("$map{$alias}" eq "$module") + ? "INT" : " ", $map{$alias}, $module, $alias); + } else { + $map{$alias} = $module; + } +} + +exit(0); --- linux-3.2.0.orig/debian/tests/README +++ linux-3.2.0/debian/tests/README @@ -0,0 +1,21 @@ +Scripts placed in this directory get called one at a time by run-parts(8). +The scripts are expected to perform some sort of sanity checks on the +finished build. Scripts will be called once for each flavour. + +Some environment variables are exported to make life a little easier: + +DPKG_ARCH : The dpkg architecture (e.g. "amd64") +KERN_ARCH : The kernel architecture (e.g. "x86_64") +FLAVOUR : The specific flavour for this run (e.g. "generic") +VERSION : The full version of this build (e.g. 2.6.22-1) +REVISION : The exact revision of this build (e.g. 1.3) +PREV_REVISION : The revision prior to this one +ABI_NUM : The specific ABI number for this build (e.g. 2) +PREV_ABI_NUM : The previous ABI number. Can be the same as ABI_NUM. +BUILD_DIR : The directory where this build took place +INSTALL_DIR : The directory where the package is prepared +SOURCE_DIR : Where the main kernel source is + +Scripts are expected to have a zero exit status when no problems occur, +and non-zero when an error occurs that should stop the build. Scripts +should print whatever info they deem needed to deduce the problem. --- linux-3.2.0.orig/debian/docs/README.inclusion-list +++ linux-3.2.0/debian/docs/README.inclusion-list @@ -0,0 +1,51 @@ +This README describes the reason for, and the use of, module +inclusion lists. + +The original Hardy release had the notion of sub-flavours, +e.g., a flavour that was constructed as a subset of an existing flavour. +For example, the virtual flavour was extracted from the server flavour using +a subset of the server flavour modules. However, there were some difficult +mainteneance issues with regard to packaging, make rules, and scripts. This +re-implementation of the sub-flavours philosophy is hopefully simpler, +and retrofitable to all releases. + +A module inclusion list looks at the problem of of constructing a package +from the perspective of what modules do we _want_ in the package, as opposed +to what modules we _don't_ want. As the kernel matures, more and more devices are added +which makes the problem of configuration maintenance a real pain in the ass. +If we took the approach of disabling all of the config options that we don't want, +then the differences between flavours will quickly become quite large, making +it difficult to quickly compare the individual flavour configs. Each time a +new config option is added then we also have to make a decision about disabling in +order to continue to keep the minimal number of modules. + +A module inclusion list is applied on a per-flavour basis. For example, +debian./control.d/${flavour}.inclusion-list. For example, the +config for virtual is very close to server and generic, but the inclusion list +causes the virtual package to be constructed with _only_ the modules described +in the inclusion list. + +The inclusion list format is a simple bash regular expression list of files. For example, + +arch/*/{crypto,kernel,oprofile} +drivers/acpi/* +drivers/ata/ahci.ko + +These 3 regular expression forms are suitable for expansion by bash and as inputs to 'find'. +See debian/scripts/module-inclusion for details. + +There are 2 log files created as a side effect of the application of the module +inclusion list; $(flavour).inclusion-list.log and $(flavour).depmod.log. + +$(flavour).inclusion-list.log : This log is created while the inclusion list +modules are being copied. If any are missing, then those warnings go in this log. +While its not considered a fatal error, you should endevour to correct your inclusion +list such that there are no missing modules. + +$(flavour).depmod.log : The log is created as a result of running depmod on the +resulting set of modules. If there are missing symbols then you'll find that information +here. Again, you should modify your inclusion list such that there are no missing +symbols. + +Tim Gardner +June 2, 2010 --- linux-3.2.0.orig/debian/scripts/module-inclusion +++ linux-3.2.0/debian/scripts/module-inclusion @@ -0,0 +1,60 @@ +#!/bin/bash + +# +# Build a new directory of modules based on an inclusion list. +# The includsion list format must be a bash regular expression. +# +# usage: $0 ROOT INCLUSION_LIST +# example: $0 debian/build/build-virtual \ +# debian/build/build-virtual-ALL debian/build/build-virtual \ +# debian.master/control.d/virtual.inclusion-list +master=0 +if [ "$1" = "--master" ]; then + master=1 + shift +fi + +ROOT=$1 +NROOT=$2 +ILIST=$3 + +# +# Prep a destination directory. +# +mkdir -p ${NROOT} + +# Copy over the framework... +if [ "$master" -eq 1 ]; then + (cd ${ROOT}; find . ! -name "*.ko" -type f) | \ + while read f + do + mkdir -p ${NROOT}/`dirname $f` + mv ${ROOT}/$f ${NROOT}/$f + done +fi + +cat ${ILIST} |while read i +do + # + # 'find' blurts a warning if it cannot find any ko files. + # + if echo "$i" | grep '\*' > /dev/null + then + (cd ${ROOT}; eval find "${i}" -name "*.ko") |while read f + do + mkdir -p ${NROOT}/`dirname $f` + mv ${ROOT}/$f ${NROOT}/$f + done + else + if [ -f "${ROOT}/$i" ] + then + mkdir -p ${NROOT}/`dirname $i` + mv ${ROOT}/$i ${NROOT}/$i + else + echo Warning: Could not find ${ROOT}/$i + fi + fi + +done + +exit 0 --- linux-3.2.0.orig/debian/scripts/control-create +++ linux-3.2.0/debian/scripts/control-create @@ -0,0 +1,25 @@ +#!/bin/bash + +. debian/debian.env + +vars=$1 + +. $vars + +if [ "$is_sub" = "" ]; then + flavour=$(basename $vars | sed 's/.*\.//') + stub=${DEBIAN}/control.d/flavour-control.stub +else + flavour=$(basename $vars .vars) + stub=${DEBIAN}/sub-flavours/control.stub +fi + +cat $stub | grep -v '^#' | sed \ + -e "s#FLAVOUR#$flavour#g" \ + -e "s#DESC#$desc#g" \ + -e "s#ARCH#$arch#g" \ + -e "s#SUPPORTED#$supported#g" \ + -e "s#TARGET#$target#g" \ + -e "s#BOOTLOADER#$bootloader#g" \ + -e "s#=PROVIDES=#$provides#g" \ + -e "s#=CONFLICTS=#$conflicts#g" --- linux-3.2.0.orig/debian/scripts/config-check +++ linux-3.2.0/debian/scripts/config-check @@ -0,0 +1,401 @@ +#!/usr/bin/perl +# +# check-config -- check the current config for issues +# +use strict; + +my $P = 'check-config'; + +my $test = -1; +if ($ARGV[0] eq '--test') { + $test = $ARGV[1] + 0; +} elsif ($#ARGV != 4) { + die "Usage: $P \n"; +} + +my ($config, $arch, $flavour, $commonconfig, $warn_only) = @ARGV; + +my $checks = "$commonconfig/enforce"; +my %values = (); + +# If we are in overridden then still perform the checks and emit the messages +# but do not return failure. Those items marked FATAL will alway trigger +# failure. +my $fail_exit = 1; +$fail_exit = 0 if ($warn_only eq 'true' || $warn_only eq '1'); +my $exit_val = 0; + +# Predicate execution engine. +sub pred_first { + my ($rest) = @_; + my $depth = 0; + my $off; + my $char; + my $pred; + + for ($off = 0; $off <= length($rest); $off++) { + $char = substr($rest, $off, 1); + if ($char eq '(') { + $depth++; + } elsif ($char eq ')') { + $depth--; + } elsif ($depth == 0 && $char eq '&') { + last; + } elsif ($depth == 0 && $char eq '|') { + last; + } + } + if ($depth > 0) { + die "$P: $rest: missing close parenthesis ')'\n"; + } elsif ($depth < 0) { + die "$P: $rest: missing open parenthesis '('\n"; + } + + ($pred, $rest) = (substr($rest, 0, $off), substr($rest, $off + 1)); + + $pred =~ s/^\s*//; + $pred =~ s/\s*$//; + + #print "pred<$pred> rest<$rest> char<$char>\n"; + ($pred, $rest, $char); +} + +sub pred_do { + my ($pred) = @_; + my (@a) = split(' ', $pred); + my $possible; + + if ($a[0] eq 'arch') { + die "$P: $pred: malformed -- $pred \n" if ($#a < 1); + for $possible (@a[1..$#a]) { + #print " *** ARCH<$flavour ?? $possible>\n"; + return 1 if ($arch eq $possible); + } + return 0; + } elsif ($a[0] eq 'flavour') { + die "$P: $pred: malformed -- $pred \n" if ($#a < 1); + for $possible (@a[1..$#a]) { + #print " *** FLAVOUR<$flavour ?? $a[1]>\n"; + return 1 if ($flavour eq $possible); + } + return 0; + } elsif ($a[0] eq 'value') { + die "$P: $pred: malformed -- $pred \n" if ($#a != 2); + #print " *** CHECK<$a[1] $a[2] ?? " . $values{$a[1]} . ">\n"; + return ($values{$a[1]} eq $a[2]); + } elsif ($a[0] eq 'exists') { + die "$P: $pred: malformed -- $pred \n" if ($#a != 1); + return (defined $values{$a[1]}); + } else { + die "$P: $pred: unknown predicate\n"; + } + return 1; +} +sub pred_exec { + my ($rest) = @_; + my $pred; + my $res; + my $sep; + + #print "pred_exec<$rest>\n"; + + ($pred, $rest, $sep) = pred_first($rest); + + # Leading ! implies inversion. + if ($pred =~ /^\s*!\s*(.*)$/) { + #print " invert<$1>\n"; + $res = !pred_exec($1); + + # Recurse left for complex expressions. + } elsif ($pred =~ /^\s*\((.*)\)\s*$/) { + #print " left<$1>\n"; + $res = pred_exec($1); + + # Check for common syntax issues. + } elsif ($pred eq '') { + if ($sep eq '&' || $sep eq '|') { + die "$P: $pred$rest: malformed binary operator\n"; + } else { + die "$P: $pred$rest: syntax error\n"; + } + + # A predicate, execute it. + } else { + #print " DO<$pred> sep<$sep>\n"; + $res = pred_do($pred); + } + + #print " pre-return res<$res> sep<$sep>\n"; + if ($sep eq '') { + # + + # Recurse right for binary operators -- note these are lazy. + } elsif ($sep eq '&' || $sep eq '|') { + #print " right<$rest> ? sep<$sep> res<$res>\n"; + if ($rest =~ /^\s*($|\||\&)/) { + die "$P: $pred$rest: malformed binary operator\n"; + } + if (($res && $sep eq '&') || (!$res && $sep eq '|')) { + #print " right<$rest>\n"; + $res = pred_exec($rest); + } + + } else { + die "$P: $pred$rest: malformed predicate\n"; + } + #print " return res<$res> sep<$sep>\n"; + return $res; +} + +# +# PREDICATE TESTS +# +my $test_total = 1; +my $test_good = 0; +sub pred_test { + my ($pred, $eres, $eerr) = @_; + my ($res, $err, $fail); + + $test_total++; + if ($test != 0 && $test != $test_total - 1) { + return; + } + + eval { + $res = pred_exec($pred); + }; + $err = $@; + chomp($err); + + $res = !!$res; + $eres = !!$eres; + + $fail = ''; + if (defined $eres && $res != $eres) { + $fail = "result missmatch, expected $eres returned $res"; + } + if (defined $eerr && $err eq '') { + $fail = "error missmatch, expected '$eerr' returned success"; + } elsif (defined $eerr && $err !~ /$eerr/) { + $fail = "error missmatch, expected '$eerr' returned '$err'"; + } elsif (!defined $eerr && $err ne '') { + $fail = "error missmatch, expected success returned '$err'"; + } + + if ($fail eq '') { + $test_good++; + } else { + print "$pred: $test_total: FAIL: $fail\n"; + } + #print "TEST<$pred> eres<$eres> eerr<$eerr> res<$res> err<$err>\n"; +} +if ($test >= 0) { + $arch = 'MYARCH'; + $flavour = 'MYFLAVOUR'; + %values = ( 'ENABLED' => 'y', 'DISABLED' => 'n' ); + + # Errors. + my $eunkn = 'unknown predicate'; + my $epred = 'malformed'; + my $eclose = 'missing close parenthesis'; + my $eopen = 'missing open parenthesis'; + my $ebinary = 'malformed binary operator'; + + # Basic predicate tests. + print "TEST: $test_total: basic predicate tests ...\n"; + + pred_test('nosuchcommand', undef, $eunkn); + pred_test('arch', undef, $epred); + pred_test('arch MYARCH', 1, undef); + pred_test('arch MYARCH NOTMYARCH', 1, undef); + pred_test('arch NOTMYARCH MYARCH', 1, undef); + pred_test('arch NOTMYARCH NOTMYARCH MYARCH', 1, undef); + pred_test('arch NOTMYARCH MYARCH NOTMYARCH', 1, undef); + pred_test('arch NOTMYARCH', 0, undef); + + pred_test('flavour', undef, $epred); + pred_test('flavour MYFLAVOUR', 1, undef); + pred_test('flavour NOTMYFLAVOUR MYFLAVOUR', 1, undef); + pred_test('flavour NOTMYFLAVOUR NOTMYFLAVOUR MYFLAVOUR', 1, undef); + pred_test('flavour NOTMYFLAVOUR MYFLAVOUR NOTMYFLAVOUR', 1, undef); + pred_test('flavour NOTMYFLAVOUR', 0, undef); + + pred_test('value', undef, $epred); + pred_test('value ENABLED', undef, $epred); + pred_test('value ENABLED ENABLED ENABLED', undef, $epred); + pred_test('value ENABLED y', 1, undef); + pred_test('value ENABLED n', 0, undef); + pred_test('value DISABLED n', 1, undef); + pred_test('value DISABLED y', 0, undef); + + pred_test('exists', undef, $epred); + pred_test('exists ENABLED ENABLED', undef, $epred); + pred_test('exists ENABLED', 1, undef); + pred_test('exists DISABLED', 1, undef); + pred_test('exists MISSING', 0, undef); + + print "TEST: $test_total: inversion tests ...\n"; + pred_test('!exists ENABLED', 0, undef); + pred_test('!exists MISSING', 1, undef); + pred_test('!!exists ENABLED', 1, undef); + pred_test('!!exists MISSING', 0, undef); + pred_test('!!!exists ENABLED', 0, undef); + pred_test('!!!exists MISSING', 1, undef); + + print "TEST: $test_total: parentheses tests ...\n"; + pred_test('(exists ENABLED)', 1, undef); + pred_test('((exists ENABLED))', 1, undef); + pred_test('(((exists ENABLED)))', 1, undef); + pred_test('(exists MISSING)', 0, undef); + pred_test('((exists MISSING))', 0, undef); + pred_test('(((exists MISSING)))', 0, undef); + + pred_test('(!exists ENABLED)', 0, undef); + pred_test('((!exists ENABLED))', 0, undef); + pred_test('(((!exists ENABLED)))', 0, undef); + pred_test('(!exists MISSING)', 1, undef); + pred_test('((!exists MISSING))', 1, undef); + pred_test('(((!exists MISSING)))', 1, undef); + + pred_test('((!(exists ENABLED)))', 0, undef); + pred_test('((!(exists MISSING)))', 1, undef); + pred_test('(!((exists ENABLED)))', 0, undef); + pred_test('(!((exists MISSING)))', 1, undef); + pred_test('!(((exists ENABLED)))', 0, undef); + pred_test('!(((exists MISSING)))', 1, undef); + pred_test('!((!(exists ENABLED)))', 1, undef); + pred_test('!((!(exists MISSING)))', 0, undef); + pred_test('!(!(!(exists ENABLED)))', 0, undef); + pred_test('!(!(!(exists MISSING)))', 1, undef); + + pred_test('(', undef, $eclose); + pred_test('()(', undef, $eclose); + pred_test('(())(', undef, $eclose); + pred_test('((()))(', undef, $eclose); + pred_test('(()', undef, $eclose); + pred_test('((())', undef, $eclose); + pred_test('(((()))', undef, $eclose); + pred_test('(()()', undef, $eclose); + pred_test('((())()', undef, $eclose); + + pred_test(')', undef, $eopen); + pred_test('())', undef, $eopen); + pred_test('(()))', undef, $eopen); + pred_test('((())))', undef, $eopen); + + print "TEST: $test_total: binary and tests ...\n"; + + pred_test('exists ENABLED &', undef, $ebinary); + pred_test('& exists ENABLED', undef, $ebinary); + pred_test('exists ENABLED & & exists ENABLED', undef, $ebinary); + + pred_test('exists MISSING & exists MISSING', 0, undef); + pred_test('exists MISSING & exists ENABLED', 0, undef); + pred_test('exists ENABLED & exists MISSING', 0, undef); + pred_test('exists ENABLED & exists ENABLED', 1, undef); + + pred_test('exists MISSING & exists MISSING & exists MISSING', 0, undef); + pred_test('exists MISSING & exists MISSING & exists ENABLED', 0, undef); + pred_test('exists MISSING & exists ENABLED & exists MISSING', 0, undef); + pred_test('exists MISSING & exists ENABLED & exists ENABLED', 0, undef); + pred_test('exists ENABLED & exists MISSING & exists MISSING', 0, undef); + pred_test('exists ENABLED & exists MISSING & exists ENABLED', 0, undef); + pred_test('exists ENABLED & exists ENABLED & exists MISSING', 0, undef); + pred_test('exists ENABLED & exists ENABLED & exists ENABLED', 1, undef); + + print "TEST: $test_total: binary or tests ...\n"; + + pred_test('exists ENABLED |', undef, $ebinary); + pred_test('| exists ENABLED', undef, $ebinary); + pred_test('exists ENABLED | | exists ENABLED', undef, $ebinary); + + pred_test('exists MISSING | exists MISSING', 0, undef); + pred_test('exists MISSING | exists ENABLED', 1, undef); + pred_test('exists ENABLED | exists MISSING', 1, undef); + pred_test('exists ENABLED | exists ENABLED', 1, undef); + + pred_test('exists MISSING | exists MISSING | exists MISSING', 0, undef); + pred_test('exists MISSING | exists MISSING | exists ENABLED', 1, undef); + pred_test('exists MISSING | exists ENABLED | exists MISSING', 1, undef); + pred_test('exists MISSING | exists ENABLED | exists ENABLED', 1, undef); + pred_test('exists ENABLED | exists MISSING | exists MISSING', 1, undef); + pred_test('exists ENABLED | exists MISSING | exists ENABLED', 1, undef); + pred_test('exists ENABLED | exists ENABLED | exists MISSING', 1, undef); + pred_test('exists ENABLED | exists ENABLED | exists ENABLED', 1, undef); + + print "TEST: $test_total: binary or/and combination tests ...\n"; + + pred_test('exists MISSING | exists MISSING & exists MISSING', 0, undef); + pred_test('exists MISSING | exists MISSING & exists ENABLED', 0, undef); + pred_test('exists MISSING | exists ENABLED & exists MISSING', 0, undef); + pred_test('exists MISSING | exists ENABLED & exists ENABLED', 1, undef); + pred_test('exists ENABLED | exists MISSING & exists MISSING', 1, undef); + pred_test('exists ENABLED | exists MISSING & exists ENABLED', 1, undef); + pred_test('exists ENABLED | exists ENABLED & exists MISSING', 1, undef); + pred_test('exists ENABLED | exists ENABLED & exists ENABLED', 1, undef); + + print "TEST: $test_total: binary and/or combination tests ...\n"; + + pred_test('exists MISSING & exists MISSING | exists MISSING', 0, undef); + pred_test('exists MISSING & exists MISSING | exists ENABLED', 0, undef); + pred_test('exists MISSING & exists ENABLED | exists MISSING', 0, undef); + pred_test('exists MISSING & exists ENABLED | exists ENABLED', 0, undef); + pred_test('exists ENABLED & exists MISSING | exists MISSING', 0, undef); + pred_test('exists ENABLED & exists MISSING | exists ENABLED', 1, undef); + pred_test('exists ENABLED & exists ENABLED | exists MISSING', 1, undef); + pred_test('exists ENABLED & exists ENABLED | exists ENABLED', 1, undef); + + $test_total--; + print "TEST: $test_good/$test_total succeeded\n"; + + exit $exit_val; +} + +# Load up the current configuration values -- FATAL if this fails +print "$P: $config: loading config\n"; +open(CONFIG, "<$config") || die "$P: $config: open failed -- $! -- aborting\n"; +while () { + # Pull out values. + /^#*\s*(CONFIG_\w+)[\s=](.*)$/ or next; + if ($2 eq 'is not set') { + $values{$1} = 'n'; + } else { + $values{$1} = $2; + } +} +close(CONFIG); + +# FATAL: Check if we have an enforcement list. +my $pass = 0; +my $total = 0; +my $line = ''; +print "$P: $checks: loading checks\n"; +open(CHECKS, "<$checks") || die "$P: $checks: open failed -- $! -- aborting\n"; +while () { + /^#/ && next; + chomp; + + $line .= $_; + if ($line =~ /\\$/) { + chop($line); + $line .= " "; + next; + } + $line =~ /^\s*$/ && next; + + #print "CHECK: <$line>\n"; + $total++; + my $result = pred_exec($line); + if (!$result) { + print "$P: FAIL: $line\n"; + $exit_val = $fail_exit; + } else { + $pass++; + } + + $line = ''; +} +close(CHECKS); + +print "$P: $pass/$total checks passed -- exit $exit_val\n"; +exit $exit_val; --- linux-3.2.0.orig/debian/scripts/abi-check +++ linux-3.2.0/debian/scripts/abi-check @@ -0,0 +1,210 @@ +#!/usr/bin/perl -w + +my $flavour = shift; +my $prev_abinum = shift; +my $abinum = shift; +my $prev_abidir = shift; +my $abidir = shift; +my $skipabi = shift; + +my $fail_exit = 1; +my $EE = "EE:"; +my $errors = 0; +my $abiskip = 0; + +my $count; + +print "II: Checking ABI for $flavour...\n"; + +if (-f "$prev_abidir/ignore" + or -f "$prev_abidir/$flavour.ignore" or "$skipabi" eq "true") { + print "WW: Explicitly asked to ignore ABI, running in no-fail mode\n"; + $fail_exit = 0; + $abiskip = 1; + $EE = "WW:"; +} + +if ($prev_abinum != $abinum) { + print "II: Different ABI's, running in no-fail mode\n"; + $fail_exit = 0; + $EE = "WW:"; +} + +if (not -f "$abidir/$flavour" or not -f "$prev_abidir/$flavour") { + print "EE: Previous or current ABI file missing!\n"; + print " $abidir/$flavour\n" if not -f "$abidir/$flavour"; + print " $prev_abidir/$flavour\n" if not -f "$prev_abidir/$flavour"; + + # Exit if the ABI files are missing, but return status based on whether + # skip ABI was indicated. + if ("$abiskip" eq "1") { + exit(0); + } else { + exit(1); + } +} + +my %symbols; +my %symbols_ignore; +my %modules_ignore; +my %module_syms; + +# See if we have any ignores +my $ignore = 0; +print " Reading symbols/modules to ignore..."; + +for $file ("$prev_abidir/../blacklist", "$prev_abidir/../../perm-blacklist") { + if (-f $file) { + open(IGNORE, "< $file") or + die "Could not open $file"; + while () { + chomp; + if ($_ =~ m/M: (.*)/) { + $modules_ignore{$1} = 1; + } else { + $symbols_ignore{$_} = 1; + } + $ignore++; + } + close(IGNORE); + } +} +print "read $ignore symbols/modules.\n"; + +sub is_ignored($$) { + my ($mod, $sym) = @_; + + die "Missing module name in is_ignored()" if not defined($mod); + die "Missing symbol name in is_ignored()" if not defined($sym); + + if (defined($symbols_ignore{$sym}) or defined($modules_ignore{$mod})) { + return 1; + } + return 0; +} + +# Read new syms first +print " Reading new symbols ($abinum)..."; +$count = 0; +open(NEW, "< $abidir/$flavour") or + die "Could not open $abidir/$flavour"; +while () { + chomp; + m/^(\S+)\s(.+)\s(0x[0-9a-f]+)\s(.+)$/; + $symbols{$4}{'type'} = $1; + $symbols{$4}{'loc'} = $2; + $symbols{$4}{'hash'} = $3; + $module_syms{$2} = 0; + $count++; +} +close(NEW); +print "read $count symbols.\n"; + +# Now the old symbols, checking for missing ones +print " Reading old symbols ($prev_abinum)..."; +$count = 0; +open(OLD, "< $prev_abidir/$flavour") or + die "Could not open $prev_abidir/$flavour"; +while () { + chomp; + m/^(\S+)\s(.+)\s(0x[0-9a-f]+)\s(.+)$/; + $symbols{$4}{'old_type'} = $1; + $symbols{$4}{'old_loc'} = $2; + $symbols{$4}{'old_hash'} = $3; + $count++; +} +close(OLD); + +print "read $count symbols.\n"; + +print "II: Checking for missing symbols in new ABI..."; +$count = 0; +foreach $sym (keys(%symbols)) { + if (!defined($symbols{$sym}{'type'})) { + print "\n" if not $count; + printf(" MISS : %s%s\n", $sym, + is_ignored($symbols{$sym}{'old_loc'}, $sym) ? " (ignored)" : ""); + $count++ if !is_ignored($symbols{$sym}{'old_loc'}, $sym); + } +} +print " " if $count; +print "found $count missing symbols\n"; +if ($count) { + print "$EE Symbols gone missing (what did you do!?!)\n"; + $errors++; +} + + +print "II: Checking for new symbols in new ABI..."; +$count = 0; +foreach $sym (keys(%symbols)) { + if (!defined($symbols{$sym}{'old_type'})) { + print "\n" if not $count; + print " NEW : $sym\n"; + $count++; + } +} +print " " if $count; +print "found $count new symbols\n"; +if ($count and $prev_abinum == $abinum) { + print "WW: Found new symbols within same ABI. Not recommended\n"; +} + +print "II: Checking for changes to ABI...\n"; +$count = 0; +my $moved = 0; +my $changed_type = 0; +my $changed_hash = 0; +foreach $sym (keys(%symbols)) { + if (!defined($symbols{$sym}{'old_type'}) or + !defined($symbols{$sym}{'type'})) { + next; + } + + # Changes in location don't hurt us, but log it anyway + if ($symbols{$sym}{'loc'} ne $symbols{$sym}{'old_loc'}) { + printf(" MOVE : %-40s : %s => %s\n", $sym, $symbols{$sym}{'old_loc'}, + $symbols{$sym}{'loc'}); + $moved++; + } + + # Changes to export type are only bad if new type isn't + # EXPORT_SYMBOL. Changing things to GPL are bad. + if ($symbols{$sym}{'type'} ne $symbols{$sym}{'old_type'}) { + printf(" TYPE : %-40s : %s => %s%s\n", $sym, $symbols{$sym}{'old_type'}. + $symbols{$sym}{'type'}, is_ignored($symbols{$sym}{'loc'}, $sym) + ? " (ignored)" : ""); + $changed_type++ if $symbols{$sym}{'type'} ne "EXPORT_SYMBOL" + and !is_ignored($symbols{$sym}{'loc'}, $sym); + } + + # Changes to the hash are always bad + if ($symbols{$sym}{'hash'} ne $symbols{$sym}{'old_hash'}) { + printf(" HASH : %-40s : %s => %s%s\n", $sym, $symbols{$sym}{'old_hash'}, + $symbols{$sym}{'hash'}, is_ignored($symbols{$sym}{'loc'}, $sym) + ? " (ignored)" : ""); + $changed_hash++ if !is_ignored($symbols{$sym}{'loc'}, $sym); + $module_syms{$symbols{$sym}{'loc'}}++; + } +} + +print "WW: $moved symbols changed location\n" if $moved; +print "$EE $changed_type symbols changed export type and weren't ignored\n" if $changed_type; +print "$EE $changed_hash symbols changed hash and weren't ignored\n" if $changed_hash; + +$errors++ if $changed_hash or $changed_type; +if ($changed_hash) { + print "II: Module hash change summary...\n"; + foreach $mod (sort { $module_syms{$b} <=> $module_syms{$a} } keys %module_syms) { + next if ! $module_syms{$mod}; + printf(" %-40s: %d\n", $mod, $module_syms{$mod}); + } +} + +print "II: Done\n"; + +if ($errors) { + exit($fail_exit); +} else { + exit(0); +} --- linux-3.2.0.orig/debian/scripts/module-check +++ linux-3.2.0/debian/scripts/module-check @@ -0,0 +1,120 @@ +#!/usr/bin/perl -w + +$flavour = shift; +$prev_abidir = shift; +$abidir = shift; +$skipmodule = shift; + +print "II: Checking modules for $flavour..."; + +if (-f "$prev_abidir/ignore.modules" + or -f "$prev_abidir/$flavour.ignore.modules") { + print "explicitly ignoring modules\n"; + exit(0); +} + +if (not -f "$abidir/$flavour.modules" or not -f + "$prev_abidir/$flavour.modules") { + print "previous or current modules file missing!\n"; + print " $abidir/$flavour.modules\n"; + print " $prev_abidir/$flavour.modules\n"; + if (defined($skipmodule)) { + exit(0); + } else { + exit(1); + } +} + +print "\n"; + +my %modules; +my %modules_ignore; +my $missing = 0; +my $new = 0; +my $errors = 0; + +# See if we have any ignores +if (-f "$prev_abidir/../modules.ignore") { + my $ignore = 0; + open(IGNORE, "< $prev_abidir/../modules.ignore") or + die "Could not open $prev_abidir/../modules.ignore"; + print " reading modules to ignore..."; + while () { + chomp; + next if /\s*#/; + $modules_ignore{$_} = 1; + $ignore++; + } + close(IGNORE); + print "read $ignore modules.\n"; +} + +# Read new modules first +print " reading new modules..."; +$new_count = 0; +open(NEW, "< $abidir/$flavour.modules") or + die "Could not open $abidir/$flavour.modules"; +while () { + chomp; + $modules{$_} = 1; + $new_count++; +} +close(NEW); +print "read $new_count modules.\n"; + +# Now the old modules, checking for missing ones +print " reading old modules..."; +$old_count = 0; +open(OLD, "< $prev_abidir/$flavour.modules") or + die "Could not open $prev_abidir/$flavour.modules"; +while () { + chomp; + if (not defined($modules{$_})) { + print "\n" if not $missing; + $missing++; + if (not defined($modules_ignore{$_})) { + print " MISS: $_\n"; + $errors++; + } else { + print " MISS: $_ (ignored)\n"; + } + } else { + $modules{$_}++; + } + $old_count++; +} +close(OLD); +# Check for new modules +foreach $mod (keys(%modules)) { + if ($modules{$mod} < 2) { + print "\n" if not $missing and not $new; + print " NEW : $mod\n"; + $new++; + } +} +if ($new or $missing) { + print " read $old_count modules : new($new) missing($missing)\n"; +} else { + print "read $old_count modules.\n"; +} + + +# Let's see where we stand... +if ($errors) { + if (defined($skipmodule)) { + print "WW: Explicitly asked to ignore failures (probably not good)\n"; + } else { + print "EE: Missing modules (start begging for mercy)\n"; + exit 1 + } +} + +if ($new) { + print "II: New modules (you've been busy, wipe the poop off your nose)\n"; +} else { + print "II: No new modules (hope you're happy, slacker)\n"; +} + +print "II: Done\n"; + +exit(0); --- linux-3.2.0.orig/debian/scripts/sub-flavour +++ linux-3.2.0/debian/scripts/sub-flavour @@ -0,0 +1,69 @@ +#!/bin/bash + +. debian/debian.env + +echo "SUB_PROCESS $FROM => $TO" + +export from_pkg="linux-image-$ABI_RELEASE-$FROM" +export to_pkg="linux-image-$ABI_RELEASE-$TO" + +from_moddir="debian/$from_pkg/lib/modules/$ABI_RELEASE-$FROM" +to_moddir="debian/$to_pkg/lib/modules/$ABI_RELEASE-$FROM" + +install -d "debian/$to_pkg/boot" +install -m644 debian/$from_pkg/boot/config-$ABI_RELEASE-$FROM \ + debian/$to_pkg/boot/ +install -m600 debian/$from_pkg/boot/{vmlinuz,System.map}-$ABI_RELEASE-$FROM \ + debian/$to_pkg/boot/ + +# +# Print some warnings if there are files in the sub-flavours list +# that do not actually exist. +# +cat ${DEBIAN}/sub-flavours/$TO.list | while read line +do +( + cd debian/$from_pkg/lib/modules/$ABI_RELEASE-$FROM/kernel; + # + # If its a wildcard, then check that there are files that match. + # + if echo "$line" | grep '\*' > /dev/null + then + if [ `eval find "$line" -name '*.ko' 2>/dev/null|wc -l` -lt 1 ] + then + echo SUB_INST Warning - No files in $line + fi + # + # Else it should be a single file reference. + # + elif [ ! -f "$line" ] + then + echo SUB_INST Warning - could not find "$line" + fi +) +done + +cat ${DEBIAN}/sub-flavours/$TO.list | while read line; do + ( + cd debian/$from_pkg/lib/modules/$ABI_RELEASE-$FROM/kernel; + if echo "$line" | grep '\*' > /dev/null + then + eval find "$line" -name '*.ko' 2>/dev/null || true + elif [ -f "$line" ] + then + echo "$line" + fi + ); +done | while read mod; do + echo "SUB_INST checking: $mod" + fromdir="/lib/modules/$ABI_RELEASE-$FROM/" + egrep "^($fromdir)?kernel/$mod:" \ + $from_moddir/modules.dep | sed -e "s|^$fromdir||" -e 's/://' -e 's/ /\n/g' | \ + while read m; do + m="${fromdir}$m" + test -f debian/$to_pkg/$m && continue + echo "SUB_INST installing: $m" + install -D -m644 debian/$from_pkg/$m \ + debian/$to_pkg/$m + done +done --- linux-3.2.0.orig/debian/scripts/link-headers +++ linux-3.2.0/debian/scripts/link-headers @@ -0,0 +1,42 @@ +#!/bin/bash -e + +. debian/debian.env + +hdrdir="$1" +symdir="$2" +flavour="$3" + +echo "Symlinking and copying headers for $flavour..." + +excludes="( -path ./debian -prune -o -path ./${DEBIAN} -prune -o -path ./.git ) -prune -o" + +( +find . $excludes -type f \ + \( -name 'Makefile*' -o -name 'Kconfig*' -o -name 'Kbuild*' -o \ + -name '*.sh' -o -name '*.pl' -o -name '*.lds' \) -print +find ./include ./scripts -name .gitignore -prune -o -type f -print +find ./include -mindepth 1 -maxdepth 1 $excludes -type d -print +) | ( +while read file; do + dir=$file + lastdir=$file + + if [ -e "$hdrdir/$file" -o -L "$hdrdir/$file" ]; then + continue + fi + + while [ ! -e "$hdrdir/$dir" -a ! -L "$hdrdir/$dir" ]; do + lastdir=$dir + dir=`dirname $dir` + done + # If the last item to exist is a symlink we assume all is good + if [ ! -L "$hdrdir/$dir" ]; then + # Turns things like "./foo" into "../" + deref="`echo -n $lastdir | sed -e 's/^\.//' -e's,/[^/]*,../,g'`" + item="`echo -n $lastdir | sed -e 's/^\.\///'`" + ln -s $deref$symdir/$item $hdrdir/$item + fi +done +) + +exit --- linux-3.2.0.orig/debian/scripts/misc/getabis +++ linux-3.2.0/debian/scripts/misc/getabis @@ -0,0 +1,102 @@ +#!/bin/bash + +. debian/debian.env + +if [ "$#" != "2" ]; then + echo "Usage: $0 " 1>&2 + exit 1 +fi + +ver=$1 +revision=$2 +abi=$(echo $revision | awk -F. '{print $1}') + +verabi=$ver-$abi +verfull=$ver-$revision + +WGET="wget --quiet -c" + +abidir="`pwd`/$DEBIAN/abi/$verfull" +tmpdir="`pwd`/abi-tmp-$verfull" +origdir="`pwd`" +fwinfo=$abidir/fwinfo + +test -d $tmpdir || mkdir $tmpdir + +getall() { + arch=$1 + shift + + mkdir -p $abidir/$arch + + for sub in $@; do + if [ -f $abidir/$arch/$sub ]; then + echo "Exists: $sub" + continue + fi + echo -n "Fetching $sub..." + filename=linux-image-${verabi}-${sub}_${verfull}_${arch}.deb + cd $tmpdir + for r in "${repo_list[@]}" + do + if ! [ -f $filename ]; then + $WGET $r/$filename + fi + done + if [ "$?" = "0" ]; then + echo -n "extracting..." + dpkg-deb --extract $filename tmp + find tmp -name "*.ko" | while read f; do + modinfo $f | grep ^firmware >> $fwinfo + done + if [ -f tmp/boot/abi-* ]; then + mv tmp/boot/abi-* $abidir/$arch/$sub + else + echo -n "NO ABI FILE..." + fi + (cd tmp; find lib/modules/$verabi-$sub/kernel -name '*.ko') | \ + sed -e 's/.*\/\([^\/]*\)\.ko/\1/' | sort > \ + $abidir/$arch/$sub.modules + ( + cd tmp; + ko=`find lib/modules/$verabi-$sub/kernel -name '*.ko' | head -1` + readelf -p .comment "$ko" | awk ' + ($1 == "[") { + printf("%s", $3); + for (n=4; n<=NF; n++) { + printf(" %s", $n); + } + print "" + }' | sort -u >$abidir/$arch/$sub.compiler + version=`cat $abidir/$arch/$sub.compiler` + echo -n "$version..." + ) + rm -rf tmp $filename + echo "done." + else + echo "FAILED." + fi + cd $origdir + done +} + +# MAIN + +# Setup abi directory +mkdir -p $abidir +echo $abi > $abidir/abiname + +# NOTE: The flavours are hardcoded, because they may have changed from the +# current build. + +. $DEBIAN/etc/getabis + +compilers=`cat $abidir/*/*.compiler | sort -u | wc -l` +if [ "$compilers" != 1 ]; then + echo "WARNING: inconsistant compiler versions detected" 1>&2 +fi + +sort < $fwinfo | uniq > fwinfo.tmp +mv fwinfo.tmp $fwinfo + +rmdir $tmpdir --- linux-3.2.0.orig/debian/scripts/misc/insert-ubuntu-changes +++ linux-3.2.0/debian/scripts/misc/insert-ubuntu-changes @@ -0,0 +1,58 @@ +#!/usr/bin/perl + +if ($#ARGV != 2) { + die "Usage: $0 \n"; +} +my ($changelog, $end, $start) = @ARGV; + +$end =~ s/.*\.//; +$start =~ s/.*\.//; + +my @changes = (); +my $output = 0; +open(CHG, ") { + if (/^\S+\s+\((.*\.(\d+))\)/) { + if ($2 <= $end) { + last; + } + if ($2 == $start) { + $output = 1; + } + if ($output) { + push(@changes, "\n [ Ubuntu: $1 ]\n\n"); + next; + } + } + next if ($output == 0); + + next if (/^\s*$/); + next if (/^\s--/); + next if (/^\s\s[^\*\s]/); + + push(@changes, $_); +} +close(CHG); + +open(CHANGELOG, "< $changelog") or die "Cannot open changelog"; +open(NEW, "> $changelog.new") or die "Cannot open new changelog"; + +$printed = 3; +while () { + if (/^ CHANGELOG: /) { + $printed--; + print NEW; + if ($printed == 0) { + print NEW @changes; + } + next; + } + print NEW; +} + +close(NEW); +close(CHANGELOG); + +rename("$changelog.new", "$changelog"); --- linux-3.2.0.orig/debian/scripts/misc/insert-changes.pl +++ linux-3.2.0/debian/scripts/misc/insert-changes.pl @@ -0,0 +1,36 @@ +#!/usr/bin/perl -w + +my $debian; +$droot = $ARGV[0] if (defined $ARGV[0]); +$droot = 'debian' if (!defined $droot); +$debian = $ARGV[1] if (defined $ARGV[1]); +$debian = 'debian.master' if (!defined $debian); + +system("make -s -f $droot/rules printchanges > $debian/changes"); + +open(CHANGELOG, "< $debian/changelog") or die "Cannot open changelog"; +open(CHANGES, "< $debian/changes") or die "Cannot open new changes"; +open(NEW, "> $debian/changelog.new") or die "Cannot open new changelog"; + +$printed = 0; + +while () { + if (/^ CHANGELOG: /) { + next if $printed; + + while () { + print NEW; + } + + $printed = 1; + } else { + print NEW; + } +} + +close(NEW); +close(CHANGES); +close(CHANGELOG); + +rename("$debian/changelog.new", "$debian/changelog"); +unlink("$debian/changes"); --- linux-3.2.0.orig/debian/scripts/misc/insert-mainline-changes +++ linux-3.2.0/debian/scripts/misc/insert-mainline-changes @@ -0,0 +1,42 @@ +#!/usr/bin/perl + +if ($#ARGV != 2) { + warn "Usage: $0 \n"; + die " $0 debian.master/changelog v3.2.3 v3.2.2..v3.2.3\n"; +} +my ($changelog, $to, $range) = @ARGV; + +my @changes = (); + +push(@changes, "\n"); +push(@changes, " [ Upstream Kernel Changes ]\n\n"); +push(@changes, " * rebase to $to\n"); + +open(LOG, "git log '$range'|") || die "$0: git log failed: - $!\n"; +while () { + if (m@BugLink: .*launchpad.net/.*/([0-9]+)\s$@) { + push(@changes, " - LP: #$1\n"); + } +} +close(LOG); + +open(CHANGELOG, "< $changelog") or die "Cannot open changelog"; +open(NEW, "> $changelog.new") or die "Cannot open new changelog"; + +$printed = 3; +while () { + if (/^ CHANGELOG: /) { + $printed--; + print NEW; + if ($printed == 0) { + print NEW @changes; + } + next; + } + print NEW; +} + +close(NEW); +close(CHANGELOG); + +rename("$changelog.new", "$changelog"); --- linux-3.2.0.orig/debian/scripts/misc/kernelconfig +++ linux-3.2.0/debian/scripts/misc/kernelconfig @@ -0,0 +1,172 @@ +#!/bin/bash + +. debian/debian.env + +# Script to merge all configs and run 'make silentoldconfig' on it to wade out bad juju. +# Then split the configs into distro-commmon and flavour-specific parts + +# We have to be in the top level kernel source directory +if [ ! -f MAINTAINERS ] || [ ! -f Makefile ]; then + echo "This does not appear to be the kernel source directory." 1>&2 + exit 1 +fi + +mode=${1:?"Usage: $0 [oldconfig|editconfig]"} +yes=0 +case "$mode" in + update*configs) mode='silentoldconfig' ;; + default*configs) mode='oldconfig'; yes=1 ;; + edit*configs) ;; # All is good + gen*configs) mode='genconfigs' ;; # All is good + dump*configs) mode='config'; yes=1 ;; + *) echo "$0 called with invalid mode" 1>&2 + exit 1 ;; +esac +kerneldir="`pwd`" +confdir="$kerneldir/${DEBIAN}/config" +sharedconfdir="$kerneldir/debian.master/config" +variant="$2" + +. $DEBIAN/etc/kernelconfig + +bindir="`pwd`/${DROOT}/scripts/misc" +common_conf="$confdir/config.common.$family" +tmpdir=`mktemp -d` +mkdir "$tmpdir/CONFIGS" + +if [ "$mode" = "genconfigs" ]; then + keep=1 + mode="oldconfig" + test -d CONFIGS || mkdir CONFIGS +fi + +for arch in $archs; do + rm -rf build + mkdir build + + # Map debian archs to kernel archs + case "$arch" in + ppc64) kernarch="powerpc" ;; + amd64) kernarch="x86_64" ;; + lpia) kernarch="x86" ;; + sparc) kernarch="sparc64" ;; + armel|armhf) kernarch="arm" ;; + *) kernarch="$arch" ;; + esac + + archconfdir=$confdir/$arch + flavourconfigs=$(cd $archconfdir && ls config.flavour.*) + + # Merge configs + # We merge config.common.ubuntu + config.common. + + # config.flavour. + + for config in $flavourconfigs; do + fullconf="$tmpdir/$arch-$config-full" + case $config in + *) + : >"$fullconf" + if [ -f $common_conf ]; then + cat $common_conf >> "$fullconf" + fi + if [ -f $archconfdir/config.common.$arch ]; then + cat $archconfdir/config.common.$arch >> "$fullconf" + fi + cat "$archconfdir/$config" >>"$fullconf" + if [ -f $confdir/OVERRIDES ]; then + cat $confdir/OVERRIDES >> "$fullconf" + fi + ;; + esac + done + + for config in $flavourconfigs; do + if [ -f $archconfdir/$config ]; then + fullconf="$tmpdir/$arch-$config-full" + cat "$fullconf" > build/.config + # Call oldconfig or menuconfig + case "$mode" in + editconfigs) + # Interactively edit config parameters + while : ; do + echo -n "Do you want to edit config: $arch/$config? [Y/n] " + read choice + + case "$choice" in + y* | Y* | "" ) + make O=`pwd`/build ARCH=$kernarch menuconfig + break ;; + n* | N* ) + break ;; + *) + echo "Entry not valid" + esac + done + ;; + *) + echo "* Run $mode (yes=$yes) on $arch/$config ..." + if [ "$yes" -eq 1 ]; then + yes "" | make O=`pwd`/build ARCH=$kernarch "$mode" + else + make O=`pwd`/build ARCH=$kernarch "$mode" + fi ;; + esac + cat build/.config > $archconfdir/$config + cat build/.config > "$tmpdir/CONFIGS/$arch-$config" + if [ "$keep" = "1" ]; then + cat build/.config > CONFIGS/$arch-$config + fi + else + echo "!! Config not found $archconfdir/$config..." + fi + done + + echo "Running splitconfig.pl for $arch" + echo + + # Can we make this more robust by avoiding $tmpdir completely? + # This approach was used for now because I didn't want to change + # splitconfig.pl + (cd $archconfdir; $bindir/splitconfig.pl; mv config.common \ + config.common.$arch; cp config.common.$arch $tmpdir) +done + +rm -f $common_conf + +# Now run splitconfig.pl on all the config.common. copied to +# $tmpdir +(cd $tmpdir; $bindir/splitconfig.pl) +( + cd $confdir; + rm -f *-full + grep -v 'is UNMERGABLE' <$tmpdir/config.common >$common_conf + for arch in $archs; do + grep -v 'is UNMERGABLE' <$tmpdir/config.common.$arch \ + >$arch/config.common.$arch + done +) + +echo "" +echo "Running config-check for all configurations ..." +echo "" +fail=0 +for arch in $archs; do + archconfdir=$confdir/$arch + flavourconfigs=$(cd $archconfdir && ls config.flavour.*) + for config in $flavourconfigs; do + flavour="${config##*.}" + if [ -f $archconfdir/$config ]; then + fullconf="$tmpdir/CONFIGS/$arch-$config" + "$bindir/../config-check" "$fullconf" "$arch" "$flavour" "$sharedconfdir" "0" || let "fail=$fail+1" + fi + done +done + +if [ "$fail" != 0 ]; then + echo "" + echo "*** ERROR: $fail config-check failures detected" + echo "" +fi + +rm -rf build + --- linux-3.2.0.orig/debian/scripts/misc/splitconfig.pl +++ linux-3.2.0/debian/scripts/misc/splitconfig.pl @@ -0,0 +1,111 @@ +#!/usr/bin/perl -w + +%allconfigs = (); +%common = (); + +print "Reading config's ...\n"; + +opendir(DIR, "."); + +while (defined($config = readdir(DIR))) { + # Only config.* + next if $config !~ /^config\..*/; + # Nothing that is disabled, or remnant + next if $config =~ /.*\.(default|disabled|stub)$/; + + %{$allconfigs{$config}} = (); + + print " processing $config ... "; + + open(CONFIG, "< $config"); + + while () { + # Skip comments + /^#*\s*CONFIG_(\w+)[\s=](.*)$/ or next; + + ${$allconfigs{$config}}{$1} = $2; + + $common{$1} = $2; + } + + close(CONFIG); + + print "done.\n"; +} + +closedir(DIR); + +print "\n"; + +print "Merging lists ... \n"; + +# %options - pointer to flavour config inside the allconfigs array +for $config (keys(%allconfigs)) { + my %options = %{$allconfigs{$config}}; + + print " processing $config ... "; + + for $key (keys(%common)) { + next if not defined $common{$key}; + + # If we don't have the common option, then it isn't + # common. If we do have that option, it must have the same + # value. EXCEPT where this file does not have a value at all + # which may safely be merged with any other value; the value + # will be elided during recombination of the parts. + if (!defined($options{$key})) { + # Its ok really ... let it merge + } elsif (not defined($options{$key})) { + undef $common{$key}; + } elsif ($common{$key} ne $options{$key}) { + undef $common{$key}; + } + } + + print "done.\n"; +} + +print "\n"; + +print "Creating common config ... "; + +open(COMMON, "> config.common"); +print COMMON "#\n# Common config options automatically generated by splitconfig.pl\n#\n"; + +for $key (sort(keys(%common))) { + if (not defined $common{$key}) { + print COMMON "# CONFIG_$key is UNMERGABLE\n"; + } elsif ($common{$key} eq "is not set") { + print COMMON "# CONFIG_$key is not set\n"; + } else { + print COMMON "CONFIG_$key=$common{$key}\n"; + } +} +close(COMMON); + +print "done.\n\n"; + +print "Creating stub configs ...\n"; + +for $config (keys(%allconfigs)) { + my %options = %{$allconfigs{$config}}; + + print " processing $config ... "; + + open(STUB, "> $config"); + print STUB "#\n# Config options for $config automatically generated by splitconfig.pl\n#\n"; + + for $key (sort(keys(%options))) { + next if defined $common{$key}; + + if ($options{$key} =~ /^is /) { + print STUB "# CONFIG_$key $options{$key}\n"; + } else { + print STUB "CONFIG_$key=$options{$key}\n"; + } + } + + close(STUB); + + print "done.\n"; +} --- linux-3.2.0.orig/debian/scripts/misc/git-ubuntu-log +++ linux-3.2.0/debian/scripts/misc/git-ubuntu-log @@ -0,0 +1,232 @@ +#!/usr/bin/perl -w + +use strict; +use Text::Wrap; + +my $kernel_auth = "Upstream Kernel Changes"; + +my (%map, @reverts); +my $pstate = 1; +my $no_kern_log = 0; +my $print_shas = 0; +my $first_print = 1; + +while (@ARGV) { + my $opt = $ARGV[0]; + shift; + if ($opt eq "--no-kern-log") { + $no_kern_log = 1; + } elsif ($opt eq "--print-shas") { + $print_shas = 1; + } else { + print STDERR "Unknown options: $opt\n"; + exit(1); + } +} + +sub check_reverts($) { + my ($entry) = @_; + my ($check); + + foreach $check (reverse @reverts) { + my $desc = "Revert \"" . $entry->{'desc'} . "\""; + if ($check->{'desc'} eq $desc) { + @reverts = grep($_->{'desc'} ne $desc, @reverts); + return 1; + } + } + + return 0; +} + +sub add_entry($) { + my ($entry) = @_; + my $key = $entry->{'author'}; + + # store description in array, in email->{desc list} map + if (exists $map{$key}) { + # grab ref + my $obj = $map{$key}; + + # add desc to array + push(@$obj, $entry); + } else { + # create new array, containing 1 item + my @arr = ($entry); + + # store ref to array + $map{$key} = \@arr; + } +} + +sub shortlog_entry($$$$$) { + my ($name, $desc, $bug, $cve, $commit) = @_; + my $entry; + + $desc =~ s#/pub/scm/linux/kernel/git/#/.../#g; + $desc =~ s#\[PATCH\] ##g; + + $desc =~ s#^\s*##g; + $desc =~ s# *UBUNTU: ##g; + + $entry->{'desc'} = $desc; + if ($bug ne '') { + $entry->{'bugno'} = $bug; + } + $entry->{'cve'} = $cve; + $entry->{'commit'} = $commit; + $entry->{'author'} = $name; + + if ($desc =~ /^Revert "/) { + push(@reverts, $entry); + return; + } + + return if check_reverts($entry); + + add_entry($entry); +} + +# sort comparison function +sub by_name($$) { + my ($a, $b) = @_; + + uc($a) cmp uc($b); +} + +sub shortlog_output { + my ($obj, $key, $entry); + + foreach $key (sort by_name keys %map) { + next if $key eq $kernel_auth and $no_kern_log; + + print "\n" unless $first_print; + $first_print = 0; + + # output author + printf " [ %s ]\n\n", $key; + + # output author's 1-line summaries + $obj = $map{$key}; + foreach $entry (reverse @$obj) { + print wrap(" * ", " ", $entry->{'desc'}) . "\n"; + # For non upstream changes, add other info. + if ($key ne $kernel_auth) { + if ($print_shas) { + print " - GIT-SHA " . $entry->{'commit'} . + "\n"; + } + } + if (defined($entry->{'bugno'})) { + print " - LP: #" . $entry->{'bugno'} . "\n"; + } + if (defined($entry->{'cve'})) { + print " - " . $entry->{'cve'} . "\n"; + } + } + } +} + +sub changelog_input { + my ($author, $desc, $commit, $entry, $cve); + + while () { + # get commit + if ($pstate == 1) { + next unless /^commit (.*)/; + + $commit = $1; + + $pstate++; + } + + # get author and email + elsif ($pstate == 2) { + my ($email); + + next unless /^[Aa]uthor:?\s*(.*?)\s*<(.*)>/; + + $author = $1; + $email = $2; + $desc = undef; + $cve = undef; + + # cset author fixups + if (!$author) { + $author = $email; + } + $pstate++; + } + + # skip to blank line + elsif ($pstate == 3) { + next unless /^\s*$/; + $pstate++; + } + + # skip to non-blank line + elsif ($pstate == 4) { + next unless /^\s*?(.*)/; + my $ignore = 0; + my $do_ignore = 0; + my $bug = undef; + my %bugz = (); + my $k; + + # skip lines that are obviously not + # a 1-line cset description + next if /^\s*From: /; + + chomp; + $desc = $1; + + if ($desc =~ /^ *(Revert "|)UBUNTU:/) { + $do_ignore = 1; + } else { + $do_ignore = 0; + $author = $kernel_auth; + $ignore = 1 if $desc =~ /Merge /; + } + while () { + $ignore = 1 if ($do_ignore && /^ *Ignore: yes/i); + if (/^ *Bug: *(#|)([0-9#,\s]*)\s*$/i) { + foreach $k (split('(,|\s)\s*(#|)', $2)) { + $bugz{$k} = 1 if (($k ne '') and ($k =~ /[0-9]+/)); + } + } + elsif (/^ *BugLink: *http.*:\/\/.*\/([0-9]+)/i) { + $bugz{$1} = 1; + } + elsif (/^ *(CVE-.*)/) { + $cve = $1 + } + last if /^commit /; + } + + $bug = join(", #", sort keys(%bugz)); + if (!$ignore) { + &shortlog_entry($author, $desc, $bug, + $cve, $commit, 0); + } + + $pstate = 1; + if ($_ && /^commit (.*)/) { + $commit = $1; + $pstate++; + } + } + + else { + die "invalid parse state $pstate"; + } + } + + foreach $entry (@reverts) { + add_entry($entry); + } +} + +&changelog_input; +&shortlog_output; + +exit(0); --- linux-3.2.0.orig/debian/scripts/misc/retag +++ linux-3.2.0/debian/scripts/misc/retag @@ -0,0 +1,34 @@ +#!/usr/bin/perl -w + +open(TAGS, "git tag -l |") or die "Could not get list of tags"; +@tags = ; +close(TAGS); + +open(LOGS, "git log --pretty=short |") or die "ERROR: Calling git log"; +my $commit = ""; + +while () { + my $origtag; + + if (m|^commit (.*)$|) { + $commit = $1; + next; + } + + m|\s*UBUNTU: (Ubuntu-2\.6\..*)| or next; + + $tag = $1; + + ($origtag) = grep(/^$tag.orig$/, @tags); + + if (!defined($origtag)) { + print "I: Adding original tag for $tag\n"; + system("git tag -m $tag $tag.orig $tag"); + } + + print "I: Tagging $tag => $commit\n"; + + system("git tag -f -m $tag $tag $commit"); +} + +close(LOGS); --- linux-3.2.0.orig/debian/stamps/keep-dir +++ linux-3.2.0/debian/stamps/keep-dir @@ -0,0 +1 @@ +Place holder --- linux-3.2.0.orig/debian/tools/perf +++ linux-3.2.0/debian/tools/perf @@ -0,0 +1,16 @@ +#!/bin/bash +full_version=`uname -r` + +# Removing flavour from version i.e. generic or server. +flavour_abi=${full_version#*-} +flavour=${flavour_abi#*-} +version=${full_version%-$flavour} +perf="perf_$version" + +if ! which "$perf" > /dev/null; then + echo "$perf not found" >&2 + echo "You may need to install linux-tools-$version" >&2 + exit 2 +fi + +exec "$perf" "$@" --- linux-3.2.0.orig/debian/tools/generic +++ linux-3.2.0/debian/tools/generic @@ -0,0 +1,16 @@ +#!/bin/bash +full_version=`uname -r` + +# Removing flavour from version i.e. generic or server. +flavour_abi=${full_version#*-} +flavour=${flavour_abi#*-} +version=${full_version%-$flavour} +this="$0_$version" + +if [ ! -f "$this" ]; then + echo "$this not found" >&2 + echo "You may need to install linux-tools-$version" >&2 + exit 2 +fi + +exec "$this" "$@" --- linux-3.2.0.orig/debian/tools/turbostat +++ linux-3.2.0/debian/tools/turbostat @@ -0,0 +1,16 @@ +#!/bin/bash +full_version=`uname -r` + +# Removing flavour from version i.e. generic or server. +flavour_abi=${full_version#*-} +flavour=${flavour_abi#*-} +version=${full_version%-$flavour} +turbostat="turbostat_$version" + +if ! which "$turbostat" > /dev/null; then + echo "$turbostat not found" >&2 + echo "You may need to install linux-tools-$version" >&2 + exit 2 +fi + +exec "$turbostat" "$@" --- linux-3.2.0.orig/debian/tools/x86_energy_perf_policy +++ linux-3.2.0/debian/tools/x86_energy_perf_policy @@ -0,0 +1,16 @@ +#!/bin/bash +full_version=`uname -r` + +# Removing flavour from version i.e. generic or server. +flavour_abi=${full_version#*-} +flavour=${flavour_abi#*-} +version=${full_version%-$flavour} +x86_energy_perf_policy="x86_energy_perf_policy_$version" + +if ! which "$x86_energy_perf_policy" > /dev/null; then + echo "$x86_energy_perf_policy not found" >&2 + echo "You may need to install linux-tools-$version" >&2 + exit 2 +fi + +exec "$x86_energy_perf_policy" "$@" --- linux-3.2.0.orig/samples/Makefile +++ linux-3.2.0/samples/Makefile @@ -1,4 +1,4 @@ # Makefile for Linux samples code obj-$(CONFIG_SAMPLES) += kobject/ kprobes/ tracepoints/ trace_events/ \ - hw_breakpoint/ kfifo/ kdb/ hidraw/ + hw_breakpoint/ kfifo/ kdb/ hidraw/ seccomp/ --- linux-3.2.0.orig/samples/seccomp/bpf-helper.h +++ linux-3.2.0/samples/seccomp/bpf-helper.h @@ -0,0 +1,238 @@ +/* + * Example wrapper around BPF macros. + * + * Copyright (c) 2012 The Chromium OS Authors + * Author: Will Drewry + * + * The code may be used by anyone for any purpose, + * and can serve as a starting point for developing + * applications using prctl(PR_SET_SECCOMP, 2, ...). + * + * No guarantees are provided with respect to the correctness + * or functionality of this code. + */ +#ifndef __BPF_HELPER_H__ +#define __BPF_HELPER_H__ + +#include /* for __BITS_PER_LONG */ +#include +#include +#include /* for seccomp_data */ +#include +#include +#include + +#define BPF_LABELS_MAX 256 +struct bpf_labels { + int count; + struct __bpf_label { + const char *label; + __u32 location; + } labels[BPF_LABELS_MAX]; +}; + +int bpf_resolve_jumps(struct bpf_labels *labels, + struct sock_filter *filter, size_t count); +__u32 seccomp_bpf_label(struct bpf_labels *labels, const char *label); +void seccomp_bpf_print(struct sock_filter *filter, size_t count); + +#define JUMP_JT 0xff +#define JUMP_JF 0xff +#define LABEL_JT 0xfe +#define LABEL_JF 0xfe + +#define ALLOW \ + BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ALLOW) +#define DENY \ + BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL) +#define JUMP(labels, label) \ + BPF_JUMP(BPF_JMP+BPF_JA, FIND_LABEL((labels), (label)), \ + JUMP_JT, JUMP_JF) +#define LABEL(labels, label) \ + BPF_JUMP(BPF_JMP+BPF_JA, FIND_LABEL((labels), (label)), \ + LABEL_JT, LABEL_JF) +#define SYSCALL(nr, jt) \ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (nr), 0, 1), \ + jt + +/* Lame, but just an example */ +#define FIND_LABEL(labels, label) seccomp_bpf_label((labels), #label) + +#define EXPAND(...) __VA_ARGS__ +/* Map all width-sensitive operations */ +#if __BITS_PER_LONG == 32 + +#define JEQ(x, jt) JEQ32(x, EXPAND(jt)) +#define JNE(x, jt) JNE32(x, EXPAND(jt)) +#define JGT(x, jt) JGT32(x, EXPAND(jt)) +#define JLT(x, jt) JLT32(x, EXPAND(jt)) +#define JGE(x, jt) JGE32(x, EXPAND(jt)) +#define JLE(x, jt) JLE32(x, EXPAND(jt)) +#define JA(x, jt) JA32(x, EXPAND(jt)) +#define ARG(i) ARG_32(i) +#define LO_ARG(idx) offsetof(struct seccomp_data, args[(idx)]) + +#elif __BITS_PER_LONG == 64 + +/* Ensure that we load the logically correct offset. */ +#if __BYTE_ORDER == __LITTLE_ENDIAN +#define ENDIAN(_lo, _hi) _lo, _hi +#define LO_ARG(idx) offsetof(struct seccomp_data, args[(idx)]) +#define HI_ARG(idx) offsetof(struct seccomp_data, args[(idx)]) + sizeof(__u32) +#elif __BYTE_ORDER == __BIG_ENDIAN +#define ENDIAN(_lo, _hi) _hi, _lo +#define LO_ARG(idx) offsetof(struct seccomp_data, args[(idx)]) + sizeof(__u32) +#define HI_ARG(idx) offsetof(struct seccomp_data, args[(idx)]) +#else +#error "Unknown endianness" +#endif + +union arg64 { + struct { + __u32 ENDIAN(lo32, hi32); + }; + __u64 u64; +}; + +#define JEQ(x, jt) \ + JEQ64(((union arg64){.u64 = (x)}).lo32, \ + ((union arg64){.u64 = (x)}).hi32, \ + EXPAND(jt)) +#define JGT(x, jt) \ + JGT64(((union arg64){.u64 = (x)}).lo32, \ + ((union arg64){.u64 = (x)}).hi32, \ + EXPAND(jt)) +#define JGE(x, jt) \ + JGE64(((union arg64){.u64 = (x)}).lo32, \ + ((union arg64){.u64 = (x)}).hi32, \ + EXPAND(jt)) +#define JNE(x, jt) \ + JNE64(((union arg64){.u64 = (x)}).lo32, \ + ((union arg64){.u64 = (x)}).hi32, \ + EXPAND(jt)) +#define JLT(x, jt) \ + JLT64(((union arg64){.u64 = (x)}).lo32, \ + ((union arg64){.u64 = (x)}).hi32, \ + EXPAND(jt)) +#define JLE(x, jt) \ + JLE64(((union arg64){.u64 = (x)}).lo32, \ + ((union arg64){.u64 = (x)}).hi32, \ + EXPAND(jt)) + +#define JA(x, jt) \ + JA64(((union arg64){.u64 = (x)}).lo32, \ + ((union arg64){.u64 = (x)}).hi32, \ + EXPAND(jt)) +#define ARG(i) ARG_64(i) + +#else +#error __BITS_PER_LONG value unusable. +#endif + +/* Loads the arg into A */ +#define ARG_32(idx) \ + BPF_STMT(BPF_LD+BPF_W+BPF_ABS, LO_ARG(idx)) + +/* Loads hi into A and lo in X */ +#define ARG_64(idx) \ + BPF_STMT(BPF_LD+BPF_W+BPF_ABS, LO_ARG(idx)), \ + BPF_STMT(BPF_ST, 0), /* lo -> M[0] */ \ + BPF_STMT(BPF_LD+BPF_W+BPF_ABS, HI_ARG(idx)), \ + BPF_STMT(BPF_ST, 1) /* hi -> M[1] */ + +#define JEQ32(value, jt) \ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (value), 0, 1), \ + jt + +#define JNE32(value, jt) \ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (value), 1, 0), \ + jt + +/* Checks the lo, then swaps to check the hi. A=lo,X=hi */ +#define JEQ64(lo, hi, jt) \ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (hi), 0, 5), \ + BPF_STMT(BPF_LD+BPF_MEM, 0), /* swap in lo */ \ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (lo), 0, 2), \ + BPF_STMT(BPF_LD+BPF_MEM, 1), /* passed: swap hi back in */ \ + jt, \ + BPF_STMT(BPF_LD+BPF_MEM, 1) /* failed: swap hi back in */ + +#define JNE64(lo, hi, jt) \ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (hi), 5, 0), \ + BPF_STMT(BPF_LD+BPF_MEM, 0), /* swap in lo */ \ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (lo), 2, 0), \ + BPF_STMT(BPF_LD+BPF_MEM, 1), /* passed: swap hi back in */ \ + jt, \ + BPF_STMT(BPF_LD+BPF_MEM, 1) /* failed: swap hi back in */ + +#define JA32(value, jt) \ + BPF_JUMP(BPF_JMP+BPF_JSET+BPF_K, (value), 0, 1), \ + jt + +#define JA64(lo, hi, jt) \ + BPF_JUMP(BPF_JMP+BPF_JSET+BPF_K, (hi), 3, 0), \ + BPF_STMT(BPF_LD+BPF_MEM, 0), /* swap in lo */ \ + BPF_JUMP(BPF_JMP+BPF_JSET+BPF_K, (lo), 0, 2), \ + BPF_STMT(BPF_LD+BPF_MEM, 1), /* passed: swap hi back in */ \ + jt, \ + BPF_STMT(BPF_LD+BPF_MEM, 1) /* failed: swap hi back in */ + +#define JGE32(value, jt) \ + BPF_JUMP(BPF_JMP+BPF_JGE+BPF_K, (value), 0, 1), \ + jt + +#define JLT32(value, jt) \ + BPF_JUMP(BPF_JMP+BPF_JGE+BPF_K, (value), 1, 0), \ + jt + +/* Shortcut checking if hi > arg.hi. */ +#define JGE64(lo, hi, jt) \ + BPF_JUMP(BPF_JMP+BPF_JGT+BPF_K, (hi), 4, 0), \ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (hi), 0, 5), \ + BPF_STMT(BPF_LD+BPF_MEM, 0), /* swap in lo */ \ + BPF_JUMP(BPF_JMP+BPF_JGE+BPF_K, (lo), 0, 2), \ + BPF_STMT(BPF_LD+BPF_MEM, 1), /* passed: swap hi back in */ \ + jt, \ + BPF_STMT(BPF_LD+BPF_MEM, 1) /* failed: swap hi back in */ + +#define JLT64(lo, hi, jt) \ + BPF_JUMP(BPF_JMP+BPF_JGE+BPF_K, (hi), 0, 4), \ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (hi), 0, 5), \ + BPF_STMT(BPF_LD+BPF_MEM, 0), /* swap in lo */ \ + BPF_JUMP(BPF_JMP+BPF_JGT+BPF_K, (lo), 2, 0), \ + BPF_STMT(BPF_LD+BPF_MEM, 1), /* passed: swap hi back in */ \ + jt, \ + BPF_STMT(BPF_LD+BPF_MEM, 1) /* failed: swap hi back in */ + +#define JGT32(value, jt) \ + BPF_JUMP(BPF_JMP+BPF_JGT+BPF_K, (value), 0, 1), \ + jt + +#define JLE32(value, jt) \ + BPF_JUMP(BPF_JMP+BPF_JGT+BPF_K, (value), 1, 0), \ + jt + +/* Check hi > args.hi first, then do the GE checking */ +#define JGT64(lo, hi, jt) \ + BPF_JUMP(BPF_JMP+BPF_JGT+BPF_K, (hi), 4, 0), \ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (hi), 0, 5), \ + BPF_STMT(BPF_LD+BPF_MEM, 0), /* swap in lo */ \ + BPF_JUMP(BPF_JMP+BPF_JGT+BPF_K, (lo), 0, 2), \ + BPF_STMT(BPF_LD+BPF_MEM, 1), /* passed: swap hi back in */ \ + jt, \ + BPF_STMT(BPF_LD+BPF_MEM, 1) /* failed: swap hi back in */ + +#define JLE64(lo, hi, jt) \ + BPF_JUMP(BPF_JMP+BPF_JGT+BPF_K, (hi), 6, 0), \ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, (hi), 0, 3), \ + BPF_STMT(BPF_LD+BPF_MEM, 0), /* swap in lo */ \ + BPF_JUMP(BPF_JMP+BPF_JGT+BPF_K, (lo), 2, 0), \ + BPF_STMT(BPF_LD+BPF_MEM, 1), /* passed: swap hi back in */ \ + jt, \ + BPF_STMT(BPF_LD+BPF_MEM, 1) /* failed: swap hi back in */ + +#define LOAD_SYSCALL_NR \ + BPF_STMT(BPF_LD+BPF_W+BPF_ABS, \ + offsetof(struct seccomp_data, nr)) + +#endif /* __BPF_HELPER_H__ */ --- linux-3.2.0.orig/samples/seccomp/dropper.c +++ linux-3.2.0/samples/seccomp/dropper.c @@ -0,0 +1,68 @@ +/* + * Naive system call dropper built on seccomp_filter. + * + * Copyright (c) 2012 The Chromium OS Authors + * Author: Will Drewry + * + * The code may be used by anyone for any purpose, + * and can serve as a starting point for developing + * applications using prctl(PR_SET_SECCOMP, 2, ...). + * + * When run, returns the specified errno for the specified + * system call number against the given architecture. + * + * Run this one as root as PR_SET_NO_NEW_PRIVS is not called. + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +static int install_filter(int nr, int arch, int error) +{ + struct sock_filter filter[] = { + BPF_STMT(BPF_LD+BPF_W+BPF_ABS, + (offsetof(struct seccomp_data, arch))), + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, arch, 0, 3), + BPF_STMT(BPF_LD+BPF_W+BPF_ABS, + (offsetof(struct seccomp_data, nr))), + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, nr, 0, 1), + BPF_STMT(BPF_RET+BPF_K, + SECCOMP_RET_ERRNO|(error & SECCOMP_RET_DATA)), + BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ALLOW), + }; + struct sock_fprog prog = { + .len = (unsigned short)(sizeof(filter)/sizeof(filter[0])), + .filter = filter, + }; + if (prctl(PR_SET_SECCOMP, 2, &prog)) { + perror("prctl"); + return 1; + } + return 0; +} + +int main(int argc, char **argv) +{ + if (argc < 5) { + fprintf(stderr, "Usage:\n" + "dropper []\n" + "Hint: AUDIT_ARCH_I386: 0x%X\n" + " AUDIT_ARCH_X86_64: 0x%X\n" + "\n", AUDIT_ARCH_I386, AUDIT_ARCH_X86_64); + return 1; + } + if (install_filter(strtol(argv[1], NULL, 0), strtol(argv[2], NULL, 0), + strtol(argv[3], NULL, 0))) + return 1; + execv(argv[4], &argv[4]); + printf("Failed to execv\n"); + return 255; +} --- linux-3.2.0.orig/samples/seccomp/bpf-helper.c +++ linux-3.2.0/samples/seccomp/bpf-helper.c @@ -0,0 +1,89 @@ +/* + * Seccomp BPF helper functions + * + * Copyright (c) 2012 The Chromium OS Authors + * Author: Will Drewry + * + * The code may be used by anyone for any purpose, + * and can serve as a starting point for developing + * applications using prctl(PR_ATTACH_SECCOMP_FILTER). + */ + +#include +#include + +#include "bpf-helper.h" + +int bpf_resolve_jumps(struct bpf_labels *labels, + struct sock_filter *filter, size_t count) +{ + struct sock_filter *begin = filter; + __u8 insn = count - 1; + + if (count < 1) + return -1; + /* + * Walk it once, backwards, to build the label table and do fixups. + * Since backward jumps are disallowed by BPF, this is easy. + */ + filter += insn; + for (; filter >= begin; --insn, --filter) { + if (filter->code != (BPF_JMP+BPF_JA)) + continue; + switch ((filter->jt<<8)|filter->jf) { + case (JUMP_JT<<8)|JUMP_JF: + if (labels->labels[filter->k].location == 0xffffffff) { + fprintf(stderr, "Unresolved label: '%s'\n", + labels->labels[filter->k].label); + return 1; + } + filter->k = labels->labels[filter->k].location - + (insn + 1); + filter->jt = 0; + filter->jf = 0; + continue; + case (LABEL_JT<<8)|LABEL_JF: + if (labels->labels[filter->k].location != 0xffffffff) { + fprintf(stderr, "Duplicate label use: '%s'\n", + labels->labels[filter->k].label); + return 1; + } + labels->labels[filter->k].location = insn; + filter->k = 0; /* fall through */ + filter->jt = 0; + filter->jf = 0; + continue; + } + } + return 0; +} + +/* Simple lookup table for labels. */ +__u32 seccomp_bpf_label(struct bpf_labels *labels, const char *label) +{ + struct __bpf_label *begin = labels->labels, *end; + int id; + if (labels->count == 0) { + begin->label = label; + begin->location = 0xffffffff; + labels->count++; + return 0; + } + end = begin + labels->count; + for (id = 0; begin < end; ++begin, ++id) { + if (!strcmp(label, begin->label)) + return id; + } + begin->label = label; + begin->location = 0xffffffff; + labels->count++; + return id; +} + +void seccomp_bpf_print(struct sock_filter *filter, size_t count) +{ + struct sock_filter *end = filter + count; + for ( ; filter < end; ++filter) + printf("{ code=%u,jt=%u,jf=%u,k=%u },\n", + filter->code, filter->jt, filter->jf, filter->k); +} --- linux-3.2.0.orig/samples/seccomp/bpf-direct.c +++ linux-3.2.0/samples/seccomp/bpf-direct.c @@ -0,0 +1,176 @@ +/* + * Seccomp filter example for x86 (32-bit and 64-bit) with BPF macros + * + * Copyright (c) 2012 The Chromium OS Authors + * Author: Will Drewry + * + * The code may be used by anyone for any purpose, + * and can serve as a starting point for developing + * applications using prctl(PR_SET_SECCOMP, 2, ...). + */ +#define __USE_GNU 1 +#define _GNU_SOURCE 1 + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#define syscall_arg(_n) (offsetof(struct seccomp_data, args[_n])) +#define syscall_nr (offsetof(struct seccomp_data, nr)) + +#if defined(__i386__) +#define REG_RESULT REG_EAX +#define REG_SYSCALL REG_EAX +#define REG_ARG0 REG_EBX +#define REG_ARG1 REG_ECX +#define REG_ARG2 REG_EDX +#define REG_ARG3 REG_ESI +#define REG_ARG4 REG_EDI +#define REG_ARG5 REG_EBP +#elif defined(__x86_64__) +#define REG_RESULT REG_RAX +#define REG_SYSCALL REG_RAX +#define REG_ARG0 REG_RDI +#define REG_ARG1 REG_RSI +#define REG_ARG2 REG_RDX +#define REG_ARG3 REG_R10 +#define REG_ARG4 REG_R8 +#define REG_ARG5 REG_R9 +#else +#error Unsupported platform +#endif + +#ifndef PR_SET_NO_NEW_PRIVS +#define PR_SET_NO_NEW_PRIVS 36 +#endif + +#ifndef SYS_SECCOMP +#define SYS_SECCOMP 1 +#endif + +static void emulator(int nr, siginfo_t *info, void *void_context) +{ + ucontext_t *ctx = (ucontext_t *)(void_context); + int syscall; + char *buf; + ssize_t bytes; + size_t len; + if (info->si_code != SYS_SECCOMP) + return; + if (!ctx) + return; + syscall = ctx->uc_mcontext.gregs[REG_SYSCALL]; + buf = (char *) ctx->uc_mcontext.gregs[REG_ARG1]; + len = (size_t) ctx->uc_mcontext.gregs[REG_ARG2]; + + if (syscall != __NR_write) + return; + if (ctx->uc_mcontext.gregs[REG_ARG0] != STDERR_FILENO) + return; + /* Redirect stderr messages to stdout. Doesn't handle EINTR, etc */ + ctx->uc_mcontext.gregs[REG_RESULT] = -1; + if (write(STDOUT_FILENO, "[ERR] ", 6) > 0) { + bytes = write(STDOUT_FILENO, buf, len); + ctx->uc_mcontext.gregs[REG_RESULT] = bytes; + } + return; +} + +static int install_emulator(void) +{ + struct sigaction act; + sigset_t mask; + memset(&act, 0, sizeof(act)); + sigemptyset(&mask); + sigaddset(&mask, SIGSYS); + + act.sa_sigaction = &emulator; + act.sa_flags = SA_SIGINFO; + if (sigaction(SIGSYS, &act, NULL) < 0) { + perror("sigaction"); + return -1; + } + if (sigprocmask(SIG_UNBLOCK, &mask, NULL)) { + perror("sigprocmask"); + return -1; + } + return 0; +} + +static int install_filter(void) +{ + struct sock_filter filter[] = { + /* Grab the system call number */ + BPF_STMT(BPF_LD+BPF_W+BPF_ABS, syscall_nr), + /* Jump table for the allowed syscalls */ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_rt_sigreturn, 0, 1), + BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ALLOW), +#ifdef __NR_sigreturn + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_sigreturn, 0, 1), + BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ALLOW), +#endif + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_exit_group, 0, 1), + BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ALLOW), + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_exit, 0, 1), + BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ALLOW), + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_read, 1, 0), + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_write, 3, 2), + + /* Check that read is only using stdin. */ + BPF_STMT(BPF_LD+BPF_W+BPF_ABS, syscall_arg(0)), + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, STDIN_FILENO, 4, 0), + BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL), + + /* Check that write is only using stdout */ + BPF_STMT(BPF_LD+BPF_W+BPF_ABS, syscall_arg(0)), + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, STDOUT_FILENO, 1, 0), + /* Trap attempts to write to stderr */ + BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, STDERR_FILENO, 1, 2), + + BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ALLOW), + BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_TRAP), + BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL), + }; + struct sock_fprog prog = { + .len = (unsigned short)(sizeof(filter)/sizeof(filter[0])), + .filter = filter, + }; + + if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0)) { + perror("prctl(NO_NEW_PRIVS)"); + return 1; + } + + + if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &prog)) { + perror("prctl"); + return 1; + } + return 0; +} + +#define payload(_c) (_c), sizeof((_c)) +int main(int argc, char **argv) +{ + char buf[4096]; + ssize_t bytes = 0; + if (install_emulator()) + return 1; + if (install_filter()) + return 1; + syscall(__NR_write, STDOUT_FILENO, + payload("OHAI! WHAT IS YOUR NAME? ")); + bytes = syscall(__NR_read, STDIN_FILENO, buf, sizeof(buf)); + syscall(__NR_write, STDOUT_FILENO, payload("HELLO, ")); + syscall(__NR_write, STDOUT_FILENO, buf, bytes); + syscall(__NR_write, STDERR_FILENO, + payload("Error message going to STDERR\n")); + return 0; +} --- linux-3.2.0.orig/samples/seccomp/bpf-fancy.c +++ linux-3.2.0/samples/seccomp/bpf-fancy.c @@ -0,0 +1,102 @@ +/* + * Seccomp BPF example using a macro-based generator. + * + * Copyright (c) 2012 The Chromium OS Authors + * Author: Will Drewry + * + * The code may be used by anyone for any purpose, + * and can serve as a starting point for developing + * applications using prctl(PR_ATTACH_SECCOMP_FILTER). + */ + +#include +#include +#include +#include +#include +#include +#include + +#include "bpf-helper.h" + +#ifndef PR_SET_NO_NEW_PRIVS +#define PR_SET_NO_NEW_PRIVS 36 +#endif + +int main(int argc, char **argv) +{ + struct bpf_labels l; + static const char msg1[] = "Please type something: "; + static const char msg2[] = "You typed: "; + char buf[256]; + struct sock_filter filter[] = { + /* TODO: LOAD_SYSCALL_NR(arch) and enforce an arch */ + LOAD_SYSCALL_NR, + SYSCALL(__NR_exit, ALLOW), + SYSCALL(__NR_exit_group, ALLOW), + SYSCALL(__NR_write, JUMP(&l, write_fd)), + SYSCALL(__NR_read, JUMP(&l, read)), + DENY, /* Don't passthrough into a label */ + + LABEL(&l, read), + ARG(0), + JNE(STDIN_FILENO, DENY), + ARG(1), + JNE((unsigned long)buf, DENY), + ARG(2), + JGE(sizeof(buf), DENY), + ALLOW, + + LABEL(&l, write_fd), + ARG(0), + JEQ(STDOUT_FILENO, JUMP(&l, write_buf)), + JEQ(STDERR_FILENO, JUMP(&l, write_buf)), + DENY, + + LABEL(&l, write_buf), + ARG(1), + JEQ((unsigned long)msg1, JUMP(&l, msg1_len)), + JEQ((unsigned long)msg2, JUMP(&l, msg2_len)), + JEQ((unsigned long)buf, JUMP(&l, buf_len)), + DENY, + + LABEL(&l, msg1_len), + ARG(2), + JLT(sizeof(msg1), ALLOW), + DENY, + + LABEL(&l, msg2_len), + ARG(2), + JLT(sizeof(msg2), ALLOW), + DENY, + + LABEL(&l, buf_len), + ARG(2), + JLT(sizeof(buf), ALLOW), + DENY, + }; + struct sock_fprog prog = { + .filter = filter, + .len = (unsigned short)(sizeof(filter)/sizeof(filter[0])), + }; + ssize_t bytes; + bpf_resolve_jumps(&l, filter, sizeof(filter)/sizeof(*filter)); + + if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0)) { + perror("prctl(NO_NEW_PRIVS)"); + return 1; + } + + if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &prog)) { + perror("prctl(SECCOMP)"); + return 1; + } + syscall(__NR_write, STDOUT_FILENO, msg1, strlen(msg1)); + bytes = syscall(__NR_read, STDIN_FILENO, buf, sizeof(buf)-1); + bytes = (bytes > 0 ? bytes : 0); + syscall(__NR_write, STDERR_FILENO, msg2, strlen(msg2)); + syscall(__NR_write, STDERR_FILENO, buf, bytes); + /* Now get killed */ + syscall(__NR_write, STDERR_FILENO, msg2, strlen(msg2)+2); + return 0; +} --- linux-3.2.0.orig/samples/seccomp/Makefile +++ linux-3.2.0/samples/seccomp/Makefile @@ -0,0 +1,38 @@ +# kbuild trick to avoid linker error. Can be omitted if a module is built. +obj- := dummy.o + +hostprogs-$(CONFIG_SECCOMP) := bpf-fancy dropper +bpf-fancy-objs := bpf-fancy.o bpf-helper.o + +HOSTCFLAGS_bpf-fancy.o += -I$(objtree)/usr/include +HOSTCFLAGS_bpf-fancy.o += -idirafter $(objtree)/include +HOSTCFLAGS_bpf-helper.o += -I$(objtree)/usr/include +HOSTCFLAGS_bpf-helper.o += -idirafter $(objtree)/include + +HOSTCFLAGS_dropper.o += -I$(objtree)/usr/include +HOSTCFLAGS_dropper.o += -idirafter $(objtree)/include +dropper-objs := dropper.o + +# bpf-direct.c is x86-only. +ifeq ($(SRCARCH),x86) +# List of programs to build +hostprogs-$(CONFIG_SECCOMP) += bpf-direct +bpf-direct-objs := bpf-direct.o +endif + +HOSTCFLAGS_bpf-direct.o += -I$(objtree)/usr/include +HOSTCFLAGS_bpf-direct.o += -idirafter $(objtree)/include + +# Try to match the kernel target. +ifeq ($(CONFIG_64BIT),) +HOSTCFLAGS_bpf-direct.o += -m32 +HOSTCFLAGS_dropper.o += -m32 +HOSTCFLAGS_bpf-helper.o += -m32 +HOSTCFLAGS_bpf-fancy.o += -m32 +HOSTLOADLIBES_bpf-direct += -m32 +HOSTLOADLIBES_bpf-fancy += -m32 +HOSTLOADLIBES_dropper += -m32 +endif + +# Tell kbuild to always build the programs +always := $(hostprogs-y) --- linux-3.2.0.orig/Documentation/HOWTO +++ linux-3.2.0/Documentation/HOWTO @@ -218,16 +218,16 @@ Linux kernel development process currently consists of a few different main kernel "branches" and lots of different subsystem-specific kernel branches. These different branches are: - - main 2.6.x kernel tree - - 2.6.x.y -stable kernel tree - - 2.6.x -git kernel patches + - main 3.x kernel tree + - 3.x.y -stable kernel tree + - 3.x -git kernel patches - subsystem specific kernel trees and patches - - the 2.6.x -next kernel tree for integration tests + - the 3.x -next kernel tree for integration tests -2.6.x kernel tree +3.x kernel tree ----------------- -2.6.x kernels are maintained by Linus Torvalds, and can be found on -kernel.org in the pub/linux/kernel/v2.6/ directory. Its development +3.x kernels are maintained by Linus Torvalds, and can be found on +kernel.org in the pub/linux/kernel/v3.x/ directory. Its development process is as follows: - As soon as a new kernel is released a two weeks window is open, during this period of time maintainers can submit big diffs to @@ -262,21 +262,21 @@ released according to perceived bug status, not according to a preconceived timeline." -2.6.x.y -stable kernel tree +3.x.y -stable kernel tree --------------------------- -Kernels with 4-part versions are -stable kernels. They contain +Kernels with 3-part versions are -stable kernels. They contain relatively small and critical fixes for security problems or significant -regressions discovered in a given 2.6.x kernel. +regressions discovered in a given 3.x kernel. This is the recommended branch for users who want the most recent stable kernel and are not interested in helping test development/experimental versions. -If no 2.6.x.y kernel is available, then the highest numbered 2.6.x +If no 3.x.y kernel is available, then the highest numbered 3.x kernel is the current stable kernel. -2.6.x.y are maintained by the "stable" team , and are -released as needs dictate. The normal release period is approximately +3.x.y are maintained by the "stable" team , and +are released as needs dictate. The normal release period is approximately two weeks, but it can be longer if there are no pressing problems. A security-related problem, instead, can cause a release to happen almost instantly. @@ -285,7 +285,7 @@ documents what kinds of changes are acceptable for the -stable tree, and how the release process works. -2.6.x -git patches +3.x -git patches ------------------ These are daily snapshots of Linus' kernel tree which are managed in a git repository (hence the name.) These patches are usually released @@ -317,13 +317,13 @@ accepted, or rejected. Most of these patchwork sites are listed at http://patchwork.kernel.org/. -2.6.x -next kernel tree for integration tests +3.x -next kernel tree for integration tests --------------------------------------------- -Before updates from subsystem trees are merged into the mainline 2.6.x +Before updates from subsystem trees are merged into the mainline 3.x tree, they need to be integration-tested. For this purpose, a special testing repository exists into which virtually all subsystem trees are pulled on an almost daily basis: - http://git.kernel.org/?p=linux/kernel/git/sfr/linux-next.git + http://git.kernel.org/?p=linux/kernel/git/next/linux-next.git http://linux.f-seidel.de/linux-next/pmwiki/ This way, the -next kernel gives a summary outlook onto what will be --- linux-3.2.0.orig/Documentation/kernel-parameters.txt +++ linux-3.2.0/Documentation/kernel-parameters.txt @@ -252,12 +252,15 @@ For broken nForce2 BIOS resulting in XT-PIC timer. acpi_sleep= [HW,ACPI] Sleep options - Format: { s3_bios, s3_mode, s3_beep, s4_nohwsig, + Format: { s3_bios, s3_mode, s3_beep, s3_leds, s4_nohwsig, old_ordering, nonvs, sci_force_enable } See Documentation/power/video.txt for information on s3_bios and s3_mode. s3_beep is for debugging; it makes the PC's speaker beep as soon as the kernel's real-mode entry point is called. + s3_leds is for debugging; it flashes the keyboard LEDs + 3 times as soon as the kernel's real-mode entry point is + called. s4_nohwsig prevents ACPI hardware signature from being used during resume from hibernation. old_ordering causes the ACPI 1.0 ordering of the _PTS @@ -567,6 +570,10 @@ /proc//coredump_filter. See also Documentation/filesystems/proc.txt. + cpufreq_driver= [X86] Allow only the named cpu frequency scaling driver + to register. Example: cpufreq_driver=powernow-k8 + Format: { none | STRING } + cpuidle.off=1 [CPU_IDLE] disable the cpuidle sub-system @@ -689,6 +696,21 @@ The filter can be disabled or changed to another driver later using sysfs. + drm_kms_helper.edid_firmware=[:] + Broken monitors, graphic adapters and KVMs may + send no or incorrect EDID data sets. This parameter + allows to specify an EDID data set in the + /lib/firmware directory that is used instead. + Generic built-in EDID data sets are used, if one of + edid/1024x768.bin, edid/1280x1024.bin, + edid/1680x1050.bin, or edid/1920x1080.bin is given + and no file with the same name exists. Details and + instructions how to build your own EDID data are + available in Documentation/EDID/HOWTO.txt. An EDID + data set will only be used for a particular connector, + if its name and a colon are prepended to the EDID + name. + dscc4.setup= [NET] earlycon= [KNL] Output early console device and options. @@ -2169,6 +2191,12 @@ default: off. + printk.always_kmsg_dump= + Trigger kmsg_dump for cases other than kernel oops or + panics + Format: (1/Y/y=enable, 0/N/n=disable) + default: disabled + printk.time= Show timing data prefixed to each printk message line Format: (1/Y/y=enable, 0/N/n=disable) --- linux-3.2.0.orig/Documentation/ABI/testing/sysfs-driver-wacom +++ linux-3.2.0/Documentation/ABI/testing/sysfs-driver-wacom @@ -15,9 +15,9 @@ Description: Attribute group for control of the status LEDs and the OLEDs. This attribute group is only available for Intuos 4 M, L, - and XL (with LEDs and OLEDs) and Cintiq 21UX2 (LEDs only). - Therefore its presence implicitly signifies the presence of - said LEDs and OLEDs on the tablet device. + and XL (with LEDs and OLEDs) and Cintiq 21UX2 and Cintiq 24HD + (LEDs only). Therefore its presence implicitly signifies the + presence of said LEDs and OLEDs on the tablet device. What: /sys/bus/usb/devices/-:./wacom_led/status0_luminance Date: August 2011 @@ -41,16 +41,17 @@ Contact: linux-input@vger.kernel.org Description: Writing to this file sets which one of the four (for Intuos 4) - or of the right four (for Cintiq 21UX2) status LEDs is active (0..3). - The other three LEDs on the same side are always inactive. + or of the right four (for Cintiq 21UX2 and Cintiq 24HD) status + LEDs is active (0..3). The other three LEDs on the same side are + always inactive. What: /sys/bus/usb/devices/-:./wacom_led/status_led1_select Date: September 2011 Contact: linux-input@vger.kernel.org Description: - Writing to this file sets which one of the left four (for Cintiq 21UX2) - status LEDs is active (0..3). The other three LEDs on the left are always - inactive. + Writing to this file sets which one of the left four (for Cintiq 21UX2 + and Cintiq 24HD) status LEDs is active (0..3). The other three LEDs on + the left are always inactive. What: /sys/bus/usb/devices/-:./wacom_led/buttons_luminance Date: August 2011 --- linux-3.2.0.orig/Documentation/prctl/seccomp_filter.txt +++ linux-3.2.0/Documentation/prctl/seccomp_filter.txt @@ -0,0 +1,156 @@ + SECure COMPuting with filters + ============================= + +Introduction +------------ + +A large number of system calls are exposed to every userland process +with many of them going unused for the entire lifetime of the process. +As system calls change and mature, bugs are found and eradicated. A +certain subset of userland applications benefit by having a reduced set +of available system calls. The resulting set reduces the total kernel +surface exposed to the application. System call filtering is meant for +use with those applications. + +Seccomp filtering provides a means for a process to specify a filter for +incoming system calls. The filter is expressed as a Berkeley Packet +Filter (BPF) program, as with socket filters, except that the data +operated on is related to the system call being made: system call +number and the system call arguments. This allows for expressive +filtering of system calls using a filter program language with a long +history of being exposed to userland and a straightforward data set. + +Additionally, BPF makes it impossible for users of seccomp to fall prey +to time-of-check-time-of-use (TOCTOU) attacks that are common in system +call interposition frameworks. BPF programs may not dereference +pointers which constrains all filters to solely evaluating the system +call arguments directly. + +What it isn't +------------- + +System call filtering isn't a sandbox. It provides a clearly defined +mechanism for minimizing the exposed kernel surface. It is meant to be +a tool for sandbox developers to use. Beyond that, policy for logical +behavior and information flow should be managed with a combination of +other system hardening techniques and, potentially, an LSM of your +choosing. Expressive, dynamic filters provide further options down this +path (avoiding pathological sizes or selecting which of the multiplexed +system calls in socketcall() is allowed, for instance) which could be +construed, incorrectly, as a more complete sandboxing solution. + +Usage +----- + +An additional seccomp mode is added and is enabled using the same +prctl(2) call as the strict seccomp. If the architecture has +CONFIG_HAVE_ARCH_SECCOMP_FILTER, then filters may be added as below: + +PR_SET_SECCOMP: + Now takes an additional argument which specifies a new filter + using a BPF program. + The BPF program will be executed over struct seccomp_data + reflecting the system call number, arguments, and other + metadata. The BPF program must then return one of the + acceptable values to inform the kernel which action should be + taken. + + Usage: + prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, prog); + + The 'prog' argument is a pointer to a struct sock_fprog which + will contain the filter program. If the program is invalid, the + call will return -1 and set errno to EINVAL. + + Note, is_compat_task is also tracked for the @prog. This means + that once set the calling task will have all of its system calls + blocked if it switches its system call ABI. + + If fork/clone and execve are allowed by @prog, any child + processes will be constrained to the same filters and system + call ABI as the parent. + + Prior to use, the task must call prctl(PR_SET_NO_NEW_PRIVS, 1) or + run with CAP_SYS_ADMIN privileges in its namespace. If these are not + true, -EACCES will be returned. This requirement ensures that filter + programs cannot be applied to child processes with greater privileges + than the task that installed them. + + Additionally, if prctl(2) is allowed by the attached filter, + additional filters may be layered on which will increase evaluation + time, but allow for further decreasing the attack surface during + execution of a process. + +The above call returns 0 on success and non-zero on error. + +Return values +------------- +A seccomp filter may return any of the following values. If multiple +filters exist, the return value for the evaluation of a given system +call will always use the highest precedent value. (For example, +SECCOMP_RET_KILL will always take precedence.) + +In precedence order, they are: + +SECCOMP_RET_KILL: + Results in the task exiting immediately without executing the + system call. The exit status of the task (status & 0x7f) will + be SIGSYS, not SIGKILL. + +SECCOMP_RET_TRAP: + Results in the kernel sending a SIGSYS signal to the triggering + task without executing the system call. The kernel will + rollback the register state to just before the system call + entry such that a signal handler in the task will be able to + inspect the ucontext_t->uc_mcontext registers and emulate + system call success or failure upon return from the signal + handler. + + The SECCOMP_RET_DATA portion of the return value will be passed + as si_errno. + + SIGSYS triggered by seccomp will have a si_code of SYS_SECCOMP. + +SECCOMP_RET_ERRNO: + Results in the lower 16-bits of the return value being passed + to userland as the errno without executing the system call. + +SECCOMP_RET_TRACE: + When returned, this value will cause the kernel to attempt to + notify a ptrace()-based tracer prior to executing the system + call. If there is no tracer present, -ENOSYS is returned to + userland and the system call is not executed. + + A tracer will be notified if it requests PTRACE_O_TRACESECCOMP + using ptrace(PTRACE_SETOPTIONS). The tracer will be notified + of a PTRACE_EVENT_SECCOMP and the SECCOMP_RET_DATA portion of + the BPF program return value will be available to the tracer + via PTRACE_GETEVENTMSG. + +SECCOMP_RET_ALLOW: + Results in the system call being executed. + +If multiple filters exist, the return value for the evaluation of a +given system call will always use the highest precedent value. + +Precedence is only determined using the SECCOMP_RET_ACTION mask. When +multiple filters return values of the same precedence, only the +SECCOMP_RET_DATA from the most recently installed filter will be +returned. + + +Example +------- + +The samples/seccomp/ directory contains both an x86-specific example +and a more generic example of a higher level macro interface for BPF +program generation. + +Adding architecture support +----------------------- + +See arch/Kconfig for the authoritative requirements. In general, if an +architecture supports both ptrace_event and seccomp, it will be able to +support seccomp filter with minor fixup: SIGSYS support and seccomp return +value checking. Then it must just add CONFIG_HAVE_ARCH_SECCOMP_FILTER +to its arch-specific Kconfig. --- linux-3.2.0.orig/Documentation/input/alps.txt +++ linux-3.2.0/Documentation/input/alps.txt @@ -0,0 +1,188 @@ +ALPS Touchpad Protocol +---------------------- + +Introduction +------------ + +Currently the ALPS touchpad driver supports four protocol versions in use by +ALPS touchpads, called versions 1, 2, 3, and 4. Information about the various +protocol versions is contained in the following sections. + +Detection +--------- + +All ALPS touchpads should respond to the "E6 report" command sequence: +E8-E6-E6-E6-E9. An ALPS touchpad should respond with either 00-00-0A or +00-00-64. + +If the E6 report is successful, the touchpad model is identified using the "E7 +report" sequence: E8-E7-E7-E7-E9. The response is the model signature and is +matched against known models in the alps_model_data_array. + +With protocol versions 3 and 4, the E7 report model signature is always +73-02-64. To differentiate between these versions, the response from the +"Enter Command Mode" sequence must be inspected as described below. + +Command Mode +------------ + +Protocol versions 3 and 4 have a command mode that is used to read and write +one-byte device registers in a 16-bit address space. The command sequence +EC-EC-EC-E9 places the device in command mode, and the device will respond +with 88-07 followed by a third byte. This third byte can be used to determine +whether the devices uses the version 3 or 4 protocol. + +To exit command mode, PSMOUSE_CMD_SETSTREAM (EA) is sent to the touchpad. + +While in command mode, register addresses can be set by first sending a +specific command, either EC for v3 devices or F5 for v4 devices. Then the +address is sent one nibble at a time, where each nibble is encoded as a +command with optional data. This enoding differs slightly between the v3 and +v4 protocols. + +Once an address has been set, the addressed register can be read by sending +PSMOUSE_CMD_GETINFO (E9). The first two bytes of the response contains the +address of the register being read, and the third contains the value of the +register. Registers are written by writing the value one nibble at a time +using the same encoding used for addresses. + +Packet Format +------------- + +In the following tables, the following notation is used. + + CAPITALS = stick, miniscules = touchpad + +?'s can have different meanings on different models, such as wheel rotation, +extra buttons, stick buttons on a dualpoint, etc. + +PS/2 packet format +------------------ + + byte 0: 0 0 YSGN XSGN 1 M R L + byte 1: X7 X6 X5 X4 X3 X2 X1 X0 + byte 2: Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 + +Note that the device never signals overflow condition. + +ALPS Absolute Mode - Protocol Verion 1 +-------------------------------------- + + byte 0: 1 0 0 0 1 x9 x8 x7 + byte 1: 0 x6 x5 x4 x3 x2 x1 x0 + byte 2: 0 ? ? l r ? fin ges + byte 3: 0 ? ? ? ? y9 y8 y7 + byte 4: 0 y6 y5 y4 y3 y2 y1 y0 + byte 5: 0 z6 z5 z4 z3 z2 z1 z0 + +ALPS Absolute Mode - Protocol Version 2 +--------------------------------------- + + byte 0: 1 ? ? ? 1 ? ? ? + byte 1: 0 x6 x5 x4 x3 x2 x1 x0 + byte 2: 0 x10 x9 x8 x7 ? fin ges + byte 3: 0 y9 y8 y7 1 M R L + byte 4: 0 y6 y5 y4 y3 y2 y1 y0 + byte 5: 0 z6 z5 z4 z3 z2 z1 z0 + +Dualpoint device -- interleaved packet format +--------------------------------------------- + + byte 0: 1 1 0 0 1 1 1 1 + byte 1: 0 x6 x5 x4 x3 x2 x1 x0 + byte 2: 0 x10 x9 x8 x7 0 fin ges + byte 3: 0 0 YSGN XSGN 1 1 1 1 + byte 4: X7 X6 X5 X4 X3 X2 X1 X0 + byte 5: Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y0 + byte 6: 0 y9 y8 y7 1 m r l + byte 7: 0 y6 y5 y4 y3 y2 y1 y0 + byte 8: 0 z6 z5 z4 z3 z2 z1 z0 + +ALPS Absolute Mode - Protocol Version 3 +--------------------------------------- + +ALPS protocol version 3 has three different packet formats. The first two are +associated with touchpad events, and the third is associatd with trackstick +events. + +The first type is the touchpad position packet. + + byte 0: 1 ? x1 x0 1 1 1 1 + byte 1: 0 x10 x9 x8 x7 x6 x5 x4 + byte 2: 0 y10 y9 y8 y7 y6 y5 y4 + byte 3: 0 M R L 1 m r l + byte 4: 0 mt x3 x2 y3 y2 y1 y0 + byte 5: 0 z6 z5 z4 z3 z2 z1 z0 + +Note that for some devices the trackstick buttons are reported in this packet, +and on others it is reported in the trackstick packets. + +The second packet type contains bitmaps representing the x and y axes. In the +bitmaps a given bit is set if there is a finger covering that position on the +given axis. Thus the bitmap packet can be used for low-resolution multi-touch +data, although finger tracking is not possible. This packet also encodes the +number of contacts (f1 and f0 in the table below). + + byte 0: 1 1 x1 x0 1 1 1 1 + byte 1: 0 x8 x7 x6 x5 x4 x3 x2 + byte 2: 0 y7 y6 y5 y4 y3 y2 y1 + byte 3: 0 y10 y9 y8 1 1 1 1 + byte 4: 0 x14 x13 x12 x11 x10 x9 y0 + byte 5: 0 1 ? ? ? ? f1 f0 + +This packet only appears after a position packet with the mt bit set, and +ususally only appears when there are two or more contacts (although +ocassionally it's seen with only a single contact). + +The final v3 packet type is the trackstick packet. + + byte 0: 1 1 x7 y7 1 1 1 1 + byte 1: 0 x6 x5 x4 x3 x2 x1 x0 + byte 2: 0 y6 y5 y4 y3 y2 y1 y0 + byte 3: 0 1 0 0 1 0 0 0 + byte 4: 0 z4 z3 z2 z1 z0 ? ? + byte 5: 0 0 1 1 1 1 1 1 + +ALPS Absolute Mode - Protocol Version 4 +--------------------------------------- + +Protocol version 4 has an 8-byte packet format. + + byte 0: 1 ? x1 x0 1 1 1 1 + byte 1: 0 x10 x9 x8 x7 x6 x5 x4 + byte 2: 0 y10 y9 y8 y7 y6 y5 y4 + byte 3: 0 1 x3 x2 y3 y2 y1 y0 + byte 4: 0 ? ? ? 1 ? r l + byte 5: 0 z6 z5 z4 z3 z2 z1 z0 + byte 6: bitmap data (described below) + byte 7: bitmap data (described below) + +The last two bytes represent a partial bitmap packet, with 3 full packets +required to construct a complete bitmap packet. Once assembled, the 6-byte +bitmap packet has the following format: + + byte 0: 0 1 x7 x6 x5 x4 x3 x2 + byte 1: 0 x1 x0 y4 y3 y2 y1 y0 + byte 2: 0 0 ? x14 x13 x12 x11 x10 + byte 3: 0 x9 x8 y9 y8 y7 y6 y5 + byte 4: 0 0 0 0 0 0 0 0 + byte 5: 0 0 0 0 0 0 0 y10 + +There are several things worth noting here. + + 1) In the bitmap data, bit 6 of byte 0 serves as a sync byte to + identify the first fragment of a bitmap packet. + + 2) The bitmaps represent the same data as in the v3 bitmap packets, although + the packet layout is different. + + 3) There doesn't seem to be a count of the contact points anywhere in the v4 + protocol packets. Deriving a count of contact points must be done by + analyzing the bitmaps. + + 4) There is a 3 to 1 ratio of position packets to bitmap packets. Therefore + MT position can only be updated for every third ST position update, and + the count of contact points can only be updated every third packet as + well. + +So far no v4 devices with tracksticks have been encountered. --- linux-3.2.0.orig/Documentation/filesystems/Locking +++ linux-3.2.0/Documentation/filesystems/Locking @@ -62,6 +62,7 @@ int (*removexattr) (struct dentry *, const char *); void (*truncate_range)(struct inode *, loff_t, loff_t); int (*fiemap)(struct inode *, struct fiemap_extent_info *, u64 start, u64 len); + struct file *(*open)(struct dentry *,struct file *,const struct cred *); locking rules: all may block @@ -89,6 +90,7 @@ removexattr: yes truncate_range: yes fiemap: no +open: no Additionally, ->rmdir(), ->unlink() and ->rename() have ->i_mutex on victim. cross-directory ->rename() has (per-superblock) ->s_vfs_rename_sem. --- linux-3.2.0.orig/Documentation/filesystems/vfs.txt +++ linux-3.2.0/Documentation/filesystems/vfs.txt @@ -364,6 +364,8 @@ ssize_t (*listxattr) (struct dentry *, char *, size_t); int (*removexattr) (struct dentry *, const char *); void (*truncate_range)(struct inode *, loff_t, loff_t); + struct file *(*open) (struct dentry *, struct file *, + const struct cred *); }; Again, all methods are called without any locks being held, unless @@ -475,6 +477,12 @@ truncate_range: a method provided by the underlying filesystem to truncate a range of blocks , i.e. punch a hole somewhere in a file. + open: this is an alternative to f_op->open(), the difference is that this + method may return any open file, not necessarily originating from the + same filesystem as the one i_op->open() was called on. It may be useful + for stacking filesystems which want to allow native I/O directly on + underlying files. + The Address Space Object ======================== --- linux-3.2.0.orig/Documentation/filesystems/overlayfs.txt +++ linux-3.2.0/Documentation/filesystems/overlayfs.txt @@ -0,0 +1,199 @@ +Written by: Neil Brown + +Overlay Filesystem +================== + +This document describes a prototype for a new approach to providing +overlay-filesystem functionality in Linux (sometimes referred to as +union-filesystems). An overlay-filesystem tries to present a +filesystem which is the result over overlaying one filesystem on top +of the other. + +The result will inevitably fail to look exactly like a normal +filesystem for various technical reasons. The expectation is that +many use cases will be able to ignore these differences. + +This approach is 'hybrid' because the objects that appear in the +filesystem do not all appear to belong to that filesystem. In many +cases an object accessed in the union will be indistinguishable +from accessing the corresponding object from the original filesystem. +This is most obvious from the 'st_dev' field returned by stat(2). + +While directories will report an st_dev from the overlay-filesystem, +all non-directory objects will report an st_dev from the lower or +upper filesystem that is providing the object. Similarly st_ino will +only be unique when combined with st_dev, and both of these can change +over the lifetime of a non-directory object. Many applications and +tools ignore these values and will not be affected. + +Upper and Lower +--------------- + +An overlay filesystem combines two filesystems - an 'upper' filesystem +and a 'lower' filesystem. When a name exists in both filesystems, the +object in the 'upper' filesystem is visible while the object in the +'lower' filesystem is either hidden or, in the case of directories, +merged with the 'upper' object. + +It would be more correct to refer to an upper and lower 'directory +tree' rather than 'filesystem' as it is quite possible for both +directory trees to be in the same filesystem and there is no +requirement that the root of a filesystem be given for either upper or +lower. + +The lower filesystem can be any filesystem supported by Linux and does +not need to be writable. The lower filesystem can even be another +overlayfs. The upper filesystem will normally be writable and if it +is it must support the creation of trusted.* extended attributes, and +must provide valid d_type in readdir responses, at least for symbolic +links - so NFS is not suitable. + +A read-only overlay of two read-only filesystems may use any +filesystem type. + +Directories +----------- + +Overlaying mainly involved directories. If a given name appears in both +upper and lower filesystems and refers to a non-directory in either, +then the lower object is hidden - the name refers only to the upper +object. + +Where both upper and lower objects are directories, a merged directory +is formed. + +At mount time, the two directories given as mount options are combined +into a merged directory: + + mount -t overlayfs overlayfs -olowerdir=/lower,upperdir=/upper /overlay + +Then whenever a lookup is requested in such a merged directory, the +lookup is performed in each actual directory and the combined result +is cached in the dentry belonging to the overlay filesystem. If both +actual lookups find directories, both are stored and a merged +directory is created, otherwise only one is stored: the upper if it +exists, else the lower. + +Only the lists of names from directories are merged. Other content +such as metadata and extended attributes are reported for the upper +directory only. These attributes of the lower directory are hidden. + +whiteouts and opaque directories +-------------------------------- + +In order to support rm and rmdir without changing the lower +filesystem, an overlay filesystem needs to record in the upper filesystem +that files have been removed. This is done using whiteouts and opaque +directories (non-directories are always opaque). + +The overlay filesystem uses extended attributes with a +"trusted.overlay." prefix to record these details. + +A whiteout is created as a symbolic link with target +"(overlay-whiteout)" and with xattr "trusted.overlay.whiteout" set to "y". +When a whiteout is found in the upper level of a merged directory, any +matching name in the lower level is ignored, and the whiteout itself +is also hidden. + +A directory is made opaque by setting the xattr "trusted.overlay.opaque" +to "y". Where the upper filesystem contains an opaque directory, any +directory in the lower filesystem with the same name is ignored. + +readdir +------- + +When a 'readdir' request is made on a merged directory, the upper and +lower directories are each read and the name lists merged in the +obvious way (upper is read first, then lower - entries that already +exist are not re-added). This merged name list is cached in the +'struct file' and so remains as long as the file is kept open. If the +directory is opened and read by two processes at the same time, they +will each have separate caches. A seekdir to the start of the +directory (offset 0) followed by a readdir will cause the cache to be +discarded and rebuilt. + +This means that changes to the merged directory do not appear while a +directory is being read. This is unlikely to be noticed by many +programs. + +seek offsets are assigned sequentially when the directories are read. +Thus if + - read part of a directory + - remember an offset, and close the directory + - re-open the directory some time later + - seek to the remembered offset + +there may be little correlation between the old and new locations in +the list of filenames, particularly if anything has changed in the +directory. + +Readdir on directories that are not merged is simply handled by the +underlying directory (upper or lower). + + +Non-directories +--------------- + +Objects that are not directories (files, symlinks, device-special +files etc.) are presented either from the upper or lower filesystem as +appropriate. When a file in the lower filesystem is accessed in a way +the requires write-access, such as opening for write access, changing +some metadata etc., the file is first copied from the lower filesystem +to the upper filesystem (copy_up). Note that creating a hard-link +also requires copy_up, though of course creation of a symlink does +not. + +The copy_up may turn out to be unnecessary, for example if the file is +opened for read-write but the data is not modified. + +The copy_up process first makes sure that the containing directory +exists in the upper filesystem - creating it and any parents as +necessary. It then creates the object with the same metadata (owner, +mode, mtime, symlink-target etc.) and then if the object is a file, the +data is copied from the lower to the upper filesystem. Finally any +extended attributes are copied up. + +Once the copy_up is complete, the overlay filesystem simply +provides direct access to the newly created file in the upper +filesystem - future operations on the file are barely noticed by the +overlay filesystem (though an operation on the name of the file such as +rename or unlink will of course be noticed and handled). + + +Non-standard behavior +--------------------- + +The copy_up operation essentially creates a new, identical file and +moves it over to the old name. The new file may be on a different +filesystem, so both st_dev and st_ino of the file may change. + +Any open files referring to this inode will access the old data and +metadata. Similarly any file locks obtained before copy_up will not +apply to the copied up file. + +On a file is opened with O_RDONLY fchmod(2), fchown(2), futimesat(2) +and fsetxattr(2) will fail with EROFS. + +If a file with multiple hard links is copied up, then this will +"break" the link. Changes will not be propagated to other names +referring to the same inode. + +Symlinks in /proc/PID/ and /proc/PID/fd which point to a non-directory +object in overlayfs will not contain vaid absolute paths, only +relative paths leading up to the filesystem's root. This will be +fixed in the future. + +Some operations are not atomic, for example a crash during copy_up or +rename will leave the filesystem in an inconsitent state. This will +be addressed in the future. + +Changes to underlying filesystems +--------------------------------- + +Offline changes, when the overlay is not mounted, are allowed to either +the upper or the lower trees. + +Changes to the underlying filesystems while part of a mounted overlay +filesystem are not allowed. If the underlying filesystem is changed, +the behavior of the overlay is undefined, though it will not result in +a crash or deadlock. --- linux-3.2.0.orig/Documentation/filesystems/proc.txt +++ linux-3.2.0/Documentation/filesystems/proc.txt @@ -41,6 +41,8 @@ 3.5 /proc//mountinfo - Information about mounts 3.6 /proc//comm & /proc//task//comm + 4 Configuring procfs + 4.1 Mount options ------------------------------------------------------------------------------ Preface @@ -1542,3 +1544,40 @@ is limited in size compared to the cmdline value, so writing anything longer then the kernel's TASK_COMM_LEN (currently 16 chars) will result in a truncated comm value. + + +------------------------------------------------------------------------------ +Configuring procfs +------------------------------------------------------------------------------ + +4.1 Mount options +--------------------- + +The following mount options are supported: + + hidepid= Set /proc// access mode. + gid= Set the group authorized to learn processes information. + +hidepid=0 means classic mode - everybody may access all /proc// directories +(default). + +hidepid=1 means users may not access any /proc// directories but their +own. Sensitive files like cmdline, sched*, status are now protected against +other users. This makes it impossible to learn whether any user runs +specific program (given the program doesn't reveal itself by its behaviour). +As an additional bonus, as /proc//cmdline is unaccessible for other users, +poorly written programs passing sensitive information via program arguments are +now protected against local eavesdroppers. + +hidepid=2 means hidepid=1 plus all /proc// will be fully invisible to other +users. It doesn't mean that it hides a fact whether a process with a specific +pid value exists (it can be learned by other means, e.g. by "kill -0 $PID"), +but it hides process' uid and gid, which may be learned by stat()'ing +/proc// otherwise. It greatly complicates an intruder's task of gathering +information about running processes, whether some daemon runs with elevated +privileges, whether other user runs some sensitive program, whether other users +run any program at all, etc. + +gid= defines a group authorized to learn processes information otherwise +prohibited by hidepid=. If you use some daemon like identd which needs to learn +information about processes information, just add identd to this group. --- linux-3.2.0.orig/Documentation/devicetree/bindings/net/calxeda-xgmac.txt +++ linux-3.2.0/Documentation/devicetree/bindings/net/calxeda-xgmac.txt @@ -0,0 +1,15 @@ +* Calxeda Highbank 10Gb XGMAC Ethernet + +Required properties: +- compatible : Should be "calxeda,hb-xgmac" +- reg : Address and length of the register set for the device +- interrupts : Should contain 3 xgmac interrupts. The 1st is main interrupt. + The 2nd is pwr mgt interrupt. The 3rd is low power state interrupt. + +Example: + +ethernet@fff50000 { + compatible = "calxeda,hb-xgmac"; + reg = <0xfff50000 0x1000>; + interrupts = <0 77 4 0 78 4 0 79 4>; +}; --- linux-3.2.0.orig/Documentation/i2c/busses/i2c-i801 +++ linux-3.2.0/Documentation/i2c/busses/i2c-i801 @@ -20,6 +20,7 @@ * Intel Patsburg (PCH) * Intel DH89xxCC (PCH) * Intel Panther Point (PCH) + * Intel Lynx Point (PCH) Datasheets: Publicly available at the Intel website On Intel Patsburg and later chipsets, both the normal host SMBus controller --- linux-3.2.0.orig/Documentation/hwmon/zl6100 +++ linux-3.2.0/Documentation/hwmon/zl6100 @@ -73,14 +73,12 @@ delay ----- -Some Intersil/Zilker Labs DC-DC controllers require a minimum interval between -I2C bus accesses. According to Intersil, the minimum interval is 2 ms, though -1 ms appears to be sufficient and has not caused any problems in testing. -The problem is known to affect ZL6100, ZL2105, and ZL2008. It is known not to -affect ZL2004 and ZL6105. The driver automatically sets the interval to 1 ms -except for ZL2004 and ZL6105. To enable manual override, the driver provides a -writeable module parameter, 'delay', which can be used to set the interval to -a value between 0 and 65,535 microseconds. +Intersil/Zilker Labs DC-DC controllers require a minimum interval between I2C +bus accesses. According to Intersil, the minimum interval is 2 ms, though 1 ms +appears to be sufficient and has not caused any problems in testing. The problem +is known to affect all currently supported chips. For manual override, the +driver provides a writeable module parameter, 'delay', which can be used to set +the interval to a value between 0 and 65,535 microseconds. Sysfs entries --- linux-3.2.0.orig/Documentation/hwmon/w83627ehf +++ linux-3.2.0/Documentation/hwmon/w83627ehf @@ -50,7 +50,7 @@ (NCT6775F), and NCT6776F super I/O chips. We will refer to them collectively as Winbond chips. -The chips implement 2 to 4 temperature sensors (9 for NCT6775F and NCT6776F), +The chips implement 3 to 4 temperature sensors (9 for NCT6775F and NCT6776F), 2 to 5 fan rotation speed sensors, 8 to 10 analog voltage sensors, one VID (except for 627UHG), alarms with beep warnings (control unimplemented), and some automatic fan regulation strategies (plus manual fan control mode). --- linux-3.2.0.orig/Documentation/hwmon/jc42 +++ linux-3.2.0/Documentation/hwmon/jc42 @@ -7,21 +7,29 @@ Addresses scanned: I2C 0x18 - 0x1f Datasheets: http://www.analog.com/static/imported-files/data_sheets/ADT7408.pdf - * IDT TSE2002B3, TS3000B3 - Prefix: 'tse2002b3', 'ts3000b3' + * Atmel AT30TS00 + Prefix: 'at30ts00' Addresses scanned: I2C 0x18 - 0x1f Datasheets: - http://www.idt.com/products/getdoc.cfm?docid=18715691 - http://www.idt.com/products/getdoc.cfm?docid=18715692 + http://www.atmel.com/Images/doc8585.pdf + * IDT TSE2002B3, TSE2002GB2, TS3000B3, TS3000GB2 + Prefix: 'tse2002', 'ts3000' + Addresses scanned: I2C 0x18 - 0x1f + Datasheets: + http://www.idt.com/sites/default/files/documents/IDT_TSE2002B3C_DST_20100512_120303152056.pdf + http://www.idt.com/sites/default/files/documents/IDT_TSE2002GB2A1_DST_20111107_120303145914.pdf + http://www.idt.com/sites/default/files/documents/IDT_TS3000B3A_DST_20101129_120303152013.pdf + http://www.idt.com/sites/default/files/documents/IDT_TS3000GB2A1_DST_20111104_120303151012.pdf * Maxim MAX6604 Prefix: 'max6604' Addresses scanned: I2C 0x18 - 0x1f Datasheets: http://datasheets.maxim-ic.com/en/ds/MAX6604.pdf - * Microchip MCP9805, MCP98242, MCP98243, MCP9843 - Prefixes: 'mcp9805', 'mcp98242', 'mcp98243', 'mcp9843' + * Microchip MCP9804, MCP9805, MCP98242, MCP98243, MCP9843 + Prefixes: 'mcp9804', 'mcp9805', 'mcp98242', 'mcp98243', 'mcp9843' Addresses scanned: I2C 0x18 - 0x1f Datasheets: + http://ww1.microchip.com/downloads/en/DeviceDoc/22203C.pdf http://ww1.microchip.com/downloads/en/DeviceDoc/21977b.pdf http://ww1.microchip.com/downloads/en/DeviceDoc/21996a.pdf http://ww1.microchip.com/downloads/en/DeviceDoc/22153c.pdf @@ -48,6 +56,12 @@ Datasheets: http://www.st.com/stonline/products/literature/ds/13447/stts424.pdf http://www.st.com/stonline/products/literature/ds/13448/stts424e02.pdf + * ST Microelectronics STTS2002, STTS3000 + Prefix: 'stts2002', 'stts3000' + Addresses scanned: I2C 0x18 - 0x1f + Datasheets: + http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00225278.pdf + http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATA_BRIEF/CD00270920.pdf * JEDEC JC 42.4 compliant temperature sensor chips Prefix: 'jc42' Addresses scanned: I2C 0x18 - 0x1f --- linux-3.2.0.orig/Documentation/networking/ip-sysctl.txt +++ linux-3.2.0/Documentation/networking/ip-sysctl.txt @@ -137,7 +137,7 @@ (if tcp_adv_win_scale > 0) or bytes-bytes/2^(-tcp_adv_win_scale), if it is <= 0. Possible values are [-31, 31], inclusive. - Default: 2 + Default: 1 tcp_allowed_congestion_control - STRING Show/set the congestion control choices available to non-privileged @@ -397,7 +397,7 @@ net.core.rmem_max. Calling setsockopt() with SO_RCVBUF disables automatic tuning of that socket's receive buffer size, in which case this value is ignored. - Default: between 87380B and 4MB, depending on RAM size. + Default: between 87380B and 6MB, depending on RAM size. tcp_sack - BOOLEAN Enable select acknowledgments (SACKS). --- linux-3.2.0.orig/Documentation/development-process/5.Posting +++ linux-3.2.0/Documentation/development-process/5.Posting @@ -271,10 +271,10 @@ the linux-kernel list. - If you are fixing a bug, think about whether the fix should go into the - next stable update. If so, stable@kernel.org should get a copy of the - patch. Also add a "Cc: stable@kernel.org" to the tags within the patch - itself; that will cause the stable team to get a notification when your - fix goes into the mainline. + next stable update. If so, stable@vger.kernel.org should get a copy of + the patch. Also add a "Cc: stable@vger.kernel.org" to the tags within + the patch itself; that will cause the stable team to get a notification + when your fix goes into the mainline. When selecting recipients for a patch, it is good to have an idea of who you think will eventually accept the patch and get it merged. While it --- linux-3.2.0.orig/Documentation/EDID/1280x1024.S +++ linux-3.2.0/Documentation/EDID/1280x1024.S @@ -0,0 +1,44 @@ +/* + 1280x1024.S: EDID data set for standard 1280x1024 60 Hz monitor + + Copyright (C) 2011 Carsten Emde + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + +/* EDID */ +#define VERSION 1 +#define REVISION 3 + +/* Display */ +#define CLOCK 108000 /* kHz */ +#define XPIX 1280 +#define YPIX 1024 +#define XY_RATIO XY_RATIO_5_4 +#define XBLANK 408 +#define YBLANK 42 +#define XOFFSET 48 +#define XPULSE 112 +#define YOFFSET (63+1) +#define YPULSE (63+3) +#define DPI 72 +#define VFREQ 60 /* Hz */ +#define TIMING_NAME "Linux SXGA" +#define ESTABLISHED_TIMINGS_BITS 0x00 /* none */ +#define HSYNC_POL 1 +#define VSYNC_POL 1 +#define CRC 0xa0 + +#include "edid.S" --- linux-3.2.0.orig/Documentation/EDID/hex +++ linux-3.2.0/Documentation/EDID/hex @@ -0,0 +1 @@ +"\t" 8/1 "0x%02x, " "\n" --- linux-3.2.0.orig/Documentation/EDID/1680x1050.S +++ linux-3.2.0/Documentation/EDID/1680x1050.S @@ -0,0 +1,44 @@ +/* + 1680x1050.S: EDID data set for standard 1680x1050 60 Hz monitor + + Copyright (C) 2012 Carsten Emde + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + +/* EDID */ +#define VERSION 1 +#define REVISION 3 + +/* Display */ +#define CLOCK 146250 /* kHz */ +#define XPIX 1680 +#define YPIX 1050 +#define XY_RATIO XY_RATIO_16_10 +#define XBLANK 560 +#define YBLANK 39 +#define XOFFSET 104 +#define XPULSE 176 +#define YOFFSET (63+3) +#define YPULSE (63+6) +#define DPI 96 +#define VFREQ 60 /* Hz */ +#define TIMING_NAME "Linux WSXGA" +#define ESTABLISHED_TIMINGS_BITS 0x00 /* none */ +#define HSYNC_POL 1 +#define VSYNC_POL 1 +#define CRC 0x26 + +#include "edid.S" --- linux-3.2.0.orig/Documentation/EDID/Makefile +++ linux-3.2.0/Documentation/EDID/Makefile @@ -0,0 +1,26 @@ + +SOURCES := $(wildcard [0-9]*x[0-9]*.S) + +BIN := $(patsubst %.S, %.bin, $(SOURCES)) + +IHEX := $(patsubst %.S, %.bin.ihex, $(SOURCES)) + +CODE := $(patsubst %.S, %.c, $(SOURCES)) + +all: $(BIN) $(IHEX) $(CODE) + +clean: + @rm -f *.o *.bin.ihex *.bin *.c + +%.o: %.S + @cc -c $^ + +%.bin: %.o + @objcopy -Obinary $^ $@ + +%.bin.ihex: %.o + @objcopy -Oihex $^ $@ + @dos2unix $@ 2>/dev/null + +%.c: %.bin + @echo "{" >$@; hexdump -f hex $^ >>$@; echo "};" >>$@ --- linux-3.2.0.orig/Documentation/EDID/HOWTO.txt +++ linux-3.2.0/Documentation/EDID/HOWTO.txt @@ -0,0 +1,39 @@ +In the good old days when graphics parameters were configured explicitly +in a file called xorg.conf, even broken hardware could be managed. + +Today, with the advent of Kernel Mode Setting, a graphics board is +either correctly working because all components follow the standards - +or the computer is unusable, because the screen remains dark after +booting or it displays the wrong area. Cases when this happens are: +- The graphics board does not recognize the monitor. +- The graphics board is unable to detect any EDID data. +- The graphics board incorrectly forwards EDID data to the driver. +- The monitor sends no or bogus EDID data. +- A KVM sends its own EDID data instead of querying the connected monitor. +Adding the kernel parameter "nomodeset" helps in most cases, but causes +restrictions later on. + +As a remedy for such situations, the kernel configuration item +CONFIG_DRM_LOAD_EDID_FIRMWARE was introduced. It allows to provide an +individually prepared or corrected EDID data set in the /lib/firmware +directory from where it is loaded via the firmware interface. The code +(see drivers/gpu/drm/drm_edid_load.c) contains built-in data sets for +commonly used screen resolutions (1024x768, 1280x1024, 1680x1050, +1920x1080) as binary blobs, but the kernel source tree does not contain +code to create these data. In order to elucidate the origin of the +built-in binary EDID blobs and to facilitate the creation of individual +data for a specific misbehaving monitor, commented sources and a +Makefile environment are given here. + +To create binary EDID and C source code files from the existing data +material, simply type "make". + +If you want to create your own EDID file, copy the file 1024x768.S and +replace the settings with your own data. The CRC value in the last line + #define CRC 0x55 +is a bit tricky. After a first version of the binary data set is +created, it must be be checked with the "edid-decode" utility which will +most probably complain about a wrong CRC. Fortunately, the utility also +displays the correct CRC which must then be inserted into the source +file. After the make procedure is repeated, the EDID data set is ready +to be used. --- linux-3.2.0.orig/Documentation/EDID/edid.S +++ linux-3.2.0/Documentation/EDID/edid.S @@ -0,0 +1,261 @@ +/* + edid.S: EDID data template + + Copyright (C) 2012 Carsten Emde + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + + +/* Manufacturer */ +#define MFG_LNX1 'L' +#define MFG_LNX2 'N' +#define MFG_LNX3 'X' +#define SERIAL 0 +#define YEAR 2012 +#define WEEK 5 + +/* EDID 1.3 standard definitions */ +#define XY_RATIO_16_10 0b00 +#define XY_RATIO_4_3 0b01 +#define XY_RATIO_5_4 0b10 +#define XY_RATIO_16_9 0b11 + +#define mfgname2id(v1,v2,v3) \ + ((((v1-'@')&0x1f)<<10)+(((v2-'@')&0x1f)<<5)+((v3-'@')&0x1f)) +#define swap16(v1) ((v1>>8)+((v1&0xff)<<8)) +#define msbs2(v1,v2) ((((v1>>8)&0x0f)<<4)+((v2>>8)&0x0f)) +#define msbs4(v1,v2,v3,v4) \ + (((v1&0x03)>>2)+((v2&0x03)>>4)+((v3&0x03)>>6)+((v4&0x03)>>8)) +#define pixdpi2mm(pix,dpi) ((pix*25)/dpi) +#define xsize pixdpi2mm(XPIX,DPI) +#define ysize pixdpi2mm(YPIX,DPI) + + .data + +/* Fixed header pattern */ +header: .byte 0x00,0xff,0xff,0xff,0xff,0xff,0xff,0x00 + +mfg_id: .word swap16(mfgname2id(MFG_LNX1, MFG_LNX2, MFG_LNX3)) + +prod_code: .word 0 + +/* Serial number. 32 bits, little endian. */ +serial_number: .long SERIAL + +/* Week of manufacture */ +week: .byte WEEK + +/* Year of manufacture, less 1990. (1990-2245) + If week=255, it is the model year instead */ +year: .byte YEAR-1990 + +version: .byte VERSION /* EDID version, usually 1 (for 1.3) */ +revision: .byte REVISION /* EDID revision, usually 3 (for 1.3) */ + +/* If Bit 7=1 Digital input. If set, the following bit definitions apply: + Bits 6-1 Reserved, must be 0 + Bit 0 Signal is compatible with VESA DFP 1.x TMDS CRGB, + 1 pixel per clock, up to 8 bits per color, MSB aligned, + If Bit 7=0 Analog input. If clear, the following bit definitions apply: + Bits 6-5 Video white and sync levels, relative to blank + 00=+0.7/-0.3 V; 01=+0.714/-0.286 V; + 10=+1.0/-0.4 V; 11=+0.7/0 V + Bit 4 Blank-to-black setup (pedestal) expected + Bit 3 Separate sync supported + Bit 2 Composite sync (on HSync) supported + Bit 1 Sync on green supported + Bit 0 VSync pulse must be serrated when somposite or + sync-on-green is used. */ +video_parms: .byte 0x6d + +/* Maximum horizontal image size, in centimetres + (max 292 cm/115 in at 16:9 aspect ratio) */ +max_hor_size: .byte xsize/10 + +/* Maximum vertical image size, in centimetres. + If either byte is 0, undefined (e.g. projector) */ +max_vert_size: .byte ysize/10 + +/* Display gamma, minus 1, times 100 (range 1.00-3.5 */ +gamma: .byte 120 + +/* Bit 7 DPMS standby supported + Bit 6 DPMS suspend supported + Bit 5 DPMS active-off supported + Bits 4-3 Display type: 00=monochrome; 01=RGB colour; + 10=non-RGB multicolour; 11=undefined + Bit 2 Standard sRGB colour space. Bytes 25-34 must contain + sRGB standard values. + Bit 1 Preferred timing mode specified in descriptor block 1. + Bit 0 GTF supported with default parameter values. */ +dsp_features: .byte 0xea + +/* Chromaticity coordinates. */ +/* Red and green least-significant bits + Bits 7-6 Red x value least-significant 2 bits + Bits 5-4 Red y value least-significant 2 bits + Bits 3-2 Green x value lst-significant 2 bits + Bits 1-0 Green y value least-significant 2 bits */ +red_green_lsb: .byte 0x5e + +/* Blue and white least-significant 2 bits */ +blue_white_lsb: .byte 0xc0 + +/* Red x value most significant 8 bits. + 0-255 encodes 0-0.996 (255/256); 0-0.999 (1023/1024) with lsbits */ +red_x_msb: .byte 0xa4 + +/* Red y value most significant 8 bits */ +red_y_msb: .byte 0x59 + +/* Green x and y value most significant 8 bits */ +green_x_y_msb: .byte 0x4a,0x98 + +/* Blue x and y value most significant 8 bits */ +blue_x_y_msb: .byte 0x25,0x20 + +/* Default white point x and y value most significant 8 bits */ +white_x_y_msb: .byte 0x50,0x54 + +/* Established timings */ +/* Bit 7 720x400 @ 70 Hz + Bit 6 720x400 @ 88 Hz + Bit 5 640x480 @ 60 Hz + Bit 4 640x480 @ 67 Hz + Bit 3 640x480 @ 72 Hz + Bit 2 640x480 @ 75 Hz + Bit 1 800x600 @ 56 Hz + Bit 0 800x600 @ 60 Hz */ +estbl_timing1: .byte 0x00 + +/* Bit 7 800x600 @ 72 Hz + Bit 6 800x600 @ 75 Hz + Bit 5 832x624 @ 75 Hz + Bit 4 1024x768 @ 87 Hz, interlaced (1024x768) + Bit 3 1024x768 @ 60 Hz + Bit 2 1024x768 @ 72 Hz + Bit 1 1024x768 @ 75 Hz + Bit 0 1280x1024 @ 75 Hz */ +estbl_timing2: .byte ESTABLISHED_TIMINGS_BITS + +/* Bit 7 1152x870 @ 75 Hz (Apple Macintosh II) + Bits 6-0 Other manufacturer-specific display mod */ +estbl_timing3: .byte 0x00 + +/* Standard timing */ +/* X resolution, less 31, divided by 8 (256-2288 pixels) */ +std_xres: .byte (XPIX/8)-31 +/* Y resolution, X:Y pixel ratio + Bits 7-6 X:Y pixel ratio: 00=16:10; 01=4:3; 10=5:4; 11=16:9. + Bits 5-0 Vertical frequency, less 60 (60-123 Hz) */ +std_vres: .byte (XY_RATIO<<6)+VFREQ-60 + .fill 7,2,0x0101 /* Unused */ + +descriptor1: +/* Pixel clock in 10 kHz units. (0.-655.35 MHz, little-endian) */ +clock: .word CLOCK/10 + +/* Horizontal active pixels 8 lsbits (0-4095) */ +x_act_lsb: .byte XPIX&0xff +/* Horizontal blanking pixels 8 lsbits (0-4095) + End of active to start of next active. */ +x_blk_lsb: .byte XBLANK&0xff +/* Bits 7-4 Horizontal active pixels 4 msbits + Bits 3-0 Horizontal blanking pixels 4 msbits */ +x_msbs: .byte msbs2(XPIX,XBLANK) + +/* Vertical active lines 8 lsbits (0-4095) */ +y_act_lsb: .byte YPIX&0xff +/* Vertical blanking lines 8 lsbits (0-4095) */ +y_blk_lsb: .byte YBLANK&0xff +/* Bits 7-4 Vertical active lines 4 msbits + Bits 3-0 Vertical blanking lines 4 msbits */ +y_msbs: .byte msbs2(YPIX,YBLANK) + +/* Horizontal sync offset pixels 8 lsbits (0-1023) From blanking start */ +x_snc_off_lsb: .byte XOFFSET&0xff +/* Horizontal sync pulse width pixels 8 lsbits (0-1023) */ +x_snc_pls_lsb: .byte XPULSE&0xff +/* Bits 7-4 Vertical sync offset lines 4 lsbits -63) + Bits 3-0 Vertical sync pulse width lines 4 lsbits -63) */ +y_snc_lsb: .byte ((YOFFSET-63)<<4)+(YPULSE-63) +/* Bits 7-6 Horizontal sync offset pixels 2 msbits + Bits 5-4 Horizontal sync pulse width pixels 2 msbits + Bits 3-2 Vertical sync offset lines 2 msbits + Bits 1-0 Vertical sync pulse width lines 2 msbits */ +xy_snc_msbs: .byte msbs4(XOFFSET,XPULSE,YOFFSET,YPULSE) + +/* Horizontal display size, mm, 8 lsbits (0-4095 mm, 161 in) */ +x_dsp_size: .byte xsize&0xff + +/* Vertical display size, mm, 8 lsbits (0-4095 mm, 161 in) */ +y_dsp_size: .byte ysize&0xff + +/* Bits 7-4 Horizontal display size, mm, 4 msbits + Bits 3-0 Vertical display size, mm, 4 msbits */ +dsp_size_mbsb: .byte msbs2(xsize,ysize) + +/* Horizontal border pixels (each side; total is twice this) */ +x_border: .byte 0 +/* Vertical border lines (each side; total is twice this) */ +y_border: .byte 0 + +/* Bit 7 Interlaced + Bits 6-5 Stereo mode: 00=No stereo; other values depend on bit 0: + Bit 0=0: 01=Field sequential, sync=1 during right; 10=similar, + sync=1 during left; 11=4-way interleaved stereo + Bit 0=1 2-way interleaved stereo: 01=Right image on even lines; + 10=Left image on even lines; 11=side-by-side + Bits 4-3 Sync type: 00=Analog composite; 01=Bipolar analog composite; + 10=Digital composite (on HSync); 11=Digital separate + Bit 2 If digital separate: Vertical sync polarity (1=positive) + Other types: VSync serrated (HSync during VSync) + Bit 1 If analog sync: Sync on all 3 RGB lines (else green only) + Digital: HSync polarity (1=positive) + Bit 0 2-way line-interleaved stereo, if bits 4-3 are not 00. */ +features: .byte 0x18+(VSYNC_POL<<2)+(HSYNC_POL<<1) + +descriptor2: .byte 0,0 /* Not a detailed timing descriptor */ + .byte 0 /* Must be zero */ + .byte 0xff /* Descriptor is monitor serial number (text) */ + .byte 0 /* Must be zero */ +start1: .ascii "Linux #0" +end1: .byte 0x0a /* End marker */ + .fill 12-(end1-start1), 1, 0x20 /* Padded spaces */ +descriptor3: .byte 0,0 /* Not a detailed timing descriptor */ + .byte 0 /* Must be zero */ + .byte 0xfd /* Descriptor is monitor range limits */ + .byte 0 /* Must be zero */ +start2: .byte VFREQ-1 /* Minimum vertical field rate (1-255 Hz) */ + .byte VFREQ+1 /* Maximum vertical field rate (1-255 Hz) */ + .byte (CLOCK/(XPIX+XBLANK))-1 /* Minimum horizontal line rate + (1-255 kHz) */ + .byte (CLOCK/(XPIX+XBLANK))+1 /* Maximum horizontal line rate + (1-255 kHz) */ + .byte (CLOCK/10000)+1 /* Maximum pixel clock rate, rounded up + to 10 MHz multiple (10-2550 MHz) */ + .byte 0 /* No extended timing information type */ +end2: .byte 0x0a /* End marker */ + .fill 12-(end2-start2), 1, 0x20 /* Padded spaces */ +descriptor4: .byte 0,0 /* Not a detailed timing descriptor */ + .byte 0 /* Must be zero */ + .byte 0xfc /* Descriptor is text */ + .byte 0 /* Must be zero */ +start3: .ascii TIMING_NAME +end3: .byte 0x0a /* End marker */ + .fill 12-(end3-start3), 1, 0x20 /* Padded spaces */ +extensions: .byte 0 /* Number of extensions to follow */ +checksum: .byte CRC /* Sum of all bytes must be 0 */ --- linux-3.2.0.orig/Documentation/EDID/1024x768.S +++ linux-3.2.0/Documentation/EDID/1024x768.S @@ -0,0 +1,44 @@ +/* + 1024x768.S: EDID data set for standard 1024x768 60 Hz monitor + + Copyright (C) 2011 Carsten Emde + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + +/* EDID */ +#define VERSION 1 +#define REVISION 3 + +/* Display */ +#define CLOCK 65000 /* kHz */ +#define XPIX 1024 +#define YPIX 768 +#define XY_RATIO XY_RATIO_4_3 +#define XBLANK 320 +#define YBLANK 38 +#define XOFFSET 8 +#define XPULSE 144 +#define YOFFSET (63+3) +#define YPULSE (63+6) +#define DPI 72 +#define VFREQ 60 /* Hz */ +#define TIMING_NAME "Linux XGA" +#define ESTABLISHED_TIMINGS_BITS 0x08 /* Bit 3 -> 1024x768 @60 Hz */ +#define HSYNC_POL 0 +#define VSYNC_POL 0 +#define CRC 0x55 + +#include "edid.S" --- linux-3.2.0.orig/Documentation/EDID/1920x1080.S +++ linux-3.2.0/Documentation/EDID/1920x1080.S @@ -0,0 +1,44 @@ +/* + 1920x1080.S: EDID data set for standard 1920x1080 60 Hz monitor + + Copyright (C) 2012 Carsten Emde + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 + of the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + +/* EDID */ +#define VERSION 1 +#define REVISION 3 + +/* Display */ +#define CLOCK 148500 /* kHz */ +#define XPIX 1920 +#define YPIX 1080 +#define XY_RATIO XY_RATIO_16_9 +#define XBLANK 280 +#define YBLANK 45 +#define XOFFSET 88 +#define XPULSE 44 +#define YOFFSET (63+4) +#define YPULSE (63+5) +#define DPI 96 +#define VFREQ 60 /* Hz */ +#define TIMING_NAME "Linux FHD" +#define ESTABLISHED_TIMINGS_BITS 0x00 /* none */ +#define HSYNC_POL 1 +#define VSYNC_POL 1 +#define CRC 0x05 + +#include "edid.S" --- linux-3.2.0.orig/Documentation/security/00-INDEX +++ linux-3.2.0/Documentation/security/00-INDEX @@ -4,6 +4,8 @@ - how to get started with the SELinux security enhancement. Smack.txt - documentation on the Smack Linux Security Module. +Yama.txt + - documentation on the Yama Linux Security Module. apparmor.txt - documentation on the AppArmor security extension. credentials.txt --- linux-3.2.0.orig/Documentation/security/Yama.txt +++ linux-3.2.0/Documentation/security/Yama.txt @@ -0,0 +1,108 @@ +Yama is a Linux Security Module that collects a number of system-wide DAC +security protections that are not handled by the core kernel itself. To +select it at boot time, specify "security=yama" (though this will disable +any other LSM). + +Yama is controlled through sysctl in /proc/sys/kernel/yama: + +- protected_sticky_symlinks +- protected_nonaccess_hardlinks +- ptrace_scope + +============================================================== + +protected_sticky_symlinks: + +A long-standing class of security issues is the symlink-based +time-of-check-time-of-use race, most commonly seen in world-writable +directories like /tmp. The common method of exploitation of this flaw +is to cross privilege boundaries when following a given symlink (i.e. a +root process follows a symlink belonging to another user). For a likely +incomplete list of hundreds of examples across the years, please see: +http://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=/tmp + +When set to "0", symlink following behavior is unrestricted. + +When set to "1" symlinks are permitted to be followed only when outside +a sticky world-writable directory, or when the uid of the symlink and +follower match, or when the directory owner matches the symlink's owner. + +This protection is based on the restrictions in Openwall and grsecurity. + +============================================================== + +protected_nonaccess_hardlinks: + +Hardlinks can be abused in a similar fashion to symlinks in sticky +world-writable directories, but their weakness is not limited to +just that scenario. For example, if /etc and /home are on the same +partition, a regular user can create a hardlink to /etc/shadow in their +home directory. While it retains the original owner and permissions, +it is possible for privileged programs that are otherwise symlink-safe +to mistakenly access the file through its hardlink. Additionally, a very +minor untraceable quota-bypassing local denial of service is possible by +an attacker exhausting disk space by filling a world-writable directory +with hardlinks. + +When set to "0", hardlink creation behavior is unrestricted. + +When set to "1", hardlinks cannot be created to files that a given user +would be unable to read and write originally, or are otherwise sensitive. + +This protection is based on the restrictions in Openwall and grsecurity. + +============================================================== + +ptrace_scope: + +As Linux grows in popularity, it will become a larger target for +malware. One particularly troubling weakness of the Linux process +interfaces is that a single user is able to examine the memory and +running state of any of their processes. For example, if one application +(e.g. Pidgin) was compromised, it would be possible for an attacker to +attach to other running processes (e.g. Firefox, SSH sessions, GPG agent, +etc) to extract additional credentials and continue to expand the scope +of their attack without resorting to user-assisted phishing. + +This is not a theoretical problem. SSH session hijacking +(http://www.storm.net.nz/projects/7) and arbitrary code injection +(http://c-skills.blogspot.com/2007/05/injectso.html) attacks already +exist and remain possible if ptrace is allowed to operate as before. +Since ptrace is not commonly used by non-developers and non-admins, system +builders should be allowed the option to disable this debugging system. + +For a solution, some applications use prctl(PR_SET_DUMPABLE, ...) to +specifically disallow such ptrace attachment (e.g. ssh-agent), but many +do not. A more general solution is to only allow ptrace directly from a +parent to a child process (i.e. direct "gdb EXE" and "strace EXE" still +work), or with CAP_SYS_PTRACE (i.e. "gdb --pid=PID", and "strace -p PID" +still work as root). + +For software that has defined application-specific relationships +between a debugging process and its inferior (crash handlers, etc), +prctl(PR_SET_PTRACER, pid, ...) can be used. An inferior can declare which +other process (and its descendents) are allowed to call PTRACE_ATTACH +against it. Only one such declared debugging process can exists for +each inferior at a time. For example, this is used by KDE, Chromium, and +Firefox's crash handlers, and by Wine for allowing only Wine processes +to ptrace each other. If a process wishes to entirely disable ptrace +restrictions, it can call prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY, ...) +so that any process (even those in external pid namespaces) may attach. + +The sysctl settings are: + +0 - classic ptrace permissions: a process can PTRACE_ATTACH to any other + process running under the same uid, as long as it is dumpable (i.e. + did not transition uids, start privileged, or have called + prctl(PR_SET_DUMPABLE...) already). + +1 - restricted ptrace: a process must have a predefined relationship + with the inferior it wants to call PTRACE_ATTACH on. By default, + this relationship is that of only its descendants when the above + classic criteria is also met. To change the relationship, an + inferior can call prctl(PR_SET_PTRACER, debugger, ...) to declare + an allowed debugger PID to call PTRACE_ATTACH on the inferior. + +The original children-only logic was based on the restrictions in grsecurity. + +============================================================== --- linux-3.2.0.orig/Documentation/usb/usbmon.txt +++ linux-3.2.0/Documentation/usb/usbmon.txt @@ -47,10 +47,11 @@ 2. Find which bus connects to the desired device -Run "cat /proc/bus/usb/devices", and find the T-line which corresponds to -the device. Usually you do it by looking for the vendor string. If you have -many similar devices, unplug one and compare two /proc/bus/usb/devices outputs. -The T-line will have a bus number. Example: +Run "cat /sys/kernel/debug/usb/devices", and find the T-line which corresponds +to the device. Usually you do it by looking for the vendor string. If you have +many similar devices, unplug one and compare the two +/sys/kernel/debug/usb/devices outputs. The T-line will have a bus number. +Example: T: Bus=03 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 2 Spd=12 MxCh= 0 D: Ver= 1.10 Cls=00(>ifc ) Sub=00 Prot=00 MxPS= 8 #Cfgs= 1 @@ -58,7 +59,10 @@ S: Manufacturer=ATEN S: Product=UC100KM V2.00 -Bus=03 means it's bus 3. +"Bus=03" means it's bus 3. Alternatively, you can look at the output from +"lsusb" and get the bus number from the appropriate line. Example: + +Bus 003 Device 002: ID 0557:2004 ATEN UC100KM V2.00 3. Start 'cat' --- linux-3.2.0.orig/lib/kobject_uevent.c +++ linux-3.2.0/lib/kobject_uevent.c @@ -29,16 +29,17 @@ u64 uevent_seqnum; char uevent_helper[UEVENT_HELPER_PATH_LEN] = CONFIG_UEVENT_HELPER_PATH; -static DEFINE_SPINLOCK(sequence_lock); #ifdef CONFIG_NET struct uevent_sock { struct list_head list; struct sock *sk; }; static LIST_HEAD(uevent_sock_list); -static DEFINE_MUTEX(uevent_sock_mutex); #endif +/* This lock protects uevent_seqnum and uevent_sock_list */ +static DEFINE_MUTEX(uevent_sock_mutex); + /* the strings here must match the enum in include/linux/kobject.h */ static const char *kobject_actions[] = { [KOBJ_ADD] = "add", @@ -136,7 +137,6 @@ struct kobject *top_kobj; struct kset *kset; const struct kset_uevent_ops *uevent_ops; - u64 seq; int i = 0; int retval = 0; #ifdef CONFIG_NET @@ -243,17 +243,16 @@ else if (action == KOBJ_REMOVE) kobj->state_remove_uevent_sent = 1; + mutex_lock(&uevent_sock_mutex); /* we will send an event, so request a new sequence number */ - spin_lock(&sequence_lock); - seq = ++uevent_seqnum; - spin_unlock(&sequence_lock); - retval = add_uevent_var(env, "SEQNUM=%llu", (unsigned long long)seq); - if (retval) + retval = add_uevent_var(env, "SEQNUM=%llu", (unsigned long long)++uevent_seqnum); + if (retval) { + mutex_unlock(&uevent_sock_mutex); goto exit; + } #if defined(CONFIG_NET) /* send netlink message */ - mutex_lock(&uevent_sock_mutex); list_for_each_entry(ue_sk, &uevent_sock_list, list) { struct sock *uevent_sock = ue_sk->sk; struct sk_buff *skb; @@ -287,8 +286,8 @@ } else retval = -ENOMEM; } - mutex_unlock(&uevent_sock_mutex); #endif + mutex_unlock(&uevent_sock_mutex); /* call uevent_helper, usually only enabled during early boot */ if (uevent_helper[0] && !kobj_usermode_filter(kobj)) { --- linux-3.2.0.orig/debian.master/control.stub.in +++ linux-3.2.0/debian.master/control.stub.in @@ -0,0 +1,93 @@ +Source: linux +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.8.4.0 +Build-Depends: debhelper (>= 5), cpio, module-init-tools, kernel-wedge (>= 2.24ubuntu1), makedumpfile [amd64 i386], device-tree-compiler [powerpc], libelf-dev, libnewt-dev, binutils-dev, rsync, libdw-dev, dpkg (>= 1.16.0~ubuntu4), util-linux +Build-Depends-Indep: xmlto, docbook-utils, ghostscript, transfig, bzip2, sharutils, asciidoc +Build-Conflicts: findutils (= 4.4.1-1ubuntu1) +Vcs-Git: http://kernel.ubuntu.com/git-repos/ubuntu/ubuntu-precise.git + +Package: SRCPKGNAME-source-PKGVER +Architecture: all +Section: devel +Priority: optional +Provides: SRCPKGNAME-source, SRCPKGNAME-source-3 +Depends: ${misc:Depends}, binutils, bzip2, coreutils | fileutils (>= 4.0) +Recommends: libc-dev, gcc, make +Suggests: libncurses-dev | ncurses-dev, kernel-package, libqt3-dev +Description: Linux kernel source for version PKGVER with Ubuntu patches + This package provides the source code for the Linux kernel version + PKGVER. + . + This package is mainly meant for other packages to use, in order to build + custom flavours. + . + If you wish to use this package to create a custom Linux kernel, then it + is suggested that you investigate the package kernel-package, which has + been designed to ease the task of creating kernel image packages. + . + If you are simply trying to build third-party modules for your kernel, + you do not want this package. Install the appropriate linux-headers + package instead. + +Package: SRCPKGNAME-doc +Architecture: all +Section: doc +Priority: optional +Depends: ${misc:Depends} +Conflicts: SRCPKGNAME-doc-3 +Replaces: SRCPKGNAME-doc-3 +Description: Linux kernel specific documentation for version PKGVER + This package provides the various documents in the PKGVER kernel + Documentation/ subdirectory. These document kernel subsystems, APIs, device + drivers, and so on. See + /usr/share/doc/SRCPKGNAME-doc/00-INDEX for a list of what is + contained in each file. + +Package: SRCPKGNAME-tools-common +Architecture: all +Section: kernel +Priority: optional +Depends: ${misc:Depends} +Replaces: SRCPKGNAME-tools (<= 2.6.32-16.25) +Description: Linux kernel version specific tools for version PKGVER + This package provides the architecture independent parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PGKVER. + +Package: linux-headers-PKGVER-ABINUM +Architecture: all +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils | fileutils (>= 4.0) +Provides: SRCPKGNAME-headers, SRCPKGNAME-headers-3 +Description: Header files related to Linux kernel version PKGVER + This package provides kernel header files for version PKGVER, for sites + that want the latest kernel headers. Please read + /usr/share/doc/SRCPKGNAME-headers-PKGVER-ABINUM/debian.README.gz for details + +Package: SRCPKGNAME-libc-dev +Architecture: i386 amd64 powerpc ppc64 armel armhf +Depends: ${misc:Depends} +Conflicts: libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), dvb-dev (<< 1.0.1-6), amd64-libs-dev (<= 1.1), SRCPKGNAME-kernel-headers +Replaces: libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), dvb-dev (<< 1.0.1-6), SRCPKGNAME-kernel-headers, libdrm-dev +Provides: SRCPKGNAME-kernel-headers +Multi-Arch: same +Description: Linux Kernel Headers for development + This package provides headers from the Linux kernel. These headers + are used by the installed headers for GNU glibc and other system + libraries. They are NOT meant to be used to build third-party modules for + your kernel. Use SRCPKGNAME-headers-* packages for that. + +Package: linux-tools-PKGVER-ABINUM +Architecture: i386 amd64 powerpc ppc64 armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version PKGVER-ABINUM + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PKGVER-ABINUM on + =HUMAN=. + --- linux-3.2.0.orig/debian.master/deviations.txt +++ linux-3.2.0/debian.master/deviations.txt @@ -0,0 +1,13 @@ +HYPER-V DRIVERS +F: drivers/hid/hid-hyperv.c +F: drivers/hv/* +F: drivers/scsi/storvsc_drv.c +F: drivers/staging/hv/* + + Updated version of the Hyper-V storage, network, and mouse drivers + from those planned for v3.4. The drivers in v3.2 simply do not + work correctly dropping access to the drive after a few seconds + of sustained use. Testing with the Azure folk showed that the + v3.4 drivers worked well in the v3.2 codebase. Intial version + from linux-next pre-merge window, update from v3.4-stable once + it releases. --- linux-3.2.0.orig/debian.master/control.stub +++ linux-3.2.0/debian.master/control.stub @@ -0,0 +1,625 @@ +Source: linux +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.8.4.0 +Build-Depends: debhelper (>= 5), cpio, module-init-tools, kernel-wedge (>= 2.24ubuntu1), makedumpfile [amd64 i386], device-tree-compiler [powerpc], libelf-dev, libnewt-dev, binutils-dev, rsync, libdw-dev, dpkg (>= 1.16.0~ubuntu4), util-linux +Build-Depends-Indep: xmlto, docbook-utils, ghostscript, transfig, bzip2, sharutils, asciidoc +Build-Conflicts: findutils (= 4.4.1-1ubuntu1) +Vcs-Git: http://kernel.ubuntu.com/git-repos/ubuntu/ubuntu-precise.git + +Package: linux-source-3.2.0 +Architecture: all +Section: devel +Priority: optional +Provides: linux-source, linux-source-3 +Depends: ${misc:Depends}, binutils, bzip2, coreutils | fileutils (>= 4.0) +Recommends: libc-dev, gcc, make +Suggests: libncurses-dev | ncurses-dev, kernel-package, libqt3-dev +Description: Linux kernel source for version 3.2.0 with Ubuntu patches + This package provides the source code for the Linux kernel version + 3.2.0. + . + This package is mainly meant for other packages to use, in order to build + custom flavours. + . + If you wish to use this package to create a custom Linux kernel, then it + is suggested that you investigate the package kernel-package, which has + been designed to ease the task of creating kernel image packages. + . + If you are simply trying to build third-party modules for your kernel, + you do not want this package. Install the appropriate linux-headers + package instead. + +Package: linux-doc +Architecture: all +Section: doc +Priority: optional +Depends: ${misc:Depends} +Conflicts: linux-doc-3 +Replaces: linux-doc-3 +Description: Linux kernel specific documentation for version 3.2.0 + This package provides the various documents in the 3.2.0 kernel + Documentation/ subdirectory. These document kernel subsystems, APIs, device + drivers, and so on. See + /usr/share/doc/linux-doc/00-INDEX for a list of what is + contained in each file. + +Package: linux-tools-common +Architecture: all +Section: kernel +Priority: optional +Depends: ${misc:Depends} +Replaces: linux-tools (<= 2.6.32-16.25) +Description: Linux kernel version specific tools for version 3.2.0 + This package provides the architecture independent parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PGKVER. + +Package: linux-headers-3.2.0-26 +Architecture: all +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils | fileutils (>= 4.0) +Provides: linux-headers, linux-headers-3 +Description: Header files related to Linux kernel version 3.2.0 + This package provides kernel header files for version 3.2.0, for sites + that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details + +Package: linux-libc-dev +Architecture: i386 amd64 powerpc ppc64 armel armhf +Depends: ${misc:Depends} +Conflicts: libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), dvb-dev (<< 1.0.1-6), amd64-libs-dev (<= 1.1), linux-kernel-headers +Replaces: libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), dvb-dev (<< 1.0.1-6), linux-kernel-headers, libdrm-dev +Provides: linux-kernel-headers +Multi-Arch: same +Description: Linux Kernel Headers for development + This package provides headers from the Linux kernel. These headers + are used by the installed headers for GNU glibc and other system + libraries. They are NOT meant to be used to build third-party modules for + your kernel. Use linux-headers-* packages for that. + +Package: linux-tools-3.2.0-26 +Architecture: i386 amd64 powerpc ppc64 armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version 3.2.0-26 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 3.2.0-26 on + 64 bit x86. + + +Package: linux-image-3.2.0-26-generic +Architecture: i386 amd64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub-efi-amd64 | grub-efi-ia32 | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-generic +Architecture: i386 amd64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-generic +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-generic +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 SMP + This package provides kernel header files for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-generic-dbgsym +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 SMP + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-generic-pae +Architecture: i386 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward 32 bit desktop or server systems with more than 4GB RAM. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-pae meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-generic-pae +Architecture: i386 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-generic-pae +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward 32 bit desktop or server systems with more than 4GB RAM. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-pae meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-generic-pae +Architecture: i386 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 SMP + This package provides kernel header files for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-generic-pae-dbgsym +Architecture: i386 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 SMP + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-highbank +Architecture: armhf +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: flash-kernel +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on Calxeda highbank ARM Server + This package contains the Linux kernel image for version 3.2.0 on + Calxeda highbank ARM Server. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Calxeda highbank processors. + . + Targeted towards Calxeda highbank ARM Server + . + You likely do not want to install this package directly. Instead, install + the linux-highbank meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-highbank +Architecture: armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-highbank +Description: Linux kernel image for version 3.2.0 on Calxeda highbank ARM Server + This package contains the Linux kernel image for version 3.2.0 on + Calxeda highbank ARM Server. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Calxeda highbank processors. + . + Targeted towards Calxeda highbank ARM Server + . + You likely do not want to install this package directly. Instead, install + the linux-highbank meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-highbank +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on Calxeda highbank ARM Server + This package provides kernel header files for version 3.2.0 on + Calxeda highbank ARM Server. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-highbank-dbgsym +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on Calxeda highbank ARM Server + This package provides a kernel debug image for version 3.2.0 on + Calxeda highbank ARM Server. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-omap +Architecture: armel armhf +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: flash-kernel +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package contains the Linux kernel image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports TI OMAP3 processors. + . + Targeted towards boards such as Beagleboard, Gumstix, IGEPv2, etc. + . + You likely do not want to install this package directly. Instead, install + the linux-omap meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-omap +Architecture: armel armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-omap +Description: Linux kernel image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package contains the Linux kernel image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports TI OMAP3 processors. + . + Targeted towards boards such as Beagleboard, Gumstix, IGEPv2, etc. + . + You likely do not want to install this package directly. Instead, install + the linux-omap meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-omap +Architecture: armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package provides kernel header files for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-omap-dbgsym +Architecture: armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package provides a kernel debug image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, redhat-cluster-modules, ivtv-modules +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: yaboot +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 64-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 64-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc64-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-powerpc64-smp +Description: Linux kernel image for version 3.2.0 on 64-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 64-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 64-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc64-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64-bit PowerPC SMP + This package provides kernel header files for version 3.2.0 on + 64-bit PowerPC SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-powerpc64-smp-dbgsym +Architecture: powerpc ppc64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64-bit PowerPC SMP + This package provides a kernel debug image for version 3.2.0 on + 64-bit PowerPC SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, redhat-cluster-modules, ivtv-modules +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: yaboot +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 32-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 32-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 32-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-powerpc-smp +Description: Linux kernel image for version 3.2.0 on 32-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 32-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 32-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 32-bit PowerPC SMP + This package provides kernel header files for version 3.2.0 on + 32-bit PowerPC SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-powerpc-smp-dbgsym +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 32-bit PowerPC SMP + This package provides a kernel debug image for version 3.2.0 on + 32-bit PowerPC SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-virtual +Architecture: i386 amd64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 Virtual Guests + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Virtual processors. + . + Geared toward virtual appliances. + . + You likely do not want to install this package directly. Instead, install + the linux-virtual meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-virtual +Architecture: i386 amd64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-virtual +Description: Linux kernel image for version 3.2.0 on 64 bit x86 Virtual Guests + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Virtual processors. + . + Geared toward virtual appliances. + . + You likely do not want to install this package directly. Instead, install + the linux-virtual meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-virtual +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 Virtual Guests + This package provides kernel header files for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-virtual-dbgsym +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 Virtual Guests + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. --- linux-3.2.0.orig/debian.master/copyright +++ linux-3.2.0/debian.master/copyright @@ -0,0 +1,29 @@ +This is the Ubuntu prepackaged version of the Linux kernel. +Linux was written by Linus Torvalds +and others. + +This package was put together by the Ubuntu Kernel Team, from +sources retrieved from upstream linux git. +The sources may be found at most Linux ftp sites, including +ftp://ftp.kernel.org/pub/linux/kernel/ + +This package is currently maintained by the +Ubuntu Kernel Team + +Linux is copyrighted by Linus Torvalds and others. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 dated June, 1991. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Ubuntu Linux systems, the complete text of the GNU General +Public License v2 can be found in `/usr/share/common-licenses/GPL-2'. --- linux-3.2.0.orig/debian.master/NOTES +++ linux-3.2.0/debian.master/NOTES @@ -0,0 +1,4 @@ +eSCO patch removed. Replaced upstream with a disable_esco module parm. +airprime: Module gone, use option driver instead +AppArmor: Patch is all there and ported. Ooops when enabled, so default + off (still can be enabled apparmor=1) --- linux-3.2.0.orig/debian.master/changelog +++ linux-3.2.0/debian.master/changelog @@ -0,0 +1,9297 @@ +linux (3.2.0-26.41) precise-proposed; urgency=low + + [Luis Henriques] + + * Release Tracking Bug + - LP: #1012057 + + [ Andy Whitcroft ] + + * [Config] fix up postinst to ensure we know which error is which + - LP: #1002388 + * [Config] highbank -- commonise filesystems + - LP: #1000831, #1010463 + * [Config] highbank -- commonise subsystems + - LP: #1000831, #1010463 + * [Config] highbank -- commonise network protocols + - LP: #1000831, #1010463 + * [Config] highbank -- commonise input drivers + - LP: #1000831, #1010463 + * [Config] highbank -- commonise CRYPTO options + - LP: #1000831, #1010463 + * [Config] highbank -- commonise HID options + - LP: #1000831, #1010463 + * [Config] highbank -- commonise sensors options + - LP: #1000831, #1010463 + * [Config] highbank -- commonise EXPORTFS/FHANDLE + - LP: #1000831, #1010463 + * [Config] highbank -- commonise CONFIG_CRYPTO_LZO + - LP: #1000831, #1010463 + * [Config] highbank -- commonise ENCRYPTED_KEYS + - LP: #1000831, #1010463 + * [Config] highbank -- commonise CONFIG_ATALK + - LP: #1000831, #1010463 + * [Config] highbank -- commonise INET/INET6 + - LP: #1000831, #1010463 + * [Config] highbank -- commonise NLS + - LP: #1000831, #1010463 + * [Config] highbank -- commonise BLK/CHR + - LP: #1000831, #1010463 + * [Config] highbank -- commonise PHY settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise CRC settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise BINFMT settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise DM settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise RTC_DRV settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise KEYBOARD/MOUSE settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise USB settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise GPIO settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise I2C settings + - LP: #1000831, #1010463 + * [Config] highbank -- commonise numerous subsystem selectors + - LP: #1000831, #1010463 + * [Config] highbank -- commonise A-C modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise D-F modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise G-I modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise J-L modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise M modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise N-P modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise Q-R modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise S modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise T modules missmatches + - LP: #1000831, #1010463 + * [Config] highbank -- commonise U-Z modules missmatches + - LP: #1000831, #1010463 + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: fix get_gate_vma call in i386 NX emulation code + - LP: #1009200 + + [ Ike Panhc ] + + * [Config] add highbank into d-i list + - LP: #1007459 + + [ Mario Limonciello ] + + * SAUCE: dell-laptop: rfkill blacklist Dell XPS 13z, 15 + - LP: #901410 + + [ Theodore Ts'o ] + + * SAUCE: ext4: fix the free blocks calculation for ext3 file systems w/ + uninit_bg + - LP: #1010022 + + [ Tim Gardner ] + + * [Config] CONFIG_NET_DSA=m + - LP: #1004148 + * [Config] armhf should not be skipabi or skipmodules + - LP: #1006913 + * [Config] highbank -- highbank.ignore.modules + + [ Upstream Kernel Changes ] + + * dsa: Change dsa_uses_{dsa, trailer}_tags() into inline functions + - LP: #1004148 + * dsa: Export functions from core to modules + - LP: #1004148 + * dsa: Combine core and tagging code + - LP: #1004148 + * mv88e6xxx: Combine mv88e6131 and mv88e612_61_65 drivers + - LP: #1004148 + * dsa: Define module author, description, license and aliases for drivers + - LP: #1004148 + * dsa: Allow core and drivers to be built as modules + - LP: #1004148 + * dsa: Remove unnecessary exports + - LP: #1004148 + * dsa: Move all definitions needed by drivers into + - LP: #1004148 + * dsa: Move switch drivers to new directory drivers/net/dsa + - LP: #1004148 + * dsa: Add reporting of silicon revision for Marvell + 88E6123/88E6161/88E6165 switches. + - LP: #1004148 + * drivers/net: dsa/mv88e6xxx.c files need linux/module.h + - LP: #1004148 + * power_supply: Drop usage of nowarn variant of sysfs_create_link() + - LP: #1005264 + * KVM: mmu_notifier: Flush TLBs before releasing mmu_lock + - LP: #1008711 + * KVM: lock slots_lock around device assignment + - LP: #1008711 + * KVM: nVMX: Fix erroneous exception bitmap check + - LP: #1008711 + * KVM: VMX: vmx_set_cr0 expects kvm->srcu locked + - LP: #1008711 + * KVM: s390: do store status after handling STOP_ON_STOP bit + - LP: #1008711 + * KVM: s390: Sanitize fpc registers for KVM_SET_FPU + - LP: #1008711 + * bio: don't overflow in bio_get_nr_vecs() + - LP: #1008711 + * bio allocation failure due to bio_get_nr_vecs() + - LP: #1008711 + * block: fix buffer overflow when printing partition UUIDs + - LP: #1008711 + * fix PA1.1 oops on boot + - LP: #1008711 + * fix crash in flush_icache_page_asm on PA1.1 + - LP: #1008711 + * fix panic on prefetch(NULL) on PA7300LC + - LP: #1008711 + * arch/tile/Kconfig: remove pointless "!M386" test. + - LP: #1008711 + * tilegx: enable SYSCALL_WRAPPERS support + - LP: #1008711 + * mtd: sm_ftl: fix typo in major number. + - LP: #1008711 + * hpsa: Fix problem with MSA2xxx devices + - LP: #1008711 + * SELinux: if sel_make_bools errors don't leave inconsistent state + - LP: #1008711 + * cfg80211: warn if db.txt is empty with CONFIG_CFG80211_INTERNAL_REGDB + - LP: #1008711 + * mpt2sas: Fix for panic happening because of improper memory allocation + - LP: #1008711 + * isdn/gigaset: ratelimit CAPI message dumps + - LP: #1008711 + * isdn/gigaset: fix CAPI disconnect B3 handling + - LP: #1008711 + * isdn/gigaset: improve error handling querying firmware version + - LP: #1008711 + * KEYS: Use the compat keyctl() syscall wrapper on Sparc64 for Sparc32 + compat + - LP: #1008711 + * IB/core: Fix mismatch between locked and pinned pages + - LP: #1008711 + * regulator: core: Release regulator-regulator supplies on error + - LP: #1008711 + * iommu: Fix off by one in dmar_get_fault_reason() + - LP: #1008711 + * RDMA/cxgb4: Always wake up waiters in c4iw_peer_abort_intr() + - LP: #1008711 + * RDMA/cxgb4: Drop peer_abort when no endpoint found + - LP: #1008711 + * s390/pfault: fix task state race + - LP: #1008711 + * isci: fix oem parameter validation on single controller skus + - LP: #1008711 + * Fix blocking allocations called very early during bootup + - LP: #1008711 + * vfs: make AIO use the proper rw_verify_area() area helpers + - LP: #1008711 + * docs: update HOWTO for 2.6.x -> 3.x versioning + - LP: #1008711 + * drivers/staging/comedi/comedi_fops.c: add missing vfree + - LP: #1008711 + * USB: move usb_translate_errors to linux/usb.h + - LP: #1008711 + * USB: cdc-wdm: sanitize error returns + - LP: #1008711 + * USB: cdc-wdm: fix memory leak + - LP: #1008711 + * 8250_pci: fix pch uart matching + - LP: #1008711 + * usb: add USB_QUIRK_RESET_RESUME for M-Audio 88es + - LP: #1008711 + * usb: usbtest: two super speed fixes for usbtest + - LP: #1008711 + * 8250.c: less than 2400 baud fix. + - LP: #1008711 + * usb-xhci: Handle COMP_TX_ERR for isoc tds + - LP: #1008711 + * xhci: Avoid dead ports when CONFIG_USB_XHCI_HCD=n + - LP: #1008711 + * xhci: Add Lynx Point to list of Intel switchable hosts. + - LP: #1008711 + * usb: gadget: fsl_udc_core: dTD's next dtd pointer need to be updated + once written + - LP: #1008711 + * Add missing call to uart_update_timeout() + - LP: #1008711 + * USB: ftdi-sio: add support for Physik Instrumente E-861 + - LP: #1008711 + * USB: ffs-test: fix length argument of out function call + - LP: #1008711 + * HID: wiimote: Fix IR data parser + - LP: #1008711 + * usb-storage: unusual_devs entry for Yarvik PMP400 MP4 player + - LP: #1008711 + * USB: ohci-at91: add a reset function to fix race condition + - LP: #1008711 + * HID: logitech: read all 32 bits of report type bitfield + - LP: #1008711 + * USB: serial: ti_usb_3410_5052: Add support for the FRI2 serial console + - LP: #1008711 + * USB: cdc-wdm: poll must return POLLHUP if device is gone + - LP: #1008711 + * USB: cdc-wdm: add debug messages on cleanup + - LP: #1008711 + * USB: cdc-wdm: cannot use dev_printk when device is gone + - LP: #1008711 + * tty: Allow uart_register/unregister/register + - LP: #1008711 + * workqueue: skip nr_running sanity check in worker_enter_idle() if + trustee is active + - LP: #1008711 + * xhci: Add new short TX quirk for Fresco Logic host. + - LP: #1008711 + * usbcore: enable USB2 LPM if port suspend fails + - LP: #1008711 + * perf/x86: Update event scheduling constraints for AMD family 15h models + - LP: #1008711 + * USB: fix resource leak in xhci power loss path + - LP: #1008711 + * xhci: Reset reserved command ring TRBs on cleanup. + - LP: #1008711 + * USB: Remove races in devio.c + - LP: #1008711 + * md: using GFP_NOIO to allocate bio for flush request + - LP: #1008711 + * um: Implement a custom pte_same() function + - LP: #1008711 + * um: Fix __swp_type() + - LP: #1008711 + * swap: don't do discard if no discard option added + - LP: #1008711 + * ahci: Detect Marvell 88SE9172 SATA controller + - LP: #1008711 + * ARM: 7365/1: drop unused parameter from flush_cache_user_range + - LP: #1008711 + * ARM: 7409/1: Do not call flush_cache_user_range with mmap_sem held + - LP: #1008711 + * sony-laptop: Enable keyboard backlight by default + - LP: #1008711 + * init: don't try mounting device as nfs root unless type fully matches + - LP: #1008711 + * memcg: free spare array to avoid memory leak + - LP: #1008711 + * compat: Fix RT signal mask corruption via sigprocmask + - LP: #1008711 + * ext3: Fix error handling on inode bitmap corruption + - LP: #1008711 + * ext4: fix error handling on inode bitmap corruption + - LP: #1008711 + * ACPI / PM: Add Sony Vaio VPCCW29FX to nonvs blacklist. + - LP: #1008711 + * hpsa: Add IRQF_SHARED back in for the non-MSI(X) interrupt handler + - LP: #1008711 + * wake up s_wait_unfrozen when ->freeze_fs fails + - LP: #1008711 + * cifs: fix revalidation test in cifs_llseek() + - LP: #1008711 + * OMAPDSS: VENC: fix NULL pointer dereference in DSS2 VENC sysfs debug + attr on OMAP4 + - LP: #1008711 + * i2c-eg20t: change timeout value 50msec to 1000msec + - LP: #1008711 + * drm/i915: [GEN7] Use HW scheduler for fixed function shaders + - LP: #1008711 + * mmc: sdio: avoid spurious calls to interrupt handlers + - LP: #1008711 + * smsusb: add autodetection support for USB ID 2040:c0a0 + - LP: #1008711 + * uvcvideo: Fix ENUMINPUT handling + - LP: #1008711 + * drm/i915: Avoid a double-read of PCH_IIR during interrupt handling + - LP: #1008711 + * b43legacy: Fix error due to MMIO access with SSB unpowered + - LP: #1008711 + * gpio: mpc8xxx: Prevent NULL pointer deref in demux handler + - LP: #1008711 + * drm/i915: don't clobber the pipe param in sanitize_modesetting + - LP: #1008711 + * spi/spi-fsl-spi: reference correct pdata in fsl_spi_cs_control + - LP: #1008711 + * xen: do not map the same GSI twice in PVHVM guests. + - LP: #1008711 + * nouveau: nouveau_set_bo_placement takes TTM flags + - LP: #1008711 + * MCE: Fix vm86 handling for 32bit mce handler + - LP: #1008711 + * x86/mce: Fix check for processor context when machine check was taken. + - LP: #1008711 + * tile: fix bug where fls(0) was not returning 0 + - LP: #1008711 + * intel-iommu: Add device info into list before doing context mapping + - LP: #1008711 + * block: don't mark buffers beyond end of disk as mapped + - LP: #1008711 + * drivers/rtc/rtc-pl031.c: configure correct wday for 2000-01-01 + - LP: #1008711 + * rtlwifi: Preallocate USB read buffers and eliminate kalloc in read + routine + - LP: #1008711 + * NFS4: fix compile warnings in nfs4proc.c + * Avoid reading past buffer when calling GETACL + - LP: #1002505, #1008711 + - CVE-2012-2375 + * Avoid beyond bounds copy while caching ACL + - LP: #1002505, #1008711 + - CVE-2012-2375 + * i2c: tegra: notify transfer-complete after clearing status. + - LP: #1008711 + * i2c: davinci: Free requested IRQ in remove + - LP: #1008711 + * x86, realmode: 16-bit real-mode code support for relocs tool + - LP: #1008711 + * x86, relocs: Workaround for binutils 2.22.52.0.1 section bug + - LP: #1008711 + * x86, relocs: When printing an error, say relative or absolute + - LP: #1008711 + * x86, relocs: Build clean fix + - LP: #1008711 + * x86-32, relocs: Whitelist more symbols for ld bug workaround + - LP: #1008711 + * x86, relocs: Add jiffies and jiffies_64 to the relative whitelist + - LP: #1008711 + * Linux 3.2.19 + - LP: #1008711 + * ALSA: HDA: Add support for Cirrus Logic 4213 + - LP: #910792 + * tg3: Fix TSO CAP for 5704 devs w / ASF enabled + - LP: #1005699 + * drm/i915:: Disable FBC on SandyBridge + - LP: #974830 + + -- Luis Henriques Wed, 13 Jun 2012 18:16:46 +0100 + +linux (3.2.0-25.40) precise-proposed; urgency=low + + [Luis Henriques] + + * Release Tracking Bug + - LP: #1003534 + + [ Andy Whitcroft ] + + * [Config] control.stub is an intermediate product not a dependancy + - LP: #992414 + * [Config] include include/generated/compile.h + - LP: #942569 + + [ Dave Martin ] + + * SAUCE: rtc: pl031: Enable module alias autogeneration for AMBA drivers + - LP: #1000831 + + [ Herton Ronaldo Krzesinski ] + + * Revert "SAUCE: ite-cir: postpone ISR registration" + - LP: #1002484 + * SAUCE: async_populate_rootfs: fix build warnings + - LP: #1003417 + + [ Ike Panhc ] + + * [Config] add highbank flavour + - LP: #1000831 + + [ John Johansen ] + + * SAUCE: apparmor: fix long path failure due to disconnected path + - LP: #955892 + * SAUCE: apparmor: fix profile lookup for unconfined + - LP: #978038, #987371 + + [ Mark Langsdorf ] + + * SAUCE: arm highbank: add support for pl320-ipc driver + - LP: #1000831 + + [ Rob Herring ] + + * SAUCE: input: add a key driver for highbank + - LP: #1000831 + * SAUCE: ARM: highbank: Add smc calls to enable/disable the L2 + - LP: #1000831 + * SAUCE: force DMA buffers to non-bufferable on highbank + - LP: #1000831 + * SAUCE: net: calxedaxgmac: fix net timeout recovery + - LP: #1000831 + + [ Tim Gardner ] + + * [Config] perarch and indep tools builds need separate build directories + * [Config] CONFIG_XEN_ACPI_PROCESSOR=y + - LP: #898112 + + [ Upstream Kernel Changes ] + + * Revert "autofs: work around unhappy compat problem on x86-64" + - LP: #1002482 + * Input: wacom - cleanup feature report for bamboos + - LP: #568064 + * Input: wacom - remove unused bamboo HID parsing + - LP: #568064 + * Input: wacom - add some comments to wacom_parse_hid + - LP: #568064 + * Input: wacom - relax Bamboo stylus ID check + - LP: #568064 + * Input: wacom - read 3rd gen Bamboo Touch HID data + - LP: #568064 + * Input: wacom - 3rd gen Bamboo P&Touch packet support + - LP: #568064 + * Input: wacom - ignore unwanted bamboo packets + - LP: #568064 + * HID: wacom: Move parsing to a separate function + - LP: #568064 + * HID: wacom: Initial driver for Wacom Intuos4 Wireless (Bluetooth) + - LP: #568064 + * Input: wacom - add support for Cintiq 24HD + - LP: #568064 + * Input: wacom - add LED support for Cintiq 24HD + - LP: #568064 + * Input: wacom - add missing LEDS_CLASS to Kconfig + - LP: #568064 + * Input: wacom - fix 3rd-gen Bamboo MT when 4+ fingers are in use + - LP: #568064 + * power_supply: allow a power supply to explicitly point to powered + device + - LP: #568064 + * power_supply: add "powers" links to self-powered HID devices + - LP: #568064 + * HID: wiimote: fix invalid power_supply_powers call + - LP: #568064 + * HID: wacom: Fix invalid power_supply_powers calls + - LP: #568064 + * ARM: 7178/1: fault.c: Port OOM changes into do_page_fault + - LP: #951043 + * ARM: 7368/1: fault.c: correct how the tsk->[maj|min]_flt gets + incremented + - LP: #951043 + * hugepages: fix use after free bug in "quota" handling + - LP: #990368 + - CVE-2012-2133 + * provide disable_cpufreq() function to disable the API. + - LP: #898112 + * xen/acpi-processor: C and P-state driver that uploads said data to + hypervisor. + - LP: #898112 + * xen/acpi-processor: Do not depend on CPU frequency scaling drivers. + - LP: #898112 + * xen/acpi: Fix Kconfig dependency on CPU_FREQ + - LP: #898112 + * xen/acpi: Remove the WARN's as they just create noise. + - LP: #898112 + * xen/cpufreq: Disable the cpu frequency scaling drivers from loading. + - LP: #898112 + * xen/apic: Return the APIC ID (and version) for CPU 0. + - LP: #898112 + * ARM: highbank: add xgmac ethernet devices to dts + - LP: #1000831 + * net: add calxeda xgmac ethernet driver + - LP: #1000831 + * ARM: versatile: Add missing ENDPROC to headsmp.S + - LP: #1000831 + * ARM: msm: Add missing ENDPROC to headsmp.S + - LP: #1000831 + * ARM: ux500: add missing ENDPROC to headsmp.S + - LP: #1000831 + * ARM: exynos: remove incorrect BSYM usage + - LP: #1000831 + * ARM: imx: remove incorrect BSYM usage + - LP: #1000831 + * ARM: highbank: remove incorrect BSYM usage + - LP: #1000831 + * ARM: make BSYM macro assembly only + - LP: #1000831 + * ARM: amba: Auto-generate AMBA driver module aliases during modpost + - LP: #1000831 + * ARM: amba: Move definition of struct amba_id to mod_devicetable.h + - LP: #1000831 + * dmaengine: pl330: Enable module alias autogeneration for AMBA drivers + - LP: #1000831 + * crypto: sha512 - Fix byte counter overflow in SHA-512 + - LP: #1002482 + * ALSA: hda/conexant - Don't set HP pin-control bit unconditionally + - LP: #1002482 + * ALSA: hda/conexant - Set up the missing docking-station pins + - LP: #1002482 + * ARM: clps711x: serial driver hungs are a result of call disable_irq + within ISR + - LP: #1002482 + * ARM: OMAP1: DMTIMER: fix broken timer clock source selection + - LP: #1002482 + * mmc: fixes for eMMC v4.5 discard operation + - LP: #1002482 + * mmc: fixes for eMMC v4.5 sanitize operation + - LP: #1002482 + * mmc: unbreak sdhci-esdhc-imx on i.MX25 + - LP: #1002482 + * xen/gntdev: do not set VM_PFNMAP + - LP: #1002482 + * xen/xenbus: Add quirk to deal with misconfigured backends. + - LP: #1002482 + * USB: yurex: Remove allocation of coherent buffer for setup-packet + buffer + - LP: #1002482 + * USB: yurex: Fix missing URB_NO_TRANSFER_DMA_MAP flag in urb + - LP: #1002482 + * uwb: fix use of del_timer_sync() in interrupt + - LP: #1002482 + * uwb: fix error handling + - LP: #1002482 + * davinci_mdio: Fix MDIO timeout check + - LP: #1002482 + * mwifiex: update pcie8766 scratch register addresses + - LP: #1002482 + * brcm80211: smac: resume transmit fifo upon receiving frames + - LP: #1002482 + * rc-core: set mode for winbond-cir + - LP: #1002482 + * drxk: Does not unlock mutex if sanity check failed in scu_command() + - LP: #1002482 + * cfg80211: fix interface combinations check. + - LP: #1002482 + * Fix modpost failures in fedora 17 + - LP: #1002482 + * mm: fix s390 BUG by __set_page_dirty_no_writeback on swap + - LP: #1002482 + * jbd2: use GFP_NOFS for blkdev_issue_flush + - LP: #1002482 + * USB: serial: cp210x: Fixed usb_control_msg timeout values + - LP: #1002482 + * pch_uart: Fix dma channel unallocated issue + - LP: #1002482 + * drivers/tty/amiserial.c: add missing tty_unlock + - LP: #1002482 + * USB: sierra: avoid QMI/wwan interface on MC77xx + - LP: #1002482 + * EHCI: fix criterion for resuming the root hub + - LP: #1002482 + * EHCI: always clear the STS_FLR status bit + - LP: #1002482 + * USB: fix deadlock in bConfigurationValue attribute method + - LP: #1002482 + * usb: gadget: udc-core: stop UDC on device-initiated disconnect + - LP: #1002482 + * usb: gadget: udc-core: fix asymmetric calls in remove_driver + - LP: #1002482 + * usb: gadget: udc-core: fix wrong call order + - LP: #1002482 + * usb: gadget: udc-core: fix incompatibility with dummy-hcd + - LP: #1002482 + * usb: gadget: eliminate NULL pointer dereference (bugfix) + - LP: #1002482 + * usb: musb: omap: fix crash when musb glue (omap) gets initialized + - LP: #1002482 + * usb: musb: omap: fix the error check for pm_runtime_get_sync + - LP: #1002482 + * PCI: Add quirk for still enabled interrupts on Intel Sandy Bridge GPUs + - LP: #1002482 + * ext4: fix endianness breakage in ext4_split_extent_at() + - LP: #1002482 + * KVM: unmap pages from the iommu when slots are removed + - LP: #1002482 + * dell-laptop: add 3 machines that has touchpad LED + - LP: #1002482 + * dell-laptop: touchpad LED should persist its status after S3 + - LP: #1002482 + * Bluetooth: Add support for Atheros [04ca:3005] + - LP: #1002482 + * Don't limit non-nested epoll paths + - LP: #1002482 + * spi: Fix device unregistration when unregistering the bus master + - LP: #1002482 + * spi/mpc83xx: fix NULL pdata dereference bug + - LP: #1002482 + * rt2800: Add support for the Fujitsu Stylistic Q550 + - LP: #1002482 + * rt2x00: Identify rt2800usb chipsets. + - LP: #1002482 + * nfsd: fix b0rken error value for setattr on read-only mount + - LP: #1002482 + * nfsd: fix error values returned by nfsd4_lockt() when nfsd_open() fails + - LP: #1002482 + * nfsd: fix endianness breakage in TEST_STATEID handling + - LP: #1002482 + * nfsd: fix compose_entry_fh() failure exits + - LP: #1002482 + * btrfs: btrfs_root_readonly() broken on big-endian + - LP: #1002482 + * ocfs2: ->l_next_free_req breakage on big-endian + - LP: #1002482 + * ocfs: ->rl_used breakage on big-endian + - LP: #1002482 + * ocfs2: ->rl_count endianness breakage + - LP: #1002482 + * ocfs2: ->e_leaf_clusters endianness breakage + - LP: #1002482 + * lockd: fix the endianness bug + - LP: #1002482 + * usb: dwc3: ep0: increment "actual" on bounced ep0 case + - LP: #1002482 + * net: fix /proc/net/dev regression + - LP: #1002482 + * nfsd: don't fail unchecked creates of non-special files + - LP: #1002482 + * ppp: Don't stop and restart queue on every TX packet + - LP: #1002482 + * tcp: allow splice() to build full TSO packets + - LP: #1002482 + * sctp: Allow struct sctp_event_subscribe to grow without breaking + binaries + - LP: #1002482 + * bridge: Do not send queries on multicast group leaves + - LP: #1002482 + * ipv6: fix array index in ip6_mc_add_src() + - LP: #1002482 + * phonet: Check input from user before allocating + - LP: #1002482 + * bonding: properly unset current_arp_slave on slave link up + - LP: #1002482 + * wimax: i2400m - prevent a possible kernel bug due to missing fw_name + string + - LP: #1002482 + * netlink: fix races after skb queueing + - LP: #1002482 + * net: fix a race in sock_queue_err_skb() + - LP: #1002482 + * tcp: fix tcp_rcv_rtt_update() use of an unscaled RTT sample + - LP: #1002482 + * net: allow pskb_expand_head() to get maximum tailroom + - LP: #1002482 + * tcp: fix tcp_trim_head() + - LP: #1002482 + * tcp: avoid order-1 allocations on wifi and tx path + - LP: #1002482 + * atl1: fix kernel panic in case of DMA errors + - LP: #1002482 + * 8139cp: set intr mask after its handler is registered + - LP: #1002482 + * net: smsc911x: fix skb handling in receive path + - LP: #1002482 + * net/ethernet: ks8851_mll fix rx frame buffer overflow + - LP: #1002482 + * net_sched: gred: Fix oops in gred_dump() in WRED mode + - LP: #1002482 + * net: usb: smsc75xx: fix mtu + - LP: #1002482 + * dummy: Add ndo_uninit(). + - LP: #1002482 + * tcp: fix tcp_grow_window() for large incoming frames + - LP: #1002482 + * netns: do not leak net_generic data on failed init + - LP: #1002482 + * ksz884x: don't copy too much in netdev_set_mac_address() + - LP: #1002482 + * net ax25: Reorder ax25_exit to remove races. + - LP: #1002482 + * tcp: fix TCP_MAXSEG for established IPv6 passive sockets + - LP: #1002482 + * nfs: Enclose hostname in brackets when needed in nfs_do_root_mount + - LP: #1002482 + * NFS: put open context on error in nfs_pagein_multi + - LP: #1002482 + * NFS: put open context on error in nfs_flush_multi + - LP: #1002482 + * x86, microcode: Fix sysfs warning during module unload on unsupported + CPUs + - LP: #1002482 + * x86, apic: APIC code touches invalid MSR on P5 class machines + - LP: #1002482 + * xen: correctly check for pending events when restoring irq flags + - LP: #1002482 + * xen/smp: Fix crash when booting with ACPI hotplug CPUs. + - LP: #1002482 + * ASoC: dapm: Ensure power gets managed for line widgets + - LP: #1002482 + * ASoC: wm8994: Improve sequencing of AIF channel enables + - LP: #1002482 + * dmaengine: at_hdmac: remove clear-on-read in atc_dostart() + - LP: #1002482 + * sched: Fix OOPS when build_sched_domains() percpu allocation fails + - LP: #1002482 + * tracing: Fix stacktrace of latency tracers (irqsoff and friends) + - LP: #1002482 + * hwmon: fam15h_power: fix bogus values with current BIOSes + - LP: #1002482 + * hwmon: (fam15h_power) Fix pci_device_id array + - LP: #1002482 + * dell-laptop: Terminate quirks list properly + - LP: #1002482 + * drm/radeon/kms: need to set up ss on DP bridges as well + - LP: #1002482 + * drm/i915: handle input/output sdvo timings separately in mode_set + - LP: #1002482 + * drm/i915: relative_constants_mode race fix + - LP: #1002482 + * drm/i915: Force sync command ordering (Gen6+) + - LP: #1002482 + * drm/i915: Set the Stencil Cache eviction policy to non-LRA mode. + - LP: #1002482 + * drm/i915: fix integer overflow in i915_gem_execbuffer2() + - LP: #1002482 + * drm/i915: fix integer overflow in i915_gem_do_execbuffer() + - LP: #1002482 + * nl80211: ensure interface is up in various APIs + - LP: #1002482 + * ALSA: HDA: Add external mic quirk for Asus Zenbook UX31E + - LP: #1002482, #950490 + * USB: cdc-wdm: fix race leading leading to memory corruption + - LP: #1002482 + * USB: EHCI: fix crash during suspend on ASUS computers + - LP: #1002482 + * USB: gadget: storage gadgets send wrong error code for unknown commands + - LP: #1002482 + * usb: gadget: dummy: do not call pullup() on udc_stop() + - LP: #1002482 + * usb gadget: uvc: uvc_request_data::length field must be signed + - LP: #1002482 + * pipes: add a "packetized pipe" mode for writing + - LP: #1002482 + * autofs: make the autofsv5 packet file descriptor use a packetized pipe + - LP: #1002482 + * ARM: 7396/1: errata: only handle ARM erratum #326103 on affected cores + - LP: #1002482 + * ARM: 7397/1: l2x0: only apply workaround for erratum #753970 on PL310 + - LP: #1002482 + * ARM: 7398/1: l2x0: only write to debug registers on PL310 + - LP: #1002482 + * ARM: 7403/1: tls: remove covert channel via TPIDRURW + - LP: #1002482 + * ARM: 7406/1: hotplug: copy the affinity mask when forcefully migrating + IRQs + - LP: #1002482 + * libsas: fix sas_find_bcast_phy() in the presence of 'vacant' phys + - LP: #1002482 + * libsas: fix false positive 'device attached' conditions + - LP: #1002482 + * efi: Add new variable attributes + - LP: #1002482 + * efi: Validate UEFI boot variables + - LP: #1002482 + * PM / Hibernate: fix the number of pages used for hibernate/thaw + buffering + - LP: #1002482 + * drm/i915: enable dip before writing data on gen4 + - LP: #1002482 + * efivars: Improve variable validation + - LP: #1002482 + * fs/cifs: fix parsing of dfs referrals + - LP: #1002482 + * Fix __read_seqcount_begin() to use ACCESS_ONCE for sequence value read + - LP: #1002482 + * hwmon: (coretemp) Increase CPU core limit + - LP: #1002482 + * nouveau: initialise has_optimus variable. + - LP: #1002482 + * hwmon: (coretemp) fix oops on cpu unplug + - LP: #1002482 + * libata: skip old error history when counting probe trials + - LP: #1002482 + * b43: only reload config after successful initialization + - LP: #1002482, #950295 + * i2c: pnx: Disable clk in suspend + - LP: #1002482 + * ipw2200: Fix race condition in the command completion acknowledge + - LP: #1002482 + * mac80211: fix AP mode EAP tx for VLAN stations + - LP: #1002482 + * rtlwifi: Fix oops on unload + - LP: #1002482 + * wl1251: fix crash on remove due to premature kfree + - LP: #1002482 + * wl1251: fix crash on remove due to leftover work item + - LP: #1002482 + * iwlwifi: do not nulify ctx->vif on reset + - LP: #1002482 + * iwlwifi: fix hardware queue programming + - LP: #1002482 + * hfsplus: Fix potential buffer overflows + - LP: #1002482 + * ASoC: tlv312aic23: unbreak resume + - LP: #1002482 + * asm-generic: Use __BITS_PER_LONG in statfs.h + - LP: #1002482 + * x86, relocs: Remove an unused variable + - LP: #1002482 + * ARM: 7410/1: Add extra clobber registers for assembly in kernel_execve + - LP: #1002482 + * ARM: 7414/1: SMP: prevent use of the console when using idmap_pgd + - LP: #1002482 + * drm/i915: disable sdvo hotplug on i945g/gm + - LP: #1002482 + * drm/i915: Do no set Stencil Cache eviction LRA w/a on gen7+ + - LP: #1002482 + * xen/pte: Fix crashes when trying to see non-existent PGD/PMD/PUD/PTEs + - LP: #1002482 + * xen/pci: don't use PCI BIOS service for configuration space accesses + - LP: #1002482 + * percpu, x86: don't use PMD_SIZE as embedded atom_size on 32bit + - LP: #1002482 + * iwlagn: allow up to uCode API 6 for 6000 devices + - LP: #1002482 + * iwlwifi: use correct released ucode version + - LP: #1002482 + * iwlwifi: use 6000G2B for 6030 device series + - LP: #1002482 + * exit_signal: simplify the "we have changed execution domain" logic + - LP: #1002482 + * exit_signal: fix the "parent has changed security domain" logic + - LP: #1002482 + * staging: r8712u: Fix regression caused by commit 8c213fa + - LP: #1002482 + * smsc95xx: mark link down on startup and let PHY interrupt deal with + carrier changes + - LP: #1002482 + * Linux 3.2.17 + - LP: #1002482 + * regulator: Fix the logic to ensure new voltage setting in valid range + - LP: #1002484 + * ARM: OMAP: Revert "ARM: OMAP: ctrl: Fix CONTROL_DSIPHY register fields" + - LP: #1002484 + * ALSA: echoaudio: Remove incorrect part of assertion + - LP: #1002484 + * ARM: orion5x: Fix GPIO enable bits for MPP9 + - LP: #1002484 + * ALSA: HDA: Lessen CPU usage when waiting for chip to respond + - LP: #1002484 + * percpu: pcpu_embed_first_chunk() should free unused parts after all + allocs are complete + - LP: #1002484 + * hugetlb: prevent BUG_ON in hugetlb_fault() -> hugetlb_cow() + - LP: #1002484 + * namespaces, pid_ns: fix leakage on fork() failure + - LP: #1002484 + * mm: nobootmem: fix sign extend problem in __free_pages_memory() + - LP: #1002484 + * asix: Fix tx transfer padding for full-speed USB + - LP: #1002484 + * netem: fix possible skb leak + - LP: #1002484 + * net: In unregister_netdevice_notifier unregister the netdevices. + - LP: #1002484 + * net: l2tp: unlock socket lock before returning from l2tp_ip_sendmsg + - LP: #1002484 + * sky2: propogate rx hash when packet is copied + - LP: #1002484 + * sky2: fix receive length error in mixed non-VLAN/VLAN traffic + - LP: #1002484 + * sungem: Fix WakeOnLan + - LP: #1002484 + * tg3: Avoid panic from reserved statblk field access + - LP: #1002484 + * tcp: fix infinite cwnd in tcp_complete_cwr() + - LP: #1002484 + * tcp: change tcp_adv_win_scale and tcp_rmem[2] + - LP: #1002484 + * brcm80211: smac: pass missing argument to 'brcms_b_mute' + - LP: #1002484 + * phy:icplus:fix Auto Power Saving in ip101a_config_init. + - LP: #1002484 + * NFSv4: Revalidate uid/gid after open + - LP: #1002484 + * target: Drop incorrect se_lun_acl release for dynamic -> explict ACL + conversion + - LP: #1002484 + * marvell-cam: fix an ARM build error + - LP: #1002484 + * rc: Postpone ISR registration + - LP: #1002484 + * cdc_ether: Ignore bogus union descriptor for RNDIS devices + - LP: #1002484 + * jffs2: Fix lock acquisition order bug in gc path + - LP: #1002484 + * s5p-fimc: Fix locking in subdev set_crop op + - LP: #1002484 + * dm mpath: check if scsi_dh module already loaded before trying to load + - LP: #1002484 + * sparc64: Do not clobber %g2 in xcall_fetch_glob_regs(). + - LP: #1002484 + * gpio: Add missing spin_lock_init in gpio-ml-ioh driver + - LP: #1002484 + * spi-topcliff-pch: Modify pci-bus number dynamically to get DMA device + info + - LP: #1002484 + * spi-topcliff-pch: Fix issue for transmitting over 4KByte + - LP: #1002484 + * spi-topcliff-pch: supports a spi mode setup and bit order setup by IO + control + - LP: #1002484 + * spi-topcliff-pch: add recovery processing in case wait-event timeout + - LP: #1002484 + * ext4: avoid deadlock on sync-mounted FS w/o journal + - LP: #1002484 + * ia64: Add accept4() syscall + - LP: #1002484 + * brcm80211: smac: fix endless retry of A-MPDU transmissions + - LP: #1002484 + * ARM: 7417/1: vfp: ensure preemption is disabled when enabling VFP + access + - LP: #1002484 + * target: Fix SPC-2 RELEASE bug for multi-session iSCSI client setups + - LP: #1002484 + * crypto: mv_cesa requires on CRYPTO_HASH to build + - LP: #1002484 + * ALSA: hda/idt - Fix power-map for speaker-pins with some HP laptops + - LP: #1002484 + * ASoC: wm8994: Fix AIF2ADC power down + - LP: #1002484 + * usbnet: fix skb traversing races during unlink(v2) + - LP: #1002484 + * cdc_ether: add Novatel USB551L device IDs for FLAG_WWAN + - LP: #1002484 + * ARM: prevent VM_GROWSDOWN mmaps extending below FIRST_USER_ADDRESS + - LP: #1002484 + * arch/tile: apply commit 74fca9da0 to the compat signal handling as well + - LP: #1002484 + * MD: Add del_timer_sync to mddev_suspend (fix nasty panic) + - LP: #1002484 + * target: Fix bug in handling of FILEIO + block_device resize ops + - LP: #1002484 + * tcp: do_tcp_sendpages() must try to push data out on oom conditions + - LP: #1002484 + * e1000: Prevent reset task killing itself. + - LP: #1002484 + * pktgen: fix crash at module unload + - LP: #1002484 + * pktgen: fix module unload for good + - LP: #1002484 + * Linux 3.2.18 + - LP: #1002484 + * thinkpad-acpi: recognize Lenovo as version string in newer V-series + BIOS + - LP: #1002920 + * dl2k: Clean up rio_ioctl + - CVE-2012-2313 + + -- Luis Henriques Wed, 23 May 2012 17:37:05 +0100 + +linux (3.2.0-24.39) precise-proposed; urgency=low + + [Luis Henriques] + + * Release Tracking Bug + - LP: #1002329 + + [ Andy Whitcroft ] + + * SAUCE: ata_piix: add a disable_driver option + - LP: #994870 + + -- Luis Henriques Mon, 21 May 2012 15:51:25 +0100 + +linux (3.2.0-24.38) precise-proposed; urgency=low + + [ Luis Henriques ] + + * Release Tracking Bug + - LP: #991925 + + [ Herton Ronaldo Krzesinski ] + + * linux: add Build-Depends for libnewt-dev, to enable perf TUI support + - LP: #981717 + + [ Tim Gardner ] + + * SAUCE: Allow filtering of cpufreq drivers + - LP: #984288 + + [ Upstream Kernel Changes ] + + * x86 bpf_jit: fix a bug in emitting the 16-bit immediate operand of AND + - LP: #981162 + * tg3: Fix 5717 serdes powerdown problem + - LP: #981162 + * sky2: dont overwrite settings for PHY Quick link + - LP: #981162 + * rose_dev: fix memcpy-bug in rose_set_mac_address + - LP: #981162 + * net: usb: cdc_eem: fix mtu + - LP: #981162 + * Fix non TBI PHY access; a bad merge undid bug fix in a previous commit. + - LP: #981162 + * ASoC: wm8994: Update WM8994 DCS calibration + - LP: #981162 + * mtd: ixp4xx: oops in ixp4xx_flash_probe + - LP: #981162 + * mtd: mips: lantiq: reintroduce support for cmdline partitions + - LP: #981162 + * mtd: nand: gpmi: use correct member for checking NAND_BBT_USE_FLASH + - LP: #981162 + * mtd: sst25l: initialize writebufsize + - LP: #981162 + * mtd: block2mtd: initialize writebufsize + - LP: #981162 + * mtd: lart: initialize writebufsize + - LP: #981162 + * mtd: m25p80: set writebufsize + - LP: #981162 + * ACPI: Do cpufreq clamping for throttling per package v2 + - LP: #981162 + * PNPACPI: Fix device ref leaking in acpi_pnp_match + - LP: #981162 + * modpost: fix ALL_INIT_DATA_SECTIONS + - LP: #981162 + * genirq: Adjust irq thread affinity on IRQ_SET_MASK_OK_NOCOPY return + value + - LP: #981162 + * tracing: Fix ftrace stack trace entries + - LP: #981162 + * tracing: Fix ent_size in trace output + - LP: #981162 + * m68k/mac: Add missing platform check before registering platform + devices + - LP: #981162 + * mac80211: fix possible tid_rx->reorder_timer use after free + - LP: #981162 + * rtlwifi: rtl8192ce: rtl8192cu: rtl8192de: Fix low-gain setting when + scanning + - LP: #981162 + * drm: Validate requested virtual size against allocated fb size + - LP: #981162 + * drm/radeon/kms: fix fans after resume + - LP: #981162 + * drm/i915: no-lvds quirk on MSI DC500 + - LP: #981162 + * drm/i915: Add lock on drm_helper_resume_force_mode + - LP: #981162 + * drm/i915: quirk away broken OpRegion VBT + - LP: #981162 + * r8169: runtime resume before shutdown. + - LP: #981162 + * target: Fix unsupported WRITE_SAME sense payload + - LP: #981162 + * kgdb,debug_core: pass the breakpoint struct instead of address and + memory + - LP: #981162 + * kgdbts: Fix kernel oops with CONFIG_DEBUG_RODATA + - LP: #981162 + * kgdbts: (1 of 2) fix single step awareness to work correctly with SMP + - LP: #981162 + * kgdbts: (2 of 2) fix single step awareness to work correctly with SMP + - LP: #981162 + * x86,kgdb: Fix DEBUG_RODATA limitation using text_poke() + - LP: #981162 + * CIFS: Fix VFS lock usage for oplocked files + - LP: #981162 + * ARM: tegra: remove Tegra30 errata from MACH_TEGRA_DT + - LP: #981162 + * mmc: sdhci-dove: Fix compile error by including module.h + - LP: #981162 + * mmc: atmel-mci: correct data timeout computation + - LP: #981162 + * tcm_fc: Add abort flag for gracefully handling exchange timeout + - LP: #981162 + * tcm_fc: Do not free tpg structure during wq allocation failure + - LP: #981162 + * sysctl: fix write access to dmesg_restrict/kptr_restrict + - LP: #981162 + * modpost: Fix modpost license checking of vmlinux.o + - LP: #981162 + * x86/PCI: use host bridge _CRS info on MSI MS-7253 + - LP: #981162 + * x86/PCI: do not tie MSI MS-7253 use_crs quirk to BIOS version + - LP: #981162 + * TOMOYO: Fix mount flags checking order. + - LP: #981162 + * acer-wmi: No wifi rfkill on Sony machines + - LP: #981162 + * Fix length of buffer copied in __nfs4_get_acl_uncached + - LP: #981162 + * sched/x86: Fix overflow in cyc2ns_offset + - LP: #981162 + * mfd: Clear twl6030 IRQ status register only once + - LP: #981162 + * USB: Add Motorola Rokr E6 Id to the USBNet driver "zaurus" + - LP: #981162 + * ioat: fix size of 'completion' for Xen + - LP: #981162 + * ASoC: ak4642: fixup: mute needs +1 step + - LP: #981162 + * cred: copy_process() should clear child->replacement_session_keyring + - LP: #981162 + * iommu/amd: Make sure IOMMU interrupts are re-enabled on resume + - LP: #981162 + * Linux 3.2.15 + - LP: #981162 + * drm/radeon/kms: fix DVO setup on some r4xx chips + - LP: #987337 + * drm/i915/ringbuffer: Exclude last 2 cachlines of ring on 845g + - LP: #987337 + * drm/radeon: only add the mm i2c bus if the hw_i2c module param is set + - LP: #987337 + * drm/i915: properly compute dp dithering for user-created modes + - LP: #987337 + * drm/i915: make rc6 module parameter read-only + - LP: #987337 + * rtlwifi: Add missing DMA buffer unmapping for PCI drivers + - LP: #987337 + * ARM: 7379/1: DT: fix atags_to_fdt() second call site + - LP: #987337 + * ARM: 7384/1: ThumbEE: Disable userspace TEEHBR access for + !CONFIG_ARM_THUMBEE + - LP: #987337 + * md/bitmap: prevent bitmap_daemon_work running while initialising bitmap + - LP: #987337 + * Bluetooth: uart-ldisc: Fix memory leak + - LP: #987337 + * Bluetooth: hci_ldisc: fix NULL-pointer dereference on tty_close + - LP: #987337 + * ext4: address scalability issue by removing extent cache statistics + - LP: #987337 + * ia64: fix futex_atomic_cmpxchg_inatomic() + - LP: #987337 + * drivers/rtc/rtc-pl031.c: enable clock on all ST variants + - LP: #987337 + * hugetlb: fix race condition in hugetlb_fault() + - LP: #987337 + * staging: iio: hmc5843: Fix crash in probe function. + - LP: #987337 + * tty: serial: altera_uart: Check for NULL platform_data in probe. + - LP: #987337 + * sparc64: Eliminate obsolete __handle_softirq() function + - LP: #987337 + * sparc64: Fix bootup crash on sun4v. + - LP: #987337 + * cciss: Initialize scsi host max_sectors for tape drive support + - LP: #987337 + * cciss: Fix scsi tape io with more than 255 scatter gather elements + - LP: #987337 + * video:uvesafb: Fix oops that uvesafb try to execute NX-protected page + - LP: #987337 + * nohz: Fix stale jiffies update in tick_nohz_restart() + - LP: #987337 + * pch_uart: Fix MSI setting issue + - LP: #987337 + * USB: serial: fix race between probe and open + - LP: #987337 + * USB: pl2303: fix DTR/RTS being raised on baud rate change + - LP: #987337 + * USB: option: re-add NOVATELWIRELESS_PRODUCT_HSPA_HIGHSPEED to option_id + array + - LP: #987337 + * USB: ftdi_sio: fix status line change handling for TIOCMIWAIT and + TIOCGICOUNT + - LP: #987337 + * USB: ftdi_sio: fix race condition in TIOCMIWAIT, and abort of + TIOCMIWAIT when the device is removed + - LP: #987337 + * USB: sierra: add support for Sierra Wireless MC7710 + - LP: #987337 + * USB: don't clear urb->dev in scatter-gather library + - LP: #987337 + * USB: don't ignore suspend errors for root hubs + - LP: #987337 + * xhci: don't re-enable IE constantly + - LP: #987337 + * xhci: Don't write zeroed pointers to xHC registers. + - LP: #987337 + * xhci: Restore event ring dequeue pointer on resume. + - LP: #987337 + * USB: fix bug of device descriptor got from superspeed device + - LP: #987337 + * xHCI: add XHCI_RESET_ON_RESUME quirk for VIA xHCI host + - LP: #987337 + * xHCI: Correct the #define XHCI_LEGACY_DISABLE_SMI + - LP: #987337 + * fix tlb flushing for page table pages + - LP: #987337 + * serial: PL011: clear pending interrupts + - LP: #987337 + * serial: PL011: move interrupt clearing + - LP: #987337 + * fcaps: clear the same personality flags as suid when fcaps are used + - LP: #987337 + * ath9k: fix max noise floor threshold + - LP: #987337 + * xhci: Fix register save/restore order. + - LP: #987337 + * Bluetooth: hci_core: fix NULL-pointer dereference at unregister + - LP: #987337 + * pch_gpio: Support new device LAPIS Semiconductor ML7831 IOH + - LP: #987337 + * gpio: Add missing spin_lock_init in gpio-pch driver + - LP: #987337 + * usb: gadget: pch_udc: Fix disconnect issue + - LP: #987337 + * usb: gadget: pch_udc: Fix wrong return value + - LP: #987337 + * usb: gadget: pch_udc: Fix USB suspend issue + - LP: #987337 + * usb: gadget: pch_udc: Fix usb/gadget/pch_udc: Fix ether gadget + connect/disconnect issue + - LP: #987337 + * usb: gadget: pch_udc: Reduce redundant interrupt + - LP: #987337 + * ACPICA: Fix to allow region arguments to reference other scopes + - LP: #987337 + * security: fix compile error in commoncap.c + - LP: #987337 + * pch_gbe: Do not abort probe on bad MAC + - LP: #987337 + * pch_gbe: memory corruption calling pch_gbe_validate_option() + - LP: #987337 + * pch_dma: Support new device LAPIS Semiconductor ML7831 IOH + - LP: #987337 + * spi-topcliff-pch: fix -Wuninitialized warning + - LP: #987337 + * spi-topcliff-pch: Support new device LAPIS Semiconductor ML7831 IOH + - LP: #987337 + * Bluetooth: Add Atheros maryann PIDVID support + - LP: #987337 + * futex: Do not leak robust list to unprivileged process + - LP: #987337 + * drm/radeon/kms: fix the regression of DVI connector check + - LP: #987337 + * drm/radeon: disable MSI on RV515 + - LP: #987337 + * drm/radeon: fix load detect on rn50 with hardcoded EDIDs. + - LP: #987337 + * perf hists: Catch and handle out-of-date hist entry maps. + - LP: #987337 + * Linux 3.2.16 + - LP: #987337 + * KVM: Ensure all vcpus are consistent with in-kernel irqchip settings + - LP: #971685 + - CVE-2012-1601 + * HID: multitouch: correct eGalax a001 protocol + - LP: #913164 + * HID: multitouch: add more eGalax devices + - LP: #913164 + * HID: multitouch: add support for eGalax 0x722a + - LP: #913164 + * UAS: Re-add workqueue items if submission fails. + - LP: #901215 + * UAS: Use unique tags on non-streams devices. + - LP: #901215 + * UAS: Free status URB when we can't find the SCSI tag. + - LP: #901215 + * usb/uas: use unique tags for all LUNs + - LP: #901215 + * usb/uas: use scsi_host_find_tag() to find command from a tag + - LP: #901215 + * usb/uas: one only one status URB/host on stream-less connection + - LP: #901215 + * usb/uas: only bind if the hcd supports SG + - LP: #901215 + * usb/uas: move UAS structs / defines into a header file + - LP: #901215 + * usb/uas: add usb_pipe_usage_descriptor + - LP: #901215 + * usb/uas: make sure data urb is gone if we receive status before that + - LP: #901215 + * md: fix possible corruption of array metadata on shutdown. + - LP: #992038 + + -- Luis Henriques Mon, 30 Apr 2012 19:04:27 +0100 + +linux (3.2.0-24.37) precise-proposed; urgency=low + + [ Herton Ronaldo Krzesinski ] + + * d-i: Add hid-logitech-dj to input-modules + - LP: #975198 + * d-i: Add rtl8187 driver to nic-usb-modules + - LP: #971719 + + [ Ian Abbott ] + + * SAUCE: staging: comedi: Add module parameters for default buffer size + - LP: #981234 + * SAUCE: staging: comedi: Add kernel config for default buffer sizes + - LP: #981234 + + [ K. Y. Srinivasan ] + + * SAUCE: hv_storvsc: Account for in-transit packets in the RESET path + - LP: #978394 + + [ Leann Ogasawara ] + + * [Config] Set CONFIG_COMEDI_DEFAULT_BUF_[SIZE_KB,MAXSIZE_KB] + - LP: #981234 + + [ Luis Henriques ] + + * SAUCE: ite-cir: postpone ISR registration + - LP: #984387 + + [ Manoj Iyer ] + + * SAUCE: Bluetooth: btusb: Add vendor specific ID (0489 e042) for + BCM20702A0 + - LP: #980965 + + [ Tim Gardner ] + + * Extract firmware module info during getabi + * [Config] Remove hiq-quanta module references + - LP: #913164 + * [Config] powerpc-smp: build in ATI and RADEON frame buffer drivers + - LP: #949288 + + [ Trond Myklebust ] + + * SAUCE: NFSv4: Ensure that the LOCK code sets exception->inode + - LP: #974664 + * SAUCE: NFSv4: Ensure that we check lock exclusive/shared type against + open modes + - LP: #974664 + + [ Upstream Kernel Changes ] + + * Input: psmouse - allow drivers to use psmouse_{de,}activate + - LP: #969334 + * Input: psmouse - use psmouse_[de]activate() from sentelic and hgpk + drivers + - LP: #969334 + * Input: sentelic - refactor code for upcoming new hardware support + - LP: #969334 + * Input: sentelic - enabling absolute coordinates output for newer + hardware + - LP: #969334 + * Input: sentelic - minor code cleanup + - LP: #969334 + * Input: sentelic - improve packet debugging information + - LP: #969334 + * Input: sentelic - filter taps in absolute mode + - LP: #969334 + * drm/i915: Fixes distorted external screen image on HP 2730p + - LP: #796030 + * NFSv4: Minor cleanups for nfs4_handle_exception and + nfs4_async_handle_error + - LP: #974664 + * NFSv4: Rate limit the state manager for lock reclaim warning messages + - LP: #974664 + * HID: multitouch: merge quanta driver into hid-multitouch + - LP: #913164 + * HID: usbhid: add quirk no_get for quanta 3008 devices + - LP: #913164 + + -- Leann Ogasawara Tue, 24 Apr 2012 07:47:49 -0700 + +linux (3.2.0-23.36) precise-proposed; urgency=low + + [ Andy Whitcroft ] + + * tools/hv: add basic Makefile + - LP: #977246 + * tools/hv: add basic manual pages + - LP: #977246 + * Hyper-V KVP daemon -- add to the tools package + - LP: #977246 + + [ David Henningsson ] + + * SAUCE: (drop after 3.3) ALSA: HDA: Remove quirk for Gigabyte + GA-H61M-S2PV + - LP: #948360 + + [ Leann Ogasawara ] + + * d-i: Add dm-mirror and dm-raid to md-modules + - LP: #919281 + + [ Tim Gardner ] + + * [Config] Fix invalid linux-headers link + - LP: #974403 + * Remove headers asm symlink entirely + - LP: #974403 + + [ Upstream Kernel Changes ] + + * Revert "x86/ioapic: Add register level checks to detect bogus io-apic + entries" + - LP: #974982 + * ALSA: HDA: Realtek: Take vmaster dac from multiout dac list + - LP: #974090 + * kexec: remove KMSG_DUMP_KEXEC + - LP: #944772 + * kmsg_dump: don't run on non-error paths by default + - LP: #944772 + * pstore: Introduce get_reason_str() to pstore + - LP: #944772 + + -- Leann Ogasawara Tue, 10 Apr 2012 08:16:09 -0700 + +linux (3.2.0-22.35) precise; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: hotkey quirks for various Zeptro Znote and Fujitsu Amilo + laptops" + * SAUCE: (no-up) elide some ioctl warnings which are known benign + - LP: #972355 + + [ Brad Figg ] + + * SAUCE (no-up) Provide a param for allowing the BIOS to handle changing + the brightness on AC/battery status changes. + - LP: #949311 + * SAUCE (drop after 3.4) Quirk for enabling backlight hotkeys on Samsung + N150P + - LP: #875893 + + [ Colin Ian King ] + + * SAUCE: PCI: Allow pcie_aspm=force to work even when FADT indicates it + is unsupported + - LP: #962038 + + [ Daniel Vetter ] + + * SAUCE: (drop after 3.5) drm/i915: reinstate GM45 TV detection fix + - LP: #638939 + + [ Kees Cook ] + + * SAUCE: SECCOMP: audit: always report seccomp violations + * SAUCE: SECCOMP: adjust prctl constant + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_USBIP_CORE=m + - LP: #900384 + * Rebase to v3.2.14 + * [Config] Updateconfigs after rebase to v3.2.14 + + [ Stefan Bader ] + + * d-i: Fix module name for dm-raid45 + - LP: #969248 + + [ Tim Gardner ] + + * SAUCE: remove __initdata from vesafb_fix + - LP: #969309 + + [ Upstream Kernel Changes ] + + * Revert "sched: tg->se->load should be initialised to tg->shares" + * toshiba_acpi: make one-bit bitfields unsigned + - LP: #810015 + * ACPI: EC: Add ec_get_handle() + - LP: #810015 + * toshiba_acpi: Support alternate hotkey interfaces + - LP: #810015 + * toshiba_acpi: Support additional hotkey scancodes + - LP: #810015 + * toshiba_acpi: Refuse to load on machines with buggy INFO + implementations + - LP: #810015 + * ata_piix: Add Toshiba Satellite Pro A120 to the quirks list due to + broken suspend functionality. + - LP: #886850 + * sweep the floors and convert some .get_drvinfo routines to strlcpy + - LP: #921793 + * be2net: init (vf)_if_handle/vf_pmac_id to handle failure scenarios + - LP: #921793 + * be2net: stop checking the UE registers after an EEH error + - LP: #921793 + * be2net: don't log more than one error on detecting EEH/UE errors + - LP: #921793 + * be2net: stop issuing FW cmds if any cmd times out + - LP: #921793 + * be2net: Fix TX queue create for Lancer + - LP: #921793 + * be2net: add register dump feature for Lancer + - LP: #921793 + * be2net: Add EEPROM dump feature for Lancer + - LP: #921793 + * be2net: Fix VLAN promiscous mode for Lancer + - LP: #921793 + * be2net: Use V1 query link status command for lancer + - LP: #921793 + * be2net: Move to new SR-IOV implementation in Lancer + - LP: #921793 + * be2net: Fix error recovery paths + - LP: #921793 + * be2net: Add error handling for Lancer + - LP: #921793 + * be2net: Use new hash key + - LP: #921793 + * be2net: Fix non utilization of RX queues + - LP: #921793 + * be2net: netpoll support + - LP: #921793 + * be2net: update some counters to display via ethtool + - LP: #921793 + * be2net: workaround to fix a bug in BE + - LP: #921793 + * be2net: fix ethtool ringparam reporting + - LP: #921793 + * be2net: refactor/cleanup vf configuration code + - LP: #921793 + * be2net: Add support for Skyhawk cards + - LP: #921793 + * be2net: Fix INTx processing for Lancer + - LP: #921793 + * be2net: fix range check for set_qos for a VF + - LP: #921793 + * be2net: query link status in be_open() + - LP: #921793 + * netdev: make net_device_ops const + - LP: #921793 + * be2net: create RSS rings even in multi-channel configs + - LP: #921793 + * ethtool: Null-terminate filename passed to ethtool_ops::flash_device + - LP: #921793 + * sched: Fix nohz load accounting + - LP: #838811 + * ACPICA: Fix regression in FADT revision checks + - LP: #883441 + * asus-wmi: move WAPF variable into quirks_entry + - LP: #969576 + * eeepc-wmi: refine quirks handling + - LP: #969576 + * drm/i915: Sanitize BIOS debugging bits from PIPECONF + - LP: #968307 + * drivers: hv: Get rid of some unnecessary code + * drivers: hv: kvp: Add/cleanup connector defines + * drivers: hv: kvp: Move the contents of hv_kvp.h to hyperv.h + * net/hyperv: Convert camel cased variables in rndis_filter.c to lower + cases + * net/hyperv: Correct the assignment in netvsc_recv_callback() + * net/hyperv: Remove the unnecessary memset in rndis_filter_send() + * tools: hv: Use hyperv.h to get the KVP definitions + * drivers: hv: Cleanup the kvp related state in hyperv.h + * drivers: hv: kvp: Cleanup the kernel/user protocol + * drivers: hv: Increase the number of VCPUs supported in the guest + * net/hyperv: Fix data corruption in rndis_filter_receive() + * net/hyperv: Add support for vlan trunking from guests + * Drivers: hv: Add new message types to enhance KVP + * net/hyperv: fix erroneous NETDEV_TX_BUSY use + * NLS: improve UTF8 -> UTF16 string conversion routine + * Drivers: hv: Support the newly introduced KVP messages in the driver + * Tools: hv: Fully support the new KVP verbs in the user level daemon + * Tools: hv: Support enumeration from all the pools + * Drivers: scsi: storvsc: Properly handle errors from the host + * net: mv643xx_eth: fix build error + - LP: #921793 + * rebase to v3.2.14 + + -- Leann Ogasawara Tue, 03 Apr 2012 08:59:16 -0700 + +linux (3.2.0-21.34) precise; urgency=low + + [ AceLan Kao ] + + * SAUCE: (drop after 3.4) asus-wmi: add scalar board brightness adj. + support + - LP: #961879 + * SAUCE: (drop after 3.4) asus-wmi: store backlight power status for AIO + machine + - LP: #961880 + + [ Andy Whitcroft ] + + * [Config]: enable CONFIG_DRM_LOAD_EDID_FIRMWARE + + [ John Johansen ] + + * SAUCE: AppArmor: Add the ability to mediate mount + * SAUCE: AppArmor: Add profile introspection file to interface + * SAUCE: AppArmor: basic networking rules + * SAUCE: Update aufs for build failure caused by apparmor backport + * SAUCE: AppArmor: Fix change_onexec when called from a confined task + - LP: #963756 + + [ Leann Ogasawara ] + + * Revert "SAUCE: (drop after 3.3) platform/x86: Add driver for Apple gmux + device" + * Rebase to v3.2.13 + * d-i: Fix iwl3945 driver name typo in nic-modules + * d-i: Add missing iwl* drivers to nic-modules + - LP: #965116 + * d-i: Remove obsolete bcm43xx* drivers from nic-modules + * d-i: Add brcm*mac drivers to nic-modules + + [ Seth Forshee ] + + * SAUCE: (drop after 3.3) apple_bl: Add register/unregister functions + * SAUCE: (drop after 3.3) platform/x86: Add driver for Apple gmux device + + [ Tim Gardner ] + + * Add isci to debian scsi-modules udeb + - LP: #963306 + * SAUCE: fsam7400: use UMH_WAIT_PROC consistently + - LP: #963685 + * SAUCE: disable_nx should not be in __cpuinitdata section for X86_32 + - LP: #968233 + + [ Upstream Kernel Changes ] + + * Bluetooth: Adding USB device 13d3:3375 as an Atheros AR3012. + - LP: #916319 + * x86: Report cpb and eff_freq_ro flags correctly + - LP: #960461 + * x86/amd: Add missing feature flag for fam15h models 10h-1fh processors + - LP: #960461 + * KVM: Move cpuid code to new file + - LP: #960466 + * KVM: expose latest Intel cpu new features (BMI1/BMI2/FMA/AVX2) to guest + - LP: #960466 + * apparmor: add missing rcu_dereference() + * apparmor: fix module parameter handling + * btrfs, nfs, apparmor: don't pull mnt_namespace.h for no reason... + * switch security_path_chmod() to umode_t + * switch securityfs_create_file() to umode_t + * switch ->path_mkdir() to umode_t + * switch ->path_mknod() to umode_t + * capabilities: remove the task from capable LSM hook entirely + * switch security_path_chmod() to struct path * + * AppArmor: refactor securityfs to use structures + * AppArmor: add initial "features" directory to securityfs + * AppArmor: add "file" details to securityfs + * AppArmor: export known rlimit names/value mappings in securityfs + * AppArmor: Add mising end of structure test to caps unpacking + * AppArmor: Fix dropping of allowed operations that are force audited + * AppArmor: Fix underflow in xindex calculation + * AppArmor: fix mapping of META_READ to audit and quiet flags + * AppArmor: Fix the error case for chroot relative path name lookup + * AppArmor: Fix error returned when a path lookup is disconnected + * AppArmor: Fix oops in policy unpack auditing + * AppArmor: Add const qualifiers to generated string tables + * AppArmor: Retrieve the dentry_path for error reporting when path lookup + fails + * AppArmor: Minor cleanup of d_namespace_path to consolidate error + handling + * AppArmor: Update dfa matching routines. + * AppArmor: Move path failure information into aa_get_name and rename + * AppArmor: Add ability to load extended policy + * AppArmor: add const qualifiers to string arrays + * AppArmor: Fix location of const qualifier on generated string tables + * drm: allow loading an EDID as firmware to override broken monitor + * usermodehelper: use UMH_WAIT_PROC consistently + - LP: #963685 + * usermodehelper: introduce umh_complete(sub_info) + - LP: #963685 + * usermodehelper: implement UMH_KILLABLE + - LP: #963685 + * usermodehelper: kill umh_wait, renumber UMH_* constants + - LP: #963685 + * usermodehelper: ____call_usermodehelper() doesn't need do_exit() + - LP: #963685 + * kmod: introduce call_modprobe() helper + - LP: #963685 + * kmod: make __request_module() killable + - LP: #963685 + * x86, tsc: Fix SMI induced variation in quick_pit_calibrate() + - LP: #965586 + * drm/i915: Ignore LVDS on hp t5745 and hp st5747 thin client + - LP: #911916, #911920 + * drm/i915: Add Clientron E830 to the ignore LVDS list + - LP: #907055 + * rebase to v3.2.13 + + -- Leann Ogasawara Thu, 29 Mar 2012 08:33:38 -0700 + +linux (3.2.0-20.33) precise; urgency=low + + [ Upstream Kernel Changes ] + + * (pre-stable) ASPM: Fix pcie devices with non-pcie children + - LP: #961482 + + -- Leann Ogasawara Tue, 27 Mar 2012 08:37:43 -0700 + +linux (3.2.0-20.32) precise; urgency=low + + [ Andy Lutomirski ] + + * SAUCE: SECCOMP: Add PR_{GET,SET}_NO_NEW_PRIVS to prevent execve from + granting privs + + [ John Johansen ] + + * SAUCE: SECCOMP: Fix apparmor for PR_{GET,SET}_NO_NEW_PRIVS + + [ Kees Cook ] + + * SAUCE: SECCOMP: seccomp: remove duplicated failure logging + * [Config] SECCOMP_FILTER=y + + [ Upstream Kernel Changes ] + + * seccomp: audit abnormal end to a process due to seccomp + + [ Will Drewry ] + + * SAUCE: SECCOMP: sk_run_filter: add BPF_S_ANC_SECCOMP_LD_W + * SAUCE: SECCOMP: net/compat.c,linux/filter.h: share compat_sock_fprog + * SAUCE: SECCOMP: seccomp: kill the seccomp_t typedef + * SAUCE: SECCOMP: arch/x86: add syscall_get_arch to syscall.h + * SAUCE: SECCOMP: asm/syscall.h: add syscall_get_arch + * SAUCE: SECCOMP: seccomp: add system call filtering using BPF + * SAUCE: SECCOMP: seccomp: add SECCOMP_RET_ERRNO + * SAUCE: SECCOMP: signal, x86: add SIGSYS info and make it synchronous. + * SAUCE: SECCOMP: seccomp: Add SECCOMP_RET_TRAP + * SAUCE: SECCOMP: ptrace,seccomp: Add PTRACE_SECCOMP support + * SAUCE: SECCOMP: x86: Enable HAVE_ARCH_SECCOMP_FILTER + * SAUCE: SECCOMP: Documentation: prctl/seccomp_filter + + -- Leann Ogasawara Wed, 21 Mar 2012 14:03:41 -0700 + +linux (3.2.0-19.31) precise; urgency=low + + [ Stefan Bader ] + + * d-i: Add dm-multipath and scsi device handlers + - LP: #959749 + * d-i: Move multipath modules into their own udeb + - LP: #598251, #959749 + + [ Tim Gardner ] + + * [Config] Auto-detect do_tools setting + * [Config] correctly specify CROSS_COMPILE for tools build + * [Config] CONFIG_DRM_PSB_CDV=n + * Rebase to v3.2.12 + + [ Upstream Kernel Changes ] + + * powerpc/pmac: Fix SMP kernels on pre-core99 UP machines + - LP: #959959 + * rebase to v3.2.12 + + -- Leann Ogasawara Tue, 20 Mar 2012 09:11:26 -0700 + +linux (3.2.0-19.30) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] Fix typeo in the Hyper-V module names + + [ Colin Watson ] + + * [Config] Move kernels to "Section: kernel" + - LP: #499557 + + [ John Johansen ] + + * SAUCE: AppArmor: Add ability to load extended policy + * SAUCE: AppArmor: Add the ability to mediate mount + * SAUCE: AppArmor: Add profile introspection file to interface + * SAUCE: AppArmor: basic networking rules + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER + - LP: #952035 + * Rebase to v3.2.10 + * [Config] Update configs after rebase to v3.2.10 + * Rebase to v3.2.11 + * [Config] Disable CONFIG_STUB_POULSBO + - LP: #899244 + * [Config] Add CONFIG_DRM_PSB check to enforcer + - LP: #899244 + + [ Tim Gardner ] + + * [Config] Drop non-SMP powerpc + + [ Upstream Kernel Changes ] + + * net/hyperv: Use the built-in macro KBUILD_MODNAME for this driver + * x86: Derandom delay_tsc for 64 bit + * Bluetooth: Fix l2cap conn failures for ssp devices + - LP: #872044 + * KVM: x86: extend "struct x86_emulate_ops" with "get_cpuid" + - LP: #917842 + - CVE-2012-0045 + * KVM: x86: fix missing checks in syscall emulation + - LP: #917842 + - CVE-2012-0045 + * rebase to v3.2.11 + * rebase to v3.2.10 + + -- Leann Ogasawara Fri, 16 Mar 2012 08:02:07 -0700 + +linux (3.2.0-18.29) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] restore build-% shortcut + * SAUCE: ata_piix: defer disks to the Hyper-V drivers by default + - LP: #929545, #942316 + + [ Eugeni Dodonov ] + + * SAUCE: drm: give up on edid retries when i2c bus is not responding + - LP: #855124 + + [ Seth Forshee ] + + * SAUCE: (drop after 3.3) platform/x86: Add driver for Apple gmux device + - LP: #925544 + + [ Upstream Kernel Changes ] + + * bsg: fix sysfs link remove warning + - LP: #946928 + * regset: Prevent null pointer reference on readonly regsets + - LP: #949905 + - CVE-2012-1097 + * regset: Return -EFAULT, not -EIO, on host-side memory fault + - LP: #949905 + - CVE-2012-1097 + + [ Wu Fengguang ] + + * SAUCE: (drop after 3.4) ALSA: hda - add id for Atom Cedar Trail HDMI + codec + + -- Leann Ogasawara Fri, 09 Mar 2012 07:56:11 -0800 + +linux (3.2.0-18.28) precise; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- adapt to the new changelog handling + * ubuntu: AUFS -- sort out the relative header paths + * ubuntu: AUFS -- update to d266b0c5d0693d6383976ee54b9e2c0fa9a3f5b0 + + [ Chase Douglas ] + + * SAUCE: (drop after 3.3) HID: hid-magicmouse: Add pointer and buttonpad + properties for Magic Trackpad + * SAUCE: Input: synaptics - add second variant of two-button clickpad + * SAUCE: Input: synapticss - Set buttonpad property for all clickpads + + [ Johannes Berg ] + + * SAUCE: iwlwifi: fix key removal + - LP: #911059 + + [ John Johansen ] + + * Revert "SAUCE: AppArmor: Fix unpack of network tables." + * Revert "SAUCE: AppArmor: Allow dfa backward compatibility with broken + userspace" + * SAUCE: AppArmor: Add mising end of structure test to caps unpacking + * SAUCE: AppArmor: Fix dropping of allowed operations that are force + audited + * SAUCE: AppArmor: Fix underflow in xindex calculation + * SAUCE: AppArmor: fix mapping of META_READ to audit and quiet flags + * SAUCE: AppArmor: Fix the error case for chroot relative path name + lookup + - LP: #925028 + * SAUCE: AppArmor: Retrieve the dentry_path for error reporting when path + lookup fails + - LP: #925028 + * SAUCE: AppArmor: Minor cleanup of d_namespace_path to consolidate error + handling + * SAUCE: AppArmor: Update dfa matching routines. + * SAUCE: AppArmor: Move path failure information into aa_get_name and + rename + * SAUCE: AppArmor: Make chroot relative the default path lookup type + * SAUCE: AppArmor: Add ability to load extended policy + * SAUCE: AppArmor: basic networking rules + * SAUCE: AppArmor: Add profile introspection file to interface + * SAUCE: AppArmor: Add the ability to mediate mount + * SAUCE: AppArmor: Add mount information to apparmorfs + + [ Kees Cook ] + + * SAUCE: AppArmor: refactor securityfs to use structures + * SAUCE: AppArmor: add initial "features" directory to securityfs + * SAUCE: AppArmor: add "file" details to securityfs + * SAUCE: AppArmor: export known rlimit names/value mappings in securityfs + + [ Leann Ogasawara ] + + * Revert "[Config] Enable CONFIG_NVRAM=m" + - LP: #942193 + * Rebase to v3.2.7 + * [Config] Enable CONFIG_USB_SERIAL_QUATECH2=m on arm and powerpc + * [Config] Enable CONFIG_USB_SERIAL_QUATECH_USB2=m on arm and powerpc + * [Config] Add CONFIG_NVRAM to config enforcer + - LP: #942193 + * [Config] Enable CONFIG_SCSI_IBMVSCSI=m for powerpc + - LP: #943090 + * [Config] Enable CONFIG_SCSI_IPR=m for powerpc + - LP: #943090 + * provide ipmi udeb + - LP: #942926 + * Rebase to v3.2.9 + * Add ibmveth to d-i/modules-powerpc/nic-modules + - LP: #712188 + * [Config] Enable CONFIG_SCSI_IBMVFC=m for powerpc + - LP: #712188 + * Add ibmvfc and ibmvscsic to d-i/modules-powerpc/nic-modules + - LP: #712188 + + [ Seth Heasley ] + + * SAUCE: ALSA: hda - Add Lynx Point HD Audio Controller DeviceIDs + - LP: #900119 + * SAUCE: ahci: AHCI-mode SATA patch for Intel Lynx Point DeviceIDs + - LP: #900119 + * SAUCE: ata_piix: IDE-mode SATA patch for Intel Lynx Point DeviceIDs + - LP: #900119 + * SAUCE: i2c-i801: Add device IDs for Intel Lynx Point + - LP: #900119 + + [ Tim Gardner ] + + * [Config] updateconfigs after apparmor patches + * [Config] Added hv_netvsc and hv_storvsc to -virtual + - LP: #942256 + * [Config] Enable aufs + - LP: #943119 + + [ Upstream Kernel Changes ] + + * Revert "Revert "ath9k_hw: fix interpretation of the rx KeyMiss flag"" + * Revert "AppArmor: compatibility patch for v5 interface" + * Revert "AppArmor: compatibility patch for v5 network controll" + * ACPI / PM: Do not save/restore NVS on Asus K54C/K54HR + - LP: #898503 + * rebase to v3.2.9 + - LP: #900802 + * rebase to v3.2.8 + * rebase to v3.2.7 + - LP: #930842 + + -- Leann Ogasawara Fri, 02 Mar 2012 07:30:45 -0800 + +linux (3.2.0-17.27) precise; urgency=low + + [ Eugeni Dodonov ] + + * SAUCE: drm/i915: fix operator precedence when enabling RC6p + + -- Leann Ogasawara Tue, 21 Feb 2012 06:31:42 -0800 + +linux (3.2.0-17.26) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] clean up the human consumable package descriptions + * [Config] fix generic flavour description + * [Config] clean up linux-tools package descriptions + - LP: #593107 + * deviations -- note the source of the Hyper-V updates + * SAUCE: ata_piix: defer to the Hyper-V drivers by default + - LP: #929545 + + [ Eugeni Dodonov ] + + * SAUCE: drm/i915: do not enable RC6p on Sandy Bridge + + [ Kees Cook ] + + * SAUCE: (drop after 3.3) security: create task_free security callback + * SAUCE: (drop after 3.3) security: Yama LSM + * SAUCE: (drop after 3.3) Yama: add PR_SET_PTRACER_ANY + * SAUCE: Yama: add link restrictions + * SAUCE: security: unconditionally chain to Yama LSM + + [ Leann Ogasawara ] + + * Drop ndiswrapper + + [ Robert Hooker ] + + * SAUCE: drm/i915: Enable RC6 by default on sandybridge. + + [ Tim Gardner ] + + * SAUCE: ipheth: Add iPhone 4S + - LP: #900802 + * dropped hv_mouse + * [Config] CONFIG_X86_NUMACHIP=y + + [ Upstream Kernel Changes ] + + * Staging: hv: vmbus: Support building the vmbus driver as part of the + kernel + * hv: Add Kconfig menu entry + * Drivers: hv: Fix a memory leak + * Drivers: hv: Make the vmbus driver unloadable + * Drivers: hv: Get rid of an unnecessary check in hv.c + * Staging: hv: mousevsc: Make boolean states boolean + * Staging: hv: mousevsc: Inline the code for mousevsc_on_device_add() + * Staging: hv: mousevsc: Inline the code for reportdesc_callback() + * Staging: hv: mousevsc: Cleanup mousevsc_on_channel_callback() + * Staging: hv: mousevsc: Add a new line to a debug string + * Staging: hv: mousevsc: Get rid of unnecessary include files + * Staging: hv: mousevsc: Address some style issues + * Staging: hv: mousevsc: Add a check to prevent memory corruption + * Staging: hv: mousevsc: Use the KBUILD_MODNAME macro + * Staging: hv: storvsc: Use mempools to allocate struct + storvsc_cmd_request + * Staging: hv: storvsc: Cleanup error handling in the probe function + * Staging: hv: storvsc: Fixup the error when processing SET_WINDOW + command + * Staging: hv: storvsc: Fix error handling storvsc_host_reset() + * Staging: hv: storvsc: Use the accessor function shost_priv() + * Staging: hv: storvsc: Use the unlocked version queuecommand + * Staging: hv: storvsc: use the macro KBUILD_MODNAME + * Staging: hv: storvsc: Get rid of an unnecessary forward declaration + * Staging: hv: storvsc: Upgrade the vmstor protocol version + * Staging: hv: storvsc: Support hot add of scsi disks + * Staging: hv: storvsc: Support hot-removing of scsi devices + * staging: hv: Use kmemdup rather than duplicating its implementation + * staging: hv: move hv_netvsc out of staging area + * Staging: hv: mousevsc: Properly add the hid device + * Staging: hv: storvsc: Disable clustering + * Staging: hv: storvsc: Cleanup storvsc_device_alloc() + * Staging: hv: storvsc: Fix a bug in storvsc_command_completion() + * Staging: hv: storvsc: Fix a bug in copy_from_bounce_buffer() + * Staging: hv: storvsc: Implement per device memory pools + * Staging: hv: remove hv_mouse driver as it's now in the hid directory + * Staging: hv: update TODO file + * Staging: hv: storvsc: Fix a bug in create_bounce_buffer() + * net/hyperv: Fix long lines in netvsc.c + * net/hyperv: Add support for promiscuous mode setting + * net/hyperv: Fix the stop/wake queue mechanism + * net/hyperv: Remove unnecessary kmap_atomic in netvsc driver + * net/hyperv: Add NETVSP protocol version negotiation + * net/hyperv: Add support for jumbo frame up to 64KB + * net/hyperv: fix possible memory leak in do_set_multicast() + * net/hyperv: rx_bytes should account the ether header size + * net/hyperv: fix the issue that large packets be dropped under bridge + * net/hyperv: Use netif_tx_disable() instead of netif_stop_queue() when + necessary + * net/hyperv: Fix the page buffer when an RNDIS message goes beyond page + boundary + * HID: Move the hid-hyperv driver out of staging + * HID: hv_mouse: Properly add the hid device + * HID: hyperv: Properly disconnect the input device + * Staging: hv: storvsc: Cleanup some comments + * Staging: hv: storvsc: Cleanup storvsc_probe() + * Staging: hv: storvsc: Cleanup storvsc_queuecommand() + * Staging: hv: storvsc: Introduce defines for srb status codes + * Staging: hv: storvsc: Cleanup storvsc_host_reset_handler() + * Staging: hv: storvsc: Move and cleanup storvsc_remove() + * Staging: hv: storvsc: Add a comment to explain life-cycle management + * Staging: hv: storvsc: Get rid of the on_io_completion in + hv_storvsc_request + * Staging: hv: storvsc: Rename the context field in hv_storvsc_request + * Staging: hv: storvsc: Miscellaneous cleanup of storvsc driver + * Staging: hv: storvsc: Cleanup the code for generating protocol version + * Staging: hv: storvsc: Cleanup some protocol related constants + * Staging: hv: storvsc: Get rid of some unused defines + * Staging: hv: storvsc: Consolidate the request structure + * Staging: hv: storvsc: Consolidate all the wire protocol definitions + * Staging: hv: storvsc: Move the storage driver out of the staging area + * x86: Make flat_init_apic_ldr() available + * x86: Add x86_init platform override to fix up NUMA core numbering + * x86: Add NumaChip support + * x86/numachip: Drop unnecessary conflict with EDAC + * Input: bcm5974 - set BUTTONPAD property + + -- Leann Ogasawara Fri, 17 Feb 2012 10:12:34 -0800 + +linux (3.2.0-16.25) precise; urgency=low + + [ Andy Whitcroft ] + + * d-i -- include the Hyper-V drivers in the virtio udeb + - LP: #917135 + + [ Felix Fietkau ] + + * (pre-stable): ath9k_hw: fix a RTS/CTS timeout regression + - LP: #925602 + + [ Keith Packard ] + + * SAUCE: drm/i915: Force explicit bpp selection for + intel_dp_link_required + - LP: #745112, #912387, #917330 + + [ Leann Ogasawara ] + + * Fix typo in generic-pae description + - LP: #928448 + * Rebase to v3.2.6 + + [ Upstream Kernel Changes ] + + * procfs: parse mount options + - CVE-2011-4917 + * procfs: add hidepid= and gid= mount options + - CVE-2011-4917 + * proc: fix null pointer deref in proc_pid_permission() + - CVE-2011-4917 + * xhci: Remove warnings about MSI and MSI-X capabilities. + - LP: #929656 + * xhci: Remove scary warnings about transfer issues. + - LP: #929656 + * x86, mce, therm_throt: Don't report power limit and package level + thermal throttle events in mcelog + - LP: #930288 + * rebase to v3.2.6 + - LP: #924320 + - LP: #918254 + + -- Leann Ogasawara Mon, 13 Feb 2012 13:00:08 -0800 + +linux (3.2.0-15.24) precise; urgency=low + + [ Leann Ogasawara ] + + * Add CONFIG_THERM_ADT746X=y to config enforcer for powerpc and + powerpc-smp flavours + - LP: #923094 + + [ Merlin Schumacher ] + + * SAUCE: acer-wmi: support for P key on TM8372 + - LP: #865807 + + [ Tim Gardner ] + + * [Config] Rebase to v3.2.5 + * [Config] CONFIG_THERM_ADT746X=y + - LP: #923094 + + [ Upstream Kernel Changes ] + + * rebase to v3.2.5 + + -- Leann Ogasawara Tue, 07 Feb 2012 11:47:43 -0800 + +linux (3.2.0-14.23) precise; urgency=low + + [ Andy Whitcroft ] + + * debian -- add usage help to insert-mainline-changes + + [ Tim Gardner ] + + * [Config] Rebase to v3.2.3 + + [ Upstream Kernel Changes ] + + * Revert "ASoC: Don't go through cache when applying WM5100 rev A + updates" + * Revert "ASoC: Mark WM5100 register map cache only when going into + BIAS_OFF" + * rebase to v3.2.3 + + -- Leann Ogasawara Fri, 03 Feb 2012 12:12:25 -0800 + +linux (3.2.0-13.22) precise; urgency=low + + [ Alex Deucher ] + + * (pre-stable): drm/radeon/kms: move panel mode setup into encoder mode + set + - LP: #925538 + * (pre-stable): drm/radeon/kms: rework modeset sequence for DCE41 and + DCE5 + - LP: #925538 + + [ Andy Whitcroft ] + + * [Config] review IPv6 configuration options and enable + + [ David Henningsson ] + + * SAUCE: ALSA: HDA: Remove quirk for Toshiba Qosmio G50 + - LP: #923316 + * SAUCE: ALSA: HDA: Fix jack creation for codecs with front and rear Line + In + - LP: #923409 + + [ James M. Leddy ] + + * SAUCE: Bluetooth: Add support for BCM20702A0 [0a5c:21e6] + - LP: #906832 + + [ Manoj Iyer ] + + * SAUCE: Bluetooth: Add support for BCM20702A0 [0a5c:21e1] + - LP: #906832 + * SAUCE: Add vendor specific ID (0a5c 21f3) for BCM20702A0. + - LP: #925552 + + [ Seth Forshee ] + + * (pre-stable): drm/radeon/kms: disable output polling when suspended + - LP: #925570 + + [ Tim Gardner ] + + * [Config] CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m + - LP: #922221 + * [Config] Add mtip32xx to d-i block modules + - LP: #922221 + * [Config] Enable USB3.0 in d-i + + [ Upstream Kernel Changes ] + + * block: Add driver for Micron RealSSD pcie flash cards + - LP: #922221 + * mtip32xx: fix warnings/errors on 32-bit compiles + - LP: #922221 + * mtip32xx: cleanup compat ioctl handling + - LP: #922221 + * mtip32xx: ensure that all local functions are static + - LP: #922221 + * mtip32xx: mark a few more items static + - LP: #922221 + * mtip32xx: add module.h include to avoid conflict with moduleh tree + - LP: #922221 + * mtip32xx: update to new ->make_request() API + - LP: #922221 + * mtip32xx: updates based on feedback + - LP: #922221 + * mtip32xx: uninitialized variable in mtip_quiesce_io() + - LP: #922221 + * mtip32xx: do rebuild monitoring asynchronously + - LP: #922221 + * watchdog: iTCO_wdt: add Intel Lynx Point DeviceIDs + - LP: #900119 + * drm/i915: mask transcoder select bits before setting them on LVDS + - LP: #924989 + * (pre-stable) USB: Realtek cr: fix autopm scheduling while atomic + - LP: #917962 + * nouveau: properly check for _DSM function support + - LP: #925608 + * nouveau: Support Optimus models for vga_switcheroo + - LP: #925608 + + -- Leann Ogasawara Thu, 02 Feb 2012 13:26:59 -0800 + +linux (3.2.0-12.21) precise; urgency=low + + [ Upstream Kernel Changes ] + + * Revert "ath9k_hw: fix interpretation of the rx KeyMiss flag" + - LP: #923512 + + -- Leann Ogasawara Mon, 30 Jan 2012 06:46:01 -0800 + +linux (3.2.0-12.20) precise; urgency=low + + [ Andy Whitcroft ] + + * switch to new style rebase marker with bug number + + [ Leann Ogasawara ] + + * Add CONFIG_GPIO_TWL4030=y for arm[el|hf] to the config enforcer + - LP: #921934 + + [ Paolo Pisati ] + + * [Config] Switch CONFIG_GPIO_TWL4030=y back on arm[el|hf]. + - LP: #921934 + + [ Tim Gardner ] + + * Rebase to v3.2.2, CONFIG_SND_KCTL_JACK=y + * [Config] Add Hyper-V modules to virtual inclusion list + - LP: #922063 + + [ Upstream Kernel Changes ] + + * Revert "CHROMIUM: enable CONFIG_SECCOMP_FILTER and + CONFIG_HAVE_SECCOMP_FILTER" + * Revert "CHROMIUM: Fix kref usage" + * Revert "CHROMIUM: Fix seccomp_t compile error" + * Revert "CHROMIUM: seccomp_filter: make inherited filters composable" + * Revert "CHROMIUM: seccomp_filter: inheritance documentation" + * Revert "CHROMIUM: seccomp_filter: allow CAP_SYS_ADMIN management of + execve" + * Revert "CHROMIUM: seccomp_filter: remove "skip" from copy and add drop + helper" + * Revert "CHROMIUM: seccomp_filters: clean up warnings; kref mistake" + * Revert "CHROMIUM: seccomp_filters: guard all ftrace wrapper code" + * Revert "CHROMIUM: seccomp_filter: kill NR_syscall references" + * Revert "CHROMIUM: enable CONFIG_BTREE" + * Revert "CHROMIUM: seccomp_filters: move to btrees" + * Revert "CHROMIUM: arm: select HAVE_SECCOMP_FILTER" + * Revert "CHROMIUM: x86: add HAVE_SECCOMP_FILTER and seccomp_execve" + * Revert "CHROMIUM: seccomp_filter: Document what seccomp_filter is and + how it works." + * Revert "CHROMIUM: seccomp_filter: add process state reporting" + * Revert "CHROMIUM: seccomp_filter: new mode with configurable syscall + filters" + * rebase to v3.2.2 + - LP: #795823 + - LP: #909419 + - LP: #724831 + + -- Tim Gardner Thu, 26 Jan 2012 02:54:56 +0000 + +linux (3.2.0-11.19) precise; urgency=low + + [ Daniel Lezcano ] + + * SAUCE: Add reboot_pid_ns to handle the reboot syscall + - LP: #914676 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Introduce snd_hda_get_pin_label() + * ALSA: hda - Cache the jack-detection value + * ALSA: hda - Create jack-detection kcontrols + * ALSA: hda - Manage unsol tags in hda_jack.c + * ALSA: Introduce common helper functions for jack-detection control + * ALSA: HDA: Jack: Export required functions from hda_jack.c + * ALSA: hda/jack - Fix NULL-dereference at probing + * ALSA: hda/jack - Fix the assignment of input jack-type + * ALSA: hda - Add missing initialization of kctl jack status + * ALSA: hda - Add missing inclusion of linux/export.h + * ALSA: hda - Give more unique names by snd_hda_get_pin_label() + * ALSA: hda - Fix a typo + * ALSA: hda - Don't add channel suffix for headphone pin labels + * ALSA: hda - Integrate input-jack stuff into kctl-jack + * ALSA: hda/realtek - Avoid conflict of unsol-events with static quirks + * ALSA: hda/realtek - Remove use_jack_tbl field + + -- Leann Ogasawara Wed, 25 Jan 2012 06:57:19 -0800 + +linux (3.2.0-10.18) precise; urgency=low + + [ Tim Gardner ] + + * SAUCE: ecryptfs: Print inode on metadata error + + [ Upstream Kernel Changes ] + + * Revert "proc: enable writing to /proc/pid/mem" + - LP: #919115 + - CVE-2012-0056 + * (pre-stable) ALSA: HDA: Use LPIB position fix for Macbook Pro 7, 1 + - LP: #909419 + + -- Andy Whitcroft Tue, 24 Jan 2012 10:15:12 +0000 + +linux (3.2.0-10.17) precise; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: overlayfs -- fs: limit filesystem stacking depth" + * Revert "SAUCE: overlayfs -- overlay: overlay filesystem documentation" + * Revert "SAUCE: overlayfs -- overlayfs: implement show_options" + * Revert "SAUCE: overlayfs -- overlayfs: add statfs support" + * Revert "SAUCE: overlayfs -- overlay filesystem" + * Revert "SAUCE: overlayfs -- vfs: introduce clone_private_mount()" + * Revert "SAUCE: overlayfs -- vfs: export do_splice_direct() to modules" + * Revert "SAUCE: overlayfs -- vfs: add i_op->open()" + * ensure debian/ is not excluded from git by default + * add new scripting to handle buglinks in rebases + * ubuntu: overlayfs -- overlayfs: add statfs support + * ubuntu: overlayfs -- overlayfs: apply device cgroup and security + permissions to overlay files + - LP: #915941, #918212 + - CVE-2012-0055 + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Leann Ogasawara ] + + * Revert "SAUCE: dmar: disable if ricoh multifunction detected" + * [Config] Disable CONFIG_INTEL_IOMMU_DEFAULT_ON + - LP: #907377, #911236 + * [Config] Enable CONFIG_IRQ_REMAP + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: pass struct path to __dentry_open() + * ubuntu: overlayfs -- vfs: add i_op->open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Upstream Kernel Changes ] + + * (pre-stable) x86/PCI: amd: factor out MMCONFIG discovery + - LP: #647043 + * (pre-stable) PNP: work around Dell 1536/1546 BIOS MMCONFIG bug that + breaks USB + - LP: #647043 + + -- Leann Ogasawara Mon, 16 Jan 2012 07:10:08 -0800 + +linux (3.2.0-9.16) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] Enable numerous CONFIG_VIDEO_* cards on ARM + * [Config] pull ARM sound modules =m + * [Config] CONFIG_RTC_DRV_TEST is for testing only + * [Config] CONFIG_USB_DUMMY_HCD is testing only + * [Config] CONFIG_USB_FILE_STORAGE is deprecated + + [ Leann Ogasawara ] + + * Revert "[Config] Temporarily disable CONFIG_CAN_TI_HECC on armel" + * [Config] Enable CONFIG_HW_RANDOM_PASEMI=m + * [Config] Enable CONFIG_MMC_TMIO=m + * [Config] Enable CONFIG_MTD_NAND_FSL_ELBC=m + * [Config] Enable CONFIG_ISI=m + * [Config] Enable CONFIG_MMC=y + * [Config] Enable CONFIG_LIRC_PARALLEL=m + * [Config] Enable CONFIG_MAC_EMUMOUSEBTN=m + * [Config] Enable CONFIG_CHR_DEV_SG=y + * [Config] Enable CONFIG_GPIO_PCA953X=m + * [Config] Enable CONFIG_GPIO_TWL4030=m + * [Config] Enable CONFIG_INET_DIAG=m + * [Config] Enable CONFIG_NLS_ISO8859_1=m + * [Config] Enable CONFIG_NVRAM=m + * [Config] Enable CONFIG_SLIP=m + * [Config] Enable CONFIG_PC300TOO=m + * [Config] Enable CONFIG_TUN=y + * [Config] Enable CONFIG_NET_CLS_CGROUP=m + * [Config] Enable CONFIG_THERMAL=y + * [Config] Enable CONFIG_PPP=y + * [Config] Enable CONFIG_PCI_STUB=m + * Rebase to v3.2.1 + * [Config] Enable CONFIG_RTL8192E=m + * [Config] Enable CONFIG_RTS5139=m + + [ Stefan Bader ] + + * [Config] Make CONFIG_VIRTIO_(NET|BLK)=y + + [ Upstream Kernel Changes ] + + * ARM: restart: add restart hook to machine_desc record + * ARM: restart: allow platforms more flexibility specifying restart mode + * ARM: restart: move reboot failure handing into machine_restart() + * ARM: restart: remove argument to setup_mm_for_reboot() + * ARM: 7159/1: OMAP: Introduce local common.h files + * ARM: restart: only perform setup for restart when soft-restarting + * ARM: 7189/1: OMAP3: Fix build break in cpuidle34xx.c because of irq + function + * ARM: idmap: populate identity map pgd at init time using .init.text + * ARM: suspend: use idmap_pgd instead of suspend_pgd + * ARM: proc-*.S: place cpu_reset functions into .idmap.text section + * ARM: idmap: use idmap_pgd when setting up mm for reboot + * ARM: head.S: only include __turn_mmu_on in the initial identity mapping + * ARM: SMP: use idmap_pgd for mapping MMU enable during secondary booting + * ARM: 7194/1: OMAP: Fix build after a merge between v3.2-rc4 and ARM + restart changes + * ARM: lib: add call_with_stack function for safely changing stack + * ARM: reset: implement soft_restart for jumping to a physical address + * ARM: stop: execute platform callback from cpu_stop code + * ARM: kexec: use soft_restart for branching to the reboot buffer + * ARM: restart: omap: use new restart hook + * topdown mmap support + - LP: #861296 + + [ Upstream Kernel Changes ] + + * Rebase to v3.2.1 + + -- Leann Ogasawara Fri, 13 Jan 2012 20:32:08 +0100 + +linux (3.2.0-8.15) precise; urgency=low + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_ACPI_PROCFS + * Remove server from getabis + * Temporarily disable module check + * [Config] Disable CONFIG_MTD_TESTS + * [Config] Disable CONFIG_X86_E_POWERSAVER + * [Config] Set CONFIG_ARCNET=m + * [Config] Enable CONFIG_ATM_DUMMY=m + * [Config] Enable CONFIG_BLK_DEV_MD=y + * ubuntu: fsam7400 select CHECK_SIGNATURE and depend on X86 + * [Config] Enable CONFIG_BLK_DEV_SD=y + * [Config] Enable CONFIG_BLK_DEV_SR=y + * [Config] Enable CONFIG_BLK_DEV_UB=m + * [Config] Enable CONFIG_COPS=m + * [Config] Enable CONFIG_DVB_USB_EC168=m + * [Config] Enable CONFIG_ENC28J60=m + * [Config] Enable CONFIG_FB_UVESA=m + * [Config] Enable CONFIG_FB_ATY=m + * [Config] Enable CONFIG_BROADCOM_PHY=y + * [Config] Enable CONFIG_CICADA_PHY=y + * [Config] Enable CONFIG_DAVICOM_PHY=y + * [Config] Enable CONFIG_ICPLUS_PHY=y + * [Config] Enable CONFIG_LSI_ET1011C_PHY=y + * [Config] Enable CONFIG_LXT_PHY=y + * [Config] Enable CONFIG_MARVELL_PHY=y + * [Config] Enable CONFIG_NATIONAL_PHY=y + * [Config] Enable CONFIG_QSEMI_PHY=y + * [Config] Enable CONFIG_SMSC_PHY=y + * [Config] Enable CONFIG_VITESSE_PHY=y + * Add 3w-sas to scsi-modules + - LP: #776542 + + [ Mathieu Trudel-Lapierre ] + + * SAUCE: ipv6: make the net.ipv6.conf.all.use_tempaddr sysctl propagate + to interface settings + + [ Paolo Pisati ] + + * Revert "SAUCE: omap3: beagle: if rev unknown, assume xM revision C" + - LP: #912199 + * Revert "SAUCE: omap3: beagle: detect new xM revision B" + - LP: #912199 + * Revert "SAUCE: omap3: beaglexm: fix DVI initialization" + - LP: #912199 + + [ Upstream Kernel Changes ] + + * Bluetooth: Add support for BCM20702A0 [0a5c:21e3] + - LP: #906832 + + -- Leann Ogasawara Fri, 06 Jan 2012 10:02:03 -0800 + +linux (3.2.0-8.14) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_SND_USB_6FIRE + - LP: #912197 + * rebase to mainline v3.2 final release + * updateconfigs following rebase to v3.2 final + * ubuntu: AUFS -- add BOM and automated update script + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + * ubuntu: AUFS -- update aufs-update to track new locations of headers + * ubuntu: AUFS -- clean up the aufs updater and BOM + * ubuntu: AUFS -- documentation on updating aufs2 + * ubuntu: AUFS -- aufs3-base.patch + * ubuntu: AUFS -- aufs3-standalone.patch + * ubuntu: AUFS -- fix undefined __devcgroup_inode_permission + * ubuntu: AUFS -- fix undefined security_path_link + * ubuntu: AUFS -- update to 4cf5db36bcd9748e8e7270022f295f84d1fc2245 + * ubuntu: AUFS -- updateconfigs following update + * ubuntu: AUFS -- suppress benign plink warning messages + - LP: #621195 + * ubuntu: AUFS -- enable in config and makefile + * ubuntu: AUFS -- disable in favor of overlayfs + * [Config] linux-virtual -- should include the extX modules + - LP: #912308 + + [ Tyler Hicks ] + + * SAUCE: eCryptfs: Improve statfs reporting + - LP: #885744 + + [ Upstream Kernel Changes ] + + * rebase to upstream v3.2 + + -- Leann Ogasawara Mon, 26 Dec 2011 20:24:30 -0800 + +linux (3.2.0-7.13) precise; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to upstream 3.2-rc7 + + -- Leann Ogasawara Mon, 19 Dec 2011 09:14:34 -0800 + +linux (3.2.0-6.12) precise; urgency=low + + [ Upstream Kernel Changes ] + + * rebase to upstream v3.2-rc6 + + -- Leann Ogasawara Fri, 16 Dec 2011 10:19:02 -0800 + +linux (3.2.0-5.11) precise; urgency=low + + [ Andy Whitcroft ] + + * enforcer -- allow arch and flavour predicates to take lists + * enforcer -- simplify armel/armhf specific options + * enforcer -- fix incorrectly specified flavour matches + + [ Leann Ogasawara ] + + * [Config] Disable IRQ_REMAP + * [Config] Enable CONFIG_SENSORS_LM95245=m + * [Config] Enable CONFIG_SENSORS_MAX1668=m + * [Config] Enable CONFIG_SENSORS_NTC_THERMISTOR=m + * [Config] Enable CONFIG_SENSORS_MAX6639=m + * [Config] Enable CONFIG_SENSORS_MAX6642=m + * [Config] Enable CONFIG_SENSORS_LINEAGE=m + * [Config] Enable CONFIG_CRYPTO_SALSA20=m + * [Config] Enable CONFIG_PATA_TOSHIBA=m + * [Config] Enable CONFIG_POHMELFS=m + * [Config] Enable CONFIG_NET_PACKET_ENGINE=y + * [Config] Enable CONFIG_PATA_OPTI=m + * add overlayfs to virtual inclusion list + - LP: #903897 + * add veth to virtual inclusion list + - LP: #903897 + * SAUCE: resolve WARNING: at drivers/block/floppy.c:2929 do_fd_request + + [ Paolo Pisati ] + + * [Config] DEFAULT_MMAP_MIN_ADDR=32k on arm + - LP: #903346 + + [ Tim Gardner ] + + * [Config] CONFIG_LOCKUP_DETECTOR=y + - LP: #903615 + + [ Upstream Kernel Changes ] + + * rebase to upstream 55b02d2f + + -- Leann Ogasawara Mon, 12 Dec 2011 07:08:10 -0800 + +linux (3.2.0-4.10) precise; urgency=low + + [ Kyle McMartin ] + + * SAUCE: dmar: disable if ricoh multifunction detected + - LP: #894070 + + [ Seth Forshee ] + + * SAUCE: dell-wmi: Demote unknown WMI event message to pr_debug + - LP: #581312 + + [ Tim Gardner ] + + * Start new release, Bump ABI, rebase to 3.2-rc5 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_SENSORS_AK8975=m + + -- Tim Gardner Sat, 10 Dec 2011 08:57:04 -0700 + +linux (3.2.0-3.9) precise; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: ext4: correct partial write discard size calculation + - LP: #894768 + + [ Leann Ogasawara ] + + * Revert "SAUCE: x86, microcode, AMD: Restrict microcode reporting" + - LP: #892615 + + [ Matthew Garrett ] + + * SAUCE: pci: Rework ASPM disable code + + [ Upstream Kernel Changes ] + + * x86: Fix boot failures on older AMD CPU's + - LP: #892615 + * EHCI : Fix a regression in the ISO scheduler + - LP: #899165 + + -- Leann Ogasawara Mon, 05 Dec 2011 10:37:36 -0800 + +linux (3.2.0-3.8) precise; urgency=low + + [ Andy Whitcroft ] + + * armhf -- add d-i configuration + * armhf -- disable ABI checks for armhf + * armhf -- add arch to getabis config + + -- Andy Whitcroft Sat, 03 Dec 2011 14:22:52 +0000 + +linux (3.2.0-3.7) precise; urgency=low + + [ Stefan Bader ] + + * SAUCE: x86/paravirt: PTE updates in k(un)map_atomic need to be + synchronous, regardless of lazy_mmu mode + - LP: #854050 + + [ Tim Gardner ] + + * rebase to v3.2-rc4 + + -- Leann Ogasawara Fri, 02 Dec 2011 11:53:56 -0800 + +linux (3.2.0-2.6) precise; urgency=low + + [ Andy Whitcroft ] + + * armhf -- fix omap flavour to build on armhf + * [Config] CONFIG_PATA_MACIO=y to fix MAC qemu boot + + [ Borislav Petkov ] + + * SAUCE: x86, microcode, AMD: Restrict microcode reporting + - LP: #892615 + + [ Colin Watson ] + + * Add pata_macio to pata-modules + + [ Tim Gardner ] + + * [Config] Prefer crda over wireless-crda + * [Config] Fix virtual inclusion list. + - LP: #897795 + + -- Leann Ogasawara Wed, 30 Nov 2011 06:09:35 -0800 + +linux (3.2.0-2.5) precise; urgency=low + + [ Paolo Pisati ] + + * [Config] PANEL_DVI=y + + -- Leann Ogasawara Mon, 28 Nov 2011 09:13:24 -0800 + +linux (3.2.0-2.4) precise; urgency=low + + [ Andy Whitcroft ] + + * rebase to v3.2-rc3 + + [ Leann Ogasawara ] + + * Revert "SAUCE: xen: Do not use pv spinlocks on HVM" + * Revert "fix ERROR: __devcgroup_inode_permission undefined" + * Revert "olpc_dcon_xo_1_5 needs delay.h" + * Revert "olpc_dcon_xo_1 needs delay.h" + * rebase to 6fe4c6d4 + * [Config] updateconfigs after rebase to 6fe4c6d4 + + [ Tim Gardner ] + + * [Config] Replace wireless-crda with crda,wireless-regdb + - LP: #856421 + * [Config] Relax the dependencies on crda + + [ Upstream Kernel Changes ] + + * (pre-stable) HID: bump maximum global item tag report size to 96 bytes + - LP: #724831 + * Ubuntu: remove coreutils|fileutils package dependency + - LP: #892814 + * iio: iio_event_getfd -- fix ev_int build failure + + [ Upstream Kernel Changes ] + + * Rebase to v3.2-rc3 + + -- Andy Whitcroft Thu, 24 Nov 2011 16:20:45 +0000 + +linux (3.2.0-1.3) precise; urgency=low + + [ Upstream Kernel Changes ] + + * Ubuntu: Add ext2 to fs-core-modules + - LP: #893395 + + -- Leann Ogasawara Mon, 21 Nov 2011 20:42:33 -0800 + +linux (3.2.0-1.2) precise; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_NFC and associated devices + * SAUCE: allow brcmsmac and b43 to both build + + [ Soren Hansen ] + + * Add ixgbe driver to d-i + - LP: #891969 + + -- Leann Ogasawara Mon, 21 Nov 2011 08:33:46 -0800 + +linux (3.2.0-1.1) precise; urgency=low + [ Andy Whitcroft ] + + * armhf -- enable armhf and create the first flavours + * SAUCE: ensure root is ready before running usermodehelpers in it + * [Config] enforcer -- ensure CONFIG_FAT_FS is built-in on arm + + [ Leann Ogasawara ] + + * Temporarily ignore module check + * [Config] Enable PCI_IOV on powerpc + * [Config] Temporarily disable CONFIG_PASEMI_MAC on powerpc + * rebase to v3.2-rc2 + * SAUCE: include for cpuidle34xx arm build + * SAUCE: include for linux/mtd/map.h arm build + * SAUCE: include and for mmc_core arm build + * SAUCE: select ARM_AMBA if OMAP3_EMU + * [Config] updateconfigs after select ARM_AMBA + * [Config] Temporarily disable CONFIG_KVM_BOOK3S_32 on powerpc + * [Config] Enable CONFIG_EXT2_FS=m + * [Config] Build in CONFIG_SATA_AHCI=y + * Resolve linux-image-extra's install dependency + + [ Seth Forshee ] + + * [Config] Enable EVENT_POWER_TRACING_DEPRECATED=y for powertop + * SAUCE: (drop after 3.2) Input: ALPS - move protocol information to + Documentation + * SAUCE: (drop after 3.2) Input: ALPS - add protocol version field in + alps_model_info + * SAUCE: (drop after 3.2) Input: ALPS - remove assumptions about packet + size + * SAUCE: (drop after 3.2) Input: ALPS - add support for protocol versions + 3 and 4 + * SAUCE: (drop after 3.2) Input: ALPS - add semi-MT support for v3 + protocol + * SAUCE: (drop after 3.2) Input: ALPS - add documentation for protocol + versions 3 and 4 + + [ Stefan Bader ] + + * [Config] Built-in xen-netfront and xen-blkfront + * Fix build of dm-raid45 and re-enable it + + [ Tim Gardner ] + + * [Config] CONFIG_USB_XHCI_HCD=y + - LP: #886167 + * [Config] CONFIG_R6040=m + - LP: #650899 + * SAUCE: Add a new entry (413c:8197) to Bluetooth USB device ID table + - LP: #854399 + * [Config] Consolidated amd64 server flavour into generic + * [Config] updateconfigs after rebase to 3.2-rc1 + * [Config] Disabled dm-raid4-5 + * [Config] Disabled ndiswrapper + * [Config] Disable vt6656 + * [Config] exclude ppp-modules for virtual flavour + * [Config] CONFIG_MEMSTICK_R592=m + - LP: #238208 + + [ Upstream Kernel Changes ] + + * CHROMIUM: seccomp_filter: new mode with configurable syscall filters + - LP: #887780 + * CHROMIUM: seccomp_filter: add process state reporting + - LP: #887780 + * CHROMIUM: seccomp_filter: Document what seccomp_filter is and how it + works. + - LP: #887780 + * CHROMIUM: x86: add HAVE_SECCOMP_FILTER and seccomp_execve + - LP: #887780 + * CHROMIUM: arm: select HAVE_SECCOMP_FILTER + - LP: #887780 + * CHROMIUM: seccomp_filters: move to btrees + * CHROMIUM: enable CONFIG_BTREE + * CHROMIUM: seccomp_filter: kill NR_syscall references + * CHROMIUM: seccomp_filters: guard all ftrace wrapper code + * CHROMIUM: seccomp_filters: clean up warnings; kref mistake + * CHROMIUM: seccomp_filter: remove "skip" from copy and add drop helper + * CHROMIUM: seccomp_filter: allow CAP_SYS_ADMIN management of execve + * CHROMIUM: seccomp_filter: inheritance documentation + * CHROMIUM: seccomp_filter: make inherited filters composable + * CHROMIUM: Fix seccomp_t compile error + - LP: #887780 + * CHROMIUM: Fix kref usage + - LP: #887780 + * CHROMIUM: enable CONFIG_SECCOMP_FILTER and CONFIG_HAVE_SECCOMP_FILTER + * rebase to v3.2-rc2 + + -- Leann Ogasawara Mon, 31 Oct 2011 09:24:39 -0400 + +linux (3.1.0-2.3) precise; urgency=low + + [ Tim Gardner ] + + * Add postinit and postrm scripts to the extras package + - LP: #882120 + + -- Leann Ogasawara Fri, 28 Oct 2011 12:48:33 -0700 + +linux (3.1.0-2.2) precise; urgency=low + + [ Andy Whitcroft ] + + * debian: add locking to protect debian/files from parallel update + + [ Leann Ogasawara ] + + * rebase to v3.1 + + [ Upstream Kernel Changes ] + + * rebase to v3.1 + + -- Leann Ogasawara Wed, 19 Oct 2011 07:12:38 -0700 + +linux (3.1.0-1.1) precise; urgency=low + + [ Andiry Xu ] + + * SAUCE: (drop during 3.2 merge) xHCI: AMD isoc link TRB chain bit quirk + - LP: #872811 + + [ Andy Whitcroft ] + + * Revert "ubuntu: compcache -- follow changes to bd_claim/bd_release" + - LP: #832694 + * Revert "ubuntu: compcache -- version 0.5.3" + - LP: #832694 + * [Config] standardise CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m + * [Config] Enable CONFIG_MACVTAP=m + - LP: #822601 + * record the compiler in the ABI and check for inconsistant builds + * [Config] move ECRYPT_FS back to =y for all architectures + - LP: #827197 + * [Config] enable CONFIG_DRM_VMWGFX=m + - LP: #698009 + * [Config] re-fix ECRYPT_FS=y + - LP: #827197 + * enforcer -- ensure we have CONFIG_ECRYPT_FS=y + - LP: #827197 + * [Config] dropping compcache configuration options + * [Config] standardise on HZ=250 + * SAUCE: headers_install: fix #include "..." usage for userspace + - LP: #824377 + * make module-inclusion selection retain the left overs + * add a new linux-image-extras package for virtual + + [ Colin Watson ] + + * Deliver more Atheros, Ralink, and iwlagn NIC drivers to d-i + + [ edwin_rong ] + + * SAUCE: Staging: add driver for Realtek RTS5139 cardreader + - LP: #824273 + + [ Greg Kroah-Hartman ] + + * SAUCE: staging: rts5139: add vmalloc.h to some files to fix the build. + - LP: #824273 + + [ Jesse Sung ] + + * SAUCE: Unregister input device only if it is registered + - LP: #839238 + + [ Jiri Kosina ] + + * SAUCE: HID: add MacBookAir4, 2 to hid_have_special_driver[] + + [ Joshua V. Dillon ] + + * SAUCE: HID: add support for MacBookAir4,2 keyboard. + + [ Kees Cook ] + + * [Config] enable and enforce SECCOMP_FILTER on x86 + + [ Keng-Yu Lin ] + + * [Config] Enable CONFIG_RTS5139=m on i386/amd64 + - LP: #824273 + + [ Leann Ogasawara ] + + * Revert "ubuntu: overlayfs -- ovl: make lower mount read-only" + * Revert "ubuntu: overlayfs -- fs: limit filesystem stacking depth" + * Revert "ubuntu: overlayfs -- ovl: improve stack use of lookup and + readdir" + * Revert "ubuntu: overlayfs -- ovl: fix overlayfs over overlayfs" + * Revert "ubuntu: overlayfs -- overlayfs: implement show_options" + * Revert "ubuntu: overlayfs -- overlayfs: add statfs support" + * Revert "ubuntu: overlayfs -- overlay filesystem" + * Revert "ubuntu: overlayfs -- overlay: overlay filesystem documentation" + * Revert "SAUCE: ARM: OMAP: Add macros for comparing silicon revision" + * Revert "SAUCE: OMAP: DSS2: check for both cpu type and revision, rather + than just revision" + * Revert "SAUCE: OMAP: DSS2: enable hsclk in dsi_pll_init for OMAP36XX" + * Revert "ubuntu: fsam7400 disable driver" + - LP: #876030 + * rebase to v3.1-rc1 + * [Config] updateconfigs after rebase to v3.1-rc1 + * rebase to v3.1-rc2 + * [Config] Updateconfigs after rebase to v3.1-rc2 + * ubuntu: Yama - update calls to generic_permission() and + inode->i_op->permission() + * ubuntu: ndiswrapper -- remove netdev_priv macro + * ubuntu: aufs -- Temporarily disable due to build failure + * [Config] Diable INTEL_MID_PTI on armel + * [Config] Temporarily disable CONFIG_FTMAC100 on armel + * [Config] Temporarily disable CONFIG_FTGMAC100 on armel + * [Config] Temporarily disable CONFIG_CAN_TI_HECC on armel + * [Config] Temporarily disable CONFIG_VIDEO_OMAP2_VOUT on armel + * [Config] Set CONFIG_DM_MIRROR=m on amd64, i386, and arm + * [Config] Set CONFIG_DM_MULTIPATH=m on amd64, i386, and arm + * [Config] Set CONFIG_DM_SNAPSHOT=m on amd64, i386, and arm + * [Config] Enable CONFIG_EDAC_AMD8111=m on powerpc + * [Config] Enable CONFIG_EDAC_AMD8131=m on powerpc + * [Config] Enable CONFIG_EDAC_CPC925=m on powerpc + * [Config] Enable CONFIG_EDAC_PASEMI=m on powerpc + * [Config] Enable CONFIG_ECHO=m on powerpc + * [Config] Enable CONFIG_ET131X=m on powerpc + * [Config] Set CONFIG_FB_MATROX=m + * [Config] Enable CONFIG_FB_UDL=m on powerpc + * [Config] Set CONFIG_FB_VIRTUAL=n + * [Config] Enable CONFIG_FB_VGA16=m on powerpc + * [Config] Enable CONFIG_GPIO_MAX732X=m on arm + * [Config] Enable CONFIG_GPIO_PCF857X=m on arm + * [Config] Set CONFIG_HOTPLUG_PCI_FAKE=m + * [Config] Enable CONFIG_HOTPLUG_PCI=y on powerpc + * [Config] Enable CONFIG_HOTPLUG_PCI_CPCI=y on powerpc + * [Config] Enable CONFIG_HP_ILO=m on powerpc-smp + * [Config] Enable CONFIG_I2C_PASEMI=m on powerpc + * [Config] Enable CONFIG_IBM_BSR=m on powerpc + * [Config] Enable CONFIG_IBMVETH=m on powerpc + * [Config] Enable CONFIG_IDE_PHISON=m on powerpc + * [Config] Enable CONFIG_IGB=m on powerpc + * [Config] Enable CONFIG_IIO=m on powerpc + * [Config] Enable CONFIG_INFINIBAND_NES=m + * [Config] Enable CONFIG_IPMI_HANDLER=m on arm + * [Config] Enable CONFIG_IWL3945=m on powerpc + * [Config] Disable CONFIG_KVM_BOOK3S_64 + * [Config] Enable CONFIG_LAPBETHER=m on arm + * [Config] Enable CONFIG_LEDS_GPIO=m on powerpc + * [Config] Enable CONFIG_LEDS_CLEVO_MAIL=m all arch's + * [Config] Enable CONFIG_LEDS_PCA9532=m on powerpc + * [Config] Enable CONFIG_LEDS_PCA955X=m on powerpc + * [Config] Enable CONFIG_LEDS_TRIGGER_DEFAULT_ON=m on powerpc + * [Config] Set CONFIG_LEDS_TRIGGER_HEARTBEAT=m on arm and powerpc + * [Config] Set CONFIG_LEDS_TRIGGER_TIMER=m on powerpc + * [Config] Enable CONFIG_LINE6_USB=m on arm and powerpc + * [Config] Enable CONFIG_MEMSTICK=m on arm + * [Config] Enable CONFIG_MTD_AFS_PARTS=m on arm + * [Config] Enable CONFIG_MTD_ALAUDA=m on arm + * [Config] Enable CONFIG_MTD_AR7_PARTS=m on arm + * [Config] Enable CONFIG_MTD_ARM_INTEGRATOR=m on arm + * [Config] Enable CONFIG_MOXA_SMARTIO=m on powerpc + * [Config] Enable CONFIG_MTD_DATAFLASH=m on arm + * [Config] Enable CONFIG_MTD_GPIO_ADDR=m on arm + * [Config] Enable CONFIG_MTD_IMPA7=m on arm + * [Config] Enable CONFIG_MTD_NAND_GPIO=m on arm + * [Config] Enable CONFIG_MTD_NAND_NANDSIM=m on arm + * [Config] Enable CONFIG_MTD_NAND_PASEMI=m on powerpc + * [Config] Enable CONFIG_MTD_NAND_PLATFORM=m on arm + * [Config] Enable CONFIG_MTD_NAND_TMIO=m on arm + * [Config] Enable CONFIG_MTD_SST25L=m on arm + * [Config] Enable CONFIG_NET_CLS_CGROUP=y on arm + * [Config] Enable CONFIG_NET_CLS_FLOW=m on arm + * [Config] Enable CONFIG_NET_CLS_U32=m on arm + * [Config] Enable CONFIG_NET_DCCPPROBE=m on arm + * [Config] Enable CONFIG_NET_SCH_INGRESS=m on arm + * [Config] Enable CONFIG_NET_TCPPROBE=m on arm + * [Config] Enable CONFIG_PASEMI_MAC=m on powerpc + * [Config] Enable CONFIG_PATA_NS87410=m on powerpc + * [Config] Enable CONFIG_I2C_GPIO=m on powerpc64-smp + * [Config] Enable CONFIG_PANEL=m on powerpc + * [Config] Enable CONFIG_PATA_CMD640_PCI=m on powerpc + * SAUCE: x86: reboot: Make Dell Latitude E6520 use reboot=pci + - LP: #833705 + * [Config] Add CONFIG_EFI_VARS=y to the enforcer + - LP: #837332 + * [Config] Update CONFIG_EFI_VARS enforcer check + * [Config] Add aufs to virtual flavor inclusion list + - LP: #844159 + * SAUCE: x86: reboot: Make Dell Optiplex 790 use reboot=pci + - LP: #818933 + * SAUCE: x86: reboot: Make Dell Optiplex 990 use reboot=pci + - LP: #768039 + * SAUCE: x86: reboot: Make Dell Latitude E6220 use reboot=pci + - LP: #838402 + * [Config] Add igbvf to the virtual flavor inclusion list + - LP: #794570 + * [Config] Add ixgbevf to the virtual inclusion list + - LP: #872411 + * [Config] Transition -generic and -server to be identical + * rebase to v3.1-rc10 + + [ Luke Yelavich ] + + * [Config] Disable legacy IDE drivers on powerpc + + [ Ming Lei ] + + * SAUCE: fireware: add NO_MSI quirks for o2micro controller + - LP: #801719 + * SAUCE: ata_piix: make DVD Drive recognisable on systems with Intel + Sandybridge chipsets(v2) + - LP: #737388, #782389, #794642 + + [ Paolo Pisati ] + + * [Config] Compile-in vfat support for armel + - LP: #853783 + + [ Randy Dunlap ] + + * SAUCE: staging: fix rts5139 depends & build + - LP: #824273 + + [ Rene Bolldorf ] + + * SAUCE: (drop after 3.0) ideapad: Check if acpi already handle backlight + power in 'ideapad_backlight_notify_power' to avoid a page fault + + [ Seth Forshee ] + + * SAUCE: (no-up) Input: elantech - Add v3 hardware support + - LP: #681904 + * SAUCE: (drop after 3.1) usb_storage: Don't freeze in usb-stor-scan + - LP: #810020 + + [ Stefan Bader ] + + * (config) Package macvlan and macvtap for virtual + * [Config] Force perf to use libiberty for demangling + - LP: #783660 + * SAUCE: xen: Do not use pv spinlocks on HVM + - LP: #838026 + + [ Tim Gardner ] + + * [Config] Clean up tools rules + * [Config] Package x86_energy_perf_policy and turbostat + - LP: #797556 + * rebase to v3.1-rc3 + * [Config] Simplify binary-udebs dependencies + * [Config] kernel preparation cannot be parallelized + * [Config] Linearize module/abi checks + * [Config] Linearize and simplify tree preparation rules + * [Config] Build kernel image in parallel with modules + * [Config] Set concurrency for kmake invocations + * [Config] Improve install-arch-headers speed + * [Config] Fix binary-perarch dependencies + * [Config] Removed stamp-flavours target + * [Config] Serialize binary indep targets + * [Config] Use build stamp directly + * [Config] Restore prepare-% target + * rebase to v3.1-rc4 + * rebase to v3.1-rc5 + * [Config] Disable makedumpfile for i386/amd64 + * rebase to v3.1-rc6 + * [Config] Fix binary-% build target + * rebase to v3.1-rc7 + * rebase to v3.1-rc8 + * SAUCE: Add a new entry (413c:8197) to Bluetooth USB device ID table + - LP: #854399 + * [Config] Enable ftrace support in the mac80211 layer + - LP: #865171 + * rebase to v3.1-rc9 + * SAUCE: usb/core/devio.c: Check for printer class specific request + - LP: #872711 + + [ Upstream Kernel Changes ] + + * overlay filesystem + * overlayfs: add statfs support + * overlayfs: implement show_options + * overlay: overlay filesystem documentation + * fs: limit filesystem stacking depth + + [ Will Drewry ] + + * SAUCE: seccomp_filter: new mode with configurable syscall filters + * SAUCE: seccomp_filter: add process state reporting + * SAUCE: seccomp_filter: Document what seccomp_filter is and how it + works. + * SAUCE: seccomp_filter: add HAVE_SECCOMP_FILTER and seccomp_execve + + [ Upstream Kernel Changes ] + + * rebase to v3.1-rc1 + * rebase to v3.1-rc2 + * rebase to v3.1-rc3 + +CONFIG_BLK_DEV_BSGLIB=y + +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 + -CONFIG_VIDEO_OMAP2_VOUT_VRFB=y + * rebase to v3.1-rc4 + * rebase to v3.1-rc5 + * rebase to v3.1-rc6 + * rebase to v3.1-rc7 + * rebase to v3.1-rc8 + * rebase to v3.1-rc9 + * rebase to v3.1-rc10 + + -- Leann Ogasawara Wed, 10 Aug 2011 15:43:38 -0700 + +linux (3.1.0-1.0) oneiric; urgency=low + + [ Leann Ogasawara ] + + * Open P-series + + -- Leann Ogasawara Wed, 10 Aug 2011 13:42:40 -0700 + +linux (3.0.0-8.10) oneiric; urgency=low + + [ Adam Jackson ] + + * SAUCE: drm/i915/pch: Fix integer math bugs in panel fitting + - LP: #753994 + + [ John Johansen ] + + * [Config] Enable missing IPv6 options + + [ Leann Ogasawara ] + + * [Config] Disable config IWLWIFI_DEVICE_SVTOOL + - LP: #819925 + * Rebase to 3.0.1 + + [ Upstream Kernel Changes ] + + * x86, intel, power: Correct the MSR_IA32_ENERGY_PERF_BIAS message + * ALSA: hda - Turn on extra EAPDs on Conexant codecs + - LP: #783582 + * KVM: Remove SMEP bit from CR4_RESERVED_BITS + - LP: #796476 + * KVM: Add SMEP support when setting CR4 + - LP: #796476 + * KVM: Mask function7 ebx against host capability word9 + - LP: #796476 + * KVM: Add instruction fetch checking when walking guest page table + - LP: #796476 + + [ Upstream Kernel Changes ] + + * rebase to v3.0.1 + + -- Leann Ogasawara Fri, 05 Aug 2011 11:32:25 -0700 + +linux (3.0.0-7.9) oneiric; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] add local prefix to oss local change_bits" + * Revert "SAUCE: add tracing for user initiated readahead requests" + * Revert "SAUCE: vfs: Add a trace point in the mark_inode_dirty function" + * Revert "SAUCE: Input: ALPS - Enable Intellimouse mode for Lenovo + Zhaoyang E47" + * Revert "SAUCE: fix documentation strings for struct input_keymap_entry" + * Revert "SAUCE: vt -- fix handoff numbering to 1..n and add range checks + (grub)" + * Revert "SAUCE: vt -- fix handoff numbering to 1..n and add range + checks" + * Revert "SAUCE: vt -- allow grub to request automatic vt_handoff" + * Revert "SAUCE: vt -- maintain bootloader screen mode and content until + vt switch" + * [Config] enable CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 + - LP: #816035 + * ubuntu: Yama: if an underlying filesystem provides a permissions op use + it + * SAUCE: (no-up) add tracing for user initiated readahead requests + * SAUCE: vt -- maintain bootloader screen mode and content until vt + switch + * SAUCE: vt -- allow grub to request automatic vt_handoff + + [ Arjan van de Ven ] + + * SAUCE: (no-up) vfs: Add a trace point in the mark_inode_dirty function + + [ Kees Cook ] + + * Revert "SAUCE: (no-up) Disable building the ACPI debugfs source" + * [Config] enforce ACPI_CUSTOM_METHOD disabled + + [ Keng-Yu Lin ] + + * SAUCE: (no-up) Input: ALPS - Enable Intellimouse mode for Lenovo + Zhaoyang E47 + - LP: #632884, #803005 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_BLK_DEV_CMD64X=m on powerpc + - LP: #513131 + * [Config] Enable CONFIG_RT2800PCI_RT53XX=y + - LP: #815064 + + [ Rezwanul Kabir ] + + * SAUCE: (no-up) Add support for Intellimouse Mode in ALPS touchpad on + Dell E2 series Laptops + - LP: #632884 + + [ Upstream Kernel Changes ] + + * Revert "yama: if an underlying filesystem provides a permissions op use + it" + * Revert "Add support for Intellimouse Mode in ALPS touchpad on Dell E2 + series Laptops" + * Revert "tty: include linux/slab.h for kfree" + * Revert "gpio/ml_ioh_gpio: include linux/slab.h for kfree" + * Revert "pch_dma: add include/slab.h for kfree" + * mmc: Added quirks for Ricoh 1180:e823 lower base clock frequency + - LP: #773524 + * oss: rename local change_bits to avoid powerpc bitsops.h definition + + -- Leann Ogasawara Mon, 25 Jul 2011 09:08:01 -0700 + +linux (3.0.0-7.8) oneiric; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: overlayfs -- overlayfs: add statfs support + * [Config] enable CONFIG_OVERLAYFS + + [ Erez Zadok ] + + * ubuntu: overlayfs -- overlayfs: implement show_options + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_ALIM7101_WDT=m on powerpc + * [Config] Enable CONFIG_ASUS_OLED=m on powerpc + * [Config] Disable CONFIG_ATM_DUMMY on arm + * [Config] Enable CONFIG_BLK_DEV_DRBD=m on powerpc + * Temporarily disable module check on arm + * Rebase to 3.0 final + * [Config] Enable CONFIG_CAN_TI_HECC=m on arm + * [Config] Set CONFIG_CDROM_PKTCDVD=m on amd64 and i386 + * [Config] Enable CONFIG_CRYPTO_CCM=m on powerpc + * [Config] Enable CONFIG_CRYPTO_DEV_HIFN_795X=m on powerpc + * [Config] Enable CONFIG_CRYPTO_GCM=m on powerpc + * [Config] Set CRYPTO_LZO=m on powerpc64-smp + * [Config] Enable CONFIG_DM9000=m on arm + * [Config] Set CONFIG_DISPLAY_SUPPORT=m on arm + * [Config] Enable CONFIG_DL2K=m on amd64 and i386 + + [ Miklos Szeredi ] + + * ubuntu: overlayfs -- vfs: add i_op->open() + * ubuntu: overlayfs -- vfs: export do_splice_direct() to modules + * ubuntu: overlayfs -- vfs: introduce clone_private_mount() + * ubuntu: overlayfs -- overlay filesystem + * ubuntu: overlayfs -- ovl: fix overlayfs over overlayfs + * ubuntu: overlayfs -- ovl: improve stack use of lookup and readdir + * ubuntu: overlayfs -- fs: limit filesystem stacking depth + * ubuntu: overlayfs -- ovl: make lower mount read-only + + [ Neil Brown ] + + * ubuntu: overlayfs -- overlay: overlay filesystem documentation + + [ Tim Gardner ] + + * [Config] Add enic/fnic to udebs + - LP: #801610 + + [ Upstream Kernel Changes ] + + * yama: if an underlying filesystem provides a permissions op use it + + [ Major Kernel Changes ] + + * Rebase to 3.0 final + + -- Leann Ogasawara Thu, 21 Jul 2011 07:01:32 -0700 + +linux (3.0.0-6.7) oneiric; urgency=low + + [ Eagon Yager ] + + * [Config] Fix misspelled 'skipmodule' in arm makefile. + + [ Keng-Yu Lin ] + + * SAUCE: Input: ALPS - Enable Intellimouse mode for Lenovo Zhaoyang E47 + - LP: #632884, #803005 + + [ Leann Ogasawara ] + + * Revert "[Config] Temporarily disable CONFIG_SMC91X on armel-omap" + * Revert "[Config] Temporarily Disable CONFIG_BRCMSMAC on arm" + * Revert "[Config] Temporarily Disable CONFIG_RTL8192SE on powerpc" + * Revert "[Config] Temporarily Disable CONFIG_RTL8192SE on arm" + * Revert "[Config] Temporarily disable CONFIG_BRCMSMAC on powerpc" + * [Config] Set CONFIG_ACPI_PCI_SLOT=m + * [Config] Set CONFIG_ACPI_SBS=m + * [Config] Set CONFIG_ACPI_WMI=m + * [Config] Set CONFIG_AD7150=m on arm + * [Config] Set CONFIG_AD7152=m on arm + * [Config] Drop CONFIG_GPIO_S5PV210 + * [Config] Drop CONFIG_GPIO_S5PC100 + * [Config] Drop CONFIG_GPIO_PLAT_SAMSUNG + * [Config] Drop CONFIG_GPIO_EXYNOS4 + + [ Stefan Bader ] + + * SAUCE: Re-enable RODATA for i386 virtual + - LP: #809838 + + [ Upstream Kernel Changes ] + + * Revert "Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15" + * (drop after 3.0.0) acer-wmi: Add support for Aspire 1830 wlan hotkey + - LP: #771758 + + -- Leann Ogasawara Wed, 20 Jul 2011 06:36:02 -0700 + +linux (3.0.0-5.6) oneiric; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_RTL8192CU=m + * Rebase to -rc7 + + -- Tim Gardner Mon, 11 Jul 2011 22:13:50 +0100 + +linux (3.0.0-4.5) oneiric; urgency=low + + [ Ming Lei ] + + * SAUCE: fix yama_ptracer_del lockdep warning + - LP: #791019 + + [ Seth Forshee ] + + * SAUCE: (drop after 3.0) asus-wmi: Add callback for hotkey filtering + * SAUCE: (drop after 3.0) eeepc-wmi: Add support for T101MT Home/Express Gate key + * SAUCE: (drop after 3.0) asus-wmi: Enable autorepeat for hotkey input device + * [Config] CONFIG_{ASUS,ASUS_NB,EEEPC}_WMI=m + - LP: #805218 + + [ Tim Gardner ] + + * [Config] updateconfigs after rebase to -rc6+ + Rebased against 4dd1b49c6d215dc41ce50c80b4868388b93f31a3 + * Adopt a 3 digit verion, e.g., 3.0.0-x.x + * Revert "UBUNTU: add dependancies for module-init-tools" + This dependency is no longer required for a 3 digit version. + + -- Tim Gardner Tue, 05 Jul 2011 14:03:04 +0100 + +linux (3.0-3.4) oneiric; urgency=low + + [ Keng-Yu Lin ] + + * SAUCE: Revert: "dell-laptop: Toggle the unsupported hardware + killswitch" + - LP: #775281 + + [ Leann Ogasawara ] + + * rebase to v3.0-rc5 + * [Config] updateconfigs after rebase to 3.0-rc5 + + [ Tim Gardner ] + + * [Config] Remove ubuntu/rtl8192se + * [Config] Added armel ABI files + * [Config] Removed armel versatile flavour + * [Config] CONFIG_INTEL_MEI=m + - LP: #716867 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Enable auto-parser as default for Conexant codecs + + [ Upstream Kernel Changes ] + + * rebase to v3.0-rc5 + + -- Leann Ogasawara Thu, 30 Jun 2011 14:27:10 +0100 + +linux (3.0-2.3) oneiric; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to 0e2bafab74f0d1463383faeb93f9fc5eb8c2c54e + + [ Leann Ogasawara ] + + * rebase to v3.0-rc4 + * [Config] updateconfigs after rebase to 3.0-rc4 + * fix ERROR: __devcgroup_inode_permission undefined + + [ Stefan Bader ] + + * SAUCE: iscsitarget: Remove driver from the kernel + + [ Tim Gardner ] + + * SAUCE: rtl8192se: Force a build for a 2.6/3.0 kernel + * [Config] Add grub-efi as a recommended bootloader for server and + generic + - LP: #800910 + + [ Upstream Kernel Changes ] + + * Fix node_start/end_pfn() definition for mm/page_cgroup.c + + [ Leann Ogasawara ] + + * rebase to v3.0-rc4 + + -- Leann Ogasawara Fri, 24 Jun 2011 11:51:12 -0700 + +linux (3.0-1.2) oneiric; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_CAN_CALC_BITTIMING + + [ Leann Ogasawara ] + + * rebase to v3.0-rc3 + * [Config] updateconfigs after rebase to 3.0-rc3 + + [ Upstream Kernel Changes ] + + * perf: clear out make flags when calling kernel make kernelver + + [ Leann Ogasawara ] + + * rebase to v3.0-rc3 + + -- Leann Ogasawara Tue, 14 Jun 2011 07:25:35 -0700 + +linux (3.0-0.1) oneiric; urgency=low + + [ Andy Whitcroft ] + + * use the packaging version in the kernel + * use the kernels idea of its version for version_signature + * add dependancies for module-init-tools + * update control files to version 3 + * printchanges/insertchanges allow override of prev_release + * correct Vcs-Git: to point to oneiric + + [ Leann Ogasawara ] + + * rebase to v3.0-rc1 + * [Config] updateconfigs after rebase to 3.0-rc1 + * ubuntu: dm-raid4-5 fix up build failure + * [Config] Temporarily Disable CONFIG_GPIO_EXYNOS4 on arm + * [Config] Temporarily Disable CONFIG_GPIO_PLAT_SAMSUNG on arm + * [Config] Temporarily Disable CONFIG_GPIO_S5PC100 on arm + * [Config] Temporarily Disable CONFIG_GPIO_S5PV210 on arm + * [Config] Temporarily disable CONFIG_BRCMSMAC on powerpc + * [Config] Temporarily Disable CONFIG_BRCMSMAC on arm + * [Config] Temporarily Disable CONFIG_RTL8192SE on arm + * [Config] Temporarily Disable CONFIG_RTL8192SE on powerpc + * [Config] Temporarily disable CONFIG_SMC91X on armel-omap + * rebase to v3.0-rc2 + + [ Manoj Iyer ] + + * SAUCE: mmc: Enable MMC card reader for RICOH [1180:e823] + - LP: #790754 + + [ Upstream Kernel Changes ] + + * Revert "x86 idle: EXPORT_SYMBOL(default_idle, pm_idle) only when APM + demands it" + * drm/i915: fix regression after clock gating init split + + [ Major Kernel Changes ] + + * rebase from v2.6.39 to v3.0-rc1 + * rebase from v3.0-rc1 to v3.0-rc2 + + -- Andy Whitcroft Thu, 09 Jun 2011 15:18:33 +0100 + +linux (2.6.39-3.10) oneiric; urgency=low + + [ Colin Ian King ] + + * SAUCE: S3 early resume debug via keyboard LEDs + + [ Ingo Molnar ] + + * ubuntu: nx-emu - i386: NX emulation + * ubuntu: nx-emu - i386: mmap randomization for executable mappings + + [ Leann Ogasawara ] + + * Revert "[Config] Disable CONFIG_FT1000 on powerpc64-smp" + * Revert "[Config] Disable CONFIG_DM_RAID45" + * [Config] enable CONFIG_BRCMFMAC=y + * [Config] enable CONFIG_MDIO_BITBANG=m across all arch's and flavors + * [Config] enable CONFIG_VIDEO_OUTPUT_CONTROL=m on armel-omap + + [ Robert Nelson ] + + * SAUCE: omap3: beagle: detect new xM revision B + - LP: #770679 + * SAUCE: omap3: beagle: detect new xM revision C + - LP: #770679 + * SAUCE: omap3: beagle: if rev unknown, assume xM revision C + - LP: #770679 + + [ Stefan Bader ] + + * SAUCE: Convert dm-raid45 to new block plugging + + -- Leann Ogasawara Mon, 23 May 2011 11:46:43 -0700 + +linux (2.6.39-3.9) oneiric; urgency=low + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_SCSI_LPFC_DEBUG_FS + * rebase to v2.6.39 + * [Config] enable CONFIG_LLC2=m across all arch's and flavours + * [Config] enable CONFIG_INPUT_APANEL=m + + [ Thomas Schlichter ] + + * SAUCE: vesafb: mtrr module parameter is uint, not bool + - LP: #778043 + * SAUCE: vesafb: enable mtrr WC by default + - LP: #778043 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc7 to v2.6.39 + + -- Andy Whitcroft Fri, 20 May 2011 09:52:32 +0100 + +linux (2.6.39-2.8) oneiric; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-37" + * Revert "ubuntu: AUFS -- aufs2-base.patch aufs2.1-37" + * Revert "[Config] Disable CONFIG_AUFS_FS" + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-39 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-39 + * ubuntu: AUFS -- update to c6b76974311efc5bf3eddf921cd015b6aae46935 + * ubuntu: AUFS -- clean up the aufs updater and BOM + * ubuntu: AUFS -- documentation on updating aufs2 + + [ Kees Cook ] + + * ubuntu: Yama - LSM hooks + * ubuntu: Yama - create task_free security callback + * ubuntu: Yama - add ptrace relationship tracking interface + * ubuntu: Yama - unconditionally chain to Yama LSM + + [ Leann Ogasawara ] + + * Revert "SAUCE: Fix drivers/staging/easycap FTBS" + * Revert "[Config] Disable CONFIG_EASYCAP" + * ubuntu: fsam7400 disable driver + * ubuntu: omnibook disable driver + * ubuntu: rfkill disable driver + + [ Tim Gardner ] + + * SAUCE: Fix extra reference in fb_open() + + -- Leann Ogasawara Mon, 16 May 2011 09:23:56 -0700 + +linux (2.6.39-2.7) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc7 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc6 to v2.6.39-rc7 + + -- Leann Ogasawara Tue, 10 May 2011 10:18:28 +0200 + +linux (2.6.39-1.6) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc6 + * SAUCE: [arm] fixup __aeabi_uldivmod undefined build error + + [ Tim Gardner ] + + * [Config] updateconfigs after rebase to 2.6.39-rc6 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc5 to v2.6.39-rc6 + - LP: #740126 + + -- Leann Ogasawara Thu, 05 May 2011 09:46:12 -0700 + +linux (2.6.39-0.5) oneiric; urgency=low + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: Revert "x86, hibernate: Initialize mmu_cr4_features during boot" + - LP: #764758 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc5 + * [Config] updateconfigs following rebase to v2.6.39-rc5 + + [ Paolo Pisati ] + + * [Config] s/USB_MUSB_TUSB6010/USB_MUSB_OMAP2PLUS/ on omap3 to get musb + - LP: #759913 + + [ Stefan Bader ] + + * Include nls_iso8859-1 for virtual images + - LP: #732046 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc4 to v2.6.39-rc5 + + -- Leann Ogasawara Wed, 27 Apr 2011 06:39:42 -0700 + +linux (2.6.39-0.4) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc4 + * [Config] updateconfigs following rebase to v2.6.39-rc4 + * fixup powerpc implicit declaration of function + 'crash_kexec_wait_realmode' + * [Config] Disable CONFIG_FT1000 on powerpc64-smp + + [ Tim Gardner ] + + * [Config] CONFIG_TRANSPARENT_HUGEPAGE=y + - LP: #769503 + * [Config] Add cachefiles.ko to virtual flavour + - LP: #770430 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc3 to v2.6.39-rc4 + + -- Leann Ogasawara Tue, 19 Apr 2011 06:25:20 -0700 + +linux (2.6.39-0.3) oneiric; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc3 + * crash_kexec_wait_realmode() undefined when !SMP + + [ Tim Gardner ] + + * [Config] CONFIG_PM_ADVANCED_DEBUG=y for i386/amd64 + - LP: #632327 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc2 to v2.6.39-rc3 + + -- Leann Ogasawara Tue, 12 Apr 2011 06:52:24 -0700 + +linux (2.6.39-0.2) oneiric; urgency=low + + [ Gustavo F. Padovan ] + + * SAUCE: Revert "Bluetooth: Add new PID for Atheros 3011" + - LP: #720949 + + [ John Johansen ] + + * AppArmor: Fix masking of capabilities in complain mode + - LP: #748656 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc2 + * [Config] updateconfigs following rebase to v2.6.39-rc2 + * hv_mouse needs delay.h + * olpc_dcon_xo_1 needs delay.h + * olpc_dcon_xo_1_5 needs delay.h + * Update dropped.txt for Oneiric + + [ Steve Langasek ] + + * [Config] Make linux-libc-dev coinstallable under multiarch + - LP: #750585 + + [ Upstream Kernel Changes ] + + * x86, hibernate: Initialize mmu_cr4_features during boot + - LP: #752870 + + [ Major Kernel Changes ] + + * rebase from v2.6.39-rc1 to v2.6.39-rc2 + + -- Leann Ogasawara Wed, 06 Apr 2011 11:04:15 -0700 + +linux (2.6.39-0.1) oneiric; urgency=low + + [ Brad Figg ] + + * [Config] Set CONFIG_NR_CPUS=256 for amd64 generic + - LP: #737124 + + [ Henrik Rydberg ] + + * SAUCE: HID: hid-ntrig: add support for 1b96:0006 model + * SAUCE: HID: ntrig: fix suspend/resume on recent models + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: (drop after 2.6.39) v4l: make sure drivers supply a zeroed + struct v4l2_subdev + - LP: #745213 + + [ Kees Cook ] + + * [Config] packaging: adjust perms on vmlinuz as well + * SAUCE: nx-emu: further clarify dmesg reporting + - LP: #745181 + + [ Leann Ogasawara ] + + * rebase to v2.6.39-rc1 + * [Config] updateconfigs following rebase to v2.6.39-rc1 + * [Config] Disable CONFIG_DM_RAID45 + * [Config] Disable CONFIG_SCSI_ISCSITARGET + * [Config] Disable CONFIG_EASYCAP + * [Config] Disable CONFIG_AUFS_FS + * update bnx2 firmware files in d-i/firmware/nic-modules + * xhci-pci.c resolve implicit declaration of kzalloc + * [Config] Enable CONFIG_DRM_PSB for only x86 + * [Config] Enable CONFIG_RTS_PSTOR for only x86 + * mfd/asic3: Fix typo, s/irq_data/data/ + + [ Luke Yelavich ] + + * [Config] Disable CONFIG_CRASH_DUMP on 32-bit powerpc kernels + - LP: #745358 + * [Config] Disable CONFIG_DRM_RADEON_KMS on powerpc kernels + * [Config] Build some framebuffer drivers as modules for powerpc kernels. + + [ Manoj Iyer ] + + * SAUCE: thinkpad-acpi: module autoloading for newer Lenovo ThinkPads. + - LP: #745217 + + [ Tim Gardner ] + + * SAUCE: INR_OPEN=4096 + - LP: #663090 + * SAUCE: Increase the default hard limit for open FDs to 4096 + - LP: #663090 + + [ Upstream Kernel Changes ] + + * (drop after 2.6.39-rc1) arm: versatile : Fix typo introduced in irq + namespace cleanup + * (drop after 2.6.39-rc1) [media] staging: altera-jtag needs delay.h + * ALSA: pcm: fix infinite loop in snd_pcm_update_hw_ptr0() + + [ Major Kernel Changes ] + + * rebase from v2.6.38 to v2.6.39-rc1 + + -- Leann Ogasawara Thu, 31 Mar 2011 12:50:10 -0700 + +linux (2.6.39-0.0) oneiric; urgency=low + + [ Leann Ogasawara ] + + * Open Oneiric + + -- Leann Ogasawara Thu, 31 Mar 2011 12:29:23 -0700 + +linux (2.6.38-7.39) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload. This is just to rebuild with gcc-4.5.2-7ubuntu1. + + -- Leann Ogasawara Thu, 24 Mar 2011 09:27:45 -0700 + +linux (2.6.38-7.38) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload take 2. 2.6.38-7.37 was accidentally uploaded before + gcc-4.5.2-6ubuntu5 finished building on all arches. + + -- Leann Ogasawara Tue, 22 Mar 2011 06:12:47 -0700 + +linux (2.6.38-7.37) natty; urgency=low + + [ Leann Ogasawara ] + + * No change upload. This is just to rebuild with gcc-4.5.2-6ubuntu5. + + -- Leann Ogasawara Sun, 20 Mar 2011 16:02:48 -0700 + +linux (2.6.38-7.36) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: KLUDGE: work around failed 'shrink-wrap' compiler + optimisation" + * purge last vestiges of maverick + * [Config] switch CONFIG_FB_VESA back to module + + [ Chris Wilson ] + + * SAUCE: drm/i915: Fix pipelined fencing + - LP: #717114 + + [ Loïc Minier ] + + * Include nls_cp437 module in virtual for fat + - LP: #732046 + * Support arch= cross-compilation for any arch + * Fix couple of typos in 0-common-vars.mk + * Enforce DEFAULT_MMAP_MIN_ADDR on armhf + * Add armhf to Debian -> Linux arch map + * Add initial armhf.mk + * Enable common packages for armhf + + [ Upstream Kernel Changes ] + + * Yama: fix default relationship to check thread group + - LP: #737676 + + -- Andy Whitcroft Fri, 18 Mar 2011 18:18:02 +0000 + +linux (2.6.38-7.35) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to 2fbfac4e053861925fa3fffcdc327649b09af54c + * rebase fixes bug #715330 + * [Config] disable CONFIG_SCSI_QLA_ISCSI for powerpc 32bit to fix FTBS + * rebase to v2.6.38 final + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: Apply OPTION_BLACKLIST_SENDSETUP also for ZTE MF626 + - LP: #636091 + + [ Tim Gardner ] + + * [Confg] CONFIG_BOOT_PRINTK_DELAY=y + + [ Upstream Kernel Changes ] + + * Yama: use thread group leader when creating match + - LP: #729839 + * (drop after 2.6.38) ahci: AHCI mode SATA patch for Intel Patsburg SATA + RAID controller + - LP: #735240 + * (drop after v2.6.38) x86, quirk: Fix SB600 revision check + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc8 to v2.6.38 final + - LP: #715330 + + -- Andy Whitcroft Tue, 15 Mar 2011 19:04:19 +0000 + +linux (2.6.38-6.34) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] normalise CONFIG_INTEL_TXT + * SAUCE: KLUDGE: work around failed 'shrink-wrap' compiler optimisation + - LP: #730860 + * rebase to mainline v2.6.38-rc8 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc7 + fb62c00a6d8942775abc23d1621db1252e2d93d1 + to v2.6.38-rc8 + + -- Andy Whitcroft Tue, 08 Mar 2011 11:54:48 +0000 + +linux (2.6.38-6.33) natty; urgency=low + + [ Andy Whitcroft ] + + * d-i -- enable speakup-modules udeb + - LP: #672699 + * rebase to 493f3358cb289ccf716c5a14fa5bb52ab75943e5 + * [Config] debian PPC64 configuration + * [Config] cleanup powerpc config fixing unexpected inconsistancies + * [Config] resync ppc64 configuration + * SAUCE: match up ENTRY/END naming for 32/64 bit + * rebase to fb62c00a6d8942775abc23d1621db1252e2d93d1 + * [Config] update configs after rebase to + fb62c00a6d8942775abc23d1621db1252e2d93d1 + * [Config] pps_gen_parport no longer built + + [ Corentin Chary ] + + * SAUCE: (drop after 2.6.38) eeepc-wmi: reorder keymap + - LP: #689393 + * SAUCE: (drop after 2.6.38) eeepc-wmi: add wlan key found on 1015P + - LP: #689393 + + [ John Johansen ] + + * SAUCE: Fix aufs calling of security_path_mknod + - LP: #724456 + + [ Kees Cook ] + + * SAUCE: proc: hide kernel addresses via %pK in /proc//stack + + [ Tim Gardner ] + + * rebase to 2.6.38-rc7 + + [ Upstream Kernel Changes ] + + * Revert "drm/i915: fix corruptions on i8xx due to relaxed fencing" + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc6 to v2.6.38-rc7 + + fb62c00a6d8942775abc23d1621db1252e2d93d1 + - LP: #721389 + - LP: #722925 + - LP: #723672 + - LP: #723676 + - LP: #715318 + + -- Andy Whitcroft Mon, 07 Mar 2011 15:33:17 +0000 + +linux (2.6.38-5.32) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to mainline 6f576d57f1fa0d6026b495d8746d56d949989161 + * [Config] updateconfigs following rebase to v2.6.38-rc6 + * [Config] enable CONFIG_DMAR + - LP: #552311 + + [ Upstream Kernel Changes ] + + * drm/i915: skip FDI & PCH enabling for DP_A + - LP: #561802, #600453, #681877 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc5 to v2.6.38-rc6 + - LP: #718402 + - LP: #719524 + - LP: #721126 + - LP: #719691 + - LP: #722689 + - LP: #722310 + + -- Andy Whitcroft Tue, 22 Feb 2011 13:28:39 +0000 + +linux (2.6.38-4.31) natty; urgency=low + + [ Andy Whitcroft ] + + * add in bugs closed by upstream patches pulled in by rebases + * rebase to 795abaf1e4e188c4171e3cd3dbb11a9fcacaf505 + * [Config] enable CONFIG_VSX to allow use of vector instuctions + * resync with maverick 98defa1c5773a3d7e4c524967eb01d5bae035816 + * rebase to mainline v2.6.38-rc5 + * SAUCE: ecryptfs: read on a directory should return EISDIR if not + supported + - LP: #719691 + + [ Colin Ian King ] + + * SAUCE: Dell All-In-One: Remove need for Dell module alias + + [ Manoj Iyer ] + + * SAUCE: (drop after 2.6.38) add ricoh 0xe823 pci id. + - LP: #717435 + + [ Tim Gardner ] + + * [Config] CONFIG_CRYPTO_CRC32C_INTEL=y + + [ Upstream Kernel Changes ] + + * Quirk to fix suspend/resume on Lenovo Edge 11,13,14,15 + - LP: #702434 + * vfs: fix BUG_ON() in fs/namei.c:1461 + + [ Vladislav P ] + + * SAUCE: Release BTM while sleeping to avoid deadlock. + - LP: #713837 + + [ Major Kernel Changes ] + + * rebase from v2.6.38-rc4 to v2.6.38-rc5 + - LP: #579276 + - LP: #715877 + - LP: #713769 + - LP: #716811 + * resync with Maverick Ubuntu-2.6.35-27.47 + + -- Andy Whitcroft Fri, 11 Feb 2011 17:24:09 +0000 + +linux (2.6.38-3.30) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.38-rc4 + * ppc64 -- add basic architecture + * ubuntu: AUFS -- update to 65835da20b77c98fb538c9114fc31f5de1328230 + + [ Colin Ian King ] + + * SAUCE: Add WMI hotkeys support for Dell All-In-One series + - LP: #676997 + * SAUCE: Add WMI hotkeys support for another Dell All-In-One series + - LP: #701530 + * SAUCE: Dell WMI: Use sparse keymaps and tidy up code. + - LP: #701530 + + [ Dan Rosenberg ] + + * SAUCE: (drop after 2.6.38) Convert net %p usage %pK + + [ Kees Cook ] + + * Revert "SAUCE: kernel: make /proc/kallsyms mode 400 to reduce ease of + attacking" + * SAUCE: (drop after 2.6.38) use %pK for /proc/kallsyms and /proc/modules + + [ Tim Gardner ] + + * [Config] CONFIG_BLK_CGROUP=y + - LP: #706394 + * [Config] CONFIG_DELL_WMI_AIO=m + + [ Upstream Kernel Changes ] + + * drm/i915/lvds: Restore dithering on native modes for gen2/3 + - LP: #711568 + + [ Upstream Kernel Changes ] + + * rebase from v2.6.38-rc3 to v2.6.38-rc4. + - LP: #701271 + - LP: #708521 + - LP: #710371 + + -- Andy Whitcroft Tue, 08 Feb 2011 02:07:18 +0000 + +linux (2.6.38-2.29) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to 1f0324caefd39985e9fe052fac97da31694db31e + * [Config] updateconfigs following rebase to + 1f0324caefd39985e9fe052fac97da31694db31e + * rebase to 70d1f365568e0cdbc9f4ab92428e1830fdb09ab0 + * [Config] reenable HIBERNATE + - LP: #710877 + * rebase to v2.6.38-rc3 + * [Config] reenable CONFIG_CRASH_DUMP + + [ Kamal Mostafa ] + + * SAUCE: rtl8192se: fix source file perms + * SAUCE: rtl8192se: fix source file newline + * SAUCE: omnibook: fix source file newline + + [ Kees Cook ] + + * [Config] packaging: really make System.map mode 0600 + + [ Ricardo Salveti de Araujo ] + + * SAUCE: OMAP3630: PM: don't warn the user with a trace in case of + PM34XX_ERRATUM + + [ Soren Hansen ] + + * SAUCE: nbd: Remove module-level ioctl mutex + + [ Tim Gardner ] + + * SAUCE: Disable building the ACPI debugfs source + + [ Upstream Kernel Changes ] + + * Set physical start and alignment 1M for virtual i386 + - LP: #710754 + + [ Upstream Kernel Changes ] + + * rebase from v2.6.38-rc2 + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + to v2.6.38-rc3 + - LP: #707902 + + -- Andy Whitcroft Fri, 28 Jan 2011 16:30:32 +0000 + +linux (2.6.38-1.28) natty; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to b1cee06249dfa0ab30951e7f06490a75c155b620 + + [ Ricardo Salveti de Araujo ] + + * SAUCE: omap3: beaglexm: fix DVI initialization + * [Config] omap: move CONFIG_PANEL_GENERIC_DPI to build in to make + display work at Beagle + + -- Andy Whitcroft Fri, 28 Jan 2011 10:51:57 +0000 + +linux (2.6.38-1.27) natty; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update aufs-update to track new locations of headers + * ubuntu: AUFS -- update to c5021514085a5d96364e096dbd34cadb2251abfd + * SAUCE: ensure root is ready before running usermodehelpers in it + * correct the Vcs linkage to point to natty + * rebase to linux tip e78bf5e6cbe837daa6ab628a5f679548742994d3 + * [Config] update configs following rebase + e78bf5e6cbe837daa6ab628a5f679548742994d3 + * SAUCE: Yama: follow changes to generic_permission + * ubuntu: compcache -- follow changes to bd_claim/bd_release + * ubuntu: iscsitarget -- follow changes to open_bdev_exclusive + * ubuntu: ndiswrapper -- fix interaction between __packed and packed + * ubuntu: AUFS -- update to 806051bcbeec27748aae2b7957726a4e63ff308e + * update package version to match payload version + * rebase to e6f597a1425b5af64917be3448b29e2d5a585ac8 + * rebase to v2.6.38-rc1 + * [Config] updateconfigs following rebase to v2.6.38-rc1 + * SAUCE: x86 fix up jiffies/jiffies_64 handling + * rebase to linus tip 2b1caf6ed7b888c95a1909d343799672731651a5 + * [Config] updateconfigs following rebase to + 2b1caf6ed7b888c95a1909d343799672731651a5 + * [Config] disable CONFIG_TRANSPARENT_HUGEPAGE to fix i386 boot crashes + * ubuntu: AUFS -- suppress benign plink warning messages + - LP: #621195 + * [Config] CONFIG_NR_CPUS=256 for amd64 -server flavour + * rebase to v2.6.38-rc2 + * rebase to mainline d315777b32a4696feb86f2a0c9e9f39c94683649 + * rebase to c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + * [Config] update configs following rebase to + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + * [Config] disable CONFIG_AD7152 to fix FTBS on armel versatile + * [Config] disable CONFIG_AD7150 to fix FTBS on armel versatile + * [Config] disable CONFIG_RTL8192CE to fix FTBS on armel omap + * [Config] disable CONFIG_MANTIS_CORE to fix FTBS on armel versatile + + [ Kees Cook ] + + * SAUCE: kernel: make /proc/kallsyms mode 400 to reduce ease of attacking + + [ Stefan Bader ] + + * Temporarily disable RODATA for virtual i386 + - LP: #699828 + + [ Tim Gardner ] + + * [Config] CONFIG_NLS_DEFAULT=utf8 + - LP: #683690 + * [Config] CONFIG_HIBERNATION=n + * update bnx2 firmware files in d-i/firmware/nic-modules + + [ Upstream Kernel Changes ] + + * Revert "drm/radeon/bo: add some fallback placements for VRAM only + objects." + * packaging: make System.map mode 0600 + * thinkpad_acpi: Always report scancodes for hotkeys + - LP: #702407 + * sched: tg->se->load should be initialised to tg->shares + * Input: sysrq -- ensure sysrq_enabled and __sysrq_enabled are consistent + * brcm80211: include linux/slab.h for kfree + * pch_dma: add include/slab.h for kfree + * i2c-eg20t: include linux/slab.h for kfree + * gpio/ml_ioh_gpio: include linux/slab.h for kfree + * tty: include linux/slab.h for kfree + * winbond: include linux/delay.h for mdelay et al + + [ Upstream Kernel Changes ] + + * mark the start of v2.6.38 versioning + * rebase v2.6.37 to v2.6.38-rc2 + c723fdab8aa728dc2bf0da6a0de8bb9c3f588d84 + - LP: #689886 + - LP: #702125 + - LP: #608775 + - LP: #215802 + - LP: #686333 + - LP: #677830 + - LP: #677652 + - LP: #696493 + - LP: #697240 + - LP: #689036 + - LP: #705323 + - LP: #686692 + + -- Andy Whitcroft Sun, 09 Jan 2011 13:44:52 +0000 + +linux (2.6.37-12.26) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.37-rc8 + * [Config] armel -- reenable omap flavour + * [Config] disable CONFIG_MACH_OMAP3517EVM to fix FTBS on armel omap + * [Config] disable CONFIG_GPIO_VX855 to fix FTBS on omap armel + * [Config] disable CONFIG_WESTBRIDGE_ASTORIA to fix FTBS on omap armel + * [Config] disable CONFIG_TI_DAVINCI_EMAC to fix FTBS on omap armel + * rebase to mainline 989d873fc5b6a96695b97738dea8d9f02a60f8ab + * [Config] track missing modules + * rebase to v2.6.37 final + + [ Chase Douglas ] + + * SAUCE: (drop after 2.6.37) HID: magicmouse: Don't report REL_{X, Y} for + Magic Trackpad + + [ Stefan Bader ] + + * Revert "SAUCE: blkfront: default to sd devices" + - LP: #684875 + + [ Tim Gardner ] + + * Revert "SAUCE: (no-up) libata: Ignore HPA by default." + - LP: #380138 + * [Config] Added autofs4.ko to -virtual flavour + - LP: #692917 + + [ Upstream Kernel Changes ] + + * Add support for Intellimouse Mode in ALPS touchpad on Dell E2 series + Laptops + - LP: #632884 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc8 + * rebase to mainline 989d873fc5b6a96695b97738dea8d9f02a60f8ab + * rebase to v2.6.37 final + + -- Andy Whitcroft Thu, 23 Dec 2010 18:34:13 +0000 + +linux (2.6.37-11.25) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] d-i -- add hpsa to the list of block devices + - LP: #684304 + * [Config] add vmw-balloon driver to -virtual flavour + - LP: #592039 + * rebase to v2.6.37-rc7 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc7 + + -- Andy Whitcroft Tue, 21 Dec 2010 13:35:28 +0000 + +linux (2.6.37-10.24) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.37-rc6 + * updateconfigs following rebase to v2.6.37-rc6 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc6 + + -- Andy Whitcroft Thu, 16 Dec 2010 12:34:19 +0000 + +linux (2.6.37-9.23) natty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: vt -- fix handoff numbering to 1..n and add range checks + - LP: #689606 + * SAUCE: vt -- fix handoff numbering to 1..n and add range checks (grub) + - LP: #689606 + + [ Kees Cook ] + + * SAUCE: RO/NX protection for loadable kernel, fix ftrace + - LP: #690190 + + -- Andy Whitcroft Wed, 15 Dec 2010 19:29:57 +0000 + +linux (2.6.37-9.22) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.35-rc5 + * [Config] updateconfigs following rebase to v2.6.37-rc5 + * (no-up) add support for installed header files to ubuntu directory + - LP: #684666 + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + * ubuntu: dm-raid4-5 -- follow changes to bio flags + * ubuntu: dm-raid4-5 -- re-enable + * ubuntu: omnibook -- update BOM + * ubuntu: ndiswrapper -- update BOM to match actual version + * ubuntu: ndiswrapper -- follow removal of the BKL and locked ioctl + * ubuntu: ndiswrapper -- re-enable + * ubuntu: iscsitarget -- re-instate copy_io_context + * ubuntu: iscsitarget -- follow changes to semaphore initialisation + * ubuntu: iscsitarget -- convert NIPQUAD to %pI4 + * ubuntu: iscsitarget -- re-enable + + [ Kees Cook ] + + * [Config] update config for CONFIG_DEBUG_SET_MODULE_RONX + + [ Manoj Iyer ] + + * SAUCE: Enable jack sense for Thinkpad Edge 13 + - LP: #685015 + + [ Tim Gardner ] + + * [Config] CONFIG_9P_FSCACHE=y,CONFIG_9P_FS_POSIX_ACL=y + * [Config] CONFIG_CRYPTO_CRC32C=y + - LP: #681819 + * [Config] CONFIG_9P_FSCACHE=n + * [Config] Add nfsd modules to -virtual flavour + - LP: #688070 + + [ Upstream Kernel Changes ] + + * Revert "Staging: zram: work around oops due to startup ordering snafu" + * NFS: Fix panic after nfs_umount() + - LP: #683938 + * x86: Add NX protection for kernel data + * x86: Add RO/NX protection for loadable kernel modules + * x86: Resume trampoline must be executable + * x86: RO/NX protection for loadable kernel, jump_table fix + + [ Upstream Kernel Changes ] + + * rebase to v2.6.37-rc5 + + -- Andy Whitcroft Thu, 09 Dec 2010 18:15:35 +0000 + +linux (2.6.37-8.21) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- include the aufs_types.h file in + linux-libc-headers" + * Revert "(no-up) add support for installed header files to ubuntu + directory" + + -- Andy Whitcroft Sun, 05 Dec 2010 17:33:28 +0000 + +linux (2.6.37-8.20) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] drivers/serial/mfd.c: Fix ARM compile error" + * Revert "SAUCE: Nouveau: Disable acceleration on MacBook Pros" + * Revert "SAUCE: Nouveau: Add quirk framework to disable acceleration" + * Revert "SAUCE: i915 -- disable powersave by default" + * SAUCE: enable Marvell 9128 PCIe SATA controller + - LP: #658521 + * [Config] evtchn has been renamed + * (no-up) add support for installed header files to ubuntu directory + - LP: #684666 + * ubuntu: AUFS -- include the aufs_types.h file in linux-libc-headers + - LP: #684666 + + [ Tim Gardner ] + + * [Config] MISS: evtchn, NEW : xen-evtchn + * rebase to v2.6.37-rc4 + + [ Upstream Kernel Changes ] + + * drm/i915: Clean conflicting modesetting registers upon init + - LP: #683775 + * rebase to v2.6.37-rc4 + + -- Andy Whitcroft Fri, 03 Dec 2010 18:42:07 +0000 + +linux (2.6.37-7.19) natty; urgency=low + + [ Tim Gardner ] + + * [Config] Add bnx2 firmware to nic-modules udeb + - LP: #676245 + + -- Andy Whitcroft Fri, 26 Nov 2010 17:53:45 +0000 + +linux (2.6.37-7.18) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] USB: option: Remove duplicate AMOI_VENDOR_ID" + * Revert "SAUCE: Add extra headers to linux-libc-dev" + * Revert "SAUCE: Enable speedstep for sonoma processors." + * [Config] enable CONFIG_BT_HCIUART_ATH3K + * [Config] enable CONFIG_IWLWIFI_DEBUGFS + * [Config] standardise CONFIG_MII + * [Config] standardise CONFIG_PRISM2_USB + * [Config] standardise CONFIG_SCSI_QLA_ISCSI + * [Config] build in CONFIG_AGP + * [Config] build in CONFIG_AGP_INTEL + * [Config] build in CONFIG_AGP_AMD + * [Config] build in CONFIG_AGP_AMD64 + * [Config] build in CONFIG_AGP_NVIDIA + * [Config] build in CONFIG_AGP_VIA + * [Config] disable CONFIG_SCSI_QLA_ISCSI for FTBS (arm) + * (no-up): document the new ## scheme + * [Config] harmonise CONFIG_SERIAL_8250_NR_UARTS + * [Config] update CONFIG_SERIAL_8250_RUNTIME_UARTS=32 + - LP: #675453 + + [ Mathieu J. Poirier ] + + * SAUCE: ARM: Adding vdd_sdi regulator supply to OMAP3EVM + + [ Upstream Kernel Changes ] + + * nx-emu: fix inverted report of disable_nx + + -- Andy Whitcroft Tue, 23 Nov 2010 21:00:39 +0000 + +linux (2.6.37-6.17) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2-standalone.patch + aufs2.1-36-UNRELEASED-20101103" + * Revert "ubuntu: AUFS -- aufs2-base.patch + aufs2.1-36-UNRELEASED-20101103" + * [Config] standardise CONFIG_BT + * [Config] standardise CONFIG_IRDA + * [Config] standardise CONFIG_LAPB + * [Config] standardise CONFIG_RDS + * [Config] standardise CONFIG_RFKILL + * [Config] standardise CONFIG_TIPC + * [Config] standardise CONFIG_X25 + * [Config] standardise CONFIG_INPUT_EVDEV + * [Config] standardise CONFIG_INPUT_JOYDEV + * [Config] standardise CONFIG_INPUT_JOYSTICK + * [Config] standardise CONFIG_INPUT_TOUCHSCREEN + * [Config] CONFIG_INPUT_TOUCHSCREEN=n for FTBS (arm) + * [Config] CONFIG_IRDA=n for FTBS (arm) + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-37 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-37 + * ubuntu: AUFS -- update to 097bf62d6f49619359d34bf17f242df38562489a + + [ Tim Gardner ] + + * SAUCE: Fix drivers/staging/easycap FTBS + * [Config] CONFIG_EASYCAP=m after fixing FTBS + + [ Upstream Kernel Changes ] + + * Revert "x86: Add NX protection for kernel data" + + -- Andy Whitcroft Mon, 22 Nov 2010 18:09:10 +0000 + +linux (2.6.37-6.16) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] update config for CONFIG_DEBUG_SET_MODULE_RONX" + * rebase to v2.6.37-rc3 + + [ Tim Gardner ] + + * [Config] CONFIG_SCHED_AUTOGROUP=y + + [ Upstream Kernel Changes ] + + * Revert "x86: Add RO/NX protection for loadable kernel modules" + * sched: automated per session task groups + * rebase to v2.6.37-rc3 + + -- Andy Whitcroft Mon, 22 Nov 2010 10:11:13 +0000 + +linux (2.6.37-6.15) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] standardise CONFIG_CEPH_FS + * [Config] standardise CONFIG_SCSI_LPFC_DEBUG_FS + * [Config] standardise CONFIG_SCSI_PROC_FS + * [Config] standardise CONFIG_UBIFS_FS + * [Config] standardise CONFIG_USB_GADGET_DEBUG_FS + + [ Kees Cook ] + + * [Config] update config for CONFIG_DEBUG_SET_MODULE_RONX + + [ Manoj Iyer ] + + * SAUCE: Enable jack sense for Thinkpad Edge 11 + - LP: #677210 + * SAUCE: enable rfkill for rtl8192se driver + - LP: #640992 + + [ Tim Gardner ] + + * [Config] CONFIG_EASYCAP=n for FTBS + * Rebase to v2.6.32-rc2+git + + [ Upstream Kernel Changes ] + + * x86: Fix improper large page preservation + * x86: Add NX protection for kernel data + * x86: Add RO/NX protection for loadable kernel modules + + [ Upstream Kernel Changes ] + + * Rebase to Linus 2.6.37-rc2+git + + -- Andy Whitcroft Sat, 20 Nov 2010 11:40:00 +0000 + +linux (2.6.37-5.14) natty; urgency=low + + [ Upstream Kernel Changes ] + + * PCI: fix offset check for sysfs mmapped files + - LP: #676963 + + -- Andy Whitcroft Thu, 18 Nov 2010 18:12:27 +0000 + +linux (2.6.37-5.13) natty; urgency=low + + [ Andy Whitcroft ] + + * rebased to v2.6.37-rc2 + * updateconfigs following rebase to v2.6.37-rc2 + + [ Tim Gardner ] + + * [Config] Added NFS and related modules to virtual flavour + - LP: #659084 + + [ Upstream Kernel Changes ] + + * x86, cpu: Rename verify_cpu_64.S to verify_cpu.S + * x86, cpu: Clear XD_DISABLED flag on Intel to regain NX + * x86, cpu: Call verify_cpu during 32bit CPU startup + * x86, cpu: Only CPU features determine NX capabilities + + [ Upstream Changes ] + + * rebased to v2.67.37-rc2 + + -- Andy Whitcroft Tue, 16 Nov 2010 13:13:29 +0000 + +linux (2.6.37-4.12) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Upstream] HID: magicmouse: add param for scroll speed" + * Revert "[Upstream] HID: magicmouse: properly account for scroll + movement in state" + * Revert "[Upstream] HID: magicmouse: disable and add module param for + scroll acceleration" + * Revert "[Upstream] HID: magicmouse: scroll on entire surface, not just + middle of mouse" + + [ Henrik Rydberg ] + + * SAUCE: hid: ntrig: remove sysfs nodes + * SAUCE: hid: ntrig: Setup input filtering manually + * SAUCE: hid: ntrig: New ghost-filtering event logic + + [ Manoj Iyer ] + + * SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + - LP: #348861 + + [ Upstream Kernel Changes ] + + * Revert "mmc: fix all hangs related to mmc/sd card insert/removal during + suspend/resume" + * Revert "[ARM] implement arch_randomize_brk()" + * Revert "ARM: stack protector: change the canary value per task" + * Revert "ARM: initial stack protector (-fstack-protector) support" + * Revert "ALSA: hda - Handle pin NID 0x1a on ALC259/269" + * Revert "ALSA: hda - Handle missing NID 0x1b on ALC259 codec" + * Revert "perf probe: Add kernel source path option" + * hid: ntrig: Support single-touch devices + * hid: ntrig: Mask pen switch events + * net: rtnetlink.h -- only include linux/netdevice.h when used by the + kernel + - LP: #673073 + * Fix userspace build of linux/fs.h + + -- Andy Whitcroft Mon, 15 Nov 2010 19:31:44 +0000 + +linux (2.6.37-3.11) natty; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- update to + b37c575759dc4535ccc03241c584ad5fe69e3b25" + * Revert "ubuntu: AUFS -- track changes to the arguements to fop fsync()" + * Revert "ubuntu: AUFS -- update to standalone 2.6.35-rcN as at 20100601" + * Revert "ubuntu: AUFS -- update to standalone 2.6.34 as at 20100601" + * Revert "ubuntu: AUFS -- aufs2 base patch for linux-2.6.34" + * [Config] Disable intel_idle for -virtual kernels + - LP: #651370 + * [Config] enforcer -- ensure we never enable CONFIG_IMA + * debian -- pass the correct flavour name when checking configs + * [Config] enforcer -- ensure CONFIG_INTEL_IDLE is off for -virtual + * [Config] ensure CONFIG_IPV6=y for powerpc + * [Config] enforcer -- ensure CONFIG_IPV6=y + * ubuntu: AUFS -- aufs2-base.patch aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- aufs2-standalone.patch aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- update to aufs2.1-36-UNRELEASED-20101103 + * ubuntu: AUFS -- re-enable + * ubuntu: AUFS -- track changes to work queue initialisation + * ubuntu: AUFS -- track changes to llseek in v2.6.37-rc1 + * SAUCE: fbcon -- fix race between open and removal of framebuffers + * SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + - LP: #614008 + * SAUCE: drm -- stop early access to drm devices + + [ Jeremy Kerr ] + + * [Config] Build-in powermac ZILOG serial driver + - LP: #673346 + + [ Kees Cook ] + + * SAUCE: nx-emu: use upstream ASLR when possible + + [ Tim Gardner ] + + * [Config] Use correct be2iscsi module name in d-i/modules/scsi-modules + - LP: #628776 + + [ Upstream Kernel Changes ] + + * i386: NX emulation + * nx-emu: drop exec-shield sysctl, merge with disable_nx + * nx-emu: standardize boottime message prefix + * mmap randomization for executable mappings on 32-bit + * exec-randomization: brk away from exec rand area + + -- Andy Whitcroft Thu, 11 Nov 2010 23:46:37 +0000 + +linux (2.6.37-2.10) natty; urgency=low + + [ Andy Whitcroft ] + + * reinstate armel config changes: + * [Config] CONFIG_GPIO_PCH=n for armel FTBS + * [Config] CONFIG_GPIO_VX855=n for armel FTBS + + -- Andy Whitcroft Wed, 03 Nov 2010 22:20:35 +0000 + +linux (2.6.37-2.9) natty; urgency=low + + [ Andy Whitcroft ] + + * config -- fix genportsconfig + * [Config] move powerpc over from ports to distro + * bump master version number to match contained kernel + * SAUCE: fix documentation strings for struct input_keymap_entry + * usb: gadget: goku_udc: add registered flag bit + + -- Andy Whitcroft Tue, 02 Nov 2010 15:14:11 +0000 + +linux (2.6.36-2.8) natty; urgency=low + + [ Tim Gardner ] + + * [Config]: fix changed CONFIG_SYSFS_DEPRECATED_V2 enforcement rules + * [Config]: TWL4030_CORE=n for FTBS + * [Config]: CONFIG_ATH6K_LEGACY=n for FTBS + * [Config]: CONFIG_SOLO6X10=n for FTBS + * [Config]: CONFIG_GPIO_PCH=n for armel FTBS + * [Config]: CONFIG_GPIO_VX855=n for armel FTBS + * [Config]: CONFIG_DRM_NOUVEAU=n for armel FTBS + * [Config]: CONFIG_LINE6_USB=n for armel FTBS + * [Config]: CONFIG_SENSORS_AK8975=n for armel FTBS + * [Config]: CONFIG_I2C_I801=n for armel FTBS + * UBUNTU: SAUCE: AppArmor: Fix unpack of network tables. + * AppArmor: compatibility patch for v5 interface + * AppArmor: compatibility patch for v5 network controll + * Dropped (pre-stable): input: Support Clickpad devices in ClickZone mode + * Dropped: UBUNTU: SAUCE: libata: Add ALPM power state accounting to the AHCI driver + * Dropped: UBUNTU: SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + * Dropped: hid: 3m: Convert to MT slots + * Dropped: HID: magicmouse: don't allow hidinput to initialize the device + * Dropped: HID: magicmouse: simplify touch data bit manipulation + * Dropped: HID: magicmouse: simplify touch down logic + * Dropped: HID: magicmouse: enable Magic Trackpad support + * Dropped: UBUNTU: SAUCE: hid: ntrig: remove sysfs nodes + * Dropped: UBUNTU: SAUCE: hid: ntrig: Setup input filtering manually + * Dropped: UBUNTU: SAUCE: hid: ntrig: New ghost-filtering event logic + * Dropped: UBUNTU: SAUCE: hid: ntrig: identify firmware version (wiggled) + * Dropped: UBUNTU: (pre-stable): input: Support Clickpad devices in ClickZone mode + * Dropped: UBUNTU: SAUCE: KMS: cache the EDID information of the LVDS + * Dropped: UBUNTU: SAUCE: fbcon -- fix race between open and removal of framebuffers + * Dropped: UBUNTU: SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + * Dropped: UBUNTU: SAUCE: x86: implement cs-limit nx-emulation for ia32 + * Dropped: UBUNTU: SAUCE: x86: more tightly confine cs-limit nx-emulation to ia32 only + * Dropped: UBUNTU: SAUCE: [um] Don't use nx_enabled under UML + * Dropped: UBUNTU: SAUCE: x86: brk away from exec rand area + + [ Upstream Kernel Changes ] + + * rebased against 2.6.27-rc1 + + -- Tim Gardner Fri, 22 Oct 2010 19:35:05 -0600 + +linux (2.6.36-1.7) natty; urgency=low + + [ Andy Whitcroft ] + + * rebased to v2.6.36 final + * [Config] update configs following rebase to v2.6.36 final + * [Config] update ports configs following rebase to v2.6.36 final + + [ Upstream Kernel Changes ] + + * rebased to v2.6.36 final + + -- Andy Whitcroft Thu, 21 Oct 2010 14:28:57 +0100 + +linux (2.6.36-1.6) natty; urgency=low + + [ Upstream Kernel Changes ] + + * drop broadcom staging driver preview: + * Revert "Staging: Add initial release of brcm80211 - Broadcom 802.11n + wireless LAN driver." + + -- Andy Whitcroft Wed, 20 Oct 2010 10:41:25 +0100 + +linux (2.6.36-1.5) natty; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.36-rc8 + * updateconfigs following rebase to v2.6.36-rc8 + * updateportsconfigs following rebase to v2.6.36-rc8 + * config -- simplify the kernelconfig interface + * config -- add new config mode 'dumpconfigs' + + [ Tim Gardner ] + + * Simplify the use of CROSS_COMPILER + + [ Upstream Kernel Changes ] + + * drop broadcom staging driver preview: + * Revert "staging: brcm80211: Make compiling of brcm80211.ko and + brcmfmac.ko mutually exclusive." + * Revert "staging: brcm80211: Fix compile issue when BRCM80211_PCI is not + set." + * Revert "Staging: brcm80211: remove driver specific -W options" + * Revert "Staging: brcm80211: clean up makefile cflag lines" + * Revert "staging: brcm80211: add fullmac driver" + * Revert "staging: brcm80211: use string native library" + * Revert "staging: brcm80211: use native ctype library" + * Revert "staging: brcm80211: fix remaining checkpatch errors." + * Revert "staging: brcm80211: fix "ERROR: trailing whitespace."" + * Revert "staging: brcm80211: fix "ERROR: spaces required around that + ..."" + * Revert "staging: brcm80211: fix "ERROR: spaces prohibited around that + ':' ..."" + * Revert "staging: brcm80211: fix "ERROR: space required before that + ..."" + * Revert "staging: brcm80211: fix "ERROR: space required after that ..."" + * Revert "staging: brcm80211: fix "ERROR: space required after that close + brace"" + * Revert "staging: brcm80211: fix "ERROR: space prohibited before + ...close square bracket"" + * Revert "staging: brcm80211: fix "ERROR: space prohibited after that + ..."" + * Revert "staging: brcm80211: fix "ERROR: need consistent spacing around + '*'"" + * Revert "staging: brcm80211: fix 'ERROR: "(foo*)" should be "(foo *)"'" + * Revert "staging: brcm80211: fix "ERROR: Macros w/ mult. statements ... + do - while loop"" + * Revert "staging: brcm80211: fix "ERROR: Macros w/ complex values ... + parenthesis"" + * Revert "staging: brcm80211: fix "ERROR: do not initialise statics to 0 + or NULL"" + * Revert "staging: brcm80211: fix "ERROR: do not initialise globals to 0 + or NULL"" + * Revert "staging: brcm80211: fix "ERROR: while should follow close brace + '}'"" + * Revert "staging: brcm80211: fix "ERROR: that open brace { ... prev + line"" + * Revert "staging: brcm80211: fix "ERROR: trailing statements should be + on next line"" + * Revert "staging: brcm80211: fix "ERROR: do not use assignment in if + condition"" + * Revert "staging: brcm80211: fix "ERROR: return is not a function, + paren..."" + * Revert "staging: brcm80211: fix "ERROR: open brace '{' following + function dec..."" + * Revert "staging: brcm80211: fix 'ERROR: "foo * bar" should be "foo + *bar"'" + * Revert "staging: brcm80211: Fix URLs for firmware files." + * Revert "staging: brcm80211: use '%pM' format to print MAC address" + * Revert "staging: brcm80211: Add contact info to TODO list." + * Revert "staging: brcm80211: Fix some initialisation failure paths" + * Export dump_{write,seek} to binary loader modules + * rebase to v2.6.36-rc8. + + -- Andy Whitcroft Tue, 19 Oct 2010 18:58:11 +0100 + +linux (2.6.36-0.4) natty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: perf: increase stack footprint to avoid stack-protector warning + (fixes FTBS on powerpc) + + -- Andy Whitcroft Thu, 14 Oct 2010 13:16:16 +0100 + +linux (2.6.36-0.3) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable CONFIG_SCSI_QLA_ISCSI to fix FTBS on powerpc + + -- Andy Whitcroft Thu, 14 Oct 2010 03:01:30 +0100 + +linux (2.6.36-0.2) natty; urgency=low + + [ Andy Whitcroft ] + + * [Config] updateportsconfigs following rebase to 2.6.36-rc7 + (fix FTBS on powerpc) + + -- Andy Whitcroft Wed, 13 Oct 2010 23:25:12 +0100 + +linux (2.6.36-0.1) natty; urgency=low + + [ Andy Whitcroft ] + + * reduce disk usage during buildd builds + - LP: #645653 + * [Config] enforcer -- ensure CONFIG_INIT_PASS_ALL_PARAMS is y + * [Config] armel -- drop omap flavour + + [ Tim Gardner ] + + * Added dropped patch list + * more dropped patches + * [Config] Disable aufs, dmraid-4.5, ndis-wrapper + * [Config] Add support for cross compiling armel + * [Config] CONFIG_SCSI_QLA_ISCSI=n for armel + * [Upstream] drivers/serial/mfd.c: Fix ARM compile error + * [Config]: updateconfigs after adding brcm80211 + * staging: brcm80211: Fix Makefile syntax error + * rebased to v2.6.36-rc7 + + [ Upstream Kernel Changes ] + + * (upstream) IPS driver: don't toggle CPU turbo on unsupported CPUs + * (upstream) IPS driver: verify BIOS provided limits + * intel_ips: Print MCP limit exceeded values. + * Staging: Add initial release of brcm80211 - Broadcom 802.11n wireless + LAN driver. + * staging: brcm80211: Fix some initialisation failure paths + * staging: brcm80211: Add contact info to TODO list. + * staging: brcm80211: use '%pM' format to print MAC address + * staging: brcm80211: Fix URLs for firmware files. + * staging: brcm80211: fix 'ERROR: "foo * bar" should be "foo *bar"' + * staging: brcm80211: fix "ERROR: open brace '{' following function + dec..." + * staging: brcm80211: fix "ERROR: return is not a function, paren..." + * staging: brcm80211: fix "ERROR: do not use assignment in if condition" + * staging: brcm80211: fix "ERROR: trailing statements should be on next + line" + * staging: brcm80211: fix "ERROR: that open brace { ... prev line" + * staging: brcm80211: fix "ERROR: while should follow close brace '}'" + * staging: brcm80211: fix "ERROR: do not initialise globals to 0 or NULL" + * staging: brcm80211: fix "ERROR: do not initialise statics to 0 or NULL" + * staging: brcm80211: fix "ERROR: Macros w/ complex values ... + parenthesis" + * staging: brcm80211: fix "ERROR: Macros w/ mult. statements ... do - + while loop" + * staging: brcm80211: fix 'ERROR: "(foo*)" should be "(foo *)"' + * staging: brcm80211: fix "ERROR: need consistent spacing around '*'" + * staging: brcm80211: fix "ERROR: space prohibited after that ..." + * staging: brcm80211: fix "ERROR: space prohibited before ...close square + bracket" + * staging: brcm80211: fix "ERROR: space required after that close brace" + * staging: brcm80211: fix "ERROR: space required after that ..." + * staging: brcm80211: fix "ERROR: space required before that ..." + * staging: brcm80211: fix "ERROR: spaces prohibited around that ':' ..." + * staging: brcm80211: fix "ERROR: spaces required around that ..." + * staging: brcm80211: fix "ERROR: trailing whitespace." + * staging: brcm80211: fix remaining checkpatch errors. + * staging: brcm80211: use native ctype library + * staging: brcm80211: use string native library + * staging: brcm80211: add fullmac driver + * Staging: brcm80211: clean up makefile cflag lines + * Staging: brcm80211: remove driver specific -W options + * staging: brcm80211: Fix compile issue when BRCM80211_PCI is not set. + * staging: brcm80211: Make compiling of brcm80211.ko and brcmfmac.ko + mutually exclusive. + + -- Andy Whitcroft Tue, 12 Oct 2010 16:00:27 +0100 + +linux (2.6.35-22.33) maverick; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: Add support for Intellimouse Mode in ALPS touchpad on + Dell E2 series Laptops" + - LP: #641320 + + [ Brian Rogers ] + + * SAUCE: ir-core: Fix null dereferences in the protocols sysfs interface + - LP: #624701 + + [ Christopher James Halse Rogers ] + + * SAUCE: Nouveau: Add quirk framework to disable acceleration + - LP: #544088, #546393 + * SAUCE: Nouveau: Disable acceleration on MacBook Pros + - LP: #546393 + + [ John Johansen ] + + * Revert "SAUCE: AppArmor: allow newer tools to load policy on older + kernels" + * SAUCE: AppArmor: allow newer tools to load policy on older kernels + - LP: #639758 + + [ Mathieu J. Poirier ] + + * SAUCE: Adding vdd_sdi regulator supply to OMAP3EVM + + [ Upstream Kernel Changes ] + + * ALSA: HDA: Enable internal speaker on Dell M101z + - LP: #640254 + + -- Leann Ogasawara Fri, 17 Sep 2010 13:21:28 -0700 + +linux (2.6.35-22.32) maverick; urgency=low + + [ Arjan van de Ven ] + + * SAUCE: libata: Add ALPM power state accounting to the AHCI driver + + [ David Henningsson ] + + * SAUCE: ALSA: HDA: Enable internal mic on Dell E6410 and Dell E6510 + - LP: #605047, #628961 + + [ John Johansen ] + + * [Upstream] AppArmor: Fix splitting an fqname into separate namespace + and profile names + - LP: #615947 + * [Upstream] AppArmor: Fix locking from removal of profile namespace + - LP: #615947 + * SAUCE: AppArmor: allow newer tools to load policy on older kernels + - LP: #639758 + * SAUCE: Improve Amazon EBS performance for EC2 + - LP: #634316 + + [ Leann Ogasawara ] + + * Revert "SAUCE: i915 KMS -- blacklist i855" + * Revert "SAUCE: i915 KMS -- blacklist i845g" + * Revert "SAUCE: i915 KMS -- blacklist i830" + * Revert "SAUCE: i915 KMS -- support disabling KMS for known broken + devices" + * execute module-inclusion within a subshell + - LP: #621175 + + [ Upstream Kernel Changes ] + + * (pre-stable) bounce: call flush_dcache_page() after bounce_copy_vec() + - LP: #633227 + * (pre-stable) drm/i915: don't enable self-refresh on Ironlake + - LP: #629711 + * (pre-stable) mm: Move vma_stack_continue into mm.h + * x86, hwmon: Fix unsafe smp_processor_id() in thermal_throttle_add_dev + - LP: #601073 + * PM / Runtime: Make runtime_status attribute not debug-only (v. 2) + * PM / Runtime: Add runtime PM statistics (v3) + * compat: Make compat_alloc_user_space() incorporate the access_ok() + - CVE-2010-3081 + * x86-64, compat: Test %rax for the syscall number, not %eax + - CVE-2010-3301 + * x86-64, compat: Retruncate rax after ia32 syscall entry tracing + - CVE-2010-3301 + + -- Leann Ogasawara Tue, 14 Sep 2010 08:46:49 -0700 + +linux (2.6.35-21.31) maverick; urgency=low + + [ Andy Whitcroft ] + + * bodge linux-libc-dev package version due to ti-omap4 error + * linux-libc-dev -- ensure we can only build this on debian.master + + -- Leann Ogasawara Mon, 13 Sep 2010 09:54:31 -0700 + +linux (2.6.35-21.30) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: fbcon -- fix OOPs triggered by race prevention fixes + - LP: #614008 + + [ Daniel Lezcano ] + + * SAUCE: fix compilation warning when CONFIG_SECURITY is not set + + [ Henrik Rydberg ] + + * SAUCE: Input: wacom - add fuzz parameters to features + * SAUCE: Input: wacom - collect device quirks into single function + * SAUCE: Input: wacom - add support for the Bamboo Touch trackpad + * SAUCE: Input: wacom - add a quirk for low resolution Bamboo devices + * SAUCE: hid: ntrig: Remove unused device ids + * SAUCE: hid: ntrig: remove sysfs nodes + * SAUCE: hid: ntrig: Correct logic for quirks + * SAUCE: hid: ntrig: zero-initialize ntrig struct + * SAUCE: hid: ntrig: Setup input filtering manually + * SAUCE: hid: ntrig: New ghost-filtering event logic + + [ Leann Ogasawara ] + + * SAUCE: ndiswrapper: Initialize buffer index and check its value + - LP: #613796 + + [ Manoj Iyer ] + + * SAUCE: Add support for Intellimouse Mode in ALPS touchpad on Dell E2 + series Laptops + - LP: #632884 + + [ Ping Cheng ] + + * SAUCE: Input: wacom - parse the Bamboo device family + + [ Rafi Rubin ] + + * SAUCE: hid: ntrig: identify firmware version (wiggled) + + [ Tim Gardner ] + + * [Config] CONFIG_NL80211_TESTMODE=n + + [ Upstream Kernel Changes ] + + * Revert "input: mt: Add support for the Bamboo Touch trackpad" + * e1000e: initial support for 82579 LOMs + * e1000e: correct MAC-PHY interconnect register offset for 82579 + * (pre-stable) ALSA: hda - Add a new hp-laptop model for Conexant 5066, + tested on HP G60 + - LP: #587388 + * DSS2: Don't power off a panel twice + - LP: #588243 + * mmc: build fix: mmc_pm_notify is only available with CONFIG_PM=y + * Input: i8042 - reset keyboard controller wehen resuming from S2R + - LP: #86820 + * ALSA: hda - Fix beep frequency on IDT 92HD73xx and 92HD71Bxx codecs + - LP: #414795 + * agp/intel: Support the extended physical addressing bits on + Sandybridge. + - LP: #632488 + * drm/i915,intel_agp: Add support for Sandybridge D0 + - LP: #632488 + * (pre-stable) intel_agp,i915: Add more sandybridge graphics device ids + - LP: #632488 + * mmc: omap: fix for bus width which improves SD card's peformance. + + -- Leann Ogasawara Tue, 07 Sep 2010 09:58:52 -0700 + +linux (2.6.35-20.29) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: i915 KMS -- support disabling KMS for known broken devices + - LP: #563277 + * SAUCE: i915 KMS -- blacklist i830 + - LP: #542208, #563277 + * SAUCE: i915 KMS -- blacklist i845g + - LP: #541492, #563277 + * SAUCE: i915 KMS -- blacklist i855 + - LP: #511001, #541511, #563277 + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_SENSORS_PKGTEMP=m + - LP: #601073 + * ARM: Temporarily disable module check for armel + * rebase to v2.6.35.4 + * [Config] update configs following rebase to v2.6.35.4 + + [ Ricardo Salveti de Araujo ] + + * [Config] Change CONFIG_LEDS_TRIGGER_HEARTBEAT from module to built-in + in Omap + + [ Tim Gardner ] + + * [Config] Added be2net, be2scsi to udebs + - LP: #628776 + + [ Upstream Kernel Changes ] + + * x86, cpu: Package Level Thermal Control, Power Limit Notification + definitions + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: pkgtemp hwmon driver + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: thermal throttling handler + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: power limit + - LP: #601073 + * x86, hwmon: Package Level Thermal/Power: pkgtemp documentation + - LP: #601073 + * hid: 3m: Adjust to sequential MT HID protocol + * hid: 3m: Convert to MT slots + * hid: 3m: Correct touchscreen emulation + * hid: 3m: Adjust major / minor axes to scale + * input: bcm5974: Adjust major / minor to scale + * HID: magicmouse: don't allow hidinput to initialize the device + * HID: magicmouse: simplify multitouch feature request + * HID: magicmouse: simplify touch data bit manipulation + * HID: magicmouse: simplify touch down logic + * HID: magicmouse: remove timestamp logic + * HID: magicmouse: enable Magic Trackpad support + * HID: magicmouse: Adjust major / minor axes to scale + * mmc: fix all hangs related to mmc/sd card insert/removal during + suspend/resume + - LP: #477106 + * drm/i915: fix VGA plane disable for Ironlake+ + - LP: #602281 + + -- Leann Ogasawara Mon, 30 Aug 2010 08:38:01 -0700 + +linux (2.6.35-19.28) maverick; urgency=low + + [ Leann Ogasawara ] + + * No changes from 2.6.35-19.27. Some armel udebs were accidentally deleted + from the archive and a no-change rebuild was attempted. However, the ABI + did not get bumped and resulted in build failures for 2.6.35-19.27. Fix + up the ABI and re-upload. + + -- Leann Ogasawara Sat, 28 Aug 2010 16:42:27 -0700 + +linux (2.6.35-19.27) maverick; urgency=low + + [ Leann Ogasawara ] + + * No changes from 2.6.35-19.26. Some armel udebs were accidentally deleted + from the archive. + + -- Leann Ogasawara Fri, 27 Aug 2010 08:58:35 -0700 + +linux (2.6.35-19.26) maverick; urgency=low + + [ Upstream Kernel Changes ] + + * ARM: OMAP: Beagle: revision detection + * ARM: OMAP: Beagle: only Cx boards use pin 23 for write protect + * ARM: OMAP: Beagle: no gpio_wp pin connection on xM + + -- Leann Ogasawara Thu, 26 Aug 2010 09:15:09 -0700 + +linux (2.6.35-19.25) maverick; urgency=low + + [ Jarod Wilson ] + + * SAUCE: Bring in staging/lirc from 2.6.36 + - LP: #609234 + * SAUCE: Update ir-core to linuxtv/other which should be merged for + 2.6.36. + - LP: #609234 + * SAUCE: Fix memleaks in imon and mceusb drivers + - LP: #609234 + * SAUCE: Bring in streamzap support from linuxtv/other + - LP: #609234 + + [ Mario Limonciello ] + + * Remove ubuntu/lirc in favor of staging/lirc from 2.6.36 + - LP: #609234 + + [ Mathieu J. Poirier ] + + * SAUCE: ARM: adding i2c eeprom driver to read EDID + - LP: #608279 + + [ Upstream Kernel Changes ] + + * intel_idle: disable module support + - LP: #615265 + * (pre-stable) ALSA: hda - Ensure codec patch files are checked for the + correct codec ID + * (pre-stable) ALSA: hda - Rename iMic to Int Mic on Lenovo NB0763 + - LP: #605101 + * (pre-stable) ALSA: HDA: Use model=auto for LG R510 + - LP: #495134 + * (pre-stable) ALSA: HDA: Add Sony VAIO quirk for ALC269 + - LP: #519066 + * (pre-stable) ALSA: HDA: Fix front mic on Dell Precision M6500 + - LP: #519066 + * input: mt: Initialize slots to unused (rev2) + * input: mt: Add support for the Bamboo Touch trackpad + * hid: Add a hid quirk for input sync override + + -- Leann Ogasawara Mon, 23 Aug 2010 12:42:52 -0700 + +linux (2.6.35-18.24) maverick; urgency=low + + [ Colin Watson ] + + * Pass DEB_MAINT_PARAMS to hook scripts + + [ Leann Ogasawara ] + + * [Config] Add CONFIG_INPUT_UINPUT=y to config enforcer + - LP: #584812 + * rebase to v2.6.35.3 + + [ Upstream Kernel Changes ] + + * (pre-stable) dell-wmi: Add support for eject key on Dell Studio 1555 + - LP: #609234 + * can: add limit for nframes and clean up signed/unsigned variables + - CVE-2010-2959 + * drm: Initialize ioctl struct when no user data is present + - CVE-2010-2803 + * ARM: initial stack protector (-fstack-protector) support + * ARM: stack protector: change the canary value per task + * [ARM] implement arch_randomize_brk() + * [ARM] add address randomization to mmap() + * ARM: fix ASLR of PIE executables + + -- Leann Ogasawara Sun, 22 Aug 2010 19:22:04 -0700 + +linux (2.6.35-17.23) maverick; urgency=low + + [ Jeremy Kerr ] + + * [Config] build-in uinput module + - LP: #584812 + + [ Leann Ogasawara ] + + * Revert "[Config] [FTBS] ia64: Temporarily disable CONFIG_CEPH_FS" + * Revert "[Config] [FTBS] ia64: Temporarily disable gpiolib" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_MTD_NAND_DENALI" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_MFD_JANZ_CMODIO" + * Revert "[Config] [FTBS] sparc: Temporarily disable + CONFIG_INFINIBAND_QIB" + * [Config] Enable INTEL_IPS + - LP: #601057 + * Remove ia64 support + * [Config] Update portsconfigs after removing ia64 support + * Remove sparc support + * [Config] Update portsconfigs after removing sparc support + + [ Linus Torvalds ] + + * (pre-stable) mm: fix page table unmap for stack guard page properly + + [ Mathieu J. Poirier ] + + * SAUCE: (no-up) ARM: Resetting power_mode to its original value. + - LP: #591941 + + [ Upstream Kernel Changes ] + + * timer: add on-stack deferrable timer interfaces + - LP: #601057 + * x86 platform driver: intelligent power sharing driver + - LP: #601057 + * IPS driver: add GPU busy and turbo checking + - LP: #601057 + * X86: intel_ips, check for kzalloc properly + - LP: #601057 + * ips driver: make it less chatty + - LP: #601057 + + -- Leann Ogasawara Tue, 17 Aug 2010 09:38:08 -0700 + +linux (2.6.35-16.22) maverick; urgency=low + + [ Andy Whitcroft ] + + * debian -- more agressivly clean up after depmod on purge + - LP: #618591 + + [ Henrik Rydberg ] + + * SAUCE: hid: 3m: Simplify touchsreen emulation logic + + [ Leann Ogasawara ] + + * ubuntu: iscsitarget -- version 1.4.20.2 + * ubuntu: rtl8192se -- update to version 0017.0507.2010 + * rebase to v2.6.35.2 + * [Config] update configs following rebase to v2.6.35.2 + * [Config] update ports configs following rebase to v2.6.35.2 + + [ Luke Yelavich ] + + * [Config] Enable new firewire stack on powerpc + + [ Mathieu J. Poirier ] + + * SAUCE: (drop after 2.6.35) ARM: Using gpmc function to init nand flash. + - LP: #608266 + + -- Leann Ogasawara Thu, 12 Aug 2010 09:58:01 -0700 + +linux (2.6.35-15.21) maverick; urgency=low + + [ Luke Yelavich ] + + * [Config] CONFIG_SND_USB_UA101=m for all architectures + + [ Upstream Kernel Changes ] + + * Input: introduce MT event slots + * Input: document the MT event slot protocol + * (pre-stable) sched: Revert nohz_ratelimit() for now + * (pre-stable) drm/radeon/kms: add missing copy from user + - LP: #606081 + + [ Leann Ogasawara ] + + * rebase to v2.6.35.1 + + -- Leann Ogasawara Mon, 09 Aug 2010 09:24:04 -0700 + +linux (2.6.35-14.20) maverick; urgency=low + + [ Andy Whitcroft ] + + * update Vcs-Git to point to maverick repo + * debian -- include the debian packaging in the -source package + - LP: #608674 + * select debian source format 1.0 + * add support for building selected stages of kernel + - LP: #603087 + * cleanup conditional dependancy handling + - LP: #603087 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Handle missing NID 0x1b on ALC259 codec + - LP: #582199, #586418, #588031 + * ALSA: hda - Handle pin NID 0x1a on ALC259/269 + - LP: #582199, #586418, #588031 + * sched: Revert nohz_ratelimit() for now + + -- Leann Ogasawara Tue, 03 Aug 2010 08:46:47 -0700 + +linux (2.6.35-14.19) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.35 + + -- Leann Ogasawara Sun, 01 Aug 2010 10:35:56 -0700 + +linux (2.6.35-13.18) maverick; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: (no-up) Modularize vesafb -- fix initialisation + * SAUCE: add tracing for user initiated readahead requests + * SAUCE: vt -- maintain bootloader screen mode and content until vt + switch + * SAUCE: vt -- allow grub to request automatic vt_handoff + * SAUCE: fbcon -- fix race between open and removal of framebuffers + * SAUCE: drm -- stop early access to drm devices + + [ Bryan Wu ] + + * CONFIG: compile in OTG driver and Transceiver driver + - LP: #566645 + * remove OTG modules from modules list file + + [ John Johansen ] + + * SAUCE: AppArmor: -- sync to AppArmor mainline 2010-07-27 + - LP: #581525, #599450 + * SAUCE: AppArmor: -- sync to AppArmor mainline 2010-07-29 + * SAUCE: AppArmor 2.4 compatibility patch + * SAUCE: AppArmor: Allow dfa backward compatibility with broken userspace + * SAUCE: fix pv-ops for legacy Xen + * SAUCE: blkfront: default to sd devices + * [Config] Build in drivers required for Xen pv-ops + + [ Leann Ogasawara ] + + * Revert "[Upstream] i915: Use the correct mask to detect i830 aperture + size." + + [ Lee Jones ] + + * SAUCE: ARM: OMAP: Add macros for comparing silicon revision + - LP: #608095 + * SAUCE: OMAP: DSS2: check for both cpu type and revision, rather than + just revision + - LP: #608095 + * SAUCE: OMAP: DSS2: enable hsclk in dsi_pll_init for OMAP36XX + - LP: #608095 + * SAUCE: ARM: OMAP: Beagle: support twl gpio differences on xM + - LP: #608095 + + [ Upstream Kernel Changes ] + + * agp/intel: Use the correct mask to detect i830 aperture size. + - LP: #597075 + + -- Leann Ogasawara Fri, 30 Jul 2010 15:46:59 -0700 + +linux (2.6.35-12.17) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc6 + * [Config] update configs following rebase to v2.6.35-rc6 + * [Config] update ports configs following rebase to v2.6.35-rc6 + * SAUCE: [FTBS] armel: define KEY_F10 and KEYF11 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc6 + + -- Leann Ogasawara Fri, 23 Jul 2010 16:16:38 +0200 + +linux (2.6.35-11.16) maverick; urgency=low + + [ Leann Ogasawara ] + + * Bump ABI for new compiler update + + -- Leann Ogasawara Fri, 23 Jul 2010 10:24:58 +0200 + +linux (2.6.35-10.15) maverick; urgency=low + + [ Leann Ogasawara ] + + * Revert "SAUCE: ensure vga16fb loads if no other driver claims the VGA + device" + * [Config] Enable CONFIG_M686=y + - LP: #592495 + + [ Upstream Kernel Changes ] + + * tracing: Add alignment to syscall metadata declarations + + -- Leann Ogasawara Tue, 20 Jul 2010 18:18:49 +0200 + +linux (2.6.35-9.14) maverick; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- add BOM and automated update script + * ubuntu: AUFS -- update to b37c575759dc4535ccc03241c584ad5fe69e3b25 + + [ John Johansen ] + + * [Config] Enable DRBD as a module + + [ Kees Cook ] + + * SAUCE: Yama: verify inode is symlink to avoid bind mounts + - LP: #604407 + + [ Leann Ogasawara ] + + * [Config] Disable CONFIG_DRM_VMWGFX (staging driver) + - LP: #606139 + * [Config] ports: Disable CONFIG_DRM_VMWGFX (staging driver) + - LP: #606139 + * [Config] Enable CONFIG_DEBUG_STRICT_USER_COPY_CHECKS=y + * [Config] ports: Enable CONFIG_DEBUG_STRICT_USER_COPY_CHECKS=y + + [ Lee Jones ] + + * Stop ARM boards crashing when CUPS is loaded + - LP: #601226 + + [ Upstream Kernel Changes ] + + * perf probe: Support tracing an entry of array + * perf probe: Support static and global variables + + -- Leann Ogasawara Fri, 16 Jul 2010 14:38:17 -0700 + +linux (2.6.35-8.13) maverick; urgency=low + + [ Kees Cook ] + + * SAUCE: Yama: check PTRACE using thread group leader + * SAUCE: Yama: search for PTRACE exceptions via thread group leader + - LP: #603716 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc5 + * [Config] update configs following rebase to v2.6.35-rc5 + + [ Nicolas Pitre ] + + * SAUCE: make ndiswrapper available on X86 only + + [ Tim Gardner ] + + * [Config] Added ums-cypress to udeb + - LP: #576066 + * SAUCE: fix build error with CONFIG_BLK_DEV_INITRD=n + * [Config] CONFIG_NDISWRAPPER=m across all configs + + [ Upstream Kernel Changes ] + + * HID: magicmouse: report last touch up + * rebase to 2.6.35-rc5 + + -- Leann Ogasawara Tue, 13 Jul 2010 18:57:59 -0700 + +linux (2.6.35-7.12) maverick; urgency=low + + [ Tim Gardner ] + + * [Upstream] i915: Use the correct mask to detect i830 aperture size. + - LP: #597075 + + [ Upstream Kernel Changes ] + + * (drop after 2.6.35) drm/radeon/kms: add ioport register access + (squashed) + + -- Tim Gardner Thu, 08 Jul 2010 09:53:13 -0600 + +linux (2.6.35-7.11) maverick; urgency=low + + [ Tim Gardner ] + + * [Config] CONFIG_X86_MRST=n + + [ Upstream Kernel Changes ] + + * (drop after 2.6.35-rc5) writeback: remove writeback_inodes_wbc + * (drop after 2.6.35-rc5) writeback: split writeback_inodes_wb + * (drop after 2.6.35-rc5) writeback: simplify the write back thread queue + + -- Tim Gardner Tue, 06 Jul 2010 18:39:08 -0600 + +linux (2.6.35-7.10) maverick; urgency=low + + [ Kees Cook ] + + * SAUCE: security: create task_free security callback + * SAUCE: Yama: add PTRACE exception tracking and interface + * SAUCE: security: unconditionally chain to Yama LSM + * Revert "SAUCE: ptrace: restrict ptrace scope to children" + * Revert "SAUCE: fs: block hardlinks to non-accessible sources" + * Revert "SAUCE: fs: block cross-uid sticky symlinks" + * [Upstream] security: Yama LSM + * [Config] Enable CONFIG_SECURITY_YAMA=y + + [ Tim Gardner ] + + * [Config] updateconfigs/updateportsconfigs after rebase to 2.6.35-rc4 + + [ Upstream Kernel Changes ] + + * rebase to 2.6.35-rc4 + + -- Leann Ogasawara Thu, 01 Jul 2010 08:55:57 -0700 + +linux (2.6.35-6.9) maverick; urgency=low + + [ Tim Gardner ] + + * [Upstream] direct_splice_actor() should not use pos in sd + - LP: #588861 + + -- Leann Ogasawara Mon, 28 Jun 2010 12:35:49 -0700 + +linux (2.6.35-6.8) maverick; urgency=low + + [ Mathieu J. Poirier ] + + * ARM: Adding regulator supply for vdds_sdi. + - LP: #597904 + + -- Leann Ogasawara Sun, 27 Jun 2010 16:34:43 -0700 + +linux (2.6.35-6.7) maverick; urgency=low + + [ Alberto Milone ] + + * [Upstream] Add support for the ATIF ACPI method to the radeon driver + + [ Chase Douglas ] + + * [Upstream] HID: magicmouse: scroll on entire surface, not just middle + of mouse + * [Upstream] HID: magicmouse: disable and add module param for scroll + acceleration + * [Upstream] HID: magicmouse: properly account for scroll movement in + state + * [Upstream] HID: magicmouse: add param for scroll speed + * [Upstream] HID: magicmouse: enable horizontal scrolling + + [ Henrik Rydberg ] + + * [Upstream] Input: evdev - convert to dynamic event buffer + * [Upstream] Input: evdev - use driver hint to compute size of event + buffer + * [Upstream] Input: bcm5974 - set the average number of events per MT + event packet + * [Upstream] Input: hid-input - use a larger event buffer for MT devices + * [Upstream] Input: evdev - never leave the client buffer empty after + write + + [ John Johansen ] + + * SAUCE: AppArmor: -- mainline 2010-06-23 + * SAUCE: AppArmor 2.4 compatibility patch + * SAUCE: fs: block hardlinks to non-accessible sources AppArmor portion + + [ Leann Ogasawara ] + + * [Config] Enable CONFIG_INTR_REMAP=y + - LP: #597091 + * [Config] Enable CONFIG_X86_X2APIC + - LP: #597091 + + [ Mathieu J. Poirier ] + + * [Config] ARM: Turning off CONFIG_CPU_IDLE on omap + - LP: #594382 + + -- Leann Ogasawara Thu, 24 Jun 2010 12:19:48 -0700 + +linux (2.6.35-5.6) maverick; urgency=low + + [ Amit Kucheria ] + + * [Config] update omap flavour description + + [ Andy Whitcroft ] + + * update to ubuntu-debian:508b7aa34b578c0d1e51bfb571f2bfb824dc65ac + - LP: #570500, #576274 + * SAUCE: add option to hand off all kernel parameters to init + - LP: #586386 + * [Config] enable passing all kernel command line to init + - LP: #586386 + * [Config] disable CONFIG_VMI + - LP: #537601 + * [Config] enable CONFIG_IPV6_SIT_6RD + - LP: #591869 + * [Config] enable CONFIG_VMWARE_BALOON as module + - LP: #592039 + + [ Leann Ogasawara ] + + * Revert "SAUCE: pm: Config option to disable handling of console during + suspend/resume" + - LP: #594885 + * [Config] Remove CONFIG_PM_DISABLE_CONSOLE + * [Config] ports: enable passing all kernel command line to init + - LP: #586386 + * [Config] Enable CONFIG_FB_VESA=y for x86 + * [Config] Add CONFIG_FRAMEBUFFER_CONSOLE=y to config enforcer + * [Config] Add CONFIG_FB_VESA=y for x86 to config enforcer + * [Config] Enable CONFIG_TASK_DELAY_ACCT=y + - LP: #493156 + + [ Mathieu Poirier ] + + * ARM: Adding MosChip MCS7830 to nic-usb + - LP: #584920 + + [ Upstream Kernel Changes ] + + * Revert "[Upstream] docbook: need xmldoclinks for all doc types" + * docbook: need xmldoclinks for all doc types + * perf probe: Add kernel source path option + + -- Leann Ogasawara Thu, 17 Jun 2010 08:05:29 -0700 + +linux (2.6.35-4.5) maverick; urgency=low + + [ Leann Ogasawara ] + + * Revert "[Upstream] (evdev) Use driver hint to compute the evdev buffer + size (rev2)" + * Revert "[Upstream] (evdev) Convert to dynamic event buffer (rev4)" + * Revert "[Upstream] (evdev) Use multi-reader buffer to save space + (rev4)" + * Revert "SAUCE: drivers: Remove some duplicate device entries in various + modules" + * [Upstream] USB: option: Remove duplicate AMOI_VENDOR_ID + * [Upstream] Revert "USB: Adding support for HTC Smartphones to ipaq" + * [Upstream] p54usb: Comment out duplicate Medion MD40900 device id + + [ Tim Gardner ] + + * [Config] CONFIG_NFS_FSCACHE=y + - LP: #440522 + * [Config] CONFIG_FSCACHE_STATS=y, CONFIG_FSCACHE_HISTOGRAM=y + - LP: #440522 + + -- Leann Ogasawara Wed, 16 Jun 2010 08:43:07 -0700 + +linux (2.6.35-3.4) maverick; urgency=low + + [ Andy Whitcroft ] + + * debian -- ensure the version number is clean + + [ Henrik Rydberg ] + + * [Upstream] Introduce MT event slots (rev 5) + * [Upstream] Document the MT event slot protocol (rev5) + * [Upstream] (evdev) Use multi-reader buffer to save space (rev4) + * [Upstream] (evdev) Convert to dynamic event buffer (rev4) + * [Upstream] (evdev) Use driver hint to compute the evdev buffer size + (rev2) + + [ Leann Ogasawara ] + + * Revert "SAUCE: Add MODULE_ALIAS for Dell WMI module" + * Revert "SAUCE: hostap: send events on data interface as well as master + interface" + * Revert "Fix webcam having USB ID 0ac8:303b" + * Revert "SAUCE: toshiba_acpi -- pull in current -dev version of driver" + * rebase to v2.6.35-rc3 + + [ Maxim Levitsky ] + + * [Config] Enable new Smartmedia/xD translation layer + - LP: #202490 + + [ Upstream Kernel Changes ] + + * net: fix deliver_no_wcard regression on loopback device + + [ Upstream changes ] + + * rebased to v2.6.35-rc3 + + -- Leann Ogasawara Thu, 10 Jun 2010 16:15:22 -0700 + +linux (2.6.35-2.3) maverick; urgency=low + + [ Bryan Wu ] + + * CONFIG: enforce -- make sure we disable CONFIG_LOCALVERSION_AUTO + + [ Leann Ogasawara ] + + * [Config] armel: Enable CONFIG_BNX2=m + * [Config] ports: Enable CONFIG_BNX2X=m + * SAUCE: armel: define get_dma_ops to fix FTBS + + [ Tim Gardner ] + + * [Upstream] net: Print num_rx_queues imbalance warning only when there + are allocated queues + - LP: #591416 + + -- Leann Ogasawara Wed, 09 Jun 2010 08:27:41 -0700 + +linux (2.6.35-2.2) maverick; urgency=low + + [ Andy Whitcroft ] + + * [Config] d-i: make armel configuration versatile flavour specific + - LP: #588805 + * [Config] d-i: enable .udebs for omap flavour + - LP: #588805 + + [ Kees Cook ] + + * ptrace: limit scope to attach only (allow read) + - LP: #589656 + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc2 + * [Config] update configs following rebase to v2.6.35-rc2 + * [Config] update port configs following rebase to v2.6.35-rc2 + + [ Lee Jones ] + + * Enable perf to be more helpful when perf_ does not exist. + - LP: #570500 + * 'fdr editconfig' modification. Easily skip over unwanted menuconfigs. + + [ Tim Gardner ] + + * [Config] Update bnx2 udeb firmware files + - LP: #589304 + + [ Upstream changes ] + + * rebased to v2.6.35-rc2 + + -- Leann Ogasawara Mon, 07 Jun 2010 09:45:04 -0700 + +linux (2.6.35-1.1) maverick; urgency=low + + [ Andy Whitcroft ] + + * ubuntu: AUFS -- update to standalone 2.6.35-rcN as at 20100601 + - LP: #587888 + * ubuntu: AUFS -- track changes to the arguements to fop fsync() + + [ Leann Ogasawara ] + + * rebase to v2.6.35-rc1 + * [Config] update configs following rebase to v2.6.35-rc1 + * [Config] update port configs following rebase to v2.6.35-rc1 + * SAUCE: lirc: rename usb_buffer_alloc() and usb_buffer_free() + * SAUCE: ndiswrapper: rename usb_buffer_alloc() and usb_buffer_free() + * SAUCE: ndiswrapper: convert multicast list to list_head + * [Config] [FTBS] armel: Temporarily disable CONFIG_GPIO_JANZ_TTL + * [Config] [FTBS] ia64: Temporarily disable gpiolib + * [Config] [FTBS] ia64: Temporarily disable CONFIG_CEPH_FS + * [Config] [FTBS] sparc: Temporarily disable CONFIG_INFINIBAND_QIB + * [Config] [FTBS] sparc: Temporarily disable CONFIG_MFD_JANZ_CMODIO + * [Config] [FTBS] armel: Temporarily disable CONFIG_MFD_JANZ_CMODIO + * [Config] [FTBS] armel: Temporarily disable CONFIG_DT3155 + * [Config] [FTBS] sparc: Temporarily disable CONFIG_MTD_NAND_DENALI + * [Config] [FTBS] armel: Temporarily disable bnx2 + * [Config] [FTBS] armel: Temporarily disable CONFIG_SERIAL_UARTLITE + * SAUCE: [FTBS] armel: Don't include asm/agp.h for ttm + * SAUCE: [FTBS] armel: include linux/dma-mapping.h + * SAUCE: [FTBS] armel: replace omap_set_gpio_debounce with + gpio_set_debounce + + [ Upstream Kernel Changes ] + + * of/usb: fix build error due to of_node pointer move + * n2_crypto: Fix build after of_device/of_platform_driver changes. + * powerpc/fsl-booke: fix the case where we are not in the first page + * powerpc/fsl-booke: Move the entry setup code into a seperate file + * powerpc/kexec: Add support for FSL-BookE + * greth: Fix build after OF device conversions. + + [ Upstream changes ] + + * rebased to v2.6.35-rc1 + + -- Leann Ogasawara Fri, 04 Jun 2010 23:01:52 -0700 + +linux (2.6.35-1.0) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Null entry. + + -- Leann Ogasawara Wed, 02 Jun 2010 15:17:41 -0700 + +linux (2.6.34-5.14) maverick; urgency=low + + [ Tim Gardner ] + + * [Config] Added module inclusion support + * [Config] Added virtual flavour module inclusion list and d-i package + definitions + + -- Leann Ogasawara Wed, 02 Jun 2010 12:58:14 -0700 + +linux (2.6.34-5.13) maverick; urgency=low + + [ Andy Whitcroft ] + + * Revert "ubuntu: AUFS -- aufs2 20091209" + * Revert "ubuntu: AUFS -- export various core functions + (aufs2-standalone.patch)" + * Revert "ubuntu: AUFS -- export various core functions + (aufs2-base.patch)" + * ubuntu: AUFS -- aufs2 base patch for linux-2.6.34 + - LP: #587888 + * ubuntu: AUFS -- aufs2 standalone patch for linux-2.6.34 + - LP: #587888 + * ubuntu: AUFS -- update to standalone 2.6.34 as at 20100601 + - LP: #587888 + * [Config] AUFS -- enable aufs options + - LP: #587888 + + -- Leann Ogasawara Tue, 01 Jun 2010 08:56:43 -0700 + +linux (2.6.34-5.12) maverick; urgency=low + + [ Andy Whitcroft ] + + * enforce -- ensure SYSFS compatibility is disabled + + [ Chase Douglas ] + + * build with libdw-dev for perf probe symbol support + * maverick ftrace configuration changes + + [ Kees Cook ] + + * Revert "SAUCE: x86: brk away from exec rand area" + * Revert "SAUCE: [um] Don't use nx_enabled under UML" + * Revert "SAUCE: [x86] implement cs-limit nx-emulation for ia32" + * SAUCE: x86: implement cs-limit nx-emulation for ia32 + - LP: #369978 + * SAUCE: x86: more tightly confine cs-limit nx-emulation to ia32 only + * SAUCE: x86: brk away from exec rand area + - LP: #452175 + * SAUCE: ptrace: restrict ptrace scope to children + + [ Leann Ogasawara ] + + * Add new omap flavour to getabis + * [Config] Enable CONFIG_FRAMEBUFFER_CONSOLE=y for all archs + - LP: #585490 + * build/modules: Temorarily add ignore.modules + * ubuntu: iscsitarget -- version 1.4.20.1 + + [ Loïc Minier ] + + * SAUCE: [um] Don't use nx_enabled under UML + - LP: #524849 + + -- Leann Ogasawara Fri, 28 May 2010 08:27:17 -0700 + +linux (2.6.34-4.11) maverick; urgency=low + + [ Amit Kucheria ] + + * SAUCE: omap: remove calls to usb_nop_xceiv_register from board files + * [Config] Add support for OMAP-mainline flavour + + [ Andy Whitcroft ] + + * SAUCE: powerpc: fix compile error when ptrace.h is included from + userspace + - LP: #583733 + + [ Chase Douglas ] + + * Revert "SAUCE: Don't register vga16fb framebuffer if other framebuffers + are present" + * Revert "SAUCE: Disable function tracing after hitting __schedule_bug" + * Revert "SAUCE: drm/i915: don't change DRM configuration when releasing + load detect pipe" + + [ Kees Cook ] + + * SAUCE: fs: block cross-uid sticky symlinks + * SAUCE: fs: block hardlinks to non-accessible sources + + [ Koen Kooi ] + + * SAUCE: board-omap3-beagle: add DSS2 support + + [ Leann Ogasawara ] + + * Revert "staging/go7007 -- disable" + * Revert "[Config] staging/winbond -- disable" + * Revert "Disable 4MB page tables for Atom, work around errata AAE44" + * Revert "SAUCE: sync before umount to reduce time taken by ext4 umount" + * Revert "SAUCE: Enable an e1000e Intel Corporation 82567 Gigabit + controller" + * Revert "SAUCE: Fix MODULE_IMPORT/MODULE_EXPORT" + * Revert "SAUCE: Created MODULE_EXPORT/MODULE_IMPORT macros" + * Revert "SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps" + * Revert "SAUCE: r8169: disable TSO by default for RTL8111/8168B + chipsets." + * Revert "[Upstream] b43: Declare all possible firmware files." + * Revert "add Breaks: against hardy lvm2" + * Revert "SAUCE: Guest OS does not recognize a lun with non zero target + id on Vmware ESX Server" + * Revert "SAUCE: Catch nonsense keycodes and silently ignore" + * [Config] Enable CONFIG_ECRYPT_FS=y for ports + * [Config] Enable CONFIG_USB=y for armel and sparc + * [Config] Enable CONFIG_SCSI=y for ia64 and sparc + * [Config] Enable CONFIG_RFKILL=y for ports + * [Config] Enable CONFIG_ATH9K_DEBUGFS=y + * [Config] Enable CONFIG_IWMC3200TOP_DEBUGFS=y + * [Config] Enable CONFIG_RCU_FAST_NO_HZ=y + * [Config] Enable CONFIG_IWLWIFI_DEVICE_TRACING=y + * [Config] Enable CONFIG_LIBERTAS_MESH=y + * [Config] Enable CONFIG_MMC_RICOH_MMC=y + * [Config] CONFIG_RT2800USB_UNKNOWN=y + * [Config] Enable CONFIG_VGA_SWITCHEROO=y + * [Config] Enable CONFIG_CEPH_FS=m + * [Config] Enable CONFIG_CRYPTO_PCRYPT=m + * [Config] Enable CONFIG_EEEPC_WMI=m + * [Config] Enable CONFIG_RT2800PCI=m + * [Config] Enable CONFIG_SCSI_HPSA=m + * [Config] Enable CONFIG_VHOST_NET=m + * [Config] Disable CONFIG_SND_HDA_INPUT_BEEP_MODE by default + - LP: #582350 + * [Config] Disable CONFIG_SOUND_OSS* and CONFIG_SND_*OSS + - LP: #579300 + * [Config] Enable CONFIG_PCIEASPM=y + - LP: #333990 + * [Config] updateconfigs for OMAP flavour + + [ Loïc Minier ] + + * Enable perf tools on armel + + [ Tim Gardner ] + + * SAUCE: Updated ndiswrapper to 1.56 + - LP: #582555 + * [Config] Added virtual flavour + * [Config] Remove support for sub-flavours + * [Config] Removed amd64 preempt flavour + * [Config] updateconfigs, updateportsconfigs after flavour munging + + -- Leann Ogasawara Tue, 25 May 2010 09:34:55 -0700 + +linux (2.6.34-3.10) maverick; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34 + + [ Upstream changes ] + + * rebased to v2.6.34 + + -- Leann Ogasawara Tue, 18 May 2010 17:35:35 -0700 + +linux (2.6.34-2.9) maverick; urgency=low + + [ Leann Ogasawara ] + + * [Config] [FTBS] Disable comedi for armel + + -- Leann Ogasawara Thu, 13 May 2010 23:20:55 +0200 + +linux (2.6.34-2.8) maverick; urgency=low + + [ Leann Ogasawara ] + + * Drop lpia + * [Config] [FTBS] disable KVM + * [Config] [FTBS] disable ipr for armel + + -- Leann Ogasawara Thu, 13 May 2010 16:07:52 +0200 + +linux (2.6.34-2.7) maverick; urgency=low + + [ Leann Ogasawara ] + + * [Config] disable CONFIG_SCSI_IPR on powerpc + * [Config] Remove 386 flavour per UDS discussion + + -- Leann Ogasawara Wed, 12 May 2010 18:26:43 +0200 + +linux (2.6.34-1.6) maverick; urgency=low + + [ Chase Douglas ] + + * enforce CONFIG_TMPFS_POSIX_ACL=y + - LP: #575940 + * don't force module dependency checking + - LP: #577029 + + [ Kees Cook ] + + * SAUCE: mmap_min_addr check CAP_SYS_RAWIO only for write + - LP: #568844 + + [ Leann Ogasawara ] + + * Revert "SAUCE: ata: blacklist FUJITSU MHW2160BH PL" + * rebase to v2.6.34-rc7 + * [Config] update configs following rebase to v2.6.34-rc7 + * [Config] update port configs following rebase to v2.6.34-rc7 + * Add btrfs to the udebs + + [ Tim Gardner ] + + * [Config] Add atl1c to nic-modules udeb + - LP: #557130 + + [ Upstream changes ] + + * rebased to v2.6.34-rc7 + + -- Leann Ogasawara Tue, 11 May 2010 11:29:08 +0200 + +linux (2.6.34-1.5) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc6 + * [Config] update configs following rebase to v2.6.34-rc6 + * [Config] update port configs following rebase to v2.6.34-rc6 + + [ Upstream changes ] + + * rebased to v2.6.34-rc6 + + -- Leann Ogasawara Fri, 30 Apr 2010 15:54:05 +0100 + +linux (2.6.34-1.4) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc5 + * [Config] update ports configs following rebase to v2.6.34-rc5 + + [ Upstream changes ] + + * rebased to v2.6.34-rc5 + + -- Leann Ogasawara Thu, 22 Apr 2010 15:36:12 -0700 + +linux (2.6.34-1.3) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc4 + * [Config] update configs following rebase to v2.6.34-rc4 + * [Config] update port configs following rebase to v2.6.34-rc4 + * ubuntu: dm-raid4-5 -- update to compile with 2.6.34-rc4 + + [ Upstream changes ] + + * rebased to v2.6.34-rc4 + + -- Leann Ogasawara Tue, 13 Apr 2010 18:33:44 -0700 + +linux (2.6.34-1.2) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Temorarily disable building linux-doc + * rebase to v2.6.34-rc3 + * [Config] update configs following rebase to v2.6.34-rc3 + * [Config] update port configs following rebase to v2.6.34-rc3 + + [ Upstream changes ] + + * rebased to v2.6.34-rc3 + + -- Leann Ogasawara Tue, 30 Mar 2010 16:55:44 -0700 + +linux (2.6.34-1.1) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * rebase to v2.6.34-rc2 + * ubuntu: dm-raid4-5 -- update to compile with 2.6.34-rc2 + * [Config] update port configs following rebase to v2.6.34-rc2 + * [Config] update configs following rebase to v2.6.34-rc2 + + [ Upstream changes ] + + * rebased to v2.6.34-rc2 + + -- Leann Ogasawara Wed, 24 Mar 2010 23:00:39 -0700 + +linux (2.6.33-1.1) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * ubuntu: dm-raid4-5 -- update to compile with 2.6.33 + * ubuntu: lirc -- drop explicit include of linux/autoconf.h + * ubuntu: lirc -- pass kfifo to kfifo_alloc and move spinlock + * ubuntu: lirc -- rename kfifo_put and kfifo_get + * ubuntu: iscsitarget -- rename daddr inet_sock field + * rebased to v2.6.33 + * [Config] update configs following rebase to v2.6.33 + * [Config] update ports configs following rebase to v2.6.33 + + [ Upstream changes ] + + * rebased to v2.6.33 + + -- Leann Ogasawara Tue, 23 Mar 2010 03:55:46 -0700 + +linux (2.6.33-0.0) UNRELEASED; urgency=low + + [ Leann Ogasawara ] + + * Null entry. + + -- Leann Ogasawara Wed, 17 Mar 2010 07:48:56 -0700 + +linux (2.6.32-16.25) lucid; urgency=low + + [ Andy Whitcroft ] + + * linux-tools -- move to Suggests: with explicit seeding + - LP: #534635 + + [ Tim Gardner ] + + * [Config] CONFIG_HID=m + + [ Upstream Kernel Changes ] + + * (pre-stable) sched: Fix SMT scheduler regression in + find_busiest_queue() + * KVM: introduce kvm_vcpu_on_spin + * KVM: VMX: Add support for Pause-Loop Exiting + + -- Andy Whitcroft Tue, 09 Mar 2010 14:13:51 +0000 + +linux (2.6.32-16.24) lucid; urgency=low + + [ Andy Whitcroft ] + + * armel -- perf userspace does not support arm + * ia64 -- libelf-dev/binutils-dev to not provide necessary libraries + + -- Andy Whitcroft Sat, 06 Mar 2010 11:42:12 +0000 + +linux (2.6.32-16.23) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: PM report driver and device suspend/resume times -- move config + * update to standards version 3.8.4.0 + * printenv -- expose all of the package selectors + * source package -- cleanup source content control + * doc package -- ensure we do build package content on buildd + * lintian -- correct the address in the debian/copyright + * lintian -- update debhelper package version dependancy + * lintian -- fix ghostscript dependancy + * lintian -- add required misc:Depends + * lintian -- move our debhelper compat level to debian/compat + * perf -- build the kernel carried tools + * perf -- add linux-tools carrying the version switches and manuals + * SAUCE: fix up Kconfig for staging drivers + * [Config] enable NOUVEAU etc following drm backport + * update DRM to mainline v2.6.33 + * [Config] Remove AppArmor config options that no longer exist (ports) + * [Config] updateportsconfigs following drm update + + [ John Johansen ] + + * ubuntu: AppArmor -- update to mainline 2010-03-04 + * SAUCE: AppArmor: Reintroduce AppArmor 2.4 compatibility + * SAUCE: AppArmor: replace strim with strstrip for 2.6.32 kernels + * [Config] Remove AppArmor config options that no longer exist + + [ Manoj Iyer ] + + * ubuntu: rtl8192se -- version 2010-0115,0014 + - LP: #530275 + * [Config] added CONFIG_RTL8192SE module. + - LP: #530275 + + [ Tim Gardner ] + + * [Config] Added vmw_pvscsi to d-i/scsi-modules + - LP: #531017 + * [Upstream] netfilter: xt_recent: Add an entry reaper + + [ Upstream Kernel Changes ] + + * Revert "KVM: x86 emulator: Check CPL level during privilege instruction + emulation" + * Revert "KVM: x86 emulator: Fix popf emulation" + * Revert "KVM: x86 emulator: Check IOPL level during io instruction + emulation" + * Revert "KVM: x86 emulator: Add Virtual-8086 mode of emulation" + * Revert "KVM: fix memory access during x86 emulation." + * Add vlan (8021.Q) module package for d-i. + * (pre-stable) drm/i915: blacklist lid status: Sony VGN-BX196VP, Dell + Inspiron 700m + - LP: #515246 + * [Upstream] docbook: need xmldoclinks for all doc types + * x86: set_personality_ia32() misses force_personality32 + * lib: Introduce generic list_sort function + * drm/nv50: Implement ctxprog/state generation. + * drm/nv50: Remove redundant/incorrect ctxvals initialisation. + * (pre-stable) drm/i915: blacklist lid status: Sony VGN-BX196VP, Dell + Inspiron 700m + - LP: #515246 + + -- Andy Whitcroft Fri, 05 Mar 2010 15:40:38 +0000 + +linux (2.6.32-15.22) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] added new config option CONFIG_SR_REPORT_TIME_LIMIT" + * Revert "SAUCE: PM report driver and device suspend/resume times." + * [Config] set CONFIG_SR_REPORT_TIME_LIMIT + + [ Manoj Iyer ] + + * SAUCE: PM report driver and device suspend/resume times. + + -- Andy Whitcroft Tue, 02 Mar 2010 01:35:37 +0000 + +linux (2.6.32-15.21) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "(pre-stable) drm/i915: Increase fb alignment to 64k" + * Revert "[Config] lenovo-sl-laptop -- enable" + * Revert "ubuntu: lenovo-sl-laptop -- git tip (b19a08f81f)" + * armel -- cramfs module will no longer be built + * d-i -- make all modules optional + * rename the debug packages to match archive standard + - LP: #527837 + * lenovo-sl-laptop is no longer built + + [ Colin Ian King ] + + * Disable 4MB page tables for Atom, work around errata AAE44 + - LP: #523112 + + [ Colin Watson ] + + * ubuntu: dm-raid4-5: Depend on XOR_BLOCKS + * ubuntu: fsam7400: Depend on CHECK_SIGNATURE + + [ Jesse Barnes ] + + * SAUCE: drm/i915: don't change DRM configuration when releasing load + detect pipe + - LP: #488328 + + [ Loïc Minier ] + + * [Config] armel Update versatile initrd configs + - LP: #524893 + * SAUCE: [um] Don't use nx_enabled under UML + - LP: #524849 + + [ Manoj Iyer ] + + * [Config] added new config option CONFIG_SR_REPORT_TIME_LIMIT + + [ Mario Limonciello ] + + * SAUCE: v3 - Add Dell Business Class Netbook LED driver + + [ Rafael J. Wysocki ] + + * SAUCE: PM report driver and device suspend/resume times. + + [ Surbhi Palande ] + + * Revert "[Upstream] e1000e: enhance frame fragment detection" + - CVE-2009-4538 + * Revert "[Upstream] e1000: enhance frame fragment detection" + - CVE-2009-4536 + + [ Tim Gardner ] + + * [Config] Enabled CONFIG_LEDS_DELL_NETBOOKS=m + * SAUCE: (pre-stable) netfilter: xt_recent: fix buffer overflow + * SAUCE: (pre-stable) netfilter: xt_recent: fix false match + + [ Upstream Kernel Changes ] + + * Revert "(pre-stable) eCryptfs: Add getattr function" + * Fix potential crash with sys_move_pages + * futex_lock_pi() key refcnt fix + * futex: Handle user space corruption gracefully + * futex: Handle futex value corruption gracefully + * Fix race in tty_fasync() properly + * hwmon: (w83781d) Request I/O ports individually for probing + * hwmon: (lm78) Request I/O ports individually for probing + * hwmon: (adt7462) Wrong ADT7462_VOLT_COUNT + * ALSA: ctxfi - fix PTP address initialization + * drm/i915: disable hotplug detect before Ironlake CRT detect + * drm/i915: enable self-refresh on 965 + * drm/i915: Disable SR when more than one pipe is enabled + * drm/i915: Fix DDC on some systems by clearing BIOS GMBUS setup. + * drm/i915: Add HP nx9020/SamsungSX20S to ACPI LID quirk list + * drm/i915: Fix the incorrect DMI string for Samsung SX20S laptop + * drm/i915: Add MALATA PC-81005 to ACPI LID quirk list + * usb: r8a66597-hcd: Flush the D-cache for the pipe-in transfer buffers. + * i2c-tiny-usb: Fix on big-endian systems + * drm/i915: handle FBC and self-refresh better + * drm/i915: Increase fb alignment to 64k + * drm/i915: Update write_domains on active list after flush. + * regulator: Fix display of null constraints for regulators + * ALSA: hda-intel: Avoid divide by zero crash + * CPUFREQ: Fix use after free of struct powernow_k8_data + * freeze_bdev: don't deactivate successfully frozen MS_RDONLY sb + * cciss: Make cciss_seq_show handle holes in the h->drv[] array + * ioat: fix infinite timeout checking in ioat2_quiesce + * resource: add helpers for fetching rlimits + * fs/exec.c: restrict initial stack space expansion to rlimit + * cifs: fix length calculation for converted unicode readdir names + * NFS: Fix a reference leak in nfs_wb_cancel_page() + * NFS: Try to commit unstable writes in nfs_release_page() + * NFSv4: Don't allow posix locking against servers that don't support it + * NFSv4: Ensure that the NFSv4 locking can recover from stateid errors + * NFS: Fix an Oops when truncating a file + * NFS: Fix a umount race + * NFS: Fix a bug in nfs_fscache_release_page() + * NFS: Fix the mapping of the NFSERR_SERVERFAULT error + * md: fix 'degraded' calculation when starting a reshape. + * V4L/DVB: dvb-core: fix initialization of feeds list in demux filter + * Export the symbol of getboottime and mmonotonic_to_bootbased + * kvmclock: count total_sleep_time when updating guest clock + * KVM: PIT: control word is write-only + * tpm_infineon: fix suspend/resume handler for pnp_driver + * amd64_edac: Do not falsely trigger kerneloops + * netfilter: nf_conntrack: fix memory corruption with multiple namespaces + * netfilter: nf_conntrack: per netns nf_conntrack_cachep + * netfilter: nf_conntrack: restrict runtime expect hashsize modifications + * netfilter: xtables: compat out of scope fix + * netfilter: nf_conntrack: fix hash resizing with namespaces + * drm/i915: remove full registers dump debug + * drm/i915: add i915_lp_ring_sync helper + * drm/i915: Don't wait interruptible for possible plane buffer flush + * dasd: remove strings from s390dbf + * crypto: padlock-sha - Add import/export support + * wmi: Free the allocated acpi objects through wmi_get_event_data + * dell-wmi, hp-wmi, msi-wmi: check wmi_get_event_data() return value + * /dev/mem: introduce size_inside_page() + * devmem: check vmalloc address on kmem read/write + * devmem: fix kmem write bug on memory holes + * SCSI: mptfusion : mptscsih_abort return value should be SUCCESS instead + of value 0. + * sh: Couple kernel and user write page perm bits for CONFIG_X2TLB + * ALSA: hda - use WARN_ON_ONCE() for zero-division detection + * dst: call cond_resched() in dst_gc_task() + * ALSA: hda - Improved MacBook (Pro) 5,1 / 5,2 support + * befs: fix leak + * rtc-fm3130: add missing braces + * Call flush_dcache_page after PIO data transfers in libata-sff.c + * ahci: add Acer G725 to broken suspend list + * pktgen: Fix freezing problem + * x86/amd-iommu: Fix IOMMU-API initialization for iommu=pt + * x86/amd-iommu: Fix deassignment of a device from the pt_domain + * x86: Re-get cfg_new in case reuse/move irq_desc + * Staging: fix rtl8187se compilation errors with mac80211 + * ALSA: usb-audio - Avoid Oops after disconnect + * serial: 8250: add serial transmitter fully empty test + * sysfs: sysfs_sd_setattr set iattrs unconditionally + * class: Free the class private data in class_release + * USB: usbfs: only copy the actual data received + * USB: usbfs: properly clean up the as structure on error paths + * rtl8187: Add new device ID + * ACPI: Add NULL pointer check in acpi_bus_start + * ACPI: fix High cpu temperature with 2.6.32 + * drm/radeon/kms: use udelay for short delays + * NFS: Too many GETATTR and ACCESS calls after direct I/O + * eCryptfs: Add getattr function + * b43: Fix throughput regression + * ath9k: Fix sequence numbers for PAE frames + * mac80211: Fix probe request filtering in IBSS mode + * iwlwifi: Fix to set correct ht configuration + * dm stripe: avoid divide by zero with invalid stripe count + * dm log: userspace fix overhead_size calcuations + * Linux 2.6.32.9 + * sfc: Fix SFE4002 initialisation + * sfc: Fix sign of efx_mcdi_poll_reboot() error in efx_mcdi_poll() + * sfc: SFE4002/SFN4112F: Widen temperature and voltage tolerances + * (pre-stable) HID: handle joysticks with large number of buttons + - LP: #492056 + * (pre-stable) HID: extend mask for BUTTON usage page + - LP: #492056 + * PM: Measure device suspend and resume times + * e1000: enhance frame fragment detection + - CVE-2009-4536 + * e1000e: enhance frame fragment detection + - CVE-2009-4538 + * KVM: fix memory access during x86 emulation. + - CVE-2010-0306 + * KVM: x86 emulator: Add Virtual-8086 mode of emulation + - CVE-2010-0306 + * KVM: x86 emulator: Check IOPL level during io instruction emulation + - CVE-2010-0306 + * KVM: x86 emulator: Fix popf emulation + - CVE-2010-0306 + * KVM: x86 emulator: Check CPL level during privilege instruction + emulation + - CVE-2010-0306 + * Input: wacom - ensure the device is initialized properly upon resume + * Input: wacom - add defines for packet lengths of various devices + * Input: wacom - add support for new LCD tablets + - LP: #516777 + + -- Andy Whitcroft Mon, 01 Mar 2010 22:56:28 +0000 + +linux (2.6.32-14.20) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebuild following the GCC update to match compiler for out of tree modules + * Revert "[Config] drbd -- enable" + * Revert "ubuntu: drbd -- version 8.3.1" + * SAUCE: khubd -- switch USB product/manufacturer/serial handling to RCU + - LP: #510937 + + -- Andy Whitcroft Fri, 19 Feb 2010 18:47:18 +0000 + +linux (2.6.32-14.19) lucid; urgency=low + + [ Andy Whitcroft ] + + * ensure we build the source package contents when enabled + - LP: #522308 + * [Config] enable CONFIG_X86_MCE_XEON75XX + * SAUCE: AppArmor -- add linux/kref.h for struct kref + * [Config] enable CONFIG_HID_ORTEK + * enable udeb generation for arm versatile flavour + - LP: #522515 + + [ John Johansen ] + + * ubuntu: AppArmor -- update to mainline 2010-02-18 + - LP: #439560, #496110, #507069 + + [ Johnathon Harris ] + + * SAUCE: HID: add support for Ortek WKB-2000 + - LP: #405390 + + [ Upstream Kernel Changes ] + + * tpm_tis: TPM_STS_DATA_EXPECT workaround + - LP: #490487 + * x86, mce: Xeon75xx specific interface to get corrected memory error + information + * x86, mce: Rename cpu_specific_poll to mce_cpu_specific_poll + * x86, mce: Make xeon75xx memory driver dependent on PCI + * drm/edid: Unify detailed block parsing between base and extension + blocks + - LP: #500999 + * (pre-stable) eCryptfs: Add getattr function + - LP: #390833 + + -- Andy Whitcroft Thu, 18 Feb 2010 19:22:02 +0000 + +linux (2.6.32-13.18) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "enforcer -- make the enforcement configuration common" + * Revert "(pre-stable) Input: ALPS - add interleaved protocol support + (Dell E6x00 series)" + * Revert "(pre-stable) driver-core: fix devtmpfs crash on s390" + * Revert "(pre-stable) Driver-Core: devtmpfs - set root directory mode to + 0755" + * Revert "SAUCE: Adds support for COMPAL JHL90 webcam" + * Revert "SAUCE: fix kernel oops in VirtualBox during paravirt patching" + * Revert "SAUCE: make fc transport removal of target configurable" + * enforcer -- make the enforcement configuration common + * getabis -- add preempt flavour to the list + * [Config] enforce DEVTMPFS options + * [Config] armel -- cleanup to-be builtin modules + * [Config] cleanup ports configs + * [Config] enable CRYPTO_GHASH_CLMUL_NI_INTEL + - LP: #485536 + * add printdebian target to find branch target + * distclean -- do not remove debian.env + * [Config] generic-pae switch to M586TSC + - LP: #519448 + * git-ubuntu-log -- commonise duplicated log handling + * git-ubuntu-log -- tighten up Bug: NNNN matching + * git-ubuntu-log -- sort the bug numbers + + [ Chris Wilson ] + + * (pre-stable) drm/i915: Increase fb alignment to 64k + - LP: #404064 + + [ Eric Miao ] + + * arm -- enable ubuntu/ directory + + [ Huang Ying ] + + * SAUCE: crypto: ghash - Add PCLMULQDQ accelerated implementation + * SAUCE: crypto: ghash-intel - Fix building failure on x86_32 + + [ Loïc Minier ] + + * [Config] cleanup preempt configuration + * [Config] versatile: Fix video output + - LP: #517594 + * [Config] armel DEFAULT_MMAP_MIN_ADDR=32768 + * [Config] Large update to armel/versatile + * [Config] versatile: Add RTC support + * [Config] armel: Enable NEON + * [Config] versatile: Builtin MMC support + * [Config] versatile Builtin SCSI controller + * [Config] armel Disable dma_cache_sync callers + * [Config] armel Disable asm/time.h users + * [Config] armel Disable out of range udelay() + * [Config] armel Disable flush_cache_range() users + * [Config] armel -- Enable ubuntu/ drivers + + [ Steve Conklin ] + + * SAUCE: drm/i915: Add display hotplug event on Ironlake + * SAUCE: drm/i915: Add ACPI OpRegion support for Ironlake + + [ Upstream Kernel Changes ] + + * Revert "[Upstream]: oprofile/x86: add Xeon 7500 series support" + * Revert "Revert "[Bluetooth] Eliminate checks for impossible conditions + in IRQ handler"" + * clockevent: Don't remove broadcast device when cpu is dead + * clockevents: Add missing include to pacify sparse + * ACPI: don't cond_resched if irq is disabled + * be2net: Add support for next generation of BladeEngine device. + * be2net: Add the new PCI IDs to PCI_DEVICE_TABLE. + * mpt2sas: New device SAS2208 support is added + * ar9170: Add support for D-Link DWA 160 A2 + * powerpc/fsl: Add PCI device ids for new QoirQ chips + * davinci: dm646x: Add support for 3.x silicon revision + * Input: ALPS - add interleaved protocol support (Dell E6x00 series) + * Driver-Core: devtmpfs - set root directory mode to 0755 + * driver-core: fix devtmpfs crash on s390 + * vfs: get_sb_single() - do not pass options twice + * ALSA: hda - Add PCI IDs for Nvidia G2xx-series + * V4L/DVB (13569): smsusb: add autodetection support for five additional + Hauppauge USB IDs + * USB: mos7840: add device IDs for B&B electronics devices + * USB: ftdi_sio: add USB device ID's for B&B Electronics line + * V4L/DVB (13168): Add support for Asus Europa Hybrid DVB-T card (SAA7134 + SubVendor ID: 0x1043 Device ID: 0x4847) + * iTCO_wdt: Add support for Intel Ibex Peak + * atl1c:use common_task instead of reset_task and link_chg_task + * atl1e:disable NETIF_F_TSO6 for hardware limit + * V4L/DVB (13680a): DocBook/media: copy images after building HTML + * V4L/DVB (13680b): DocBook/media: create links for included sources + * netfilter: xtables: fix conntrack match v1 ipt-save output + * partitions: read whole sector with EFI GPT header + * partitions: use sector size for EFI GPT + * ALSA: ice1724 - Patch for suspend/resume for ESI Juli@ + * sched: Fix isolcpus boot option + * sched: Fix missing sched tunable recalculation on cpu add/remove + * nohz: Prevent clocksource wrapping during idle + * nfsd: Fix sort_pacl in fs/nfsd/nf4acl.c to actually sort groups + * timers, init: Limit the number of per cpu calibration bootup messages + * PCI: Always set prefetchable base/limit upper32 registers + * iscsi class: modify handling of replacement timeout + * NFS: Revert default r/wsize behavior + * HID: fixup quirk for NCR devices + * scsi_devinfo: update Hitachi entries (v2) + * scsi_dh: create sysfs file, dh_state for all SCSI disk devices + * scsi_transport_fc: remove invalid BUG_ON + * lpfc: fix hang on SGI ia64 platform + * libfc: fix typo in retry check on received PRLI + * libfc: fix ddp in fc_fcp for 0 xid + * fcoe: remove redundant checking of netdev->netdev_ops + * libfc: Fix wrong scsi return status under FC_DATA_UNDRUN + * libfc: lport: fix minor documentation errors + * libfc: don't WARN_ON in lport_timeout for RESET state + * fcoe: initialize return value in fcoe_destroy + * libfc: Fix frags in frame exceeding SKB_MAX_FRAGS in fc_fcp_send_data + * libfc: fix memory corruption caused by double frees and bad error + handling + * libfc: fix free of fc_rport_priv with timer pending + * libfc: remote port gets stuck in restart state without really + restarting + * fcoe, libfc: fix an libfc issue with queue ramp down in libfc + * fcoe: Fix checking san mac address + * fcoe: Fix getting san mac for VLAN interface + * qlge: Remove explicit setting of PCI Dev CTL reg. + * qlge: Set PCIE max read request size. + * qlge: Don't fail open when port is not initialized. + * qlge: Add handler for DCBX firmware event. + * qlge: Bonding fix for mode 6. + * PCI: AER: fix aer inject result in kernel oops + * DMI: allow omitting ident strings in DMI tables + * Input: i8042 - remove identification strings from DMI tables + * Input: i8042 - add Gigabyte M1022M to the noloop list + * Input: i8042 - add Dritek quirk for Acer Aspire 5610. + * ALSA: hda - select IbexPeak handler for Calpella + * ALSA: hda - Fix quirk for Maxdata obook4-1 + * ALSA: hda - Add missing Line-Out and PCM switches as slave + * iTCO_wdt.c - cleanup chipset documentation + * iTCO_wdt: add PCI ID for the Intel EP80579 (Tolapai) SoC + * iTCO_wdt: Add Intel Cougar Point and PCH DeviceIDs + * ahci: disable SNotification capability for ich8 + * ata_piix: fix MWDMA handling on PIIX3 + * md: fix small irregularity with start_ro module parameter + * V4L/DVB (13826): uvcvideo: Fix controls blacklisting + * cio: fix double free in case of probe failure + * cio: dont panic in non-fatal conditions + * netiucv: displayed TX bytes value much too high + * ipc ns: fix memory leak (idr) + * ALSA: hda - Fix HP T5735 automute + * hwmon: (fschmd) Fix a memleak on multiple opens of /dev/watchdog + * UBI: fix memory leak in update path + * UBI: initialise update marker + * ASoC: fix a memory-leak in wm8903 + * mac80211: check that ieee80211_set_power_mgmt only handles STA + interfaces. + * cfg80211: fix channel setting for wext + * KVM: S390: fix potential array overrun in intercept handling + * KVM: only allow one gsi per fd + * KVM: Fix race between APIC TMR and IRR + * KVM: MMU: bail out pagewalk on kvm_read_guest error + * KVM: x86: Fix host_mapping_level() + * KVM: x86: Fix probable memory leak of vcpu->arch.mce_banks + * KVM: x86: Fix leak of free lapic date in kvm_arch_vcpu_init() + * KVM: fix lock imbalance in kvm_*_irq_source_id() + * KVM: only clear irq_source_id if irqchip is present + * IPoIB: Clear ipoib_neigh.dgid in ipoib_neigh_alloc() + * x86: Reenable TSC sync check at boot, even with NONSTOP_TSC + * ACPI: enable C2 and Turbo-mode on Nehalem notebooks on A/C + - LP: #516325 + * iwlwifi: Fix throughput stall issue in HT mode for 5000 + * fnctl: f_modown should call write_lock_irqsave/restore + * x86, msr/cpuid: Pass the number of minors when unregistering MSR and + CPUID drivers. + * Linux 2.6.32.7 + * scsi_lib: Fix bug in completion of bidi commands + * mptsas: Fix issue with chain pools allocation on katmai + * mm: add new 'read_cache_page_gfp()' helper function + * drm/i915: Selectively enable self-reclaim + * firewire: ohci: fix crashes with TSB43AB23 on 64bit systems + * S390: fix single stepped svcs with TRACE_IRQFLAGS=y + * x86: Set hotpluggable nodes in nodes_possible_map + * x86: Remove "x86 CPU features in debugfs" (CONFIG_X86_CPU_DEBUG) + * libata: retry FS IOs even if it has failed with AC_ERR_INVALID + * zcrypt: Do not remove coprocessor for error 8/72 + * dasd: fix possible NULL pointer errors + * ACPI: Add a generic API for _OSC -v2 + * ACPI: Add platform-wide _OSC support. + * ACPI: fix OSC regression that caused aer and pciehp not to load + * ACPI: Advertise to BIOS in _OSC: _OST on _PPC changes + * UBI: fix volume creation input checking + * e1000/e1000e: don't use small hardware rx buffers + * drm/i915: Reload hangcheck timer too for Ironlake + * Fix a leak in affs_fill_super() + * Fix failure exits in bfs_fill_super() + * fix oops in fs/9p late mount failure + * fix leak in romfs_fill_super() + * Fix remount races with symlink handling in affs + * fix affs parse_options() + * Fix failure exit in ipathfs + * mm: fix migratetype bug which slowed swapping + * FDPIC: Respect PT_GNU_STACK exec protection markings when creating + NOMMU stack + * Split 'flush_old_exec' into two functions + * sparc: TIF_ABI_PENDING bit removal + * x86: get rid of the insane TIF_ABI_PENDING bit + * Input: winbond-cir - remove dmesg spam + * x86: Disable HPET MSI on ATI SB700/SB800 + * iwlwifi: set default aggregation frame count limit to 31 + * drm/i915: only enable hotplug for detected outputs + * firewire: core: add_descriptor size check + * SECURITY: selinux, fix update_rlimit_cpu parameter + * regulator: Specify REGULATOR_CHANGE_STATUS for WM835x LED constraints + * x86: Add Dell OptiPlex 760 reboot quirk + - LP: #488319 + * x86: Add quirk for Intel DG45FC board to avoid low memory corruption + * x86/amd-iommu: Fix possible integer overflow + * clocksource: fix compilation if no GENERIC_TIME + * tcp: update the netstamp_needed counter when cloning sockets + * sky2: Fix oops in sky2_xmit_frame() after TX timeout + * net: restore ip source validation + * af_packet: Don't use skb after dev_queue_xmit() + * ax25: netrom: rose: Fix timer oopses + * KVM: allow userspace to adjust kvmclock offset + * oprofile/x86: add Xeon 7500 series support + * oprofile/x86: fix crash when profiling more than 28 events + * libata: retry link resume if necessary + * mm: percpu-vmap fix RCU list walking + * mm: purge fragmented percpu vmap blocks + * block: fix bio_add_page for non trivial merge_bvec_fn case + * Fix 'flush_old_exec()/setup_new_exec()' split + * random: drop weird m_time/a_time manipulation + * random: Remove unused inode variable + * block: fix bugs in bio-integrity mempool usage + * usb: r8a66597-hdc disable interrupts fix + * connector: Delete buggy notification code. + * be2net: Bug fix to support newer generation of BE ASIC + * be2net: Fix memset() arg ordering. + * mm: flush dcache before writing into page to avoid alias + * mac80211: fix NULL pointer dereference when ftrace is enabled + * imxfb: correct location of callbacks in suspend and resume + * mx3fb: some debug and initialisation fixes + * starfire: clean up properly if firmware loading fails + * kernel/cred.c: use kmem_cache_free + * uartlite: fix crash when using as console + * pktcdvd: removing device does not remove its sysfs dir + * ath9k: fix eeprom INI values override for 2GHz-only cards + * ath9k: fix beacon slot/buffer leak + * powerpc: TIF_ABI_PENDING bit removal + * NET: fix oops at bootime in sysctl code + * Linux 2.6.32.8 + + -- Andy Whitcroft Wed, 10 Feb 2010 18:56:52 +0000 + +linux (2.6.32-12.17) lucid; urgency=low + + [ Andy Whitcroft ] + + * restore linux-image prefix -- master + * enforce -- we require SELINUX enabled -- master + * enforce -- ensure APPARMOR is our default LSM -- master + * make doc package completely optional -- master + * make source package completely optional -- master + * make linux-libc-dev completly optional -- master + * convert package disable to a deps list -- master + * allow common headers to switch from indep to arch -- master + * convert binary package disable to a deps list -- master + * add configuration option for a full source build tree -- master + * add support for uImage kernels in package control scripts + * getabis -- cleanup and parameterise repository list -- master + * getabis -- move configuration to etc/getabi -- master + * kernelconfig -- move configuration to etc -- master + * rules -- make debian/debian.env master for branch name + * set the current branch name -- master + * pull back common debian.master files into debian -- master + * enforcer -- make the enforcement configuration common + * insert-changes -- correctly link to debian/rules in DROOT + + [ Colin Watson ] + + * future-proof ddeb handling against buildd changes + + [ Eric Miao ] + + * SAUCE: Make CONFIG_{OMNIBOOK, AVERATEC_5100P, PACKARDBELL_E5} depend on + X86 + + [ Loïc Minier ] + + * Add modules.builtin.bin to prerm rm list + - LP: #516584 + + [ Tim Gardner ] + + * [Config] Implement the amd64 preempt flavour + + [ Upstream Kernel Changes ] + + * syslog: distinguish between /proc/kmsg and syscalls + - LP: #515623 + * sfc: Fix polling for slow MCDI operations + * sfc: Fix conditions for MDIO self-test + * sfc: QT202x: Remove unreliable MMD check at initialisation + * sfc: Add workspace for GMAC bug workaround to MCDI MAC_STATS buffer + * sfc: Use fixed-size buffers for MCDI NVRAM requests + + -- Andy Whitcroft Fri, 05 Feb 2010 07:09:31 +0000 + +linux (2.6.32-12.16) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: acpi battery -- delay first lookup of the battery until + first use" + * SAUCE: acpi battery -- move first lookup asynchronous + - LP: #507211 + * [Config] update configs to cleanup generic configs + * [Config] disable CONFIG_X86_CPU_DEBUG for amd64 + * [Config] enable USER_NS + - LP: #480739, #509808 + + [ Heiko Carstens ] + + * (pre-stable) driver-core: fix devtmpfs crash on s390 + - LP: #512370 + + [ John Johansen ] + + * [Config] for server and virtual flavours make CONFIG_SCSI_SYM53C8XX_2=y + - LP: #494565 + * [Config] VIRTIO=y for server/virtual flavours + - LP: #494565 + + [ Kay Sievers ] + + * (pre-stable) Driver-Core: devtmpfs - set root directory mode to 0755 + - LP: #512370 + + [ Kees Cook ] + + * SAUCE: x86: brk away from exec rand area + - LP: #452175 + + [ Leann Ogasawara ] + + * [Upstream] e1000: enhance frame fragment detection + - CVE-2009-4536 + * [Upstream] e1000e: enhance frame fragment detection + - CVE-2009-4538 + + [ Sebastian Kapfer ] + + * (pre-stable) Input: ALPS - add interleaved protocol support (Dell E6x00 + series) + - LP: #296610 + + [ Upstream Kernel Changes ] + + * inotify: do not reuse watch descriptors + - LP: #485556 + * inotify: only warn once for inotify problems + * revert "drivers/video/s3c-fb.c: fix clock setting for Samsung SoC + Framebuffer" + * memcg: ensure list is empty at rmdir + * drm/i915: remove loop in Ironlake interrupt handler + * block: Fix incorrect reporting of partition alignment + * x86, mce: Thermal monitoring depends on APIC being enabled + * futexes: Remove rw parameter from get_futex_key() + * page allocator: update NR_FREE_PAGES only when necessary + * x86, apic: use physical mode for IBM summit platforms + * edac: i5000_edac critical fix panic out of bounds + * x86: SGI UV: Fix mapping of MMIO registers + * mfd: WM835x GPIO direction register is not locked + * mfd: Correct WM835x ISINK ramp time defines + * ALSA: hda - Fix missing capture mixer for ALC861/660 codecs + * V4L/DVB (13868): gspca - sn9c20x: Fix test of unsigned. + * reiserfs: truncate blocks not used by a write + * HID: add device IDs for new model of Apple Wireless Keyboard + * PCI/cardbus: Add a fixup hook and fix powerpc + * Input: pmouse - move Sentelic probe down the list + * asus-laptop: add Lenovo SL hotkey support + * sched: Fix cpu_clock() in NMIs, on !CONFIG_HAVE_UNSTABLE_SCHED_CLOCK + * sparc64: Fix NMI programming when perf events are active. + * sparc64: Fix Niagara2 perf event handling. + * i2c: Do not use device name after device_unregister + * i2c/pca: Don't use *_interruptible + * serial/8250_pnp: add a new Fujitsu Wacom Tablet PC device + * sched: Fix task priority bug + * vfs: Fix vmtruncate() regression + * Linux 2.6.32.5 + * x86, msr/cpuid: Register enough minors for the MSR and CPUID drivers + * V4L/DVB (13900): gspca - sunplus: Fix bridge exchanges. + * Staging: asus_oled: fix oops in 2.6.32.2 + * Staging: hv: fix smp problems in the hyperv core code + * tty: fix race in tty_fasync + * ecryptfs: use after free + * ecryptfs: initialize private persistent file before dereferencing + pointer + * nozomi: quick fix for the close/close bug + * serial: 8250_pnp: use wildcard for serial Wacom tablets + * usb: serial: fix memory leak in generic driver + * USB: fix bitmask merge error + * USB: Don't use GFP_KERNEL while we cannot reset a storage device + * USB: EHCI: fix handling of unusual interrupt intervals + * USB: EHCI & UHCI: fix race between root-hub suspend and port resume + * USB: add missing delay during remote wakeup + * USB: add speed values for USB 3.0 and wireless controllers + * ACPI: EC: Accelerate query execution + * ACPI: EC: Add wait for irq storm + * SCSI: enclosure: fix oops while iterating enclosure_status array + * drm/i915: Read the response after issuing DDC bus switch command + * drm/i915: try another possible DDC bus for the SDVO device with + multiple outputs + * block: bdev_stack_limits wrapper + * DM: Fix device mapper topology stacking + * x86/PCI/PAT: return EINVAL for pci mmap WC request for !pat_enabled + * USB: fix usbstorage for 2770:915d delivers no FAT + * vmalloc: remove BUG_ON due to racy counting of VM_LAZY_FREE + * perf timechart: Use tid not pid for COMM change + * perf events: Dont report side-band events on each cpu for + per-task-per-cpu events + * perf: Honour event state for aux stream data + * Linux 2.6.32.6 + + -- Andy Whitcroft Wed, 27 Jan 2010 16:40:23 +0000 + +linux (2.6.32-11.15) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "(pre-stable) drm/radeon/kms: fix crtc vblank update for r600" + * Revert "(pre-stable) sched: Fix balance vs hotplug race" + * Revert "[Upstream] acerhdf: Limit modalias matching to supported + boards" + * Revert "[Upstream] mmc: prevent dangling block device from accessing + stale queues" + * Revert "SAUCE: Fix nx_enable reporting" + * Revert "SAUCE: [x86] fix report of cs-limit nx-emulation" + * Revert "SAUCE: [x86] implement cs-limit nx-emulation for ia32" + * SAUCE: i915 -- disable powersave by default + - LP: #492392 + + [ Kees Cook ] + + * SAUCE: [x86] implement cs-limit nx-emulation for ia32 + - LP: #369978 + * SAUCE: [x86] fix report of cs-limit nx-emulation + - LP: #454285 + * SAUCE: Fix nx_enable reporting + - LP: #454285 + + [ Tim Gardner ] + + * [Upstream] b43: Declare all possible firmware files. + - LP: #488636 + * [Config] updateconfigs after adding pvscsi + - LP: #497156 + * [Config] CONFIG_BT=m + + [ Upstream Kernel Changes ] + + * Revert "x86: Side-step lguest problem by only building cmpxchg8b_emu + for pre-Pentium" + * SCSI: ipr: fix EEH recovery + * SCSI: qla2xxx: dpc thread can execute before scsi host has been added + * SCSI: st: fix mdata->page_order handling + * SCSI: fc class: fix fc_transport_init error handling + * sched: Fix task_hot() test order + * x86, cpuid: Add "volatile" to asm in native_cpuid() + * sched: Select_task_rq_fair() must honour SD_LOAD_BALANCE + * clockevents: Prevent clockevent_devices list corruption on cpu hotplug + * pata_hpt3x2n: fix clock turnaround + * pata_cmd64x: fix overclocking of UDMA0-2 modes + * ASoC: wm8974: fix a wrong bit definition + * sound: sgio2audio/pdaudiocf/usb-audio: initialize PCM buffer + * ALSA: hda - Fix missing capsrc_nids for ALC88x + * acerhdf: limit modalias matching to supported + - LP: #435958 + * ACPI: EC: Fix MSI DMI detection + * ACPI: Use the return result of ACPI lid notifier chain correctly + * powerpc: Handle VSX alignment faults correctly in little-endian mode + * ASoC: Do not write to invalid registers on the wm9712. + * drm/radeon: fix build on 64-bit with some compilers. + * USB: emi62: fix crash when trying to load EMI 6|2 firmware + * USB: option: support hi speed for modem Haier CE100 + * USB: Fix a bug on appledisplay.c regarding signedness + * USB: musb: gadget_ep0: avoid SetupEnd interrupt + * Bluetooth: Prevent ill-timed autosuspend in USB driver + * USB: rename usb_configure_device + * USB: fix bugs in usb_(de)authorize_device + * drivers/net/usb: Correct code taking the size of a pointer + * x86: SGI UV: Fix writes to led registers on remote uv hubs + * md: Fix unfortunate interaction with evms + * dma: at_hdmac: correct incompatible type for argument 1 of + 'spin_lock_bh' + * dma-debug: Do not add notifier when dma debugging is disabled. + * dma-debug: Fix bug causing build warning + * cifs: NULL out tcon, pSesInfo, and srvTcp pointers when chasing DFS + referrals + * x86/amd-iommu: Fix initialization failure panic + * ioat3: fix p-disabled q-continuation + * ioat2,3: put channel hardware in known state at init + * KVM: MMU: remove prefault from invlpg handler + * KVM: LAPIC: make sure IRR bitmap is scanned after vm load + * Libertas: fix buffer overflow in lbs_get_essid() + * iwmc3200wifi: fix array out-of-boundary access + * mac80211: fix propagation of failed hardware reconfigurations + * mac80211: fix WMM AP settings application + * mac80211: Fix IBSS merge + * cfg80211: fix race between deauth and assoc response + * ath5k: fix SWI calibration interrupt storm + * ath9k: wake hardware for interface IBSS/AP/Mesh removal + * ath9k: Fix TX queue draining + * ath9k: fix missed error codes in the tx status check + * ath9k: wake hardware during AMPDU TX actions + * ath9k: fix suspend by waking device prior to stop + * ath9k_hw: Fix possible OOB array indexing in gen_timer_index[] on + 64-bit + * ath9k_hw: Fix AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_BB and its shift value + in 0x4054 + * iwl3945: disable power save + * iwl3945: fix panic in iwl3945 driver + * iwlwifi: fix EEPROM/OTP reading endian annotations and a bug + * iwlwifi: fix more eeprom endian bugs + * iwlwifi: fix 40MHz operation setting on cards that do not allow it + * mac80211: fix race with suspend and dynamic_ps_disable_work + * NOMMU: Optimise away the {dac_,}mmap_min_addr tests + * 'sysctl_max_map_count' should be non-negative + * kernel/sysctl.c: fix the incomplete part of + sysctl_max_map_count-should-be-non-negative.patch + * V4L/DVB (13596): ov511.c typo: lock => unlock + * x86/ptrace: make genregs[32]_get/set more robust + * memcg: avoid oom-killing innocent task in case of use_hierarchy + * e100: Fix broken cbs accounting due to missing memset. + * ipv6: reassembly: use seperate reassembly queues for conntrack and + local delivery + * netfilter: fix crashes in bridge netfilter caused by fragment jumps + * hwmon: (sht15) Off-by-one error in array index + incorrect constants + * b43: avoid PPC fault during resume + * Keys: KEYCTL_SESSION_TO_PARENT needs TIF_NOTIFY_RESUME architecture + support + * sched: Fix balance vs hotplug race + * drm/radeon/kms: fix crtc vblank update for r600 + * drm: disable all the possible outputs/crtcs before entering KMS mode + * S390: dasd: support DIAG access for read-only devices + * xen: fix is_disconnected_device/exists_disconnected_device + * xen: improvement to wait_for_devices() + * xen: wait up to 5 minutes for device connetion + * orinoco: fix GFP_KERNEL in orinoco_set_key with interrupts disabled + * udf: Try harder when looking for VAT inode + * Add unlocked version of inode_add_bytes() function + * quota: decouple fs reserved space from quota reservation + * ext4: Convert to generic reserved quota's space management. + * ext4: fix sleep inside spinlock issue with quota and dealloc (#14739) + * x86, msr: Unify rdmsr_on_cpus/wrmsr_on_cpus + * cpumask: use modern cpumask style in drivers/edac/amd64_edac.c + * amd64_edac: unify MCGCTL ECC switching + * x86, msr: Add support for non-contiguous cpumasks + * x86, msr: msrs_alloc/free for CONFIG_SMP=n + * amd64_edac: fix driver instance freeing + * amd64_edac: make driver loading more robust + * amd64_edac: fix forcing module load/unload + * sched: Sched_rt_periodic_timer vs cpu hotplug + * ext4: Update documentation to correct the inode_readahead_blks option + name + * lguest: fix bug in setting guest GDT entry + * vmscan: do not evict inactive pages when skipping an active list scan + * ksm: fix mlockfreed to munlocked + * rt2x00: Disable powersaving for rt61pci and rt2800pci. + * generic_permission: MAY_OPEN is not write access + * Linux 2.6.32.3 + * untangle the do_mremap() mess + * fasync: split 'fasync_helper()' into separate add/remove functions + * ASoC: fix params_rate() macro use in several codecs + * modules: Skip empty sections when exporting section notes + * exofs: simple_write_end does not mark_inode_dirty + * nfsd: make sure data is on disk before calling ->fsync + * sunrpc: fix peername failed on closed listener + * SUNRPC: Fix up an error return value in + gss_import_sec_context_kerberos() + * SUNRPC: Fix the return value in gss_import_sec_context() + * sunrpc: on successful gss error pipe write, don't return error + * drm/i915: Update LVDS connector status when receiving ACPI LID event + * drm/i915: fix order of fence release wrt flushing + * drm/i915: Permit pinning whilst the device is 'suspended' + * drm: remove address mask param for drm_pci_alloc() + * drm/i915: Enable/disable the dithering for LVDS based on VBT setting + * drm/i915: Make the BPC in FDI rx/transcoder be consistent with that in + pipeconf on Ironlake + * drm/i915: Select the correct BPC for LVDS on Ironlake + * drm/i915: fix unused var + * rtc_cmos: convert shutdown to new pnp_driver->shutdown + * drivers/cpuidle/governors/menu.c: fix undefined reference to + `__udivdi3' + * cgroups: fix 2.6.32 regression causing BUG_ON() in cgroup_diput() + * lib/rational.c needs module.h + * dma-debug: allow DMA_BIDIRECTIONAL mappings to be synced with + DMA_FROM_DEVICE and + * kernel/signal.c: fix kernel information leak with print-fatal-signals=1 + * mmc_block: add dev_t initialization check + * mmc_block: fix probe error cleanup bug + * mmc_block: fix queue cleanup + * ALSA: hda - Fix ALC861-VD capture source mixer + * ALSA: ac97: Add Dell Dimension 2400 to Headphone/Line Jack Sense + blacklist + * ALSA: atiixp: Specify codec for Foxconn RC4107MA-RS2 + - LP: #498863 + * ASoC: Fix WM8350 DSP mode B configuration + * netfilter: ebtables: enforce CAP_NET_ADMIN + * netfilter: nf_ct_ftp: fix out of bounds read in update_nl_seq() + * hwmon: (coretemp) Fix TjMax for Atom N450/D410/D510 CPUs + * hwmon: (adt7462) Fix pin 28 monitoring + * quota: Fix dquot_transfer for filesystems different from ext4 + * xen: fix hang on suspend. + * iwlwifi: fix iwl_queue_used bug when read_ptr == write_ptr + * ath5k: Fix eeprom checksum check for custom sized eeproms + * cfg80211: fix syntax error on user regulatory hints + * iwl: off by one bug + * mac80211: add missing sanity checks for action frames + * drm/i915: remove render reclock support + * libertas: Remove carrier signaling from the scan code + * kernel/sysctl.c: fix stable merge error in NOMMU mmap_min_addr + * mac80211: fix skb buffering issue (and fixes to that) + * fix braindamage in audit_tree.c untag_chunk() + * fix more leaks in audit_tree.c tag_chunk() + * module: handle ppc64 relocating kcrctabs when CONFIG_RELOCATABLE=y + * ipv6: skb_dst() can be NULL in ipv6_hop_jumbo(). + * agp/intel-agp: Clear entire GTT on startup + * Linux 2.6.32.4 + * ethtool: Add reset operation + * gro: Name the GRO result enumeration type + * gro: Change all receive functions to return GRO result codes + * sfc: 10Xpress: Initialise pause advertising flags + * sfc: 10Xpress: Report support for pause frames + * sfc: Remove redundant header gmii.h + * sfc: Remove redundant hardware initialisation + * sfc: Rename Falcon-specific board code and types + * sfc: Remove boards.h, moving last remaining declaration to falcon.h + * sfc: Remove versioned bitfield macros + * sfc: Move RX data FIFO thresholds out of struct efx_nic_type + * sfc: Update hardware definitions for Siena + * sfc: Rename register I/O header and functions used by both Falcon and + Siena + * sfc: Eliminate indirect lookups of queue size constants + * sfc: Define DMA address mask explicitly in terms of descriptor field + width + * sfc: Move all TX DMA length limiting into tx.c + * sfc: Change order of device removal to reverse of probe order + * sfc: Remove declarations of nonexistent functions + * sfc: Move efx_xmit_done() declaration into correct stanza + * sfc: Move shared members of struct falcon_nic_data into struct efx_nic + * sfc: Maintain interrupt moderation values in ticks, not microseconds + * sfc: Removed kernel-doc for nonexistent member of efx_phy_operations + * sfc: Remove pointless abstraction of memory BAR number + * sfc: Remove incorrect assertion from efx_pci_remove_main() + * sfc: Remove unnecessary tests of efx->membase + * sfc: Move MTD probe after netdev registration and name allocation + * sfc: Remove unused code for non-autoneg speed/duplex switching + * sfc: Rename 'xfp' file and functions to reflect reality + * sfc: Really allow RX checksum offload to be disabled + * sfc: Feed GRO result into RX allocation policy and interrupt moderation + * sfc: Enable heuristic selection between page and skb RX buffers + * sfc: Remove pointless abstraction of memory BAR number (2) + * sfc: Remove redundant gotos from __efx_rx_packet() + * sfc: Remove ridiculously paranoid assertions + * sfc: Move assertions and buffer cleanup earlier in efx_rx_packet_lro() + * sfc: Record RX queue number on GRO path + * sfc: SFT9001: Reset LED configuration correctly after blinking + * sfc: Use a single blink implementation + * sfc: Rename efx_board::init_leds to init_phy and use for SFN4111T + * sfc: Make board information explicitly Falcon-specific + * sfc: Move definition of struct falcon_nic_data into falcon.h + * sfc: Move struct falcon_board into struct falcon_nic_data + * sfc: Move all I2C stuff into struct falcon_board + * sfc: Gather link state fields in struct efx_nic into new struct + efx_link_state + * sfc: Remove unnecessary casts to struct sk_buff * + * sfc: Remove redundant efx_xmit() function + * sfc: Combine high-level header files + * sfc: Log interrupt and reset type names, not numbers + * sfc: Fix descriptor cache sizes + * sfc: Treat all MAC registers as 128-bit + * sfc: Strengthen EFX_ASSERT_RESET_SERIALISED + * sfc: Comment corrections + * sfc: Remove unused constant + * sfc: Clean up struct falcon_board and struct falcon_board_data + * sfc: Fix bugs in RX queue flushing + * sfc: Remove unused function efx_flush_queues() + * sfc: Only switch Falcon MAC clocks as necessary + * sfc: Hold MAC lock for longer in efx_init_port() + * sfc: Split MAC stats DMA initiation and completion + * sfc: Move Falcon board/PHY/MAC monitoring code to falcon.c + * sfc: Simplify XMAC link polling + * sfc: Change MAC promiscuity and multicast hash at the same time + * sfc: Move inline comment into kernel-doc + * sfc: Do not set net_device::trans_start in self-test + * sfc: Simplify PHY polling + * sfc: QT202x: Reset before reading PHY id + * sfc: Replace MDIO spinlock with mutex + * sfc: Always start Falcon using the XMAC + * sfc: Limit some hardware workarounds to Falcon + * sfc: Remove EFX_WORKAROUND_9141 macro + * sfc: Remove another unused workaround macro + * sfc: Remove some redundant whitespace + * sfc: Decouple NIC revision number from Falcon PCI revision number + * sfc: Move descriptor cache base addresses to struct efx_nic_type + * sfc: Clean up RX event handling + * sfc: Remove redundant writes to INT_ADR_KER + * sfc: Remove duplicate hardware structure definitions + * sfc: Turn pause frame generation on and off at the MAC, not the RX FIFO + * sfc: Move Falcon NIC operations to efx_nic_type + * sfc: Refactor link configuration + * sfc: Generalise link state monitoring + * sfc: Add power-management and wake-on-LAN support + * sfc: Implement ethtool reset operation + * sfc: Add efx_nic_type operation for register self-test + * sfc: Add efx_nic_type operation for NVRAM self-test + * sfc: Add efx_nic_type operation for identity LED control + * sfc: Separate shared NIC code from Falcon-specific and rename + accordingly + * sfc: Fold falcon_probe_nic_variant() into falcon_probe_nic() + * sfc: Extend loopback mode enumeration + * sfc: Remove static PHY data and enumerations + * sfc: Extend MTD driver for use with new NICs + * sfc: Allow for additional checksum offload features + * sfc: Rename falcon.h to nic.h + * sfc: Move shared NIC code from falcon.c to new source file nic.c + * sfc: Add firmware protocol definitions (MCDI) + * sfc: Add support for SFC9000 family (1) + * sfc: Add support for SFC9000 family (2) + * sfc: Implement TSO for TCP/IPv6 + * sfc: Update version, copyright dates, authors + * drivers/net/sfc: Correct code taking the size of a pointer + * sfc: Move PHY software state initialisation from init() into probe() + * sfc: Include XGXS in XMAC link status check except in XGMII loopback + * sfc: Fix DMA mapping cleanup in case of an error in TSO + * sfc: QT2025C: Work around PHY bug + * sfc: QT2025C: Switch into self-configure mode when not in loopback + * sfc: QT2025C: Work around PHY firmware initialisation bug + * sfc: QT2025C: Add error message for suspected bad SFP+ cables + * sfc: Disable TX descriptor prefetch watchdog + * [SCSI] vmw_pvscsi: SCSI driver for VMware's virtual HBA. + - LP: #497156 + + -- Andy Whitcroft Tue, 19 Jan 2010 16:12:47 +0000 + +linux (2.6.32-10.14) lucid; urgency=low + + [ Alex Deucher ] + + * SAUCE: drm/radeon/kms: fix LVDS setup on r4xx + - LP: #493795 + + [ Andy Whitcroft ] + + * Revert "(pre-stable) acpi: Use the ARB_DISABLE for the CPU which model + id is less than 0x0f." + * config-check -- ensure the checks get run at build time + * config-check -- check the processed config during updateconfigs + * config-check -- CONFIG_SECCOMP may not be present + * TUN is now built in ignore + * SAUCE: acpi battery -- delay first lookup of the battery until first + use + * SAUCE: async_populate_rootfs: move rootfs init earlier + * ubuntu: AppArmor -- update to mainline 2010-01-06 + * SAUCE: move RLIMIT_CORE pipe dumper marker to 1 + - LP: #498525 + + [ Dave Airlie ] + + * (pre-stable) drm/radeon/kms: fix crtc vblank update for r600 + + [ Leann Ogasawara ] + + * Add asix to nic-usb-modules file + - LP: #499785 + + [ Peter Zijlstra ] + + * (pre-stable) sched: Fix balance vs hotplug race + + [ Tim Gardner ] + + * [Config] Enable CONFIG_FUNCTION_TRACER + - LP: #497989 + * [Config] Drop lpia from getabis + * [Config] Build in TUN/TAP driver + - LP: #499491 + * [Config] DH_COMPAT=5 + + [ Upstream Kernel Changes ] + + * Revert "(pre-stable) drm/i915: Avoid NULL dereference with + component_only tv_modes" + * Revert "(pre-stable) drm/i915: Fix sync to vblank when VGA output is + turned off" + * USB: usb-storage: fix bug in fill_inquiry + * USB: option: add pid for ZTE + * firewire: ohci: handle receive packets with a data length of zero + * rcu: Prepare for synchronization fixes: clean up for non-NO_HZ handling + of ->completed counter + * rcu: Fix synchronization for rcu_process_gp_end() uses of ->completed + counter + * rcu: Fix note_new_gpnum() uses of ->gpnum + * rcu: Remove inline from forward-referenced functions + * perf_event: Fix invalid type in ioctl definition + * perf_event: Initialize data.period in perf_swevent_hrtimer() + * perf: Don't free perf_mmap_data until work has been done + * PM / Runtime: Fix lockdep warning in __pm_runtime_set_status() + * sched: Check for an idle shared cache in select_task_rq_fair() + * sched: Fix affinity logic in select_task_rq_fair() + * sched: Rate-limit newidle + * sched: Fix and clean up rate-limit newidle code + * x86/amd-iommu: attach devices to pre-allocated domains early + * x86/amd-iommu: un__init iommu_setup_msi + * x86, Calgary IOMMU quirk: Find nearest matching Calgary while walking + up the PCI tree + * x86: Fix iommu=nodac parameter handling + * x86: GART: pci-gart_64.c: Use correct length in strncmp + * x86: ASUS P4S800 reboot=bios quirk + - LP: #366682 + * x86, apic: Enable lapic nmi watchdog on AMD Family 11h + * ssb: Fix range check in sprom write + * ath5k: allow setting txpower to 0 + * ath5k: enable EEPROM checksum check + * hrtimer: Fix /proc/timer_list regression + * ALSA: hrtimer - Fix lock-up + * ALSA: hda - Terradici HDA controllers does not support 64-bit mode + * KVM: x86 emulator: limit instructions to 15 bytes + * KVM: s390: Fix prefix register checking in arch/s390/kvm/sigp.c + * KVM: s390: Make psw available on all exits, not just a subset + * KVM: fix irq_source_id size verification + * KVM: x86: include pvclock MSRs in msrs_to_save + * x86: Prevent GCC 4.4.x (pentium-mmx et al) function prologue wreckage + * x86: Use -maccumulate-outgoing-args for sane mcount prologues + * x86, mce: don't restart timer if disabled + * x86/mce: Set up timer unconditionally + * x86: SGI UV: Fix BAU initialization + * x86: Fix duplicated UV BAU interrupt vector + * x86: Add new Intel CPU cache size descriptors + * x86: Fix typo in Intel CPU cache size descriptor + * pata_hpt{37x|3x2n}: fix timing register masks (take 2) + * s390: clear high-order bits of registers after sam64 + * V4L/DVB: Fix test in copy_reg_bits() + * bsdacct: fix uid/gid misreporting + * UBI: flush wl before clearing update marker + * jbd2: don't wipe the journal on a failed journal checksum + * USB: xhci: Add correct email and files to MAINTAINERS entry. + * USB: musb_gadget_ep0: fix unhandled endpoint 0 IRQs, again + * USB: option.c: add support for D-Link DWM-162-U5 + * USB: usbtmc: repeat usb_bulk_msg until whole message is transfered + * USB: usb-storage: add BAD_SENSE flag + * USB: Close usb_find_interface race v3 + * pxa/em-x270: fix usb hub power up/reset sequence + * hfs: fix a potential buffer overflow + * SUNRPC: IS_ERR/PTR_ERR confusion + * NFS: Fix nfs_migrate_page() + * md/bitmap: protect against bitmap removal while being updated. + * futex: Take mmap_sem for get_user_pages in fault_in_user_writeable + * devpts_get_tty() should validate inode + * debugfs: fix create mutex racy fops and private data + * Driver core: fix race in dev_driver_string + * Serial: Do not read IIR in serial8250_start_tx when UART_BUG_TXEN + * mac80211: Fix bug in computing crc over dynamic IEs in beacon + * mac80211: Fixed bug in mesh portal paths + * mac80211: Revert 'Use correct sign for mesh active path refresh' + * mac80211: fix scan abort sanity checks + * wireless: correctly report signal value for IEEE80211_HW_SIGNAL_UNSPEC + * rtl8187: Fix wrong rfkill switch mask for some models + * x86: Fix bogus warning in apic_noop.apic_write() + * mm: hugetlb: fix hugepage memory leak in mincore() + * mm: hugetlb: fix hugepage memory leak in walk_page_range() + * powerpc/windfarm: Add detection for second cpu pump + * powerpc/therm_adt746x: Record pwm invert bit at module load time] + * powerpc: Fix usage of 64-bit instruction in 32-bit altivec code + * drm/radeon/kms: Add quirk for HIS X1300 board + * drm/radeon/kms: handle vblanks properly with dpms on + * drm/radeon/kms: fix legacy crtc2 dpms + * drm/radeon/kms: fix vram setup on rs600 + * drm/radeon/kms: rs6xx/rs740: clamp vram to aperture size + * drm/ttm: Fix build failure due to missing struct page + * drm/i915: Set the error code after failing to insert new offset into mm + ht. + * drm/i915: Add the missing clonemask for display port on Ironlake + * xen/xenbus: make DEVICE_ATTR()s static + * xen: re-register runstate area earlier on resume. + * xen: restore runstate_info even if !have_vcpu_info_placement + * xen: correctly restore pfn_to_mfn_list_list after resume + * xen: register timer interrupt with IRQF_TIMER + * xen: register runstate on secondary CPUs + * xen: don't call dpm_resume_noirq() with interrupts disabled. + * xen: register runstate info for boot CPU early + * xen: call clock resume notifier on all CPUs + * xen: improve error handling in do_suspend. + * xen: don't leak IRQs over suspend/resume. + * xen: use iret for return from 64b kernel to 32b usermode + * xen: explicitly create/destroy stop_machine workqueues outside + suspend/resume region. + * Xen balloon: fix totalram_pages counting. + * xen: try harder to balloon up under memory pressure. + * dm exception store: free tmp_store on persistent flag error + * dm snapshot: only take lock for statustype info not table + * dm crypt: move private iv fields to structs + * dm crypt: restructure essiv error path + * dm: avoid _hash_lock deadlock + * dm snapshot: cope with chunk size larger than origin + * dm crypt: separate essiv allocation from initialisation + * dm crypt: make wipe message also wipe essiv key + * slc90e66: fix UDMA handling + * tcp: Stalling connections: Fix timeout calculation routine + * ip_fragment: also adjust skb->truesize for packets not owned by a + socket + * b44 WOL setup: one-bit-off stack corruption kernel panic fix + * sparc64: Don't specify IRQF_SHARED for LDC interrupts. + * sparc64: Fix overly strict range type matching for PCI devices. + * sparc64: Fix stack debugging IRQ stack regression. + * sparc: Set UTS_MACHINE correctly. + * b43legacy: avoid PPC fault during resume + * tracing: Fix event format export + * ath9k: Fix TX hang poll routine + * ath9k: fix processing of TX PS null data frames + * ath9k: Fix maximum tx fifo settings for single stream devices + * ath9k: fix tx status reporting + * mac80211: Fix dynamic power save for scanning. + * drm/i915: Fix sync to vblank when VGA output is turned off + * memcg: fix memory.memsw.usage_in_bytes for root cgroup + * thinkpad-acpi: fix default brightness_mode for R50e/R51 + * thinkpad-acpi: preserve rfkill state across suspend/resume + * ipw2100: fix rebooting hang with driver loaded + * matroxfb: fix problems with display stability + * acerhdf: add new BIOS versions + * asus-laptop: change light sens default values. + * vmalloc: conditionalize build of pcpu_get_vm_areas() + * ACPI: Use the ARB_DISABLE for the CPU which model id is less than 0x0f. + * net: Fix userspace RTM_NEWLINK notifications. + * ext3: Fix data / filesystem corruption when write fails to copy data + * V4L/DVB (13116): gspca - ov519: Webcam 041e:4067 added. + * bcm63xx_enet: fix compilation failure after get_stats_count removal + * x86: Under BIOS control, restore AP's APIC_LVTTHMR to the BSP value + * drm/i915: Avoid NULL dereference with component_only tv_modes + * drm/i915: PineView only has LVDS and CRT ports + * drm/i915: Fix LVDS stability issue on Ironlake + * mm: sigbus instead of abusing oom + * ipvs: zero usvc and udest + * jffs2: Fix long-standing bug with symlink garbage collection. + * intel-iommu: Detect DMAR in hyperspace at probe time. + * intel-iommu: Apply BIOS sanity checks for interrupt remapping too. + * intel-iommu: Check for an RMRR which ends before it starts. + * intel-iommu: Fix oops with intel_iommu=igfx_off + * intel-iommu: ignore page table validation in pass through mode + * netfilter: xtables: document minimal required version + * perf_event: Fix incorrect range check on cpu number + * implement early_io{re,un}map for ia64 + * Linux 2.6.32.2 + + -- Andy Whitcroft Thu, 07 Jan 2010 15:28:43 +0000 + +linux (2.6.32-9.13) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_B43_PHY_LP + - LP: #493059 + * include modules.builtin in the binary debs + * config-check -- add a configuration enforcer + * config-check -- add a unit-test suite to the checker + * [Config] Enable CONFIG_SYN_COOKIES for versatile + * [Config] Enable CONFIG_SECURITY_SMACK for ports + * [Config] Enable CONFIG_SECURITY_FILE_CAPABILITIES for ports + * [Config] Disable CONFIG_COMPAT_BRK for ports + * getabis -- add armel versatile to the list + + [ Brad Figg ] + + * SAUCE: Increase the default prealloc buffer for HDA audio devices + (non-modem) + + [ Manoj Iyer ] + + * ubuntu: onmibook -- Added missing BOM file + + [ Tim Gardner ] + + * ubuntu: fsam7400 -- Cleanup Makefile + + [ Upstream Kernel Changes ] + + * Revert "ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT" + * signal: Fix alternate signal stack check + * SCSI: scsi_lib_dma: fix bug with dma maps on nested scsi objects + * SCSI: osd_protocol.h: Add missing #include + * SCSI: megaraid_sas: fix 64 bit sense pointer truncation + * ext4: fix potential buffer head leak when add_dirent_to_buf() returns + ENOSPC + * ext4: avoid divide by zero when trying to mount a corrupted file system + * ext4: fix the returned block count if EXT4_IOC_MOVE_EXT fails + * ext4: fix lock order problem in ext4_move_extents() + * ext4: fix possible recursive locking warning in EXT4_IOC_MOVE_EXT + * ext4: plug a buffer_head leak in an error path of ext4_iget() + * ext4: make sure directory and symlink blocks are revoked + * ext4: fix i_flags access in ext4_da_writepages_trans_blocks() + * ext4: journal all modifications in ext4_xattr_set_handle + * ext4: don't update the superblock in ext4_statfs() + * ext4: fix uninit block bitmap initialization when s_meta_first_bg is + non-zero + * ext4: fix block validity checks so they work correctly with meta_bg + * ext4: avoid issuing unnecessary barriers + * ext4: fix error handling in ext4_ind_get_blocks() + * ext4: make trim/discard optional (and off by default) + * ext4: make "norecovery" an alias for "noload" + * ext4: Fix double-free of blocks with EXT4_IOC_MOVE_EXT + * ext4: initialize moved_len before calling ext4_move_extents() + * ext4: move_extent_per_page() cleanup + * jbd2: Add ENOMEM checking in and for + jbd2_journal_write_metadata_buffer() + * ext4: Return the PTR_ERR of the correct pointer in + setup_new_group_blocks() + * ext4: Avoid data / filesystem corruption when write fails to copy data + * ext4: wait for log to commit when umounting + * ext4: remove blocks from inode prealloc list on failure + * ext4: ext4_get_reserved_space() must return bytes instead of blocks + * ext4: quota macros cleanup + * ext4: fix incorrect block reservation on quota transfer. + * ext4: Wait for proper transaction commit on fsync + * ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT + * ext4: Fix potential fiemap deadlock (mmap_sem vs. i_data_sem) + * Linux 2.6.32.1 + * kbuild: generate modules.builtin + * (pre-stable) drm/i915: Fix sync to vblank when VGA output is turned off + - LP: #494461 + * (pre-stable) drm/i915: Avoid NULL dereference with component_only + tv_modes + - LP: #494045 + + [ Zhao Yakui ] + + * (pre-stable) acpi: Use the ARB_DISABLE for the CPU which model id is + less than 0x0f. + - LP: #481765 + + -- Andy Whitcroft Thu, 17 Dec 2009 15:41:21 +0000 + +linux (2.6.32-8.12) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: AppArmor -- add linux/err.h for ERR_PTR + + -- Andy Whitcroft Sat, 12 Dec 2009 10:56:16 +0000 + +linux (2.6.32-8.11) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: default ATI Radeon KMS to off until userspace catches + up" + * Revert "SAUCE: AppArmor: Fix oops there is no tracer and doing unsafe + transition." + * Revert "SAUCE: AppArmor: Fix refcounting bug causing leak of creds" + * Revert "SAUCE: AppArmor: Fix cap audit_caching preemption disabling" + * Revert "SAUCE: AppArmor: Fix Oops when in apparmor_bprm_set_creds" + * Revert "SAUCE: AppArmor: Fix oops after profile removal" + * Revert "SAUCE: AppArmor: AppArmor disallows truncate of deleted files." + * Revert "SAUCE: AppArmor: AppArmor fails to audit change_hat correctly" + * Revert "SAUCE: AppArmor: Policy load and replacement can fail to alloc + mem" + * Revert "SAUCE: AppArmor: AppArmor wrongly reports allow perms as + denied" + * Revert "SAUCE: AppArmor: Fix mediation of "deleted" paths" + * Revert "SAUCE: AppArmor: Fix off by 2 error in getprocattr mem + allocation" + * Revert "SAUCE: AppArmor: Set error code after structure + initialization." + * Revert "AppArmor -- fix pstrace_may_access rename" + * Revert "ubuntu: AppArmor security module" + * Revert "SAUCE: Add config option to set a default LSM" + * Revert "ubuntu: fsam7400 -- sw kill switch driver" + * Revert "[Config] fsam7400 -- enable" + * Revert "[Config] AUFS -- enable" + * Revert "ubuntu: AUFS -- aufs2-30 20090727" + * Revert "ubuntu: AUFS -- export various core functions -- fixes" + * Revert "ubuntu: AUFS -- export various core functions" + * Revert "[Config] ubuntu/iscsitarget -- disable" + * Revert "[Config] iscsitarget -- enable" + * Revert "ubuntu: iscsitarget -- SVN revision r214" + * update Vcs-Git to point to the correct repository + - LP: #493589 + * update build environment overrides to lucid + - LP: #493589 + * [Config] enable CONFIG_DEVTMPFS + * [Config] update all configs following AppArmor 2009-12-08 update + * SAUCE: isapnp_init: make isa PNP scans occur async + * [Config] fsam7400 -- enable + * [Config] omnibook -- enable + * [Config] cleanup CONFIG_AUDIT + * ubuntu: AUFS -- export various core functions (aufs2-base.patch) + * ubuntu: AUFS -- export various core functions (aufs2-standalone.patch) + * ubuntu: AUFS -- aufs2 20091209 + * [Config] AUFS -- enable + * [Config] iscsitarget -- enable + + [ Arjan van de Ven ] + + * SAUCE: KMS: cache the EDID information of the LVDS + + [ Colin Watson ] + + * bnx2: update d-i firmware filenames + - LP: #494052 + * add cdc_ether to nic-usb-modules udeb + - LP: #495060 + + [ John Johansen ] + + * ubuntu: AppArmor -- mainline 2009-10-08 + + [ Manoj Iyer ] + + * ubuntu: fsam7400 -- kill switch for Fujitsu Siemens Amilo M 7400 + * ubuntu: omnibook -- support Toshiba (HP) netbooks + * ubuntu: iscsitarget --- version 1.4.19 + - LP: #494693 + + [ Surbhi Palande ] + + * SAUCE: Make populate_rootfs asynchronous + + [ Tim Gardner ] + + * Parallelize flavour builds and packaging + * [Config] Enable CONFIG_KSM + + [ Upstream Kernel Changes ] + + * Config option to set a default LSM + * LSM: Add security_path_chroot(). + * LSM: Add security_path_chroot(). + * LSM: Move security_path_chmod()/security_path_chown() to after + mutex_lock(). + * ext4: Fix insufficient checks in EXT4_IOC_MOVE_EXT + + -- Andy Whitcroft Fri, 11 Dec 2009 17:45:19 +0000 + +linux (2.6.32-7.10) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable CONFIG_THUMB2_KERNEL to fix arm FTBFS + + -- Andy Whitcroft Sun, 06 Dec 2009 12:56:48 +0000 + +linux (2.6.32-7.9) lucid; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: set /proc/acpi/video/*/DOS to 4 by default + - LP: #458982 + * SAUCE: ensure vga16fb loads if no other driver claims the VGA device + * [Config] update configs following versatile switch to V7 + * rebased to v2.6.32 + * [Config] update configs following rebase to v2.6.32 + * [Config] update ports configs following rebase to v2.6.32 + * SAUCE: default ATI Radeon KMS to off until userspace catches up + + [ Arjan van de Ven ] + + * SAUCE: vfs: Add a trace point in the mark_inode_dirty function + + [ Leann Ogasawara ] + + * [SCSI] megaraid_sas: remove sysfs poll_mode_io world writeable + permissions + - CVE-2009-3939 + + [ Loic Minier ] + + * SAUCE: select a v7 CPU for versatile + + [ Takashi Iwai ] + + * SAUCE: ALSA: hda - Add power on/off counter + + [ Upstream changes ] + + * rebased to v2.6.32 + + -- Andy Whitcroft Fri, 04 Dec 2009 10:44:50 +0000 + +linux (2.6.32-6.8) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] disable SSB devices for armel + + -- Andy Whitcroft Sat, 28 Nov 2009 12:16:40 +0000 + +linux (2.6.32-6.7) lucid; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: default ATI Radeon KMS to off until userspace catches up" + * Revert "SAUCE: Dell XPS710 reboot quirk" + * Revert "SAUCE: Link acpi-cpufreq.o first" + * Revert "SAUCE: LPIA Logical reset of USB port on resume" + * Revert "SAUCE: LPIA Reboot fix for Intel Crownbeach development boards" + * Revert "SAUCE: Enable HDMI audio codec on Studio XPS 1340" + * Revert "SAUCE: Dell laptop digital mic does not work, PCI 1028:0271" + * Revert "Add Dell Dimension 9200 reboot quirk" + * Revert "SAUCE: Correctly blacklist Thinkpad r40e in ACPI" + * Revert "SAUCE: tulip: Define ULI PCI ID's" + * Revert "SAUCE: Lower warning level of some PCI messages" + * Revert "mac80211: fix two issues in debugfs" + Drop a number of known redundant commits as identified in the Ubuntu + delta review blueprint. + + * reenable armel versatile flavour + * [Config] disable CONFIG_USB_DEVICEFS + + [ Tim Gardner ] + + * [Config] udeb: Add squashfs to fs-core-modules + - LP: #352615 + * [Config] Create a real squashfs udeb + - LP: #352615 + + + -- Andy Whitcroft Fri, 27 Nov 2009 17:31:16 +0000 + +linux (2.6.32-5.6) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc8 + * update configs following rebase to v2.6.32-rc8 + * update ports configs since rebase to v2.6.32-rc8 + * [Config] enable cgroup options + - LP: #480739 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc8 + + -- Andy Whitcroft Mon, 23 Nov 2009 11:16:14 +0000 + +linux (2.6.32-4.5) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] SERIO_LIBPS2 and SERIO_I8042 must match + * rebase to v2.6.32-rc7 + * resync with Karmic proposed + + [ John Johansen ] + + * SAUCE: AppArmor: Fix oops after profile removal + - LP: #475619 + * SAUCE: AppArmor: Fix Oops when in apparmor_bprm_set_creds + - LP: #437258 + * SAUCE: AppArmor: Fix cap audit_caching preemption disabling + - LP: #479102 + * SAUCE: AppArmor: Fix refcounting bug causing leak of creds + - LP: #479115 + * SAUCE: AppArmor: Fix oops there is no tracer and doing unsafe + transition. + - LP: #480112 + + [ Ubuntu Changes ] + + * resync with Karmic proposed (ddbc670a86a3dee18541a3734149f250ff307adf) + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc7 + + -- Andy Whitcroft Fri, 13 Nov 2009 11:35:13 +0000 + +linux (2.6.32-3.4) lucid; urgency=low + + [ Andy Whitcroft ] + + * [Config] SERIO_LIBPS2 and SERIO_I8042 must match + * [Upstream] add local prefix to oss local change_bits + + [ Upstream Kernel Changes ] + + * mtd/maps: gpio-addr-flash: pull in linux/ headers rather than asm/ + * mtd/maps: gpio-addr-flash: depend on GPIO arch support + + -- Andy Whitcroft Wed, 11 Nov 2009 14:47:04 +0000 + +linux (2.6.32-3.3) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc6 + * [Config] update configs following rebase to v2.6.32-rc6 + * [Config] update ports configs following rebase to v2.6.32-rc6 + * resync with Karmic Ubuntu-2.6.31-15.49 + * [Config] add module ignores for broken drivers + + [ John Johansen ] + + * SAUCE: AppArmor: AppArmor wrongly reports allow perms as denied + - LP: #453335 + * SAUCE: AppArmor: Policy load and replacement can fail to alloc mem + - LP: #458299 + * SAUCE: AppArmor: AppArmor fails to audit change_hat correctly + - LP: #462824 + * SAUCE: AppArmor: AppArmor disallows truncate of deleted files. + - LP: #451375 + + [ Kees Cook ] + + * SAUCE: Fix nx_enable reporting + - LP: #454285 + + [ Scott James Remnant ] + + * Revert "SAUCE: trace: add trace_event for the open() syscall" + * SAUCE: trace: add trace events for open(), exec() and uselib() + - LP: #462111 + + [ Stefan Bader ] + + * SAUCE: Fix sub-flavour script to not stop on missing directories + - LP: #453073 + + [ Ubuntu Changes ] + + * resync with Karmic Ubuntu-2.6.31-15.49 + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc6 + - LP: #464552 + + -- Andy Whitcroft Tue, 10 Nov 2009 15:00:57 +0000 + +linux (2.6.32-2.2) lucid; urgency=low + + [ Andy Whitcroft ] + + * install the full changelog with the binary package + * changelog -- explicitly note rebases and clean history + * reinstate armel.mk with no flavours + - LP: #449637 + * [Upstream] block: silently error unsupported empty barriers too + - LP: #420423 + * [Config] udate configs following karmic resync + * [Config] update ports configs following karmic resync + * [Upstream] lirc -- follow removal of .id element + + [ Colin Watson ] + + * Use section 'admin' rather than 'base' + * Add more e100 firmware to nic-modules + - LP: #451872 + * Add qla1280 firmware to scsi-modules + - LP: #381037 + + [ John Johansen ] + + * SAUCE: AppArmor: Set error code after structure initialization. + - LP: #427948 + * SAUCE: AppArmor: Fix off by 2 error in getprocattr mem allocation + - LP: #446595 + * SAUCE: AppArmor: Fix mediation of "deleted" paths + + [ Kees Cook ] + + * SAUCE: [x86] fix report of cs-limit nx-emulation + - LP: #454285 + + [ Leann Ogasawara ] + + * SAUCE: (drop after 2.6.31) input: Add support for filtering input + events + - LP: #430809 + * SAUCE: (drop after 2.6.31) dell-laptop: Trigger rfkill updates on wifi + toggle switch press + - LP: #430809 + + [ Luke Yelavich ] + + * SAUCE: Add sr_mod to the scsi-modules udeb for powerpc + * [Config] Add sd_mod to scsi-modules udeb for powerpc + + [ Mario Limonciello ] + + * SAUCE: Update to LIRC 0.8.6 + - LP: #432678 + * SAUCE: dell-laptop: Store the HW switch status internally rather than + requerying every time + - LP: #430809 + * SAUCE: dell-laptop: Blacklist machines not supporting dell-laptop + - LP: #430809 + + [ Stefan Bader ] + + * [Upstream] acerhdf: Limit modalias matching to supported boards + - LP: #435958 + + [ Tim Gardner ] + + * [Upstream] i915: Fix i2c init message + - LP: #409361 + * [Config] Add sym53c8xx.ko to virtual sub-flavour + - LP: #439415 + * [Config] Add d101m_ucode.bin to d-i/firmware/nic-modules + - LP: #439456 + * [Config] Set default I/O scheduler back to CFQ for desktop flavours + - LP: #381300 + * SAUCE: Created MODULE_EXPORT/MODULE_IMPORT macros + - LP: #430694 + * SAUCE: Use MODULE_IMPORT macro to tie intel_agp to i915 + - LP: #430694 + * [Config] CONFIG_GFS2_FS_LOCKING_DLM=y + - LP: #416325 + * SAUCE: Fix MODULE_IMPORT/MODULE_EXPORT + - LP: #430694 + * SAUCE: Raise the default console 'quiet' level to 2 + * [Config] CONFIG_X86_PAT=y + * [Config] Add armel arch to linux-libc-dev arches. + - LP: #449637 + * [Config] CONFIG_X86_MCE + * [Upstream] (drop after 2.6.31) Input: synaptics - add another Protege + M300 to rate blacklist + - LP: #433801 + + [ Upstream Kernel Changes ] + + * sgi-gru: Fix kernel stack buffer overrun, CVE-2009-2584 + * drm/i915: Fix FDI M/N setting according with correct color depth + - LP: #416792 + + -- Andy Whitcroft Thu, 22 Oct 2009 16:53:33 +0100 + +linux (2.6.32-1.1) lucid; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.32-rc3 + * [Config] update configs following rebase to 2.6.32-rc3 + * [Config] update ports configs following rebase to 2.6.32-rc3 + * AppArmor -- fix pstrace_may_access rename + * staging/android -- disable + * ubuntu: dm-raid-45 -- update to compile with 2.6.32 + * ubuntu: drbd -- disable + * staging/comdi -- disable + * staging/go7007 -- disable + * [Config] staging/winbond -- disable + * [Config] ubuntu/iscsitarget -- disable + * [d-i] cbc and ecb are builtin make them optional in udebs + * rebase to v2.6.32-rc5 + * [Config] update configs following rebase to v2.6.32-rc5 + * [Config] update ports configs following rebase to v2.6.31-rc5 + + [ Tim Gardner ] + + * [Config] Add cpio as a build dependency. + + [ Upstream Kernel Changes ] + + * rebase to v2.6.32-rc3 + * rebase to v2.6.32-rc5 + + -- Andy Whitcroft Mon, 05 Oct 2009 15:48:58 +0100 + +linux (2.6.31-11.37) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Increase kernel log buffer to 256K for amd64 flavours + - LP: #424810 + * [Config] Set HZ=100 for amd64 flavours + - LP: #438234 + * [Upstream] e1000e: Emit notice instead of an error when + pci_enable_pcie_error_reporting() fails + - LP: #436370 + + [ Upstream Kernel Changes ] + + * n_tty: honor opost flag for echoes + * n_tty: move echoctl check and clean up logic + - LP: #438310 + + * Revert "[Upstream] drm/i915: Check that the relocation points to within + the target" - Use upstream cherry-pick. + * drm/i915: Check that the relocation points to within the target + - LP: #429241 + + * drm/i915: fix tiling on IGDNG + * drm/i915: add B43 chipset support + * agp/intel: Add B43 chipset support + Intel request from kernel team mailing list. + + * HID: completely remove apple mightymouse from blacklist + - LP: #428111 + + -- Tim Gardner Mon, 28 Sep 2009 11:47:29 -0600 + +linux (2.6.31-11.36) karmic; urgency=low + + [ Brian Rogers ] + + * SAUCE: (drop after 2.6.31) em28xx: ir-kbd-i2c init data needs a + persistent object + * SAUCE: (drop after 2.6.31) saa7134: ir-kbd-i2c init data needs a + persistent object + + [ Takashi Iwai ] + + * [Upstream] ALSA: hda - Add another entry for Nvidia HDMI device + - LP: #416482 + + [ Tyler Hicks ] + + * SAUCE: (drop after 2.6.31) eCryptfs: Prevent lower dentry from going + negative during unlink + + [ Upstream Kernel Changes ] + + * sg: fix oops in the error path in sg_build_indirect() + * mpt2sas : Rescan topology from Interrupt context instead of work thread + * mpt2sas: Prevent sending command to FW while Host Reset + * mpt2sas: setting SDEV into RUNNING state from Interrupt context + * mpt2sas: Raid 10 Volume is showing as Raid 1E in dmesg + * SCSI: fix oops during scsi scanning + * SCSI: libsrp: fix memory leak in srp_ring_free() + * cfg80211: fix looping soft lockup in find_ie() + * ath5k: write PCU registers on initial reset + * binfmt_elf: fix PT_INTERP bss handling + * TPM: Fixup boot probe timeout for tpm_tis driver + * md: Fix "strchr" [drivers/md/dm-log-userspace.ko] undefined! + * x86/amd-iommu: fix broken check in amd_iommu_flush_all_devices + * fix undefined reference to user_shm_unlock + * perf_counter: Fix buffer overflow in perf_copy_attr() + * perf_counter: Start counting time enabled when group leader gets + enabled + * powerpc/perf_counters: Reduce stack usage of power_check_constraints + * powerpc: Fix bug where perf_counters breaks oprofile + * powerpc/ps3: Workaround for flash memory I/O error + * block: don't assume device has a request list backing in nr_requests + store + * agp/intel: remove restore in resume + * ALSA: cs46xx - Fix minimum period size + * ASoC: Fix WM835x Out4 capture enumeration + * sound: oxygen: work around MCE when changing volume + * mlx4_core: Allocate and map sufficient ICM memory for EQ context + * perf stat: Change noise calculation to use stddev + * x86: Fix x86_model test in es7000_apic_is_cluster() + * x86/i386: Make sure stack-protector segment base is cache aligned + * PCI: apply nv_msi_ht_cap_quirk on resume too + * x86, pat: Fix cacheflush address in change_page_attr_set_clr() + * ARM: 5691/1: fix cache aliasing issues between kmap() and kmap_atomic() + with highmem + * KVM guest: do not batch pte updates from interrupt context + * KVM: Fix coalesced interrupt reporting in IOAPIC + * KVM: VMX: Check cpl before emulating debug register access + * KVM guest: fix bogus wallclock physical address calculation + * KVM: x86: Disallow hypercalls for guest callers in rings > 0 + * KVM: VMX: Fix cr8 exiting control clobbering by EPT + * KVM: x86 emulator: Implement zero-extended immediate decoding + * KVM: MMU: make __kvm_mmu_free_some_pages handle empty list + * KVM: x86 emulator: fix jmp far decoding (opcode 0xea) + * KVM: limit lapic periodic timer frequency + * libata: fix off-by-one error in ata_tf_read_block() + * PCI quirk: update 82576 device ids in SR-IOV quirks list + * PCI: Unhide the SMBus on the Compaq Evo D510 USDT + * powerpc/pseries: Fix to handle slb resize across migration + * Linux 2.6.31.1 + + -- Tim Gardner Thu, 24 Sep 2009 13:04:28 -0600 + +linux (2.6.31-10.35) karmic; urgency=low + + [ Amit Kucheria ] + + * Disable CONFIG_UEVENT_HELPER_PATH + + [ Andy Whitcroft ] + + * [Config] Enable CONFIG_USB_GADGET_DUMMY_HCD + * remove the tlsup driver + * remove lmpcm logitech driver support + + [ Bryan Wu ] + + * Add 3 missing files to prerm remove file list + - LP: #345623, #415832 + + [ Chris Wilson ] + + * [Upstream] drm/i915: Check that the relocation points to within the + target + - LP: #429241 + + [ Luke Yelavich ] + + * [Config] Set CONFIG_EXT4_FS=y on ports architectures + + [ Manoj Iyer ] + + * SAUCE: Added quirk to recognize GE0301 3G modem as an interface. + - LP: #348861 + + [ Tim Gardner ] + + * Revert "[Upstream] ACPI: Add Thinkpad W500, W700, & W700ds to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad R400 & Thinkpad R500 to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad X300 & Thinkpad X301 to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad X200, X200s, X200t to OSI(Linux) white-list" + * Revert "[Upstream] ACPI: Add Thinkpad T400 & Thinkpad T500 to OSI(Linux) white-list" + Upstream suggests that this is not the right approach. + + * [Config] Set default I/O scheduler to DEADLINE + CFQ seems to have some load related problems which are often exacerbated by sreadahead. + - LP: #381300 + + [ ubuntu@tjworld.net ] + + * SAUCE: ipw2200: Enable LED by default + - LP: #21367 + + [ Upstream Kernel Changes ] + + * ALSA: hda - Add support for new AMD HD audio devices + - LP: #430564 + + -- Andy Whitcroft Wed, 16 Sep 2009 15:37:49 +0100 + +linux (2.6.31-10.34) karmic; urgency=low + + [ Ted Tso ] + + * [Upstream] ext3: Don't update superblock write time when filesystem is + read-only + - LP: #427822 + + -- Tim Gardner Tue, 15 Sep 2009 16:00:45 -0600 + +linux (2.6.31-10.33) karmic; urgency=low + + [ Leann Ogasawara ] + + * [Upstream] dvb-usb: fix tuning with Cinergy T2 + - LP: #421258 + + [ Tim Gardner ] + + * [Config] Unconditionally copy files from sub-flavours lists. + (really, really fix it this time) + - LP: #423426 + * [Config] Set CONFIG_CACHEFILES=m for all flavours + + [ Upstream Kernel Changes ] + + * ext4: Don't update superblock write time when filesystem is read-only + - LP: #427822 + + -- Tim Gardner Tue, 15 Sep 2009 07:50:21 -0600 + +linux (2.6.31-10.32) karmic; urgency=low + + [ Eric Miao ] + + * [Config] enable module support for memory stick + - LP: #159951 + + [ Tim Gardner ] + + * [Config] Unconditionally copy files from sub-flavours lists. + - LP: #423426 + + -- Tim Gardner Thu, 10 Sep 2009 15:57:55 -0600 + +linux (2.6.31-10.31) karmic; urgency=low + + [ Andy Whitcroft ] + + * rebase to v2.6.31 final + + [ Colin Watson ] + + * [Config] Recommend grub-pc in linux-image + - LP: #385741 + + [ Ike Panhc ] + + * [Upstream] Pull latest update of lenovo-sl-laptop + + [ Peter Feuerer ] + + * [Upstream] (drop after 2.6.31) acerhdf: fix fan control for AOA150 + model + - LP: #426691 + + [ Tim Gardner ] + + * [Config] De-macro some package names. + + [ Upstream Changes ] + + * rebase to 2.6.31 final. + + -- Andy Whitcroft Thu, 10 Sep 2009 09:38:10 +0100 + +linux (2.6.31-10.30) karmic; urgency=low + + [ Amit Kucheria ] + + * [Config] Enable CONFIG_USB_DEVICEFS + - LP: #417748 + * [Config] Populate the config-update template a bit more + + [ Andy Whitcroft ] + + * rebase to v2.6.31-rc9 + * [Config] update configs following rebase to v2.6.31-rc9 + * [Config] update ports configs following rebase to v2.6.31-rc9 + + [ Colin Ian King ] + + * SAUCE: wireless: hostap, fix oops due to early probing interrupt + - LP: #254837 + + [ Jerone Young ] + + * [Upstream] ACPI: Add Thinkpad T400 & Thinkpad T500 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad X200, X200s, X200t to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad X300 & Thinkpad X301 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad R400 & Thinkpad R500 to OSI(Linux) + white-list + - LP: #281732 + * [Upstream] ACPI: Add Thinkpad W500, W700, & W700ds to OSI(Linux) + white-list + - LP: #281732 + + [ John Johansen ] + + * SAUCE: AppArmor: Fix profile attachment for regexp based profile names + - LP: #419308 + * SAUCE: AppArmor: Return the correct error codes on profile + addition/removal + - LP: #408473 + * SAUCE: AppArmor: Fix OOPS in profile listing, and display full list + - LP: #408454 + * SAUCE: AppArmor: Fix mapping of pux to new internal permission format + - LP: #419222 + * SAUCE: AppArmor: Fix change_profile failure + - LP: #401931 + * SAUCE: AppArmor: Tell git to ignore generated include files + - LP: #419505 + + [ Stefan Bader ] + + * [Upstream] acpi: video: Loosen strictness of video bus detection code + - LP: #333386 + * SAUCE: Remove ov511 driver from ubuntu subdirectory + + [ Tim Gardner ] + + * [Config] Exclude char-modules from non-x86 udeb creation + * SAUCE: Notify the ACPI call chain of AC events + * [Config] CONFIG_SATA_VIA=m + - LP: #403385 + * [Config] Build in all phylib support modules. + * [Config] Don't fail when sub-flavour files are missing + - LP: #423426 + * [Config] Set CONFIG_LSM_MMAP_MIN_ADDR=0 + - LP: #423513 + + [ Upstream ] + + * Rebased against v2.6.31-rc9 + + -- Andy Whitcroft Mon, 07 Sep 2009 11:33:45 +0100 + +linux (2.6.31-9.29) karmic; urgency=low + + [ Leann Ogasawara ] + + * [Upstream] agp/intel: support for new chip variant of IGDNG mobile + - LP: #419993 + * [Config] d-i/modules: Add new char-modules file, initialize with + intel-agp + - LP: #420605 + + [ Upstream ] + + * Rebased against 2.6.31-rc8 plus some inotify regression patches: + up through git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git + adda766193ea1cf3137484a9521972d080d0b7af. + + -- Tim Gardner Fri, 28 Aug 2009 06:31:30 -0600 + +linux (2.6.31-8.28) karmic; urgency=low + + [ Ike Panhc ] + + * [Config] Let nic-shared-modules depends on crypto-modules + - LP: #360966 + + [ Leann Ogasawara ] + + * [Upstream] (drop after 2.6.31) drm/i915: increase default latency + constant + - LP: #412492 + + [ Mario Limonciello ] + + * [Upstream]: (drop after 2.6.31) dell-laptop: don't change softblock + status if HW switch is disabled + - LP: #418721 + * [Upstream]: (drop after 2.6.31) compal-laptop: Add support for known + Compal made Dell laptops + * [Upstream]: (drop after 2.6.31) compal-laptop: Replace sysfs support + with rfkill support + + [ Tim Gardner ] + + * [Config] Add acpiphp to virtual sub-flavour + - LP: #364916 + * Drop KSM patch set for now because of instabilities with encrypted swap. + - LP: #418781 + + -- Tim Gardner Wed, 26 Aug 2009 08:14:26 -0600 + +linux (2.6.31-7.27) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] updateconfigs updateportsconfigs after 2.6.31-rc7 rebase + * SAUCE: (drop after 2.6.31) Added KSM from mmotm-2009-08-20-19-18 + Replaces previous ksm patches from 2.6.31-6.25 + * [Config] KSM=y + + [ Upstream ] + + * Rebased against v2.6.31-rc7 + + -- Tim Gardner Sat, 22 Aug 2009 20:32:11 -0600 + +linux (2.6.31-6.26) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] enable CONFIG_AUFS_BR_RAMFS + - LP: #414738 + * split out debian directory ready for abstraction + * add printdebian target to find branch target + * abstracted debian -- debian/files is not abstracted + * abstracted debian -- packages must be built in debian/ + * abstracted debian -- kernel-wedge needs to work in debian/ + * abstracted debian -- ensure we install the copyright file + * abstracted-debian -- drop the debian directories from headers + * abstracted-debian -- drop the debian directories from headers part 2 + * SAUCE: ubuntu-insert-changes -- follow abstracted debian + * [Upstream] aoe: ensure we initialise the request_queue correctly V2 + - LP: #410198 + + [ Luke Yelavich ] + + * [Config] Ports: Disable CONFIG_CPU_FREQ_DEBUG on powerpc-smp + * [Config] Ports: Re-enable windfarm modules on powerpc64-smp + - LP: #413150 + * [Config] Ports: Build all cpu frequency scaling governors into ports + kernels + * [Config] Ports: Build ext2 and ext3 modules into ports kernels + * [Config] Ports: CONFIG_PACKET=y for all ports kernels + * [Config] Ports: Enable PS3 network driver + + [ Stefan Bader ] + + * abstracted debian -- call $(DEBIAN)/rules using make + + [ Tim Gardner ] + + * [Config] Abstract the debian directory + * SAUCE: Improve error reporting in postinst + - LP: #358564 + + -- Tim Gardner Sun, 16 Aug 2009 20:33:28 -0600 + +linux (2.6.31-6.25) karmic; urgency=low + + [ Andy Whitcroft ] + + * script to generate Ubuntu changes from changelog + * [Config] standardise ANDROID options + * [Config] standardise CONFIG_ATM as module + * [Config] standardise CONFIG_LIB80211 as module + * [Config] disable CONFIG_PRINT_QUOTA_WARNING + * [Config] set CONFIG_CRAMFS as module + * [Config] enable CONFIG_DAB and modules + * [Config] set CONFIG_MAC80211_HWSIM as module + * [Config] set CONFIG_NET_CLS_FLOW as module + * [Config] set CONFIG_NF_CONNTRACK_SANE as module + * [Config] set CONFIG_NF_CT_PROTO_DCCP as module + * [Config] set CONFIG_RTC_DRV_DS1511 as module + * [Config] set CONFIG_RTC_DRV_R9701 as module + * [Config] set CONFIG_RTC_DRV_S35390A as module + * [Config] set CONFIG_TOIM3232_DONGLE as module + * [Config] standardise CONFIG_USB_MIDI_GADGET as module + * [Config] standardise CONFIG_USB_G_PRINTER as module + * [Config] standardise CONFIG_USB_SERIAL_IR as module + * [Config] set CONFIG_USB_SERIAL_IUU as module + * [Config] standardise CONFIG_USB_STORAGE_CYPRESS_ATACB as module + * [Config] standardise CONFIG_USB_STORAGE_ONETOUCH as module + * cleanup remains of dm-loop + * drop thinkpad ec and smapi support + * drop appleir + * [Config] update configs following rebase to v2.6.31-rc6 + * rebase to v2.6.31-rc6 + + [ Hugh Dickins ] + + * SAUCE: ksm patch 1, drop after 2.6.31 + * SAUCE: ksm patch 2, drop after 2.6.31 + * SAUCE: ksm patch 3, drop after 2.6.31 + * SAUCE: ksm patch 4, drop after 2.6.31 + * SAUCE: ksm patch 5, drop after 2.6.31 + * SAUCE: ksm patch 7, drop after 2.6.31 + + [ Izik Eidus ] + + * SAUCE: ksm patch 0, drop after 2.6.31 + * SAUCE: ksm patch 6, drop after 2.6.31 + * SAUCE: ksm patch 8, drop after 2.6.31 + * SAUCE: ksm patch 9, drop after 2.6.31 + + [ Luke Yelavich ] + + * [Config] Ports: Re-add PS3 modules to udebs + + [ Michael Casadevall ] + + * [Config] Update SPARC config and d-i files to reflect what can be built + + [ Tim Gardner ] + + * [Config] Removed armel package support + * [Config] Enabled CONFIG_KSM=y + + [ Upstream Kernel Changes ] + + * Rebased against v2.6.31-rc6 + * ARM: Cleanup: Revert "ARM: Add more cache memory types macros" + * ARM: Cleanup: Revert "Do not use OOB with MLC NAND" + * ARM: Cleanup: Revert "ARM: Make ARM arch aware of ubuntu/ drivers" + * ARM: Cleanup: Revert "ARM: IMX51: Make video capture drivers compile" + * ARM: Cleanup: Revert "ARM: IMX51: Fix isl29003 HWMON driver for i2c + changes" + * ARM: Cleanup: Revert "ARM: IMX51: IPU irq handler deadlock fix" + * ARM: Cleanup: Revert "ARM: IMX51: Babbage 2.5 needs a different system + revision" + * ARM: Cleanup: Revert "ARM: IMX51: Compile-in the IMX51 cpufreq driver + by default" + * ARM: Cleanup: Revert "ARM: IMX51: Enable ZONE_DMA for ARCH_MXC" + * ARM: Cleanup: Revert "ARM: IMX51: Make ARCH_MXC auto-enable + ARCH_MXC_CANONICAL" + * ARM: Cleanup: Revert "ARM: IMX51: Unconditionally disable + CONFIG_GPIOLIB" + * ARM: Cleanup: Revert "ARM: IMX51: Minimal changes for USB to work on + 2.6.31" + * ARM: Cleanup: Revert "ARM: IMX51: Fix plat-mxc/timer.c to handle imx51" + * ARM: Cleanup: Revert "ARM: IMX51: Make it compile." + * ARM: Cleanup: Revert "ARM: IMX51: Clean-up the craziness of including + mxc_uart.h _everywhere_" + * ARM: Cleanup: Revert "ARM: IMX51: Move board-mx51* header files to the + correct location" + * ARM: Cleanup: Revert "ARM: IMX51: Changed from snd_card_new to + snd_card_create" + * ARM: Cleanup: Revert "ARM: IMX51: Fix up merge error in Kconfig" + * ARM: Cleanup: Revert "ARM: IMX51: mxc_timer_init prototype" + * ARM: Cleanup: Revert "ARM: IMX51: Removed the mxc_gpio_port structure." + * ARM: Cleanup: Revert "ARM: IMX51: Added external declaration for + mxc_map_io." + * ARM: Cleanup: Revert "ARM: IMX51: Get to bus_id by calling dev_name." + * ARM: Cleanup: Revert "ARM: IMX51: Get to bus_id by calling dev_name." + * ARM: Cleanup: Revert "ARM: IMX51: snd_soc_machine structure replaced + with snd_soc_card." + * ARM: Cleanup: Revert "ARM: IMX51: codec structure was moved to the card + structure" + * ARM: Cleanup: Revert "ARM: IMX51: Hack to add defines for + DMA_MODE_READ/WRITE/MASK" + * ARM: Cleanup: Revert "ARM: IMX51: Add SoC and board support for + Freescale mx51 platform" + * Driver core: add new device to bus's list before probing + * [Upstream] (drop after 2.6.31) ALSA: hda - Reduce click noise at + power-saving + - LP: #381693, #399750, #380892 + + -- Andy Whitcroft Fri, 14 Aug 2009 11:32:23 +0100 + +linux (2.6.31-5.24) karmic; urgency=low + + [ Amit Kucheria ] + + * ARM: IMX51: Make video capture drivers compile + * [Config] IMX51: Config updates + + [ Andy Whitcroft ] + + * remove leftovers of dm-bbr + + [ Leann Ogasawara ] + + * Add pata_cs5535 to pata-modules + - LP: #318805 + + [ Luke Yelavich ] + + * [Config] CONFIG_PPC64=y for powerpc64-smp + * [Config] Set the maximum number of CPUs to 1024 for powerpc64-smp + * [Config] CONFIG_PPC_PS3=y for powerpc64-smp + * [Config] CONFIG_PPC_MAPLE=y on powerpc64-smp + * [Config] CONFIG_PPC_PASEMI=y on powerpc64-smp + * [Config] CONFIG_CPU_FREQ_PMAC64=y on powerpc64-smp + * [Config] Enable all PS3 drivers in powerpc64-smp + + [ Mario Limonciello ] + + * LIRC -- fix lirc-i2c 2.6.31 compilation + + [ Matthew Garrett ] + + * [Upstream] dell-laptop: Fix rfkill state queries + + [ Tim Gardner ] + + * [Config] Ignore armel ABI and module changes + * [Config] Update configs after rebase against 2.6.31-rc5 + + [ Upstream ] + + * Rebased to 2.6.31-rc5 + + -- Andy Whitcroft Tue, 28 Jul 2009 10:10:09 +0100 + +linux (2.6.31-4.23) karmic; urgency=low + + [ Andy Whitcroft ] + + * AUFS -- update to aufs2-30 20090727 + * [Config] enable AUFS FUSE support + + [ Luke Yelavich ] + + * [Config] CONFIG_JFS_FS=m on sparc + + [ Tim Gardner ] + + * [Upstream] dell-laptop: Fix rfkill state setting. + + -- Andy Whitcroft Mon, 27 Jul 2009 11:11:47 +0100 + +linux (2.6.31-4.22) karmic; urgency=low + + [ Amit Kucheria ] + + * ARM: IMX51: Add SoC and board support for Freescale mx51 platform + * ARM: IMX51: Move board-mx51* header files to the correct location + * ARM: IMX51: Clean-up the craziness of including mxc_uart.h _everywhere_ + * ARM: IMX51: Make it compile. + * ARM: IMX51: Unconditionally disable CONFIG_GPIOLIB + * ARM: IMX51: Make ARCH_MXC auto-enable ARCH_MXC_CANONICAL + * ARM: IMX51: Enable ZONE_DMA for ARCH_MXC + * ARM: IMX51: Compile-in the IMX51 cpufreq driver by default + * ARM: IMX51: Fix isl29003 HWMON driver for i2c changes + * ARM: USB: musb: Refer to musb_otg_timer_func under correct #ifdef + * ARM: staging: udlfb: Add vmalloc.h include + * UBUNTU [Config]: Bring imx51 config upto date with other flavours + + [ Brad Figg ] + + * ARM: IMX51: Hack to add defines for DMA_MODE_READ/WRITE/MASK + * ARM: IMX51: codec structure was moved to the card structure + * ARM: IMX51: snd_soc_machine structure replaced with snd_soc_card. + * ARM: IMX51: Get to bus_id by calling dev_name. + * ARM: IMX51: Get to bus_id by calling dev_name. + * ARM: IMX51: Added external declaration for mxc_map_io. + * ARM: IMX51: Removed the mxc_gpio_port structure. + * ARM: IMX51: mxc_timer_init prototype + * ARM: IMX51: Fix up merge error in Kconfig + * ARM: IMX51: Changed from snd_card_new to snd_card_create + + [ Dinh Nguyen ] + + * ARM: IMX51: Fix plat-mxc/timer.c to handle imx51 + * ARM: IMX51: Minimal changes for USB to work on 2.6.31 + * ARM: IMX51: Babbage 2.5 needs a different system revision + * ARM: IMX51: IPU irq handler deadlock fix + + [ Tim Gardner ] + + * [Config] Enabled CONFIG_CAN=m + - LP: #327243 + * [Config] Enabled CONFIG_SERIAL=m + - LP: #397189 + + -- Tim Gardner Fri, 24 Jul 2009 06:19:10 -0600 + +linux (2.6.31-4.21) karmic; urgency=low + + [ Amit Kucheria ] + + * dm-raid-4-5: Add missing brackets around test_bit() + + [ John Johansen ] + + * AppArmor: Fix change_profile failing lpn401931 + * AppArmor: Fix determination of forced AUDIT messages. + * AppArmor: Fix oops in auditing of the policy interface offset + + -- Andy Whitcroft Thu, 23 Jul 2009 19:18:30 +0100 + +linux (2.6.31-4.20) karmic; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: iscsitarget -- update to SVN revision r214 + * SAUCE: iscsitarget -- renable driver + * [Config] consolidate lpia/lpia and i386/generic configs + * [Config] enable CRYPTO modules for all architectures + * [Config] enable cryptoloop + * [Config] enable various filesystems for armel + * [Config] sync i386 generic and generic-pae + * [Config] add the 386 (486 processors and above) flavour + * [Config] re-set DEFAULT_MMAP_MIN_ADDR + - LP: #399914 + * add genconfigs/genportsconfigs to extract the built configs + * updateconfigs -- alter concatenation order allow easier updates + * intelfb -- INTELFB now conflicts with DRM_I915 + * printchanges -- rebase tree does not have stable tags use changelog + * AppArmor: fix argument size missmatch on 64 bit builds + + [ Ike Panhc ] + + * Ship bnx2x firmware in nic-modules udeb + - LP: #360966 + + [ Jeff Mahoney ] + + * AppArmor: fix build failure on ia64 + + [ John Johansen ] + + * AppArmour: ensure apparmor enabled parmater is off if AppArmor fails to + initialize. + * AppArmour: fix auditing of domain transitions to include target profile + information + * AppArmor: fix C99 violation + * AppArmor: revert reporting of create to write permission. + * SAUCE: Add config option to set a default LSM + * [Config] enable AppArmor by default + * AppArmor: Fix NULL pointer dereference oops in profile attachment. + + [ Keith Packard ] + + * SAUCE: drm/i915: Allow frame buffers up to 4096x4096 on 915/945 class + hardware + - LP: #351756 + + [ Luke Yelavich ] + + * [Config] add .o files found in arch/powerpc/lib to all powerpc kernel + header packages + - LP: #355344 + + [ Michael Casadevall ] + + * [Config] update SPARC config files to allow success build + + [ Scott James Remnant ] + + * SAUCE: trace: add trace_event for the open() syscall + + [ Stefan Bader ] + + * SAUCE: jfs: Fix early release of acl in jfs_get_acl + - LP: #396780 + + [ Tim Gardner ] + + * [Upstream] Fix Soltech TA12 volume hotkeys not sending key release + - LP: #397499 + * [Upstream] USB Option driver - Add USB ID for Novatel MC727/U727/USB727 + refresh + - LP: #365291 + * [Config] SSB/B44 are common across all arches/flavours. + + [ Upstream ] + + * Rebased to 2.6.31-rc4 + + -- Andy Whitcroft Thu, 23 Jul 2009 08:41:39 +0100 + +linux (2.6.31-3.19) karmic; urgency=low + + [ Andy Whitcroft ] + + * Revert "[Config] Disabled NDISWRAPPER" + * ndiswrapper -- fix i386 compilation failures on cmpxchg8b + * AUFS -- export various core functions + * AUFS -- export various core functions -- fixes + * AUFS -- core filesystem + * AUFS -- track changes in v2.6.31 + * [Config] Enable AUFS + * droppped 'iwl3945: do not send scan command if channel count zero' as it + is already upstream but failed to auto-drop on rebase. + + [ Eric Paris ] + + * SAUCE: fsnotify: use def_bool in kconfig instead of letting the user + choose + * SAUCE: inotify: check filename before dropping repeat events + * SAUCE: fsnotify: fix inotify tail drop check with path entries + + -- Andy Whitcroft Tue, 14 Jul 2009 12:52:55 +0100 + +linux (2.6.31-3.18) karmic; urgency=low + + [ Andy Whitcroft ] + + * Revert "Add splice-2.6.23.patch from AUFS to export a symbol needed by + AUFS" + * Revert "Add put_filp.patch from AUFS to export a symbol needed by AUFS" + * Revert "Add sec_perm-2.6.24.patch from AUFS - export + security_inode_permission" + * clear out left over AUFS files and modifications + + [ Luke Yelavich ] + + * [Config] Enable CONFIG_USB_ISP116X_HCD on sparc + * SAUCE: Explicitly include header files to allow apparmor to build on + powerpc + * [Config] Enable CONFIG_BLK_DEV_IDECD on powerpc + + [ Tim Gardner ] + + * [Config] Dropped ubuntu/misc/wireless/acx + * [Config] Disabled NDISWRAPPER until the compile issues are fixed. + + [ Upstream ] + + * Rebased to 2.6.31-rc3 + + -- Andy Whitcroft Fri, 10 Jul 2009 18:59:33 +0100 + +linux (2.6.31-2.17) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_BLK_DEV_CRYPTOLOOP=m for sparc + * compcache -- remove redundant Kconfig entries part 2 + * compcache -- clean up CCFLAGS declarations + * [Config] enable AppArmor + * AppArmor: fix operator precidence issue in as_path_link + + [ John Johansen ] + + * AppArmor security module + * AppArmor: Correct mapping of file permissions. + * AppArmor: Turn auditing of ptrace on + + [ Luke Yelavich ] + + * [Config] disable CONFIG_DM_RAID45 on powerpc + + -- Andy Whitcroft Fri, 10 Jul 2009 15:02:05 +0100 + +linux (2.6.31-2.16) karmic; urgency=low + + [ Andy Whitcroft ] + + * compcache -- remove redundant Kconfig entries + added ignore and ignore.modules for all arches since the compcache update + changes the modules names as well as some compcache ABI values. + + [ Manoj Iyer ] + + * SAUCE: updated dm-raid45 module version to 2009.04.24 (2.6.30-rc3) + * SAUCE: update compcache version to 0.5.3 + + [ Tim Gardner ] + + * [Config]: Fix sparc FTBS by adding ignore.modules + + -- Tim Gardner Mon, 06 Jul 2009 13:35:29 -0600 + +linux (2.6.31-2.15) karmic; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: default ATI Radeon KMS to off until userspace catches up + * [Config] Update configs following rebase to 2.6.31-rc2 + * [Config] update ports configs following update to 2.6.31-rc2 + + [ Luke Yelavich ] + + * [Config] powerpc - Disable CONFIG_RDS + + [ Matt Zimmerman ] + + * Rename linux-doc-PKGVER to linux-doc and clean up its description + - LP: #382115 + + [ Upstream Kernel Changes ] + + * rebased to mainline 2.6.31-rc2 + + -- Andy Whitcroft Sat, 04 Jul 2009 17:39:13 +0100 + +linux (2.6.31-1.14) karmic; urgency=low + + [ Andy Whitcroft ] + + * update ndiswrapper to 1.55 + * remove leftovers of gfs + * [Config] powerpc: enable CONFIG_PPC_DISABLE_WERROR + + [ Luke Yelavich ] + + * [Config] re-enable and build the ide-pmac driver into powerpc kernels + * [Config] Build the ServerWorks Frodo / Apple K2 SATA driver into the + kernel + + [ Manoj Iyer ] + + * Remove snd-bt-sco ubuntu driver + + [ Michael Casadevall ] + + * [Config] updates ia64 config and d-i folders to allow succesful build + * [Config] Update powerpc and sparc for 2.6.31 + + [ Upstream Kernel Changes ] + + * intel-iommu: fix Identity Mapping to be arch independent + - LP: #384695 + * ACPI: video: prevent NULL deref in acpi_get_pci_dev() + + -- Andy Whitcroft Tue, 30 Jun 2009 17:47:32 +0100 + +linux (2.6.31-1.13) karmic; urgency=low + + [ Andy Whitcroft ] + + * REBASE: rebased to mainline 2.6.31-rc1 + - "UBUNTU: SAUCE: UHCI USB quirk for resume" + no longer applies, using deprecated interfaces, LPIA only, dropped + - "UBUNTU: SAUCE: Mask off garbage in Dell WMI scan code data" + changes now upstream, dropped + * [Config] Update configs following rebase to 2.6.31-rc1 + * [Config] update ports configs following update to 2.6.31-rc1 + + * [Config] disable broken staging driver CONFIG_STLC45XX + * SAUCE: fix compcache to use updates accessors + * [Config] disable staging driver CONFIG_VT6655 + * SAUCE: fix DRDB to use updates accessors + * [Disable] ndiswrapper needs update + * [Disable] LIRC I2C needs update + * [Disable] CONFIG_LENOVO_SL_LAPTOP needs update + * [Config] disable I2C_DESIGNWARE does not compile + * [Config] disable CONFIG_TLSUP for lpia + * [Config] disable CONFIG_FB_UDL for arm + * SAUCE: disable adding scsi headers to linux-libc-dev + + [ Mario Limonciello ] + + * SAUCE: Add LIRC drivers + + -- Andy Whitcroft Thu, 25 Jun 2009 12:06:22 +0100 + +linux (2.6.30-10.12) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] split out the ports configs into their own family + * [Config] update configs following introduction of ports family + + [ Upstream Kernel Changes ] + + * Revert "Rename linux-doc-PKGVER to linux-doc and clean up its + description". Fixes linux-doc package name conflicts for now. + - LP: #382115 + + -- Tim Gardner Mon, 22 Jun 2009 09:17:14 -0600 + +linux (2.6.30-10.11) karmic; urgency=low + + [ Amit Kucheria ] + + * [Config] Comment splitconfig.pl and misc cleanup + * [Config] Rename all configs to the new naming scheme + * [Config] Splitconfig rework + * [Config] Rename scripts/misc/oldconfig to kernelconfig + * [Config] Fix build system for new config split + * [Config] Run updateconfigs after the splitconfig rework + + [ Andy Whitcroft ] + + * Revert "SAUCE: Default to i915.modeset=0 if CONFIG_DRM_I915_KMS=y" + * [Config] standardise CONFIG_STAGING=y + * [Config] standardise CONFIG_RD_LZMA=y + * [Config] CONFIG_PCI_IOV=y + * [Config] CONFIG_PCI_STUB=m + * [Config] merge kernel configs more agressively + + [ Colin Watson ] + + * [Config] Run kernel-wedge in $(builddir) rather than at the top level + * [Config] Add support for including firmware in udebs + * [Config] Ship bnx2 firmware in nic-modules udeb + - LP: #384861 + + [ Luke Yelavich ] + + * [Config] ports - Import of ports architectures into kernel packaging + infrastructure + * [Config] ports - Do not update ports kernel configurations by default + * [Config] ports - Disable ABI checking for ports architectures + * [Config] ports - Build drivers in ubuntu sub-directory on powerpc + * [Config] ports - Add control.d/vars.* files for ports architectures + * [Config] ports - Add ports architectures for linux-libc-dev + * [Config] ports - Create powerpc specific message-modules and + block-modules udebs + * [Config] ports - Add configuration files for ports architectures + + [ Manoj Iyer ] + + * [Config] Enable CONFIG_BLK_DEV_AEC62XX=m for amd64 and i386 + - LP: #329864 + + [ Michael Casadevall ] + + * [Config] ports - Fix compression of kernels + + [ Stefan Bader ] + + * [Upstream] mmc: prevent dangling block device from accessing stale + queues + - LP: #383668 + + [ Tim Gardner ] + + * [Config] Recommend grub-pc in linux-image + - LP: #385741 + * [Config] Implement i386 generic and generic-pae flavours + * [Config] ports - Add control info after integrating ports arches + * [Config] Removed auto-generated files from git + * [Config] Added netxen_nic to nic-modules + - LP: #389603 + + [ Matt Zimmerman ] + + * Rename linux-doc-PKGVER to linux-doc and clean up its description + - LP: #382115 + + -- Tim Gardner Mon, 15 Jun 2009 14:38:26 -0600 + +linux (2.6.30-9.10) karmic; urgency=low + + [ Andy Whitcroft ] + + * [Config] CONFIG_SECURITY_TOMOYO=y (amd64, i386, lpia) + * [Config] CONFIG_KEXEC_JUMP=y (amd64, lpia) + * [Config] CONFIG_LENOVO_SL_LAPTOP=m (amd64, lpia) + * [Config] CONFIG_POHMELFS_CRYPTO=y (i386, amd64) + * [Config] CONFIG_SERIAL_MAX3100=m (i386, amd64, lpia) + * [Config] CONFIG_VIDEO_GO7007=m (amd64, i386) + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30 final + + -- Andy Whitcroft Fri, 05 Jun 2009 11:42:53 +0100 + +linux (2.6.30-8.9) karmic; urgency=low + + [ Andy Whitcroft ] + + * Config update removed the following options: + CONFIG_EDAC_AMD8111=m + CONFIG_EDAC_AMD8131=m + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc8 + + -- Andy Whitcroft Wed, 03 Jun 2009 09:21:13 +0100 + +linux (2.6.30-7.8) karmic; urgency=low + + [ Andy Whitcroft ] + + * Enabled NEW configration options: + Paravirtualization layer for spinlocks (PARAVIRT_SPINLOCKS) [N/y/?] Y + Cisco FNIC Driver (FCOE_FNIC) [N/m/y/?] M + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc7 + + -- Andy Whitcroft Sat, 23 May 2009 23:47:24 +0100 + +linux (2.6.30-6.7) karmic; urgency=low + + [ Andy Whitcroft ] + + * Dropped: UBUNTU: SAUCE: input: Blacklist digitizers from joydev.c (now + upstream) + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc6 + + -- Andy Whitcroft Mon, 18 May 2009 18:05:54 +0100 + +linux (2.6.30-5.6) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Enable Keyspan USB serial device firmware in kernel module + - LP: #334285 + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc5 + + -- Tim Gardner Mon, 11 May 2009 12:02:16 -0600 + +linux (2.6.30-4.5) karmic; urgency=low + + [ Colin Watson ] + + * Build-Conflict with findutils (= 4.4.1-1ubuntu1), to avoid + /usr/include/asm/* going missing + - LP: #373214 + + -- Stefan Bader Fri, 08 May 2009 11:09:08 +0200 + +linux (2.6.30-3.4) karmic; urgency=low + + [ Kees Cook ] + + * SAUCE: [x86] implement cs-limit nx-emulation for ia32 + - LP: #369978 + + [ Stefan Bader ] + + * SAUCE: input: Blacklist digitizers from joydev.c + - LP: #300143 + + -- Tim Gardner Fri, 01 May 2009 14:00:42 -0600 + +linux (2.6.30-2.3) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] Enabled CC_STACKPROTECTOR=y for all x86en + - LP: #369152 + * SAUCE: Default to i915_modeset=0 if CONFIG_DRM_I915_KMS=y + * [Config] CONFIG_DRM_I915_KMS=y + * [Config] Set CONFIG_SECURITY_DEFAULT_MMAP_MIN_ADDR to appropriate ARCH + minimums + + [ Upstream Kernel Changes ] + + * rebased to 2.6.30-rc4 + + -- Tim Gardner Thu, 30 Apr 2009 09:17:05 -0600 + +linux (2.6.30-1.2) karmic; urgency=low + + [ Tim Gardner ] + + * [Config] armel: disable staging drivers, fixes FTBS + * [Config] armel imx51: Disable CONFIG_MTD_NAND_MXC, fixes FTBS + + [ Upstream Kernel Changes ] + + * mpt2sas: Change reset_type enum to avoid namespace collision. + Submitted upstream. + + -- Tim Gardner Tue, 28 Apr 2009 16:54:41 -0600 + +linux (2.6.30-1.1) karmic; urgency=low + + * Initial release after rebasing against v2.6.30-rc3 + + -- Tim Gardner Thu, 12 Mar 2009 19:16:07 -0600 --- linux-3.2.0.orig/debian.master/changelog.historical +++ linux-3.2.0/debian.master/changelog.historical @@ -0,0 +1,4171 @@ + +linux (2.6.28-9.31) jaunty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: cpufreq-nforce2: probe failures are not errors + - LP: #332170 + * SAUCE: mmc: add MODALIAS linkage for MMC/SD devices + - LP: #30335 + * remove test-suspend script + - LP: #333856 + + [ Kees Cook ] + + * handle relative paths in modules.dep + Fixes 2.6.28-9.30 FTBS. + + [ Upstream Kernel Changes ] + + * ricoh_mmc: Handle newer models of Ricoh controllers + + -- Tim Gardner Wed, 11 Mar 2009 08:19:24 -0600 + +linux (2.6.28-9.30) jaunty; urgency=low + + [ Amit Kucheria ] + + * ARM:mx51 Add SoC and board support for mx51 platforms + * ARM:mx51 Add CONFIG_ARCH_MXC_CANONICAL to disable parts of Freescale's + code + * MMC: Add support for 8-bit cards + * Add ARM:MX51 SoC support to the build system + * ARM: Make ARM arch aware of ubuntu/ drivers + * ARM: Add imx51 configuration + * Disable d-i modules for imx51 and mv78xx0 + * Disable Apparmor on boot for ARM + * Updating imx51 config + + [ Jason Liu ] + + * Do not use OOB with MLC NAND + + [ Richard Zhu ] + + * Support the eMMC4.3 card + + [ Rob Herring ] + + * ARM: Add more cache memory types macros + + [ Tim Gardner ] + + * Set CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y for i386/amd64/lpia + + [ Manoj Iyer ] + + * Enable CONFIG_RTL8187SE=m + + [ Upstream Kernel Changes ] + + * USB: EHCI: slow down ITD reuse + - LP: #329437 + + -- Tim Gardner Sun, 08 Mar 2009 14:14:15 -0600 + +linux (2.6.28-9.29) jaunty; urgency=low + + [ Andy Whitcroft ] + + * link-headers -- only link directories which do not already exist + - LP: #315252 + + [ Daniel Marjamäki ] + + * SAUCE: (drop after 2.6.28) netxen: fix memory leak in + drivers/net/netxen_nic_init.c + - LP: #330813 + + [ Dhananjay Phadke ] + + * SAUCE: (drop after 2.6.28) netxen: fix endianness in firmware commands + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: fix ipv6 offload and tx cleanup + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: fix link speed reporting for some + boards + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: firmware init fix + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: cleanup mac list on driver unload + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: hold tx lock while sending firmware + commands + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: handle dma mapping failures + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: avoid invalid iounmap + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: include ipv6.h (fixes build failure) + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: fix vlan tso/checksum offload + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: reduce memory footprint + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: revert jumbo ringsize + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: fix msi-x interrupt handling + - LP: #330813 + * SAUCE: (drop after 2.6.28) netxen: remove pcie workaround + - LP: #330813 + + [ Hannes Eder ] + + * SAUCE: (drop after 2.6.28) drivers/net/netxen: fix sparse warnings: use + NULL pointer instead of plain integer + - LP: #330813 + + [ Huaxu Wan ] + + * SAUCE: report rfkill changes event if interface is down + - LP: #193970 + + [ Tim Gardner ] + + * MV78XX0 must specify a target in the vars definition. + + [ Upstream Kernel Changes ] + + * Revert "ext4: wait on all pending commits in ext4_sync_fs()" + * jbd2: Fix return value of jbd2_journal_start_commit() + * jbd2: Avoid possible NULL dereference in + jbd2_journal_begin_ordered_truncate() + * ext4: Fix to read empty directory blocks correctly in 64k + * ext4: Fix lockdep warning + * ext4: Initialize preallocation list_head's properly + * ext4: Implement range_cyclic in ext4_da_writepages instead of + write_cache_pages + * ext4: Fix NULL dereference in ext4_ext_migrate()'s error handling + * ext4: Add fallback for find_group_flex + * ext4: Fix deadlock in ext4_write_begin() and ext4_da_write_begin() + * Added mv78xx0 flavor + + -- Tim Gardner Fri, 06 Mar 2009 06:13:31 -0700 + +linux (2.6.28-8.28) jaunty; urgency=low + + [ Alexey Starikovskiy ] + + * SAUCE: ACPI: EC: Limit workaround for ASUS notebooks even more + - LP: #288385 + + [ Scott James Remnant ] + + * SAUCE: Auto-load esp module when device opened. + * SAUCE: Auto-load bridge module when socket opened. + * SAUCE: Auto-load af_netlink module when socket opened. + * SAUCE: Auto-load wanrouter module when socket opened. + * SAUCE: Auto-load ip_queue module when socket opened. + * SAUCE: Auto-load ip6_queue module when socket opened. + * SAUCE: Auto-load cn module when socket opened. + * SAUCE: Auto-load scsi_transport_iscsi module when socket opened. + * SAUCE: Auto-load ftl module when device opened. + * SAUCE: Auto-load pcd module when device opened. + * SAUCE: Auto-load pf module when device opened. + * SAUCE: Auto-load nftl module when device opened. + * SAUCE: Auto-load mousedev module when psaux device opened. + * SAUCE: Auto-load mousedev module when /dev/input/mice opened. + * SAUCE: Auto-load rng-core module when device opened. + * SAUCE: Auto-load openprom module when device opened. + * SAUCE: Auto-load applicom module when device opened. + * SAUCE: Auto-load toshiba module when device opened. + * SAUCE: Auto-load cyclades module when device opened. + * SAUCE: Auto-load riscom8 module when device opened. + * SAUCE: Auto-load specialix module when device opened. + * SAUCE: Auto-load videodev module when device opened. + * SAUCE: Auto-load i2c_dev module when device opened. + * SAUCE: Auto-load mtdchar module when device opened. + * SAUCE: Auto-load pt module when device opened. + * SAUCE: Auto-load pg module when device opened. + * SAUCE: Auto-load cdc_acm module when device opened. + * SAUCE: Auto-load msr module when device opened. + * SAUCE: Auto-load cpuid module when device opened. + * SAUCE: quickcam: Enable double-buffering by default + * SAUCE: libata: Ignore HPA by default. + * SAUCE: hostap: Change initial operation mode to managed (infra) + * SAUCE: floppy: Provide a PnP device table in the module. + - LP: #255651 + * SAUCE: Auto-load mwave module when device opened. + * Build CONFIG_FUSE_FS into kernel, not as module. + + [ Stefan Bader ] + + * Enable build of ext4 as a module on LPIA + - LP: #331848 + + [ Tim Gardner ] + + * Update configs to fix LPIA FTBS + + -- Tim Gardner Thu, 05 Mar 2009 10:43:24 -0700 + +linux (2.6.28-8.27) jaunty; urgency=low + + [ Amit Kucheria ] + + * Updating configs (arm:ixp4xx) + + [ Andy Whitcroft ] + + * SAUCE: enable Intel HDMI output + + [ Manoj Iyer ] + + * SAUCE: Added quirk for Linksys WUSB600N USB wifi-n networking adapter + - LP: #323473 + + [ Steve Beattie ] + + * fix apparmor memory leak on unlinked file ops + - LP: #329489 + + [ Tim Gardner ] + + * SAUCE: Dell XPS710 reboot quirk + - LP: #323592 + * SAUCE: (drop after 2.6.28) ieee80211: Add infrastructure to obsolete + scan results + - LP: #336055 + * Add modules.order to the linux-image package. + + [ Upstream Kernel Changes ] + + * iwlwifi: fix time interval misuse in iwl_poll_{direct_}bit + * x86: only scan the root bus in early PCI quirks + - LP: #267295 + * ALSA: hda - Intel HDMI audio support + * ALSA: hda - Fix unused function in patch_intelhdmi.c + * ALSA: handle SiI1392 HDMI codec in patch_intelhdmi.c + * ALSA: hda-intel: reorder HDMI audio enabling sequence + * ALSA: introduce snd_print_pcm_rates() + * ALSA: create hda_eld.c for ELD routines and proc interface + * ALSA: ELD proc interface for HDMI sinks + * ALSA: hda: make standalone hdmi_fill_audio_infoframe() + * ALSA: hda: make global snd_print_channel_allocation() + * ALSA: hda: HDMI channel allocations for audio infoframe + * ALSA: hda: HDMI channel mapping cleanups + * ALSA: hda: minor code cleanups + * ALSA: hda: rename sink_eld to hdmi_eld + * ALSA: hda - Release ELD proc file + * ALSA: hda - minor HDMI code cleanups + * ALSA: hda - report selected CA index for Audio InfoFrame + * ALSA: hda - Add Intel vendor id string + + -- Tim Gardner Wed, 25 Feb 2009 14:23:46 -0700 + +linux (2.6.28-8.26) jaunty; urgency=low + + [ Amit Kucheria ] + + * Updating configs (armel:ixp4xx) + - LP: #331510 + + [ Tim Gardner ] + + * Add more missing modules + + -- Tim Gardner Tue, 24 Feb 2009 06:58:53 -0700 + +linux (2.6.28-8.25) jaunty; urgency=low + + [ Scott James Remnant ] + + * SAUCE: Prefer powernow-k8 to acpi-cpufreq + * Change CONFIG_X86_P4_CLOCKMOD to be a module again. + + [ Tim Gardner ] + + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Initialize the new + group descriptor when resizing the filesystem" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add sanity check + to make_indexed_dir" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: only use + i_size_high for regular files" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add sanity checks + for the superblock before mounting the filesystem" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix + s_dirty_blocks_counter if block allocation failed with nodelalloc" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Init the complete + page while building buddy cache" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Don't allow new + groups to be added during block allocation" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: mark the + blocks/inode bitmap beyond end of group as used" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Use new + buffer_head flag to check uninit group bitmaps initialization" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix the race + between read_inode_bitmap() and ext4_new_inode()" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix race between + read_block_bitmap() and mark_diskspace_used()" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: don't use blocks + freed but not yet committed in buddy cache init" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: cleanup mballoc + header files" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Use + EXT4_GROUP_INFO_NEED_INIT_BIT during resize" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add blocks added + during resize to bitmap" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Don't overwrite + allocation_context ac_status" + * Revert "SAUCE: (revert before 2.6.28.y update) jbd2: Add barrier not + supported test to journal_wait_on_commit_record" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Widen type of + ext4_sb_info.s_mb_maxs[]" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: avoid ext4_error + when mounting a fs with a single bg" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Fix the delalloc + writepages to allocate blocks at the right offset." + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: tone down + ext4_da_writepages warnings" + * Revert "SAUCE: (revert before 2.6.28.y update) ext4: Add support for + non-native signed/unsigned htree hash algorithms" + * Enabled X86_ACPI_CPUFREQ=y + + [ Upstream Kernel Changes ] + + * ath9k: quiet harmless ForceXPAon messages + - LP: #321474 + * [WATCHDOG] iTCO_wdt: fix SMI_EN regression 2 + - LP: #314050 + * pid: implement ns_of_pid + * mqueue: fix si_pid value in mqueue do_notify() + * powerpc/vsx: Fix VSX alignment handler for regs 32-63 + * sata_nv: give up hardreset on nf2 + * Fix Intel IOMMU write-buffer flushing + * SCSI: libiscsi: fix iscsi pool leak + * x86/cpa: make sure cpa is safe to call in lazy mmu mode + * sched: SCHED_OTHER vs SCHED_IDLE isolation + * x86, vm86: fix preemption bug + * Add support for VT6415 PCIE PATA IDE Host Controller + * ext2/xip: refuse to change xip flag during remount with busy inodes + * 3c505: do not set pcb->data.raw beyond its size + * Bluetooth: Fix TX error path in btsdio driver + * ext4: Add support for non-native signed/unsigned htree hash algorithms + * ext4: tone down ext4_da_writepages warnings + * ext4: Fix the delalloc writepages to allocate blocks at the right + offset. + * ext4: avoid ext4_error when mounting a fs with a single bg + * ext4: Widen type of ext4_sb_info.s_mb_maxs[] + * jbd2: Add barrier not supported test to journal_wait_on_commit_record + * ext4: Don't overwrite allocation_context ac_status + * ext4: Add blocks added during resize to bitmap + * ext4: Use EXT4_GROUP_INFO_NEED_INIT_BIT during resize + * ext4: cleanup mballoc header files + * ext4: don't use blocks freed but not yet committed in buddy cache init + * ext4: Fix race between read_block_bitmap() and mark_diskspace_used() + * ext4: Fix the race between read_inode_bitmap() and ext4_new_inode() + * ext4: Use new buffer_head flag to check uninit group bitmaps + initialization + * ext4: mark the blocks/inode bitmap beyond end of group as used + * ext4: Don't allow new groups to be added during block allocation + * ext4: Init the complete page while building buddy cache + * ext4: Fix s_dirty_blocks_counter if block allocation failed with + nodelalloc + * ext4: Add sanity checks for the superblock before mounting the + filesystem + * ext4: only use i_size_high for regular files + * ext4: Add sanity check to make_indexed_dir + * ext4: Initialize the new group descriptor when resizing the filesystem + * Fix longstanding "error: storage size of '__mod_dmi_device_table' isn't + known" + * Linux 2.6.28.7 + + -- Tim Gardner Thu, 19 Feb 2009 06:45:55 -0700 + +linux (2.6.28-8.24) jaunty; urgency=low + + [ Scott James Remnant ] + + * Change CPU_FREQ_DEFAULT_GOV_ONDEMAND to y + * SAUCE: Link acpi-cpufreq.o first + + [ Tim Gardner ] + + * Build in CPU Frequency scaling drivers + + -- Tim Gardner Wed, 18 Feb 2009 06:12:24 -0700 + +linux (2.6.28-8.23) jaunty; urgency=low + + [ Andy Whitcroft ] + + * include the kernel configuration in the sub-flavour images + - LP: #328859 + + [ Tim Gardner ] + + * Revert "SAUCE: (drop after 2.6.28) [eCryptfs] Regression in unencrypted + filename symlinks" in favor of upstream commit. + * Fix compile issues with qc-usb + * SAUCE: (remove after 2.6.28) V4L/DVB (10216): saa7127: fix broken + S-Video with saa7129 + - LP: #329267 + + [ Upstream Kernel Changes ] + + * Subject:SAUCE: LP#193970 iwlagn: fix hw-rfkill while the interface is + down + - LP: #193970 + * x86, vmi: put a missing paravirt_release_pmd in pgd_dtor + * nbd: fix I/O hang on disconnected nbds + * mac80211: restrict to AP in outgoing interface heuristic + * w1: w1 temp calculation overflow fix + * zd1211rw: adding 0ace:0xa211 as a ZD1211 device + * zd1211rw: treat MAXIM_NEW_RF(0x08) as UW2453_RF(0x09) for TP-Link + WN322/422G + * parport: parport_serial, don't bind netmos ibm 0299 + * syscall define: fix uml compile bug + * kernel-doc: fix syscall wrapper processing + * Fix page writeback thinko, causing Berkeley DB slowdown + * write-back: fix nr_to_write counter + * writeback: fix break condition + * mm: rearrange exit_mmap() to unlock before arch_exit_mmap + * powerpc/fsl-booke: Fix mapping functions to use phys_addr_t + * lockd: fix regression in lockd's handling of blocked locks + * sctp: Fix crc32c calculations on big-endian arhes. + * sctp: Correctly start rtx timer on new packet transmissions. + * sctp: Properly timestamp outgoing data chunks for rtx purposes + * net: Fix frag_list handling in skb_seq_read + * net: Fix OOPS in skb_seq_read(). + * drivers/net/skfp: if !capable(CAP_NET_ADMIN): inverted logic + * ipv4: fix infinite retry loop in IP-Config + * net: Fix userland breakage wrt. linux/if_tunnel.h + * net: packet socket packet_lookup_frame fix + * packet: Avoid lock_sock in mmap handler + * sungem: Soft lockup in sungem on Netra AC200 when switching interface + up + * udp: Fix UDP short packet false positive + * udp: increments sk_drops in __udp_queue_rcv_skb() + * ipv6: Disallow rediculious flowlabel option sizes. + * ipv6: Copy cork options in ip6_append_data + * net: 4 bytes kernel memory disclosure in SO_BSDCOMPAT gsopt try #2 + * sky2: fix hard hang with netconsoling and iface going up + * tun: Add some missing TUN compat ioctl translations. + * tun: Fix unicast filter overflow + * virtio_net: Fix MAX_PACKET_LEN to support 802.1Q VLANs + * tcp: splice as many packets as possible at once + * tcp: Fix length tcp_splice_data_recv passes to skb_splice_bits. + * sparc: Enable syscall wrappers for 64-bit (CVE-2009-0029) + * sparc64: Annotate sparc64 specific syscalls with SYSCALL_DEFINEx() + * ALSA: hda - Add missing terminator in slave dig-out array + * ALSA: mtpav - Fix initial value for input hwport + * HID: adjust report descriptor fixup for MS 1028 receiver + * ide/libata: fix ata_id_is_cfa() (take 4) + * libata: fix EH device failure handling + * netfilter: fix tuple inversion for Node information request + * netfilter: xt_sctp: sctp chunk mapping doesn't work + * x86: microcode_amd: fix wrong handling of equivalent CPU id + * ide-cd: fix DMA for non bio-backed requests + * net: Fix data corruption when splicing from sockets. + * Linux 2.6.28.6 + * eCryptfs: Regression in unencrypted filename symlinks + + -- Tim Gardner Mon, 16 Feb 2009 06:43:51 -0700 + +linux (2.6.28-8.22) jaunty; urgency=low + + [ Amit Kucheria ] + + * Remove perm-blacklist + + [ Andy Whitcroft ] + + * SAUCE: psmouse/synaptics: ensure we reset the device on resume + - LP: #317270 + + [ Tim Gardner ] + + * Add lpia to getabi script + * SAUCE: tracer for sreadahead + + -- Amit Kucheria Fri, 13 Feb 2009 15:23:21 +0200 + +linux (2.6.28-8.21) jaunty; urgency=low + + [ Andy Whitcroft ] + + * SAUCE: switch the Asus Pundit P1-AH2 to old acpi sleep ordering + - LP: #327267 + + [ Tim Gardner ] + + * Added LPIA arch support + * Added libdrm-dev as a 'Replaces' to linux-libc-dev + * SAUCE: LPIA support for 9202 HDA Sigmatel codec + * SAUCE: Add an X86_LPIA Kconfig option + * SAUCE: UHCI USB quirk for resume + * SAUCE: LPIA Reboot fix for Intel Crownbeach development boards + * SAUCE: LPIA Logical reset of USB port on resume + * Set CONFIG_WIRELESS_OLD_REGULATORY=n, added wireless-crda + as an install dependency. + + [ Upstream Kernel Changes ] + + * Revert "Revert "x86, early_ioremap: fix fencepost error"" + - LP: #312554 + * drm/i915: capture last_vblank count at IRQ uninstall time too + - LP: #320813 + * drm/i915: add get_vblank_counter function for GM45 + - LP: #320813 + * Staging: comedi: fix Kbuild + * Staging: meilhaus: fix Kbuild + * Staging: android: binder: fix arm build errors + * Staging: android: timed_gpio: Fix build to build on kernels after + 2.6.25. + * Staging: android: fix build error on 64bit boxes + * Staging: android: Add lowmemorykiller documentation. + * Staging: android: task_get_unused_fd_flags: fix the wrong usage of + tsk->signal + * staging: agnx: drivers/staging/agnx/agnx.h needs + * Staging: usbip: usbip_start_threads(): handle kernel_thread failure + * Staging: poch: fix verification of memory area + * Documentation: move DMA-mapping.txt to Doc/PCI/ + * sgi-xp: fix writing past the end of kzalloc()'d space + * do_wp_page: fix regression with execute in place + * wait: prevent exclusive waiter starvation + * shm: fix shmctl(SHM_INFO) lockup with !CONFIG_SHMEM + * revert "rlimit: permit setting RLIMIT_NOFILE to RLIM_INFINITY" + * prevent kprobes from catching spurious page faults + * sound: usb-audio: handle wMaxPacketSize for FIXED_ENDPOINT devices + * md: Ensure an md array never has too many devices. + * md: Fix a bug in linear.c causing which_dev() to return the wrong + device. + * ACPI: Enable bit 11 in _PDC to advertise hw coord + * ACPI: dock: Don't eval _STA on every show_docked sysfs read + * ieee1394: ohci1394: increase AT req. retries, fix ack_busy_X from + Panasonic camcorders and others + * firewire: ohci: increase AT req. retries, fix ack_busy_X from Panasonic + camcorders and others + * firewire: sbp2: fix DMA mapping leak on the failure path + * firewire: sbp2: add workarounds for 2nd and 3rd generation iPods + * ieee1394: sbp2: add workarounds for 2nd and 3rd generation iPods + * module: remove over-zealous check in __module_get() + * x86: APIC: enable workaround on AMD Fam10h CPUs + * eeepc-laptop: fix oops when changing backlight brightness during + eeepc-laptop init + * eeepc-laptop: Add support for extended hotkeys + * e1000: fix bug with shared interrupt during reset + * e1000: Fix PCI enable to honor the need_ioport flag + * agp/intel: Fix broken ® symbol in device name. + * ALSA: hda - Add quirk for FSC Amilo Xi2550 + * ALSA: hda - Add missing COEF initialization for ALC887 + * ALSA: hda - Add missing initialization for ALC272 + * asus_acpi: Add R1F support + * panasonic-laptop: fix X[ ARRAY_SIZE(X) ] + * ACPI: Skip the first two elements in the _BCL package + * ACPI: proc_dir_entry 'video/VGA' already registered + * ACPI: disable ACPI cleanly when bad RSDP found + * ACPICA: Fix table entry truncation calculation + * PCI: properly clean up ASPM link state on device remove + * PCI: return error on failure to read PCI ROMs + * seq_file: move traverse so it can be used from seq_read + * seq_file: fix big-enough lseek() + read() + * serial: set correct baud_base for Oxford Semiconductor Ltd EXSYS + EX-41092 Dual 16950 Serial adapter + * Add support for '8-port RS-232 MIC-3620 from advantech' + * mm: fix error case in mlock downgrade reversion + * elf core dump: fix get_user use + * ACPI: video: Fix reversed brightness behavior on ThinkPad SL series + * ipw2200: fix scanning while associated + * XFS: set b_error from bio error in xfs_buf_bio_end_io + * Revert USB: option: add Pantech cards + * USB: option: New mobile broadband modems to be supported + * USB: new id for ti_usb_3410_5052 driver + * USB: two more usb ids for ti_usb_3410_5052 + * USB: usb-storage: add Pentax to the bad-vendor list + * sata_via: Add VT8261 support + * nbd: do not allow two clients at the same time + * sctp: Fix another socket race during accept/peeloff + * Linux 2.6.28.5 + + -- Tim Gardner Mon, 09 Feb 2009 16:11:28 -0700 + +linux (2.6.28-7.20) jaunty; urgency=low + + [ Tim Gardner ] + + * SAUCE: Input: atkbd - Samsung NC10 key repeat fix + + [ Upstream Kernel Changes ] + + * Manually revert "mlock: downgrade mmap sem while populating mlocked + regions" + * xen: make sysfs files behave as their names suggest + * sata_mv: fix 8-port timeouts on 508x/6081 chips + * m68knommu: set NO_DMA + * PCI/MSI: bugfix/utilize for msi_capability_init() + * x86: use early clobbers in usercopy*.c + * netfilter: ctnetlink: fix scheduling while atomic + * orinoco: move kmalloc(..., GFP_KERNEL) outside spinlock in + orinoco_ioctl_set_genie + * fbdev/atyfb: Fix DSP config on some PowerMacs & PowerBooks + * kmalloc: return NULL instead of link failure + * sata_nv: rename nv_nf2_hardreset() + * sata_nv: fix MCP5x reset + * sata_nv: ck804 has borked hardreset too + * Fix memory corruption in console selection + * Add enable_ms to jsm driver + * nfsd: only set file_lock.fl_lmops in nfsd4_lockt if a stateowner is + found + * nfsd: Ensure nfsv4 calls the underlying filesystem on LOCKT + * iwlwifi: fix rs_get_rate WARN_ON() + * p54: fix lm87 checksum endianness + * p54: fix p54_read_eeprom to cope with tx_hdr_len + * p54usb: rewriting rx/tx routines to make use of usb_anchor's facilities + * minstrel: fix warning if lowest supported rate index is not 0 + * PCI: irq and pci_ids patch for Intel Tigerpoint DeviceIDs + * cpuidle: Add decaying history logic to menu idle predictor + * ACPI: Avoid array address overflow when _CST MWAIT hint bits are set + * video: always update the brightness when poking "brightness" + * Newly inserted battery might differ from one just removed, so update of + battery info fields is required. + * ACPI: Do not modify SCI_EN directly + * dlm: initialize file_lock struct in GETLK before copying conflicting + lock + * sata_mv: Fix chip type for Hightpoint RocketRaid 1740/1742 + * ACPICA: Allow multiple backslash prefix in namepaths + * Linux 2.6.28.4 + + -- Tim Gardner Sat, 07 Feb 2009 18:53:42 -0700 + +linux (2.6.28-7.19) jaunty; urgency=low + + * Fix missing modules FTBS + + -- Tim Gardner Thu, 05 Feb 2009 15:28:15 -0700 + +linux (2.6.28-7.18) jaunty; urgency=low + + [ Alok Kataria ] + + * SAUCE: (drop after 2.6.29) x86: add a synthetic TSC_RELIABLE feature + bit + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: add X86_FEATURE_HYPERVISOR feature bit + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: Hypervisor detection and get tsc_freq + from hypervisor + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: Add a synthetic TSC_RELIABLE feature + bit. + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: Skip verification by the watchdog for + TSC clocksource. + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: VMware: Fix vmware_get_tsc code + - LP: #319945 + * SAUCE: (drop after 2.6.29) x86: vmware: look for DMI string in the + product serial key + - LP: #319945 + + [ Andy Whitcroft ] + + * SAUCE: toshiba_acpi -- pull in current -dev version of driver + - LP: #269831 + * SAUCE: toshiba_acpi -- add acpi hotkey kernel thread + - LP: #269831 + * move toshiba laptops back from tlsup to toshiba_acpi + - LP: #269831 + + [ Aneesh Kumar K.V ] + + * SAUCE: (revert before 2.6.28.y update) ext4: Fix the delalloc + writepages to allocate blocks at the right offset. + * SAUCE: (revert before 2.6.28.y update) ext4: avoid ext4_error when + mounting a fs with a single bg + * SAUCE: (revert before 2.6.28.y update) ext4: Don't overwrite + allocation_context ac_status + * SAUCE: (revert before 2.6.28.y update) ext4: Add blocks added during + resize to bitmap + * SAUCE: (revert before 2.6.28.y update) ext4: Use + EXT4_GROUP_INFO_NEED_INIT_BIT during resize + * SAUCE: (revert before 2.6.28.y update) ext4: cleanup mballoc header + files + * SAUCE: (revert before 2.6.28.y update) ext4: don't use blocks freed but + not yet committed in buddy cache init + * SAUCE: (revert before 2.6.28.y update) ext4: Fix race between + read_block_bitmap() and mark_diskspace_used() + * SAUCE: (revert before 2.6.28.y update) ext4: Fix the race between + read_inode_bitmap() and ext4_new_inode() + * SAUCE: (revert before 2.6.28.y update) ext4: Use new buffer_head flag + to check uninit group bitmaps initialization + * SAUCE: (revert before 2.6.28.y update) ext4: mark the blocks/inode + bitmap beyond end of group as used + * SAUCE: (revert before 2.6.28.y update) ext4: Don't allow new groups to + be added during block allocation + * SAUCE: (revert before 2.6.28.y update) ext4: Init the complete page + while building buddy cache + * SAUCE: (revert before 2.6.28.y update) ext4: Fix s_dirty_blocks_counter + if block allocation failed with nodelalloc + + [ Hannes Eder ] + + * SAUCE: (drop after 2.6.29) x86: vmware - fix sparse warnings + - LP: #319945 + + [ Luke Yelavich ] + + * hid modules have hyphens instead of underscores in their names + + [ Mark Fasheh ] + + * SAUCE: (revert before 2.6.28.y update) jbd2: Add BH_JBDPrivateStart + + [ Theodore Ts'o ] + + * SAUCE: (revert before 2.6.28.y update) ext4: Add support for non-native + signed/unsigned htree hash algorithms + * SAUCE: (revert before 2.6.28.y update) ext4: tone down + ext4_da_writepages warnings + * SAUCE: (revert before 2.6.28.y update) jbd2: Add barrier not supported + test to journal_wait_on_commit_record + * SAUCE: (revert before 2.6.28.y update) ext4: Add sanity checks for the + superblock before mounting the filesystem + * SAUCE: (revert before 2.6.28.y update) ext4: only use i_size_high for + regular files + * SAUCE: (revert before 2.6.28.y update) ext4: Add sanity check to + make_indexed_dir + * SAUCE: (revert before 2.6.28.y update) jbd2: On a __journal_expect() + assertion failure printk "JBD2", not "EXT3-fs" + * SAUCE: (revert before 2.6.28.y update) ext4: Initialize the new group + descriptor when resizing the filesystem + + [ Tyler Hicks ] + + * SAUCE: (drop after 2.6.28) [eCryptfs] Regression in unencrypted + filename symlinks + - LP: #322532 + + [ Upstream Kernel Changes ] + + * Input: atkbd - broaden the Dell DMI signatures + - LP: #261721 + * ti_usb_3410_5052: support alternate firmware + * ath5k: fix mesh point operation + * mac80211: decrement ref count to netdev after launching mesh discovery + * inotify: clean up inotify_read and fix locking problems + * fuse: destroy bdi on umount + * fuse: fix missing fput on error + * fuse: fix NULL deref in fuse_file_alloc() + * x86, mm: fix pte_free() + * klist.c: bit 0 in pointer can't be used as flag + * sysfs: fix problems with binary files + * x86: fix page attribute corruption with cpa() + * USB: fix toggle mismatch in disable_endpoint paths + * sound: virtuoso: enable UART on Xonar HDAV1.3 + * USB: usbmon: Implement compat_ioctl + * USB: fix char-device disconnect handling + * USB: storage: add unusual devs entry + * alpha: nautilus - fix compile failure with gcc-4.3 + * alpha: fix vmalloc breakage + * resources: skip sanity check of busy resources + * rtl8187: Add termination packet to prevent stall + * it821x: Add ultra_mask quirk for Vortex86SX + * libata: pata_via: support VX855, future chips whose IDE controller use + 0x0571 + * serial_8250: support for Sealevel Systems Model 7803 COMM+8 + * drm: stash AGP include under the do-we-have-AGP ifdef + * Fix OOPS in mmap_region() when merging adjacent VM_LOCKED file segments + * bnx2x: Block nvram access when the device is inactive + * ext3: Add sanity check to make_indexed_dir + * rtl8187: Fix error in setting OFDM power settings for RTL8187L + * epoll: drop max_user_instances and rely only on max_user_watches + * gpiolib: fix request related issue + * sgi-xpc: Remove NULL pointer dereference. + * sgi-xpc: ensure flags are updated before bte_copy + * include/linux: Add bsg.h to the Kernel exported headers + * ALSA: hda - Fix PCM reference NID for STAC/IDT analog outputs + * ALSA: hda - add another MacBook Pro 4, 1 subsystem ID + * ALSA: hda - Add quirk for HP DV6700 laptop + * crypto: authenc - Fix zero-length IV crash + * crypto: ccm - Fix handling of null assoc data + * x86, pat: fix reserve_memtype() for legacy 1MB range + * x86, pat: fix PTE corruption issue while mapping RAM using /dev/mem + * PCI hotplug: fix lock imbalance in pciehp + * dmaengine: fix dependency chaining + * NET: net_namespace, fix lock imbalance + * relay: fix lock imbalance in relay_late_setup_files + * Linux 2.6.28.3 + * ALSA: Enable SPDIF output on ALC655 + * ALSA: hda - Add ASUS V1Sn support + * ALSA: hda - support detecting HD Audio devices with PCI class code + * ALSA: hda: alc883 model for ASUS P5Q-EM boards + * ALSA: hda - Add quirk for MSI 7260 mobo + * ALSA: hda - Add quirk for Sony VAIO VGN-SR19XN + * ALSA: oxygen: add Claro halo support + * ALSA: hda - Add a new function to seek for a codec ID + * ALSA: patch_sigmatel: Add missing Gateway entries and autodetection + * ALSA: hda - More fixes on Gateway entries + * ALSA: hda - Add MCP67 HDMI support + * ALSA: hda - fix name for ALC1200 + * LSA: hda - Add HP Acacia detection + * ALSA: hda - Add quirk for HP 2230s + * ALSA: hda - Add quirk for Dell Inspiron Mini9 + * ALSA: hda - add support for Intel DX58SO board + * ALSA: hda - Fix silent headphone output on Panasonic CF-74 + * ALSA: USB quirk for Logitech Quickcam Pro 9000 name + * ALSA: hda - add quirks for some 82801H variants to use ALC883_MITAC + + [ Yasunori Goto ] + + * SAUCE: (revert before 2.6.28.y update) ext4: Widen type of + ext4_sb_info.s_mb_maxs[] + + -- Tim Gardner Mon, 02 Feb 2009 23:07:13 -0700 + +linux (2.6.28-6.17) jaunty; urgency=low + + [ Amit Kucheria ] + + * Updating configs: ARMEL/versatile + + -- Amit Kucheria Fri, 30 Jan 2009 13:36:59 +0200 + +linux (2.6.28-6.16) jaunty; urgency=low + + [ Luke Yelavich ] + + * Add hid quirks to input-modules udeb + + [ Tim Gardner ] + + * Revert "[arm] Fix kexec on ARM by properly calling the relocation + function". This patch was deemed 'bogus' by Russell King on the + ARM mailing list. + + [ Upstream Kernel Changes ] + + * PCI: keep ASPM link state consistent throughout PCIe hierarchy + * security: introduce missing kfree + * rt2x00: add USB ID for the Linksys WUSB200. + * p54usb: Add USB ID for Thomson Speedtouch 121g + * lib/idr.c: use kmem_cache_zalloc() for the idr_layer cache + * sgi-xp: eliminate false detection of no heartbeat + * sched: fix update_min_vruntime + * IA64: Turn on CONFIG_HAVE_UNSTABLE_CLOCK + * sound: virtuoso: do not overwrite EEPROM on Xonar D2/D2X + * ALSA: hda - Add quirk for another HP dv5 + * ALSA: hda - Fix HP dv5 mic input + * ALSA: hda - Don't reset HP pinctl in patch_sigmatel.c + * ALSA: hda - make laptop-eapd model back for AD1986A + * drivers/net/irda/irda-usb.c: fix buffer overflow + * usb-storage: add last-sector hacks + * usb-storage: set CAPACITY_HEURISTICS flag for bad vendors + * pkt_sched: sch_htb: Fix deadlock in hrtimers triggered by HTB + * ipv6: Fix fib6_dump_table walker leak + * sctp: Avoid memory overflow while FWD-TSN chunk is received with bad + stream ID + * pkt_sched: cls_u32: Fix locking in u32_change() + * r6040: fix wrong logic in mdio code + * r6040: save and restore MIER correctly in the interrupt routine + * r6040: bump release number to 0.19 + * tcp: don't mask EOF and socket errors on nonblocking splice receive + * p54usb: fix traffic stalls / packet drop + * netfilter: x_tables: fix match/target revision lookup + * netfilter: ebtables: fix inversion in match code + * netfilter: nf_conntrack: fix ICMP/ICMPv6 timeout sysctls on big-endian + * dell_rbu: use scnprintf() instead of less secure sprintf() + * powerpc: is_hugepage_only_range() must account for both 4kB and 64kB + slices + * hwmon: (abituguru3) Fix CONFIG_DMI=n fallback to probe + * mm: write_cache_pages cyclic fix + * mm: write_cache_pages early loop termination + * mm: write_cache_pages writepage error fix + * mm: write_cache_pages integrity fix + * mm: write_cache_pages cleanups + * mm: write_cache_pages optimise page cleaning + * mm: write_cache_pages terminate quickly + * mm: write_cache_pages more terminate quickly + * mm: do_sync_mapping_range integrity fix + * mm: direct IO starvation improvement + * fs: remove WB_SYNC_HOLD + * fs: sync_sb_inodes fix + * fs: sys_sync fix + * Linux 2.6.28.2 + + -- Tim Gardner Sun, 25 Jan 2009 13:36:16 -0700 + +linux (2.6.28-5.15) jaunty; urgency=low + + [ Tim Gardner ] + + * Revert "Enabled CONFIG_PID_NS=y for i386/amd64" + Somehow this commit also reverted the 7 prior commits (which is bad). + * Enabled CONFIG_PID_NS=y for i386/amd64 (version 2) + + -- Tim Gardner Thu, 22 Jan 2009 13:48:34 -0700 + +linux (2.6.28-5.14) jaunty; urgency=low + + [ Ben Collins ] + + * lirc_gpio: Forward ported to current kernel (jaunty) + * configs: Enable LIRC_GPIO on 64-bit/32-bit x86 + - LP: #298791 + + [ Jeff Layton ] + + * SAUCE: cifs: make sure we allocate enough storage for socket address + - LP: #318565 + + [ Tim Gardner ] + + * check-abi: Return success when ABI skip is requested and no ABI files exist. + This ought to fix the armel FTBS. + + -- Tim Gardner Thu, 22 Jan 2009 06:42:49 -0700 + +linux (2.6.28-5.13) jaunty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: don't use buggy _BCL/_BCM/_BQC for backlight control" + + [ Tim Gardner ] + + * Fix udeb generation breakage caused by the previous armel versatile + flavour config update. + + -- Tim Gardner Wed, 21 Jan 2009 12:38:35 -0700 + +linux (2.6.28-5.12) jaunty; urgency=low + + [ Ante ] + + * Update drbd to 8.3.0 + + [ Dave Airlie ] + + * i915/drm: provide compat defines for userspace for certain struct + + [ Eric Anholt ] + + * drm/i915: Don't double-unpin buffers if we take a signal in + * drm/i915: Don't complain when interrupted while pinning in execbuffers. + * drm/i915: Don't allow objects to get bound while VT switched. + + [ Jani Monoses ] + + * Fix webcam having USB ID 0ac8:303b + - LP: #292086 + + [ Jesse Barnes ] + + * drm/i915: set vblank enabled flag correctly across IRQ + * drm/i915: don't enable vblanks on disabled pipes + + [ Michael Casadevall ] + + * [arm] Fix kexec on ARM by properly calling the relocation function + + [ Tim Gardner ] + + * Enabled CONFIG_PID_NS=y for i386/amd64 + * SAUCE: Increase ATA_TMOUT_PMP_SRST_WAIT to 5 seconds. + - LP: #318978 + * Update armel versatile config + - LP: #314789 + * Enabled CONFIG_RT2860=m for i386/amd64 + * Enabled CONFIG_RT2870=m for i386/amd64 + + [ Upstream Kernel Changes ] + + * Input: atkbd - add keyboard quirk for HP Pavilion ZV6100 laptop + - LP: #291878 + * ALSA: hda - Add quirk for another HP dv7 + * ALSA: hda - Add quirk for HP6730B laptop + * ALSA: caiaq - Fix Oops with MIDI + * ALSA: hda - Fix typos for AD1882 codecs + * x86: fix intel x86_64 llc_shared_map/cpu_llc_id anomolies + * x86: default to SWIOTLB=y on x86_64 + * CIFS: make sure that DFS pathnames are properly formed + * ring-buffer: prevent false positive warning + * ring-buffer: fix dangling commit race + * iwlwifi: use GFP_KERNEL to allocate Rx SKB memory + * tx493[89]ide: Fix length for __ide_flush_dcache_range + * tx4939ide: Do not use zero count PRD entry + * SCSI: eata: fix the data buffer accessors conversion regression + * USB: emi26: fix oops on load + * x86, UV: remove erroneous BAU initialization + * x86: fix incorrect __read_mostly on _boot_cpu_pda + * vmalloc.c: fix flushing in vmap_page_range() + * fs: symlink write_begin allocation context fix + * cgroups: fix a race between cgroup_clone and umount + * dm raid1: fix error count + * dm log: fix dm_io_client leak on error paths + * minix: fix add link's wrong position calculation + * md: fix bitmap-on-external-file bug. + * sched_clock: prevent scd->clock from moving backwards, take #2 + * devices cgroup: allow mkfifo + * SCSI: aha152x_cs: Fix regression that keeps driver from using shared + interrupts + * ioat: fix self test for multi-channel case + * USB: isp1760: use a specific PLX bridge instead of any bdridge + * USB: isp1760: Fix probe in PCI glue code + * USB: unusual_devs.h additions for Pentax K10D + * inotify: fix type errors in interfaces + * Move compat system call declarations to compat header file + * Convert all system calls to return a long + * Rename old_readdir to sys_old_readdir + * Remove __attribute__((weak)) from sys_pipe/sys_pipe2 + * Make sys_pselect7 static + * Make sys_syslog a conditional system call + * System call wrapper infrastructure + * powerpc: Enable syscall wrappers for 64-bit + * s390: enable system call wrappers + * System call wrapper special cases + * System call wrappers part 01 + * System call wrappers part 02 + * System call wrappers part 03 + * System call wrappers part 04 + * System call wrappers part 05 + * System call wrappers part 06 + * System call wrappers part 07 + * System call wrappers part 08 + * System call wrappers part 09 + * System call wrappers part 10 + * System call wrappers part 11 + * System call wrappers part 12 + * System call wrappers part 13 + * System call wrappers part 14 + * System call wrappers part 15 + * System call wrappers part 16 + * System call wrappers part 17 + * System call wrappers part 18 + * System call wrappers part 19 + * System call wrappers part 20 + * System call wrappers part 21 + * System call wrappers part 22 + * System call wrappers part 23 + * System call wrappers part 24 + * System call wrappers part 25 + * System call wrappers part 26 + * System call wrappers part 27 + * System call wrappers part 28 + * System call wrappers part 29 + * System call wrappers part 30 + * System call wrappers part 31 + * System call wrappers part 32 + * System call wrappers part 33 + * s390 specific system call wrappers + * x86: fix RIP printout in early_idt_handler + * Fix timeouts in sys_pselect7 + * USB: another unusual_devs entry for another bad Argosy storage device + * USB: storage: extend unusual range for 067b:3507 + * USB: storage: recognizing and enabling Nokia 5200 cell phoes + * HID: fix error condition propagation in hid-sony driver + * fix switch_names() breakage in short-to-short case + * nfs: remove redundant tests on reading new pages + * eCryptfs: check readlink result was not an error before using it + * mvsas: increase port type detection delay to suit Seagate's 10k6 drive ST3450856SS 0003 + * x86: avoid theoretical vmalloc fault loop + * ath9k: enable RXing of beacons on STA/IBSS + * mm lockless pagecache barrier fix + * powerpc: Disable Collaborative Memory Manager for kdump + * ibmvfc: Delay NPIV login retry and add retries + * ibmvfc: Improve async event handling + * getrusage: RUSAGE_THREAD should return ru_utime and ru_stime + * ath5k: ignore the return value of ath5k_hw_noise_floor_calibration + * mm: fix assertion + * XFS: truncate readdir offsets to signed 32 bit values + * Linux 2.6.28.1 + * eCryptfs: Filename Encryption: Tag 70 packets + * eCryptfs: Filename Encryption: Header updates + * eCryptfs: Filename Encryption: Encoding and encryption functions + * eCryptfs: Filename Encryption: filldir, lookup, and readlink + * eCryptfs: Filename Encryption: mount option + * eCryptfs: Replace %Z with %z + * eCryptfs: Fix data types (int/size_t) + * eCryptfs: kerneldoc for ecryptfs_parse_tag_70_packet() + * eCryptfs: Clean up ecryptfs_decode_from_filename() + * fs/ecryptfs/inode.c: cleanup kerneldoc + * staging-p80211: Kill directly reference of netdev->priv + * staging-slicoss: Kill directly reference of netdev->priv + * staging-winbond: Kill directly reference of netdev->priv + * Staging: go7007: fixes due to video_usercopy api change + * Staging: go7007: fixes due v4l2_file_operations api change + * staging: correct dubious use of !x & y + * Staging: w35und: make wb35_probe() and wb35_disconnect() funtions static + * Staging: w35und: remove unused wb35_open() and wb35_close() functions + * Staging: w35und: use msleep() and udelay() + * Staging: w35und: remove the no-op pa_stall_execution macro + * Staging: w35und: purb typedef removal + * Staging: w35und: reg queue struct typedef removal + * Staging: w35und: wb35reg struct typedef removal + * Staging: w35und: padapter struct typedef removal + * Staging: w35und: merge wblinux struct to adapter + * Staging: w35und: wb35_probe() cleanup + * Staging: w35und: remove usb_submit_urb wrapper function + * Staging: w35und: remove usb_alloc_urb wrapper function + * w35und: remove dead code from wbusb_f.h + * Staging: w35und: remove true/false boolean macros + * Staging: w35und: OS_MEMORY_ALLOC wrapper removal + * Staging: w35und: usb_put_dev() is missing from wb35_disconnect() + * Staging: w35und: remove macro magic from MLME_GetNextPacket() + * Staging: w35und: plug memory leak in wbsoft_tx() + * Staging: w35und: move supported band initialization out of wb35_probe() + * Staging: w35und: remove timer wrappers + * Staging: w35und: remove atomic op wrappers + * Staging: w35und: remove memcpy/memcmp wrappers + * Staging: w35und: remove abs() and BIT() macros + * Staging: w35und: remove unused macros from common.h + * Staging: w35und: remove unused link status code + * Staging: w35und: #include cleanup + * Staging: w35und: remove some dead code + * Staging: w35und: move source files to one directory + * Staging: w35und: move struct wbsoft_priv to core.h and use it + * Staging: w35und: remove ->adapter from struct _HW_DATA_T + * Staging: w35und: clean up adapter.h a bit + * Staging: w35und: merge struct wb35_adapter to struct wbsoft_priv + * Staging: w35und: remove global struct ieee80211_hw + * Staging: w35und: inline DRIVER_AUTHOR and DRIVER_DESC macros + * Staging: w35und: clean up wblinux.c a bit + * Staging: w35und: remove unused ->ShutDowned member from struct + LOCAL_PARA + * Staging: w35und: move global wbsoft_enabled to struct wbsoft_priv + * Staging: w35und: move packet_came() to wb35rx.c + * Staging: w35und: remove ->skb_array from struct wbsoft_priv + * Staging: w35und: remove ->shutdown from struct wbsoft_priv + * Staging: w35und: make functions local to mds.c static + * Staging: w35und: make functions local to mlmetxrx.c static + * Staging: w35und: remove dead code from mto.c + * Staging: w35und: make functions local to wb35rx.c static + * Staging: w35und: make functions local to wb35tx.c static + * Staging: w35und: remove dead code from wbhal.c + * Staging: w35und: remove rxisr.c as dead code + * Staging: w35und: fix Kconfig + * Staging: w35und: fix config build warnings + * Staging: wlan-ng: Remove PCI/PLX/PCMCIA files. + * Staging: wlan-ng: Update Help text to mention prism3 devices. + * Staging: wlan-ng: Delete PCI/PLX/PCMCIA-specific code. + * Staging: wlan-ng: Make wlan-ng use WEXT mode by default. + * Staging: wlan-ng: Eliminate more <2.6 kernel support. + * Staging: wlan-ng: Eliminate all backwards-compatibility for <2.6.13 kernels. + * Staging: wlan-ng: Eliminate a boatload of tertiaryAP-only code. + * Staging: wlan-ng: Remove AP-only code from MLME functions. + * Staging: wlan-ng: Get rid of the MTU tests in the rx conversion path. + * Staging: wlan-ng: Eliminate one more rx mtu test. + * Staging: wlan-ng: Eliminate local 'version.h' + * Staging: wlan-ng: Eliminate usage of procfs. + * Staging: wlan-ng: Use standard kernel integer (u32/s32/etc) types. + * Staging: wlan-ng: Eliminate all backwards-compatible kernel code. + * Staging: wlan-ng: Wireless Extension support is mandatory. + * Staging: wlan-ng: use WIRELESS_EXT, not CONFIG_WIRELESS_EXT + * Staging: wlan-ng: Delete a large pile of now-unused code. + * Staging: wlan-ng: Delete a pile of unused mibs. And fix WEXT SET_TXPOWER. + * Staging: wlan-ng: Consolidate wlan-ng into a single module. + * Staging: wlan-ng: Purge all MIBs not used internally. + * Staging: wlan-ng: p80211netdev.c fix netdev alloc to prevent oops on device start + * Staging: wlan-ng: prism2_usb.c always enable the card in probe_usb + * Staging: wlan-ng: hfa384x_usb.c use newest version of 384x_drvr_start + * Staging: wlan-ng: p80211wext.c add latest changes & remove extra nulls from wext_handlers + * Staging: wlan-ng: p80211wext don't set default key id twice + * Staging: wlan-ng: hfa384x_usbin_callback: check for hardware removed + * Staging: wlan-ng: p80211conv.c copy code from wlan-ng-devel branch to not drop packets + * Staging: wlan-ng: remove unused #include + * Staging: wlan-ng: p80211wext.c: use ARRAY_SIZE + * Staging: wlan-ng: fix compiler warnings + * Staging: wlan-ng: skb_p80211_to_ether() - payload_length is unsigned, check before subtraction + * Staging: at76_usb: update drivers/staging/at76_usb w/ mac80211 port + * Staging: at76_usb: fix build breakage + * Staging: at76_usb: remove compiler warnings + * Staging: at76_usb: fix up all remaining checkpatch.pl warnings + * Staging: at76_usb: cleanup dma on stack issues + * Staging: poch: Block size bug fix + * Staging: poch: Update TODO list + * Staging: poch: Correct pages from bytes. + * Staging: poch: minor fixes + * Staging: poch: Fix build warnings + * Staging: poch: Rx control register init + * Staging: poch: Fix user space protocol syncing + * Staging: poch: Fine grained locking + * Staging: sxg: remove typedefs + * Staging: sxg: break the build in a cleaner way when !x86 + * Staging: sxg: update README + * staging: struct device - replace bus_id with dev_name(), dev_set_name() + * Staging: echo: remove typedefs + * Staging: echo: Lindent drivers/staging/echo + * Staging: go7007: saa7134 updates + * Staging: go7007: add sensoray 2250/2251 support + * Staging: go7007: Convert driver to use video_ioctl2 + * Staging: go7007: annotate code pointers + * Staging: go7007: fix minor build warnings + * Staging: go7007: small cleanup + * Staging: go7007: add some more v4l2 ioctls + * Staging: et131x: Cleanup et131x_debug.h defines + * Staging: et131x: fix build failure + * Staging: et131x: remove unused variable in et1310_tx.c + * Staging: usbip: cleanup kerneldoc + * Staging: slicoss: use kzalloc + * Staging: slicoss: use correct type for memory allcations + * Staging: slicoss: use request_firmware + * Staging: add agnx wireless driver + * Staging: agnx: fix build errors due to ssid removal + * Staging: agnx: fix build errors due to rate control API changes + * Staging: agnx: fix build warnings + * Staging: add otus Atheros wireless network driver + * Staging: otus: fix netdev->priv usage + * Staging: otus: fix name clash + * Staging: otus: fix urb callback function type + * Staging: otus: remove dependence on kernel version + * Staging: add rt2860 wireless driver + * Staging: rt2860: disable root hack for reading files + * Staging: rt2860: fix up netdev->priv usage + * Staging: rt2860: use standard bit-reverse function + * Staging: rt2860: Fix minor compiler warnings + * Staging: rt2860: enable WPA_SUPPLICANT support + * Staging: Add ServerEngines benet 10Gb ethernet driver + * Staging: benet: fix netif api breakage + * Staging: benet: fix up netdev->priv change + * Staging: benet: build is broken unless CONFIG_NETPOLL is enabled + * Staging: benet: patch to remove subdirectories + * Staging: benet: fix build errors when CONFIG_NETPOLL is off + * Staging: benet: fix build error. + * Staging: benet: patch to use offsetof() instead of AMAP_BYTE_OFFSET() + * Staging: benet: fix problems reported by checkpatch + * Staging: benet: cleanup a check while posting rx buffers + * Staging: add comedi core + * Staging: comedi: fix up a lot of checkpatch.pl warnings + * Staging: comedi: fix checkpatch.pl errors in comedi_fops.c + * Staging: comedi: fix build error in comedilib.h + * Staging: comedi: add kcomedilib to the tree + * Staging: comedi: set up infrastructure for individual drivers + * Staging: comedi: add local copy of interrupt.h + * Staging: comedi: add pci and usb wrapper header files + * Staging: comedi: comedi driver common function module + * Staging: comedi: add mite comedi pci driver + * Staging: comedi: add usb usbdux driver + * Staging: comedi: add usb usbduxfast driver + * Staging: comedi: add usb dt9812 driver + * Staging: comedi: add comedi_bond driver + * Staging: comedi: add comedi_test driver + * Staging: comedi: add comedi_parport driver + * Staging: comedi: dt9812: fix up a lot of coding style issues + * Staging: comedi: dt9812: remove dt9812.h + * Staging: comedi: dt9812: remove typedefs + * Staging: comedi: dt9812: fix sparse warnings + * Staging: comedi: usbdux: remove kernel version checks + * Staging: comedi: usbdux: code style cleanups + * Staging: comedi: usbdux: remove // comments + * Staging: comedi: usbdux: fix up printk calls + * Staging: comedi: usbdux: remove checkpatch.pl warnings + * Staging: comedi: usbdux: remove typedef + * Staging: comedi: usbdux: remove comedi usb wrappers + * Staging: comedi: usbduxfast: remove comedi usb wrappers + * Staging: comedi: dt9812: remove #ifdef that is not needed + * Staging: comedi: remove usb wrappers + * Staging: comedi: remove PCI wrappers + * Staging: comedi: add icp_multi driver + * Staging: comedi: add me4000 driver + * Staging: comedi: fix checkpatch.pl issues in comedi_bond.c + * Staging: comedi: fix checkpatch.pl issues in comedi_fc.c + * Staging: comedi: remove typedefs from comedi_bond.c + * Staging: comedi: fix sparse issues in comedi_bond.c + * Staging: comedi: fix checkpatch.pl issues in comedi_test.c + * Staging: comedi: fix sparse issues in comedi_test.c + * Staging: comedi: remove typedefs from comedi_test.c + * Staging: comedi: fix comedi_parport.c checkpatch.pl issues. + * Staging: comedi: fix comedi_fc.h checkpatch.pl issues. + * Staging: comedi: fix comedi_pci.h checkpatch.pl issues. + * Staging: comedi: comedi_pci.h: remove unneeded wrapper + * Staging: comedi: comedi_pci.h: remove comedi_pci_enable_no_regions + * Staging: comedi: comedi_pci.h: remove comedi_pci_disable_no_regions + * Staging: comedi: add s626 driver + * Staging: comedi: add rtd520 driver + * Staging: comedi: add me_daq driver + * Staging: comedi: me_daq: fix checkpatch.pl issues + * Staging: comedi: me_daq: remove typedefs + * Staging: comedi: me_daq: fix sparse issues + * Staging: comedi: fix checkpatch.pl warning in interrupt.h + * Staging: comedi: fix build if CONFIG_PROC_FS is not set + * Staging: add asus_oled driver + * Staging: asus_oled: fix build dependancy + * Staging: Add the Meilhaus ME-IDS driver package + * Staging: meilhaus: fix __symbol_get problems + * Staging: add lcd-panel driver + * Staging: panel: major checkpatch cleanup + * Staging: panel: remove ifdefs and code for pre-2.6 kernels + * Staging: panel: remove support for smartcards + * Staging: add Driver for Altera PCI Express Chaining DMA reference design + * Staging: add rtl8187se driver + * Staging: rtl8187se: remove unneeded files + * Staging: rtl8187se: make the built module be the proper name + * Staging: rtl8187se: remove duplicate pci ids + * Staging: me4000: switch to list_for_each*() + * Staging: usbip: switch to list_for_each_entry() + * Staging: add princeton instruments usb camera driver + * Staging: add mimio xi driver + * Staging: add rt2870 wireless driver + * Staging: rt2870: disable root hack for reading files + * Staging: rt2870: fix up netdev->priv usage + * Staging: add frontier tranzport and alphatrack drivers + * Staging: frontier: remove unused alphatrack_sysfs.c file + * Staging: frontier: fix compiler warnings + * Staging: add epl stack + * Staging: epl: run Lindent on all kernel/*.h files + * Staging: epl: run Lindent on all user/*.h files + * Staging: epl: run Lindent on *.h files + * Staging: epl: run Lindent on *.c files + * Staging: epl: hr timers all run in hard irq context now + * Staging: epl: fix netdev->priv b0rkage + * Staging: add android framework + * Staging: android: add binder driver + * Staging: android: binder: Fix gcc warnings about improper format specifiers for size_t in printk + * staging: android: binder: Fix use of euid + * Staging: android: add logging driver + * Staging: android: add ram_console driver + * Staging: android: add timed_gpio driver + * Staging: android: timed_gpio: Rename android_timed_gpio to timed_gpio + * Staging: android: remove dummy android.c driver + * Staging: android: add lowmemorykiller driver + * Staging: android: binder: fix build errors + * staging: __FUNCTION__ is gcc-specific, use __func__ + * V4L/DVB (10176a): Switch remaining clear_user_page users over to + clear_user_highpage + + [ Zhenyu Wang ] + + * agp/intel: add support for G41 chipset + + -- Tim Gardner Sun, 18 Jan 2009 20:22:54 -0700 + +linux (2.6.28-4.11) jaunty; urgency=low + + [ Mario Limonciello ] + + * SAUCE: Enable HDMI audio codec on Studio XPS 1340 + - LP: #309508 + + [ Tim Gardner ] + + * Fix armel d-i FTBSs + + [ Upstream Kernel Changes ] + + * USB: re-enable interface after driver unbinds + + -- Tim Gardner Tue, 13 Jan 2009 16:33:08 -0700 + +linux (2.6.28-4.10) jaunty; urgency=low + + [ Andy Whitcroft ] + + * update kernel bootloader recommends: to prefer grub + - LP: #314004 + * SAUCE: don't use buggy _BCL/_BCM/_BQC for backlight control + - LP: #311716 + * SAUCE: test-suspend -- add the suspend test scripts + - LP: #316419 + + [ Colin Watson ] + + * Enable udebs for armel + + [ Tim Gardner ] + + * SAUCE: Dell laptop digital mic does not work, PCI 1028:0271 + - LP: #309508 + * Enable CIFS_XATTR=y and CONFIG_CIFS_POSIX=y + - LP: #220658 + + -- Tim Gardner Thu, 08 Jan 2009 10:38:22 -0700 + +linux (2.6.28-4.9) jaunty; urgency=low + + [ Tim Gardner ] + + * Restore DM_CRYPT, AES, ECB, and CBC as modules. This fixes + some installer issues with encrypted /home and Private directories. + * Take one more stab at building armel without module or ABI errors. + + -- Tim Gardner Tue, 06 Jan 2009 08:38:23 -0700 + +linux (2.6.28-4.8) jaunty; urgency=low + + * Fix i386/amd64 FTBS by ignoring all module and ABI changes, + not something you would normally do, but I'm sure the ABI + has not changed. This will probably also allow the ARM builds to complete. + + -- Tim Gardner Mon, 05 Jan 2009 14:42:58 -0700 + +linux (2.6.28-4.7) jaunty; urgency=low + + [ Tim Gardner ] + + * Enable CONFIG_ATH5K=m for i386/amd64 + - LP: #306719 + * Build all i386/amd64 AGP/DRM components as modules. + - LP: #312721 + * git commands are now installed outside the default $PATH + Use 'git CMD' instead of 'git-CMD'. + * Build in most PATA/SATA drivers. This should allow most i386/amd64 systems to boot + without an initramfs, though some support work is still required in initramfs-tools + and grub. + - LP: #311730 + + -- Tim Gardner Fri, 02 Jan 2009 07:33:09 -0700 + +linux (2.6.28-4.6) jaunty; urgency=low + + [ Tim Gardner ] + + * Enable CONFIG_X86_E_POWERSAVER=m for i386 generic + - LP: #237405 + * Build i386 AGP drivers as modules + - LP: #312721 + * Build i386 DRM as a module + - LP: #312721 + + [ Upstream Kernel Changes ] + + * drm/i915: Add missing userland definitions for gem init/execbuffer. + - LP: #308387 + + -- Tim Gardner Mon, 29 Dec 2008 09:16:47 -0700 + +linux (2.6.28-4.5) jaunty; urgency=low + + [ Andy Whitcroft ] + + * clean up module dependancy information on package removal/purge + - LP: #300773 + + [ Tim Gardner ] + + * Update iscsitarget to 0.4.17 + * Build in ext{234} + * Build in Crypto modules AES, CBC, ECB + * Build in ACPI AC,BATTERY,BUTTON,FAN,PCI_SLOT,PROCESSOR,SBS,THERMAL,WMI + * Build in AGP intel,via,sis,ali,amd,amd64,efficeon,nvidia,sworks + * Build in ata,dev_dm,dev_loop,dev_md,dev_sd,dev_sr + * Build in BT l2cap,rfcomm,sco + * Reduce CONFIG_LEGACY_PTY_COUNT to 0 + * Build in CDROM_PKTCDVD and CHR_DEV_SG + * Build in CPU_FREQ + GOV_CONSERVATIVE,GOV_ONDEMAND,GOV_POWERSAVE,GOV_USERSPACE,STAT,TABLE + * Build in DM CRYPT,MIRROR,MULTIPATH,SNAPSHOT + * Build in DRM + * Build in HID + * Build in HOTPLUG PCI,PCIE + * Build in I2C + * Build in IEEE1394 OHCI1394 + * Build in INPUT EVDEV + * Build in IPV6 + * Build in MMC + * Build in PACKET + * Enable both IEEE1394 (Firewire) stacks as modules + - LP: #276463 + * Disable SUNRPC_REGISTER_V4 + - LP: #306016 + * Enable dm-raid4-5 + - LP: #309378 + * Build in PPP + * Build in RFKILL + * Build in USB SERIAL + + [ Upstream Kernel Changes ] + + * Rebased to v2.6.28 + + -- Tim Gardner Thu, 18 Dec 2008 21:18:44 -0700 + +linux (2.6.28-3.4) jaunty; urgency=low + + [ Tim Gardner ] + + * Build ecryptfs into the kernel + - LP: #302870 + * Deprecated gnbd + + [ Upstream Kernel Changes ] + + * Rebased to v2.6.28-rc8 + + -- Tim Gardner Wed, 10 Dec 2008 22:45:13 -0700 + +linux (2.6.28-2.3) jaunty; urgency=low + + [ Andy Whitcroft ] + + * update the templates so that we have spaces following the title line + + [ Tim Gardner ] + + * Add upload number to kernel version signature. This has the side effect + of renaming kernel packages back to the original way, e.g., without '-ub' + in the name. + + -- Tim Gardner Thu, 04 Dec 2008 12:18:31 -0700 + +linux (2.6.28-2.2) jaunty; urgency=low + + [ Andy Whitcroft ] + + * Revert "SAUCE: (no-up) version: Implement version_signature proc file." + * SAUCE: (no-up) version: Implement version_signature proc file. + * SAUCE: serial: RS485 ioctl structure uses __u32 include linux/types.h + - LP: #303711 + + [ Tim Gardner ] + + * UBUNTU: Removed CONFIG_DRM_VIA_CHROME9 since it is upstream. + * UBUNTU: Removed ubuntu/via_chrome9 + + [ Upstream Kernel Changes ] + + * Rebased to v2.6.28-rc7 + + -- Tim Gardner Tue, 02 Dec 2008 07:33:32 -0700 + +linux (2.6.28-1.1) jaunty; urgency=low + + [ Amit Kucheria ] + + * SAUCE: make fc transport removal of target configurable + * SAUCE: pm: Config option to disable handling of console during + suspend/resume + * SAUCE: Adds support for COMPAL JHL90 webcam + * Map armel to arm to all editconfigs to work correctly + * Add armel to getabis for completeness sake + * Add -ub to our versioning to allow kerneloops.org to identify us + + [ Andy Whitcroft ] + + * Fix Vcs-Git path for the kernel repository. + - LP: #296915 + + [ Ben Collins ] + + * SAUCE: Lower warning level of some PCI messages + - LP: #159241 + * SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps + * SAUCE: tulip: Let dmfe handle davicom on non-sparc + * SAUCE: tulip: Define ULI PCI ID's + * SAUCE: (no-up) version: Implement version_signature proc file. + * SAUCE: (no-up) connector.h: Add idx/val for drbd + * SAUCE: (no-up) swap: Add notify_swap_entry_free callback for compcache + * SAUCE: drivers: Remove some duplicate device entries in various modules + * SAUCE: (no-up) [AppArmor] merge with upstream subversion r1291 + * SAUCE: (no-up) Enable ubuntu extra subdirectory + * SAUCE: (no-up) ACPI: initramfs DSDT override support + * ubuntu: Add drbd module + * ubuntu: Add iscsitarget module + * ubuntu: Add BOM for iscsitarget + * ubuntu: Add squashfs driver + * SAUCE: (no-up) Check for squashfs superblock in initramfs mounting. + * ubuntu: Add aufs module + * ubuntu: Added atl2 driver + * ubuntu: Added et131x driver + * ubuntu: Add dm-raid4-5 driver + * ubuntu: Add ndiswrapper driver + * ubuntu: Added ram backed compressed swap module (compcache) + * ubuntu: Add misc drivers from hardy lum + * ubuntu: Add heci driver 3.2.0.24 + * ubuntu: Add ov511 and bt-sco drivers + * ubuntu: Add acx, prism2_usb wireless drivers + * ubuntu: Add at76 driver to build + * ubuntu: Add fsam7400 sw kill switch driver + * ubuntu: Added qc-usb driver + * ubuntu: e1000e: Upgraded module to 0.4.1.7 + * ubuntu: Added rfkill drivers + * ubuntu: VIA - Add VIA DRM Chrome9 3D engine + * ubuntu: unionfs: Added v1.4 module from hardy + * ubuntu: Add LIRC driver + * ubuntu: Add GFS driver + * ubuntu: New tlsup driver for toshiba laptops + * SAUCE: (no-up) Export lookup_has for aufs + * SAUCE: (no-up) Modularize vesafb + * ubuntu: Config files + * Disable some modules that need porting to 2.6.28 + * ubuntu: Fixup headers creation to include arch/*/include + * ubuntu/module-check: Ignore comment lines + + [ Chuck Short ] + + * SAUCE: ata: blacklist FUJITSU MHW2160BH PL + + [ cking ] + + * SAUCE: Enable speedstep for sonoma processors. + + [ Colin Ian King ] + + * ubuntu: Add dm-loop + * SAUCE: cx88: Support Leadtek WinFast DTV2000 H version J. + * SAUCE: fix kernel oops in VirtualBox during paravirt patching + * SAUCE: qc-usb: Enable Logitech QuickCam Messenger + * SAUCE: appleir: Enable driver for new MacBook Pro + + [ Colin Watson ] + + * Enable configfs, fuse, jfs, reiserfs, and xfs for armel + * Extend debian/d-i/ modules handling to make armel easier to support + * Create udebs for armel + + [ Fabio M. Di Nitto ] + + * ubuntu: update GFS Cluster File System + + [ Kees Cook ] + + * SAUCE: AppArmor: update to upstream subversion r1302 + + [ Leann Ogasawara ] + + * Add automatic model setting for Samsung Q45 + * Add Dell Dimension 9200 reboot quirk + + [ Mackenzie Morgan ] + + * SAUCE: Add quirk for ASUS Z37E to make sound audible after resume + + [ Matthew Garrett ] + + * SAUCE: hostap: send events on data interface as well as master + interface + + [ Michael Frey (Senior Manager, MID ] + + * SAUCE: Send HCI_RESET for Broadcomm 2046 + + [ Michael Haas ] + + * add proper aufs source tree from 20080922 + * Fix AUFS compilation in vfsub.c + * Add splice-2.6.23.patch from AUFS to export a symbol needed by AUFS + * Add put_filp.patch from AUFS to export a symbol needed by AUFS + * Add deny_write_access.patch from AUFS - export deny_write_access + * Add sec_perm-2.6.24.patch from AUFS - export security_inode_permission + * make sure TMPFS_MAGIC is defined in AUFS Makefile + * SAUCE: Revert aufs changes from AppArmor merge + + [ Mohamed Abbas ] + + * SAUCE: iwlagn -- fix rfkill when on when driver loaded + + [ Phillip Lougher ] + + * SAUCE: r8169: disable TSO by default for RTL8111/8168B chipsets. + + [ Stefan Bader ] + + * SAUCE: (no-up) Export dm_disk function of device-mapper + * SAUCE: Restore VT fonts on switch + * SAUCE: mmc: Increase power_up deleay to fix TI readers + * gfs1: GFS1 can't create more than 4kb file + * uvcvideo: Commit streaming parameters when enabling the video stream. + + [ Tim Gardner ] + + * SAUCE: Add extra headers to linux-libc-dev + * SAUCE: Catch nonsense keycodes and silently ignore + * SAUCE: Added support for HDAPS on various ThinkPads from Lenovo and IBM + * SAUCE: Guest OS does not recognize a lun with non zero target id on + Vmware ESX Server + * SAUCE: (no-up) Take care of orinoco_cs overlap with hostap_cs + * ubuntu: Add GNBD driver + * SAUCE: e1000e: Map NV RAM dynamically only when needed. + * SAUCE: Correctly blacklist Thinkpad r40e in ACPI + * SAUCE: Update Wacom tablet driver to 1.49 + * SAUCE: Fix Wacom tablet 1.49 porting errors + * SAUCE: Enable an e1000e Intel Corporation 82567 Gigabit controller + * SAUCE: Fix Oops in wlan_setup + * SAUCE: ipw2200: change default policy for auto-associate + * Dell Wireless 365 needs BTUSB_RESET quirk. + * ndiswrapper remote buffer overflows on long ESSIDs (CVE 2008-4395) + * Disabled ubuntu/e1000e config + + [ Upstream Kernel Changes ] + + * Revert "[Bluetooth] Eliminate checks for impossible conditions in IRQ + handler" + * Revert "x86, early_ioremap: fix fencepost error" + * mac80211: fix two issues in debugfs + * iwl3945: do not send scan command if channel count zero + + -- Ben Collins Fri, 07 Nov 2008 09:37:42 -0700 + +linux (2.6.27-8.17) intrepid-proposed; urgency=low + + [ John W. Linville ] + + * SAUCE: iwlagn: avoid sleep in softirq context + -LP: #286285 + + [ Tim Gardner ] + + * Dell Wireless 365 needs BTUSB_RESET quirk. + - LP: #293670 + * SAUCE: ALSA: hda: make a STAC_DELL_EQ option (version 2) + - LP: #293271 + + [ Upstream Kernel Changes ] + + * iwlagn: downgrade BUG_ON in interrupt + * Input: atkbd - expand Latitude's force release quirk to other Dells + * fbcon_set_all_vcs: fix kernel crash when switching the rotated consoles + * modules: fix module "notes" kobject leak + * Driver core: Fix cleanup in device_create_vargs(). + * Driver core: Clarify device cleanup. + * ath9k/mac80211: disallow fragmentation in ath9k, report to userspace + * md: Fix rdev_size_store with size == 0 + * xfs: fix remount rw with unrecognized options + * OHCI: Allow broken controllers to auto-stop + * USB: OHCI: fix endless polling behavior + * USB: Fix s3c2410_udc usb speed handling + * USB: EHCI: log a warning if ehci-hcd is not loaded first + * usb gadget: cdc ethernet notification bugfix + * usb: musb_hdrc build fixes + * drm/i915: fix ioremap of a user address for non-root (CVE-2008-3831) + * DVB: au0828: add support for another USB id for Hauppauge HVR950Q + * DVB: sms1xxx: support two new revisions of the Hauppauge WinTV + MiniStick + * security: avoid calling a NULL function pointer in + drivers/video/tvaudio.c + * Linux 2.6.27.3 + -LP: #294152 + + * gpiolib: fix oops in gpio_get_value_cansleep() + * edac cell: fix incorrect edac_mode + * x86 ACPI: fix breakage of resume on 64-bit UP systems with SMP kernel + * sched: fix the wrong mask_len + * USB: cdc-wdm: make module autoload work + * USB: don't rebind drivers after failed resume or reset + * USB: fix memory leak in cdc-acm + * USB: Speedtouch: add pre_reset and post_reset routines + * dm kcopyd: avoid queue shuffle + * dm snapshot: fix primary_pe race + * amd_iommu: fix nasty bug that caused ILLEGAL_DEVICE_TABLE_ENTRY errors + * CIFS: fix saving of resume key before CIFSFindNext + * netfilter: xt_iprange: fix range inversion match + * netfilter: snmp nat leaks memory in case of failure + * netfilter: restore lost ifdef guarding defrag exception + * anon_vma_prepare: properly lock even newly allocated entries + * hvc_console: Fix free_irq in spinlocked section + * ACPI Suspend: Enable ACPI during resume if SCI_EN is not set + * ACPI suspend: Blacklist HP xw4600 Workstation for old code ordering + * ACPI suspend: Always use the 32-bit waking vector + * proc: fix vma display mismatch between /proc/pid/{maps,smaps} + * SCSI: scsi_dh: add Dell product information into rdac device handler + * PCI hotplug: cpqphp: fix kernel NULL pointer dereference + * V4L/DVB (9300): pvrusb2: Fix deadlock problem + * Linux 2.6.27.4 + -LP: #294155 + + -- Tim Gardner Tue, 04 Nov 2008 12:16:07 -0700 + +linux (2.6.27-7.16) intrepid-security; urgency=low + + [ Tim Gardner ] + + * ndiswrapper remote buffer overflows on long ESSIDs (CVE 2008-4395) + - LP: #275860 + + [ Upstream Kernel Changes ] + + * ext[234]: Avoid printk floods in the face of directory corruption + (CVE-2008-3528) + + -- Tim Gardner Mon, 03 Nov 2008 13:34:42 -0700 + +linux (2.6.27-7.15) intrepid-security; urgency=low + + [ Upstream Kernel Changes ] + + * tcp: Restore ordering of TCP options for the sake of inter-operability + - LP: #264019 + + -- Tim Gardner Mon, 27 Oct 2008 19:28:06 -0600 + +linux (2.6.27-7.14) intrepid; urgency=low + + [ Tim Gardner ] + + * Disable ath5k in 2.6.27 + - LP: #288148 + + -- Tim Gardner Thu, 23 Oct 2008 07:40:43 -0600 + +linux (2.6.27-7.13) intrepid; urgency=low + + [ Stefan Bader ] + + * gfs1: GFS1 can't create more than 4kb file + + [ Tim Gardner ] + + * Revert "SAUCE: x86: Reserve FIRST_DEVICE_VECTOR in used_vectors + bitmap.". Use upstream commit to avoid future conflicts. + * Revert "STABLE queue: mac80211: fix two issues in debugfs". + Use upstream commit to avoid future conflicts. + * Revert "x86, early_ioremap: fix fencepost error" + Use upstream commit to avoid future conflicts. + + [ Upstream Kernel Changes ] + + * sched_rt.c: resch needed in rt_rq_enqueue() for the root rt_rq + * x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap. + * mac80211: fix two issues in debugfs + * Fix barrier fail detection in XFS + * tty: Termios locking - sort out real_tty confusions and lock reads + * CIFS: make sure we have the right resume info before calling + CIFSFindNext + * rfkill: update LEDs for all state changes + * libertas: clear current command on card removal + * b43legacy: Fix failure in rate-adjustment mechanism + * x86, early_ioremap: fix fencepost error + * x86: SB450: skip IRQ0 override if it is not routed to INT2 of IOAPIC + * x86: improve UP kernel when CPU-hotplug and SMP is enabled + * sky2: Fix WOL regression + * netdrvr: atl1e: Don't take the mdio_lock in atl1e_probe + * Linux 2.6.27.2 + + [ Amit Kucheria ] + + * Ubuntu: agp: Fix stolen memory counting on G4X. + -LP: 285572 + + [ Scott Remnant ] + + * add MODULE_ALIAS to load ipmi_devintf with ipmi_si + + -- Tim Gardner Sun, 19 Oct 2008 10:06:21 -0600 + +linux (2.6.27-7.12) intrepid; urgency=low + + [ Chuck Short ] + + * xen: Add xen modules to virtual flavours. + + [ Mario Limonciello ] + + * SAUCE: Add back in lost commit for Apple BT Wireless Keyboard + - LP: #162083 + + [ Tim Gardner ] + + * Remove depmod created files from packages. + - LP: #250511 + * Changed default TCP congestion algorithm to 'cubic' (again) + - LP: #278801 + * Update configs for 'disable CONFIG_DYNAMIC_FTRACE' + - LP: #263555 + + [ Upstream Kernel Changes ] + + * x86: register a platform RTC device if PNP doesn't describe it + * disable CONFIG_DYNAMIC_FTRACE due to possible memory corruption on + module unload + + -- Tim Gardner Fri, 17 Oct 2008 11:25:39 -0600 + +linux (2.6.27-7.11) intrepid; urgency=low + + [ Amit Kucheria ] + + * STABLE queue: mac80211: fix two issues in debugfs + - LP: #275227 + * SAUCE: Adds support for COMPAL JHL90 webcam + + [ Ben Collins ] + + * SAUCE: (no-up) x86: Quiet "Kernel alive" messages + - LP: #39985 + * SAUCE: (no-up) Modularize vesafb + * build/config: Enable vesafb module + * build: Switch to vesafb as preferred. + + [ Leann Ogasawara ] + + * Add Dell Dimension 9200 reboot quirk + - LP: #271370 + + [ Michael Haas ] + + * SAUCE: Revert aufs changes from AppArmor merge + + [ Tim Gardner ] + + * fix virtio udeb layout + - LP: #257739 + * Enabled CONFIG_EXT4DEV_FS=m + * Changed default TCP congestion algorithm to 'cubic' + - LP: #278801 + * SAUCE: ipw2200: change default policy for auto-associate + - LP: #264104 + + [ Upstream Kernel Changes ] + + * x86, early_ioremap: fix fencepost error + - LP: #263543 + + -- Tim Gardner Sat, 11 Oct 2008 08:07:42 -0600 + +linux (2.6.27-7.10) intrepid; urgency=low + + [ Alexey Starikovskiy ] + + * SAUCE: ACPI: EC: do transaction from interrupt context + - LP: #277802 + + [ Ben Collins ] + + * build/d-i: Change virtio-modules udeb to prio standard + + [ Colin Ian King ] + + * SAUCE: Blacklist IBM 2656 in serio/i8042 + - LP: #21558 + + [ Henrik Rydberg ] + + * Revert "SAUCE: applesmc: Add MacBookAir" + * SAUCE: [PATCH 1/5] hwmon: applesmc: Specified number of bytes to read + should match actual + * SAUCE: [PATCH 2/5] hwmon: applesmc: Fix the 'wait status failed: c != + 8' problem + * SAUCE: [PATCH 3/5] hwmon: applesmc: Prolong status wait + * SAUCE: [PATCH 4/5] hwmon: applesmc: Allow for variable ALV0 and ALV1 + package length + * SAUCE: [PATCH 5/5] hwmon: applesmc: Add support for Macbook Air + * SAUCE: hwmon: applesmc: Add support for Macbook Pro 4 + * SAUCE: hwmon: applesmc: Add support for Macbook Pro 3 + * SAUCE: hwmon: applesmc: Lighter wait mechanism, drastic improvement + + [ Leann Ogasawara ] + + * Add automatic model setting for Samsung Q45 + - LP: #200210 + + [ Tim Gardner ] + + * SAUCE: Correctly blacklist Thinkpad r40e in ACPI + - LP: #278794 + * SAUCE: Update Wacom tablet driver to 1.49 + - LP: #260675 + * SAUCE: ALPS touchpad for Dell Latitude E6500/E6400 + - LP: #270643 + * SAUCE: Fix Wacom tablet 1.49 porting errors + * SAUCE: Enable an e1000e Intel Corporation 82567 Gigabit controller + * SAUCE: Fix Oops in wlan_setup + - LP: #263309 + + [ Upstream Kernel Changes ] + + * ath9k: fix oops on trying to hold the wrong spinlock + * [Bluetooth] Fix double frees on error paths of btusb and bpa10x drivers + * [Bluetooth] Add reset quirk for new Targus and Belkin dongles + * [Bluetooth] Add reset quirk for A-Link BlueUSB21 dongle + * Revert "ax25: Fix std timer socket destroy handling." + * ax25: Quick fix for making sure unaccepted sockets get destroyed. + * netrom: Fix sock_orphan() use in nr_release + * Revert "V4L/DVB (8904): cx88: add missing unlock_kernel" + * SLOB: fix bogus ksize calculation + * net: only invoke dev->change_rx_flags when device is UP + * tcp: Fix possible double-ack w/ user dma + * net: Fix netdev_run_todo dead-lock + * tcp: Fix tcp_hybla zero congestion window growth with small rho and large cwnd. + * [MIPS] Sibyte: Register PIO PATA device only for Swarm and Litte Sur + * eeepc-laptop: Fix hwmon interface + * hwmon: (it87) Prevent power-off on Shuttle SN68PT + * hwmon: Define sysfs interface for energy consumption register + * hwmon: (adt7473) Fix some bogosity in documentation file + * hwmon: (abituguru3) Enable reading from AUX3 fan on Abit AT8 32X + * hwmon: (abituguru3) Enable DMI probing feature on Abit AT8 32X + * [CPUFREQ] correct broken links and email addresses + * SLOB: fix bogus ksize calculation fix + * Don't allow splice() to files opened with O_APPEND + * Linux 2.6.27 + + -- Tim Gardner Wed, 08 Oct 2008 21:19:34 -0600 + +linux (2.6.27-6.9) intrepid; urgency=low + + [ Kees Cook ] + + * SAUCE: AppArmor: update to upstream subversion r1302 + - LP: #269921 + + [ Stefan Bader ] + + * Update configuration files to be compliant to desktop specs + - LP: #279019 + + [ Tim Gardner ] + + * Add support in e1000e for a couple of ICH10 PCI IDs + * Enable CONFIG_INPUT_PCSPKR=m + - LP: #275453 + + [ Upstream Kernel Changes ] + + * V4L/DVB (8559a): Fix a merge conflict at gspca/sonixb + * V4L/DVB (8789): wm8739: remove wrong kfree + * V4L/DVB (8883): w9968cf: Fix order of usb_alloc_urb validation + * V4L/DVB (8884): em28xx-audio: fix memory leak + * V4L/DVB (8885): cpia2_usb: fix memory leak + * V4L/DVB (8886): ov511: fix memory leak + * V4L/DVB (8887): gspca: fix memory leak + * V4L/DVB (8892): pvrusb2: Handle USB ID 2040:2950 same as 2040:2900 + * V4L/DVB (8904): cx88: add missing unlock_kernel + * V4L/DVB (8905): ov511: fix exposure sysfs attribute bug + * V4L/DVB (8909): gspca: PAC 7302 webcam 093a:262a added. + * hrtimer: migrate pending list on cpu offline + * hrtimer: fix migration of CB_IRQSAFE_NO_SOFTIRQ hrtimers + * hrtimer: mark migration state + * hrtimer: prevent migration of per CPU hrtimers + * [IA64] Put the space for cpu0 per-cpu area into .data section + * powerpc: Fix PCI in Holly device tree + * powerpc: Fix failure to shutdown with CPU hotplug + * mfd: Fix Kconfig accroding to the new gpiolib symbols + * mfd: Fix asic3 compilation + * x86: fix typo in enable_mtrr_cleanup early parameter + * ipsec: Fix pskb_expand_head corruption in xfrm_state_check_space + * iucv: Fix mismerge again. + * ALSA: ASoC: Fix cs4270 error path + * ALSA: hda - Fix model for Dell Inspiron 1525 + * sctp: Fix kernel panic while process protocol violation parameter + * x86: Fix broken LDT access in VMI + * x86, vmi: fix broken LDT access + * tcp: Fix NULL dereference in tcp_4_send_ack() + * ipv6: NULL pointer dereferrence in tcp_v6_send_ack + * XFRM,IPv6: initialize ip6_dst_blackhole_ops.kmem_cachep + * af_key: Free dumping state on socket close + * dm: always allow one page in dm_merge_bvec + * dm: cope with access beyond end of device in dm_merge_bvec + * dm mpath: add missing path switching locking + * MN10300: Fix IRQ handling + * pxa2xx_spi: fix build breakage + * e1000e: write protect ICHx NVM to prevent malicious write/erase + * powerpc: Fix boot hang regression on MPC8544DS + * ASoC: Set correct name for WM8753 rec mixer output + * ALSA: snd-powermac: mixers for PowerMac G4 AGP + * ALSA: snd-powermac: HP detection for 1st iMac G3 SL + * fbcon: fix monochrome color value calculation + * inotify: fix lock ordering wrt do_page_fault's mmap_sem + * braille_console: only register notifiers when the braille console is used + * fix error-path NULL deref in alloc_posix_timer() + * memory hotplug: missing zone->lock in test_pages_isolated() + * mm: tiny-shmem nommu fix + * mm: handle initialising compound pages at orders greater than MAX_ORDER + * e1000e: reset swflag after resetting hardware + * e1000e: do not ever sleep in interrupt context + * e1000e: remove phy read from inside spinlock + * e1000e: drop stats lock + * e1000e: debug contention on NVM SWFLAG + * e1000e: update version from k4 to k6 + * Check mapped ranges on sysfs resource files + * e1000e: Fix incorrect debug warning + * [MIPS] Build fix: Fix irq flags type + * [MIPS] SMTC: Build fix: Fix filename in Makefile + * [MIPS] SMTC: Fix holes in SMTC and FPU affinity support. + * [MIPS] SMTC: Close tiny holes in the SMTC IPI replay system. + * [MIPS] SMTC: Fix SMTC dyntick support. + * [S390] nohz: Fix __udelay. + * [S390] qdio: prevent stack clobber + * Fix init/main.c to use regular printk with '%pF' for initcall fn + * x86 setup: correct segfault in generation of 32-bit reloc kernel + * selinux: Fix an uninitialized variable BUG/panic in selinux_secattr_to_sid() + * rtc: fix kernel panic on second use of SIGIO nofitication + * fbdev: fix recursive notifier and locking when fbdev console is blanked + * orion_spi: fix handling of default transfer speed + * include/linux/stacktrace.h: declare struct task_struct + * cpusets: remove pj from cpuset maintainers + * MAINTAINERS: add mailing list for man-pages + * SubmitChecklist: interfaces changes should CC linux-api@ + * Documentation/HOWTO: info about interface changes should CC linux-api@vger + * dw_dmac: fix copy/paste bug in tasklet + * leds-fsg: change order of initialization and deinitialization + * leds-pca955x: add proper error handling and fix bogus memory handling + * ACPI: Make /proc/acpi/wakeup interface handle PCI devices (again) + * clockevents: check broadcast tick device not the clock events device + * V4L/DVB (8919): cx18: Fix tuner audio input for Compro H900 cards + * V4L/DVB (8926): gspca: Bad fix of leak memory (changeset 43d2ead315b1). + * V4L/DVB (8933): gspca: Disable light frquency for zc3xx cs2102 Kokom. + * V4L/DVB (8935): em28xx-cards: Remove duplicate entry (EM2800_BOARD_KWORLD_USB2800) + * V4L/DVB (8955): bttv: Prevent NULL pointer dereference in radio_open + * V4L/DVB (8957): zr36067: Restore the default pixel format + * V4L/DVB (8958): zr36067: Return proper bytes-per-line value + * V4L/DVB (8960): drivers/media/video/cafe_ccic.c needs mm.h + * V4L/DVB (8961): zr36067: Fix RGBR pixel format + * V4L/DVB (8963): s2255drv field count fix + * V4L/DVB (8967): Use correct XC3028L firmware for AMD ATI TV Wonder 600 + * V4L/DVB (8978): sms1xxx: fix product name for Hauppauge WinTV MiniStick + * V4L/DVB (8979): sms1xxx: Add new USB product ID for Hauppauge WinTV MiniStick + * V4L/DVB (9029): Fix deadlock in demux code + * V4L/DVB (9037): Fix support for Hauppauge Nova-S SE + * V4L/DVB (9043): S5H1420: Fix size of shadow-array to avoid overflow + * V4L/DVB (9053): fix buffer overflow in uvc-video + * V4L/DVB (9075): gspca: Bad check of returned status in i2c_read() spca561. + * V4L/DVB (9080): gspca: Add a delay after writing to the sonixj sensors. + * V4L/DVB (9092): gspca: Bad init values for sonixj ov7660. + * V4L/DVB (9099): em28xx: Add detection for K-WORLD DVB-T 310U + * V4L/DVB (9103): em28xx: HVR-900 B3C0 - fix audio clicking issue + * x86: gart iommu have direct mapping when agp is present too + * ide-cd: temporary tray close fix + * ide-dma: fix ide_build_dmatable() for TRM290 + * IDE: Fix platform device registration in Swarm IDE driver (v2) + * ide-cd: Optiarc DVD RW AD-7200A does play audio + * ide: workaround for bogus gcc warning in ide_sysfs_register_port() + * [MIPS] Fix CMP Kconfig configuration and mark as broken. + * [MIPS] IP27: Fix build errors if CONFIG_MAPPED_KERNEL=y + * x86 ACPI: Blacklist two HP machines with buggy BIOSes + * kgdb, x86: Avoid invoking kgdb_nmicallback twice per NMI + * kgdb: call touch_softlockup_watchdog on resume + * atmel-mci: Initialize BLKR before sending data transfer command + * Marker depmod fix core kernel list + * Linux 2.6.27-rc9 + + -- Tim Gardner Sun, 05 Oct 2008 21:27:49 -0600 + +linux (2.6.27-5.8) intrepid; urgency=low + + [ Amit Kucheria ] + + * Update AUFS-related Kconfig + - LP: #264048 + + [ Michael Haas ] + + * add proper aufs source tree from 20080922 + * Fix AUFS compilation in vfsub.c + * Add splice-2.6.23.patch from AUFS to export a symbol needed by AUFS + * Add put_filp.patch from AUFS to export a symbol needed by AUFS + * apply (modified) lhash.patch from AUFS to export __lookup_hash() + * Add deny_write_access.patch from AUFS - export deny_write_access + * Add sec_perm-2.6.24.patch from AUFS - export security_inode_permission + * make sure TMPFS_MAGIC is defined in AUFS Makefile + + [ Tim Gardner ] + + * Enabled CONFIG_IPWIRELESS + - LP: #274748 + * Enabled CONFIG_E1000E, disabled CONFIG_E1000E_NEW + This takes advantage of the upstream NVM protection fix in + commit 4a7703582836f55a1cbad0e2c1c6ebbee3f9b3a7. + + [ Upstream Kernel Changes ] + + * Revert "[Bluetooth] Eliminate checks for impossible conditions in IRQ + handler" + * [SCSI] qla2xxx: Defer enablement of RISC interrupts until ISP + initialization completes. + * PCI: Fix pcie_aspm=force + * PCI: fix compiler warnings in pci_get_subsys() + * UBIFS: create the name of the background thread in every case + * UBIFS: TNC / GC race fixes + * UBIFS: remove incorrect assert + * UBIFS: fix printk format warnings + * AMD IOMMU: set iommu sunc flag after command queuing + * AMD IOMMU: protect completion wait loop with iommu lock + * sparc64: Fix disappearing PCI devices on e3500. + * x86, oprofile: BUG scheduling while atomic + * ALSA: ASoC: Fix at32-pcm build breakage with PM enabled + * ath9k: connectivity is lost after Group rekeying is done + * wireless: zd1211rw: add device ID fix wifi dongle "trust nw-3100" + * [IA64] Ski simulator doesn't need check_sal_cache_flush + * [IA64] kexec fails on systems with blocks of uncached memory + * ath9k: Fix IRQ nobody cared issue with ath9k + * [Bluetooth] Fix I/O errors on MacBooks with Broadcom chips + * [Bluetooth] Fix wrong URB handling of btusb driver + * [Bluetooth] Fix USB disconnect handling of btusb driver + * sparc64: Fix missing devices due to PCI bridge test in + of_create_pci_dev(). + * [WATCHDOG] ibmasr: remove unnecessary spin_unlock() + * [WATCHDOG] wdt285: fix sparse warnings + * [WATCHDOG] unlocked_ioctl changes + * x86: fix 27-rc crash on vsmp due to paravirt during module load + * sched: fix init_hrtick() section mismatch warning + * clockevents: prevent cpu online to interfere with nohz + * x86: prevent stale state of c1e_mask across CPU offline/online + * clockevents: prevent stale tick_next_period for onlining CPUs + * clockevents: check broadcast device not tick device + * clockevents: prevent mode mismatch on cpu online + * x86: prevent C-states hang on AMD C1E enabled machines + * x86: c1e_idle: don't mark TSC unstable if CPU has invariant TSC + * timers: fix build error in !oneshot case + * ALSA: ASoC: maintainers - update email address for Liam Girdwood + * ibmasr: remove unnecessary spin_unlock() + * smb.h: do not include linux/time.h in userspace + * kernel-doc: allow structs whose members are all private + * kexec: fix segmentation fault in kimage_add_entry + * Documentation/DMA-mapping.txt: update for pci_dma_mapping_error() + changes + * sys_paccept: disable paccept() until API design is resolved + * mm: tiny-shmem fix lock ordering: mmap_sem vs i_mutex + * Documentation/sysctl/kernel.txt: fix softlockup_thresh description + * memcg: check under limit at shrink_usage + * atmel_serial: update the powersave handler to match serial core + * [SCSI] Fix hang with split requests + * USB Storage: Sierra: Non-configurable TRU-Install + * USB Serial: Sierra: Device addition & version rev + * USB: ehci: fix some ehci hangs and crashes + * USB: Fix the Nokia 6300 storage-mode. + * USB: Correct Sierra Wireless USB EVDO Modem Device ID + * USB: fix hcd interrupt disabling + * USB: update of Documentation/usb/anchors.txt + * usb gadget: fix omap_udc DMA regression + * USB: Fixing Nokia 3310c in storage mode + * usb: musb: fix include path + * USB: fix EHCI periodic transfers + * usb-serial: Add Siemens EF81 to PL-2303 hack triggers + * USB: SERIAL CP2101 add device IDs + * USB: unusual_devs addition for RockChip MP3 player + * USB: fsl_usb2_udc: fix VDBG() format string + * usb serial: ti_usb_3410_5052 obviously broken by firmware changes + * USB: ftdi_sio: Add 0x5050/0x0900 USB IDs (Papouch Quido USB 4/4) + * USB: serial: add ZTE CDMA Tech id to option driver + * USB Serial: Sierra: Add MC8785 VID/PID + * USB: drivers/usb/musb/: disable it on SuperH + * usb: ftdi_sio: add support for Domintell devices + * usb: unusual devs patch for Nokia 5310 Music Xpress + * USB: revert recovery from transient errors + * [MIPS] au1000: Fix gpio direction + * [MIPS] Fixe the definition of PTRS_PER_PGD + * x86: prevent stale state of c1e_mask across CPU offline/online, fix + * x86: disable apm on the olpc + * i2c-powermac: Fix section for probe and remove functions + * i2c-dev: Return correct error code on class_create() failure + * i2c: Fix mailing lists in two MAINTAINERS entries + * ath9k: disable MIB interrupts to fix interrupt storm + * 9p: implement proper trans module refcounting and unregistration + * 9p-trans_fd: fix trans_fd::p9_conn_destroy() + * 9p-trans_fd: clean up p9_conn_create() + * 9p-trans_fd: don't do fs segment mangling in p9_fd_poll() + * 9p-trans_fd: fix and clean up module init/exit paths + * 9p: introduce missing kfree + * 9p: use an IS_ERR test rather than a NULL test + * 9p: fix put_data error handling + * netfilter: ip6t_{hbh,dst}: Rejects not-strict mode on rule insertion + * MN10300: Move asm-arm/cnt32_to_63.h to include/linux/ + * MN10300: Make sched_clock() report time since boot + * ALSA: fix locking in snd_pcm_open*() and snd_rawmidi_open*() + * ALSA: remove unneeded power_mutex lock in snd_pcm_drop + * IPoIB: Fix crash when path record fails after path flush + * [XFS] Fix extent list corruption in xfs_iext_irec_compact_full(). + * [XFS] Remove xfs_iext_irec_compact_full() + * kgdb: could not write to the last of valid memory with kgdb + * kgdb, x86, arm, mips, powerpc: ignore user space single stepping + * kgdb, x86_64: gdb serial has BX and DX reversed + * kgdb, x86_64: fix PS CS SS registers in gdb serial + * kgdboc,tty: Fix tty polling search to use name correctly + * ARM: Delete ARM's own cnt32_to_63.h + * m32r: remove the unused NOHIGHMEM option + * m32r: don't offer CONFIG_ISA + * m32r: export empty_zero_page + * m32r: export __ndelay + * m32r/kernel/: cleanups + * [MIPS] au1000: Make sure GPIO value is zero or one + * [MIPS] IP27: Switch to dynamic interrupt routing avoding panic on + error. + * [MIPS] BCM47xx: Fix build error due to missing PCI functions + * [SSB] Initialise dma_mask for SSB_BUSTYPE_SSB devices + * Swarm: Fix crash due to missing initialization + * ide-tape: fix vendor strings + * ide: note that IDE generic may prevent other drivers from attaching + * cdrom: update ioctl documentation + * [SCSI] qlogicpti: fix sg list traversal error in continuation entries + * sata_nv: reinstate nv_hardreset() for non generic controllers + * scsi: fix fall out of sg-chaining patch in qlogicpti + * ALSA: make the CS4270 driver a new-style I2C driver + * ALSA: ASoC: Fix another cs4270 error path + * Fix NULL pointer dereference in proc_sys_compare + * kconfig: fix silentoldconfig + * kconfig: readd lost change count + * mm owner: fix race between swapoff and exit + * Linux 2.6.27-rc8 + * e1000e: write protect ICHx NVM to prevent malicious write/erase + + -- Amit Kucheria Tue, 30 Sep 2008 18:22:35 +0300 + +linux (2.6.27-4.7) intrepid; urgency=low + + [ Ben Collins ] + + * build/abi: Add gfs1 to perm blacklist + * build/abi: Ignored changes in gfs2 symbols + + [ Fabio M. Di Nitto ] + + * Revert "SAUCE: Export gfs2 symbols required for gfs1 kernel module" + * ubuntu: update GFS Cluster File System + + [ Stefan Bader ] + + * SAUCE: x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap. + - LP: #276334 + + [ Tim Gardner ] + + * Revert "Disable e1000e until the NVRAM corruption problem is found." + * Add atl1e and atl2 to Debian installer bits + - LP: #273904 + * SAUCE: e1000e: Map NV RAM dynamically only when needed. + - LP: #263555 + + -- Tim Gardner Fri, 26 Sep 2008 20:51:22 -0600 + +linux (2.6.27-4.6) intrepid; urgency=low + + [ Tim Gardner ] + + * Disable e1000e until the NVRAM corruption problem is found. + - LP: #263555 + + [ Upstream Kernel Changes ] + + * Revert "[Bluetooth] Eliminate checks for impossible conditions in IRQ + handler" + + -- Ben Collins Tue, 23 Sep 2008 09:53:57 -0400 + +linux (2.6.27-4.5) intrepid; urgency=low + + [ Upstream Kernel Changes ] + + * Revert "b43/b43legacy: add RFKILL_STATE_HARD_BLOCKED support" + * udf: Fix lock inversion between iprune_mutex and alloc_mutex (v2) + * udf: Fix error paths in udf_new_inode() + * [SCSI] sd: select CRC_T10DIF only when necessary + * [SCSI] zfcp: Fix request queue locking + * [SCSI] zfcp: Correctly query end flag in gpn_ft response + * [SCSI] zfcp: Simplify ccw notify handler + * [SCSI] zfcp: Fix reference counter for remote ports + * [SCSI] zfcp: channel cannot be detached due to refcount imbalance + * [SCSI] zfcp: Remove duplicated unlikely() macros. + * [SCSI] scsi_dh: make check_sense return ADD_TO_MLQUEUE + * [SCSI] make scsi_check_sense HARDWARE_ERROR return ADD_TO_MLQUEUE on + retry + * [SCSI] fix check of PQ and PDT bits for WLUNs + * pcm037: add rts/cts support for serial port + * i.MX serial: fix init failure + * imx serial: set RXD mux bit on i.MX27 and i.MX31 + * imx serial: fix rts handling for non imx1 based hardware + * mlx4_core: Set RAE and init mtt_sz field in FRMR MPT entries + * udf: add llseek method + * PCI/iommu: blacklist DMAR on Intel G31/G33 chipsets + * PCI: Fix printk warnings in probe.c + * PCI: Fix printk warnings in setup-bus.c + * PCI Hotplug: fakephp: fix deadlock... again + * clockevents: remove WARN_ON which was used to gather information + * ocfs2: Fix a bug in direct IO read. + * arch/x86/kernel/kdebugfs.c: introduce missing kfree + * [IA64] fix compile failure with non modular builds + * [IA64] fix up bte.h + * [IA64] arch/ia64/sn/pci/tioca_provider.c: introduce missing kfree + * PCI: fix pciehp_free_irq() + * [IA64] prevent ia64 from invoking irq handlers on offline CPUs + * ide: Fix pointer arithmetic in hpt3xx driver code (3rd try) + * add deprecated ide-scsi to feature-removal-schedule.txt + * swiotlb: fix back-off path when memory allocation fails + * sparc64: Fix interrupt register calculations on Psycho and Sabre. + * VIDEO_SH_MOBILE_CEU should depend on HAS_DMA + * m68k: Update defconfigs for 2.6.27-rc6 + * sparc32: Fix function signature of of_bus_sbus_get_flags(). + * sched: fix 2.6.27-rc5 couldn't boot on tulsa machine randomly + * sched: fix deadlock in setting scheduler parameter to zero + * KVM: SVM: fix random segfaults with NPT enabled + * KVM: SVM: fix guest global tlb flushes with NPT + * KVM: VMX: Always return old for clear_flush_young() when using EPT + * clocksource, acpi_pm.c: fix check for monotonicity + * [ARM] OMAP: Fix MMC device data + * block: disable sysfs parts of the disk command filter + * ath9k: Assign seq# when mac80211 requests this + * sg: disable interrupts inside sg_copy_buffer + * MN10300: Change the fault handler to check in_atomic() not + in_interrupt() + * [Bluetooth] Fix regression from using default link policy + * netlink: fix overrun in attribute iteration + * x86: fix possible x86_64 and EFI regression + * sparc64: Fix PCI error interrupt registry on PSYCHO. + * sparc: Fix user_regset 'n' field values. + * niu: panic on reset + * PCI: re-add debug prints for unmodified BARs + * [ARM] 5245/1: Fix warning about unused return value in drivers/pcmcia + * [ARM] 5246/1: tosa: add proper clock alias for tc6393xb clock + * [ARM] 5247/1: tosa: SW_EAR_IN support + * [ARM] Fix PCI_DMA_BUS_IS_PHYS for ARM + * ata: duplicate variable sparse warning + * sata_inic162x: enable LED blinking + * [libata] LBA28/LBA48 off-by-one bug in ata.h + * proc: more debugging for "already registered" case + * include/linux/ioport.h: add missing macro argument for devm_release_* + family + * cpuset: avoid changing cpuset's cpus when -errno returned + * cpuset: hotplug documentation fix + * coredump_filter: add description of bit 4 + * bfs: fix Lockdep warning + * mm: ifdef Quicklists in /proc/meminfo + * spi_mpc83xx: fix clockrate calculation for low speed + * spi_mpc83xx: reject invalid transfer sizes + * pxa2xx_spi: chipselect bugfixes + * pxa2xx_spi: dma bugfixes + * mm: mark the correct zone as full when scanning zonelists + * Documentation/ABI: /sys/class/gpio + * MAINTAINERS: fix USB VIDEO CLASS mail list address + * ia64: fix panic during `modprobe -r xpc' + * atmel_lcdfb: disable LCD and DMA engines when suspending + * spi_s3c24xx: fix section warning + * rescan_partitions(): make device capacity errors non-fatal + * memstick: fix MSProHG 8-bit interface mode support + * Add Uwe Kleine-König to .mailmap + * xen: fix for xen guest with mem > 3.7G + * x86/paravirt: Remove duplicate paravirt_pagetable_setup_{start, done}() + * crypto: talitos - Avoid consecutive packets going out with same IV + * slub: fixed uninitialized counter in struct kmem_cache_node + * udp: Fix rcv socket locking + * IB/mlx4: Fix up fast register page list format + * [MIPS] VR41xx: unsigned irq cannot be negative + * x86: completely disable NOPL on 32 bits + * [S390] cio: Fix driver_data handling for ccwgroup devices. + * [S390] cio: fix orb initialization in cio_start_key + * sparc64: Fix OOPS in psycho_pcierr_intr_other(). + * sparc64: Fix SMP bootup with CONFIG_STACK_DEBUG or ftrace. + * RDMA/nes: Fix client side QP destroy + * IPoIB: Fix deadlock on RTNL between bcast join comp and ipoib_stop() + * clockevents: make device shutdown robust + * powerpc: Fix interrupt values for DMA2 in MPC8610 HPCD device tree + * hpplus: fix build regression + * Fix PNP build failure, bugzilla #11276 + * warn: Turn the netdev timeout WARN_ON() into a WARN() + * [XFS] Move memory allocations for log tracing out of the critical path + * [XFS] Fix regression introduced by remount fixup + * [XFS] Prevent direct I/O from mapping extents beyond eof + * [XFS] Fix barrier status change detection. + * [XFS] Prevent lockdep false positives when locking two inodes. + * [XFS] Fix use-after-free with buffers + * [XFS] Don't do I/O beyond eof when unreserving space + * powerpc: Holly board needs dtbImage target + * Fix compile failure with non modular builds + * [ARM] 5249/1: davinci: remove redundant check in davinci_psc_config() + * [ARM] omap: back out 'internal_clock' support + * sctp: set the skb->ip_summed correctly when sending over loopback. + * [ARM] 5255/1: Update jornada ssp to remove build errors/warnings + * sctp: do not enable peer features if we can't do them. + * sctp: Fix oops when INIT-ACK indicates that peer doesn't support AUTH + * bnx2: Promote vector field in bnx2_irq structure from u16 to unsigned + int + * forcedeth: call restore mac addr in nv_shutdown path + * e1000: prevent corruption of EEPROM/NVM + * e100: Use pci_pme_active to clear PME_Status and disable PME# + * md: Don't wait UNINTERRUPTIBLE for other resync to finish + * atstk1000: fix build breakage with BOARD_ATSTK100X_SW2_CUSTOM=y + * avr32: add .gitignore files + * avr32: add generic_find_next_le_bit bit function + * avr32: fix sys_sync_file_range() call convention + * avr32: nmi_enter() without nmi_exit() + * KVM: ia64: 'struct fdesc' build fix + * hwmon: (atxp1) Fix device detection logic + * hwmon: (it87) Fix fan tachometer reading in IT8712F rev 0x7 (I) + * hwmon: (ad7414) Make ad7414_update_device() static + * tmio_mmc: fix compilation with debug enabled + * atmel-mci: debugfs: enable clock before dumping regs + * atmel-mci: Fix memory leak in atmci_regs_show + * atmel-mci: Fix bogus debugfs file size + * atmel-mci: Set MMC_CAP_NEEDS_POLL if no detect_pin + * mmc_block: handle error from mmc_register_driver() + * mmc_test: initialize mmc_test_lock statically + * [MIPS] Fix 64-bit IP checksum code + * [MIPS] SMTC: Clear TIF_FPUBOUND on clone / fork. + * [MIPS] Fix potential latency problem due to non-atomic cpu_wait. + * [MIPS] vmlinux.lds.S: handle .text.* + * MAINTAINERS: Trivial whitespace cleanups + * MAINTAINERS: Various fixes + * Linux 2.6.27-rc7 + + -- Tim Gardner Sun, 21 Sep 2008 21:49:28 -0600 + +linux (2.6.27-3.4) intrepid; urgency=low + + [ Colin Ian King ] + + * SAUCE: fix kernel oops in VirtualBox during paravirt patching + - LP: #246067 + * SAUCE: qc-usb: Enable Logitech QuickCam Messenger + - LP: #209901 + * SAUCE: appleir: Enable driver for new MacBook Pro + - LP: #157919 + + [ Tim Gardner ] + + * Enabled CONFIG_DEBUG_RODATA=y + + [ Upstream Kernel Changes ] + + * Revert "ALSA: hda - Added model selection for iMac 24"" + * Revert "x86: fix HPET regression in 2.6.26 versus 2.6.25, check hpet + against BAR, v3" + * Revert "[ARM] use the new byteorder headers" + * Revert "mac80211: Use IWEVASSOCREQIE instead of IWEVCUSTOM" + * Revert "crypto: camellia - Use kernel-provided bitops, unaligned access + helpers" + * svcrdma: Fix race between svc_rdma_recvfrom thread and the dto_tasklet + * sched, cpuset: rework sched domains and CPU hotplug handling (v4) + * ACPI: Fix now signed module parameter. + * ACPI: Change package length error to warning + * ACPI: Fix now signed module parameter. + * ACPI: Fix typo in "Disable MWAIT via DMI on broken Compal board" + * acpi: add checking for NULL early param + * UBIFS: fix zero-length truncations + * Input: bcm5974 - add maintainer entry + * sh64: re-add the __strnlen_user() prototype + * sh: fix ptrace_64.c:user_disable_single_step() + * PNPACPI: ignore the producer/consumer bit for extended IRQ descriptors + * UBIFS: always read hashed-key nodes under TNC mutex + * UBIFS: allow for racing between GC and TNC + * [CIFS] Fix plaintext authentication + * sparc32: Implement smp_call_function_single(). + * sh: crash kernel resource fix + * sh: fix kexec entry point for crash kernels + * sh: fix platform_resource_setup_memory() section mismatch + * sh: update Migo-R defconfig + * sh: update AP325RXA defconfig + * sh: fix semtimedop syscall + * cifs: fix O_APPEND on directio mounts + * [CIFS] update cifs change log + * [CIFS] Turn off Unicode during session establishment for plaintext + authentication + * ACPI: thinkpad-acpi: wan radio control is not experimental + * sparc: Fix resource flags for PCI children in OF device tree. + * remove blk_register_filter and blk_unregister_filter in gendisk + * ALSA: oxygen: fix distorted output on AK4396-based cards + * ipv6: When we droped a packet, we should return NET_RX_DROP instead of + 0 + * pkt_sched: Fix locking of qdisc_root with qdisc_root_sleeping_lock() + * net: Unbreak userspace usage of linux/mroute.h + * Don't trigger softlockup detector on network fs blocked tasks + * Resource handling: add 'insert_resource_expand_to_fit()' function + * sparc64: setup_valid_addr_bitmap_from_pavail() should be __init + * UBIFS: do not update min_idx_lebs in stafs + * UBIFS: push empty flash hack down + * UBIFS: remove incorrect index space check + * UBIFS: improve statfs reporting + * UBIFS: fix assertion + * UBIFS: add forgotten gc_idx_lebs component + * UBIFS: introduce LEB overhead + * UBIFS: improve statfs reporting even more + * UBIFS: fill f_fsid + * drm/radeon: downgrade debug message from info to debug. + * Remove invalidate_partition call from do_md_stop. + * Fix problem with waiting while holding rcu read lock in md/bitmap.c + * ALSA: hda: Distortion fix for dell_m6_core_init + * ALSA: ASoC: fix pxa2xx-i2s clk_get call + * block: restore original behavior of /proc/partition when there's no + partition + * debugobjects: fix lockdep warning + * avr32: Fix lockup after Java stack underflow in user mode + * avr32: pm_standby low-power ram bug fix + * nfsd: fix compound state allocation error handling + * sunrpc: fix possible overrun on read of /proc/sys/sunrpc/transports + * nfsd: fix buffer overrun decoding NFSv4 acl + * audit: Moved variable declaration to beginning of function + * Fix modules_install on RO nfs-exported trees. + * Remove '#include ' from mm/page_isolation.c + * dabusb_fpga_download(): fix a memory leak + * [MTD] mtdchar.c: Fix regression in MEMGETREGIONINFO ioctl() + * ALSA: hda - Fix ALC663 auto-probe + * ALSA: hda - Add mic-boost controls to ALC662/663 auto configuration + * Un-break printk strings in x86 PCI probing code + * kernel/resource.c: fix new kernel-doc warning + * softlockup: minor cleanup, don't check task->state twice + * fix typo in arch/parisc/hpux/fs.c + * m68k: atari_keyb_init operator precedence fix + * ACPI: Fix typo in "Disable MWAIT via DMI on broken Compal board" + * don't diff generated firmware files + * IDE: compile fix for sff_dma_ops + * IDE: palm_bk3710: fix compile warning for unused variable + * ide: fix hwif_to_node() + * palm_bk3710: improve IDE registration + * ide-disk: remove stale init_idedisk_capacity() documentation + * ide/Kconfig: mark ide-scsi as deprecated + * net/wireless/Kconfig: clarify the description for + CONFIG_WIRELESS_EXT_SYSFS + * iwlwifi: do not use GFP_DMA in iwl_tx_queue_init + * iwlwifi: workaround interrupt handling no some platforms + * iwlwifi: fix apm_stop (wrong bit polarity for FLAG_INIT_DONE) + * iwlwifi: fix 64bit platform firmware loading + * orinoco: Multicast to the specified addresses + * wireless/libertas/if_cs.c: fix memory leaks + * mac80211: Fix debugfs union misuse and pointer corruption + * rt2x00: Compiler warning unmasked by fix of BUILD_BUG_ON + * ath9k: Incorrect key used when group and pairwise ciphers are + different. + * ath9: Fix ath_rx_flush_tid() for IRQs disabled kernel warning message. + * net/xfrm: Use an IS_ERR test rather than a NULL test + * ipv: Re-enable IP when MTU > 68 + * NTFS: update homepage + * mm: make setup_zone_migrate_reserve() aware of overlapping nodes + * VFS: fix dio write returning EIO when try_to_release_page fails + * acer-wmi: remove debugfs entries upon unloading + * mm/bootmem: silence section mismatch warning - + contig_page_data/bootmem_node_data + * MAINTAINERS: add a maintainer for the BCM5974 multitouch driver + * 8250: improve workaround for UARTs that don't re-assert THRE correctly + * mmc: at91_mci: don't use coherent dma buffers + * pid_ns: zap_pid_ns_processes: fix the ->child_reaper changing + * pid_ns: (BUG 11391) change ->child_reaper when init->group_leader exits + * cirrusfb: check_par fixes + * devcgroup: fix race against rmdir() + * mm: show quicklist usage in /proc/meminfo + * mm: size of quicklists shouldn't be proportional to the number of CPUs + * ipc: document the new auto_msgmni proc file + * hp-wmi: update to match current rfkill semantics + * hp-wmi: add proper hotkey support + * tdfxfb: fix SDRAM memory size detection + * tdfxfb: fix frame buffer name overrun + * rtc_time_to_tm: fix signed/unsigned arithmetic + * ibft: fix target info parsing in ibft module + * sysfs: document files in /sys/firmware/sgi_uv/ + * rtc-cmos: wake again from S5 + * pm_qos_requirement might sleep + * drivers/char/random.c: fix a race which can lead to a bogus BUG() + * ipsec: Fix deadlock in xfrm_state management. + * [x86] Fix TSC calibration issues + * tipc: Don't use structure names which easily globally conflict. + * sparc64: Fix IPI call locking. + * [ARM] omap: fix gpio.c build error + * sparc64: Prevent sparc64 from invoking irq handlers on offline CPUs + * powerpc: Fix uninitialised variable in VSX alignment code + * powerpc: Only make kernel text pages of linear mapping executable + * powerpc: Make sure _etext is after all kernel text + * powerpc: Work around gcc's -fno-omit-frame-pointer bug + * powerpc: Fix build error with 64K pages and !hugetlbfs + * powerpc: Fix for getting CPU number in power_save_ppc32_restore() + * UBIFS: amend f_fsid + * net/usb/pegasus: avoid hundreds of diagnostics + * ixgbe: initialize interrupt throttle rate + * pcnet-cs, axnet_cs: add new IDs, remove dup ID with less info + * netxen: Remove workaround for chipset quirk + * Split up PIT part of TSC calibration from native_calibrate_tsc + * iwlwifi: W/A for the TSF correction in IBSS + * iwlwifi: fix hidden ssid discovery in passive channels + * iwlwifi: remove false rxon if rx chain changes + * iwlwifi: fix station mimo power save values + * iwlwifi: fix rx_chain computation + * iwlwifi: fix Tx cmd memory allocation failure handling + * iwlwifi: call apm stop on exit + * iwlwifi: fix STATUS_EXIT_PENDING is not set on pci_remove + * ath9k: Fix TX status reporting + * ath9k: Fix TX control flag use for no ACK and RTS/CTS + * V4L/DVB (8555): au8522: add mechanism to configure IF frequency for vsb + and qam + * V4L/DVB (8556): au0828: add support for Hauppauge Woodbury + * V4L/DVB (8598): au8522: clean up function au8522_set_if + * V4L/DVB (8599): au8522: remove if frequency settings from vsb/qam + modulation tables + * V4L/DVB (8600): au0828: explicitly set 6 MHz IF frequency in + hauppauge_hvr950q_config + * V4L/DVB (8629): v4l2-ioctl: do not try to handle private V4L1 ioctls + * V4L/DVB (8633): ivtv: update ivtv version number + * V4L/DVB (8648): ivtv: improve CC support + * V4L/DVB (8660): gspca: Simplify the scan of URB packets in pac7311. + * V4L/DVB (8661): gspca: Bug in the previous changeset about pac7311. + * V4L/DVB (8663): gspca: Webcam 0c45:6128 added in sonixj. + * V4L/DVB (8664): gspca: The bridge/sensor of the webcam 093a:2621 is a + PAC 7302. + * V4L/DVB (8665): gspca: Fix the 640x480 resolution of the webcam + 093a:2621. + * V4L/DVB (8666): gspca: Bad scanning of frames in pac7311. + * V4L/DVB (8667): gspca: Bad probe of Z-Star/Vimicro webcams with pas106 + sensor. + * V4L/DVB (8668): gspca: Conflict GSPCA / ET61X251 for the webcam + 102c:6251. + * V4L/DVB (8669): gspca: Add white balance control for spca561 rev 012A. + * V4L/DVB (8671): gspca: Remove the unused field 'dev_name' of the device + structure. + * V4L/DVB (8672): gspca: Big rewrite of spca561. + * V4L/DVB (8673): gspca: Bad frame scanning again and bad init in + pac7311. + * V4L/DVB (8674): gspca: Webcam 0c45:612e added in sonixj. + * V4L/DVB (8675): gspca: Pixmap PJPG (Pixart 73xx JPEG) added, generated + by pac7311. + * V4L/DVB (8678): Remove the dead CONFIG_RADIO_MIROPCM20{,_RDS} code + * V4L/DVB (8681): v4l2-ioctl.c: fix warning + * V4L/DVB (8682): V4L: fix return value of register video func + * V4L/DVB (8701): cx18: Add missing lock for when the irq handler + manipulates the queues + * V4L/DVB (8703): gspca: Do controls work for spca561 revision 12a. + * V4L/DVB (8705): gspca: Adjust some control limits in spca561. + * V4L/DVB (8706): Make contrast and brightness work for pac7302. + * V4L/DVB (8707): gspca: Colors, hflip and vflip controls added for + pac7302. + * V4L/DVB (8709): gspca: Fix initialization and controls of sn9x110 - + ov7630. + * V4L/DVB (8710): gspca: Bad color control in sonixj. + * V4L/DVB (8711): gspca: Bad controls and quantization table of pac7311. + * V4L/DVB (8712): gspca: Bad start of sonixj webcams since changeset + a8779025e7e8. + * V4L/DVB (8713): gspca: Bad color control again in sonixj. + * V4L/DVB (8714): gspca: Bad start of sn9c110 and sensor om6802. + * V4L/DVB (8715): gspca: Change the name of some webcam in the gspca doc. + * V4L/DVB (8716): gspca: Bad start of sn9c110 and sensor ov7630. + * V4L/DVB (8717): gspca: Frame buffer too small for small resolutions + (sonixj and t613). + * V4L/DVB (8718): gspca: suspend/resume added. + * V4L/DVB (8719): gspca: Have VIDIOC_QUERYCTRL more compliant to the + spec. + * V4L/DVB (8720): gspca: V4L2_CAP_SENSOR_UPSIDE_DOWN added as a cap for + some webcams. + * V4L/DVB (8722): sms1xxx: fix typo in license header + * V4L/DVB (8726): link tuner before saa7134 + * V4L/DVB (8727): V4L1: make PMS not autoprobe when builtin. + * V4L/DVB (8728): 1-make-pms-not-autoprobe-when-builtin update + * V4L/DVB (8749): Fix error code, when camera is not turned on by sonypi + * V4L/DVB (8750): V4L: check inval in video_register_device_index() + * V4L/DVB (8751): vivi: Fix some issues at vivi register routine + * V4L/DVB (8757): v4l-dvb: fix a bunch of sparse warnings + * V4L/DVB (8769): cx18: Simplify queue flush logic to prevent oops in + cx18_flush_queues() + * V4L/DVB (8778): radio: fix incorrect video_register_device result check + * V4L/DVB (8779): v4l: fix more incorrect video_register_device result + checks + * V4L/DVB (8790): saa7115: call i2c_set_clientdata only when state != + NULL + * V4L/DVB (8803): s5h1409: Enable QAM_AUTO mode + * V4L/DVB (8804): s5h1411: Enable QAM_AUTO mode + * V4L/DVB (8805): Steven Toth email address change + * V4L/DVB (8809): gspca: Revert commit + 9a9335776548d01525141c6e8f0c12e86bbde982 + * V4L/DVB (8810): gspca: Compile error when CONFIG_PM not defined. + * V4L/DVB (8812): gspca: Do pac73xx webcams work. + * V4L/DVB (8813): gspca: Adjust SOF detection for pac73xx. + * V4L/DVB (8814): gspca: Set DISABLED the disabled controls at query + control time. + * V4L/DVB (8815): gspca: Fix problems with disabled controls. + * V4L/DVB (8816): gspca: Set disabled ctrls and fix a register pb with + ovxxxx in sonixb. + * V4L/DVB (8817): gspca: LED and proble changes in sonixb. + * V4L/DVB (8818): gspca: Reinitialize the device on resume. + * V4L/DVB (8819): gspca: Initialize the ov519 at open time and source + cleanup. + * V4L/DVB (8820): gspca: Change initialization and gamma of zc3xx - + pas106. + * V4L/DVB (8822): gspca: Change some subdriver functions for + suspend/resume. + * V4L/DVB (8823): gspca: H and V flips work for ov7670 only in ov519. + * V4L/DVB (8824): gspca: Too much code removed in the suspend/resume + changeset. + * V4L/DVB (8825): gspca: More controls for pac73xx and new webcam + 093a:2624. + * V4L/DVB (8826): gspca: Webcam Labtec 2200 (093a:2626) added in pac7311. + * V4L/DVB (8827): gspca: Stop pac7302 autogain oscillation. + * V4L/DVB (8828): gspca: Set the clock at the end of initialization in + sonixj. + * V4L/DVB (8829): gspca: Have a clean kmalloc-ated buffer for USB + exchanges. + * V4L/DVB (8830): gspca: Move some probe code to the new init function. + * V4L/DVB (8831): gspca: Resolve webcam conflicts between some drivers. + * V4L/DVB (8832): gspca: Bad pixelformat of vc0321 webcams. + * V4L/DVB (8833): gspca: Cleanup the sonixb code. + * V4L/DVB (8834): gspca: Have a bigger buffer for sn9c10x compressed + images. + * V4L/DVB (8835): gspca: Same pixfmt as the sn9c102 driver and raw Bayer + added in sonixb. + * V4L/DVB (8837): dvb: fix I2C adapters name size + * V4L/DVB (8839): dib0700: add comment to identify 35th USB id pair + * V4L/DVB (8840): dib0700: add basic support for Hauppauge Nova-TD-500 + (84xxx) + * V4L/DVB (8842): vivi_release(): fix use-after-free + * V4L/DVB (8843): tda10048_firmware_upload(): fix a memory leak + * V4L/DVB (8844): dabusb_fpga_download(): fix a memory leak + * bnx2x: Accessing un-mapped page + * SELinux: memory leak in security_context_to_sid_core + * x86: add io delay quirk for Presario F700 + * mmap: fix petty bug in anonymous shared mmap offset handling + * x86: Change warning message in TSC calibration. + * PCI: fix pbus_size_mem() resource alignment for CardBus controllers + * [ARM] omap: fix build error in ohci-omap.c + * [ARM] remove unused #include + * ACPI: Make Len Brown the ACPI maintainer again + * fujitsu-laptop: fix regression for P8010 in 2.6.27-rc + * ACPI: Avoid bogus timeout about SMbus check + * acer-wmi: remove debugfs entries upon unloading + * forgotten refcount on sysctl root table + * V4L/DVB (8868): gspca: Support for vga modes with sif sensors in + sonixb. + * V4L/DVB (8869): gspca: Move the Sonix webcams with TAS5110C1B from + sn9c102 to gspca. + * V4L/DVB (8870): gspca: Fix dark room problem with sonixb. + * V4L/DVB (8872): gspca: Bad image format and offset with rev072a of + spca561. + * V4L/DVB (8873): gspca: Bad image offset with rev012a of spca561 and + adjust exposure. + * V4L/DVB (8874): gspca: Adjust hstart for sn9c103/ov7630 and update + usb-id's. + * [ARM] omap: fix virtual vs physical address space confusions + * V4L/DVB (8876): budget: udelay changed to mdelay + * V4L/DVB (8877): b2c2 and bt8xx: udelay to mdelay + * V4L/DVB (8880): PATCH: Fix parents on some webcam drivers + * V4L/DVB (8881): gspca: After 'while (retry--) {...}', retry will be -1 + but not 0. + * powerpc/spufs: Fix multiple get_spu_context() + * powerpc/spufs: Fix race for a free SPU + * Input: bcm5974 - small formatting cleanup + * Input: bcm5974 - improve finger tracking and counting + * Input: bcm5974 - add BTN_TOUCH event for mousedev benefit + * Input: i8042 - make Lenovo 3000 N100 blacklist entry more specific + * sh: resume_kernel fix for kernel oops built with CONFIG_BKL_PREEMPT=y. + * sh64: resume_kernel fix for kernel oops built with + CONFIG_BKL_PREEMPT=y. + * i2c: fix i2c-sh_mobile timing issues + * clockevents: prevent clockevent event_handler ending up handler_noop + * clockevents: prevent endless loop in periodic broadcast handler + * clockevents: enforce reprogram in oneshot setup + * clockevents: prevent multiple init/shutdown + * clockevents: prevent endless loop lockup + * HPET: make minimum reprogramming delta useful + * [MTD] [NAND] tmio_nand: fix base address programming + * Fix conditional export of kvh.h and a.out.h to userspace. + * async_tx: fix the bug in async_tx_run_dependencies + * sched_clock: fix NOHZ interaction + * sched: fix process time monotonicity + * UBIFS: fix division by zero + * UBIFS: make minimum fanout 3 + * [MIPS] Fix data bus error recovery + * [MIPS] Fix WARNING: at kernel/smp.c:290 + * [MIPS] TXx9: Fix txx9_pcode initialization + * [MIPS] TX39xx: Add missing local_flush_icache_range initialization + * [MIPS] Probe initrd header only if explicitly specified + * res_counter: fix off-by-one bug in setting limit + * forcedeth: fix kexec regression + * atmel_lcdfb: fix oops in rmmod when framebuffer fails to register + * tracehook: comment pasto fixes + * drivers/mmc/card/block.c: fix refcount leak in mmc_block_open() + * x86: boot: stub out unimplemented CPU feature words + * x86: add NOPL as a synthetic CPU feature bit + * x86: use X86_FEATURE_NOPL in alternatives + * clockevents: broadcast fixup possible waiters + * x86: HPET fix moronic 32/64bit thinko + * x86: HPET: read back compare register before reading counter + * Fix CONFIG_AC97_BUS dependency + * [ARM] 5241/1: provide ioremap_wc() + * ntp: fix calculation of the next jiffie to trigger RTC sync + * clocksource, acpi_pm.c: use proper read function also in errata mode + * clocksource, acpi_pm.c: check for monotonicity + * x86: delay early cpu initialization until cpuid is done + * x86: move mtrr cpu cap setting early in early_init_xxxx + * sched: arch_reinit_sched_domains() must destroy domains to force + rebuild + * x86, xen: Use native_pte_flags instead of native_pte_val for .pte_flags + * x86: pda_init(): fix memory leak when using CPU hotplug + * x86: cpu_init(): fix memory leak when using CPU hotplug + * powerpc/spufs: Fix possible scheduling of a context to multiple SPEs + * netfilter: nf_conntrack_sip: de-static helper pointers + * netfilter: nf_conntrack_gre: more locking around keymap list + * netfilter: nf_conntrack_gre: nf_ct_gre_keymap_flush() fixlet + * netfilter: nf_conntrack_irc: make sure string is terminated before + calling simple_strtoul + * pkt_sched: Fix qdisc state in net_tx_action() + * powerpc: Fix rare boot build breakage + * ahci, pata_marvell: play nicely together + * sata_mv: add RocketRaid 1720 PCI ID to driver + * ahci: disable PMP for marvell ahcis + * sata_nv: disable hardreset for generic + * libata-sff: kill spurious WARN_ON() in ata_hsm_move() + * pata_sil680: remove duplicate pcim_enable_device + * ahci: RAID mode SATA patch for Intel Ibex Peak DeviceIDs + * [MIPS] IP22: Fix detection of second HPC3 on Challenge S + * xen: fix 2.6.27-rc5 xen balloon driver warnings + * x86: disable static NOPLs on 32 bits + * netns : fix kernel panic in timewait socket destruction + * bridge: don't allow setting hello time to zero + * NFS: Restore missing hunk in NFS mount option parser + * usb: fix null deferences in low level usb serial + * Fix format of MAINTAINERS + * sparc64: Disable timer interrupts in fixup_irqs(). + * [Bluetooth] Fix reference counting during ACL config stage + * [Bluetooth] Enforce correct authentication requirements + * [Bluetooth] Reject L2CAP connections on an insecure ACL link + * [S390] CVE-2008-1514: prevent ptrace padding area read/write in 31-bit + mode + * [S390] cio: Correct cleanup on error. + * [S390] cio: handle ssch() return codes correctly. + * [S390] cio: allow offline processing for disconnected devices + * ipsec: Restore larval states and socket policies in dump + * update Documentation/filesystems/Locking for 2.6.27 changes + * MAINTAINERS: add Atheros maintainer for atlx + * lib: Correct printk %pF to work on all architectures + * x86: fix memmap=exactmap boot argument + * clockevents: remove WARN_ON which was used to gather information + * ipv6: Fix OOPS in ip6_dst_lookup_tail(). + * Linux 2.6.27-rc6 + + -- Ben Collins Tue, 02 Sep 2008 12:45:56 -0400 + +linux (2.6.27-2.3) intrepid; urgency=low + + [ Ben Collins ] + + * build/retag: Make script save .orig of tags for later use + * ubuntu/lirc: Fix device_create call + * build/firmware: Put in-kernel firmware into version specific subdir + - LP: #262115 + * Rebase on linux-2.6 git. + * ABI bump + + [ Herton Ronaldo Krzesinski ] + + * SAUCE: (no-up) Apparmor warning fixes + + [ John Johansen ] + + * SAUCE: (no-up) Proper AppArmor ptrace updates for newer lsm API + + [ Mackenzie Morgan ] + + * SAUCE: Add quirk for ASUS Z37E to make sound audible after resume + - LP: #25896 + + -- Ben Collins Wed, 27 Aug 2008 14:03:05 -0400 + +linux (2.6.27-1.2) intrepid; urgency=low + + [ Amit Kucheria ] + + * SAUCE: make fc transport removal of target configurable + * SAUCE: pm: Config option to disable handling of console during + suspend/resume + + [ Ben Collins ] + + * SAUCE: Lower warning level of some PCI messages + * SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps + * SAUCE: tulip: Let dmfe handle davicom on non-sparc + * SAUCE: tulip: Define ULI PCI ID's + * SAUCE: (no-up) version: Implement version_signature proc file. + * SAUCE: (no-up) connector.h: Add idx/val for drbd + * SAUCE: (no-up) swap: Add notify_swap_entry_free callback for compcache + * SAUCE: drivers: Remove some duplicate device entries in various modules + * SAUCE: (no-up) [AppArmor] merge with upstream subversion r1291 + * SAUCE: apparmor: Update for changes to ptrace lsm hooks + * SAUCE: (no-up) Enable ubuntu extra subdirectory + * SAUCE: applesmc: Add MacBookAir + * SAUCE: (no-up) ACPI: initramfs DSDT override support + * ubuntu: Add drbd module + * ubuntu: Add iscsitarget module + * ubuntu: Add BOM for iscsitarget + * ubuntu: Add squashfs driver + * SAUCE: (no-up) Check for squashfs superblock in initramfs mounting. + * ubuntu: Add aufs module + * ubuntu: Added atl2 driver + * ubuntu: Added et131x driver + * ubuntu: Add dm-raid4-5 driver + * ubuntu: Add ndiswrapper driver + * ubuntu: Added ram backed compressed swap module (compcache) + * ubuntu: Add misc drivers from hardy lum + * ubuntu: Add heci driver 3.2.0.24 + * ubuntu: Add ov511 and bt-sco drivers + * ubuntu: Add acx, prism2_usb wireless drivers + * ubuntu: Add at76 driver to build + * ubuntu: Add fsam7400 sw kill switch driver + * ubuntu: Added qc-usb driver + * ubuntu: e1000e: Upgraded module to 0.4.1.7 + * ubuntu: Added rfkill drivers + * ubuntu: VIA - Add VIA DRM Chrome9 3D engine + * ubuntu: unionfs: Added v1.4 module from hardy + * ubuntu: Add LIRC driver + * ubuntu: Add GFS driver + * ubuntu: New tlsup driver for toshiba laptops + * Update config files + * build/d-i: Remove obsolete dm modules + + [ Chuck Short ] + + * SAUCE: ata: blacklist FUJITSU MHW2160BH PL + + [ Colin Ian King ] + + * ubuntu: Add dm-loop + * SAUCE: Enable speedstep for sonoma processors. + + [ Dennis Noordsij ] + + * SAUCE: Work around ACPI corruption upon suspend on some Dell machines. + + [ Fabio M. Di Nitto ] + + * SAUCE: Export gfs2 symbols required for gfs1 kernel module + + [ Matthew Garrett ] + + * SAUCE: hostap: send events on data interface as well as master + interface + + [ Michael Frey (Senior Manager, MID ] + + * SAUCE: Send HCI_RESET for Broadcomm 2046 + + [ Phillip Lougher ] + + * SAUCE: r8169: disable TSO by default for RTL8111/8168B chipsets. + + [ Stefan Bader ] + + * SAUCE: (no-up) Export dm_disk function of device-mapper + * SAUCE: Restore VT fonts on switch + * SAUCE: mmc: Increase power_up deleay to fix TI readers + + [ Tim Gardner ] + + * SAUCE: Add extra headers to linux-libc-dev + * SAUCE: Catch nonsense keycodes and silently ignore + * SAUCE: Added support for HDAPS on various ThinkPads from Lenovo and IBM + * SAUCE: Guest OS does not recognize a lun with non zero target id on + Vmware ESX Server + * SAUCE: (no-up) Take care of orinoco_cs overlap with hostap_cs + * ubuntu: Add GNBD driver + + -- Ben Collins Sat, 23 Aug 2008 15:48:35 -0400 + +linux (2.6.27-0.0) intrepid; urgency=low + + * Not uploaded, placeholder for new release + + -- Ben Collins Sat, 23 Aug 2008 15:48:35 -0400 + +linux (2.6.26-5.17) intrepid; urgency=low + + [ Ben Collins ] + + * build/abi: Add tosh_smm symbol to blacklist + + -- Ben Collins Fri, 15 Aug 2008 09:29:34 -0400 + +linux (2.6.26-5.16) intrepid; urgency=low + + [ Ben Collins ] + + * Revert "SAUCE: toshiba_acpi: Rewrote most of the proc entry bits." + * Revert "SAUCE: Update toshiba_acpi.c to version 0.19a" + * build/config: Disable in-kernel toshiba driver(s) + * ubuntu/tlsup: New driver for toshiba laptops + * build/config: Enable TLSUP driver + * SAUCE: e1000e: Fix E1000E_ENABLED logic to check for our E1000E_NEW + driver as well + * ubuntu/e1000e: Remove E1000E_ENABLED option in local config + * build/config: Update configs to have E1000E_ENABLED set + * ubuntu/prism2: Remove duplicate device + + [ Fabio M. Di Nitto ] + + * SAUCE: Export gfs2 symbols required for gfs1 kernel module + + [ Stefan Bader ] + + * SAUCE: x86: HPET rework for SB700 + - LP: #255910 + + [ Tim Gardner ] + + * Add GNBD driver + * Enable GNBD driver + * SAUCE: Add GFS driver + * SAUCE: Enable gfs driver configs + * b43: Linksys WMP54G (BCM4306/3) card in a PCI format has an SPROM + coding + + [ Upstream Kernel Changes ] + + * KVM: x86 emulator: emulate clflush + * USB: quirk PLL power down mode + + -- Ben Collins Mon, 11 Aug 2008 13:19:28 -0400 + +linux (2.6.26-5.15) intrepid; urgency=low + + [ Ben Collins ] + + * Revert "SAUCE: Add blacklist support to fix Belkin bluetooth dongle." + - Superceded by upstream changes. + * build/config: New option enabled for uvcvideo + * build/control: Add Vcs-Git meta data to control file + * SAUCE: toshiba_acpi: Rewrote most of the new code + * abi/perm-blacklist: Add emu10k1 driver to blacklist + + [ Upstream Kernel Changes ] + + * pxamci: trivial fix of DMA alignment register bit clearing + * udplite: Protection against coverage value wrap-around + * ipv6: use timer pending + * ipv6: __KERNEL__ ifdef struct ipv6_devconf + * hdlcdrv: Fix CRC calculation. + * quota: fix possible infinite loop in quota code + * isofs: fix minor filesystem corruption + * KVM: VMX: Fix a wrong usage of vmcs_config + * KVM: SVM: fix suspend/resume support + * KVM: mmu_shrink: kvm_mmu_zap_page requires slots_lock to be held + * KVM: VMX: Add ept_sync_context in flush_tlb + * KVM: x86 emulator: Fix HLT instruction + * KVM: MMU: nuke shadowed pgtable pages and ptes on memslot destruction + * KVM: MMU: Fix potential race setting upper shadow ptes on nonpae hosts + * Patch Upstream: x86 ptrace: fix PTRACE_GETFPXREGS error + * rcu: fix rcu_try_flip_waitack_needed() to prevent grace-period stall + * Fix typos from signal_32/64.h merge + * x86 reboot quirks: add Dell Precision WorkStation T5400 + * USB: fix usb serial pm counter decrement for disconnected interfaces + * x86, suspend, acpi: enter Big Real Mode + * markers: fix duplicate modpost entry + * Fix build on COMPAT platforms when CONFIG_EPOLL is disabled + * proc: fix /proc/*/pagemap some more + * cpusets: fix wrong domain attr updates + * x86: fix crash due to missing debugctlmsr on AMD K6-3 + * ide-cd: fix oops when using growisofs + * rtc-at91rm9200: avoid spurious irqs + * vmlinux.lds: move __attribute__((__cold__)) functions back into final + .text section + * ARM: fix fls() for 64-bit arguments + * tcp: Clear probes_out more aggressively in tcp_ack(). + * sparc64: Fix lockdep issues in LDC protocol layer. + * sparc64: Fix cpufreq notifier registry. + * sparc64: Do not define BIO_VMERGE_BOUNDARY. + * iop-adma: fix platform driver hotplug/coldplug + * myri10ge: do not forget to setup the single slice pointers + * myri10ge: do not use mgp->max_intr_slots before loading the firmware + * ALSA: trident - pause s/pdif output + * V4L: cx18: Upgrade to newer firmware & update documentation + * DVB: dib0700: add support for Hauppauge Nova-TD Stick 52009 + * V4L: uvcvideo: Fix a buffer overflow in format descriptor parsing + * V4L: uvcvideo: Use GFP_NOIO when allocating memory during resume + * V4L: uvcvideo: Don't free URB buffers on suspend + * V4L: uvcvideo: Make input device support optional + * V4L: uvcvideo: Add support for Medion Akoya Mini E1210 integrated + webcam + * V4L: saa7134: Copy tuner data earlier to avoid overwriting manual tuner + type + * V4L: cx23885: Bugfix for concurrent use of /dev/video0 and /dev/video1 + * DVB: cx23885: Ensure PAD_CTRL is always reset to a sensible default + * DVB: cx23885: DVB Transport cards using DVB port VIDB/TS1 did not + stream + * DVB: cx23885: Reallocated the sram to avoid concurrent VIDB/C issues + * DVB: cx23885: SRAM changes for the 885 and 887 silicon parts + * x86: fix kernel_physical_mapping_init() for large x86 systems + * eCryptfs: use page_alloc not kmalloc to get a page of memory + * UML - Fix boot crash + * ixgbe: remove device ID for unsupported device + * mpc52xx_psc_spi: fix block transfer + * tmpfs: fix kernel BUG in shmem_delete_inode + * markers: fix markers read barrier for multiple probes + * VFS: increase pseudo-filesystem block size to PAGE_SIZE + * cpufreq acpi: only call _PPC after cpufreq ACPI init funcs got called + already + * b43legacy: Release mutex in error handling code + * ath5k: don't enable MSI, we cannot handle it yet + * Fix off-by-one error in iov_iter_advance() + * Linux 2.6.26.1 + * ftrace: remove unneeded documentation + * romfs_readpage: don't report errors for pages beyond i_size + * netfilter: nf_nat_sip: c= is optional for session + * SCSI: bsg: fix bsg_mutex hang with device removal + * x86: idle process - add checking for NULL early param + * x86: io delay - add checking for NULL early param + * Close race in md_probe + * Kprobe smoke test lockdep warning + * netfilter: xt_time: fix time's time_mt()'s use of do_div() + * linear: correct disk numbering error check + * SCSI: ch: fix ch_remove oops + * NFS: Ensure we zap only the access and acl caches when setting new acls + * jbd: fix race between free buffer and commit transaction + * Input: i8042 - add Intel D845PESV to nopnp list + * Input: i8042 - add Gericom Bellagio to nomux blacklist + * Input: i8042 - add Acer Aspire 1360 to nomux blacklist + * Bluetooth: Signal user-space for HIDP and BNEP socket errors + * Add compat handler for PTRACE_GETSIGINFO + * ALSA: hda - Fix wrong volumes in AD1988 auto-probe mode + * ALSA: hda - Fix DMA position inaccuracy + * ALSA: hda - Add missing Thinkpad Z60m support + * ALSA: emu10k1 - Fix inverted Analog/Digital mixer switch on Audigy2 + * vfs: fix lookup on deleted directory + * Ath5k: fix memory corruption + * Ath5k: kill tasklets on shutdown + * sound: ensure device number is valid in snd_seq_oss_synth_make_info + * Linux 2.6.26.2 + + -- Ben Collins Sun, 03 Aug 2008 13:25:02 -0400 + +linux (2.6.26-5.14) intrepid; urgency=low + + [ Ben Collins ] + + * SAUCE: applesmc: Add MacBookAir + * build: Do not build ddeb unless we are on the buildd + * build: control: Consistency in arch fields. + * SAUCE: Update toshiba_acpi.c to version 0.19a + - LP: #77026 + * build: Added perm blacklist support and per-module support to abi-check + - Blacklist p80211 module from abi checks + * ubuntu/lirc: Get rid of drivers symlink and use real include stuff + + + [ Colin Ian King ] + + * SAUCE: acerhk module - add support for Amilo A1650g keyboard + - LP: #84159 + * SAUCE: rt2x00: Fix OOPS on failed creation of rt2x00lib workqueue + - LP: #249242 + + [ Mario Limonciello ] + + * Add LIRC back in + + [ Tim Gardner ] + + * Makefile race condition can lead to ndiswrapper build failure + - LP: #241547 + * update linux-wlan-ng (prism2_usb) to upstream version 1861 + - LP: #245026 + + [ Upstream Kernel Changes ] + + * Fix typos from signal_32/64.h merge + + -- Ben Collins Fri, 01 Aug 2008 00:05:01 -0400 + +linux (2.6.26-5.13) intrepid; urgency=low + + [ Ben Collins ] + + * build: Make makedumpfile an amd64/i386 only build-dep + * ubuntu/acerhk: Fixup assembly to compile with newer binutils + + -- Ben Collins Sat, 26 Jul 2008 16:41:50 -0400 + +linux (2.6.26-4.12) intrepid; urgency=low + + [ Ben Collins ] + + * e1000e: Upgraded module to 0.4.1.7 upstream. Placed in ubuntu/, + in-kernel driver disabled + * config: Disable e1000e in-kernel, and enable newer driver in ubuntu/ + * rfkill: Update to 1.3 drivers, and move to common location + * ubuntu: Actually link kconfig/kbuild into rfkill subdir + * config: Enable loading dsdt from initramfs + - LP: #246222 + * ubuntu: [compcache] Update to fix crashes in improper BUG() + * build: Create a retag scripts to recover tags from rebases + * build: Updates for dbg pkg + * build: Make sure no empty lines show up in debian/files + * ubuntu: atl1e: Add new driver from 2.6.27-pre-rc1 + - LP: #243894 + * sys_getcwd: Fix some brokeness introduced by AppArmor __d_path + changes + - LP: #251223 + * ubuntu: unionfs: Added v1.4 module from hardy + * build: Add sub-flavour infrastructure, and virtual subflav + + [ Eric Piel ] + + * ACPI: Allow custom DSDT tables to be loaded from initramfs + + [ Kees Cook ] + + * AppArmor: Smack VFS patches + + [ Mario Limonciello ] + + * Work around ACPI corruption upon suspend on some Dell machines. + - LP: #183033 + + [ Tim Gardner ] + + * Export usbhid_modify_dquirk for LBM module bcm5974 + - LP: #250838 + * VIA - Add VIA DRM Chrome9 3D engine + - LP: #251862 + * Define TRUE/FALSE for VIA DRM driver. + + -- Ben Collins Tue, 15 Jul 2008 12:51:39 -0400 + +linux (2.6.26-4.11) intrepid; urgency=low + + [ Ben Collins ] + + * config: Enable bcm5974 driver in all configs + + [ 2.6.26-4.10 ] + + [ Amit Kucheria ] + + * Fix typo in GSPCA Makefile and make it compile + + [ Ben Collins ] + + * ubuntu: Remove UVC driver in favor of in-kernel one (-rc9) + * config: Updates for -rc9 + * ubuntu: Add acx, prism2_usb wireless drivers + * config: Enable prism2_usb and acx drivers. + * ubuntu: Add at76 driver to build + * config: Enable at76_usb driver. + * iscsitarget: Fix prototype for bi_end_io callback. + * acx: Fix section type mismatch warnings + * fsam7400: Add sw kill switch driver + * config: Enable fsam7400 driver + * qc-usb: Added new driver + * config: Enable qc-usb driver + * drbd: Remove built-in connector usage + * drbd: Do not define idx/val for connector here + * connector.h: Add idx/val for drbd + * bcm5974: Added new driver + + [ Kees Cook ] + + * SAUCE: [AppArmor] merge with upstream subversion r1291 + * SAUCE: [AppArmor] fix typo in selinux_inode_link + * SAUCE: [AppArmor] aufs patches + + [ Michael Frey (Senior Manager, MID ] + + * SAUCE: Send HCI_RESET for Broadcomm 2046 + - LP: #241749 + + [ Tim Gardner ] + + * SAUCE: Medion Akoya Mini E1210 + + [ Upstream Kernel Changes ] + + * Revert "BAST: Remove old IDE driver" + * ARM: OMAP: DMA: Don't mark channel active in omap_enable_channel_irq + * ARM: OMAP: Correcting the gpmc prefetch control register address + * debugobjects: fix lockdep warning + * [ARM] 5115/1: pxafb: fix ifdef for command line option handling + * [ARM] 5116/1: pxafb: cleanup and fix order of failure handling + * [ARM] 5109/1: Mark rtc sa1100 driver as wakeup source before + registering it + * [ARM] Export dma_sync_sg_for_device() + * fix cgroup-inflicted breakage in block_dev.c + * [patch for 2.6.26 2/4] vfs: utimensat(): be consistent with utime() for + immutable and append-only files + * [patch for 2.6.26 1/4] vfs: utimensat(): ignore tv_sec if tv_nsec == + UTIME_OMIT or UTIME_NOW + * [patch for 2.6.26 3/4] vfs: utimensat(): fix error checking for + {UTIME_NOW,UTIME_OMIT} case + * [patch for 2.6.26 4/4] vfs: utimensat(): fix write access check for + futimens() + * [patch 1/4] vfs: path_{get,put}() cleanups + * [patch 2/4] fs: make struct file arg to d_path const + * [patch 3/4] vfs: fix ERR_PTR abuse in generic_readlink + * [patch 4/4] flock: remove unused fields from file_lock_operations + * [patch 3/3] vfs: make d_path() consistent across mount operations + * [patch 1/3] vfs: dcache sparse fixes + * [patch 2/3] vfs: dcache cleanups + * udf: Fix regression in UDF anchor block detection + * [SCSI] ses: Fix timeout + * netfilter: ip6table_mangle: don't reroute in LOCAL_IN + * [SCSI] esp: Fix OOPS in esp_reset_cleanup(). + * kernel/audit.c: nlh->nlmsg_type is gotten more than once + * audit: fix kernel-doc parameter notation + * remove useless argument type in audit_filter_user() + * Blackfin arch: fix bug - kernel boot fails when Spinlock and rw-lock + debugging enabled + * Blackfin arch: fix up section mismatch warning + * mac80211: implement EU regulatory domain + * b43: Do not return TX_BUSY from op_tx + * b43legacy: Do not return TX_BUSY from op_tx + * b43: Fix possible MMIO access while device is down + * b43legacy: Fix possible NULL pointer dereference in DMA code + * rt2x00: Fix unbalanced mutex locking + * iwlwifi: improve scanning band selection management + * [SCSI] esp: tidy up target reference counting + * [ARM] 5117/1: pxafb: fix __devinit/exit annotations + * thermal: Create CONFIG_THERMAL_HWMON=n + * ACPI: don't walk tables if ACPI was disabled + * dock: bay: Don't call acpi_walk_namespace() when ACPI is disabled. + * x86: shift bits the right way in native_read_tscp + * x86: section/warning fixes + * V4L/DVB (8004): Fix INPUT dependency at budget-ci + * V4L/DVB (8005): Fix OOPS if frontend is null + * V4L/DVB (8007): cx18/cx25840: the S-Video LUMA input can use all + In1-In8 inputs + * V4L/DVB (8008): cx18: remove duplicate audio and video input enums + * V4L/DVB (8010): em28xx: Properly register extensions for already + attached devices + * V4L/DVB (8011): em28xx: enable DVB for HVR-900 + * V4L/DVB (8012): gl861: sleep a little to avoid I2C errors + * V4L/DVB (8013): gl861: remove useless identify_state + * V4L/DVB (8015): gl861: replace non critical msleep(0) with msleep(1) to + be on the safe side + * V4L/DVB (8017): Ensure em28xx extensions only get run against devs that + support them + * V4L/DVB (8018): Add em2860 chip ID + * V4L/DVB (8020): Fix callbacks functions of saa7134_empress + * V4L/DVB (8022): saa7134: fix race between opening and closing the + device + * V4L/DVB (8026): Avoids an OOPS if dev struct can't be successfully + recovered + * V4L/DVB (8027): saa7134: Avermedia A700: only s-video and composite + input are working + * V4L/DVB (8028): Improve error messages for tda1004x attach + * V4L/DVB (8029): Improve error message at tda1004x_attach + * V4L/DVB (8034): tda18271: fix IF notch frequency handling + * V4L/DVB (8035): tda18271: dont touch EB14 if rf_cal lookup is out of + range + * V4L/DVB (8036): tda18271: toggle rf agc speed mode on TDA18271HD/C2 + only + * V4L/DVB (8037): tda18271: ensure that the thermometer is off during + channel configuration + * V4L/DVB (8039): pxa-camera: fix platform_get_irq() error handling. + * V4L/DVB (8040): soc-camera: remove soc_camera_host_class class + * V4L/DVB (8042): DVB-USB UMT-010 channel scan oops + * V4L/DVB (8043): au0828: add support for additional USB device id's + * V4L/DVB (8044): au8522: tuning optimizations + * V4L/DVB (8048): saa7134: Fix entries for Avermedia A16d and Avermedia + E506 + * V4L/DVB (8061): cx18: only select tuner / frontend modules if + !DVB_FE_CUSTOMISE + * V4L/DVB (8063): cx18: Fix unintended auto configurations in + cx18-av-core + * V4L/DVB (8066): cx18: Fix audio mux input definitions for HVR-1600 Line + In 2 and FM radio + * V4L/DVB (8067): cx18: Fix firmware load for case when digital capture + happens first + * V4L/DVB (8068): cx18: Add I2C slave reset via GPIO upon initialization + * V4L/DVB (8069): cx18: Fix S-Video and Compsite inputs for the Yuan + MPC718 and enable card entry + * V4L/DVB (8071): tda10023: Fix possible kernel oops during + initialisation + * V4L/DVB (8073): av7110: Catch another type of ARM crash + * V4L/DVB (8074): av7110: OSD transfers should not be interrupted + * V4L/DVB (8075): stv0299: Uncorrected block count and bit error rate + fixed + * V4L/DVB (8092): videodev: simplify and fix standard enumeration + * V4L/DVB (8096): au8522: prevent false-positive lock status + * V4L/DVB (8097): xc5000: check device hardware state to determine if + firmware download is needed + * V4L/DVB (8100): V4L/vivi: fix possible memory leak in vivi_fillbuff + * V4L/DVB (8108): Fix open/close race in saa7134 + * s2io: fix documentation about intr_type + * tc35815: Mark carrier-off before starting PHY + * tc35815: Fix receiver hangup on Rx FIFO overflow + * ixgbe: fix EEH recovery during reset on PPC + * igb: fix EEH recovery during reset on PPC + * e1000e: fix EEH recovery during reset on PPC + * pcnet_cs, axnet_cs: clear bogus interrupt before request_irq + * drivers/net/r6040.c: Eliminate double sizeof + * ipg: fix jumbo frame compilation + * ipg: use NULL, not zero, for pointers + * [netdrvr] 3c59x: remove irqs_disabled warning from local_bh_enable + * [netdrvr] netxen: fix netxen_pci_tbl[] breakage + * e100: Do pci_dma_sync after skb_alloc for proper operation on ixp4xx + * e1000: only enable TSO6 via ethtool when using correct hardware + * [netdrvr] Fix IOMMU overflow checking in s2io.c + * qla3xxx: Hold RTNL while calling dev_close() + * Hold RTNL while calling dev_close() + * sata_uli: hardreset is broken + * rt2x00: Fix lock dependency errror + * prism: islpci_eth.c endianness fix + * mac80211: fix an oops in several failure paths in key allocation + * firewire: fw-sbp2: fix parsing of logical unit directories + * kbuild: fix a.out.h export to userspace with O= build. + * Ensure interrupted recovery completed properly (v1 metadata plus + bitmap) + * Don't acknowlege that stripe-expand is complete until it really is. + * Fix error paths if md_probe fails. + * hamradio: remove unused variable + * tcp: calculate tcp_mem based on low memory instead of all memory + * tcp: fix for splice receive when used with software LRO + * af_unix: fix 'poll for write'/connected DGRAM sockets + * netdevice: Fix typo of dev_unicast_add() comment + * pkt_sched: ERR_PTR() ususally encodes an negative errno, not positive. + * pkt_sched: Remove CONFIG_NET_SCH_RR + * include/linux/netdevice.h: don't export MAX_HEADER to userspace + * tcp: /proc/net/tcp rto,ato values not scaled properly (v2) + * netlink: Fix some doc comments in net/netlink/attr.c + * CONNECTOR: add a proc entry to list connectors + * inet fragments: fix race between inet_frag_find and + inet_frag_secret_rebuild + * net/inet_lro: remove setting skb->ip_summed when not LRO-able + * netlabel: Fix a problem when dumping the default IPv6 static labels + * ipv6 route: Convert rt6_device_match() to use RT6_LOOKUP_F_xxx flags. + * sched: fix cpu hotplug + * Fix and clean top .gitignore + * x86: fix cpu hotplug crash + * ptrace GET/SET FPXREGS broken + * Input: add KEY_MEDIA_REPEAT definition + * Input: fix locking in force-feedback core + * [ARM] 5131/1: Annotate platform_secondary_init with trace_hardirqs_off + * ide: fix /proc/ide/ide?/mate reporting + * netfilter: nf_conntrack_tcp: fixing to check the lower bound of valid + ACK + * textsearch: fix Boyer-Moore text search bug + * hostap: don't report useless WDS frames by default + * hostap: fix sparse warnings + * mac80211: don't accept WEP keys other than WEP40 and WEP104 + * V4L/DVB (8145a): USB Video Class driver + * [IA64] Bugfix for system with 32 cpus + * [IA64] export account_system_vtime + * sched: fix divide error when trying to configure rt_period to zero + * x86: fix NODES_SHIFT Kconfig range + * block: Fix the starving writes bug in the anticipatory IO scheduler + * Properly notify block layer of sync writes + * rcu: fix hotplug vs rcu race + * I2C: S3C2410: Check ACK on byte transmission + * I2C: S3C2410: Fixup error codes returned rom a transfer. + * I2C: S3C2410: Add MODULE_ALIAS() for s3c2440 device. + * PCI: Restrict VPD read permission to root + * powerpc/bootwrapper: update for initrd with simpleImage + * i2c: Documentation: fix device matching description + * i2c: Fix bad hint about irqs in i2c.h + * powerpc/legacy_serial: Bail if reg-offset/shift properties are present + * powerpc/mpc5200: Fix lite5200b suspend/resume + * ipv4: fix sysctl documentation of time related values + * net-sched: change tcf_destroy_chain() to clear start of filter list + * net-sched: fix filter destruction in atm/hfsc qdisc destruction + * netlink: Unneeded local variable + * net: Tyop of sk_filter() comment + * netdevice: Fix wrong string handle in kernel command line parsing + * net: fib_rules: fix error code for unsupported families + * dm crypt: use cond_resched + * V4L/DVB (8178): uvc: Fix compilation breakage for the other drivers, if + uvc is selected + * PCI: Limit VPD read/write lengths for Broadcom 5706, 5708, 5709 rev. + * PCI: acpiphp: cleanup notify handler on all root bridges + * drivers/input/ff-core.c needs + * DRM/i915: only use tiled blits on 965+ + * tty: Fix inverted logic in send_break + * x86: fix Intel Mac booting with EFI + * arch/x86/mm/init_64.c: early_memtest(): fix types + * 9p: fix O_APPEND in legacy mode + * slub: Do not use 192 byte sized cache if minimum alignment is 128 byte + * Do not overwrite nr_zones on !NUMA when initialising zlcache_ptr + * [MIPS] IP32: Fix unexpected irq 71 + * [MIPS] IP22: Fix crashes due to wrong L1_CACHE_BYTES + * [MIPS] cevt-txx9: Reset timer counter on initialization + * hrtimer: prevent migration for raising softirq + * svcrpc: fix handling of garbage args + * OHCI: Fix problem if SM501 and another platform driver is selected + * USB: fix cdc-acm resume() + * USB: ehci - fix timer regression + * USB: ohci - record data toggle after unlink + * USB: mass storage: new id for US_SC_CYP_ATACB + * sisusbvga: Fix oops on disconnect. + * USB: New device ID for ftdi_sio driver + * USB: fix interrupt disabling for HCDs with shared interrupt handlers + * USB: don't lose disconnections during suspend + * USB: another option device id + * USB: add a pl2303 device id + * USB: fix Oops on loading ipaq module since 2.6.26 + * USB: adding comment for ipaq forcing number of ports + * [MIPS] Fix bug in atomic_sub_if_positive. + * xen: fix address truncation in pte mfn<->pfn conversion + * sata_sil24: add DID for another adaptec flavor + * ahci: always clear all bits in irq_stat + * libata-sff: improve HSM violation reporting + * sata_mv: safer logic for limit_warnings + * Update maintainers for powerpc + * Christoph has moved + * mm: dirty page accounting vs VM_MIXEDMAP + * rtc: rtc_read_alarm() handles wraparound + * firmware: fix the request_firmware() dummy + * serial: fix serial_match_port() for dynamic major tty-device numbers + * get_user_pages(): fix possible page leak on oom + * rtc-x1205: Fix alarm set + * rtc: fix CMOS time error after writing /proc/acpi/alarm + * pci: VT3336 can't do MSI either + * Miguel Ojeda has moved + * ext3: add missing unlock to error path in ext3_quota_write() + * ext4: add missing unlock to an error path in ext4_quota_write() + * reiserfs: add missing unlock to an error path in reiserfs_quota_write() + * ecryptfs: remove unnecessary mux from ecryptfs_init_ecryptfs_miscdev() + * lib: taint kernel in common report_bug() WARN path. + * gpio: pca953x (i2c) handles max7310 too + * fsl_diu_fb: fix build with CONFIG_PM=y, plus fix some warnings + * Update taskstats-struct document for scaled time accounting + * cciss: fix regression that no device nodes are created if no logical + drives are configured. + * delay accounting: maintainer update + * Doc*/kernel-parameters.txt: fix stale references + * hdaps: add support for various newer Lenovo thinkpads + * mn10300: export certain arch symbols required to build allmodconfig + * mn10300: provide __ucmpdi2() for MN10300 + * Introduce rculist.h + * man-pages is supported + * ntfs: update help text + * add kernel-doc for simple_read_from_buffer and memory_read_from_buffer + * w100fb: do not depend on SHARPSL + * w100fb: add 80 MHz modeline + * MFD maintainer + * cgroups: document the effect of attaching PID 0 to a cgroup + * spi: fix the read path in spidev + * doc: doc maintainers + * security: filesystem capabilities: fix fragile setuid fixup code + * security: filesystem capabilities: fix CAP_SETPCAP handling + * Alpha Linux kernel fails with inconsistent kallsyms data + * cpusets: document proc status cpus and mems allowed lists + * MAINTAINERS: update the email address of Andreas Dilger + * cciss: read config to obtain max outstanding commands per controller + * olpc: sdhci: add quirk for the Marvell CaFe's vdd/powerup issue + * olpc: sdhci: add quirk for the Marvell CaFe's interrupt timeout + * cpumask: introduce new APIs + * mm: switch node meminfo Active & Inactive pages to Kbytes + * Update MAINTAINERS file for the TPM device driver + * devcgroup: fix odd behaviour when writing 'a' to devices.allow + * doc: document the relax_domain_level kernel boot argument + * mmc: don't use DMA on newer ENE controllers + * mempolicy: mask off internal flags for userspace API + * x86 ACPI: normalize segment descriptor register on resume + * x86 ACPI: fix resume from suspend to RAM on uniprocessor x86-64 + * softlockup: print a module list on being stuck + * ide: fix hwif->gendev refcounting + * ide: ide_unregister() warm-plug bugfix + * ide: ide_unregister() locking bugfix + * ahci: give another shot at clearing all bits in irq_stat + * Fix clear_refs_write() use of struct mm_walk + * Move _RET_IP_ and _THIS_IP_ to include/linux/kernel.h + * Fix pagemap_read() use of struct mm_walk + * Linux 2.6.26-rc9 + * Revert "USB: don't explicitly reenable root-hub status interrupts" + * Revert "PCI: Correct last two HP entries in the bfsort whitelist" + * iwlwifi: fix incorrect 5GHz rates reported in monitor mode + * iwlwifi: drop skb silently for Tx request in monitor mode + * libertas: support USB persistence on suspend/resume (resend) + * tcp: net/ipv4/tcp.c needs linux/scatterlist.h + * tcp: fix a size_t < 0 comparison in tcp_read_sock + * bridge: fix use-after-free in br_cleanup_bridges() + * Add missing skb->dev assignment in Frame Relay RX code + * forcedeth: fix lockdep warning on ethtool -s + * ehea: fix might sleep problem + * ehea: add MODULE_DEVICE_TABLE + * ehea: fix race condition + * ehea: Access iph->tot_len with correct endianness + * pasemi_mac: Access iph->tot_len with correct endianness + * ibm_newemac: Fixes kernel crashes when speed of cable connected changes + * ibm_newemac: Fixes entry of short packets + * fs_enet: restore promiscuous and multicast settings in restart() + * can: add sanity checks + * x86: KVM guest: Add memory clobber to hypercalls + * KVM: IOAPIC: Fix level-triggered irq injection hang + * [SCSI] erase invalid data returned by device + * pxamci: fix byte aligned DMA transfers + * vsprintf: split out '%s' handling logic + * vsprintf: split out '%p' handling logic + * vsprintf: add infrastructure support for extended '%p' specifiers + * vsprintf: add support for '%pS' and '%pF' pointer formats + * powerpc: Fix unterminated of_device_id array in legacy_serial.c + * [UML] fix gcc ICEs and unresolved externs + * ocfs2/dlm: Fixes oops in dlm_new_lockres() + * hostap_cs: correct poor NULL checks in suspend/resume routines + * drivers/net/wireless/iwlwifi/iwl-3945.c Fix type issue on 64bit + * mac80211: move netif_carrier_on to after + ieee80211_bss_info_change_notify + * mac80211: Only flush workqueue when last interface was removed + * zd1211rw: add ID for AirTies WUS-201 + * ssb-pcicore: Fix IRQ-vector init on embedded devices + * mac80211: don't report selected IBSS when not found + * crypto: tcrypt - Fix memory leak in test_cipher + * sctp: Mark the tsn as received after all allocations finish + * [S390] protect _PAGE_SPECIAL bit against mprotect + * irda: via-ircc proper dma freeing + * irda: New device ID for nsc-ircc + * irda: Fix netlink error path return value + * [SCSI] mptspi: fix oops in mptspi_dv_renegotiate_work() + * Correct hash flushing from huge_ptep_set_wrprotect() + * ide: add __ide_default_irq() inline helper + * palm_bk3710: fix IDECLK period calculation + * it8213: fix return value in it8213_init_one() + * [MIPS] Atlas, decstation: Fix section mismatches triggered by + defconfigs + * [MIPS] Fix 32bit kernels on R4k with 128 byte cache line size + * NFS: Fix readdir cache invalidation + * SUNRPC: Fix a double-free in rpcbind + * SUNRPC: Fix an rpcbind breakage for the case of IPv6 lookups + * reiserfs: discard prealloc in reiserfs_delete_inode + * Fix broken fix for fsl-diu-db + * RDMA/cxgb3: Fix regression caused by class_device -> device conversion + * ipv6: fix race between ipv6_del_addr and DAD timer + * sctp: Add documentation for sctp sysctl variable + * kernel/printk.c: Made printk_recursion_bug_msg static. + * powerpc: Add missing reference to coherent_dma_mask + * rc80211_pid: Fix fast_start parameter handling + * rt2x00: Disable synchronization during initialization + * zd1211rw: stop beacons on remove_interface + * libertas: fix memory alignment problems on the blackfin + * netfilter: nf_conntrack_tcp: fix endless loop + * netfilter: nf_nat_snmp_basic: fix a range check in NAT for SNMP + * md: ensure all blocks are uptodate or locked when syncing + * sched: fix cpu hotplug + * x86: fix /dev/mem compatibility under PAT + * crypto: chainiv - Invoke completion function + * ocfs2: Fix flags in ocfs2_file_lock + * kernel/kprobes.c: Made kprobe_blacklist static. + * arch/x86/kernel/.gitignore: Added vmlinux.lds to .gitignore file + because it shouldn't be tracked. + * ftrace: Documentation + * Fix PREEMPT_RCU without HOTPLUG_CPU + * sched: fix cpu hotplug, cleanup + * exec: fix stack excutability without PT_GNU_STACK + * slub: Fix use-after-preempt of per-CPU data structure + * Documentation: clarify tcp_{r,w}mem sysctl docs + * ip: sysctl documentation cleanup + * tcp: correct kcalloc usage + * ipv4: fib_trie: Fix lookup error return + * netlabel: netlink_unicast calls kfree_skb on error path by itself + * ipv6: missed namespace context in ipv6_rthdr_rcv + * xfrm: Add a XFRM_STATE_AF_UNSPEC flag to xfrm_usersa_info + * tun: Persistent devices can get stuck in xoff state + * tpm: add Intel TPM TIS device HID + * rapidio: fix device reference counting + * Fix name of Russell King in various comments + * rtc: fix reported IRQ rate for when HPET is enabled + * libata-acpi: filter out DIPM enable + * Added Targa Visionary 1000 IDE adapter to pata_sis.c + * libata-acpi: don't call sleeping function from invalid context + * Fix reference counting race on log buffers + * [SCSI] ipr: Fix HDIO_GET_IDENTITY oops for SATA devices + * IPMI: return correct value from ipmi_write + * x86: fix ldt limit for 64 bit + * [SCSI] fusion: default MSI to disabled for SPI and FC controllers + * [SCSI] bsg: fix oops on remove + * drivers/char/pcmcia/ipwireless/hardware.c fix resource leak + * drivers/isdn/i4l/isdn_common.c fix small resource leak + * fbdev: bugfix for multiprocess defio + * serial8250: sanity check nr_uarts on all paths. + * ov7670: clean up ov7670_read semantics + * rtc-fm3130: fix chip naming + * rtc-pcf8563: add chip id + * OProfile kernel maintainership changes + * frv: fix irqs_disabled() to return an int, not an unsigned long + * cifs: fix inode leak in cifs_get_inode_info_unix + * cifs: fix wksidarr declaration to be big-endian friendly + * cpusets, hotplug, scheduler: fix scheduler domain breakage + * Documentation/HOWTO: correct wrong kernel bugzilla FAQ URL + * devcgroup: always show positive major/minor num + * devcgroup: fix permission check when adding entry to child cgroup + * Linux 2.6.26 + + -- Ben Collins Mon, 14 Jul 2008 13:41:50 -0400 + +linux (2.6.26-3.9) intrepid; urgency=low + + * abi: Add dca and ioatdma to modules.ignore + + [ 2.6.26-3.8 ] + + [ Ben Collins ] + + * ubuntu: Add heci driver 3.2.0.24 + * ubuntu: Add heci to kconfig/kbuild + * config: Enable heci module on all flavours + * dm-bbr: Update to get it to compile with 2.6.26 + * config: Enable dm-bbr + * ubuntu: Add some media drivers + * config: Enable misc media drivers + * udeb: Switch to uvesafb in fb-modules + * abi: Add more modules to ignore (known) + + [ 2.6.26-3.7 ] + + [Amit Kucheria] + + * SAUCE: make fc transport removal of target configurable + - LP: #163075 + * SAUCE: pm: Config option to disable handling of console during + suspend/resume + + [Ben Collins] + + * SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps + * SAUCE: irda: Default to dongle type 9 on IBM hardware + * SAUCE: tulip: Let dmfe handle davicom on non-sparc + * SAUCE: tulip: Define ULI PCI ID's + * SAUCE: version: Implement version_signature proc file. + * build: Cleanup arches + * build: Remove remnants of unused binary-custom infrastructure + * build: Remove disable_d_i (not needed) and cleanup ppa build stuff + * ubuntu: New modules, acer-acpi + * build: Remove -virtual, and rebuild configs + * ubuntu: Add drbd module + * acer-acpi: Fix makefile + * x86/Kconfig: Fix missing quote for ubuntu Kconfig source + * ubuntu: Add iscsitarget module + * ubuntu: Added Amiga FS driver + * ubuntu: Add squashfs driver + * ubuntu: Remove asfs (Amiga FS). Need to be in linux-ports instead + * squashfs: Move headers to real include directory + * build/configs: The Great Config Consistency Check of 2008 + * ubuntu: Move third-party includes to ubuntu/include + * ubuntu: Add aufs module + * ubuntu: Added atl2 driver + * ubuntu: Add dm-radi4-5 driver + * build: Add CONFIG_DEBUG_SECTION_MISMATCH=y to get old style warnings + from build + * ubuntu/Makefile: Fixup dm-raid4-5 and add kludge for kbuild + * squashfs: Fixes for VFS changes + * ubuntu/dm-raid4-5: Fixups for moved/renamed headers/functions in core + md + * ubuntu: Add ndiswrapper driver + * d-i: Update module listings + * build: Disable xd block device (ancient) + * ndiswrapper: Fixup makefile + * d-i: Remove efi-modules. The only module, efivars, is built-in + * build: Remove install-source, obsolete and caused build failure + * Ubuntu-2.6.26-1.3 + * build: linux-doc rules got broken when disabling html side. Fixed now. + * Ubuntu-2.6.26-1.4 + * x86: Update to -rc6 allows CONFIG_PCI_OLPC to work with PCI_GOANY + * d-i: Make virtio-ring optional (it's built-in on i386) + * Ubuntu-2.6.26-1.4 + * Ubuntu-2.6.26-1.5 + * config: Enable DVB devices + * ubuntu/aufs: Make aufs a bool config, since it needs to be built-in + * config: Build aufs into the kernels + * build: Fix arguments passed to link-headers script + * config: Disable early printk + * d-i: Move isofs to storage-core and kill st (scsi tape) from list + * config: Enable non-promiscuous access to /dev/mem + * x86: Add option to disable decompression info messages + * config: Enable no-bz-chatter config options + * build: Re-add linux-source package + * d-i: Re-add socket-modules. Accidentally removed + - LP: #241295 + * Ubuntu-2.6.26-2.6 + * Use makedumpfile to generate a vmcoreinfo file. + * build: Build-Depend on makedumpfile for vmcoreinfo generation + * build: Remove debug print from git-ubuntu-log + * Updated configs for -rc7 + * build: postinst, do not call depmod with -F + * config: Enable rtc-cmos as a built-in driver. + * control: Provide ndiswrapper-modules-1.9 + * build: Generate vmcoreinfo in image build for crashdumps without debug + image + * config: Disable vesafb, since we'll prefer uvesafb + * build: Copy uvesafb module to initrd mod directory + * abi-check: New, more robust script + * config: Enable heap randomization by default + * abi-check: Cleanup output and call with perl (not $SHELL) + * abi: Ignore missing vesafb (known) + * config: Disable pcspkr (in favor of snd-pcsp) + * swap: Add notify_swap_entry_free callback for compcache + * compcache: Added ram backed compressed swap module + * ubuntu: Enable kbuild and kconfig for compcache + * config: Enable compcache and tlsf allocator as modules + * config: Updated for -rc8. Disables XEN on i386 + * config: Switch i386-server to 64G, enable PAE, 64-bit res, and XEN + * ubuntu: Add misc drivers from hardy lum + * ubuntu: Enable build of misc/ subdir + * config: Enable misc drivers + * aufs: Fix warning about single non-string-literal arg to printf style + function + * drivers: Remove some duplicate device entries in various modules + * config: Disable some duplicate drivers + * keyspan: Remove duplicate device ID's + * check-aliases: Cleanup output, and fix rolling checks + * ubuntu: Disable dm-bbr for now + * dm-bbr: First cut at forward portiong. Still needs work. + * ubuntu: Disable dm-bbr in kbuild/kconfig + + [Chuck Short] + + * SAUCE: ata: blacklist FUJITSU MHW2160BH PL + - LP: #175834 + * SAUCE: [USB]: add ASUS LCM to the blacklist + + [Colin Ian King] + + * SAUCE: airprime.c supports more devices + - LP: #208250 + * SAUCE: Enable speedstep for sonoma processors. + - LP: #132271 + * Add dm-loop + * Add dm-loop BOM + + [Kyle McMartin] + + * SAUCE: fix orinoco_cs oops + + [Mario Limonciello] + + * SAUCE: Enable Reset and SCO workaround on Dell 410 BT adapter + + [Matthew Garrett] + + * SAUCE: hostap: send events on data interface as well as master + interface + + [Phillip Lougher] + + * SAUCE: r8169: disable TSO by default for RTL8111/8168B chipsets. + + [Stefan Bader] + + * SAUCE: Export dm_disk function of device-mapper + * SAUCE: Restore VT fonts on switch + * SAUCE: Always use SCO protocol (disable eSCO support) Bug: #39414 + * SAUCE: mmc: Increase power_up deleay to fix TI readers OriginalAuthor: + Pascal Terjan Bug: #137686 + * SAUCE: Add blacklist support to fix Belkin bluetooth dongle. Bug: + #140511 + * SAUCE: Lower warning level of pci resource allocation messages. Bug: + 159241 + * SAUCE: Lower message level for PCI memory and I/O allocation. + - LP: #159241 + * Modify log generation to catch bug numbers when adding with git-am. + + [Tim Gardner] + + * Added the debian directory. Ignore: yes + * Add support for UBUNTUINCLUDE Ignore: yes + * LUM headers go in /usr/src Ignore: yes + * First pass at 2.6.25 configs Ignore: yes + * i386 -generic builds. Ignore: yes + * SAUCE: Increase CONFIG_IDE_MAX_HWIFS to 8 (from 4) + * SAUCE: Add extra headers to linux-libc-dev OriginalAuthor: Soren Hansen + OriginalLocation: + https://lists.ubuntu.com/archives/kernel-team/2007-November/001891.html + * Set CONFIG_DEVKMEM=n Ignore: yes + * Enabled ALSA and CGROUPS for i386 Ignore: yes + * Enabled amd64 configs. Ignore: yes + * CONFIG_STANDALONE=n Ignore: yes + * CONFIG_BLK_DEV_4DRIVES=n for i386 Ignore: yes + * CONFIG: CONFIG_DEFAULT_RELATIME=y for all flavours. Ignore: yes + * Set CONFIG_EDD_OFF=y Ignore: yes + * SAUCE: Blacklist Bluetooth Dell Wireless 370 for SCO MTU + OriginalAuthor: Mario Limonciello Bug: + #209715 + * SAUCE: Catch nonsense keycodes and silently ignore + * SAUCE: frame buffer regression - screen blank except for blinking + cursor after fbcon vtswitch OriginalAuthor: Matthew Garrett + Bug: #201591 + * SAUCE: Added support for HDAPS on various ThinkPads from Lenovo and IBM + OriginalAuthor: Klaus S. Madsen + OriginalAuthor: Chuck Short + * SAUCE: Guest OS does not recognize a lun with non zero target id on + Vmware ESX Server + * SAUCE: orinoco_cs.ko missing + * Set CONFIG_FB_VESA=m for i386/amd64 Ignore: yes + * Set CONFIG_PM_DISABLE_CONSOLE=y for all flavours Ignore: yes + * Thorough review of amd64 -generic config Ignore: yes + * Build PPA packages for Hardy until the Intrepid archive is opened. + * Deleted obsolete flavours Ignore: yes + * Don't build docs for PPA Ignore: yes + * Build all standard packages in PPA. Ignore: yes + * Remove duplicate USB ids + * SAUCE: DVB-USB UMT-010 driver oops on install Bug: #115284 + * Update configs after rebase to 2.6.26-rc1 Ignore: yes + * Update configs after rebase Ignore: yes + * Disable V4L until the build issues get ironed out. Ignore: yes + * Update configs after rebase. Ignore: yes + * Another device enable pass Ignore: yes + * Update configs after merge. Ignore: yes + * SAUCE: fn key doesn't work in hardy with macbook pro fourth generation + (4,1) + - LP: #207127 + * Enabled CONFIG_CIFS_DFS_UPCALL=y and CONFIG_CIFS_UPCALL=y + - LP: #236830 + + [Upstream Kernel Changes] + + * Revert "[WATCHDOG] hpwdt: Add CFLAGS to get driver working" + * mac80211: detect driver tx bugs + * hwmon: (lm85) Fix function RANGE_TO_REG() + * hwmon: (adt7473) Initialize max_duty_at_overheat before use + * hwmon: Update the sysfs interface documentation + * hwmon: (abituguru3) Identify Abit AW8D board as such + * hwmon: (w83791d) new maintainer + * hwmon: (abituguru3) update driver detection + * hwmon: (lm75) sensor reading bugfix + * ipv6: Remove options header when setsockopt's optlen is 0 + * ipv6: Drop packets for loopback address from outside of the box. + * sched: rt: dont stop the period timer when there are tasks wanting to + run + * sched: fix wait_for_completion_timeout() spurious failure under heavy + load + * x86: fix NULL pointer deref in __switch_to + * xen: Use wmb instead of rmb in xen_evtchn_do_upcall(). + * xen: mask unwanted pte bits in __supported_pte_mask + * xen: don't drop NX bit + * sched: refactor wait_for_completion_timeout() + * Ext4: Fix online resize block group descriptor corruption + * [IA64] SN2: security hole in sn2_ptc_proc_write + * alpha: fix module load failures on smp (bug #10926) + * alpha: link failure fix + * alpha: fix compile failures with gcc-4.3 (bug #10438) + * alpha: resurrect Cypress IDE quirk + * pppoe: warning fix + * sctp: Make sure N * sizeof(union sctp_addr) does not overflow. + * netns: Don't receive new packets in a dead network namespace. + * Add return value to reserve_bootmem_node() + * Slab: Fix memory leak in fallback_alloc() + * Fix performance regression on lmbench select benchmark + * ALSA: aw2 - Fix Oops at initialization + * ALSA: sb - Fix wrong assertions + * futexes: fix fault handling in futex_lock_pi + * IB/mthca: Clear ICM pages before handing to FW + * tty_driver: Update required method documentation + * removed unused var real_tty on n_tty_ioctl() + * Fix ZERO_PAGE breakage with vmware + * mm: fix race in COW logic + * NFS: Reduce the NFS mount code stack usage. + * NFS: Fix filehandle size comparisons in the mount code + * NFS: nfs_updatepage(): don't mark page as dirty if an error occurred + * alpha: fix compile error in arch/alpha/mm/init.c + * KVM: Fix race between timer migration and vcpu migration + * KVM: close timer injection race window in __vcpu_run + * KVM: MMU: Fix rmap_write_protect() hugepage iteration bug + * KVM: MMU: large page update_pte issue with non-PAE 32-bit guests + (resend) + * KVM: MMU: Fix oops on guest userspace access to guest pagetable + * KVM: ioapic: fix lost interrupt when changing a device's irq + * KVM: VMX: Fix host msr corruption with preemption enabled + * [GFS2] BUG: unable to handle kernel paging request at ffff81002690e000 + * xen: remove support for non-PAE 32-bit + * kgdb: documentation update - remove kgdboe + * kgdb: sparse fix + * [IA64] Fix boot failure on ia64/sn2 + * [IA64] Handle count==0 in sn2_ptc_proc_write() + * [IA64] Eliminate NULL test after alloc_bootmem in iosapic_alloc_rte() + * [GFS2] fix gfs2 block allocation (cleaned up) + * x86: Add structs and functions for paravirt clocksource + * x86: Make xen use the paravirt clocksource structs and functions + * KVM: Make kvm host use the paravirt clocksource structs + * x86: KVM guest: Use the paravirt clocksource structs and functions + * KVM: Remove now unused structs from kvm_para.h + * enable bus mastering on i915 at resume time + * Linux 2.6.26-rc8 + * # Ubuntu external driver commit. + * # Ubuntu commit template. + + -- Ben Collins Sat, 21 Jun 2008 09:05:15 -0400 + +linux (2.6.26-2.6) intrepid; urgency=low + + [Ben Collins] + + * Revert "SAUCE: Export symbols for aufs (in lum) (not needed) + * config: Enable DVB devices + * ubuntu/aufs: Make aufs a bool config, since it needs to be built-in + * config: Build aufs into the kernels + * build: Fix arguments passed to link-headers script + * config: Disable early printk + * d-i: Move isofs to storage-core and kill st (scsi tape) from list + * config: Enable non-promiscuous access to /dev/mem + * x86: Add option to disable decompression info messages + * config: Enable no-bz-chatter config options + * build: Re-add linux-source package + * d-i: Re-add socket-modules. Accidentally removed + - LP: #241295 + + [Colin Ian King] + + * Add dm-loop + + [Tim Gardner] + + * Revert "SAUCE: USB bluetooth device 0x0e5e:0x6622 floods errors to + syslog (merged upstream) + + -- Ben Collins Mon, 16 Jun 2008 10:56:01 -0400 + +linux (2.6.26-1.5) intrepid; urgency=low + + * d-i: Make virtio-ring optional (it's built-in on i386) + * Rebased on 2.6.26-rc6 + + [Ubuntu-2.6.26-1.4 Changes below] + + * build: linux-doc rules got broken when disabling html side. Fixed now. + + [Ubuntu-2.6.26-1.3 Changes below] + + * build: Remove install-source, obsolete and caused build failure + + [Ubuntu-2.6.26-1.2 Changes below] + + * Remove efi-modules from d-i module list (efivars is built-in). Caused a + build failure. + * Patch to arch/x86/xen/time.c to remove __divdi3 usage (build failure on + i386). + + [Ubuntu-2.6.26-1.1 Changes below] + + [Amit Kucheria] + + * SAUCE: make fc transport removal of target configurable + * SAUCE: Add AGP support for Radeon Mobility 9000 chipset + * SAUCE: pm: Config option to disable handling of console during + suspend/resume + + [Ben Collins] + + * SAUCE: input/mouse/alps: Do not call psmouse_reset() for alps + * SAUCE: irda: Default to dongle type 9 on IBM hardware + * SAUCE: tulip: Let dmfe handle davicom on non-sparc + * SAUCE: tulip: Define ULI PCI ID's + * SAUCE: version: Implement version_signature proc file. + * build: Remove remnants of unused binary-custom infrastructure + * mmc_block: Fix bad allocation on 64-bit (zero len array) + * ubuntu: New modules, acer-acpi + * build: Remove -virtual, and rebuild configs + * ubuntu: Add drbd module + * ubuntu: Add iscsitarget module + * ubuntu: Add squashfs driver + * build/configs: The Great Config Consistency Check of 2008 + * ubuntu: Add aufs module + * ubuntu: Added atl2 driver + * ubuntu: Add dm-radi4-5 driver + * build: Add CONFIG_DEBUG_SECTION_MISMATCH=y to get old style warnings + from build + * squashfs: Fixes for VFS changes + * ubuntu/dm-raid4-5: Fixups for moved/renamed headers/functions in core + md + * ubuntu: Add ndiswrapper driver + * d-i: Update module listings + + [Chuck Short] + + * SAUCE: ata: blacklist FUJITSU MHW2160BH PL + * SAUCE: [USB]: add ASUS LCM to the blacklist + + [Colin Ian King] + + * SAUCE: Enable speedstep for sonoma processors. + * SAUCE: airprime.c supports more devices + + [Kyle McMartin] + + * SAUCE: fix orinoco_cs oops + + [Mario Limonciello] + + * SAUCE: Enable Reset and SCO workaround on Dell 410 BT adapter + + [Matthew Garrett] + + * SAUCE: hostap: send events on data interface as well as master + interface + + [Phillip Lougher] + + * SAUCE: r8169: disable TSO by default for RTL8111/8168B chipsets. + + [Stefan Bader] + + * SAUCE: Export dm_disk function of device-mapper + * SAUCE: Restore VT fonts on switch + * SAUCE: Always use SCO protocol (disable eSCO support) Bug: #39414 + * SAUCE: mmc: Increase power_up deleay to fix TI readers + * SAUCE: Add blacklist support to fix Belkin bluetooth dongle. + * SAUCE: Lower warning level of pci resource allocation messages. + * SAUCE: Lower message level for PCI memory and I/O allocation. + - LP: #159241 + * Modify log generation to catch bug numbers when adding with git-am. + + [Tim Gardner] + + * SAUCE: hdaps module does not load on Thinkpad T61P + * SAUCE: Add extra headers to linux-libc-dev + * SAUCE: Export symbols for aufs (in lum). + * SAUCE: USB bluetooth device 0x0e5e:0x6622 floods errors to syslog + * SAUCE: Blacklist Bluetooth Dell Wireless 370 for SCO MTU + * SAUCE: Catch nonsense keycodes and silently ignore + * SAUCE: frame buffer regression - screen blank except for blinking + cursor after fbcon vtswitch + * SAUCE: Added support for HDAPS on various ThinkPads from Lenovo and IBM + * SAUCE: Guest OS does not recognize a lun with non zero target id on + Vmware ESX Server + * SAUCE: Modualrize vesafb + * SAUCE: DVB-USB UMT-010 driver oops on install + * SAUCE: fn key doesn't work in hardy with macbook pro fourth generation + (4,1) + - LP: #207127 + + -- Ben Collins Wed, 11 Jun 2008 05:28:35 -0400 --- linux-3.2.0.orig/debian.master/control +++ linux-3.2.0/debian.master/control @@ -0,0 +1,625 @@ +Source: linux +Section: devel +Priority: optional +Maintainer: Ubuntu Kernel Team +Standards-Version: 3.8.4.0 +Build-Depends: debhelper (>= 5), cpio, module-init-tools, kernel-wedge (>= 2.24ubuntu1), makedumpfile [amd64 i386], device-tree-compiler [powerpc], libelf-dev, libnewt-dev, binutils-dev, rsync, libdw-dev, dpkg (>= 1.16.0~ubuntu4), util-linux +Build-Depends-Indep: xmlto, docbook-utils, ghostscript, transfig, bzip2, sharutils, asciidoc +Build-Conflicts: findutils (= 4.4.1-1ubuntu1) +Vcs-Git: http://kernel.ubuntu.com/git-repos/ubuntu/ubuntu-precise.git + +Package: linux-source-3.2.0 +Architecture: all +Section: devel +Priority: optional +Provides: linux-source, linux-source-3 +Depends: ${misc:Depends}, binutils, bzip2, coreutils | fileutils (>= 4.0) +Recommends: libc-dev, gcc, make +Suggests: libncurses-dev | ncurses-dev, kernel-package, libqt3-dev +Description: Linux kernel source for version 3.2.0 with Ubuntu patches + This package provides the source code for the Linux kernel version + 3.2.0. + . + This package is mainly meant for other packages to use, in order to build + custom flavours. + . + If you wish to use this package to create a custom Linux kernel, then it + is suggested that you investigate the package kernel-package, which has + been designed to ease the task of creating kernel image packages. + . + If you are simply trying to build third-party modules for your kernel, + you do not want this package. Install the appropriate linux-headers + package instead. + +Package: linux-doc +Architecture: all +Section: doc +Priority: optional +Depends: ${misc:Depends} +Conflicts: linux-doc-3 +Replaces: linux-doc-3 +Description: Linux kernel specific documentation for version 3.2.0 + This package provides the various documents in the 3.2.0 kernel + Documentation/ subdirectory. These document kernel subsystems, APIs, device + drivers, and so on. See + /usr/share/doc/linux-doc/00-INDEX for a list of what is + contained in each file. + +Package: linux-tools-common +Architecture: all +Section: kernel +Priority: optional +Depends: ${misc:Depends} +Replaces: linux-tools (<= 2.6.32-16.25) +Description: Linux kernel version specific tools for version 3.2.0 + This package provides the architecture independent parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version PGKVER. + +Package: linux-headers-3.2.0-26 +Architecture: all +Section: devel +Priority: optional +Depends: ${misc:Depends}, coreutils | fileutils (>= 4.0) +Provides: linux-headers, linux-headers-3 +Description: Header files related to Linux kernel version 3.2.0 + This package provides kernel header files for version 3.2.0, for sites + that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details + +Package: linux-libc-dev +Architecture: i386 amd64 powerpc ppc64 armel armhf +Depends: ${misc:Depends} +Conflicts: libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), dvb-dev (<< 1.0.1-6), amd64-libs-dev (<= 1.1), linux-kernel-headers +Replaces: libc6-dev (<< 2.3.2.ds1-6), libc6.1-dev (<< 2.3.2.ds1-6), dvb-dev (<< 1.0.1-6), linux-kernel-headers, libdrm-dev +Provides: linux-kernel-headers +Multi-Arch: same +Description: Linux Kernel Headers for development + This package provides headers from the Linux kernel. These headers + are used by the installed headers for GNU glibc and other system + libraries. They are NOT meant to be used to build third-party modules for + your kernel. Use linux-headers-* packages for that. + +Package: linux-tools-3.2.0-26 +Architecture: i386 amd64 powerpc ppc64 armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common +Description: Linux kernel version specific tools for version 3.2.0-26 + This package provides the architecture dependant parts for kernel + version locked tools (such as perf and x86_energy_perf_policy) for + version 3.2.0-26 on + 64 bit x86. + + +Package: linux-image-3.2.0-26-generic +Architecture: i386 amd64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub-efi-amd64 | grub-efi-ia32 | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-generic +Architecture: i386 amd64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-generic +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward desktop and server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-generic meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-generic +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 SMP + This package provides kernel header files for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-generic-dbgsym +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 SMP + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-generic-pae +Architecture: i386 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward 32 bit desktop or server systems with more than 4GB RAM. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-pae meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-generic-pae +Architecture: i386 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-generic-pae +Description: Linux kernel image for version 3.2.0 on 64 bit x86 SMP + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Generic processors. + . + Geared toward 32 bit desktop or server systems with more than 4GB RAM. + . + You likely do not want to install this package directly. Instead, install + the linux-generic-pae meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-generic-pae +Architecture: i386 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 SMP + This package provides kernel header files for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-generic-pae-dbgsym +Architecture: i386 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 SMP + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-highbank +Architecture: armhf +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: flash-kernel +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on Calxeda highbank ARM Server + This package contains the Linux kernel image for version 3.2.0 on + Calxeda highbank ARM Server. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Calxeda highbank processors. + . + Targeted towards Calxeda highbank ARM Server + . + You likely do not want to install this package directly. Instead, install + the linux-highbank meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-highbank +Architecture: armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-highbank +Description: Linux kernel image for version 3.2.0 on Calxeda highbank ARM Server + This package contains the Linux kernel image for version 3.2.0 on + Calxeda highbank ARM Server. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Calxeda highbank processors. + . + Targeted towards Calxeda highbank ARM Server + . + You likely do not want to install this package directly. Instead, install + the linux-highbank meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-highbank +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on Calxeda highbank ARM Server + This package provides kernel header files for version 3.2.0 on + Calxeda highbank ARM Server. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-highbank-dbgsym +Architecture: armhf +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on Calxeda highbank ARM Server + This package provides a kernel debug image for version 3.2.0 on + Calxeda highbank ARM Server. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-omap +Architecture: armel armhf +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: flash-kernel +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package contains the Linux kernel image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports TI OMAP3 processors. + . + Targeted towards boards such as Beagleboard, Gumstix, IGEPv2, etc. + . + You likely do not want to install this package directly. Instead, install + the linux-omap meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-omap +Architecture: armel armhf +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-omap +Description: Linux kernel image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package contains the Linux kernel image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports TI OMAP3 processors. + . + Targeted towards boards such as Beagleboard, Gumstix, IGEPv2, etc. + . + You likely do not want to install this package directly. Instead, install + the linux-omap meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-omap +Architecture: armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package provides kernel header files for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-omap-dbgsym +Architecture: armel armhf +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on TI OMAP3-based 64 bit x86 systems + This package provides a kernel debug image for version 3.2.0 on + TI OMAP3-based 64 bit x86 systems. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, redhat-cluster-modules, ivtv-modules +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: yaboot +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 64-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 64-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc64-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-powerpc64-smp +Description: Linux kernel image for version 3.2.0 on 64-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 64-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 64-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc64-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-powerpc64-smp +Architecture: powerpc ppc64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64-bit PowerPC SMP + This package provides kernel header files for version 3.2.0 on + 64-bit PowerPC SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-powerpc64-smp-dbgsym +Architecture: powerpc ppc64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64-bit PowerPC SMP + This package provides a kernel debug image for version 3.2.0 on + 64-bit PowerPC SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, redhat-cluster-modules, ivtv-modules +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: yaboot +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 32-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 32-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 32-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-powerpc-smp +Description: Linux kernel image for version 3.2.0 on 32-bit PowerPC SMP + This package contains the Linux kernel image for version 3.2.0 on + 32-bit PowerPC SMP. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports 32-bit PowerPC SMP processors. + . + Geared toward desktop or server systems. + . + You likely do not want to install this package directly. Instead, install + the linux-powerpc-smp meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-powerpc-smp +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 32-bit PowerPC SMP + This package provides kernel header files for version 3.2.0 on + 32-bit PowerPC SMP. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-powerpc-smp-dbgsym +Architecture: powerpc +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 32-bit PowerPC SMP + This package provides a kernel debug image for version 3.2.0 on + 32-bit PowerPC SMP. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. + +Package: linux-image-3.2.0-26-virtual +Architecture: i386 amd64 +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9 +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: grub-pc | grub | lilo (>= 19.1) +Suggests: fdutils, linux-doc-3.2.0 | linux-source-3.2.0, linux-tools +Description: Linux kernel image for version 3.2.0 on 64 bit x86 Virtual Guests + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Virtual processors. + . + Geared toward virtual appliances. + . + You likely do not want to install this package directly. Instead, install + the linux-virtual meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-3.2.0-26-virtual +Architecture: i386 amd64 +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-3.2.0-26-virtual +Description: Linux kernel image for version 3.2.0 on 64 bit x86 Virtual Guests + This package contains the Linux kernel image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports Virtual processors. + . + Geared toward virtual appliances. + . + You likely do not want to install this package directly. Instead, install + the linux-virtual meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-3.2.0-26-virtual +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends}, linux-headers-3.2.0-26, ${shlibs:Depends} +Provides: linux-headers, linux-headers-3.0 +Description: Linux kernel headers for version 3.2.0 on 64 bit x86 Virtual Guests + This package provides kernel header files for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/linux-headers-3.2.0-26/debian.README.gz for details. + +Package: linux-image-3.2.0-26-virtual-dbgsym +Architecture: i386 amd64 +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version 3.2.0 on 64 bit x86 Virtual Guests + This package provides a kernel debug image for version 3.2.0 on + 64 bit x86 Virtual Guests. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. --- linux-3.2.0.orig/debian.master/etc/getabis +++ linux-3.2.0/debian.master/etc/getabis @@ -0,0 +1,14 @@ +repo_list=( + "http://archive.ubuntu.com/ubuntu/pool/main/l/linux" + "http://ports.ubuntu.com/ubuntu-ports/pool/main/l/linux" + "http://archive.ubuntu.com/ubuntu/pool/universe/l/linux" + "http://ports.ubuntu.com/ubuntu-ports/pool/universe/l/linux" +) + +getall armel omap +getall armhf omap highbank +getall amd64 generic virtual +getall i386 generic generic-pae virtual + +# Ports arches and flavours. +getall powerpc powerpc-smp powerpc64-smp --- linux-3.2.0.orig/debian.master/etc/kernelconfig +++ linux-3.2.0/debian.master/etc/kernelconfig @@ -0,0 +1,7 @@ +if [ "$variant" = "ports" ]; then + archs="" + family='ports' +else + archs="amd64 i386 armel armhf powerpc ppc64" + family='ubuntu' +fi --- linux-3.2.0.orig/debian.master/d-i/exclude-modules.armhf-highbank +++ linux-3.2.0/debian.master/d-i/exclude-modules.armhf-highbank @@ -0,0 +1,13 @@ +serial-modules +firewire-core-modules +floppy-modules +pcmcia-storage-modules +fb-modules +nic-pcmcia-modules +pcmcia-modules +pata-modules +message-modules +virtio-modules +multipath-modules +ipmi-modules +sata-modules --- linux-3.2.0.orig/debian.master/d-i/exclude-modules.sparc +++ linux-3.2.0/debian.master/d-i/exclude-modules.sparc @@ -0,0 +1,9 @@ +efi-modules +nic-pcmcia-modules +pcmcia-modules +pcmcia-storage-modules +irda-modules +floppy-modules +fb-modules +acpi-modules +virtio-modules --- linux-3.2.0.orig/debian.master/d-i/package-list +++ linux-3.2.0/debian.master/d-i/package-list @@ -0,0 +1,196 @@ +Package: kernel-image + +Package: fat-modules +Depends: kernel-image +Priority: standard +Description: FAT filesystem support + This includes Windows FAT and VFAT support. + +Package: fb-modules +Depends: kernel-image +Priority: standard +Description: Framebuffer modules + +Package: firewire-core-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: Firewire (IEEE-1394) Support + +Package: floppy-modules +Depends: kernel-image +Priority: standard +Description: Floppy driver support + +Package: fs-core-modules +Depends: kernel-image +Priority: standard +Provides: jfs-modules, reiserfs-modules, xfs-modules +Description: Base filesystem modules + This includes jfs, reiserfs and xfs. + +Package: fs-secondary-modules +Depends: kernel-image, fat-modules +Priority: standard +Provides: ntfs-modules, hfs-modules +Description: Extra filesystem modules + This includes support for Windows NTFS and MacOS HFS/HFSPlus + +Package: input-modules +Depends: kernel-image, usb-modules +Priority: standard +Description: Support for various input methods + +Package: irda-modules +Depends: kernel-image, nic-shared-modules +Priority: standard +Description: Support for Infrared protocols + +Package: md-modules +Depends: kernel-image +Priority: standard +Description: Multi-device support (raid, device-mapper, lvm) + +Package: nic-modules +Depends: kernel-image, nic-shared-modules, virtio-modules +Priority: standard +Description: Network interface support + +Package: nic-pcmcia-modules +Depends: kernel-image, nic-shared-modules, nic-modules +Priority: standard +Description: PCMCIA network interface support + +Package: nic-usb-modules +Depends: kernel-image, nic-shared-modules, usb-modules +Priority: standard +Description: USB network interface support + +Package: nic-shared-modules +Depends: kernel-image, crypto-modules +Priority: standard +Description: nic shared modules + This package contains modules which support nic modules + +Package: parport-modules +Depends: kernel-image +Priority: standard +Description: Parallel port support + +Package: pata-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: PATA support modules + +Package: pcmcia-modules +Depends: kernel-image +Priority: standard +Description: PCMCIA Modules + +Package: pcmcia-storage-modules +Depends: kernel-image, scsi-modules +Priority: standard +Description: PCMCIA storage support + +Package: plip-modules +Depends: kernel-image, nic-shared-modules, parport-modules +Priority: standard +Description: PLIP (parallel port) networking support + +Package: ppp-modules +Depends: kernel-image, nic-shared-modules, serial-modules +Priority: standard +Description: PPP (serial port) networking support + +Package: sata-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: SATA storage support + +Package: scsi-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: SCSI storage support + +Package: serial-modules +Depends: kernel-image +Priority: standard +Description: Serial port support + +Package: storage-core-modules +Depends: kernel-image +Priority: standard +Provides: loop-modules +Description: Core storage support + Includes core SCSI, LibATA, USB-Storage. Also includes related block + devices for CD, Disk and Tape medium (and IDE Floppy). + +Package: usb-modules +Depends: kernel-image, storage-core-modules +Priority: standard +Description: Core USB support + +Package: nfs-modules +Priority: standard +Depends: kernel-image +Description: NFS filesystem drivers + Includes the NFS client driver, and supporting modules. + +Package: block-modules +Priority: standard +Depends: kernel-image, storage-core-modules, parport-modules, virtio-modules +Description: Block storage devices + This package contains the block storage devices, including DAC960 and + paraide. + +Package: message-modules +Priority: standard +Depends: kernel-image, storage-core-modules, scsi-modules +Description: Fusion and i2o storage modules + This package containes the fusion and i2o storage modules. + +Package: crypto-modules +Priority: extra +Depends: kernel-image +Description: crypto modules + This package contains crypto modules. + +Package: virtio-modules +Priority: standard +Depends: kernel-image +Description: VirtIO Modules + Includes modules for VirtIO (virtual machine, generally kvm guests) + +Package: socket-modules +Depends: kernel-image +Priority: standard +Description: Unix socket support + +Package: mouse-modules +Depends: kernel-image, input-modules, usb-modules +Priority: extra +Description: Mouse support + This package contains mouse drivers for the Linux kernel. + +Package: squashfs-modules +Depends: kernel-image +Priority: extra +Description: squashfs modules + This package contains squashfs modules. + +Package: vlan-modules +Depends: kernel-image +Priority: extra +Description: vlan modules + This package contains vlan (8021.Q) modules. + +Package: ipmi-modules +Depends: kernel-image +Priority: standard +Description: ipmi modules + +Package: multipath-modules +Depends: kernel-image +Priority: extra +Description: DM-Multipath support + This package contains modules for device-mapper multipath support. + --- linux-3.2.0.orig/debian.master/d-i/exclude-modules.armel-omap +++ linux-3.2.0/debian.master/d-i/exclude-modules.armel-omap @@ -0,0 +1,10 @@ +serial-modules +firewire-core-modules +floppy-modules +pcmcia-storage-modules +fb-modules +nic-pcmcia-modules +pcmcia-modules +pata-modules +message-modules +virtio-modules --- linux-3.2.0.orig/debian.master/d-i/exclude-modules.armhf-omap +++ linux-3.2.0/debian.master/d-i/exclude-modules.armhf-omap @@ -0,0 +1,10 @@ +serial-modules +firewire-core-modules +floppy-modules +pcmcia-storage-modules +fb-modules +nic-pcmcia-modules +pcmcia-modules +pata-modules +message-modules +virtio-modules --- linux-3.2.0.orig/debian.master/d-i/exclude-modules.powerpc +++ linux-3.2.0/debian.master/d-i/exclude-modules.powerpc @@ -0,0 +1,4 @@ +efi-modules +fb-modules +acpi-modules +virtio-modules --- linux-3.2.0.orig/debian.master/d-i/exclude-firmware.armel-omap +++ linux-3.2.0/debian.master/d-i/exclude-firmware.armel-omap @@ -0,0 +1,2 @@ +nic-modules +scsi-modules --- linux-3.2.0.orig/debian.master/d-i/exclude-firmware.armhf-omap +++ linux-3.2.0/debian.master/d-i/exclude-firmware.armhf-omap @@ -0,0 +1,2 @@ +nic-modules +scsi-modules --- linux-3.2.0.orig/debian.master/d-i/exclude-modules.amd64-virtual +++ linux-3.2.0/debian.master/d-i/exclude-modules.amd64-virtual @@ -0,0 +1,15 @@ +pata-modules +serial-modules +firewire-core-modules +plip-modules +usb-modules +pcmcia-storage-modules +input-modules +nic-pcmcia-modules +pcmcia-modules +nic-usb-modules +nfs-modules +speakup-modules +ppp-modules +sata-modules +ipmi-modules --- linux-3.2.0.orig/debian.master/d-i/kernel-versions.in +++ linux-3.2.0/debian.master/d-i/kernel-versions.in @@ -0,0 +1,17 @@ +# arch version flavour installedname suffix bdep +amd64 PKGVER-ABINUM generic PKGVER-ABINUM-generic - +amd64 PKGVER-ABINUM virtual PKGVER-ABINUM-virtual - + +i386 PKGVER-ABINUM generic PKGVER-ABINUM-generic - +i386 PKGVER-ABINUM generic-pae PKGVER-ABINUM-generic-pae - +i386 PKGVER-ABINUM virtual PKGVER-ABINUM-virtual - + +armel PKGVER-ABINUM omap PKGVER-ABINUM-omap - + +armhf PKGVER-ABINUM omap PKGVER-ABINUM-omap - +armhf PKGVER-ABINUM highbank PKGVER-ABINUM-highbank - + +# Ports +# arch version flavour installedname suffix bdep +powerpc PKGVER-ABINUM powerpc-smp PKGVER-ABINUM-powerpc-smp - +powerpc PKGVER-ABINUM powerpc64-smp PKGVER-ABINUM-powerpc64-smp - --- linux-3.2.0.orig/debian.master/d-i/kernel-versions +++ linux-3.2.0/debian.master/d-i/kernel-versions @@ -0,0 +1,17 @@ +# arch version flavour installedname suffix bdep +amd64 3.2.0-26 generic 3.2.0-26-generic - +amd64 3.2.0-26 virtual 3.2.0-26-virtual - + +i386 3.2.0-26 generic 3.2.0-26-generic - +i386 3.2.0-26 generic-pae 3.2.0-26-generic-pae - +i386 3.2.0-26 virtual 3.2.0-26-virtual - + +armel 3.2.0-26 omap 3.2.0-26-omap - + +armhf 3.2.0-26 omap 3.2.0-26-omap - +armhf 3.2.0-26 highbank 3.2.0-26-highbank - + +# Ports +# arch version flavour installedname suffix bdep +powerpc 3.2.0-26 powerpc-smp 3.2.0-26-powerpc-smp - +powerpc 3.2.0-26 powerpc64-smp 3.2.0-26-powerpc64-smp - --- linux-3.2.0.orig/debian.master/d-i/exclude-modules.ia64 +++ linux-3.2.0/debian.master/d-i/exclude-modules.ia64 @@ -0,0 +1,4 @@ +irda-modules +floppy-modules +fb-modules +virtio-modules --- linux-3.2.0.orig/debian.master/d-i/exclude-modules.i386-virtual +++ linux-3.2.0/debian.master/d-i/exclude-modules.i386-virtual @@ -0,0 +1,15 @@ +pata-modules +serial-modules +firewire-core-modules +plip-modules +usb-modules +pcmcia-storage-modules +input-modules +nic-pcmcia-modules +pcmcia-modules +nic-usb-modules +nfs-modules +speakup-modules +ppp-modules +sata-modules +ipmi-modules --- linux-3.2.0.orig/debian.master/d-i/exclude-firmware.armhf-highbank +++ linux-3.2.0/debian.master/d-i/exclude-firmware.armhf-highbank @@ -0,0 +1,2 @@ +nic-modules +scsi-modules --- linux-3.2.0.orig/debian.master/d-i/modules-sparc/block-modules +++ linux-3.2.0/debian.master/d-i/modules-sparc/block-modules @@ -0,0 +1,9 @@ +aoe +cciss +comm +cpqarray ? +DAC960 +nbd +sx8 +umem +virtio_blk ? --- linux-3.2.0.orig/debian.master/d-i/modules-sparc/message-modules +++ linux-3.2.0/debian.master/d-i/modules-sparc/message-modules @@ -0,0 +1,13 @@ +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +i2o_block +i2o_bus +i2o_config ? +i2o_core +i2o_proc +i2o_scsi --- linux-3.2.0.orig/debian.master/d-i/modules-powerpc/scsi-modules +++ linux-3.2.0/debian.master/d-i/modules-powerpc/scsi-modules @@ -0,0 +1,118 @@ +# SCSI +raid_class ? +scsi_transport_spi ? +scsi_transport_fc ? +scsi_transport_iscsi ? +scsi_transport_sas ? +iscsi_tcp ? +libiscsi ? +amiga7xx ? +a3000 ? +a2091 ? +gvp11 ? +mvme147 ? +sgiwd93 ? +cyberstorm ? +cyberstormII ? +blz2060 ? +blz1230 ? +fastlane ? +oktagon_esp_mod ? +atari_scsi ? +mac_scsi ? +mac_esp ? +sun3_scsi ? +mvme16x ? +bvme6000 ? +sim710 ? +advansys ? +psi240i ? +BusLogic ? +dpt_i2o ? +u14-34f ? +ultrastor ? +aha152x ? +aha1542 ? +aha1740 ? +aic7xxx_old ? +ips ? +fd_mcs ? +fdomain ? +in2000 ? +g_NCR5380 ? +g_NCR5380_mmio ? +NCR53c406a ? +NCR_D700 ? +NCR_Q720_mod ? +sym53c416 ? +qlogicfas408 ? +qla1280 ? +pas16 ? +seagate ? +seagate ? +t128 ? +dmx3191d ? +dtc ? +zalon7xx ? +eata_pio ? +wd7000 ? +mca_53c9x ? +ibmmca ? +ibmvfc ? +ibmvscsic ? +eata ? +dc395x ? +tmscsim ? +megaraid ? +atp870u ? +esp ? +gdth ? +initio ? +a100u2w ? +qlogicpti ? +ide-scsi ? +mesh ? +mac53c94 ? +pluto ? +dec_esp ? +3w-xxxx ? +3w-9xxx ? +ppa ? +imm ? +jazz_esp ? +sun3x_esp ? +fcal ? +lasi700 ? +nsp32 ? +ipr ? +hptiop ? +stex ? +osst ? +sg ? +ch ? +scsi_debug ? +aacraid ? +aic7xxx ? +aic79xx ? +aic94xx ? +arcmsr ? +acornscsi_mod ? +arxescsi ? +cumana_1 ? +cumana_2 ? +ecoscsi ? +oak ? +powertec ? +eesox ? +ibmvscsic ? +libsas ? +lpfc ? +megaraid_mm ? +megaraid_mbox ? +megaraid_sas ? +qla2xxx ? +sym53c8xx ? +qla4xxx ? +mvsas ? +sr_mod ? +sd_mod ? --- linux-3.2.0.orig/debian.master/d-i/modules-powerpc/storage-core-modules +++ linux-3.2.0/debian.master/d-i/modules-powerpc/storage-core-modules @@ -0,0 +1,13 @@ +# Core stacks +usb-storage ? + +# Block level + +# Loop modules +cryptoloop + +# Needs to be here for better cdrom initrd layout +isofs + +ps3stor_lib ? +ps3rom ? --- linux-3.2.0.orig/debian.master/d-i/modules-powerpc/block-modules +++ linux-3.2.0/debian.master/d-i/modules-powerpc/block-modules @@ -0,0 +1,31 @@ +aoe +aten +bpck +bpck6 ? +cciss +comm +cpqarray ? +DAC960 +dstr +epat +epia +fit2 +fit3 +friq +frpw +kbic +ktti +nbd +on20 +on26 +paride +pcd +pd +pf +pg +ps3disk ? +ps3vram ? +pt +sx8 +umem +virtio_blk ? --- linux-3.2.0.orig/debian.master/d-i/modules-powerpc/message-modules +++ linux-3.2.0/debian.master/d-i/modules-powerpc/message-modules @@ -0,0 +1,13 @@ +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +i2o_block +i2o_bus +i2o_config ? +i2o_core +i2o_proc +i2o_scsi --- linux-3.2.0.orig/debian.master/d-i/modules-powerpc/nic-modules +++ linux-3.2.0/debian.master/d-i/modules-powerpc/nic-modules @@ -0,0 +1,153 @@ +3c359 ? +3c501 ? +3c503 ? +3c505 ? +3c507 ? +3c509 ? +3c515 ? +3c523 ? +3c527 ? +3c59x ? +8139cp ? +8139too ? +82596 ? +abyss ? +ac3200 ? +adm8211 ? +airo ? +airport ? +amd8111e ? +arc4 ? +arcnet ? +arc-rawmode ? +arc-rimi ? +arlan ? +at1700 ? +atl1 ? +atl1e ? +atl2 ? +atmel ? +atmel_pci ? +b44 ? +bcm43xx ? +bcm43xx-mac80211 ? +bmac ? +bnx2 ? +bnx2x ? +bonding ? +cassini ? +com20020 ? +com20020-pci ? +com90io ? +com90xx ? +cs89x0 ? +de2104x ? +de4x5 ? +de600 ? +de620 ? +defxx ? +depca ? +dl2k ? +dmfe ? +dummy ? +e100 ? +e1000 ? +e1000e ? +e2100 ? +eepro ? +eepro100 ? +eexpress ? +epic100 ? +eql ? +es3210 ? +eth16i ? +ewrk3 ? +fealnx ? +forcedeth ? +igb ? +hamachi ? +hermes ? +hp ? +hp100 ? +hp-plus ? +ibmtr ? +ibmveth ? +ipddp ? +ipw2100 ? +ipw2200 ? +ipw3945 ? +ixgb ? +lance ? +lanstreamer ? +lasi_82596 ? +lne390 ? +lp486e ? +mace ? +mv643xx_eth ? +myri_sbus ? +natsemi ? +ne ? +ne2 ? +ne2k-pci ? +ne3210 ? +netconsole ? +netxen_nic ? +ni5010 ? +ni52 ? +ni65 ? +niu ? +ns83820 ? +olympic ? +orinoco ? +orinoco_pci ? +orinoco_plx ? +orinoco_tmd ? +pcnet32 ? +prism54 ? +ps3_gelic ? +r8169 ? +rate_control ? +rfc1051 ? +rfc1201 ? +rrunner ? +rt2400 ? +rt2500 ? +rt61pci ? +s2io ? +shaper ? +sis190 ? +sis900 ? +spidernet ? +skfp ? +skge ? +sk98lin ? +sky2 ? +smc9194 ? +smc-ultra ? +smc-ultra32 ? +starfire ? +strip ? +sunbmac ? +sundance ? +sungem ? +sungem_phy ? +sunhme ? +sunlance ? +sunqe ? +sunvnet ? +tg3 ? +tlan ? +tms380tr ? +tmspci ? +tulip ? +tun ? +typhoon ? +uli526x ? +via-rhine ? +via-velocity ? +virtio_net ? +wavelan ? +wd ? +winbond-840 ? +yellowfin ? +znet ? --- linux-3.2.0.orig/debian.master/d-i/modules/fb-modules +++ linux-3.2.0/debian.master/d-i/modules/fb-modules @@ -0,0 +1,3 @@ +fbcon ? +vesafb ? +vga16fb ? --- linux-3.2.0.orig/debian.master/d-i/modules/pata-modules +++ linux-3.2.0/debian.master/d-i/modules/pata-modules @@ -0,0 +1,47 @@ +pata_ali.ko ? +pata_amd.ko ? +pata_artop.ko ? +pata_atiixp.ko ? +pata_atp867x.ko ? +pata_cmd640.ko ? +pata_cmd64x.ko ? +pata_cs5520.ko ? +pata_cs5530.ko ? +pata_cs5535.ko ? +pata_cs5536.ko ? +pata_cypress.ko ? +pata_efar.ko ? +pata_hpt366.ko ? +pata_hpt37x.ko ? +pata_hpt3x2n.ko ? +pata_hpt3x3.ko ? +pata_isapnp.ko ? +pata_it8213.ko ? +pata_it821x.ko ? +pata_jmicron.ko ? +pata_legacy.ko ? +pata_macio.ko ? +pata_marvell.ko ? +pata_mpiix.ko ? +pata_netcell.ko ? +pata_ninja32.ko ? +pata_ns87410.ko ? +pata_ns87415.ko ? +pata_oldpiix.ko ? +pata_optidma.ko ? +pata_opti.ko ? +pata_pcmcia.ko ? +pata_pdc2027x.ko ? +pata_pdc202xx_old.ko ? +pata_qdi.ko ? +pata_radisys.ko ? +pata_rdc.ko ? +pata_rz1000.ko ? +pata_sc1200.ko ? +pata_sch.ko ? +pata_serverworks.ko ? +pata_sil680.ko ? +pata_sl82c105.ko ? +pata_triflex.ko ? +pata_via.ko ? +pata_winbond.ko ? --- linux-3.2.0.orig/debian.master/d-i/modules/nic-pcmcia-modules +++ linux-3.2.0/debian.master/d-i/modules/nic-pcmcia-modules @@ -0,0 +1,19 @@ +3c574_cs ? +3c589_cs ? +airo_cs ? +atmel_cs ? +axnet_cs ? +com20020_cs ? +fmvj18x_cs ? +ibmtr_cs ? +netwave_cs ? +nmclan_cs ? +orinoco_cs ? +pcnet_cs ? +ray_cs ? +smc91c92_cs ? +wavelan_cs ? +wl3501_cs ? +xirc2ps_cs ? +xircom_cb ? +xircom_tulip_cb ? --- linux-3.2.0.orig/debian.master/d-i/modules/sata-modules +++ linux-3.2.0/debian.master/d-i/modules/sata-modules @@ -0,0 +1,13 @@ +sata_inic162x.ko ? +sata_mv.ko ? +sata_nv.ko ? +sata_promise.ko ? +sata_qstor.ko ? +sata_sil24.ko ? +sata_sil.ko ? +sata_sis.ko ? +sata_svw.ko ? +sata_sx4.ko ? +sata_uli.ko ? +sata_via.ko ? +sata_vsc.ko ? --- linux-3.2.0.orig/debian.master/d-i/modules/usb-modules +++ linux-3.2.0/debian.master/d-i/modules/usb-modules @@ -0,0 +1,10 @@ +ehci-hcd ? +isp116x-hcd ? +isp1760 ? +ohci-hcd ? +r8a66597-hcd ? +sl811_cs ? +sl811-hcd ? +u132-hcd ? +uhci-hcd ? +xhci-hcd ? --- linux-3.2.0.orig/debian.master/d-i/modules/crypto-modules +++ linux-3.2.0/debian.master/d-i/modules/crypto-modules @@ -0,0 +1,8 @@ +aes_generic ? +blowfish ? +twofish ? +serpent ? +sha256_generic ? +cbc ? +ecb ? +crc32c ? --- linux-3.2.0.orig/debian.master/d-i/modules/scsi-modules +++ linux-3.2.0/debian.master/d-i/modules/scsi-modules @@ -0,0 +1,126 @@ +# SCSI +raid_class ? +scsi_transport_spi ? +scsi_transport_fc ? +scsi_transport_iscsi ? +scsi_transport_sas ? +iscsi_tcp ? +libiscsi ? +amiga7xx ? +a3000 ? +a2091 ? +gvp11 ? +mvme147 ? +sgiwd93 ? +cyberstorm ? +cyberstormII ? +blz2060 ? +blz1230 ? +fastlane ? +oktagon_esp_mod ? +atari_scsi ? +mac_scsi ? +mac_esp ? +sun3_scsi ? +mvme16x ? +bvme6000 ? +sim710 ? +advansys ? +psi240i ? +BusLogic ? +dpt_i2o ? +u14-34f ? +ultrastor ? +aha152x ? +aha1542 ? +aha1740 ? +aic7xxx_old ? +ips ? +fd_mcs ? +fdomain ? +fnic ? +in2000 ? +g_NCR5380 ? +g_NCR5380_mmio ? +NCR53c406a ? +NCR_D700 ? +NCR_Q720_mod ? +sym53c416 ? +qlogicfas408 ? +qla1280 ? +pas16 ? +seagate ? +seagate ? +t128 ? +dmx3191d ? +dtc ? +zalon7xx ? +eata_pio ? +wd7000 ? +mca_53c9x ? +ibmmca ? +eata ? +dc395x ? +tmscsim ? +megaraid ? +atp870u ? +esp ? +gdth ? +initio ? +a100u2w ? +qlogicpti ? +ide-scsi ? +mesh ? +mac53c94 ? +pluto ? +dec_esp ? +3w-xxxx ? +3w-9xxx ? +ppa ? +imm ? +jazz_esp ? +sun3x_esp ? +fcal ? +lasi700 ? +nsp32 ? +ipr ? +hptiop ? +stex ? +osst ? +sg ? +ch ? +scsi_debug ? +aacraid ? +aic7xxx ? +aic79xx ? +aic94xx ? +arcmsr ? +acornscsi_mod ? +arxescsi ? +cumana_1 ? +cumana_2 ? +ecoscsi ? +oak ? +powertec ? +eesox ? +ibmvscsic ? +libsas ? +lpfc ? +megaraid_mm ? +megaraid_mbox ? +megaraid_sas ? +qla2xxx ? +sym53c8xx ? +qla4xxx ? +mvsas ? +vmw_pvscsi ? +ums-cypress ? +be2iscsi ? +3w-sas ? +isci ? + +# device handlers +scsi_dh_alua ? +scsi_dh_emc ? +scsi_dh_rdac ? +scsi_dh_hp_sw ? --- linux-3.2.0.orig/debian.master/d-i/modules/fat-modules +++ linux-3.2.0/debian.master/d-i/modules/fat-modules @@ -0,0 +1,7 @@ +fat ? +vfat ? + +# Supporting modules ? +nls_cp437 ? +nls_iso8859-1 ? +nls_utf8 ? --- linux-3.2.0.orig/debian.master/d-i/modules/storage-core-modules +++ linux-3.2.0/debian.master/d-i/modules/storage-core-modules @@ -0,0 +1,10 @@ +# Core stacks +usb-storage ? + +# Block level + +# Loop modules +cryptoloop ? + +# Needs to be here for better cdrom initrd layout +isofs ? --- linux-3.2.0.orig/debian.master/d-i/modules/pcmcia-storage-modules +++ linux-3.2.0/debian.master/d-i/modules/pcmcia-storage-modules @@ -0,0 +1,6 @@ +pata_pcmcia ? +qlogic_cs ? +fdomain_cs ? +aha152x_cs ? +nsp_cs ? +sym53c500_cs ? --- linux-3.2.0.orig/debian.master/d-i/modules/firewire-core-modules +++ linux-3.2.0/debian.master/d-i/modules/firewire-core-modules @@ -0,0 +1,4 @@ +firewire-core ? +firewire-ohci ? +firewire-sbp2 ? +firewire-net ? --- linux-3.2.0.orig/debian.master/d-i/modules/irda-modules +++ linux-3.2.0/debian.master/d-i/modules/irda-modules @@ -0,0 +1,30 @@ +act200l-sir ? +actisys-sir ? +ali-ircc ? +donauboe ? +esi-sir ? +girbil-sir ? +ircomm ? +ircomm-tty ? +irda ? +irda-usb ? +irlan ? +irnet ? +irport ? +irtty-sir ? +kingsun-sir ? +ks959-sir ? +ksdazzle-sir ? +litelink-sir ? +ma600-sir ? +mcp2120-sir ? +mcs7780 ? +nsc-ircc ? +old_belkin-sir ? +sir-dev ? +smsc-ircc2 ? +stir4200 ? +tekram-sir ? +via-ircc ? +vlsi_ir ? +w83977af_ir ? --- linux-3.2.0.orig/debian.master/d-i/modules/vlan-modules +++ linux-3.2.0/debian.master/d-i/modules/vlan-modules @@ -0,0 +1,3 @@ +slp ? +garp ? +8021q ? --- linux-3.2.0.orig/debian.master/d-i/modules/block-modules +++ linux-3.2.0/debian.master/d-i/modules/block-modules @@ -0,0 +1,32 @@ +aoe ? +aten ? +bpck ? +bpck6 ? +cciss ? +comm ? +cpqarray ? +DAC960 ? +dstr ? +epat ? +epia ? +fit2 ? +fit3 ? +friq ? +frpw ? +hpsa ? +kbic ? +ktti ? +nbd ? +on20 ? +on26 ? +paride ? +pcd ? +pd ? +pf ? +pg ? +pt ? +sx8 ? +umem ? +virtio_blk ? +xen-blkfront ? +mtip32xx ? --- linux-3.2.0.orig/debian.master/d-i/modules/mouse-modules +++ linux-3.2.0/debian.master/d-i/modules/mouse-modules @@ -0,0 +1,2 @@ +psmouse ? +usbmouse ? --- linux-3.2.0.orig/debian.master/d-i/modules/floppy-modules +++ linux-3.2.0/debian.master/d-i/modules/floppy-modules @@ -0,0 +1 @@ +floppy ? --- linux-3.2.0.orig/debian.master/d-i/modules/plip-modules +++ linux-3.2.0/debian.master/d-i/modules/plip-modules @@ -0,0 +1 @@ +plip ? --- linux-3.2.0.orig/debian.master/d-i/modules/ppp-modules +++ linux-3.2.0/debian.master/d-i/modules/ppp-modules @@ -0,0 +1,6 @@ +ppp_async ? +ppp_deflate ? +ppp_mppe ? +pppoe ? +pppox ? +ppp_synctty ? --- linux-3.2.0.orig/debian.master/d-i/modules/speakup-modules +++ linux-3.2.0/debian.master/d-i/modules/speakup-modules @@ -0,0 +1,16 @@ +speakup ? +speakup_acntpc ? +speakup_acntsa ? +speakup_apollo ? +speakup_audptr ? +speakup_bns ? +speakup_decext ? +speakup_dectlk ? +speakup_dtlk ? +speakup_dummy ? +speakup_keypc ? +speakup_ltlk ? +speakup_soft ? +speakup_spkout ? +speakup_txprt ? +speakup_decpc ? --- linux-3.2.0.orig/debian.master/d-i/modules/multipath-modules +++ linux-3.2.0/debian.master/d-i/modules/multipath-modules @@ -0,0 +1,2 @@ +dm-multipath ? +dm-round-robin ? --- linux-3.2.0.orig/debian.master/d-i/modules/fs-core-modules +++ linux-3.2.0/debian.master/d-i/modules/fs-core-modules @@ -0,0 +1,4 @@ +ext2 ? +jfs ? +reiserfs ? +xfs ? --- linux-3.2.0.orig/debian.master/d-i/modules/input-modules +++ linux-3.2.0/debian.master/d-i/modules/input-modules @@ -0,0 +1,22 @@ +hid-a4tech ? +hid-apple ? +hid-belkin ? +hid-bright ? +hid-cherry ? +hid-chicony ? +hid-cypress ? +hid-dell ? +hid-ezkey ? +hid-gyration ? +hid-logitech ? +hid-logitech-dj ? +hid-microsoft ? +hid-monterey ? +hid-petalynx ? +hid-pl ? +hid-samsung ? +hid-sony ? +hid-sunplus ? +hid-tmff ? +hid-zpff ? +usbhid ? --- linux-3.2.0.orig/debian.master/d-i/modules/ipmi-modules +++ linux-3.2.0/debian.master/d-i/modules/ipmi-modules @@ -0,0 +1,5 @@ +ipmi_devintf ? +ipmi_msghandler ? +ipmi_poweroff ? +ipmi_si ? +ipmi_watchdog ? --- linux-3.2.0.orig/debian.master/d-i/modules/message-modules +++ linux-3.2.0/debian.master/d-i/modules/message-modules @@ -0,0 +1,14 @@ +mptbase ? +mptctl ? +mptfc ? +mptlan ? +mptsas ? +mpt2sas ? +mptscsih ? +mptspi ? +i2o_block ? +i2o_bus ? +i2o_config ? +i2o_core ? +i2o_proc ? +i2o_scsi ? --- linux-3.2.0.orig/debian.master/d-i/modules/squashfs-modules +++ linux-3.2.0/debian.master/d-i/modules/squashfs-modules @@ -0,0 +1 @@ +squashfs ? --- linux-3.2.0.orig/debian.master/d-i/modules/serial-modules +++ linux-3.2.0/debian.master/d-i/modules/serial-modules @@ -0,0 +1,3 @@ +generic_serial ? +serial_cs ? +synclink_cs ? --- linux-3.2.0.orig/debian.master/d-i/modules/nic-usb-modules +++ linux-3.2.0/debian.master/d-i/modules/nic-usb-modules @@ -0,0 +1,31 @@ +catc ? +kaweth ? +pegasus ? +prism2_usb ? +rtl8150 ? +usbnet ? +zd1211rw ? +zd1201 ? +rt2500usb ? +rt73usb ? +rt2570 ? +rt2800usb ? +rt2x00usb ? +rtl8187 ? +cdc_ether ? +asix ? +cdc_eem ? +cdc_ether ? +cdc-phonet ? +cdc_subset ? +dm9601 ? +gl620a ? +hso ? +int51x1 ? +mcs7830 ? +net1080 ? +plusb ? +rndis_host ? +smsc95xx ? +zaurus ? +carl9170 ? --- linux-3.2.0.orig/debian.master/d-i/modules/nfs-modules +++ linux-3.2.0/debian.master/d-i/modules/nfs-modules @@ -0,0 +1,4 @@ +nfs ? +nfs_acl ? +lockd ? +sunrpc ? --- linux-3.2.0.orig/debian.master/d-i/modules/virtio-modules +++ linux-3.2.0/debian.master/d-i/modules/virtio-modules @@ -0,0 +1,8 @@ +virtio_balloon ? +virtio_pci ? +virtio_ring ? +virtio-rng ? +hv_vmbus ? +hv_utils ? +hv_netvsc ? +hv_storvsc ? --- linux-3.2.0.orig/debian.master/d-i/modules/md-modules +++ linux-3.2.0/debian.master/d-i/modules/md-modules @@ -0,0 +1,15 @@ +dm-crypt ? +dm-mirror ? +dm-raid ? +dm-zero ? +faulty ? +linear ? +multipath ? +raid0 ? +raid1 ? +raid10 ? +raid456 ? + +# Extras +dm-raid45 ? +dm-loop ? --- linux-3.2.0.orig/debian.master/d-i/modules/nic-shared-modules +++ linux-3.2.0/debian.master/d-i/modules/nic-shared-modules @@ -0,0 +1,29 @@ +# PHY +8390 ? +mii ? + +# CRC modules +crc-ccitt ? +crc-itu-t ? +libcrc32c ? + +# mac80211 stuff +mac80211 ? +cfg80211 ? + +# rt2x00 lib (since rt2x00 is split across usb/pci/cb +rt2x00lib ? +rt2800lib ? + +# Atheros library (since drivers are split across nic-modules/nic-usb-modules) +ath ? + +# EEPROM driver used by rtl818x (both pci and usb versions) +eeprom_93cx6 ? + +# Wireless 802.11 modules +lib80211 ? +cfg80211 ? +lib80211_crypt_ccmp ? +lib80211_crypt_tkip ? +lib80211_crypt_wep ? --- linux-3.2.0.orig/debian.master/d-i/modules/nic-modules +++ linux-3.2.0/debian.master/d-i/modules/nic-modules @@ -0,0 +1,167 @@ +3c359 ? +3c501 ? +3c503 ? +3c505 ? +3c507 ? +3c509 ? +3c515 ? +3c523 ? +3c527 ? +3c59x ? +8139cp ? +8139too ? +82596 ? +abyss ? +ac3200 ? +adm8211 ? +airo ? +airport ? +amd8111e ? +arc4 ? +arcnet ? +arc-rawmode ? +arc-rimi ? +arlan ? +at1700 ? +ath5k ? +ath9k ? +ath9k_htc ? +atl1 ? +atl1c ? +atl1e ? +atl2 ? +atmel ? +atmel_pci ? +b44 ? +be2net ? +bmac ? +bnx2 ? +bnx2x ? +bonding ? +brcmfmac ? +brcmsmac ? +cassini ? +com20020 ? +com20020-pci ? +com90io ? +com90xx ? +cs89x0 ? +de2104x ? +de4x5 ? +de600 ? +de620 ? +defxx ? +depca ? +dl2k ? +dmfe ? +dummy ? +e100 ? +e1000 ? +e1000e ? +e2100 ? +eepro ? +eepro100 ? +eexpress ? +enic ? +epic100 ? +eql ? +es3210 ? +eth16i ? +ewrk3 ? +fealnx ? +forcedeth ? +igb ? +ps3_gelic ? +hamachi ? +hermes ? +hp ? +hp100 ? +hp-plus ? +ibmtr ? +ipddp ? +ipw2100 ? +ipw2200 ? +iwl3945 ? +iwl4965 ? +iwl-legacy ? +iwlwifi ? +ixgb ? +ixgbe ? +lance ? +lanstreamer ? +lasi_82596 ? +lne390 ? +lp486e ? +mace ? +mv643xx_eth ? +myri_sbus ? +natsemi ? +ne ? +ne2 ? +ne2k-pci ? +ne3210 ? +netconsole ? +netxen_nic ? +ni5010 ? +ni52 ? +ni65 ? +niu ? +ns83820 ? +olympic ? +orinoco ? +orinoco_pci ? +orinoco_plx ? +orinoco_tmd ? +pcnet32 ? +prism54 ? +r8169 ? +rate_control ? +rfc1051 ? +rfc1201 ? +rrunner ? +rt2400 ? +rt2400pci ? +rt2500 ? +rt2500pci ? +rt2800pci ? +rt61pci ? +s2io ? +shaper ? +sis190 ? +sis900 ? +spidernet ? +skfp ? +skge ? +sk98lin ? +sky2 ? +smc9194 ? +smc-ultra ? +smc-ultra32 ? +starfire ? +strip ? +sunbmac ? +sundance ? +sungem ? +sungem_phy ? +sunhme ? +sunlance ? +sunqe ? +sunvnet ? +tg3 ? +tlan ? +tms380tr ? +tmspci ? +tulip ? +tun ? +typhoon ? +uli526x ? +via-rhine ? +via-velocity ? +virtio_net ? +wavelan ? +wd ? +winbond-840 ? +yellowfin ? +znet ? +vmxnet3 ? +xen-netfront ? --- linux-3.2.0.orig/debian.master/d-i/modules/pcmcia-modules +++ linux-3.2.0/debian.master/d-i/modules/pcmcia-modules @@ -0,0 +1,8 @@ +i82092 ? +i82365 ? +pcmcia ? +pcmcia_core ? +pd6729 ? +rsrc_nonstatic ? +tcic ? +yenta_socket ? --- linux-3.2.0.orig/debian.master/d-i/modules/parport-modules +++ linux-3.2.0/debian.master/d-i/modules/parport-modules @@ -0,0 +1,2 @@ +parport ? +parport_pc ? --- linux-3.2.0.orig/debian.master/d-i/modules/fs-secondary-modules +++ linux-3.2.0/debian.master/d-i/modules/fs-secondary-modules @@ -0,0 +1,5 @@ +btrfs ? +fuse ? +ntfs ? +hfs ? +hfsplus ? --- linux-3.2.0.orig/debian.master/d-i/firmware/scsi-modules +++ linux-3.2.0/debian.master/d-i/firmware/scsi-modules @@ -0,0 +1,3 @@ +qlogic/1040.bin +qlogic/12160.bin +qlogic/1280.bin --- linux-3.2.0.orig/debian.master/d-i/firmware/README.txt +++ linux-3.2.0/debian.master/d-i/firmware/README.txt @@ -0,0 +1,4 @@ +# +# Place the names of udeb modules into this directory that require +# runtime firmware. +# --- linux-3.2.0.orig/debian.master/d-i/firmware/nic-modules +++ linux-3.2.0/debian.master/d-i/firmware/nic-modules @@ -0,0 +1,8 @@ +e100/d101m_ucode.bin +e100/d101s_ucode.bin +e100/d102e_ucode.bin +bnx2/bnx2-mips-06-6.2.1.fw +bnx2/bnx2-mips-09-6.2.1a.fw +bnx2/bnx2-rv2p-06-6.0.15.fw +bnx2/bnx2-rv2p-09-6.0.17.fw +bnx2/bnx2-rv2p-09ax-6.0.17.fw --- linux-3.2.0.orig/debian.master/rules.d/i386.mk +++ linux-3.2.0/debian.master/rules.d/i386.mk @@ -0,0 +1,10 @@ +human_arch = 32 bit x86 +build_arch = i386 +header_arch = x86_64 +defconfig = defconfig +flavours = generic generic-pae virtual +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +loader = grub +no_dumpfile = true --- linux-3.2.0.orig/debian.master/rules.d/ppc64.mk +++ linux-3.2.0/debian.master/rules.d/ppc64.mk @@ -0,0 +1,19 @@ +human_arch = PowerPC (64 bit userspace) +build_arch = powerpc +header_arch = $(build_arch) +defconfig = ppc64_defconfig +flavours = powerpc64-smp +build_image = vmlinux +kernel_file = $(build_image) +install_file = $(build_image) + +loader = yaboot + +custom_flavours = + +no_dumpfile = true +skipdbg = true +skipabi = true +skipmodule = true + +family=ubuntu --- linux-3.2.0.orig/debian.master/rules.d/powerpc.mk +++ linux-3.2.0/debian.master/rules.d/powerpc.mk @@ -0,0 +1,19 @@ +human_arch = PowerPC (32 bit userspace) +build_arch = powerpc +header_arch = $(build_arch) +defconfig = pmac32_defconfig +flavours = powerpc-smp powerpc64-smp +build_image = vmlinux +kernel_file = $(build_image) +install_file = $(build_image) + +loader = yaboot + +custom_flavours = + +no_dumpfile = true +skipdbg = true +skipabi = true +skipmodule = true + +family=ubuntu --- linux-3.2.0.orig/debian.master/rules.d/armel.mk +++ linux-3.2.0/debian.master/rules.d/armel.mk @@ -0,0 +1,11 @@ +human_arch = ARM (soft float) +build_arch = arm +header_arch = arm +defconfig = defconfig +flavours = omap +build_image = zImage +kernel_file = arch/$(build_arch)/boot/zImage +install_file = vmlinuz +no_dumpfile = true + +loader = grub --- linux-3.2.0.orig/debian.master/rules.d/armhf.mk +++ linux-3.2.0/debian.master/rules.d/armhf.mk @@ -0,0 +1,12 @@ +human_arch = ARM (hard float) +build_arch = arm +header_arch = arm +defconfig = defconfig +flavours = omap highbank +build_image = zImage +kernel_file = arch/$(build_arch)/boot/zImage +install_file = vmlinuz +no_dumpfile = true + +loader = grub + --- linux-3.2.0.orig/debian.master/rules.d/amd64.mk +++ linux-3.2.0/debian.master/rules.d/amd64.mk @@ -0,0 +1,10 @@ +human_arch = 64 bit x86 +build_arch = x86_64 +header_arch = $(build_arch) +defconfig = defconfig +flavours = generic virtual +build_image = bzImage +kernel_file = arch/$(build_arch)/boot/bzImage +install_file = vmlinuz +loader = grub +no_dumpfile = true --- linux-3.2.0.orig/debian.master/config/config.common.ubuntu +++ linux-3.2.0/debian.master/config/config.common.ubuntu @@ -0,0 +1,6078 @@ +# +# Common config options automatically generated by splitconfig.pl +# +CONFIG_32BIT=y +CONFIG_3C359=m +CONFIG_3C515=m +# CONFIG_40x is not set +# CONFIG_44x is not set +CONFIG_60XX_WDT=m +CONFIG_6PACK=m +CONFIG_6xx=y +CONFIG_8139CP=m +CONFIG_8139TOO=m +CONFIG_8139TOO_8129=y +CONFIG_8139TOO_PIO=y +# CONFIG_8139TOO_TUNE_TWISTER is not set +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_9P_FS=m +# CONFIG_9P_FSCACHE is not set +CONFIG_9P_FS_POSIX_ACL=y +CONFIG_AB3100_CORE=y +CONFIG_AB3100_OTP=m +CONFIG_AB8500_CORE=y +CONFIG_AB8500_DEBUG=y +CONFIG_AB8500_GPADC=y +CONFIG_AB8500_USB=m +CONFIG_ABYSS=m +CONFIG_AC3200=m +CONFIG_AC97_BUS=m +# CONFIG_ACCESSIBILITY is not set +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +CONFIG_ACERHDF=m +CONFIG_ACER_WMI=m +# CONFIG_ACORN_PARTITION_ADFS is not set +# CONFIG_ACORN_PARTITION_CUMANA is not set +# CONFIG_ACORN_PARTITION_EESOX is not set +CONFIG_ACORN_PARTITION_ICS=y +# CONFIG_ACORN_PARTITION_POWERTEC is not set +CONFIG_ACORN_PARTITION_RISCIX=y +CONFIG_ACPI=y +CONFIG_ACPI_AC=y +CONFIG_ACPI_APEI=y +CONFIG_ACPI_APEI_EINJ=m +CONFIG_ACPI_APEI_ERST_DEBUG=m +CONFIG_ACPI_APEI_GHES=y +CONFIG_ACPI_APEI_MEMORY_FAILURE=y +CONFIG_ACPI_APEI_PCIEAER=y +# CONFIG_ACPI_ASUS is not set +CONFIG_ACPI_BATTERY=y +CONFIG_ACPI_BUTTON=y +CONFIG_ACPI_CMPC=m +CONFIG_ACPI_CONTAINER=y +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_DOCK=y +CONFIG_ACPI_EC_DEBUGFS=m +CONFIG_ACPI_FAN=y +CONFIG_ACPI_HED=y +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_HOTPLUG_MEMORY=m +CONFIG_ACPI_IPMI=m +CONFIG_ACPI_NUMA=y +CONFIG_ACPI_PCI_SLOT=m +CONFIG_ACPI_PROCESSOR=y +CONFIG_ACPI_PROCESSOR_AGGREGATOR=m +# CONFIG_ACPI_PROCFS is not set +CONFIG_ACPI_PROCFS_POWER=y +CONFIG_ACPI_PROC_EVENT=y +CONFIG_ACPI_QUICKSTART=m +CONFIG_ACPI_SBS=m +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_THERMAL=y +CONFIG_ACPI_TOSHIBA=m +CONFIG_ACPI_VIDEO=m +CONFIG_ACPI_WMI=m +CONFIG_ACQUIRE_WDT=m +CONFIG_ACT200L_DONGLE=m +CONFIG_ACTISYS_DONGLE=m +CONFIG_AD2S1200=m +CONFIG_AD2S1210=m +CONFIG_AD2S90=m +CONFIG_AD5064=m +CONFIG_AD525X_DPOT=m +CONFIG_AD525X_DPOT_I2C=m +CONFIG_AD525X_DPOT_SPI=m +CONFIG_AD5360=m +CONFIG_AD5446=m +CONFIG_AD5504=m +CONFIG_AD5624R_SPI=m +CONFIG_AD5686=m +CONFIG_AD5791=m +CONFIG_AD5930=m +CONFIG_AD5933=m +CONFIG_AD7150=m +CONFIG_AD7152=m +CONFIG_AD7192=m +CONFIG_AD7280=m +CONFIG_AD7291=m +CONFIG_AD7298=m +CONFIG_AD7476=m +CONFIG_AD7606=m +CONFIG_AD7606_IFACE_PARALLEL=m +CONFIG_AD7606_IFACE_SPI=m +CONFIG_AD7746=m +CONFIG_AD7780=m +CONFIG_AD7793=m +CONFIG_AD7816=m +CONFIG_AD7887=m +CONFIG_AD799X=m +CONFIG_AD799X_RING_BUFFER=y +CONFIG_AD9832=m +CONFIG_AD9834=m +CONFIG_AD9850=m +CONFIG_AD9852=m +CONFIG_AD9910=m +CONFIG_AD9951=m +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_ADB=y +CONFIG_ADB_CUDA=y +CONFIG_ADB_MACIO=y +CONFIG_ADB_PMU=y +CONFIG_ADB_PMU_LED=y +# CONFIG_ADB_PMU_LED_IDE is not set +CONFIG_ADE7753=m +CONFIG_ADE7754=m +CONFIG_ADE7758=m +CONFIG_ADE7759=m +CONFIG_ADE7854=m +CONFIG_ADE7854_I2C=m +CONFIG_ADE7854_SPI=m +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_ADIS16060=m +CONFIG_ADIS16080=m +CONFIG_ADIS16130=m +CONFIG_ADIS16201=m +CONFIG_ADIS16203=m +CONFIG_ADIS16204=m +CONFIG_ADIS16209=m +CONFIG_ADIS16220=m +CONFIG_ADIS16240=m +CONFIG_ADIS16260=m +CONFIG_ADIS16400=m +CONFIG_ADM8211=m +CONFIG_ADT7310=m +CONFIG_ADT7316=m +CONFIG_ADT7316_I2C=m +CONFIG_ADT7316_SPI=m +CONFIG_ADT7410=m +# CONFIG_ADVANCED_OPTIONS is not set +CONFIG_ADVANTECH_WDT=m +CONFIG_ADXRS450=m +CONFIG_AEABI=y +CONFIG_AFFS_FS=m +# CONFIG_AFS_DEBUG is not set +CONFIG_AFS_FS=m +# CONFIG_AFS_FSCACHE is not set +CONFIG_AF_RXRPC=m +# CONFIG_AF_RXRPC_DEBUG is not set +CONFIG_AGP=y +CONFIG_AGP_ALI=m +CONFIG_AGP_AMD=y +CONFIG_AGP_AMD64=y +CONFIG_AGP_ATI=m +CONFIG_AGP_EFFICEON=m +CONFIG_AGP_INTEL=y +CONFIG_AGP_NVIDIA=y +CONFIG_AGP_SIS=m +CONFIG_AGP_SWORKS=m +CONFIG_AGP_UNINORTH=m +CONFIG_AGP_VIA=y +CONFIG_AIC79XX_CMDS_PER_DEVICE=32 +CONFIG_AIC79XX_DEBUG_ENABLE=y +CONFIG_AIC79XX_DEBUG_MASK=0 +CONFIG_AIC79XX_REG_PRETTY_PRINT=y +CONFIG_AIC7XXX_CMDS_PER_DEVICE=8 +CONFIG_AIC7XXX_DEBUG_ENABLE=y +CONFIG_AIC7XXX_DEBUG_MASK=0 +CONFIG_AIC7XXX_REG_PRETTY_PRINT=y +CONFIG_AIC7XXX_RESET_DELAY_MS=15000 +# CONFIG_AIC94XX_DEBUG is not set +CONFIG_AIO=y +CONFIG_AIRO=m +CONFIG_AIRO_CS=m +CONFIG_ALIGNMENT_TRAP=y +CONFIG_ALIM1535_WDT=m +CONFIG_ALIM7101_WDT=m +CONFIG_ALIX=y +CONFIG_ALI_FIR=m +CONFIG_ALTERA_STAPL=m +CONFIG_ALTIVEC=y +CONFIG_AMD8111_ETH=m +CONFIG_AMD_IOMMU=y +CONFIG_AMD_IOMMU_STATS=y +CONFIG_AMD_NB=y +CONFIG_AMD_NUMA=y +CONFIG_ANON_INODES=y +CONFIG_ANSLCD=m +CONFIG_APDS9802ALS=m +CONFIG_APM=m +# CONFIG_APM_ALLOW_INTS is not set +# CONFIG_APM_CPU_IDLE is not set +# CONFIG_APM_DISPLAY_BLANK is not set +# CONFIG_APM_DO_ENABLE is not set +# CONFIG_APM_IGNORE_USER_SUSPEND is not set +CONFIG_APM_POWER=m +CONFIG_APPLE_AIRPORT=m +CONFIG_APPLE_GMUX=m +CONFIG_APPLICOM=m +CONFIG_APRICOT=m +# CONFIG_ARCH_AT91 is not set +# CONFIG_ARCH_BCMRING is not set +CONFIG_ARCH_CLOCKSOURCE_DATA=y +# CONFIG_ARCH_CLPS711X is not set +# CONFIG_ARCH_CNS3XXX is not set +CONFIG_ARCH_CPU_PROBE_RELEASE=y +# CONFIG_ARCH_DAVINCI is not set +# CONFIG_ARCH_DOVE is not set +# CONFIG_ARCH_EBSA110 is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y +# CONFIG_ARCH_EP93XX is not set +# CONFIG_ARCH_EXYNOS is not set +CONFIG_ARCH_FLATMEM_ENABLE=y +# CONFIG_ARCH_FOOTBRIDGE is not set +# CONFIG_ARCH_GEMINI is not set +# CONFIG_ARCH_H720X is not set +CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y +CONFIG_ARCH_HAS_CPUFREQ=y +CONFIG_ARCH_HAS_CPU_IDLE_WAIT=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_DEFAULT_IDLE=y +CONFIG_ARCH_HAS_HOLES_MEMORYMODEL=y +CONFIG_ARCH_HAS_ILOG2_U32=y +CONFIG_ARCH_HAS_ILOG2_U64=y +CONFIG_ARCH_HAS_OPP=y +CONFIG_ARCH_HAS_WALK_MEMORY=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y +CONFIG_ARCH_HIBERNATION_HEADER=y +CONFIG_ARCH_HIBERNATION_POSSIBLE=y +# CONFIG_ARCH_INTEGRATOR is not set +# CONFIG_ARCH_IOP13XX is not set +# CONFIG_ARCH_IOP32X is not set +# CONFIG_ARCH_IOP33X is not set +# CONFIG_ARCH_IXP2000 is not set +# CONFIG_ARCH_IXP23XX is not set +# CONFIG_ARCH_IXP4XX is not set +# CONFIG_ARCH_KIRKWOOD is not set +# CONFIG_ARCH_KS8695 is not set +# CONFIG_ARCH_LPC32XX is not set +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_ARCH_MEMORY_PROBE=y +# CONFIG_ARCH_MMP is not set +# CONFIG_ARCH_MSM is not set +# CONFIG_ARCH_MV78XX0 is not set +# CONFIG_ARCH_MXC is not set +# CONFIG_ARCH_MXS is not set +# CONFIG_ARCH_NETX is not set +# CONFIG_ARCH_NOMADIK is not set +# CONFIG_ARCH_OMAP1 is not set +# CONFIG_ARCH_OMAP2 is not set +CONFIG_ARCH_OMAP2PLUS=y +CONFIG_ARCH_OMAP2PLUS_TYPICAL=y +CONFIG_ARCH_OMAP3=y +# CONFIG_ARCH_OMAP4 is not set +CONFIG_ARCH_OMAP_OTG=y +# CONFIG_ARCH_ORION5X is not set +# CONFIG_ARCH_PICOXCELL is not set +# CONFIG_ARCH_PNX4008 is not set +CONFIG_ARCH_POPULATES_NODE_MAP=y +# CONFIG_ARCH_PRIMA2 is not set +CONFIG_ARCH_PROC_KCORE_TEXT=y +# CONFIG_ARCH_PXA is not set +CONFIG_ARCH_RANDOM=y +# CONFIG_ARCH_REALVIEW is not set +CONFIG_ARCH_REQUIRE_GPIOLIB=y +# CONFIG_ARCH_RPC is not set +# CONFIG_ARCH_S3C2410 is not set +# CONFIG_ARCH_S3C64XX is not set +# CONFIG_ARCH_S5P64X0 is not set +# CONFIG_ARCH_S5PC100 is not set +# CONFIG_ARCH_S5PV210 is not set +# CONFIG_ARCH_SA1100 is not set +# CONFIG_ARCH_SHARK is not set +# CONFIG_ARCH_SHMOBILE is not set +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUSPEND_POSSIBLE=y +# CONFIG_ARCH_TCC_926 is not set +# CONFIG_ARCH_TEGRA is not set +# CONFIG_ARCH_U300 is not set +# CONFIG_ARCH_U8500 is not set +# CONFIG_ARCH_USES_GETTIMEOFFSET is not set +CONFIG_ARCH_USES_PG_UNCACHED=y +# CONFIG_ARCH_VERSATILE is not set +# CONFIG_ARCH_VEXPRESS is not set +# CONFIG_ARCH_VT8500 is not set +# CONFIG_ARCH_W90X900 is not set +CONFIG_ARCH_WANTS_FREEZER_CONTROL=y +CONFIG_ARCH_WANT_FRAME_POINTERS=y +CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y +# CONFIG_ARCH_ZYNQ is not set +CONFIG_ARCNET=m +CONFIG_ARCNET_1051=m +CONFIG_ARCNET_1201=m +CONFIG_ARCNET_CAP=m +CONFIG_ARCNET_COM20020=m +CONFIG_ARCNET_COM20020_CS=m +CONFIG_ARCNET_COM20020_ISA=m +CONFIG_ARCNET_COM20020_PCI=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARM=y +CONFIG_ARM_AMBA=y +# CONFIG_ARM_APPENDED_DTB is not set +CONFIG_ARM_CPU_SUSPEND=y +CONFIG_ARM_CPU_TOPOLOGY=y +CONFIG_ARM_DMA_MEM_BUFFERABLE=y +# CONFIG_ARM_ERRATA_458693 is not set +# CONFIG_ARM_ERRATA_460075 is not set +# CONFIG_ARM_ERRATA_720789 is not set +# CONFIG_ARM_ERRATA_742230 is not set +# CONFIG_ARM_ERRATA_742231 is not set +# CONFIG_ARM_ERRATA_751472 is not set +CONFIG_ARM_ERRATA_754322=y +# CONFIG_ARM_ERRATA_754327 is not set +# CONFIG_ARM_ERRATA_764369 is not set +CONFIG_ARM_GIC=y +CONFIG_ARM_KPROBES_TEST=m +CONFIG_ARM_L1_CACHE_SHIFT_6=y +CONFIG_ARM_PATCH_PHYS_VIRT=y +CONFIG_ARM_SP805_WATCHDOG=m +CONFIG_ARM_THUMB=y +# CONFIG_ARM_THUMBEE is not set +CONFIG_ARM_TIMER_SP804=y +CONFIG_ARM_UNWIND=y +# CONFIG_ARPD is not set +CONFIG_ASUS_LAPTOP=m +CONFIG_ASUS_NB_WMI=m +CONFIG_ASUS_OLED=m +CONFIG_ASUS_WMI=m +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_MEMCPY=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_RAID6_RECOV=m +CONFIG_ASYNC_RAID6_TEST=m +CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA=y +CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA=y +CONFIG_ASYNC_XOR=m +CONFIG_AT1700=m +CONFIG_AT76C50X_USB=m +CONFIG_ATA=y +CONFIG_ATAGS_PROC=y +CONFIG_ATALK=m +CONFIG_ATA_ACPI=y +CONFIG_ATA_BMDMA=y +CONFIG_ATA_OVER_ETH=m +CONFIG_ATA_SFF=y +CONFIG_ATA_VERBOSE_ERROR=y +CONFIG_ATH5K=m +# CONFIG_ATH5K_DEBUG is not set +CONFIG_ATH5K_PCI=y +# CONFIG_ATH5K_TRACER is not set +CONFIG_ATH6KL=m +# CONFIG_ATH6KL_DEBUG is not set +CONFIG_ATH9K=m +CONFIG_ATH9K_AHB=y +CONFIG_ATH9K_COMMON=m +CONFIG_ATH9K_DEBUGFS=y +CONFIG_ATH9K_HTC=m +CONFIG_ATH9K_HTC_DEBUGFS=y +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_PCI=y +CONFIG_ATH9K_RATE_CONTROL=y +CONFIG_ATH_COMMON=m +# CONFIG_ATH_DEBUG is not set +CONFIG_ATL1=m +CONFIG_ATL1C=m +CONFIG_ATL1E=m +CONFIG_ATL2=m +CONFIG_ATM=m +CONFIG_ATMEL=m +CONFIG_ATMEL_PWM=m +CONFIG_ATM_AMBASSADOR=m +# CONFIG_ATM_AMBASSADOR_DEBUG is not set +CONFIG_ATM_BR2684=m +CONFIG_ATM_CLIP=m +# CONFIG_ATM_CLIP_NO_ICMP is not set +CONFIG_ATM_DRIVERS=y +CONFIG_ATM_DUMMY=m +CONFIG_ATM_ENI=m +# CONFIG_ATM_ENI_DEBUG is not set +# CONFIG_ATM_ENI_TUNE_BURST is not set +CONFIG_ATM_FIRESTREAM=m +CONFIG_ATM_FORE200E=m +CONFIG_ATM_FORE200E_DEBUG=0 +CONFIG_ATM_FORE200E_TX_RETRY=16 +# CONFIG_ATM_FORE200E_USE_TASKLET is not set +CONFIG_ATM_HE=m +CONFIG_ATM_HE_USE_SUNI=y +CONFIG_ATM_HORIZON=m +# CONFIG_ATM_HORIZON_DEBUG is not set +CONFIG_ATM_IA=m +# CONFIG_ATM_IA_DEBUG is not set +CONFIG_ATM_IDT77252=m +# CONFIG_ATM_IDT77252_DEBUG is not set +# CONFIG_ATM_IDT77252_RCV_ALL is not set +CONFIG_ATM_IDT77252_USE_SUNI=y +CONFIG_ATM_LANAI=m +CONFIG_ATM_LANE=m +CONFIG_ATM_MPOA=m +CONFIG_ATM_NICSTAR=m +# CONFIG_ATM_NICSTAR_USE_IDT77105 is not set +# CONFIG_ATM_NICSTAR_USE_SUNI is not set +CONFIG_ATM_SOLOS=m +CONFIG_ATM_TCP=m +CONFIG_ATM_ZATM=m +# CONFIG_ATM_ZATM_DEBUG is not set +# CONFIG_ATOMIC64_SELFTEST is not set +CONFIG_ATP=m +CONFIG_AUDIT=y +CONFIG_AUDITSYSCALL=y +CONFIG_AUDIT_GENERIC=y +CONFIG_AUDIT_TREE=y +CONFIG_AUDIT_WATCH=y +CONFIG_AUFS_BDEV_LOOP=y +# CONFIG_AUFS_BRANCH_MAX_1023 is not set +CONFIG_AUFS_BRANCH_MAX_127=y +# CONFIG_AUFS_BRANCH_MAX_32767 is not set +# CONFIG_AUFS_BRANCH_MAX_511 is not set +CONFIG_AUFS_BR_FUSE=y +CONFIG_AUFS_BR_HFSPLUS=y +CONFIG_AUFS_BR_RAMFS=y +# CONFIG_AUFS_DEBUG is not set +# CONFIG_AUFS_EXPORT is not set +CONFIG_AUFS_FS=m +# CONFIG_AUFS_HNOTIFY is not set +CONFIG_AUFS_POLL=y +# CONFIG_AUFS_PROC_MAP is not set +# CONFIG_AUFS_RDU is not set +CONFIG_AUFS_SBILIST=y +# CONFIG_AUFS_SHWH is not set +# CONFIG_AUFS_SP_IATTR is not set +CONFIG_AUTOFS4_FS=m +# CONFIG_AUTO_ZRELADDR is not set +CONFIG_AVERAGE=y +CONFIG_AVERATEC_5100P=m +CONFIG_AX25=m +# CONFIG_AX88796_93CX6 is not set +CONFIG_B43=m +CONFIG_B43LEGACY=m +CONFIG_B43LEGACY_DEBUG=y +CONFIG_B43LEGACY_DMA=y +CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y +# CONFIG_B43LEGACY_DMA_MODE is not set +CONFIG_B43LEGACY_HWRNG=y +CONFIG_B43LEGACY_LEDS=y +CONFIG_B43LEGACY_PCICORE_AUTOSELECT=y +CONFIG_B43LEGACY_PCI_AUTOSELECT=y +CONFIG_B43LEGACY_PIO=y +# CONFIG_B43LEGACY_PIO_MODE is not set +CONFIG_B43_BCMA=y +CONFIG_B43_BCMA_PIO=y +# CONFIG_B43_DEBUG is not set +CONFIG_B43_HWRNG=y +CONFIG_B43_LEDS=y +CONFIG_B43_PCICORE_AUTOSELECT=y +CONFIG_B43_PCI_AUTOSELECT=y +# CONFIG_B43_PCMCIA is not set +CONFIG_B43_PHY_HT=y +CONFIG_B43_PHY_LP=y +CONFIG_B43_PHY_N=y +CONFIG_B43_PIO=y +# CONFIG_B43_SDIO is not set +CONFIG_B43_SSB=y +CONFIG_B44=m +CONFIG_B44_PCI=y +CONFIG_B44_PCICORE_AUTOSELECT=y +CONFIG_B44_PCI_AUTOSELECT=y +CONFIG_BACKLIGHT_88PM860X=m +CONFIG_BACKLIGHT_AAT2870=m +CONFIG_BACKLIGHT_ADP5520=m +CONFIG_BACKLIGHT_ADP8860=m +CONFIG_BACKLIGHT_ADP8870=m +CONFIG_BACKLIGHT_APPLE=m +CONFIG_BACKLIGHT_ATMEL_PWM=m +CONFIG_BACKLIGHT_CARILLO_RANCH=m +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_BACKLIGHT_DA903X=m +CONFIG_BACKLIGHT_GENERIC=m +CONFIG_BACKLIGHT_LCD_SUPPORT=y +CONFIG_BACKLIGHT_MAX8925=m +CONFIG_BACKLIGHT_PCF50633=m +CONFIG_BACKLIGHT_PROGEAR=m +CONFIG_BACKLIGHT_PWM=m +CONFIG_BACKLIGHT_SAHARA=m +CONFIG_BACKLIGHT_WM831X=m +# CONFIG_BACKTRACE_SELF_TEST is not set +CONFIG_BASE_FULL=y +CONFIG_BASE_SMALL=0 +CONFIG_BATMAN_ADV=m +# CONFIG_BATMAN_ADV_DEBUG is not set +CONFIG_BATTERY_BQ20Z75=m +CONFIG_BATTERY_BQ27X00_I2C=y +CONFIG_BATTERY_BQ27X00_PLATFORM=y +CONFIG_BATTERY_BQ27x00=m +CONFIG_BATTERY_DA9030=m +CONFIG_BATTERY_DS2760=m +CONFIG_BATTERY_DS2780=m +CONFIG_BATTERY_DS2782=m +CONFIG_BATTERY_MAX17040=m +CONFIG_BATTERY_MAX17042=m +CONFIG_BATTERY_OLPC=m +CONFIG_BATTERY_PMU=m +CONFIG_BAYCOM_EPP=m +CONFIG_BAYCOM_PAR=m +CONFIG_BAYCOM_SER_FDX=m +CONFIG_BAYCOM_SER_HDX=m +CONFIG_BCMA=m +CONFIG_BCMA_BLOCKIO=y +# CONFIG_BCMA_DEBUG is not set +CONFIG_BCMA_HOST_PCI=y +CONFIG_BCMA_HOST_PCI_POSSIBLE=y +CONFIG_BCMA_POSSIBLE=y +CONFIG_BCM_WIMAX=m +# CONFIG_BDI_SWITCH is not set +CONFIG_BE2ISCSI=m +CONFIG_BE2NET=m +# CONFIG_BEFS_DEBUG is not set +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +CONFIG_BINFMT_AOUT=m +CONFIG_BINFMT_ELF=y +CONFIG_BINFMT_MISC=m +CONFIG_BITREVERSE=y +CONFIG_BLK_CGROUP=y +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_BLK_CPQ_DA=m +CONFIG_BLK_DEV=y +CONFIG_BLK_DEV_3W_XXXX_RAID=m +# CONFIG_BLK_DEV_AEC62XX is not set +# CONFIG_BLK_DEV_ALI15X3 is not set +# CONFIG_BLK_DEV_AMD74XX is not set +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_CRYPTOLOOP=m +# CONFIG_BLK_DEV_CS5520 is not set +# CONFIG_BLK_DEV_CS5530 is not set +CONFIG_BLK_DEV_DAC960=m +# CONFIG_BLK_DEV_DELKIN is not set +CONFIG_BLK_DEV_DM=y +CONFIG_BLK_DEV_DRBD=m +CONFIG_BLK_DEV_FD=m +# CONFIG_BLK_DEV_GENERIC is not set +# CONFIG_BLK_DEV_HD is not set +# CONFIG_BLK_DEV_HPT366 is not set +CONFIG_BLK_DEV_IDECD=y +CONFIG_BLK_DEV_IDECD_VERBOSE_ERRORS=y +# CONFIG_BLK_DEV_IDECS is not set +CONFIG_BLK_DEV_IDEDMA=y +CONFIG_BLK_DEV_IDEDMA_PCI=y +CONFIG_BLK_DEV_IDEDMA_SFF=y +CONFIG_BLK_DEV_IDEPCI=y +# CONFIG_BLK_DEV_IDETAPE is not set +CONFIG_BLK_DEV_IDE_PMAC=y +CONFIG_BLK_DEV_IDE_PMAC_ATA100FIRST=y +# CONFIG_BLK_DEV_IDE_SATA is not set +CONFIG_BLK_DEV_INITRD=y +CONFIG_BLK_DEV_INTEGRITY=y +CONFIG_BLK_DEV_IO_TRACE=y +# CONFIG_BLK_DEV_IT8172 is not set +# CONFIG_BLK_DEV_IT8213 is not set +# CONFIG_BLK_DEV_IT821X is not set +# CONFIG_BLK_DEV_JMICRON is not set +CONFIG_BLK_DEV_LOOP=y +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +CONFIG_BLK_DEV_MD=y +CONFIG_BLK_DEV_NBD=m +# CONFIG_BLK_DEV_NS87415 is not set +# CONFIG_BLK_DEV_OPTI621 is not set +CONFIG_BLK_DEV_OSD=m +CONFIG_BLK_DEV_PCIESSD_MTIP32XX=m +# CONFIG_BLK_DEV_PDC202XX_NEW is not set +# CONFIG_BLK_DEV_PDC202XX_OLD is not set +# CONFIG_BLK_DEV_PIIX is not set +# CONFIG_BLK_DEV_PLATFORM is not set +CONFIG_BLK_DEV_RAM=y +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=65536 +CONFIG_BLK_DEV_RBD=m +# CONFIG_BLK_DEV_SC1200 is not set +CONFIG_BLK_DEV_SD=y +# CONFIG_BLK_DEV_SIIMAGE is not set +# CONFIG_BLK_DEV_SL82C105 is not set +# CONFIG_BLK_DEV_SLC90E66 is not set +CONFIG_BLK_DEV_SR=y +# CONFIG_BLK_DEV_SVWKS is not set +CONFIG_BLK_DEV_SX8=m +# CONFIG_BLK_DEV_TC86C001 is not set +CONFIG_BLK_DEV_THROTTLING=y +# CONFIG_BLK_DEV_TRIFLEX is not set +# CONFIG_BLK_DEV_TRM290 is not set +CONFIG_BLK_DEV_UB=m +CONFIG_BLK_DEV_UMEM=m +# CONFIG_BLK_DEV_VIA82CXXX is not set +# CONFIG_BLK_DEV_XD is not set +CONFIG_BLOCK=y +CONFIG_BLOCK_COMPAT=y +CONFIG_BMAC=m +CONFIG_BMP085=m +CONFIG_BNA=m +CONFIG_BNX2=m +CONFIG_BNX2X=m +CONFIG_BONDING=m +# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0 +# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set +CONFIG_BOOTPARAM_HUNG_TASK_PANIC_VALUE=0 +# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set +CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0 +# CONFIG_BOOTX_TEXT is not set +CONFIG_BOOT_PRINTK_DELAY=y +CONFIG_BOUNCE=y +CONFIG_BPF_JIT=y +CONFIG_BPQETHER=m +CONFIG_BRANCH_PROFILE_NONE=y +# CONFIG_BRCMDBG is not set +CONFIG_BRCMFMAC=m +CONFIG_BRCMSMAC=m +CONFIG_BRCMUTIL=m +CONFIG_BRIDGE=m +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_IP6=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_LOG=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_NFLOG=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_ULOG=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_IGMP_SNOOPING=y +CONFIG_BRIDGE_NETFILTER=y +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIQ_PANEL=m +CONFIG_BROADCOM_PHY=y +CONFIG_BROKEN_ON_SMP=y +CONFIG_BSD_PROCESS_ACCT_V3=y +CONFIG_BT=m +CONFIG_BTRFS_FS=m +CONFIG_BT_ATH3K=m +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_CMTP=m +CONFIG_BT_HCIBCM203X=m +CONFIG_BT_HCIBFUSB=m +CONFIG_BT_HCIBLUECARD=m +CONFIG_BT_HCIBPA10X=m +CONFIG_BT_HCIBT3C=m +CONFIG_BT_HCIBTSDIO=m +CONFIG_BT_HCIBTUART=m +CONFIG_BT_HCIBTUSB=m +CONFIG_BT_HCIDTL1=m +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_ATH3K=y +CONFIG_BT_HCIUART_BCSP=y +CONFIG_BT_HCIUART_H4=y +CONFIG_BT_HCIUART_LL=y +CONFIG_BT_HCIVHCI=m +CONFIG_BT_HIDP=m +CONFIG_BT_L2CAP=y +CONFIG_BT_MRVL=m +CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_SCO=y +CONFIG_BT_WILINK=m +CONFIG_BUG=y +CONFIG_C101=m +CONFIG_C2PORT=m +CONFIG_C2PORT_DURAMAR_2150=m +CONFIG_CACHEFILES=m +# CONFIG_CACHEFILES_DEBUG is not set +# CONFIG_CACHEFILES_HISTOGRAM is not set +CONFIG_CACHE_L2X0=y +CONFIG_CACHE_PL310=y +CONFIG_CAIF=m +# CONFIG_CAIF_DEBUG is not set +CONFIG_CAIF_HSI=m +CONFIG_CAIF_NETDEV=m +CONFIG_CAIF_SPI_SLAVE=m +# CONFIG_CAIF_SPI_SYNC is not set +CONFIG_CAIF_TTY=m +CONFIG_CALGARY_IOMMU=y +CONFIG_CALGARY_IOMMU_ENABLED_BY_DEFAULT=y +CONFIG_CAN=m +CONFIG_CAN_BCM=m +CONFIG_CAN_CALC_BITTIMING=y +CONFIG_CAN_C_CAN=m +# CONFIG_CAN_DEBUG_DEVICES is not set +CONFIG_CAN_DEV=m +CONFIG_CAN_EMS_PCI=m +CONFIG_CAN_EMS_PCMCIA=m +CONFIG_CAN_EMS_USB=m +CONFIG_CAN_ESD_USB2=m +CONFIG_CAN_GW=m +CONFIG_CAN_JANZ_ICAN3=m +CONFIG_CAN_KVASER_PCI=m +CONFIG_CAN_MCP251X=m +CONFIG_CAN_MSCAN=m +CONFIG_CAN_PEAK_PCI=m +CONFIG_CAN_PLX_PCI=m +CONFIG_CAN_PM_TRACE=y +CONFIG_CAN_RAW=m +CONFIG_CAN_SJA1000=m +CONFIG_CAN_SJA1000_ISA=m +CONFIG_CAN_SJA1000_OF_PLATFORM=m +CONFIG_CAN_SJA1000_PLATFORM=m +CONFIG_CAN_SLCAN=m +CONFIG_CAN_SOFTING=m +CONFIG_CAN_SOFTING_CS=m +CONFIG_CAN_TI_HECC=m +CONFIG_CAN_TSCAN1=m +CONFIG_CAN_VCAN=m +CONFIG_CAPI_AVM=y +CONFIG_CAPI_EICON=y +CONFIG_CAPI_TRACE=y +CONFIG_CARDBUS=y +CONFIG_CARDMAN_4000=m +CONFIG_CARDMAN_4040=m +CONFIG_CARL9170=m +# CONFIG_CARL9170_DEBUGFS is not set +CONFIG_CARL9170_HWRNG=y +CONFIG_CARL9170_LEDS=y +CONFIG_CARL9170_WPC=y +# CONFIG_CARMINE_DRAM_CUSTOM is not set +CONFIG_CASSINI=m +CONFIG_CB710_CORE=m +# CONFIG_CB710_DEBUG is not set +CONFIG_CB710_DEBUG_ASSUMPTIONS=y +CONFIG_CBE_CPUFREQ_SPU_GOVERNOR=m +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +CONFIG_CC_STACKPROTECTOR=y +CONFIG_CDROM_PKTCDVD=m +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +# CONFIG_CDROM_PKTCDVD_WCACHE is not set +CONFIG_CEPH_FS=m +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +CONFIG_CEPH_LIB_USE_DNS_RESOLVER=y +CONFIG_CFAG12864B=m +CONFIG_CFAG12864B_RATE=20 +CONFIG_CFG80211=m +CONFIG_CFG80211_DEBUGFS=y +CONFIG_CFG80211_DEFAULT_PS=y +# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set +# CONFIG_CFG80211_INTERNAL_REGDB is not set +CONFIG_CFG80211_WEXT=y +CONFIG_CFQ_GROUP_IOSCHED=y +CONFIG_CFS_BANDWIDTH=y +CONFIG_CGROUP_CPUACCT=y +# CONFIG_CGROUP_DEBUG is not set +CONFIG_CGROUP_DEVICE=y +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_MEM_RES_CTLR=y +CONFIG_CGROUP_MEM_RES_CTLR_SWAP_ENABLED=y +CONFIG_CGROUP_PERF=y +CONFIG_CGROUP_SCHED=y +CONFIG_CHARGER_GPIO=m +CONFIG_CHARGER_ISP1704=m +CONFIG_CHARGER_MAX8903=m +CONFIG_CHARGER_MAX8997=m +CONFIG_CHARGER_MAX8998=m +CONFIG_CHARGER_PCF50633=m +CONFIG_CHARGER_TWL4030=m +CONFIG_CHECK_SIGNATURE=y +CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T3=m +CONFIG_CHELSIO_T4=m +CONFIG_CHELSIO_T4VF=m +CONFIG_CHR_DEV_OSST=m +CONFIG_CHR_DEV_SCH=m +CONFIG_CHR_DEV_SG=y +CONFIG_CHR_DEV_ST=m +CONFIG_CICADA_PHY=y +CONFIG_CIFS=m +# CONFIG_CIFS_ACL is not set +# CONFIG_CIFS_DEBUG2 is not set +CONFIG_CIFS_DFS_UPCALL=y +# CONFIG_CIFS_FSCACHE is not set +CONFIG_CIFS_POSIX=y +# CONFIG_CIFS_STATS is not set +CONFIG_CIFS_UPCALL=y +CONFIG_CIFS_WEAK_PW_HASH=y +CONFIG_CISS_SCSI_TAPE=y +CONFIG_CLKBLD_I8253=y +CONFIG_CLKDEV_LOOKUP=y +CONFIG_CLKEVT_I8253=y +CONFIG_CLKSRC_I8253=y +CONFIG_CLKSRC_MMIO=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_CLS_U32_MARK=y +# CONFIG_CLS_U32_PERF is not set +CONFIG_CMDLINE="" +# CONFIG_CMDLINE_BOOL is not set +CONFIG_CMM=y +CONFIG_CMPXCHG_DOUBLE=y +CONFIG_CMPXCHG_LOCAL=y +CONFIG_CNIC=m +CONFIG_CODA_FS=m +# CONFIG_CODE_PATCHING_SELFTEST is not set +CONFIG_COMEDI_8255=m +CONFIG_COMEDI_ACL7225B=m +CONFIG_COMEDI_ADDI_APCI_035=m +CONFIG_COMEDI_ADDI_APCI_1032=m +CONFIG_COMEDI_ADDI_APCI_1500=m +CONFIG_COMEDI_ADDI_APCI_1516=m +CONFIG_COMEDI_ADDI_APCI_1564=m +CONFIG_COMEDI_ADDI_APCI_16XX=m +CONFIG_COMEDI_ADDI_APCI_2016=m +CONFIG_COMEDI_ADDI_APCI_2032=m +CONFIG_COMEDI_ADDI_APCI_2200=m +CONFIG_COMEDI_ADDI_APCI_3001=m +CONFIG_COMEDI_ADDI_APCI_3120=m +CONFIG_COMEDI_ADDI_APCI_3501=m +CONFIG_COMEDI_ADDI_APCI_3XXX=m +CONFIG_COMEDI_ADL_PCI6208=m +CONFIG_COMEDI_ADL_PCI7230=m +CONFIG_COMEDI_ADL_PCI7296=m +CONFIG_COMEDI_ADL_PCI7432=m +CONFIG_COMEDI_ADL_PCI8164=m +CONFIG_COMEDI_ADL_PCI9111=m +CONFIG_COMEDI_ADL_PCI9118=m +CONFIG_COMEDI_ADQ12B=m +CONFIG_COMEDI_ADV_PCI1710=m +CONFIG_COMEDI_ADV_PCI1723=m +CONFIG_COMEDI_ADV_PCI_DIO=m +CONFIG_COMEDI_AIO_AIO12_8=m +CONFIG_COMEDI_AIO_IIRO_16=m +CONFIG_COMEDI_AMPLC_DIO200=m +CONFIG_COMEDI_AMPLC_PC236=m +CONFIG_COMEDI_AMPLC_PC263=m +CONFIG_COMEDI_AMPLC_PCI224=m +CONFIG_COMEDI_AMPLC_PCI230=m +CONFIG_COMEDI_BOND=m +CONFIG_COMEDI_C6XDIGIO=m +CONFIG_COMEDI_CB_DAS16_CS=m +CONFIG_COMEDI_CB_PCIDAS=m +CONFIG_COMEDI_CB_PCIDAS64=m +CONFIG_COMEDI_CB_PCIDDA=m +CONFIG_COMEDI_CB_PCIDIO=m +CONFIG_COMEDI_CB_PCIMDAS=m +CONFIG_COMEDI_CB_PCIMDDA=m +CONFIG_COMEDI_CONTEC_PCI_DIO=m +CONFIG_COMEDI_DAQBOARD2000=m +CONFIG_COMEDI_DAS08=m +CONFIG_COMEDI_DAS08_CS=m +CONFIG_COMEDI_DAS16=m +CONFIG_COMEDI_DAS16M1=m +CONFIG_COMEDI_DAS1800=m +CONFIG_COMEDI_DAS6402=m +CONFIG_COMEDI_DAS800=m +# CONFIG_COMEDI_DEBUG is not set +CONFIG_COMEDI_DEFAULT_BUF_MAXSIZE_KB=20480 +CONFIG_COMEDI_DEFAULT_BUF_SIZE_KB=2048 +CONFIG_COMEDI_DMM32AT=m +CONFIG_COMEDI_DT2801=m +CONFIG_COMEDI_DT2811=m +CONFIG_COMEDI_DT2814=m +CONFIG_COMEDI_DT2815=m +CONFIG_COMEDI_DT2817=m +CONFIG_COMEDI_DT282X=m +CONFIG_COMEDI_DT3000=m +CONFIG_COMEDI_DT9812=m +CONFIG_COMEDI_DYNA_PCI10XX=m +CONFIG_COMEDI_FC=m +CONFIG_COMEDI_FL512=m +CONFIG_COMEDI_GSC_HPDI=m +CONFIG_COMEDI_ICP_MULTI=m +CONFIG_COMEDI_II_PCI20KC=m +CONFIG_COMEDI_ISA_DRIVERS=m +CONFIG_COMEDI_JR3_PCI=m +CONFIG_COMEDI_KCOMEDILIB=m +CONFIG_COMEDI_KE_COUNTER=m +CONFIG_COMEDI_ME4000=m +CONFIG_COMEDI_ME_DAQ=m +CONFIG_COMEDI_MISC_DRIVERS=m +CONFIG_COMEDI_MITE=m +CONFIG_COMEDI_MPC624=m +CONFIG_COMEDI_MULTIQ3=m +CONFIG_COMEDI_NI_6527=m +CONFIG_COMEDI_NI_65XX=m +CONFIG_COMEDI_NI_660X=m +CONFIG_COMEDI_NI_670X=m +CONFIG_COMEDI_NI_ATMIO=m +CONFIG_COMEDI_NI_ATMIO16D=m +CONFIG_COMEDI_NI_AT_A2150=m +CONFIG_COMEDI_NI_AT_AO=m +CONFIG_COMEDI_NI_COMMON=m +CONFIG_COMEDI_NI_DAQ_700_CS=m +CONFIG_COMEDI_NI_DAQ_DIO24_CS=m +CONFIG_COMEDI_NI_LABPC=m +CONFIG_COMEDI_NI_LABPC_CS=m +CONFIG_COMEDI_NI_MIO_CS=m +CONFIG_COMEDI_NI_PCIDIO=m +CONFIG_COMEDI_NI_PCIMIO=m +CONFIG_COMEDI_NI_TIO=m +CONFIG_COMEDI_PARPORT=m +CONFIG_COMEDI_PCI_DRIVERS=m +CONFIG_COMEDI_PCL711=m +CONFIG_COMEDI_PCL724=m +CONFIG_COMEDI_PCL725=m +CONFIG_COMEDI_PCL726=m +CONFIG_COMEDI_PCL730=m +CONFIG_COMEDI_PCL812=m +CONFIG_COMEDI_PCL816=m +CONFIG_COMEDI_PCL818=m +CONFIG_COMEDI_PCM3724=m +CONFIG_COMEDI_PCM3730=m +CONFIG_COMEDI_PCMAD=m +CONFIG_COMEDI_PCMCIA_DRIVERS=m +CONFIG_COMEDI_PCMDA12=m +CONFIG_COMEDI_PCMMIO=m +CONFIG_COMEDI_PCMUIO=m +CONFIG_COMEDI_POC=m +CONFIG_COMEDI_QUATECH_DAQP_CS=m +CONFIG_COMEDI_RTD520=m +CONFIG_COMEDI_RTI800=m +CONFIG_COMEDI_RTI802=m +CONFIG_COMEDI_S526=m +CONFIG_COMEDI_S626=m +CONFIG_COMEDI_SERIAL2002=m +CONFIG_COMEDI_SKEL=m +CONFIG_COMEDI_SSV_DNP=m +CONFIG_COMEDI_TEST=m +CONFIG_COMEDI_UNIOXX5=m +CONFIG_COMEDI_USBDUX=m +CONFIG_COMEDI_USBDUXFAST=m +CONFIG_COMEDI_USBDUXSIGMA=m +CONFIG_COMEDI_USB_DRIVERS=m +CONFIG_COMEDI_VMK80XX=m +CONFIG_COMPAL_LAPTOP=m +CONFIG_COMPAT=y +CONFIG_COMPAT_BINFMT_ELF=y +# CONFIG_COMPAT_BRK is not set +CONFIG_COMPAT_FOR_U64_ALIGNMENT=y +CONFIG_COMPAT_NETLINK_MESSAGES=y +# CONFIG_COMPAT_VDSO is not set +CONFIG_CONFIGFS_FS=m +CONFIG_CONNECTOR=y +CONFIG_CONSOLE_POLL=y +CONFIG_CONSOLE_TRANSLATIONS=y +CONFIG_CONTEXT_SWITCH_TRACER=y +CONFIG_COPS=m +CONFIG_COPS_DAYNA=y +CONFIG_COPS_TANGENT=y +CONFIG_COSA=m +# CONFIG_CPA_DEBUG is not set +CONFIG_CPU5_WDT=m +CONFIG_CPUSETS=y +CONFIG_CPU_32v6K=y +CONFIG_CPU_32v7=y +CONFIG_CPU_ABRT_EV7=y +# CONFIG_CPU_BPREDICT_DISABLE is not set +CONFIG_CPU_CACHE_V7=y +CONFIG_CPU_CACHE_VIPT=y +CONFIG_CPU_COPY_V6=y +CONFIG_CPU_CP15=y +CONFIG_CPU_CP15_MMU=y +# CONFIG_CPU_DCACHE_DISABLE is not set +CONFIG_CPU_FREQ=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE=y +# CONFIG_CPU_FREQ_DEFAULT_GOV_POWERSAVE is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=y +CONFIG_CPU_FREQ_GOV_POWERSAVE=y +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_MAPLE=y +CONFIG_CPU_FREQ_PMAC=y +CONFIG_CPU_FREQ_PMAC64=y +CONFIG_CPU_FREQ_STAT_DETAILS=y +CONFIG_CPU_FREQ_TABLE=y +CONFIG_CPU_HAS_ASID=y +CONFIG_CPU_HAS_PMU=y +# CONFIG_CPU_ICACHE_DISABLE is not set +CONFIG_CPU_IDLE_GOV_LADDER=y +CONFIG_CPU_IDLE_GOV_MENU=y +CONFIG_CPU_NOTIFIER_ERROR_INJECT=m +CONFIG_CPU_PABRT_V7=y +CONFIG_CPU_PM=y +CONFIG_CPU_RMAP=y +CONFIG_CPU_SUP_AMD=y +CONFIG_CPU_SUP_CENTAUR=y +CONFIG_CPU_SUP_CYRIX_32=y +CONFIG_CPU_SUP_INTEL=y +CONFIG_CPU_SUP_TRANSMETA_32=y +CONFIG_CPU_SUP_UMC_32=y +CONFIG_CPU_TLB_V7=y +CONFIG_CPU_V7=y +CONFIG_CRAMFS=m +CONFIG_CRC16=y +CONFIG_CRC32=y +CONFIG_CRC7=m +CONFIG_CRC8=m +CONFIG_CRC_CCITT=m +CONFIG_CRC_ITU_T=m +CONFIG_CRC_T10DIF=y +CONFIG_CROSS_COMPILE="" +CONFIG_CRYPTO=y +CONFIG_CRYPTO_AEAD=m +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_AES=y +CONFIG_CRYPTO_AES_586=m +CONFIG_CRYPTO_AES_NI_INTEL=m +CONFIG_CRYPTO_AES_X86_64=m +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +CONFIG_CRYPTO_ANSI_CPRNG=m +CONFIG_CRYPTO_ANUBIS=m +CONFIG_CRYPTO_ARC4=m +CONFIG_CRYPTO_AUTHENC=m +CONFIG_CRYPTO_BLKCIPHER=y +CONFIG_CRYPTO_BLKCIPHER2=y +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_BLOWFISH_COMMON=m +CONFIG_CRYPTO_BLOWFISH_X86_64=m +CONFIG_CRYPTO_CAMELLIA=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_CBC=y +CONFIG_CRYPTO_CCM=m +CONFIG_CRYPTO_CRC32C=y +CONFIG_CRYPTO_CRC32C_INTEL=y +CONFIG_CRYPTO_CRYPTD=m +CONFIG_CRYPTO_CTR=m +CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_DEV_GEODE=m +CONFIG_CRYPTO_DEV_HIFN_795X=m +CONFIG_CRYPTO_DEV_HIFN_795X_RNG=y +CONFIG_CRYPTO_DEV_OMAP_AES=m +CONFIG_CRYPTO_DEV_OMAP_SHAM=m +CONFIG_CRYPTO_DEV_PADLOCK=y +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m +CONFIG_CRYPTO_ECB=y +CONFIG_CRYPTO_FCRYPT=m +CONFIG_CRYPTO_GCM=m +CONFIG_CRYPTO_GF128MUL=m +CONFIG_CRYPTO_GHASH=m +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_HW=y +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_LZO=m +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_PCOMP=m +CONFIG_CRYPTO_PCOMP2=y +CONFIG_CRYPTO_PCRYPT=m +CONFIG_CRYPTO_RMD128=m +CONFIG_CRYPTO_RMD160=m +CONFIG_CRYPTO_RMD256=m +CONFIG_CRYPTO_RMD320=m +CONFIG_CRYPTO_RNG=y +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_SALSA20=m +CONFIG_CRYPTO_SALSA20_586=m +CONFIG_CRYPTO_SALSA20_X86_64=m +CONFIG_CRYPTO_SEED=m +CONFIG_CRYPTO_SEQIV=m +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_SHA1=y +CONFIG_CRYPTO_SHA1_SSSE3=m +CONFIG_CRYPTO_SHA256=y +CONFIG_CRYPTO_SHA512=m +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_TEST=m +CONFIG_CRYPTO_TGR192=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_586=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_TWOFISH_X86_64=m +CONFIG_CRYPTO_TWOFISH_X86_64_3WAY=m +CONFIG_CRYPTO_USER=m +CONFIG_CRYPTO_USER_API=m +CONFIG_CRYPTO_USER_API_HASH=m +CONFIG_CRYPTO_USER_API_SKCIPHER=m +CONFIG_CRYPTO_VMAC=m +CONFIG_CRYPTO_WORKQUEUE=y +CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_XCBC=m +CONFIG_CRYPTO_XTS=m +CONFIG_CRYPTO_ZLIB=m +CONFIG_CRYSTALHD=m +# CONFIG_CS5535_MFGPT is not set +CONFIG_CS89x0=m +CONFIG_CUSE=m +CONFIG_CXT1E1=m +CONFIG_CYCLADES=m +CONFIG_CYCLADES_SYNC=m +CONFIG_CYCLOMX_X25=y +# CONFIG_CYZ_INTR is not set +CONFIG_DAVICOM_PHY=y +CONFIG_DCA=m +CONFIG_DCB=y +CONFIG_DCDBAS=m +CONFIG_DE2104X=m +CONFIG_DE2104X_DSL=0 +CONFIG_DE4X5=m +CONFIG_DE600=m +CONFIG_DE620=m +CONFIG_DEBUGGER=y +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_BLK_CGROUP is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +CONFIG_DEBUG_BUGVERBOSE=y +# CONFIG_DEBUG_CREDENTIALS is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +CONFIG_DEBUG_FS=y +# CONFIG_DEBUG_GPIO is not set +# CONFIG_DEBUG_HIGHMEM is not set +# CONFIG_DEBUG_ICEDCC is not set +# CONFIG_DEBUG_INFO_REDUCED is not set +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_LIST is not set +CONFIG_DEBUG_LL=y +CONFIG_DEBUG_LL_UART_NONE=y +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +CONFIG_DEBUG_MEMORY_INIT=y +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_NX_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +CONFIG_DEBUG_RODATA=y +# CONFIG_DEBUG_RODATA_TEST is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +CONFIG_DEBUG_SET_MODULE_RONX=y +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_SHIRQ is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_STACKOVERFLOW is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_WRITECOUNT is not set +CONFIG_DECNET=m +CONFIG_DECNET_NF_GRABULATOR=m +# CONFIG_DECNET_ROUTER is not set +CONFIG_DECOMPRESS_BZIP2=y +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_LZO=y +CONFIG_DECOMPRESS_XZ=y +CONFIG_DEFAULT_CUBIC=y +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120 +CONFIG_DEFAULT_IO_DELAY_TYPE=1 +CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4 +# CONFIG_DEFAULT_NOOP is not set +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_SECURITY="apparmor" +CONFIG_DEFAULT_SECURITY_APPARMOR=y +# CONFIG_DEFAULT_SECURITY_DAC is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_SMACK is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +# CONFIG_DEFAULT_SECURITY_YAMA is not set +CONFIG_DEFAULT_TCP_CONG="cubic" +# CONFIG_DEFAULT_UIMAGE is not set +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +CONFIG_DEFXX=m +# CONFIG_DEFXX_MMIO is not set +CONFIG_DELL_LAPTOP=m +CONFIG_DELL_RBU=m +CONFIG_DELL_WMI=m +CONFIG_DELL_WMI_AIO=m +CONFIG_DEPCA=m +# CONFIG_DEPRECATED_PARAM_STRUCT is not set +CONFIG_DETECT_HUNG_TASK=y +CONFIG_DEVFREQ_GOV_PERFORMANCE=y +CONFIG_DEVFREQ_GOV_POWERSAVE=y +CONFIG_DEVFREQ_GOV_SIMPLE_ONDEMAND=y +CONFIG_DEVFREQ_GOV_USERSPACE=y +# CONFIG_DEVKMEM is not set +CONFIG_DEVPORT=y +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +CONFIG_DEV_APPLETALK=m +CONFIG_DE_AOC=y +CONFIG_DIRECT_GBPAGES=y +CONFIG_DISPLAY_SUPPORT=m +CONFIG_DL2K=m +CONFIG_DLCI=m +CONFIG_DLCI_MAX=8 +CONFIG_DLM=m +# CONFIG_DLM_DEBUG is not set +# CONFIG_DM9000_FORCE_SIMPLE_PHY_POLL is not set +CONFIG_DM9102=m +CONFIG_DMADEVICES=y +# CONFIG_DMADEVICES_DEBUG is not set +CONFIG_DMAR_TABLE=y +# CONFIG_DMATEST is not set +# CONFIG_DMA_API_DEBUG is not set +CONFIG_DMA_ENGINE=y +CONFIG_DMI=y +CONFIG_DMIID=y +CONFIG_DMI_SYSFS=m +CONFIG_DM_BUFIO=m +CONFIG_DM_CRYPT=m +# CONFIG_DM_DEBUG is not set +# CONFIG_DM_DEBUG_BLOCK_STACK_TRACING is not set +# CONFIG_DM_DEBUG_SPACE_MAPS is not set +# CONFIG_DM_DELAY is not set +# CONFIG_DM_FLAKEY is not set +# CONFIG_DM_LOG_USERSPACE is not set +CONFIG_DM_MIRROR=m +CONFIG_DM_MULTIPATH=m +CONFIG_DM_MULTIPATH_QL=m +CONFIG_DM_MULTIPATH_ST=m +CONFIG_DM_PERSISTENT_DATA=m +CONFIG_DM_RAID=m +CONFIG_DM_SNAPSHOT=m +CONFIG_DM_THIN_PROVISIONING=m +CONFIG_DM_UEVENT=y +CONFIG_DM_ZERO=m +CONFIG_DNET=m +CONFIG_DNOTIFY=y +CONFIG_DNS_RESOLVER=y +CONFIG_DONGLE=y +CONFIG_DOUBLEFAULT=y +CONFIG_DRAGONRISE_FF=y +# CONFIG_DRBD_FAULT_INJECTION is not set +CONFIG_DRM=m +CONFIG_DRM_I2C_CH7006=m +CONFIG_DRM_I2C_SIL164=m +CONFIG_DRM_I810=m +CONFIG_DRM_I915=m +CONFIG_DRM_I915_KMS=y +CONFIG_DRM_KMS_HELPER=m +CONFIG_DRM_LOAD_EDID_FIRMWARE=y +CONFIG_DRM_MGA=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +CONFIG_DRM_NOUVEAU_DEBUG=y +# CONFIG_DRM_PSB_CDV is not set +CONFIG_DRM_PSB_MFLD=y +CONFIG_DRM_PSB_MRST=y +CONFIG_DRM_R128=m +CONFIG_DRM_RADEON=m +CONFIG_DRM_RADEON_KMS=y +CONFIG_DRM_SAVAGE=m +CONFIG_DRM_SIS=m +CONFIG_DRM_TDFX=m +CONFIG_DRM_TTM=m +CONFIG_DRM_VIA=m +CONFIG_DRM_VMWGFX=m +CONFIG_DS1682=m +CONFIG_DSCC4=m +CONFIG_DSCC4_PCISYNC=y +CONFIG_DSCC4_PCI_RST=y +# CONFIG_DT3155_CCIR is not set +CONFIG_DT3155_STREAMING=y +CONFIG_DTC=y +CONFIG_DTL=y +CONFIG_DTLK=m +CONFIG_DUMMY=m +CONFIG_DUMMY_CONSOLE=y +CONFIG_DVB_A8293=m +CONFIG_DVB_AF9013=m +CONFIG_DVB_AS102=m +CONFIG_DVB_ATBM8830=m +CONFIG_DVB_AU8522=m +CONFIG_DVB_AV7110=m +CONFIG_DVB_AV7110_OSD=y +CONFIG_DVB_B2C2_FLEXCOP=m +# CONFIG_DVB_B2C2_FLEXCOP_DEBUG is not set +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +CONFIG_DVB_B2C2_FLEXCOP_USB=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_BT8XX=m +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_CORE=m +CONFIG_DVB_BUDGET_PATCH=m +CONFIG_DVB_CAPTURE_DRIVERS=y +CONFIG_DVB_CORE=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24116=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_CXD2099=m +CONFIG_DVB_CXD2820R=m +CONFIG_DVB_DDBRIDGE=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m +CONFIG_DVB_DIB8000=m +CONFIG_DVB_DIB9000=m +CONFIG_DVB_DM1105=m +CONFIG_DVB_DRXD=m +CONFIG_DVB_DRXK=m +CONFIG_DVB_DS3000=m +# CONFIG_DVB_DUMMY_FE is not set +CONFIG_DVB_DYNAMIC_MINORS=y +CONFIG_DVB_EC100=m +CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_INPUT=y +CONFIG_DVB_HOPPER=m +CONFIG_DVB_ISL6405=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_ISL6423=m +CONFIG_DVB_IT913X_FE=m +CONFIG_DVB_IX2505V=m +CONFIG_DVB_L64781=m +CONFIG_DVB_LGDT3305=m +CONFIG_DVB_LGDT330X=m +CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_LNBP21=m +CONFIG_DVB_LNBP22=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_MAX_ADAPTERS=8 +CONFIG_DVB_MB86A16=m +CONFIG_DVB_MB86A20S=m +CONFIG_DVB_MT312=m +CONFIG_DVB_MT352=m +CONFIG_DVB_NET=y +CONFIG_DVB_NGENE=m +CONFIG_DVB_NXT200X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_PLL=m +CONFIG_DVB_PLUTO2=m +CONFIG_DVB_PT1=m +CONFIG_DVB_S5H1409=m +CONFIG_DVB_S5H1411=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_S5H1432=m +CONFIG_DVB_S921=m +CONFIG_DVB_SI21XX=m +CONFIG_DVB_SP8870=m +CONFIG_DVB_SP887X=m +CONFIG_DVB_STB0899=m +CONFIG_DVB_STB6000=m +CONFIG_DVB_STB6100=m +CONFIG_DVB_STV0288=m +CONFIG_DVB_STV0297=m +CONFIG_DVB_STV0299=m +CONFIG_DVB_STV0367=m +CONFIG_DVB_STV0900=m +CONFIG_DVB_STV090x=m +CONFIG_DVB_STV6110=m +CONFIG_DVB_STV6110x=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m +CONFIG_DVB_TDA10048=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_TDA10071=m +CONFIG_DVB_TDA10086=m +CONFIG_DVB_TDA18271C2DD=m +CONFIG_DVB_TDA665x=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_TDA8261=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_DVB_TUA6100=m +CONFIG_DVB_TUNER_CX24113=m +CONFIG_DVB_TUNER_DIB0070=m +CONFIG_DVB_TUNER_DIB0090=m +CONFIG_DVB_TUNER_ITD1000=m +CONFIG_DVB_USB=m +CONFIG_DVB_USB_A800=m +CONFIG_DVB_USB_AF9005=m +CONFIG_DVB_USB_AF9005_REMOTE=m +CONFIG_DVB_USB_AF9015=m +CONFIG_DVB_USB_ANYSEE=m +CONFIG_DVB_USB_AU6610=m +CONFIG_DVB_USB_AZ6027=m +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_CINERGY_T2=m +CONFIG_DVB_USB_CXUSB=m +# CONFIG_DVB_USB_DEBUG is not set +CONFIG_DVB_USB_DIB0700=m +CONFIG_DVB_USB_DIBUSB_MB=m +CONFIG_DVB_USB_DIBUSB_MC=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_DTV5100=m +CONFIG_DVB_USB_DW2102=m +CONFIG_DVB_USB_EC168=m +CONFIG_DVB_USB_FRIIO=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_IT913X=m +CONFIG_DVB_USB_LME2510=m +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_MXL111SF=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_OPERA1=m +CONFIG_DVB_USB_PCTV452E=m +CONFIG_DVB_USB_TECHNISAT_USB2=m +CONFIG_DVB_USB_TTUSB2=m +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_VES1820=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_ZL10036=m +CONFIG_DVB_ZL10039=m +CONFIG_DVB_ZL10353=m +CONFIG_DW_WATCHDOG=m +CONFIG_DX_SEP=m +# CONFIG_DYNAMIC_DEBUG is not set +CONFIG_DYNAMIC_FTRACE=y +CONFIG_E100=m +CONFIG_E1000=m +CONFIG_E1000E=m +# CONFIG_E200 is not set +CONFIG_E2100=m +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +CONFIG_EASYCAP=m +# CONFIG_EASYCAP_DEBUG is not set +CONFIG_ECHO=m +CONFIG_ECONET=m +CONFIG_ECONET_AUNUDP=y +CONFIG_ECONET_NATIVE=y +CONFIG_ECRYPT_FS=y +CONFIG_EDAC=y +CONFIG_EDAC_AMD64=m +# CONFIG_EDAC_AMD64_ERROR_INJECTION is not set +CONFIG_EDAC_AMD76X=m +CONFIG_EDAC_AMD8111=m +CONFIG_EDAC_AMD8131=m +CONFIG_EDAC_CPC925=m +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=m +CONFIG_EDAC_E752X=m +CONFIG_EDAC_E7XXX=m +CONFIG_EDAC_I3000=m +CONFIG_EDAC_I3200=m +CONFIG_EDAC_I5000=m +CONFIG_EDAC_I5100=m +CONFIG_EDAC_I5400=m +CONFIG_EDAC_I7300=m +CONFIG_EDAC_I7CORE=m +CONFIG_EDAC_I82860=m +CONFIG_EDAC_I82875P=m +CONFIG_EDAC_I82975X=m +CONFIG_EDAC_MCE_INJ=m +CONFIG_EDAC_MM_EDAC=m +CONFIG_EDAC_PASEMI=m +CONFIG_EDAC_R82600=m +CONFIG_EDAC_SBRIDGE=m +CONFIG_EDAC_X38=m +CONFIG_EDD=y +CONFIG_EDD_OFF=y +CONFIG_EEEPC_LAPTOP=m +CONFIG_EEEPC_WMI=m +CONFIG_EEH=y +CONFIG_EEPROM_93CX6=m +CONFIG_EEPROM_93XX46=m +CONFIG_EEPROM_AT24=m +CONFIG_EEPROM_AT25=m +CONFIG_EEPROM_LEGACY=m +CONFIG_EEPROM_MAX6875=m +CONFIG_EEXPRESS=m +CONFIG_EEXPRESS_PRO=m +CONFIG_EFI=y +CONFIG_EFI_PARTITION=y +CONFIG_EFI_VARS=y +CONFIG_EFS_FS=m +CONFIG_EHEA=m +CONFIG_EISA=y +CONFIG_EISA_NAMES=y +CONFIG_EISA_PCI_EISA=y +CONFIG_EISA_VIRTUAL_ROOT=y +CONFIG_EISA_VLB_PRIMING=y +CONFIG_EL1=m +CONFIG_EL16=m +CONFIG_EL2=m +CONFIG_EL3=m +CONFIG_ELECTRA_CF=m +CONFIG_ELF_CORE=y +CONFIG_ELMC=m +CONFIG_ELMC_II=m +CONFIG_ELPLUS=m +# CONFIG_EMBEDDED is not set +CONFIG_ENC28J60=m +# CONFIG_ENC28J60_WRITEVERIFY is not set +CONFIG_ENCLOSURE_SERVICES=m +CONFIG_ENCRYPTED_KEYS=y +CONFIG_ENIC=m +# CONFIG_EPAPR_BOOT is not set +CONFIG_EPIC100=m +CONFIG_EPOLL=y +CONFIG_EQUALIZER=m +CONFIG_ES3210=m +CONFIG_ESI_DONGLE=m +CONFIG_ET131X=m +CONFIG_ETH16I=m +CONFIG_ETHERNET=y +CONFIG_ETHOC=m +CONFIG_EUROTECH_WDT=m +CONFIG_EVENTFD=y +CONFIG_EVENT_POWER_TRACING_DEPRECATED=y +CONFIG_EVENT_TRACING=y +CONFIG_EWRK3=m +# CONFIG_EXOFS_DEBUG is not set +CONFIG_EXOFS_FS=m +CONFIG_EXPERIMENTAL=y +CONFIG_EXPORTFS=y +CONFIG_EXT2_FS=m +CONFIG_EXT2_FS_POSIX_ACL=y +CONFIG_EXT2_FS_SECURITY=y +CONFIG_EXT2_FS_XATTR=y +# CONFIG_EXT2_FS_XIP is not set +CONFIG_EXT3_DEFAULTS_TO_ORDERED=y +CONFIG_EXT3_FS=y +CONFIG_EXT3_FS_POSIX_ACL=y +CONFIG_EXT3_FS_SECURITY=y +CONFIG_EXT3_FS_XATTR=y +# CONFIG_EXT4_DEBUG is not set +CONFIG_EXT4_FS=y +CONFIG_EXT4_FS_POSIX_ACL=y +CONFIG_EXT4_FS_SECURITY=y +CONFIG_EXT4_FS_XATTR=y +CONFIG_EXTRA_FIRMWARE="" +CONFIG_EXTRA_TARGETS="" +CONFIG_F71808E_WDT=m +CONFIG_FAIR_GROUP_SCHED=y +CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y +CONFIG_FARSYNC=m +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +# CONFIG_FAULT_INJECTION is not set +CONFIG_FB=y +# CONFIG_FB_3DFX_ACCEL is not set +CONFIG_FB_3DFX_I2C=y +CONFIG_FB_ARC=m +CONFIG_FB_ARK=m +CONFIG_FB_ASILIANT=y +CONFIG_FB_ATY=m +CONFIG_FB_ATY128_BACKLIGHT=y +CONFIG_FB_ATY_BACKLIGHT=y +CONFIG_FB_ATY_CT=y +CONFIG_FB_ATY_GENERIC_LCD=y +CONFIG_FB_ATY_GX=y +CONFIG_FB_BROADSHEET=m +CONFIG_FB_CARILLO_RANCH=m +CONFIG_FB_CARMINE=m +CONFIG_FB_CARMINE_DRAM_EVAL=y +# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set +CONFIG_FB_CIRRUS=m +CONFIG_FB_CONTROL=y +CONFIG_FB_CT65550=y +CONFIG_FB_CYBER2000=m +CONFIG_FB_CYBER2000_DDC=y +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_EFI=y +# CONFIG_FB_FOREIGN_ENDIAN is not set +CONFIG_FB_GEODE=y +CONFIG_FB_GEODE_GX=m +CONFIG_FB_GEODE_GX1=m +CONFIG_FB_GEODE_LX=m +CONFIG_FB_HECUBA=m +CONFIG_FB_HGA=m +CONFIG_FB_I810=m +# CONFIG_FB_I810_GTF is not set +CONFIG_FB_IBM_GXT4500=m +CONFIG_FB_IMSTT=y +CONFIG_FB_INTEL=m +# CONFIG_FB_INTEL_DEBUG is not set +CONFIG_FB_INTEL_I2C=y +CONFIG_FB_KYRO=m +CONFIG_FB_LE80578=m +CONFIG_FB_MATROX=m +CONFIG_FB_MATROX_G=y +CONFIG_FB_MATROX_I2C=m +CONFIG_FB_MATROX_MAVEN=m +CONFIG_FB_MATROX_MILLENIUM=y +CONFIG_FB_MATROX_MYSTIQUE=y +CONFIG_FB_MB862XX=m +CONFIG_FB_MB862XX_I2C=y +# CONFIG_FB_MB862XX_LIME is not set +CONFIG_FB_MB862XX_PCI_GDC=y +CONFIG_FB_METRONOME=m +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_N411=m +CONFIG_FB_NEOMAGIC=m +CONFIG_FB_NVIDIA=m +CONFIG_FB_NVIDIA_BACKLIGHT=y +# CONFIG_FB_NVIDIA_DEBUG is not set +CONFIG_FB_NVIDIA_I2C=y +CONFIG_FB_OF=y +CONFIG_FB_OLPC_DCON=m +CONFIG_FB_OLPC_DCON_1=y +CONFIG_FB_OLPC_DCON_1_5=y +CONFIG_FB_OMAP2=y +CONFIG_FB_OMAP2_DEBUG_SUPPORT=y +CONFIG_FB_OMAP2_NUM_FBS=3 +# CONFIG_FB_OMAP_BOOTLOADER_INIT is not set +CONFIG_FB_PLATINUM=y +CONFIG_FB_PM2=m +CONFIG_FB_PM2_FIFO_DISCONNECT=y +CONFIG_FB_PM3=m +CONFIG_FB_PS3=y +CONFIG_FB_PS3_DEFAULT_SIZE_M=9 +CONFIG_FB_RADEON_BACKLIGHT=y +# CONFIG_FB_RADEON_DEBUG is not set +CONFIG_FB_RADEON_I2C=y +CONFIG_FB_RIVA=m +CONFIG_FB_RIVA_BACKLIGHT=y +# CONFIG_FB_RIVA_DEBUG is not set +CONFIG_FB_RIVA_I2C=y +CONFIG_FB_S1D13XXX=m +CONFIG_FB_S3=m +CONFIG_FB_S3_DDC=y +CONFIG_FB_SAVAGE=m +CONFIG_FB_SAVAGE_ACCEL=y +CONFIG_FB_SAVAGE_I2C=y +CONFIG_FB_SIS=m +CONFIG_FB_SIS_300=y +CONFIG_FB_SIS_315=y +CONFIG_FB_SM501=m +CONFIG_FB_SM7XX=m +CONFIG_FB_SMSCUFX=m +CONFIG_FB_TMIO=m +CONFIG_FB_TMIO_ACCELL=y +CONFIG_FB_TRIDENT=m +CONFIG_FB_UDL=m +CONFIG_FB_UVESA=m +CONFIG_FB_VALKYRIE=y +CONFIG_FB_VESA=m +CONFIG_FB_VGA16=m +CONFIG_FB_VIA=m +# CONFIG_FB_VIA_DIRECT_PROCFS is not set +CONFIG_FB_VIA_X_COMPATIBILITY=y +# CONFIG_FB_VIRTUAL is not set +CONFIG_FB_VT8623=m +# CONFIG_FB_WMT_GE_ROPS is not set +CONFIG_FB_XGI=m +CONFIG_FCOE=m +CONFIG_FCOE_FNIC=m +CONFIG_FDDI=y +CONFIG_FEALNX=m +CONFIG_FHANDLE=y +CONFIG_FIB_RULES=y +CONFIG_FILE_LOCKING=y +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_NET=m +CONFIG_FIREWIRE_NOSY=m +CONFIG_FIREWIRE_OHCI=m +CONFIG_FIREWIRE_OHCI_DEBUG=y +# CONFIG_FIREWIRE_OHCI_REMOTE_DMA is not set +CONFIG_FIREWIRE_SBP2=m +CONFIG_FIRMWARE_IN_KERNEL=y +CONFIG_FIRMWARE_MEMMAP=y +CONFIG_FIXED_PHY=y +CONFIG_FIX_EARLYCON_MEM=y +CONFIG_FLATMEM=y +CONFIG_FLAT_NODE_MEM_MAP=y +# CONFIG_FONT_10x18 is not set +# CONFIG_FONT_6x11 is not set +# CONFIG_FONT_7x14 is not set +CONFIG_FONT_8x16=y +CONFIG_FONT_8x8=y +CONFIG_FONT_ACORN_8x8=y +# CONFIG_FONT_MINI_4x6 is not set +# CONFIG_FONT_PEARL_8x8 is not set +# CONFIG_FONT_SUN12x22 is not set +# CONFIG_FONT_SUN8x16 is not set +CONFIG_FORCEDETH=m +# CONFIG_FPE_FASTFPE is not set +# CONFIG_FPE_NWFPE_XP is not set +CONFIG_FRAMEBUFFER_CONSOLE=y +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +CONFIG_FRAME_POINTER=y +CONFIG_FRAME_WARN=1024 +CONFIG_FREEZER=y +CONFIG_FSCACHE=m +# CONFIG_FSCACHE_DEBUG is not set +CONFIG_FSCACHE_HISTOGRAM=y +# CONFIG_FSCACHE_OBJECT_LIST is not set +CONFIG_FSCACHE_STATS=y +CONFIG_FSL_LBC=y +# CONFIG_FSL_ULI1575 is not set +CONFIG_FSNOTIFY=y +CONFIG_FS_MBCACHE=y +CONFIG_FS_POSIX_ACL=y +CONFIG_FT1000=m +CONFIG_FT1000_PCMCIA=m +CONFIG_FT1000_USB=m +CONFIG_FTL=m +CONFIG_FTRACE_MCOUNT_RECORD=y +CONFIG_FTRACE_NMI_ENTER=y +# CONFIG_FTRACE_STARTUP_TEST is not set +CONFIG_FTRACE_SYSCALLS=y +# CONFIG_FTR_FIXUP_SELFTEST is not set +CONFIG_FUJITSU_LAPTOP=m +# CONFIG_FUJITSU_LAPTOP_DEBUG is not set +CONFIG_FUNCTION_GRAPH_TRACER=y +CONFIG_FUNCTION_PROFILER=y +CONFIG_FUSE_FS=y +CONFIG_FUSION=y +CONFIG_FUSION_CTL=m +CONFIG_FUSION_FC=m +CONFIG_FUSION_LAN=m +CONFIG_FUSION_LOGGING=y +CONFIG_FUSION_MAX_SGE=128 +CONFIG_FUSION_SAS=m +CONFIG_FUSION_SPI=m +CONFIG_FUTEX=y +CONFIG_FW_LOADER=y +CONFIG_GACT_PROB=y +CONFIG_GAMEPORT=m +CONFIG_GAMEPORT_EMU10K1=m +CONFIG_GAMEPORT_FM801=m +CONFIG_GAMEPORT_L4=m +CONFIG_GAMEPORT_NS558=m +CONFIG_GARP=m +CONFIG_GART_IOMMU=y +# CONFIG_GCOV_KERNEL is not set +CONFIG_GELIC_NET=m +CONFIG_GELIC_WIRELESS=y +CONFIG_GENERIC_ACL=y +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_GENERIC_ATOMIC64=y +CONFIG_GENERIC_BUG=y +CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_BUILD=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_GPIO=y +CONFIG_GENERIC_HARDIRQS=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_IRQ_CHIP=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_IRQ_SHOW_LEVEL=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_LOCKBREAK=y +CONFIG_GENERIC_NVRAM=y +CONFIG_GENERIC_TBSYNC=y +CONFIG_GENERIC_TRACER=y +CONFIG_GFS2_FS=m +CONFIG_GIGASET_BASE=m +# CONFIG_GIGASET_CAPI is not set +# CONFIG_GIGASET_DEBUG is not set +# CONFIG_GIGASET_DUMMYLL is not set +CONFIG_GIGASET_I4L=y +CONFIG_GIGASET_M101=m +CONFIG_GIGASET_M105=m +CONFIG_GIRBIL_DONGLE=m +# CONFIG_GOOGLE_FIRMWARE is not set +CONFIG_GPIOLIB=y +CONFIG_GPIO_74X164=m +CONFIG_GPIO_ADP5520=m +CONFIG_GPIO_ADP5588=m +CONFIG_GPIO_GENERIC=m +CONFIG_GPIO_GENERIC_PLATFORM=m +CONFIG_GPIO_IT8761E=m +CONFIG_GPIO_JANZ_TTL=m +CONFIG_GPIO_LANGWELL=y +CONFIG_GPIO_MAX7300=m +CONFIG_GPIO_MAX7301=m +CONFIG_GPIO_MAX730X=m +CONFIG_GPIO_MAX732X=m +CONFIG_GPIO_MC33880=m +CONFIG_GPIO_MCP23S08=m +CONFIG_GPIO_ML_IOH=m +CONFIG_GPIO_PCA953X=m +CONFIG_GPIO_PCF857X=m +CONFIG_GPIO_PCH=m +CONFIG_GPIO_PL061=y +CONFIG_GPIO_RDC321X=m +CONFIG_GPIO_SCH=m +CONFIG_GPIO_STMPE=y +CONFIG_GPIO_SX150X=y +CONFIG_GPIO_TC3589X=y +CONFIG_GPIO_TIMBERDALE=y +CONFIG_GPIO_TPS65910=y +CONFIG_GPIO_TPS65912=m +CONFIG_GPIO_UCB1400=y +CONFIG_GPIO_VX855=m +CONFIG_GPIO_WM831X=m +CONFIG_GPIO_WM8350=m +CONFIG_GPIO_WM8994=m +CONFIG_GPIO_XILINX=y +CONFIG_GREENASIA_FF=y +CONFIG_HAMACHI=m +CONFIG_HANGCHECK_TIMER=m +CONFIG_HAPPYMEAL=m +CONFIG_HAS_DMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT=y +# CONFIG_HAS_RAPIDIO is not set +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_KGDB=y +CONFIG_HAVE_ARCH_KMEMCHECK=y +CONFIG_HAVE_ARCH_PFN_VALID=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_ARM_SCU=y +CONFIG_HAVE_ARM_TWD=y +CONFIG_HAVE_ATOMIC_IOMAP=y +CONFIG_HAVE_BPF_JIT=y +CONFIG_HAVE_CLK=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_DMA_ATTRS=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_FTRACE_NMI_ENTER=y +CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y +CONFIG_HAVE_GENERIC_HARDIRQS=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_IDE=y +CONFIG_HAVE_INTEL_TXT=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_IRQ_WORK=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_KVM=y +CONFIG_HAVE_KVM_EVENTFD=y +CONFIG_HAVE_KVM_IRQCHIP=y +CONFIG_HAVE_LATENCYTOP_SUPPORT=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_HAVE_MTD_OTP=y +CONFIG_HAVE_OPROFILE=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_HAVE_PERF_EVENTS=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PROC_CPU=y +CONFIG_HAVE_PWM=y +CONFIG_HAVE_RCU_TABLE_FREE=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_SCHED_CLOCK=y +CONFIG_HAVE_SPARSE_IRQ=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_SYSCALL_WRAPPERS=y +CONFIG_HAVE_TEXT_POKE_SMP=y +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +# CONFIG_HCALL_STATS is not set +CONFIG_HDLC=m +CONFIG_HDLC_CISCO=m +CONFIG_HDLC_FR=m +CONFIG_HDLC_PPP=m +CONFIG_HDLC_RAW=m +CONFIG_HDLC_RAW_ETH=m +CONFIG_HDLC_X25=m +CONFIG_HDQ_MASTER_OMAP=m +# CONFIG_HEADERS_CHECK is not set +CONFIG_HERMES=m +CONFIG_HERMES_CACHE_FW_ON_INIT=y +# CONFIG_HERMES_PRISM is not set +CONFIG_HFSPLUS_FS=m +CONFIG_HFS_FS=m +CONFIG_HIBERNATE_CALLBACKS=y +CONFIG_HIBERNATION=y +CONFIG_HID=m +CONFIG_HID_A4TECH=m +CONFIG_HID_ACRUX=m +CONFIG_HID_ACRUX_FF=y +CONFIG_HID_APPLE=m +CONFIG_HID_BELKIN=m +CONFIG_HID_CHERRY=m +CONFIG_HID_CHICONY=m +CONFIG_HID_CYPRESS=m +CONFIG_HID_DRAGONRISE=m +CONFIG_HID_ELECOM=m +CONFIG_HID_EMS_FF=m +CONFIG_HID_EZKEY=m +CONFIG_HID_GREENASIA=m +CONFIG_HID_GYRATION=m +CONFIG_HID_HOLTEK=m +CONFIG_HID_KENSINGTON=m +CONFIG_HID_KEYTOUCH=m +CONFIG_HID_KYE=m +CONFIG_HID_LCPOWER=m +CONFIG_HID_LOGITECH=m +CONFIG_HID_LOGITECH_DJ=m +CONFIG_HID_MAGICMOUSE=m +CONFIG_HID_MICROSOFT=m +CONFIG_HID_MONTEREY=m +CONFIG_HID_MULTITOUCH=m +CONFIG_HID_NTRIG=m +CONFIG_HID_ORTEK=m +CONFIG_HID_PANTHERLORD=m +CONFIG_HID_PETALYNX=m +CONFIG_HID_PICOLCD=m +CONFIG_HID_PICOLCD_BACKLIGHT=y +CONFIG_HID_PICOLCD_FB=y +CONFIG_HID_PICOLCD_LCD=y +CONFIG_HID_PICOLCD_LEDS=y +CONFIG_HID_PID=y +CONFIG_HID_PRIMAX=m +CONFIG_HID_PRODIKEYS=m +CONFIG_HID_ROCCAT=m +CONFIG_HID_ROCCAT_ARVO=m +CONFIG_HID_ROCCAT_COMMON=m +CONFIG_HID_ROCCAT_KONE=m +CONFIG_HID_ROCCAT_KONEPLUS=m +CONFIG_HID_ROCCAT_KOVAPLUS=m +CONFIG_HID_ROCCAT_PYRA=m +CONFIG_HID_SAMSUNG=m +CONFIG_HID_SMARTJOYPLUS=m +CONFIG_HID_SONY=m +CONFIG_HID_SPEEDLINK=m +CONFIG_HID_SUNPLUS=m +CONFIG_HID_SUPPORT=y +CONFIG_HID_THRUSTMASTER=m +CONFIG_HID_TOPSEED=m +CONFIG_HID_TWINHAN=m +CONFIG_HID_UCLOGIC=m +CONFIG_HID_WACOM=m +CONFIG_HID_WACOM_POWER_SUPPLY=y +CONFIG_HID_WALTOP=m +CONFIG_HID_WIIMOTE=m +CONFIG_HID_ZEROPLUS=m +CONFIG_HID_ZYDACRON=m +CONFIG_HIGHPTE=y +CONFIG_HIGH_RES_TIMERS=y +# CONFIG_HIPPI is not set +CONFIG_HISAX_16_0=y +CONFIG_HISAX_16_3=y +CONFIG_HISAX_1TR6=y +CONFIG_HISAX_ASUSCOM=y +CONFIG_HISAX_AVM_A1=y +CONFIG_HISAX_AVM_A1_CS=m +CONFIG_HISAX_AVM_A1_PCMCIA=y +CONFIG_HISAX_BKM_A4T=y +# CONFIG_HISAX_DEBUG is not set +CONFIG_HISAX_DIEHLDIVA=y +CONFIG_HISAX_ELSA=y +CONFIG_HISAX_ELSA_CS=m +CONFIG_HISAX_ENTERNOW_PCI=y +CONFIG_HISAX_EURO=y +CONFIG_HISAX_FRITZPCI=y +CONFIG_HISAX_FRITZ_PCIPNP=m +CONFIG_HISAX_GAZEL=y +CONFIG_HISAX_HFC4S8S=m +CONFIG_HISAX_HFCS=y +CONFIG_HISAX_HFCUSB=m +CONFIG_HISAX_HFC_PCI=y +CONFIG_HISAX_HFC_SX=y +CONFIG_HISAX_HSTSAPHIR=y +CONFIG_HISAX_ISURF=y +CONFIG_HISAX_IX1MICROR2=y +CONFIG_HISAX_MAX_CARDS=8 +CONFIG_HISAX_MIC=y +CONFIG_HISAX_NETJET=y +CONFIG_HISAX_NETJET_U=y +CONFIG_HISAX_NI1=y +CONFIG_HISAX_NICCY=y +# CONFIG_HISAX_NO_KEYPAD is not set +# CONFIG_HISAX_NO_LLC is not set +# CONFIG_HISAX_NO_SENDCOMPLETE is not set +CONFIG_HISAX_S0BOX=y +CONFIG_HISAX_SCT_QUADRO=y +CONFIG_HISAX_SEDLBAUER=y +CONFIG_HISAX_SEDLBAUER_CS=m +CONFIG_HISAX_SPORTSTER=y +CONFIG_HISAX_ST5481=m +CONFIG_HISAX_TELEINT=y +CONFIG_HISAX_TELESPCI=y +CONFIG_HISAX_TELES_CS=m +CONFIG_HISAX_W6692=y +CONFIG_HMC6352=m +CONFIG_HOLTEK_FF=y +CONFIG_HOSTAP=m +CONFIG_HOSTAP_CS=m +CONFIG_HOSTAP_FIRMWARE=y +CONFIG_HOSTAP_FIRMWARE_NVRAM=y +CONFIG_HOSTAP_PCI=m +CONFIG_HOSTAP_PLX=m +CONFIG_HOSTESS_SV11=m +CONFIG_HOTPLUG=y +CONFIG_HOTPLUG_CPU=y +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=m +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +CONFIG_HOTPLUG_PCI_COMPAQ=m +CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM=y +CONFIG_HOTPLUG_PCI_CPCI=y +CONFIG_HOTPLUG_PCI_CPCI_GENERIC=m +CONFIG_HOTPLUG_PCI_CPCI_ZT5550=m +CONFIG_HOTPLUG_PCI_FAKE=m +CONFIG_HOTPLUG_PCI_IBM=m +CONFIG_HOTPLUG_PCI_PCIE=y +CONFIG_HOTPLUG_PCI_RPA=m +CONFIG_HOTPLUG_PCI_RPA_DLPAR=m +CONFIG_HOTPLUG_PCI_SHPC=m +CONFIG_HP100=m +CONFIG_HPET=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_HPET_MMAP=y +CONFIG_HPET_TIMER=y +CONFIG_HPFS_FS=m +CONFIG_HPLAN=m +CONFIG_HPLAN_PLUS=m +CONFIG_HP_ACCEL=m +CONFIG_HP_ILO=m +# CONFIG_HP_WATCHDOG is not set +CONFIG_HP_WMI=m +CONFIG_HTC_PASIC3=m +CONFIG_HT_IRQ=y +CONFIG_HUGETLBFS=y +CONFIG_HUGETLB_PAGE_SIZE_VARIABLE=y +CONFIG_HVCS=m +CONFIG_HVC_DRIVER=y +CONFIG_HVC_IRQ=y +CONFIG_HVC_OLD_HVSI=y +CONFIG_HVC_OPAL=y +CONFIG_HVC_RTAS=y +CONFIG_HVC_UDBG=y +CONFIG_HVC_XEN=y +CONFIG_HWMON=y +# CONFIG_HWMON_DEBUG_CHIP is not set +CONFIG_HWMON_VID=m +# CONFIG_HWPOISON_INJECT is not set +CONFIG_HW_CONSOLE=y +CONFIG_HW_PERF_EVENTS=y +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_AMD=m +CONFIG_HW_RANDOM_GEODE=m +CONFIG_HW_RANDOM_INTEL=m +CONFIG_HW_RANDOM_PASEMI=m +CONFIG_HW_RANDOM_TIMERIOMEM=m +CONFIG_HW_RANDOM_VIA=m +CONFIG_HW_RANDOM_VIRTIO=m +CONFIG_HYPERV=m +CONFIG_HYPERV_MOUSE=m +CONFIG_HYPERV_NET=m +CONFIG_HYPERV_STORAGE=m +CONFIG_HYPERV_UTILS=m +CONFIG_HYSDN=m +CONFIG_HYSDN_CAPI=y +# CONFIG_HZ_100 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +CONFIG_I2C=y +CONFIG_I2C_ALGOPCA=m +CONFIG_I2C_ALGOPCF=m +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD756_S4882=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_BOARDINFO=y +CONFIG_I2C_CHARDEV=m +CONFIG_I2C_COMPAT=y +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_I2C_DEBUG_CORE is not set +CONFIG_I2C_DESIGNWARE_PCI=m +CONFIG_I2C_DIOLAN_U2C=m +CONFIG_I2C_EG20T=m +CONFIG_I2C_GPIO=m +CONFIG_I2C_HYDRA=m +CONFIG_I2C_I801=m +CONFIG_I2C_INTEL_MID=m +CONFIG_I2C_ISCH=m +CONFIG_I2C_MPC=m +CONFIG_I2C_MUX=m +CONFIG_I2C_MUX_GPIO=m +CONFIG_I2C_MUX_PCA9541=m +CONFIG_I2C_MUX_PCA954x=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_NFORCE2_S4985=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_OMAP=y +CONFIG_I2C_PARPORT=m +CONFIG_I2C_PARPORT_LIGHT=m +CONFIG_I2C_PASEMI=m +CONFIG_I2C_PCA_ISA=m +CONFIG_I2C_PCA_PLATFORM=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_POWERMAC=y +CONFIG_I2C_PXA=m +CONFIG_I2C_SCMI=m +CONFIG_I2C_SI470X=m +CONFIG_I2C_SI4713=m +CONFIG_I2C_SIMTEC=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +CONFIG_I2C_SMBUS=m +CONFIG_I2C_STUB=m +CONFIG_I2C_TAOS_EVM=m +CONFIG_I2C_TINY_USB=m +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_XILINX=m +CONFIG_I2O=m +CONFIG_I2O_BLOCK=m +CONFIG_I2O_BUS=m +CONFIG_I2O_CONFIG=m +CONFIG_I2O_CONFIG_OLD_IOCTL=y +CONFIG_I2O_EXT_ADAPTEC=y +CONFIG_I2O_EXT_ADAPTEC_DMA64=y +CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y +CONFIG_I2O_PROC=m +CONFIG_I2O_SCSI=m +CONFIG_I6300ESB_WDT=m +CONFIG_I7300_IDLE=m +CONFIG_I7300_IDLE_IOAT_CHANNEL=y +CONFIG_I82092=m +CONFIG_I82365=m +CONFIG_I8253_LOCK=y +CONFIG_I8K=m +# CONFIG_IA32_AOUT is not set +CONFIG_IA32_EMULATION=y +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_IBMLANA=m +CONFIG_IBMLS=m +# CONFIG_IBMMCA_SCSI_DEV_RESET is not set +CONFIG_IBMMCA_SCSI_ORDER_STANDARD=y +CONFIG_IBMOL=m +CONFIG_IBMTR=m +CONFIG_IBMVETH=m +CONFIG_IBMVIO=y +CONFIG_IBM_ASM=m +CONFIG_IBM_BSR=m +# CONFIG_IBM_EMAC_EMAC4 is not set +# CONFIG_IBM_EMAC_MAL_CLR_ICINTSTAT is not set +# CONFIG_IBM_EMAC_MAL_COMMON_ERR is not set +# CONFIG_IBM_EMAC_NO_FLOW_CTRL is not set +# CONFIG_IBM_EMAC_RGMII is not set +# CONFIG_IBM_EMAC_TAH is not set +# CONFIG_IBM_EMAC_ZMII is not set +CONFIG_IBM_RTL=m +CONFIG_ICPLUS_PHY=y +CONFIG_ICS932S401=m +CONFIG_IDEAPAD_LAPTOP=m +CONFIG_IDEPCI_PCIBUS_ORDER=y +CONFIG_IDE_ATAPI=y +CONFIG_IDE_GD=y +CONFIG_IDE_GD_ATA=y +# CONFIG_IDE_GD_ATAPI is not set +CONFIG_IDE_PHISON=m +CONFIG_IDE_PROC_FS=y +# CONFIG_IDE_TASK_IOCTL is not set +CONFIG_IDE_TIMINGS=y +CONFIG_IDE_XFER_MODE=y +CONFIG_IEEE802154=m +CONFIG_IEEE802154_6LOWPAN=m +CONFIG_IEEE802154_DRIVERS=m +# CONFIG_IEEE802154_FAKEHARD is not set +CONFIG_IFB=m +CONFIG_IGB=m +CONFIG_IGBVF=m +CONFIG_IGB_DCA=y +CONFIG_IIO=m +CONFIG_IIO_BUFFER=y +CONFIG_IIO_CONSUMERS_PER_TRIGGER=2 +CONFIG_IIO_GPIO_TRIGGER=m +CONFIG_IIO_KFIFO_BUF=m +CONFIG_IIO_PERIODIC_RTC_TRIGGER=m +CONFIG_IIO_SIMPLE_DUMMY=m +# CONFIG_IIO_SIMPLE_DUMMY_BUFFER is not set +# CONFIG_IIO_SIMPLE_DUMMY_EVENTS is not set +CONFIG_IIO_SW_RING=m +CONFIG_IIO_SYSFS_TRIGGER=m +CONFIG_IIO_TRIGGER=y +# CONFIG_IKCONFIG is not set +# CONFIG_IMA is not set +CONFIG_INET=y +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_IPCOMP=m +CONFIG_INET6_TUNNEL=m +CONFIG_INET6_XFRM_MODE_BEET=m +CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m +CONFIG_INET6_XFRM_MODE_TRANSPORT=m +CONFIG_INET6_XFRM_MODE_TUNNEL=m +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET_AH=m +CONFIG_INET_DCCP_DIAG=m +CONFIG_INET_DIAG=m +CONFIG_INET_ESP=m +CONFIG_INET_IPCOMP=m +CONFIG_INET_LRO=y +CONFIG_INET_TCP_DIAG=m +CONFIG_INET_TUNNEL=m +CONFIG_INET_XFRM_MODE_BEET=m +CONFIG_INET_XFRM_MODE_TRANSPORT=m +CONFIG_INET_XFRM_MODE_TUNNEL=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_AMSO1100=m +CONFIG_INFINIBAND_AMSO1100_DEBUG=y +CONFIG_INFINIBAND_CXGB3=m +# CONFIG_INFINIBAND_CXGB3_DEBUG is not set +CONFIG_INFINIBAND_CXGB4=m +CONFIG_INFINIBAND_EHCA=m +CONFIG_INFINIBAND_IPATH=m +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y +CONFIG_INFINIBAND_IPOIB_DEBUG=y +# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set +CONFIG_INFINIBAND_ISER=m +CONFIG_INFINIBAND_MTHCA=m +CONFIG_INFINIBAND_MTHCA_DEBUG=y +CONFIG_INFINIBAND_NES=m +# CONFIG_INFINIBAND_NES_DEBUG is not set +CONFIG_INFINIBAND_QIB=m +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_MEM=y +CONFIG_INFTL=m +CONFIG_INITRAMFS_SOURCE="" +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_INIT_PASS_ALL_PARAMS=y +# CONFIG_INLINE_READ_LOCK is not set +# CONFIG_INLINE_READ_LOCK_BH is not set +# CONFIG_INLINE_READ_LOCK_IRQ is not set +# CONFIG_INLINE_READ_LOCK_IRQSAVE is not set +# CONFIG_INLINE_READ_TRYLOCK is not set +# CONFIG_INLINE_READ_UNLOCK_BH is not set +# CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set +# CONFIG_INLINE_SPIN_LOCK is not set +# CONFIG_INLINE_SPIN_LOCK_BH is not set +# CONFIG_INLINE_SPIN_LOCK_IRQ is not set +# CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set +# CONFIG_INLINE_SPIN_TRYLOCK is not set +# CONFIG_INLINE_SPIN_TRYLOCK_BH is not set +# CONFIG_INLINE_SPIN_UNLOCK_BH is not set +# CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set +# CONFIG_INLINE_WRITE_LOCK is not set +# CONFIG_INLINE_WRITE_LOCK_BH is not set +# CONFIG_INLINE_WRITE_LOCK_IRQ is not set +# CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set +# CONFIG_INLINE_WRITE_TRYLOCK is not set +# CONFIG_INLINE_WRITE_UNLOCK_BH is not set +# CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set +CONFIG_INOTIFY_USER=y +CONFIG_INPUT=y +CONFIG_INPUT_88PM860X_ONKEY=m +CONFIG_INPUT_AB8500_PONKEY=m +CONFIG_INPUT_AD714X=m +CONFIG_INPUT_AD714X_I2C=m +CONFIG_INPUT_AD714X_SPI=m +CONFIG_INPUT_ADBHID=y +CONFIG_INPUT_ADXL34X=m +CONFIG_INPUT_ADXL34X_I2C=m +CONFIG_INPUT_ADXL34X_SPI=m +CONFIG_INPUT_APANEL=m +CONFIG_INPUT_APMPOWER=m +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_ATLAS_BTNS=m +CONFIG_INPUT_BMA150=m +CONFIG_INPUT_CM109=m +CONFIG_INPUT_CMA3000=m +CONFIG_INPUT_CMA3000_I2C=m +CONFIG_INPUT_EVBUG=m +CONFIG_INPUT_EVDEV=y +CONFIG_INPUT_FF_MEMLESS=m +CONFIG_INPUT_GPIO_ROTARY_ENCODER=m +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_INPUT_KEYBOARD=y +CONFIG_INPUT_KEYSPAN_REMOTE=m +CONFIG_INPUT_KXTJ9=m +# CONFIG_INPUT_KXTJ9_POLLED_MODE is not set +CONFIG_INPUT_MAX8925_ONKEY=m +CONFIG_INPUT_MC13783_PWRBUTTON=m +CONFIG_INPUT_MISC=y +CONFIG_INPUT_MMA8450=m +CONFIG_INPUT_MOUSE=y +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_MPU3050=m +CONFIG_INPUT_PCAP=m +CONFIG_INPUT_PCF50633_PMU=m +CONFIG_INPUT_PCF8574=m +CONFIG_INPUT_PCSPKR=m +CONFIG_INPUT_POLLDEV=m +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_PWM_BEEPER=m +CONFIG_INPUT_SPARSEKMAP=m +CONFIG_INPUT_TWL4030_PWRBUTTON=m +CONFIG_INPUT_TWL4030_VIBRA=m +CONFIG_INPUT_TWL6040_VIBRA=m +CONFIG_INPUT_UINPUT=y +CONFIG_INPUT_WISTRON_BTNS=m +CONFIG_INPUT_WM831X_ON=m +CONFIG_INPUT_XEN_KBDDEV_FRONTEND=m +CONFIG_INPUT_YEALINK=m +CONFIG_INSTRUCTION_DECODER=y +CONFIG_INTEGRITY=y +CONFIG_INTEL_IOATDMA=m +CONFIG_INTEL_IOMMU=y +# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set +CONFIG_INTEL_IOMMU_FLOPPY_WA=y +CONFIG_INTEL_IPS=m +CONFIG_INTEL_MEI=m +CONFIG_INTEL_MENLOW=m +CONFIG_INTEL_MID_DMAC=m +CONFIG_INTEL_MID_PTI=m +CONFIG_INTEL_OAKTRAIL=m +CONFIG_IOMMU_API=y +# CONFIG_IOMMU_DEBUG is not set +# CONFIG_IOMMU_STRESS is not set +CONFIG_IOMMU_SUPPORT=y +CONFIG_IOSCHED_CFQ=y +CONFIG_IOSCHED_DEADLINE=y +CONFIG_IOSCHED_NOOP=y +# CONFIG_IO_DELAY_0X80 is not set +CONFIG_IO_DELAY_0XED=y +# CONFIG_IO_DELAY_NONE is not set +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +# CONFIG_IO_DELAY_UDELAY is not set +CONFIG_IO_EVENT_IRQ=y +CONFIG_IP1000=m +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +CONFIG_IP6_NF_MATCH_MH=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_QUEUE=m +CONFIG_IP6_NF_RAW=m +CONFIG_IP6_NF_SECURITY=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_TARGET_LOG=m +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IPC_NS=y +CONFIG_IPDDP=m +CONFIG_IPDDP_DECAP=y +CONFIG_IPDDP_ENCAP=y +# CONFIG_IPIC is not set +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_HANDLER=m +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_POWEROFF=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_WATCHDOG=m +CONFIG_IPPP_FILTER=y +CONFIG_IPV6=y +CONFIG_IPV6_MIP6=m +CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +CONFIG_IPV6_PIMSM_V2=y +CONFIG_IPV6_ROUTE_INFO=y +CONFIG_IPV6_SIT=m +CONFIG_IPV6_SUBTREES=y +CONFIG_IPV6_TUNNEL=m +CONFIG_IPW2100=m +# CONFIG_IPW2100_DEBUG is not set +CONFIG_IPW2100_MONITOR=y +CONFIG_IPW2200=m +# CONFIG_IPW2200_DEBUG is not set +CONFIG_IPW2200_MONITOR=y +CONFIG_IPW2200_PROMISCUOUS=y +CONFIG_IPW2200_QOS=y +CONFIG_IPW2200_RADIOTAP=y +CONFIG_IPWIRELESS=m +CONFIG_IPX=m +# CONFIG_IPX_INTERN is not set +CONFIG_IP_DCCP=m +# CONFIG_IP_DCCP_CCID2_DEBUG is not set +CONFIG_IP_DCCP_CCID3=y +# CONFIG_IP_DCCP_CCID3_DEBUG is not set +# CONFIG_IP_DCCP_DEBUG is not set +CONFIG_IP_DCCP_TFRC_LIB=y +CONFIG_IP_FIB_TRIE_STATS=y +CONFIG_IP_MROUTE=y +# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARP_MANGLE=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_MATCH_AH=m +CONFIG_IP_NF_MATCH_ECN=m +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_QUEUE=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_SECURITY=m +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_LOG=m +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_NF_TARGET_ULOG=m +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +# CONFIG_IP_PNP_BOOTP is not set +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_RARP is not set +CONFIG_IP_ROUTE_CLASSID=y +CONFIG_IP_ROUTE_MULTIPATH=y +CONFIG_IP_ROUTE_VERBOSE=y +CONFIG_IP_SCTP=m +CONFIG_IP_SET=m +CONFIG_IP_SET_BITMAP_IP=m +CONFIG_IP_SET_BITMAP_IPMAC=m +CONFIG_IP_SET_BITMAP_PORT=m +CONFIG_IP_SET_HASH_IP=m +CONFIG_IP_SET_HASH_IPPORT=m +CONFIG_IP_SET_HASH_IPPORTIP=m +CONFIG_IP_SET_HASH_IPPORTNET=m +CONFIG_IP_SET_HASH_NET=m +CONFIG_IP_SET_HASH_NETIFACE=m +CONFIG_IP_SET_HASH_NETPORT=m +CONFIG_IP_SET_LIST_SET=m +CONFIG_IP_SET_MAX=256 +CONFIG_IP_VS=m +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_DH=m +CONFIG_IP_VS_FTP=m +CONFIG_IP_VS_IPV6=y +CONFIG_IP_VS_LBLC=m +CONFIG_IP_VS_LBLCR=m +CONFIG_IP_VS_LC=m +CONFIG_IP_VS_NFCT=y +CONFIG_IP_VS_NQ=m +CONFIG_IP_VS_PE_SIP=m +CONFIG_IP_VS_PROTO_AH=y +CONFIG_IP_VS_PROTO_AH_ESP=y +CONFIG_IP_VS_PROTO_ESP=y +CONFIG_IP_VS_PROTO_SCTP=y +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_SED=m +CONFIG_IP_VS_SH=m +CONFIG_IP_VS_TAB_BITS=12 +CONFIG_IP_VS_WLC=m +CONFIG_IP_VS_WRR=m +CONFIG_IRCOMM=m +CONFIG_IRDA=m +CONFIG_IRLAN=m +CONFIG_IRNET=m +# CONFIG_IRQSOFF_TRACER is not set +CONFIG_IRQ_DOMAIN=y +CONFIG_IRQ_FORCED_THREADING=y +CONFIG_IRQ_REMAP=y +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_IRQ_WORK=y +CONFIG_IRTTY_SIR=m +CONFIG_IR_ENE=m +CONFIG_IR_FINTEK=m +CONFIG_IR_IMON=m +CONFIG_IR_ITE_CIR=m +CONFIG_IR_JVC_DECODER=m +CONFIG_IR_LIRC_CODEC=m +CONFIG_IR_MCEUSB=m +CONFIG_IR_MCE_KBD_DECODER=m +CONFIG_IR_NEC_DECODER=m +CONFIG_IR_NUVOTON=m +CONFIG_IR_RC5_DECODER=m +CONFIG_IR_RC5_SZ_DECODER=m +CONFIG_IR_RC6_DECODER=m +CONFIG_IR_REDRAT3=m +CONFIG_IR_SONY_DECODER=m +CONFIG_IR_STREAMZAP=m +CONFIG_IR_WINBOND_CIR=m +CONFIG_ISAPNP=y +CONFIG_ISA_DMA_API=y +CONFIG_ISCSI_BOOT_SYSFS=m +CONFIG_ISCSI_IBFT=m +CONFIG_ISCSI_IBFT_FIND=y +CONFIG_ISCSI_TARGET=m +CONFIG_ISCSI_TCP=m +CONFIG_ISDN_AUDIO=y +CONFIG_ISDN_CAPI=m +CONFIG_ISDN_CAPI_CAPI20=m +CONFIG_ISDN_CAPI_CAPIDRV=m +CONFIG_ISDN_CAPI_MIDDLEWARE=y +CONFIG_ISDN_DIVAS=m +CONFIG_ISDN_DIVAS_BRIPCI=y +CONFIG_ISDN_DIVAS_DIVACAPI=m +CONFIG_ISDN_DIVAS_MAINT=m +CONFIG_ISDN_DIVAS_PRIPCI=y +CONFIG_ISDN_DIVAS_USERIDI=m +CONFIG_ISDN_DIVERSION=m +CONFIG_ISDN_DRV_ACT2000=m +CONFIG_ISDN_DRV_AVMB1_AVM_CS=m +CONFIG_ISDN_DRV_AVMB1_B1ISA=m +CONFIG_ISDN_DRV_AVMB1_B1PCI=m +CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y +CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m +CONFIG_ISDN_DRV_AVMB1_C4=m +CONFIG_ISDN_DRV_AVMB1_T1ISA=m +CONFIG_ISDN_DRV_AVMB1_T1PCI=m +CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y +CONFIG_ISDN_DRV_GIGASET=m +CONFIG_ISDN_DRV_HISAX=m +CONFIG_ISDN_DRV_ICN=m +CONFIG_ISDN_DRV_LOOP=m +CONFIG_ISDN_DRV_PCBIT=m +CONFIG_ISDN_DRV_SC=m +CONFIG_ISDN_HDLC=m +CONFIG_ISDN_I4L=m +CONFIG_ISDN_MPP=y +CONFIG_ISDN_PPP=y +CONFIG_ISDN_PPP_BSDCOMP=m +CONFIG_ISDN_PPP_VJ=y +CONFIG_ISDN_TTY_FAX=y +CONFIG_ISDN_X25=y +CONFIG_ISI=m +CONFIG_ISL29003=m +CONFIG_ISL29020=m +CONFIG_ISO9660_FS=m +CONFIG_ISP1301_OMAP=m +CONFIG_IT8712F_WDT=m +CONFIG_IT87_WDT=m +CONFIG_ITCO_VENDOR_SUPPORT=y +CONFIG_ITCO_WDT=m +CONFIG_IWL3945=m +CONFIG_IWL4965=m +CONFIG_IWLWIFI=m +# CONFIG_IWLWIFI_DEBUG is not set +CONFIG_IWLWIFI_DEBUGFS=y +# CONFIG_IWLWIFI_DEVICE_SVTOOL is not set +CONFIG_IWLWIFI_DEVICE_TRACING=y +CONFIG_IWLWIFI_LEGACY=m +# CONFIG_IWLWIFI_LEGACY_DEBUG is not set +# CONFIG_IWLWIFI_LEGACY_DEBUGFS is not set +# CONFIG_IWLWIFI_LEGACY_DEVICE_TRACING is not set +CONFIG_IWM=m +CONFIG_IWMC3200TOP=m +# CONFIG_IWMC3200TOP_DEBUG is not set +# CONFIG_IWM_DEBUG is not set +CONFIG_IWM_TRACING=y +CONFIG_IXGB=m +CONFIG_IXGBE=m +CONFIG_IXGBEVF=m +CONFIG_IXGBE_DCA=y +CONFIG_IXGBE_DCB=y +CONFIG_JBD=y +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +# CONFIG_JBD_DEBUG is not set +CONFIG_JFFS2_CMODE_FAVOURLZO=y +# CONFIG_JFFS2_CMODE_NONE is not set +# CONFIG_JFFS2_CMODE_PRIORITY is not set +# CONFIG_JFFS2_CMODE_SIZE is not set +CONFIG_JFFS2_COMPRESSION_OPTIONS=y +CONFIG_JFFS2_FS=m +CONFIG_JFFS2_FS_DEBUG=0 +# CONFIG_JFFS2_FS_WBUF_VERIFY is not set +CONFIG_JFFS2_FS_WRITEBUFFER=y +# CONFIG_JFFS2_FS_XATTR is not set +CONFIG_JFFS2_LZO=y +CONFIG_JFFS2_RTIME=y +# CONFIG_JFFS2_RUBIN is not set +# CONFIG_JFFS2_SUMMARY is not set +CONFIG_JFFS2_ZLIB=y +# CONFIG_JFS_DEBUG is not set +CONFIG_JFS_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JME=m +CONFIG_JOLIET=y +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_AS5011=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_DB9=m +CONFIG_JOYSTICK_GAMECON=m +CONFIG_JOYSTICK_GF2K=m +CONFIG_JOYSTICK_GRIP=m +CONFIG_JOYSTICK_GRIP_MP=m +CONFIG_JOYSTICK_GUILLEMOT=m +CONFIG_JOYSTICK_IFORCE=m +CONFIG_JOYSTICK_IFORCE_232=y +CONFIG_JOYSTICK_IFORCE_USB=y +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_JOYDUMP=m +CONFIG_JOYSTICK_MAGELLAN=m +CONFIG_JOYSTICK_SIDEWINDER=m +CONFIG_JOYSTICK_SPACEBALL=m +CONFIG_JOYSTICK_SPACEORB=m +CONFIG_JOYSTICK_STINGER=m +CONFIG_JOYSTICK_TMDC=m +CONFIG_JOYSTICK_TURBOGRAFX=m +CONFIG_JOYSTICK_TWIDJOY=m +CONFIG_JOYSTICK_WALKERA0701=m +CONFIG_JOYSTICK_WARRIOR=m +CONFIG_JOYSTICK_XPAD=m +CONFIG_JOYSTICK_XPAD_FF=y +CONFIG_JOYSTICK_XPAD_LEDS=y +CONFIG_JOYSTICK_ZHENHUA=m +CONFIG_JUMP_LABEL=y +CONFIG_KALLSYMS=y +CONFIG_KALLSYMS_ALL=y +CONFIG_KDB_KEYBOARD=y +# CONFIG_KERNEL_BZIP2 is not set +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_XZ is not set +CONFIG_KEXEC_JUMP=y +CONFIG_KEYBOARD_ADP5520=m +CONFIG_KEYBOARD_ADP5588=m +CONFIG_KEYBOARD_ADP5589=m +CONFIG_KEYBOARD_ATKBD=y +CONFIG_KEYBOARD_GPIO=m +CONFIG_KEYBOARD_GPIO_POLLED=m +CONFIG_KEYBOARD_HIGHBANK=y +CONFIG_KEYBOARD_LKKBD=m +CONFIG_KEYBOARD_LM8323=m +CONFIG_KEYBOARD_MATRIX=m +CONFIG_KEYBOARD_MAX7359=m +CONFIG_KEYBOARD_MCS=m +CONFIG_KEYBOARD_MPR121=m +CONFIG_KEYBOARD_NEWTON=m +CONFIG_KEYBOARD_OPENCORES=m +CONFIG_KEYBOARD_QT1070=m +# CONFIG_KEYBOARD_QT2160 is not set +CONFIG_KEYBOARD_STMPE=m +CONFIG_KEYBOARD_STOWAWAY=m +CONFIG_KEYBOARD_SUNKBD=m +CONFIG_KEYBOARD_TC3589X=m +CONFIG_KEYBOARD_TCA6416=m +CONFIG_KEYBOARD_TWL4030=m +CONFIG_KEYBOARD_XTKBD=m +CONFIG_KEYS=y +CONFIG_KEYS_COMPAT=y +# CONFIG_KEYS_DEBUG_PROC_KEYS is not set +CONFIG_KGDB_KDB=y +CONFIG_KGDB_LOW_LEVEL_TRAP=y +CONFIG_KGDB_SERIAL_CONSOLE=y +# CONFIG_KGDB_TESTS is not set +CONFIG_KINGSUN_DONGLE=m +# CONFIG_KPROBES_SANITY_TEST is not set +CONFIG_KPROBE_EVENT=y +CONFIG_KRETPROBES=y +CONFIG_KS0108=m +CONFIG_KS0108_DELAY=2 +CONFIG_KS0108_PORT=0x378 +CONFIG_KS8842=m +CONFIG_KS8851=m +CONFIG_KS8851_MLL=m +CONFIG_KS959_DONGLE=m +CONFIG_KSDAZZLE_DONGLE=m +CONFIG_KSZ884X_PCI=m +CONFIG_KVM_AMD=m +CONFIG_KVM_APIC_ARCHITECTURE=y +CONFIG_KVM_ASYNC_PF=y +# CONFIG_KVM_BOOK3S_64 is not set +CONFIG_KVM_CLOCK=y +CONFIG_KVM_GUEST=y +CONFIG_KVM_INTEL=m +CONFIG_KVM_MMIO=y +# CONFIG_KVM_MMU_AUDIT is not set +CONFIG_KXSD9=m +CONFIG_L2TP=m +CONFIG_L2TP_DEBUGFS=m +# CONFIG_L2TP_V3 is not set +CONFIG_LANCE=m +CONFIG_LANMEDIA=m +CONFIG_LAPB=m +CONFIG_LAPBETHER=m +CONFIG_LBDAF=y +CONFIG_LCD_AMS369FG06=m +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LCD_ILI9320=m +CONFIG_LCD_L4F00242T03=m +CONFIG_LCD_LD9040=m +CONFIG_LCD_LMS283GF05=m +CONFIG_LCD_LTV350QV=m +CONFIG_LCD_PLATFORM=m +CONFIG_LCD_S6E63M0=m +CONFIG_LCD_TDO24M=m +CONFIG_LCD_VGG2432A4=m +# CONFIG_LDM_DEBUG is not set +CONFIG_LEDS=y +CONFIG_LEDS_88PM860X=m +CONFIG_LEDS_ADP5520=m +CONFIG_LEDS_ASIC3=y +CONFIG_LEDS_ATMEL_PWM=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_CLASS=y +CONFIG_LEDS_CLEVO_MAIL=m +CONFIG_LEDS_DA903X=m +CONFIG_LEDS_DAC124S085=m +CONFIG_LEDS_DELL_NETBOOKS=m +CONFIG_LEDS_GPIO=m +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_LM3530=m +CONFIG_LEDS_LP3944=m +CONFIG_LEDS_LP5521=m +CONFIG_LEDS_LP5523=m +CONFIG_LEDS_LT3593=m +CONFIG_LEDS_MC13783=m +CONFIG_LEDS_NET48XX=m +CONFIG_LEDS_NET5501=m +CONFIG_LEDS_PCA9532=m +CONFIG_LEDS_PCA9532_GPIO=y +CONFIG_LEDS_PCA955X=m +CONFIG_LEDS_PWM=m +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_RENESAS_TPU=y +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_BACKLIGHT=m +CONFIG_LEDS_TRIGGER_DEFAULT_ON=m +CONFIG_LEDS_TRIGGER_GPIO=m +CONFIG_LEDS_TRIGGER_HEARTBEAT=m +# CONFIG_LEDS_TRIGGER_IDE_DISK is not set +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_WM831X_STATUS=m +CONFIG_LEDS_WM8350=m +CONFIG_LEDS_WRAP=m +CONFIG_LEGACY_PTYS=y +# CONFIG_LGUEST is not set +# CONFIG_LGUEST_GUEST is not set +CONFIG_LIB80211=m +CONFIG_LIB80211_CRYPT_CCMP=m +CONFIG_LIB80211_CRYPT_TKIP=m +CONFIG_LIB80211_CRYPT_WEP=m +# CONFIG_LIB80211_DEBUG is not set +CONFIG_LIBCRC32C=m +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_CS=m +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_LIBERTAS_SDIO=m +CONFIG_LIBERTAS_SPI=m +CONFIG_LIBERTAS_THINFIRM=m +# CONFIG_LIBERTAS_THINFIRM_DEBUG is not set +CONFIG_LIBERTAS_THINFIRM_USB=m +CONFIG_LIBERTAS_USB=m +CONFIG_LIBFC=m +CONFIG_LIBFCOE=m +CONFIG_LIBIPW=m +CONFIG_LINE6_USB=m +# CONFIG_LINE6_USB_DEBUG is not set +# CONFIG_LINE6_USB_DUMP_CTRL is not set +# CONFIG_LINE6_USB_DUMP_MIDI is not set +# CONFIG_LINE6_USB_DUMP_PCM is not set +# CONFIG_LINE6_USB_IMPULSE_RESPONSE is not set +# CONFIG_LINE6_USB_RAW is not set +CONFIG_LIRC=m +CONFIG_LIRC_BT829=m +CONFIG_LIRC_IGORPLUGUSB=m +CONFIG_LIRC_IMON=m +CONFIG_LIRC_PARALLEL=m +CONFIG_LIRC_SASEM=m +CONFIG_LIRC_SERIAL=m +CONFIG_LIRC_SERIAL_TRANSMITTER=y +CONFIG_LIRC_SIR=m +CONFIG_LIRC_STAGING=y +CONFIG_LIRC_TTUSBIR=m +CONFIG_LIRC_ZILOG=m +CONFIG_LIS3L02DQ_BUF_KFIFO=y +# CONFIG_LIS3L02DQ_BUF_RING_SW is not set +CONFIG_LITELINK_DONGLE=m +# CONFIG_LKDTM is not set +CONFIG_LLC2=m +CONFIG_LNE390=m +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_LOCAL_TIMERS=y +CONFIG_LOCKD=m +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_LOCKD_V4=y +CONFIG_LOCKUP_DETECTOR=y +# CONFIG_LOCK_STAT is not set +# CONFIG_LOGFS is not set +# CONFIG_LOGO is not set +CONFIG_LOOPBACK_TARGET=m +CONFIG_LOWMEM_SIZE=0x30000000 +CONFIG_LP486E=m +CONFIG_LPC_SCH=m +# CONFIG_LP_CONSOLE is not set +CONFIG_LRU_CACHE=m +CONFIG_LSI_ET1011C_PHY=y +CONFIG_LSM_MMAP_MIN_ADDR=0 +CONFIG_LTPC=m +CONFIG_LXT_PHY=y +CONFIG_LZO_COMPRESS=y +CONFIG_LZO_DECOMPRESS=y +CONFIG_M25PXX_USE_FAST_READ=y +# CONFIG_M386 is not set +# CONFIG_M486 is not set +# CONFIG_M586 is not set +# CONFIG_M586MMX is not set +# CONFIG_M586TSC is not set +CONFIG_MA600_DONGLE=m +CONFIG_MAC80211=m +CONFIG_MAC80211_DEBUGFS=y +# CONFIG_MAC80211_DEBUG_COUNTERS is not set +CONFIG_MAC80211_DRIVER_API_TRACER=y +CONFIG_MAC80211_HAS_RC=y +# CONFIG_MAC80211_HT_DEBUG is not set +CONFIG_MAC80211_HWSIM=m +# CONFIG_MAC80211_IBSS_DEBUG is not set +CONFIG_MAC80211_LEDS=y +# CONFIG_MAC80211_NOINLINE is not set +CONFIG_MAC80211_RC_DEFAULT="minstrel_ht" +CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y +# CONFIG_MAC80211_RC_DEFAULT_PID is not set +CONFIG_MAC80211_RC_MINSTREL=y +CONFIG_MAC80211_RC_MINSTREL_HT=y +CONFIG_MAC80211_RC_PID=y +# CONFIG_MAC80211_TKIP_DEBUG is not set +# CONFIG_MAC80211_VERBOSE_DEBUG is not set +# CONFIG_MAC80211_VERBOSE_MHWMP_DEBUG is not set +# CONFIG_MAC80211_VERBOSE_MPATH_DEBUG is not set +# CONFIG_MAC80211_VERBOSE_MPL_DEBUG is not set +# CONFIG_MAC80211_VERBOSE_PS_DEBUG is not set +# CONFIG_MAC80211_VERBOSE_TDLS_DEBUG is not set +CONFIG_MACE=m +# CONFIG_MACE_AAUI_PORT is not set +CONFIG_MACHZ_WDT=m +# CONFIG_MACH_CM_T35 is not set +CONFIG_MACH_CM_T3517=y +# CONFIG_MACH_CRANEBOARD is not set +# CONFIG_MACH_DEVKIT8000 is not set +CONFIG_MACH_IGEP0020=y +CONFIG_MACH_IGEP0030=y +CONFIG_MACH_NOKIA_RM680=y +CONFIG_MACH_NOKIA_RX51=y +# CONFIG_MACH_OMAP3517EVM is not set +CONFIG_MACH_OMAP3530_LV_SOM=y +CONFIG_MACH_OMAP3EVM=y +CONFIG_MACH_OMAP3_BEAGLE=y +CONFIG_MACH_OMAP3_PANDORA=y +CONFIG_MACH_OMAP3_TORPEDO=y +CONFIG_MACH_OMAP3_TOUCHBOOK=y +CONFIG_MACH_OMAP_3430SDP=y +CONFIG_MACH_OMAP_3630SDP=y +CONFIG_MACH_OMAP_GENERIC=y +CONFIG_MACH_OMAP_LDP=y +CONFIG_MACH_OMAP_ZOOM2=y +CONFIG_MACH_OMAP_ZOOM3=y +CONFIG_MACH_OVERO=y +CONFIG_MACH_SBC3530=y +CONFIG_MACH_TI8168EVM=y +CONFIG_MACINTOSH_DRIVERS=y +CONFIG_MACVLAN=m +CONFIG_MACVTAP=m +CONFIG_MAC_EMUMOUSEBTN=m +CONFIG_MAC_FLOPPY=m +CONFIG_MADGEMC=m +CONFIG_MANTIS_CORE=m +CONFIG_MARVELL_PHY=y +# CONFIG_MATH_EMULATION is not set +# CONFIG_MATOM is not set +CONFIG_MAX1363=m +CONFIG_MAX1363_RING_BUFFER=y +# CONFIG_MAX517 is not set +CONFIG_MAX63XX_WATCHDOG=m +CONFIG_MAX8925_POWER=m +# CONFIG_MAXSMP is not set +CONFIG_MCA=y +CONFIG_MCA_LEGACY=y +# CONFIG_MCA_PROC_FS is not set +# CONFIG_MCORE2 is not set +CONFIG_MCP2120_DONGLE=m +# CONFIG_MCRUSOE is not set +CONFIG_MCS_FIR=m +# CONFIG_MCYRIXIII is not set +CONFIG_MD=y +CONFIG_MDA_CONSOLE=m +CONFIG_MDIO=m +CONFIG_MDIO_BITBANG=m +CONFIG_MDIO_GPIO=m +CONFIG_MD_AUTODETECT=y +CONFIG_MD_FAULTY=m +CONFIG_MD_LINEAR=m +CONFIG_MD_MULTIPATH=m +CONFIG_MD_RAID0=m +CONFIG_MD_RAID1=m +CONFIG_MD_RAID10=m +CONFIG_MD_RAID456=m +CONFIG_MEDIA_ALTERA_CI=m +CONFIG_MEDIA_ATTACH=y +# CONFIG_MEDIA_CONTROLLER is not set +CONFIG_MEDIA_SUPPORT=m +CONFIG_MEDIA_TUNER=m +# CONFIG_MEDIA_TUNER_CUSTOMISE is not set +CONFIG_MEDIA_TUNER_MAX2165=m +CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MT2060=m +CONFIG_MEDIA_TUNER_MT20XX=m +CONFIG_MEDIA_TUNER_MT2131=m +CONFIG_MEDIA_TUNER_MT2266=m +CONFIG_MEDIA_TUNER_MXL5005S=m +CONFIG_MEDIA_TUNER_MXL5007T=m +CONFIG_MEDIA_TUNER_QT1010=m +CONFIG_MEDIA_TUNER_SIMPLE=m +CONFIG_MEDIA_TUNER_TDA18212=m +CONFIG_MEDIA_TUNER_TDA18218=m +CONFIG_MEDIA_TUNER_TDA18271=m +CONFIG_MEDIA_TUNER_TDA827X=m +CONFIG_MEDIA_TUNER_TDA8290=m +CONFIG_MEDIA_TUNER_TDA9887=m +CONFIG_MEDIA_TUNER_TEA5761=m +CONFIG_MEDIA_TUNER_TEA5767=m +CONFIG_MEDIA_TUNER_XC2028=m +CONFIG_MEDIA_TUNER_XC4000=m +CONFIG_MEDIA_TUNER_XC5000=m +# CONFIG_MEFFICEON is not set +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_MAILBOX=m +CONFIG_MEGARAID_MM=m +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_SAS=m +# CONFIG_MELAN is not set +CONFIG_MEMORY_FAILURE=y +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +CONFIG_MEMSTICK=m +# CONFIG_MEMSTICK_DEBUG is not set +CONFIG_MEMSTICK_JMICRON_38X=m +CONFIG_MEMSTICK_R592=m +CONFIG_MEMSTICK_TIFM_MS=m +# CONFIG_MEMSTICK_UNSAFE_RESUME is not set +# CONFIG_MEMTEST is not set +CONFIG_MFD_CORE=y +CONFIG_MFD_CS5535=m +CONFIG_MFD_JANZ_CMODIO=m +CONFIG_MFD_MC13783=m +CONFIG_MFD_MC13XXX=m +CONFIG_MFD_OMAP_USB_HOST=y +CONFIG_MFD_PCF50633=m +CONFIG_MFD_RDC321X=m +CONFIG_MFD_SM501=m +# CONFIG_MFD_SM501_GPIO is not set +CONFIG_MFD_TIMBERDALE=m +CONFIG_MFD_TPS65912=y +CONFIG_MFD_TWL4030_AUDIO=y +CONFIG_MFD_VX855=m +CONFIG_MFD_WL1273_CORE=m +CONFIG_MFD_WM831X=y +CONFIG_MFD_WM8350=y +CONFIG_MFD_WM8400=m +# CONFIG_MGEODEGX1 is not set +# CONFIG_MGEODE_LX is not set +CONFIG_MG_DISK=m +CONFIG_MG_DISK_RES=0 +CONFIG_MICREL_PHY=m +CONFIG_MICROCODE=m +CONFIG_MICROCODE_AMD=y +CONFIG_MICROCODE_INTEL=y +CONFIG_MICROCODE_OLD_INTERFACE=y +CONFIG_MIGRATION=y +CONFIG_MII=y +CONFIG_MINIX_FS=m +CONFIG_MISC_FILESYSTEMS=y +CONFIG_MISDN=m +CONFIG_MISDN_AVMFRITZ=m +CONFIG_MISDN_DSP=m +CONFIG_MISDN_HFCMULTI=m +CONFIG_MISDN_HFCPCI=m +CONFIG_MISDN_HFCUSB=m +CONFIG_MISDN_INFINEON=m +CONFIG_MISDN_IPAC=m +CONFIG_MISDN_ISAR=m +CONFIG_MISDN_L1OIP=m +CONFIG_MISDN_NETJET=m +CONFIG_MISDN_SPEEDFAX=m +CONFIG_MISDN_W6692=m +CONFIG_MIXCOMWD=m +# CONFIG_MK6 is not set +# CONFIG_MK7 is not set +# CONFIG_MK8 is not set +CONFIG_MKISS=m +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y +CONFIG_MLX4_EN=m +CONFIG_MLX4_INFINIBAND=m +CONFIG_MMC=y +CONFIG_MMC_BLOCK_BOUNCE=y +CONFIG_MMC_BLOCK_MINORS=8 +CONFIG_MMC_CB710=m +# CONFIG_MMC_CLKGATE is not set +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_DW=m +# CONFIG_MMC_DW_IDMAC is not set +CONFIG_MMC_OMAP=m +CONFIG_MMC_OMAP_HS=y +CONFIG_MMC_RICOH_MMC=y +CONFIG_MMC_SDHCI_BIG_ENDIAN_32BIT_BYTE_SWAPPER=y +CONFIG_MMC_SDHCI_IO_ACCESSORS=y +CONFIG_MMC_SDHCI_OF_ESDHC=m +CONFIG_MMC_SDHCI_OF_HLWD=m +CONFIG_MMC_SDHCI_PCI=m +CONFIG_MMC_SDRICOH_CS=m +CONFIG_MMC_SPI=m +# CONFIG_MMC_TEST is not set +CONFIG_MMC_TIFM_SD=m +CONFIG_MMC_TMIO=m +CONFIG_MMC_TMIO_CORE=m +# CONFIG_MMC_UNSAFE_RESUME is not set +CONFIG_MMC_USHC=m +CONFIG_MMC_VIA_SDMMC=m +CONFIG_MMC_VUB300=m +CONFIG_MMC_WBSD=m +CONFIG_MMIOTRACE=y +# CONFIG_MMIOTRACE_TEST is not set +CONFIG_MMU=y +CONFIG_MMU_NOTIFIER=y +CONFIG_MM_OWNER=y +CONFIG_MODULES=y +# CONFIG_MODULE_FORCE_LOAD is not set +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODULE_UNLOAD=y +CONFIG_MOUSE_APPLETOUCH=m +# CONFIG_MOUSE_ATIXL is not set +CONFIG_MOUSE_BCM5974=m +CONFIG_MOUSE_GPIO=m +CONFIG_MOUSE_INPORT=m +CONFIG_MOUSE_LOGIBM=m +CONFIG_MOUSE_PC110PAD=m +CONFIG_MOUSE_PS2=m +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_ELANTECH=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_OLPC=y +CONFIG_MOUSE_PS2_SENTELIC=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_SYNAPTICS_I2C=m +CONFIG_MOUSE_VSXXXAA=m +CONFIG_MOXA_INTELLIO=m +CONFIG_MOXA_SMARTIO=m +# CONFIG_MPENTIUM4 is not set +# CONFIG_MPENTIUMII is not set +# CONFIG_MPENTIUMIII is not set +# CONFIG_MPENTIUMM is not set +CONFIG_MPIC=y +CONFIG_MPIC_BROKEN_REGREAD=y +# CONFIG_MPIC_WEIRD is not set +# CONFIG_MPSC is not set +CONFIG_MSDOS_FS=m +CONFIG_MSDOS_PARTITION=y +# CONFIG_MSI_BITMAP_SELFTEST is not set +CONFIG_MSI_LAPTOP=m +CONFIG_MSI_WMI=m +CONFIG_MSPRO_BLOCK=m +CONFIG_MTDRAM_ERASE_SIZE=128 +CONFIG_MTDRAM_TOTAL_SIZE=4096 +CONFIG_MTD_ABSENT=m +CONFIG_MTD_AFS_PARTS=m +CONFIG_MTD_ALAUDA=m +CONFIG_MTD_AMD76XROM=m +CONFIG_MTD_AR7_PARTS=m +CONFIG_MTD_BLOCK2MTD=m +CONFIG_MTD_BLOCK_RO=m +CONFIG_MTD_CFI=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +# CONFIG_MTD_CFI_I4 is not set +# CONFIG_MTD_CFI_I8 is not set +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_CK804XROM=m +CONFIG_MTD_CMDLINE_PARTS=y +CONFIG_MTD_COMPLEX_MAPPINGS=y +CONFIG_MTD_DATAFLASH=m +CONFIG_MTD_DATAFLASH_OTP=y +# CONFIG_MTD_DATAFLASH_WRITE_VERIFY is not set +CONFIG_MTD_DOC2000=m +CONFIG_MTD_DOC2001=m +CONFIG_MTD_DOC2001PLUS=m +CONFIG_MTD_DOCECC=m +CONFIG_MTD_DOCG3=m +CONFIG_MTD_DOCPROBE=m +CONFIG_MTD_DOCPROBE_ADDRESS=0x0 +# CONFIG_MTD_DOCPROBE_ADVANCED is not set +CONFIG_MTD_ESB2ROM=m +CONFIG_MTD_GEN_PROBE=m +CONFIG_MTD_GPIO_ADDR=m +CONFIG_MTD_ICHXROM=m +CONFIG_MTD_IMPA7=m +CONFIG_MTD_INTEL_VR_NOR=m +CONFIG_MTD_JEDECPROBE=m +CONFIG_MTD_L440GX=m +CONFIG_MTD_LATCH_ADDR=m +CONFIG_MTD_LPDDR=m +CONFIG_MTD_M25P80=m +CONFIG_MTD_MAP_BANK_WIDTH_1=y +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set +CONFIG_MTD_MAP_BANK_WIDTH_2=y +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set +CONFIG_MTD_MAP_BANK_WIDTH_4=y +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set +CONFIG_MTD_MTDRAM=m +CONFIG_MTD_NAND_CAFE=m +CONFIG_MTD_NAND_CS553X=m +CONFIG_MTD_NAND_DENALI=m +CONFIG_MTD_NAND_DENALI_SCRATCH_REG_ADDR=0xFF108018 +CONFIG_MTD_NAND_DISKONCHIP=m +# CONFIG_MTD_NAND_DISKONCHIP_BBTWRITE is not set +CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADDRESS=0 +# CONFIG_MTD_NAND_DISKONCHIP_PROBE_ADVANCED is not set +CONFIG_MTD_NAND_ECC_BCH=y +# CONFIG_MTD_NAND_ECC_SMC is not set +CONFIG_MTD_NAND_FSL_ELBC=m +CONFIG_MTD_NAND_GPIO=m +# CONFIG_MTD_NAND_MUSEUM_IDS is not set +CONFIG_MTD_NAND_NANDSIM=m +CONFIG_MTD_NAND_OMAP2=y +CONFIG_MTD_NAND_PASEMI=m +CONFIG_MTD_NAND_PLATFORM=m +CONFIG_MTD_NAND_RICOH=m +CONFIG_MTD_NAND_TMIO=m +# CONFIG_MTD_NAND_VERIFY_WRITE is not set +CONFIG_MTD_NETSC520=m +CONFIG_MTD_NETtel=m +CONFIG_MTD_ONENAND=m +CONFIG_MTD_ONENAND_2X_PROGRAM=y +CONFIG_MTD_ONENAND_GENERIC=m +CONFIG_MTD_ONENAND_OMAP2=m +# CONFIG_MTD_ONENAND_OTP is not set +CONFIG_MTD_ONENAND_SIM=m +CONFIG_MTD_ONENAND_VERIFY_WRITE=y +CONFIG_MTD_OOPS=m +CONFIG_MTD_PCI=m +CONFIG_MTD_PCMCIA=m +# CONFIG_MTD_PCMCIA_ANONYMOUS is not set +CONFIG_MTD_PHRAM=m +CONFIG_MTD_PHYSMAP=m +# CONFIG_MTD_PHYSMAP_COMPAT is not set +CONFIG_MTD_PHYSMAP_OF=m +CONFIG_MTD_PLATRAM=m +CONFIG_MTD_PMC551=m +# CONFIG_MTD_PMC551_BUGFIX is not set +# CONFIG_MTD_PMC551_DEBUG is not set +CONFIG_MTD_QINFO_PROBE=m +CONFIG_MTD_RAM=m +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 +CONFIG_MTD_REDBOOT_PARTS=m +# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set +# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set +CONFIG_MTD_ROM=m +CONFIG_MTD_SBC_GXX=m +CONFIG_MTD_SC520CDP=m +CONFIG_MTD_SCB2_FLASH=m +CONFIG_MTD_SCx200_DOCFLASH=m +CONFIG_MTD_SLRAM=m +CONFIG_MTD_SST25L=m +CONFIG_MTD_SWAP=m +# CONFIG_MTD_TESTS is not set +CONFIG_MTD_TS5500=m +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_BEB_RESERVE=1 +# CONFIG_MTD_UBI_DEBUG is not set +CONFIG_MTD_UBI_GLUEBI=m +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTRR=y +CONFIG_MTRR_SANITIZER=y +CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1 +CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1 +# CONFIG_MULTICORE_RAID456 is not set +# CONFIG_MUSB_PIO_ONLY is not set +CONFIG_MV643XX_ETH=m +# CONFIG_MVIAC3_2 is not set +# CONFIG_MVIAC7 is not set +CONFIG_MWAVE=m +CONFIG_MWIFIEX=m +CONFIG_MWIFIEX_PCIE=m +CONFIG_MWIFIEX_SDIO=m +# CONFIG_MWINCHIP3D is not set +# CONFIG_MWINCHIPC6 is not set +CONFIG_MWL8K=m +CONFIG_MXM_WMI=m +CONFIG_MYRI10GE=m +CONFIG_MYRI10GE_DCA=y +CONFIG_N2=m +CONFIG_NAMESPACES=y +CONFIG_NATIONAL_PHY=y +CONFIG_NATSEMI=m +CONFIG_NCPFS_EXTRAS=y +CONFIG_NCPFS_IOCTL_LOCKING=y +CONFIG_NCPFS_NFS_NS=y +CONFIG_NCPFS_NLS=y +CONFIG_NCPFS_OS2_NS=y +CONFIG_NCPFS_PACKET_SIGNING=y +# CONFIG_NCPFS_SMALLDOS is not set +CONFIG_NCPFS_STRONG=y +CONFIG_NCP_FS=m +CONFIG_NE2000=m +CONFIG_NE2K_PCI=m +CONFIG_NE2_MCA=m +CONFIG_NE3210=m +CONFIG_NEED_MULTIPLE_NODES=y +CONFIG_NEED_PER_CPU_KM=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NEON=y +CONFIG_NET=y +CONFIG_NETCONSOLE=m +CONFIG_NETCONSOLE_DYNAMIC=y +CONFIG_NETDEVICES=y +CONFIG_NETFILTER=y +CONFIG_NETFILTER_ADVANCED=y +# CONFIG_NETFILTER_DEBUG is not set +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_TPROXY=m +CONFIG_NETFILTER_XTABLES=m +CONFIG_NETFILTER_XT_CONNMARK=m +CONFIG_NETFILTER_XT_MARK=m +CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m +CONFIG_NETFILTER_XT_MATCH_CLUSTER=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_CPU=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DEVGROUP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +CONFIG_NETFILTER_XT_MATCH_ESP=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_HL=m +CONFIG_NETFILTER_XT_MATCH_IPRANGE=m +CONFIG_NETFILTER_XT_MATCH_IPVS=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m +CONFIG_NETFILTER_XT_MATCH_OSF=m +CONFIG_NETFILTER_XT_MATCH_OWNER=m +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_QUOTA=m +CONFIG_NETFILTER_XT_MATCH_RATEEST=m +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_RECENT=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_SOCKET=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_TIME=m +CONFIG_NETFILTER_XT_MATCH_U32=m +CONFIG_NETFILTER_XT_SET=m +CONFIG_NETFILTER_XT_TARGET_AUDIT=m +CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_CONNSECMARK=m +CONFIG_NETFILTER_XT_TARGET_CT=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_HL=m +CONFIG_NETFILTER_XT_TARGET_IDLETIMER=m +CONFIG_NETFILTER_XT_TARGET_LED=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +CONFIG_NETFILTER_XT_TARGET_NOTRACK=m +CONFIG_NETFILTER_XT_TARGET_RATEEST=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m +CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP=m +CONFIG_NETFILTER_XT_TARGET_TEE=m +CONFIG_NETFILTER_XT_TARGET_TPROXY=m +CONFIG_NETFILTER_XT_TARGET_TRACE=m +CONFIG_NETLABEL=y +CONFIG_NETPOLL=y +# CONFIG_NETPOLL_TRAP is not set +CONFIG_NETROM=m +CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +CONFIG_NETWORK_SECMARK=y +CONFIG_NETXEN_NIC=m +CONFIG_NET_9P=m +# CONFIG_NET_9P_DEBUG is not set +CONFIG_NET_9P_RDMA=m +CONFIG_NET_9P_VIRTIO=m +CONFIG_NET_ACT_CSUM=m +CONFIG_NET_ACT_GACT=m +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_NAT=m +CONFIG_NET_ACT_PEDIT=m +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_SIMP=m +CONFIG_NET_ACT_SKBEDIT=m +CONFIG_NET_CLS=y +CONFIG_NET_CLS_ACT=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_CGROUP=m +CONFIG_NET_CLS_FLOW=m +CONFIG_NET_CLS_FW=m +# CONFIG_NET_CLS_IND is not set +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_CLS_TCINDEX=m +CONFIG_NET_CLS_U32=m +CONFIG_NET_CORE=y +CONFIG_NET_DCCPPROBE=m +# CONFIG_NET_DROP_MONITOR is not set +CONFIG_NET_DSA=m +CONFIG_NET_DSA_MV88E6060=m +CONFIG_NET_DSA_MV88E6123_61_65=m +CONFIG_NET_DSA_MV88E6131=m +CONFIG_NET_DSA_MV88E6XXX=m +CONFIG_NET_DSA_MV88E6XXX_NEED_PPU=y +CONFIG_NET_DSA_TAG_DSA=y +CONFIG_NET_DSA_TAG_EDSA=y +CONFIG_NET_DSA_TAG_TRAILER=y +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_FC=y +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_NET_IPGRE_DEMUX=m +CONFIG_NET_IPIP=m +CONFIG_NET_KEY=m +# CONFIG_NET_KEY_MIGRATE is not set +CONFIG_NET_NS=y +CONFIG_NET_PACKET_ENGINE=y +CONFIG_NET_PKTGEN=m +CONFIG_NET_POLL_CONTROLLER=y +CONFIG_NET_SB1000=m +CONFIG_NET_SCHED=y +CONFIG_NET_SCH_ATM=m +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_CHOKE=m +CONFIG_NET_SCH_DRR=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_FIFO=y +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_INGRESS=m +CONFIG_NET_SCH_MQPRIO=m +CONFIG_NET_SCH_MULTIQ=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_QFQ=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFB=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SCTPPROBE=m +CONFIG_NET_TCPPROBE=m +CONFIG_NET_TULIP=y +CONFIG_NET_VENDOR_3COM=y +CONFIG_NET_VENDOR_8390=y +CONFIG_NET_VENDOR_ADAPTEC=y +CONFIG_NET_VENDOR_ALTEON=y +CONFIG_NET_VENDOR_AMD=y +CONFIG_NET_VENDOR_APPLE=y +CONFIG_NET_VENDOR_ATHEROS=y +CONFIG_NET_VENDOR_BROADCOM=y +CONFIG_NET_VENDOR_BROCADE=y +CONFIG_NET_VENDOR_CHELSIO=y +CONFIG_NET_VENDOR_CIRRUS=y +CONFIG_NET_VENDOR_CISCO=y +CONFIG_NET_VENDOR_DEC=y +CONFIG_NET_VENDOR_DLINK=y +CONFIG_NET_VENDOR_EMULEX=y +CONFIG_NET_VENDOR_EXAR=y +CONFIG_NET_VENDOR_FARADAY=y +CONFIG_NET_VENDOR_FUJITSU=y +CONFIG_NET_VENDOR_HP=y +CONFIG_NET_VENDOR_I825XX=y +CONFIG_NET_VENDOR_IBM=y +CONFIG_NET_VENDOR_INTEL=y +CONFIG_NET_VENDOR_MARVELL=y +CONFIG_NET_VENDOR_MELLANOX=y +CONFIG_NET_VENDOR_MICREL=y +CONFIG_NET_VENDOR_MICROCHIP=y +CONFIG_NET_VENDOR_MYRI=y +CONFIG_NET_VENDOR_NATSEMI=y +CONFIG_NET_VENDOR_NVIDIA=y +CONFIG_NET_VENDOR_OKI=y +CONFIG_NET_VENDOR_PASEMI=y +CONFIG_NET_VENDOR_QLOGIC=y +CONFIG_NET_VENDOR_RACAL=y +CONFIG_NET_VENDOR_RDC=y +CONFIG_NET_VENDOR_REALTEK=y +CONFIG_NET_VENDOR_SEEQ=y +CONFIG_NET_VENDOR_SILAN=y +CONFIG_NET_VENDOR_SIS=y +CONFIG_NET_VENDOR_SMSC=y +CONFIG_NET_VENDOR_STMICRO=y +CONFIG_NET_VENDOR_SUN=y +CONFIG_NET_VENDOR_TEHUTI=y +CONFIG_NET_VENDOR_TI=y +CONFIG_NET_VENDOR_TOSHIBA=y +CONFIG_NET_VENDOR_VIA=y +CONFIG_NET_VENDOR_XILINX=y +CONFIG_NET_VENDOR_XIRCOM=y +CONFIG_NEW_LEDS=y +CONFIG_NFC=m +CONFIG_NFC_NCI=m +CONFIG_NFC_PN533=m +CONFIG_NFC_WILINK=m +CONFIG_NFSD=m +CONFIG_NFSD_V2_ACL=y +CONFIG_NFSD_V3=y +CONFIG_NFSD_V3_ACL=y +CONFIG_NFSD_V4=y +CONFIG_NFS_ACL_SUPPORT=m +CONFIG_NFS_COMMON=y +CONFIG_NFS_FS=m +CONFIG_NFS_FSCACHE=y +CONFIG_NFS_USE_KERNEL_DNS=y +# CONFIG_NFS_USE_LEGACY_DNS is not set +# CONFIG_NFS_USE_NEW_IDMAPPER is not set +CONFIG_NFS_V3=y +CONFIG_NFS_V3_ACL=y +CONFIG_NFS_V4=y +# CONFIG_NFS_V4_1 is not set +CONFIG_NFTL=m +CONFIG_NFTL_RW=y +CONFIG_NF_CONNTRACK=m +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_BROADCAST=m +CONFIG_NF_CONNTRACK_EVENTS=y +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IPV4=m +CONFIG_NF_CONNTRACK_IPV6=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_MARK=y +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_PPTP=m +CONFIG_NF_CONNTRACK_PROC_COMPAT=y +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SECMARK=y +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CONNTRACK_SNMP=m +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CONNTRACK_TIMESTAMP=y +CONFIG_NF_CONNTRACK_ZONES=y +CONFIG_NF_CT_NETLINK=m +CONFIG_NF_CT_PROTO_DCCP=m +CONFIG_NF_CT_PROTO_GRE=m +CONFIG_NF_CT_PROTO_SCTP=m +CONFIG_NF_CT_PROTO_UDPLITE=m +CONFIG_NF_DEFRAG_IPV4=m +CONFIG_NF_DEFRAG_IPV6=m +CONFIG_NF_NAT=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_H323=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_NEEDED=y +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_PROTO_DCCP=m +CONFIG_NF_NAT_PROTO_GRE=m +CONFIG_NF_NAT_PROTO_SCTP=m +CONFIG_NF_NAT_PROTO_UDPLITE=m +CONFIG_NF_NAT_SIP=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NI52=m +CONFIG_NI65=m +CONFIG_NILFS2_FS=m +CONFIG_NIU=m +CONFIG_NLATTR=y +CONFIG_NLS=y +CONFIG_NLS_ASCII=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=m +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_UTF8=m +CONFIG_NODES_SPAN_OTHER_NODES=y +# CONFIG_NOHIGHMEM is not set +CONFIG_NOP_TRACER=y +CONFIG_NORTEL_HERMES=m +CONFIG_NOZOMI=m +CONFIG_NO_BOOTMEM=y +CONFIG_NO_HZ=y +CONFIG_NR_IRQS=512 +CONFIG_NS83820=m +CONFIG_NSC_FIR=m +CONFIG_NSC_GPIO=m +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_FS=m +# CONFIG_NTFS_RW is not set +CONFIG_NUMA=y +# CONFIG_NUMA_EMU is not set +CONFIG_NV_TCO=m +# CONFIG_N_GSM is not set +CONFIG_N_HDLC=m +CONFIG_OABI_COMPAT=y +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_OCFS2_DEBUG_MASKLOG=y +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_STATS=y +CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m +CONFIG_OF=y +CONFIG_OF_ADDRESS=y +CONFIG_OF_DEVICE=y +CONFIG_OF_DYNAMIC=y +CONFIG_OF_EARLY_FLATTREE=y +CONFIG_OF_FLATTREE=y +CONFIG_OF_GPIO=y +CONFIG_OF_I2C=y +CONFIG_OF_IRQ=y +CONFIG_OF_MDIO=y +CONFIG_OF_NET=y +CONFIG_OF_PCI=y +CONFIG_OF_PCI_IRQ=y +CONFIG_OF_PROMTREE=y +CONFIG_OF_SPI=y +CONFIG_OLD_BELKIN_DONGLE=m +CONFIG_OLPC=y +CONFIG_OLPC_XO15_SCI=y +CONFIG_OLPC_XO1_PM=y +CONFIG_OLPC_XO1_RTC=y +CONFIG_OLPC_XO1_SCI=y +CONFIG_OMAP2_DSS=y +# CONFIG_OMAP2_DSS_COLLECT_IRQ_STATS is not set +CONFIG_OMAP2_DSS_DEBUG_SUPPORT=y +CONFIG_OMAP2_DSS_DPI=y +# CONFIG_OMAP2_DSS_DSI is not set +# CONFIG_OMAP2_DSS_FAKE_VSYNC is not set +CONFIG_OMAP2_DSS_MIN_FCK_PER_PCK=0 +# CONFIG_OMAP2_DSS_RFBI is not set +CONFIG_OMAP2_DSS_SDI=y +CONFIG_OMAP2_DSS_SLEEP_AFTER_VENC_RESET=y +CONFIG_OMAP2_DSS_VENC=y +CONFIG_OMAP2_VRAM=y +CONFIG_OMAP2_VRAM_SIZE=6 +CONFIG_OMAP2_VRFB=y +CONFIG_OMAP3_EMU=y +# CONFIG_OMAP3_L2_AUX_SECURE_SAVE_RESTORE is not set +# CONFIG_OMAP3_SDRC_AC_TIMING is not set +CONFIG_OMAP_32K_TIMER=y +CONFIG_OMAP_32K_TIMER_HZ=128 +CONFIG_OMAP_DM_TIMER=y +CONFIG_OMAP_IOMMU=y +CONFIG_OMAP_IOMMU_DEBUG=m +CONFIG_OMAP_IOVMM=m +CONFIG_OMAP_MBOX_FWK=m +CONFIG_OMAP_MBOX_KFIFO_SIZE=256 +CONFIG_OMAP_MCBSP=y +CONFIG_OMAP_MUX=y +# CONFIG_OMAP_MUX_DEBUG is not set +CONFIG_OMAP_MUX_WARNINGS=y +CONFIG_OMAP_PACKAGE_CBB=y +CONFIG_OMAP_PACKAGE_CBP=y +CONFIG_OMAP_PACKAGE_CUS=y +CONFIG_OMAP_PM_NOOP=y +CONFIG_OMAP_RESET_CLOCKS=y +# CONFIG_OMAP_SMARTREFLEX is not set +CONFIG_OMAP_WATCHDOG=m +CONFIG_OMFS_FS=m +CONFIG_OMNIBOOK=m +CONFIG_OPROFILE=m +# CONFIG_OPROFILE_EVENT_MULTIPLEX is not set +CONFIG_OPTIMIZE_INLINING=y +CONFIG_OPTPROBES=y +CONFIG_ORE=m +CONFIG_ORINOCO_USB=m +CONFIG_OUTER_CACHE=y +CONFIG_OUTER_CACHE_SYNC=y +CONFIG_OVERLAYFS_FS=m +CONFIG_P54_COMMON=m +CONFIG_P54_LEDS=y +CONFIG_P54_PCI=m +CONFIG_P54_SPI=m +# CONFIG_P54_SPI_DEFAULT_EEPROM is not set +CONFIG_P54_USB=m +CONFIG_PACKARDBELL_E5=m +CONFIG_PACKET=y +CONFIG_PADATA=y +CONFIG_PAGEFLAGS_EXTENDED=y +CONFIG_PANASONIC_LAPTOP=m +CONFIG_PANEL=m +CONFIG_PANEL_ACX565AKM=m +# CONFIG_PANEL_CHANGE_MESSAGE is not set +CONFIG_PANEL_LGPHILIPS_LB035Q02=m +CONFIG_PANEL_NEC_NL8048HL11_01B=m +CONFIG_PANEL_PARPORT=0 +CONFIG_PANEL_PICODLP=m +CONFIG_PANEL_PROFILE=5 +CONFIG_PANEL_SHARP_LS037V7DW01=y +CONFIG_PANEL_TPO_TD043MTEA1=y +CONFIG_PANTHERLORD_FF=y +CONFIG_PARAVIRT=y +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_GUEST=y +CONFIG_PARAVIRT_SPINLOCKS=y +CONFIG_PARIDE=m +CONFIG_PARIDE_ATEN=m +CONFIG_PARIDE_BPCK=m +CONFIG_PARIDE_BPCK6=m +CONFIG_PARIDE_COMM=m +CONFIG_PARIDE_DSTR=m +CONFIG_PARIDE_EPAT=m +# CONFIG_PARIDE_EPATC8 is not set +CONFIG_PARIDE_EPIA=m +CONFIG_PARIDE_FIT2=m +CONFIG_PARIDE_FIT3=m +CONFIG_PARIDE_FRIQ=m +CONFIG_PARIDE_FRPW=m +CONFIG_PARIDE_KBIC=m +CONFIG_PARIDE_KTTI=m +CONFIG_PARIDE_ON20=m +CONFIG_PARIDE_ON26=m +CONFIG_PARIDE_PCD=m +CONFIG_PARIDE_PD=m +CONFIG_PARIDE_PF=m +CONFIG_PARIDE_PG=m +CONFIG_PARIDE_PT=m +CONFIG_PARPORT=m +CONFIG_PARPORT_AX88796=m +# CONFIG_PARPORT_GSC is not set +CONFIG_PARPORT_NOT_PC=y +CONFIG_PARPORT_PC=m +CONFIG_PARPORT_PC_FIFO=y +CONFIG_PARPORT_PC_PCMCIA=m +# CONFIG_PARPORT_PC_SUPERIO is not set +CONFIG_PARPORT_SERIAL=m +CONFIG_PARTITION_ADVANCED=y +# CONFIG_PASEMI_MAC is not set +CONFIG_PATA_ACPI=y +CONFIG_PATA_ALI=m +CONFIG_PATA_AMD=m +CONFIG_PATA_ARTOP=m +CONFIG_PATA_ATIIXP=m +CONFIG_PATA_ATP867X=m +CONFIG_PATA_CMD640_PCI=m +CONFIG_PATA_CMD64X=m +CONFIG_PATA_CS5520=m +CONFIG_PATA_CS5530=m +CONFIG_PATA_CS5535=m +CONFIG_PATA_CS5536=m +CONFIG_PATA_CYPRESS=m +CONFIG_PATA_EFAR=m +CONFIG_PATA_HPT366=m +CONFIG_PATA_HPT37X=m +CONFIG_PATA_HPT3X2N=m +CONFIG_PATA_HPT3X3=m +# CONFIG_PATA_HPT3X3_DMA is not set +CONFIG_PATA_ISAPNP=m +CONFIG_PATA_IT8213=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_LEGACY=m +CONFIG_PATA_MACIO=y +CONFIG_PATA_MARVELL=m +CONFIG_PATA_MPIIX=m +CONFIG_PATA_NETCELL=m +CONFIG_PATA_NINJA32=m +CONFIG_PATA_NS87410=m +CONFIG_PATA_NS87415=m +CONFIG_PATA_OF_PLATFORM=m +CONFIG_PATA_OLDPIIX=m +CONFIG_PATA_OPTI=m +CONFIG_PATA_OPTIDMA=m +CONFIG_PATA_PCMCIA=m +CONFIG_PATA_PDC2027X=m +CONFIG_PATA_PDC_OLD=m +CONFIG_PATA_PLATFORM=m +CONFIG_PATA_QDI=m +CONFIG_PATA_RADISYS=m +CONFIG_PATA_RDC=m +CONFIG_PATA_RZ1000=m +CONFIG_PATA_SC1200=m +CONFIG_PATA_SCH=m +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_TOSHIBA=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_VIA=m +CONFIG_PATA_WINBOND=m +CONFIG_PATA_WINBOND_VLB=m +CONFIG_PC300TOO=m +CONFIG_PC8736x_GPIO=m +CONFIG_PC87413_WDT=m +CONFIG_PCCARD_NONSTATIC=y +CONFIG_PCF50633_ADC=m +CONFIG_PCF50633_GPIO=m +CONFIG_PCH_CAN=m +CONFIG_PCH_DMA=m +CONFIG_PCH_GBE=m +CONFIG_PCH_PHUB=m +CONFIG_PCI=y +CONFIG_PCI200SYN=m +CONFIG_PCIEAER=y +# CONFIG_PCIEAER_INJECT is not set +CONFIG_PCIEASPM=y +# CONFIG_PCIEASPM_DEBUG is not set +CONFIG_PCIEPORTBUS=y +# CONFIG_PCIE_ECRC is not set +CONFIG_PCIE_PME=y +CONFIG_PCIPCWATCHDOG=m +CONFIG_PCI_ATMEL=m +CONFIG_PCI_ATS=y +CONFIG_PCI_BIOS=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_DIRECT=y +CONFIG_PCI_DOMAINS=y +CONFIG_PCI_GOANY=y +# CONFIG_PCI_GOBIOS is not set +# CONFIG_PCI_GODIRECT is not set +# CONFIG_PCI_GOMMCONFIG is not set +# CONFIG_PCI_GOOLPC is not set +CONFIG_PCI_IOAPIC=y +CONFIG_PCI_IOV=y +CONFIG_PCI_LABEL=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCI_MSI=y +CONFIG_PCI_OLPC=y +CONFIG_PCI_PASID=y +CONFIG_PCI_PRI=y +CONFIG_PCI_QUIRKS=y +CONFIG_PCI_STUB=m +CONFIG_PCI_XEN=y +CONFIG_PCMCIA=m +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_3C589=m +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_ATMEL=m +CONFIG_PCMCIA_AXNET=m +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_PCMCIA_HERMES=m +CONFIG_PCMCIA_IBMTR=m +CONFIG_PCMCIA_LOAD_CIS=y +CONFIG_PCMCIA_NINJA_SCSI=m +CONFIG_PCMCIA_NMCLAN=m +CONFIG_PCMCIA_PCNET=m +CONFIG_PCMCIA_PROBE=y +CONFIG_PCMCIA_QLOGIC=m +CONFIG_PCMCIA_RAYCS=m +CONFIG_PCMCIA_SMC91C92=m +CONFIG_PCMCIA_SPECTRUM=m +CONFIG_PCMCIA_SYM53C500=m +CONFIG_PCMCIA_WL3501=m +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_PCMCIA_XIRCOM=m +CONFIG_PCNET32=m +CONFIG_PCSPKR_PLATFORM=y +CONFIG_PCWATCHDOG=m +CONFIG_PD6729=m +CONFIG_PDA_POWER=m +CONFIG_PERF_EVENTS=y +CONFIG_PERF_USE_VMALLOC=y +CONFIG_PHANTOM=m +CONFIG_PHONE=m +CONFIG_PHONET=m +CONFIG_PHONE_IXJ=m +CONFIG_PHONE_IXJ_PCMCIA=m +CONFIG_PHYLIB=y +# CONFIG_PHYP_DUMP is not set +CONFIG_PID_NS=y +# CONFIG_PL310_ERRATA_588369 is not set +# CONFIG_PL310_ERRATA_727915 is not set +# CONFIG_PL310_ERRATA_753970 is not set +# CONFIG_PL310_ERRATA_769419 is not set +CONFIG_PL330=y +# CONFIG_PLAT_SPEAR is not set +CONFIG_PLIP=m +CONFIG_PLX_HERMES=m +CONFIG_PM=y +CONFIG_PMAC_APM_EMU=m +CONFIG_PMAC_BACKLIGHT=y +CONFIG_PMAC_BACKLIGHT_LEGACY=y +CONFIG_PMAC_MEDIABAY=y +CONFIG_PMAC_RACKMETER=m +CONFIG_PMAC_SMU=y +# CONFIG_PMBUS is not set +CONFIG_PM_ADVANCED_DEBUG=y +CONFIG_PM_CLK=y +CONFIG_PM_OPP=y +CONFIG_PM_SLEEP=y +CONFIG_PM_SLEEP_SMP=y +CONFIG_PM_STD_PARTITION="" +CONFIG_PM_TEST_SUSPEND=y +CONFIG_PM_TRACE=y +CONFIG_PM_TRACE_RTC=y +CONFIG_PN544_NFC=m +CONFIG_PNP=y +CONFIG_PNPACPI=y +CONFIG_PNPBIOS=y +CONFIG_PNPBIOS_PROC_FS=y +CONFIG_PNP_DEBUG_MESSAGES=y +CONFIG_POHMELFS=m +# CONFIG_POHMELFS_DEBUG is not set +CONFIG_POSIX_MQUEUE=y +CONFIG_POSIX_MQUEUE_SYSCTL=y +CONFIG_POWER3=y +CONFIG_POWER4=y +# CONFIG_POWER4_ONLY is not set +# CONFIG_POWER_SUPPLY_DEBUG is not set +CONFIG_PPC=y +CONFIG_PPC32=y +# CONFIG_PPC601_SYNC_FIX is not set +# CONFIG_PPC_82xx is not set +# CONFIG_PPC_83xx is not set +# CONFIG_PPC_85xx is not set +# CONFIG_PPC_86xx is not set +# CONFIG_PPC_8xx is not set +# CONFIG_PPC_BOOK3E_64 is not set +CONFIG_PPC_BOOK3S=y +CONFIG_PPC_BOOK3S_32=y +CONFIG_PPC_BOOK3S_64=y +# CONFIG_PPC_CELLEB is not set +# CONFIG_PPC_CELL_NATIVE is not set +# CONFIG_PPC_CELL_QPACE is not set +CONFIG_PPC_CHRP=y +# CONFIG_PPC_CLOCK is not set +# CONFIG_PPC_DCR_MMIO is not set +# CONFIG_PPC_DCR_NATIVE is not set +CONFIG_PPC_DISABLE_WERROR=y +# CONFIG_PPC_EARLY_DEBUG is not set +# CONFIG_PPC_EMULATED_STATS is not set +CONFIG_PPC_EPAPR_HV_BYTECHAN=m +# CONFIG_PPC_EPAPR_HV_PIC is not set +CONFIG_PPC_FPU=y +CONFIG_PPC_HAS_HASH_64K=y +CONFIG_PPC_HAVE_PMU_SUPPORT=y +CONFIG_PPC_I8259=y +# CONFIG_PPC_IBM_CELL_BLADE is not set +CONFIG_PPC_ICSWX=y +# CONFIG_PPC_ISERIES is not set +CONFIG_PPC_MAPLE=y +# CONFIG_PPC_MPC512x is not set +# CONFIG_PPC_MPC52xx is not set +CONFIG_PPC_MSI_BITMAP=y +CONFIG_PPC_NATIVE=y +CONFIG_PPC_OF=y +CONFIG_PPC_OF_BOOT_TRAMPOLINE=y +# CONFIG_PPC_OF_PLATFORM_PCI is not set +CONFIG_PPC_PASEMI=y +CONFIG_PPC_PASEMI_CPUFREQ=y +CONFIG_PPC_PASEMI_IOMMU=y +# CONFIG_PPC_PASEMI_IOMMU_DMA_FORCE is not set +CONFIG_PPC_PASEMI_MDIO=y +CONFIG_PPC_PCI_CHOICE=y +CONFIG_PPC_PERF_CTRS=y +CONFIG_PPC_PMAC=y +CONFIG_PPC_PMAC32_PSURGE=y +CONFIG_PPC_PMAC64=y +CONFIG_PPC_POWERNV=y +CONFIG_PPC_POWERNV_RTAS=y +CONFIG_PPC_PS3=y +CONFIG_PPC_PSERIES=y +CONFIG_PPC_RTAS=y +CONFIG_PPC_RTAS_DAEMON=y +CONFIG_PPC_SMP_MUXED_IPI=y +CONFIG_PPC_STD_MMU=y +CONFIG_PPC_STD_MMU_32=y +CONFIG_PPC_STD_MMU_64=y +CONFIG_PPC_SUBPAGE_PROT=y +CONFIG_PPC_UDBG_16550=y +# CONFIG_PPC_WSP is not set +CONFIG_PPDEV=m +CONFIG_PPP=y +CONFIG_PPPOATM=m +CONFIG_PPPOE=m +CONFIG_PPPOL2TP=m +CONFIG_PPP_ASYNC=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_MPPE=m +CONFIG_PPP_SYNC_TTY=m +CONFIG_PPS=m +CONFIG_PPS_CLIENT_GPIO=m +# CONFIG_PPS_CLIENT_KTIMER is not set +CONFIG_PPS_CLIENT_LDISC=m +CONFIG_PPS_CLIENT_PARPORT=m +# CONFIG_PPS_DEBUG is not set +CONFIG_PPTP=m +# CONFIG_PQ2ADS is not set +CONFIG_PREEMPT_COUNT=y +CONFIG_PREEMPT_NOTIFIERS=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_PRINTER=m +CONFIG_PRINTK=y +CONFIG_PRINT_STACK_DEPTH=64 +CONFIG_PRISM2_USB=m +CONFIG_PRISM54=m +CONFIG_PROCESSOR_SELECT=y +CONFIG_PROC_DEVICETREE=y +CONFIG_PROC_EVENTS=y +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_PID_CPUSET=y +CONFIG_PROC_SYSCTL=y +CONFIG_PROC_VMCORE=y +# CONFIG_PROFILE_ALL_BRANCHES is not set +# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set +CONFIG_PROFILING=y +CONFIG_PROTEON=m +# CONFIG_PROVE_LOCKING is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_PS3GELIC_UDBG is not set +# CONFIG_PS3_ADVANCED is not set +CONFIG_PS3_DISK=m +# CONFIG_PS3_DYNAMIC_DMA is not set +CONFIG_PS3_FLASH=m +CONFIG_PS3_HTAB_SIZE=20 +CONFIG_PS3_LPM=m +CONFIG_PS3_PS3AV=y +CONFIG_PS3_ROM=m +CONFIG_PS3_STORAGE=m +CONFIG_PS3_SYS_MANAGER=y +CONFIG_PS3_VRAM=m +CONFIG_PS3_VUART=y +CONFIG_PSERIES_MSI=y +# CONFIG_PTP_1588_CLOCK is not set +CONFIG_QLA3XXX=m +CONFIG_QLCNIC=m +CONFIG_QLGE=m +CONFIG_QNX4FS_FS=m +CONFIG_QSEMI_PHY=y +CONFIG_QUOTA=y +CONFIG_QUOTACTL=y +CONFIG_QUOTACTL_COMPAT=y +# CONFIG_QUOTA_DEBUG is not set +CONFIG_QUOTA_TREE=m +CONFIG_R6040=m +CONFIG_R8169=m +CONFIG_R8187SE=m +CONFIG_RADIO_ADAPTERS=y +CONFIG_RADIO_AZTECH=m +CONFIG_RADIO_CADET=m +CONFIG_RADIO_GEMTEK=m +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_MIROPCM20=m +CONFIG_RADIO_RTRACK=m +CONFIG_RADIO_RTRACK2=m +CONFIG_RADIO_SAA7706H=m +CONFIG_RADIO_SF16FMI=m +CONFIG_RADIO_SF16FMR2=m +CONFIG_RADIO_SI470X=y +CONFIG_RADIO_SI4713=m +CONFIG_RADIO_TEA5764=m +CONFIG_RADIO_TEF6862=m +CONFIG_RADIO_TERRATEC=m +CONFIG_RADIO_TIMBERDALE=m +CONFIG_RADIO_TRUST=m +CONFIG_RADIO_TYPHOON=m +CONFIG_RADIO_WL1273=m +CONFIG_RADIO_WL128X=m +CONFIG_RADIO_ZOLTRIX=m +CONFIG_RAID6_PQ=m +CONFIG_RAPIDIO=y +CONFIG_RAPIDIO_CPS_GEN2=y +CONFIG_RAPIDIO_CPS_XX=y +# CONFIG_RAPIDIO_DEBUG is not set +CONFIG_RAPIDIO_DISC_TIMEOUT=30 +# CONFIG_RAPIDIO_ENABLE_RX_TX_PORTS is not set +CONFIG_RAPIDIO_TSI500=y +CONFIG_RAPIDIO_TSI568=y +CONFIG_RAPIDIO_TSI57X=y +CONFIG_RAPIDIO_TSI721=y +# CONFIG_RCU_BOOST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=60 +CONFIG_RCU_CPU_STALL_VERBOSE=y +# CONFIG_RCU_FANOUT_EXACT is not set +CONFIG_RCU_FAST_NO_HZ=y +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_TRACE is not set +CONFIG_RC_ATI_REMOTE=m +CONFIG_RC_CORE=m +CONFIG_RC_LOOPBACK=m +CONFIG_RC_MAP=m +CONFIG_RDS=m +# CONFIG_RDS_DEBUG is not set +CONFIG_RDS_RDMA=m +CONFIG_RDS_TCP=m +CONFIG_RD_BZIP2=y +CONFIG_RD_GZIP=y +CONFIG_RD_LZMA=y +CONFIG_RD_LZO=y +CONFIG_RD_XZ=y +CONFIG_REALTEK_AUTOPM=y +CONFIG_REALTEK_PHY=y +CONFIG_REED_SOLOMON=m +CONFIG_REED_SOLOMON_DEC16=y +CONFIG_REGMAP=y +CONFIG_REGULATOR=y +CONFIG_REGULATOR_88PM8607=y +CONFIG_REGULATOR_AAT2870=m +CONFIG_REGULATOR_AB3100=m +CONFIG_REGULATOR_AB8500=y +CONFIG_REGULATOR_AD5398=m +CONFIG_REGULATOR_BQ24022=m +CONFIG_REGULATOR_DA903X=m +# CONFIG_REGULATOR_DUMMY is not set +CONFIG_REGULATOR_GPIO=m +CONFIG_REGULATOR_ISL6271A=m +CONFIG_REGULATOR_LP3971=m +CONFIG_REGULATOR_LP3972=m +CONFIG_REGULATOR_MAX1586=m +CONFIG_REGULATOR_MAX8649=m +CONFIG_REGULATOR_MAX8660=m +CONFIG_REGULATOR_MAX8925=m +CONFIG_REGULATOR_MAX8952=m +CONFIG_REGULATOR_MAX8997=m +CONFIG_REGULATOR_MAX8998=m +CONFIG_REGULATOR_MC13783=m +CONFIG_REGULATOR_MC13892=m +CONFIG_REGULATOR_MC13XXX_CORE=m +# CONFIG_REGULATOR_PCAP is not set +CONFIG_REGULATOR_PCF50633=m +CONFIG_REGULATOR_TPS6105X=m +CONFIG_REGULATOR_TPS65023=m +CONFIG_REGULATOR_TPS6507X=m +CONFIG_REGULATOR_TPS6524X=m +CONFIG_REGULATOR_TPS6586X=m +CONFIG_REGULATOR_TPS65910=m +CONFIG_REGULATOR_TPS65912=m +CONFIG_REGULATOR_TWL4030=y +CONFIG_REGULATOR_USERSPACE_CONSUMER=m +CONFIG_REGULATOR_VIRTUAL_CONSUMER=m +CONFIG_REGULATOR_WM831X=m +CONFIG_REGULATOR_WM8350=m +CONFIG_REGULATOR_WM8400=m +CONFIG_REGULATOR_WM8994=m +# CONFIG_REISERFS_CHECK is not set +CONFIG_REISERFS_FS=m +CONFIG_REISERFS_FS_XATTR=y +# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_RELOCATABLE=y +CONFIG_RESOURCE_COUNTERS=y +CONFIG_RFD_FTL=m +CONFIG_RFKILL=y +CONFIG_RFKILL_INPUT=y +CONFIG_RFKILL_LEDS=y +CONFIG_RFKILL_REGULATOR=m +CONFIG_RFS_ACCEL=y +CONFIG_RING_BUFFER=y +CONFIG_RING_BUFFER_ALLOW_SWAP=y +# CONFIG_RING_BUFFER_BENCHMARK is not set +CONFIG_RIONET=m +CONFIG_RIONET_RX_SIZE=128 +CONFIG_RIONET_TX_SIZE=128 +CONFIG_ROCKETPORT=m +CONFIG_ROMFS_BACKED_BY_BLOCK=y +# CONFIG_ROMFS_BACKED_BY_BOTH is not set +# CONFIG_ROMFS_BACKED_BY_MTD is not set +CONFIG_ROMFS_FS=m +CONFIG_ROMFS_ON_BLOCK=y +CONFIG_ROSE=m +CONFIG_RPCSEC_GSS_KRB5=m +CONFIG_RPS=y +CONFIG_RT2400PCI=m +CONFIG_RT2500PCI=m +CONFIG_RT2500USB=m +CONFIG_RT2800PCI=m +CONFIG_RT2800PCI_RT33XX=y +CONFIG_RT2800PCI_RT35XX=y +CONFIG_RT2800PCI_RT53XX=y +CONFIG_RT2800USB=m +CONFIG_RT2800USB_RT33XX=y +# CONFIG_RT2800USB_RT35XX is not set +# CONFIG_RT2800USB_RT53XX is not set +CONFIG_RT2800_LIB=m +# CONFIG_RT2X00_DEBUG is not set +CONFIG_RT2X00_LIB=m +CONFIG_RT2X00_LIB_CRYPTO=y +CONFIG_RT2X00_LIB_FIRMWARE=y +CONFIG_RT2X00_LIB_LEDS=y +CONFIG_RT2X00_LIB_PCI=m +CONFIG_RT2X00_LIB_USB=m +CONFIG_RT61PCI=m +CONFIG_RT73USB=m +CONFIG_RTAS_ERROR_LOGGING=y +CONFIG_RTAS_PROC=y +CONFIG_RTC_CLASS=y +# CONFIG_RTC_DEBUG is not set +CONFIG_RTC_DRV_88PM860X=m +CONFIG_RTC_DRV_AB3100=m +CONFIG_RTC_DRV_AB8500=m +CONFIG_RTC_DRV_BQ32K=m +CONFIG_RTC_DRV_BQ4802=m +CONFIG_RTC_DRV_DS1286=m +CONFIG_RTC_DRV_DS1305=m +CONFIG_RTC_DRV_DS1307=m +CONFIG_RTC_DRV_DS1374=m +CONFIG_RTC_DRV_DS1390=m +CONFIG_RTC_DRV_DS1511=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_DS1672=m +CONFIG_RTC_DRV_DS1742=m +CONFIG_RTC_DRV_DS3232=m +CONFIG_RTC_DRV_DS3234=m +CONFIG_RTC_DRV_EM3027=m +CONFIG_RTC_DRV_FM3130=m +CONFIG_RTC_DRV_GENERIC=m +CONFIG_RTC_DRV_ISL12022=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_M41T80=m +CONFIG_RTC_DRV_M41T80_WDT=y +CONFIG_RTC_DRV_M41T93=m +CONFIG_RTC_DRV_M41T94=m +CONFIG_RTC_DRV_M48T35=m +CONFIG_RTC_DRV_M48T59=m +CONFIG_RTC_DRV_M48T86=m +CONFIG_RTC_DRV_MAX6900=m +CONFIG_RTC_DRV_MAX6902=m +CONFIG_RTC_DRV_MAX8925=m +CONFIG_RTC_DRV_MAX8998=m +CONFIG_RTC_DRV_MC13XXX=m +CONFIG_RTC_DRV_MSM6242=m +CONFIG_RTC_DRV_PCAP=m +CONFIG_RTC_DRV_PCF2123=m +CONFIG_RTC_DRV_PCF50633=m +CONFIG_RTC_DRV_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_PL030=m +CONFIG_RTC_DRV_PL031=m +CONFIG_RTC_DRV_PS3=m +CONFIG_RTC_DRV_R9701=m +CONFIG_RTC_DRV_RP5C01=m +CONFIG_RTC_DRV_RS5C348=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_RV3029C2=m +CONFIG_RTC_DRV_RX8025=m +CONFIG_RTC_DRV_RX8581=m +CONFIG_RTC_DRV_S35390A=m +CONFIG_RTC_DRV_STK17TA8=m +# CONFIG_RTC_DRV_TEST is not set +CONFIG_RTC_DRV_V3020=m +CONFIG_RTC_DRV_WM831X=m +CONFIG_RTC_DRV_WM8350=m +CONFIG_RTC_DRV_X1205=m +CONFIG_RTC_HCTOSYS=y +CONFIG_RTC_HCTOSYS_DEVICE="rtc0" +CONFIG_RTC_INTF_DEV=y +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_LIB=y +CONFIG_RTL8180=m +CONFIG_RTL8187_LEDS=y +CONFIG_RTL8192CE=m +CONFIG_RTL8192C_COMMON=m +CONFIG_RTL8192DE=m +CONFIG_RTL8192E=m +CONFIG_RTL8192SE=m +CONFIG_RTL8192U=m +CONFIG_RTLWIFI=m +# CONFIG_RTS5139_DEBUG is not set +# CONFIG_RTS_PSTOR_DEBUG is not set +CONFIG_RT_GROUP_SCHED=y +CONFIG_RT_MUTEXES=y +# CONFIG_RT_MUTEX_TESTER is not set +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_RXKAD=m +CONFIG_S2IO=m +# CONFIG_SAMPLES is not set +CONFIG_SAMSUNG_LAPTOP=m +CONFIG_SAMSUNG_Q10=m +CONFIG_SATA_ACARD_AHCI=m +CONFIG_SATA_AHCI=y +CONFIG_SATA_INIC162X=m +CONFIG_SATA_NV=m +CONFIG_SATA_PMP=y +CONFIG_SATA_PROMISE=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_SIL=m +CONFIG_SATA_SIL24=m +CONFIG_SATA_SIS=m +CONFIG_SATA_SX4=m +CONFIG_SATA_ULI=m +CONFIG_SATA_VIA=m +CONFIG_SATA_VITESSE=m +CONFIG_SBC7240_WDT=m +CONFIG_SBC8360_WDT=m +CONFIG_SBC_EPX_C3_WATCHDOG=m +CONFIG_SBC_FITPC2_WATCHDOG=m +CONFIG_SBE_2T3E3=m +CONFIG_SBE_PMCC4_NCOMM=y +CONFIG_SBNI=m +# CONFIG_SBNI_MULTILINE is not set +CONFIG_SC1200_WDT=m +CONFIG_SC520_WDT=m +CONFIG_SC92031=m +CONFIG_SCA3000=m +CONFIG_SCC=m +# CONFIG_SCC_DELAY is not set +# CONFIG_SCC_TRXECHO is not set +CONFIG_SCHED_DEBUG=y +CONFIG_SCHED_HRTICK=y +CONFIG_SCHED_MC=y +CONFIG_SCHED_OMIT_FRAME_POINTER=y +CONFIG_SCHED_TRACER=y +CONFIG_SCSI=y +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m +CONFIG_SCSI_7000FASST=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_AHA152X=m +CONFIG_SCSI_AHA1542=m +CONFIG_SCSI_AHA1740=m +CONFIG_SCSI_AIC79XX=m +CONFIG_SCSI_AIC7XXX=m +# CONFIG_SCSI_AIC7XXX_OLD is not set +CONFIG_SCSI_AIC94XX=m +CONFIG_SCSI_ARCMSR=m +CONFIG_SCSI_BFA_FC=m +CONFIG_SCSI_BNX2X_FCOE=m +CONFIG_SCSI_BNX2_ISCSI=m +CONFIG_SCSI_BUSLOGIC=m +CONFIG_SCSI_CXGB3_ISCSI=m +CONFIG_SCSI_CXGB4_ISCSI=m +CONFIG_SCSI_DC390T=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DEBUG=m +CONFIG_SCSI_DH_ALUA=m +CONFIG_SCSI_DH_EMC=m +CONFIG_SCSI_DH_HP_SW=m +CONFIG_SCSI_DH_RDAC=m +CONFIG_SCSI_DMA=y +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_DPT_I2O=m +CONFIG_SCSI_DTC3280=m +CONFIG_SCSI_EATA=m +CONFIG_SCSI_EATA_LINKED_COMMANDS=y +CONFIG_SCSI_EATA_MAX_TAGS=16 +CONFIG_SCSI_EATA_TAGGED_QUEUE=y +CONFIG_SCSI_ENCLOSURE=m +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_FC_TGT_ATTRS=y +CONFIG_SCSI_FD_MCS=m +# CONFIG_SCSI_FLASHPOINT is not set +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_GDTH=m +CONFIG_SCSI_GENERIC_NCR5380=m +CONFIG_SCSI_GENERIC_NCR5380_MMIO=m +CONFIG_SCSI_GENERIC_NCR53C400=y +CONFIG_SCSI_HPSA=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_IBMMCA=m +CONFIG_SCSI_IBMVFC=m +CONFIG_SCSI_IBMVFC_TRACE=y +CONFIG_SCSI_IBMVSCSI=m +CONFIG_SCSI_IMM=m +CONFIG_SCSI_IN2000=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_IPR=m +# CONFIG_SCSI_IPR_DUMP is not set +# CONFIG_SCSI_IPR_TRACE is not set +CONFIG_SCSI_IPS=m +CONFIG_SCSI_ISCI=m +CONFIG_SCSI_ISCSI_ATTRS=m +# CONFIG_SCSI_IZIP_EPP16 is not set +# CONFIG_SCSI_IZIP_SLOW_CTR is not set +CONFIG_SCSI_LOWLEVEL=y +CONFIG_SCSI_LOWLEVEL_PCMCIA=y +CONFIG_SCSI_LPFC=m +# CONFIG_SCSI_LPFC_DEBUG_FS is not set +CONFIG_SCSI_MAC53C94=m +CONFIG_SCSI_MESH=m +CONFIG_SCSI_MESH_RESET_DELAY_MS=4000 +CONFIG_SCSI_MESH_SYNC_RATE=5 +CONFIG_SCSI_MOD=y +CONFIG_SCSI_MPT2SAS=m +# CONFIG_SCSI_MPT2SAS_LOGGING is not set +CONFIG_SCSI_MPT2SAS_MAX_SGE=128 +CONFIG_SCSI_MVSAS=m +CONFIG_SCSI_MVSAS_DEBUG=y +# CONFIG_SCSI_MVSAS_TASKLET is not set +CONFIG_SCSI_MVUMI=m +CONFIG_SCSI_NCR53C406A=m +CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=8 +CONFIG_SCSI_NCR53C8XX_MAX_TAGS=4 +CONFIG_SCSI_NCR53C8XX_SYNC=5 +CONFIG_SCSI_NCR_D700=m +CONFIG_SCSI_NCR_Q720=m +CONFIG_SCSI_NETLINK=y +CONFIG_SCSI_NSP32=m +# CONFIG_SCSI_OSD_DEBUG is not set +CONFIG_SCSI_OSD_DPRINT_SENSE=1 +CONFIG_SCSI_OSD_ULD=m +CONFIG_SCSI_PAS16=m +CONFIG_SCSI_PM8001=m +CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_PPA=m +CONFIG_SCSI_PROC_FS=y +CONFIG_SCSI_QLA_FC=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_QLOGIC_FAS=m +CONFIG_SCSI_SAS_ATA=y +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_HOST_SMP=y +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SIM710=m +CONFIG_SCSI_SRP=m +CONFIG_SCSI_SRP_ATTRS=m +CONFIG_SCSI_SRP_TGT_ATTRS=y +CONFIG_SCSI_STEX=m +CONFIG_SCSI_SYM53C416=m +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +CONFIG_SCSI_T128=m +CONFIG_SCSI_TGT=m +CONFIG_SCSI_U14_34F=m +CONFIG_SCSI_U14_34F_LINKED_COMMANDS=y +CONFIG_SCSI_U14_34F_MAX_TAGS=8 +CONFIG_SCSI_U14_34F_TAGGED_QUEUE=y +CONFIG_SCSI_ULTRASTOR=m +CONFIG_SCSI_WAIT_SCAN=m +# CONFIG_SCTP_DBG_MSG is not set +# CONFIG_SCTP_DBG_OBJCNT is not set +CONFIG_SCTP_HMAC_MD5=y +# CONFIG_SCTP_HMAC_NONE is not set +# CONFIG_SCTP_HMAC_SHA1 is not set +CONFIG_SCx200=m +CONFIG_SCx200HR_TIMER=m +CONFIG_SCx200_ACB=m +CONFIG_SCx200_GPIO=m +CONFIG_SCx200_I2C=m +CONFIG_SCx200_I2C_SCL=12 +CONFIG_SCx200_I2C_SDA=13 +CONFIG_SCx200_WDT=m +CONFIG_SDIO_UART=m +CONFIG_SDLA=m +CONFIG_SEALEVEL_4021=m +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +CONFIG_SECURITY=y +CONFIG_SECURITYFS=y +CONFIG_SECURITY_APPARMOR=y +CONFIG_SECURITY_APPARMOR_BOOTPARAM_VALUE=1 +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SECURITY_NETWORK=y +# CONFIG_SECURITY_NETWORK_XFRM is not set +CONFIG_SECURITY_PATH=y +CONFIG_SECURITY_SELINUX=y +CONFIG_SECURITY_SELINUX_AVC_STATS=y +CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=0 +CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1 +CONFIG_SECURITY_SELINUX_DEVELOP=y +# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set +CONFIG_SECURITY_SMACK=y +CONFIG_SECURITY_TOMOYO_ACTIVATION_TRIGGER="/sbin/init" +CONFIG_SECURITY_TOMOYO_MAX_ACCEPT_ENTRY=2048 +CONFIG_SECURITY_TOMOYO_MAX_AUDIT_LOG=1024 +# CONFIG_SECURITY_TOMOYO_OMIT_USERSPACE_LOADER is not set +CONFIG_SECURITY_TOMOYO_POLICY_LOADER="/sbin/tomoyo-init" +CONFIG_SECURITY_YAMA=y +CONFIG_SEEQ8005=m +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_SENSORS_ABITUGURU=m +CONFIG_SENSORS_ABITUGURU3=m +CONFIG_SENSORS_ACPI_POWER=m +CONFIG_SENSORS_AD7314=m +CONFIG_SENSORS_AD7414=m +CONFIG_SENSORS_AD7418=m +CONFIG_SENSORS_ADCXX=m +CONFIG_SENSORS_ADM1021=m +CONFIG_SENSORS_ADM1025=m +CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1029=m +CONFIG_SENSORS_ADM1031=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_ADS1015=m +CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_ADS7871=m +CONFIG_SENSORS_ADT7411=m +CONFIG_SENSORS_ADT7462=m +CONFIG_SENSORS_ADT7470=m +CONFIG_SENSORS_ADT7475=m +CONFIG_SENSORS_AK8975=m +CONFIG_SENSORS_AMC6821=m +CONFIG_SENSORS_AMS=m +CONFIG_SENSORS_AMS_I2C=y +CONFIG_SENSORS_AMS_PMU=y +CONFIG_SENSORS_APDS990X=m +CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ASC7621=m +CONFIG_SENSORS_ATK0110=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_BH1770=m +CONFIG_SENSORS_BH1780=m +CONFIG_SENSORS_CORETEMP=m +CONFIG_SENSORS_DME1737=m +CONFIG_SENSORS_DS1621=m +CONFIG_SENSORS_DS620=m +CONFIG_SENSORS_EMC1403=m +CONFIG_SENSORS_EMC2103=m +CONFIG_SENSORS_EMC6W201=m +CONFIG_SENSORS_F71805F=m +CONFIG_SENSORS_F71882FG=m +CONFIG_SENSORS_F75375S=m +CONFIG_SENSORS_FAM15H_POWER=m +CONFIG_SENSORS_FSCHMD=m +CONFIG_SENSORS_G760A=m +CONFIG_SENSORS_GL518SM=m +CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_GPIO_FAN=m +CONFIG_SENSORS_HDAPS=m +CONFIG_SENSORS_HMC5843=m +CONFIG_SENSORS_I5K_AMB=m +CONFIG_SENSORS_IBMAEM=m +CONFIG_SENSORS_IBMPEX=m +CONFIG_SENSORS_ISL29018=m +CONFIG_SENSORS_IT87=m +CONFIG_SENSORS_JC42=m +CONFIG_SENSORS_K10TEMP=m +CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_LINEAGE=m +CONFIG_SENSORS_LIS3_I2C=m +CONFIG_SENSORS_LIS3_SPI=m +CONFIG_SENSORS_LM63=m +CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM73=m +CONFIG_SENSORS_LM75=m +CONFIG_SENSORS_LM77=m +CONFIG_SENSORS_LM78=m +CONFIG_SENSORS_LM80=m +CONFIG_SENSORS_LM83=m +CONFIG_SENSORS_LM85=m +CONFIG_SENSORS_LM87=m +CONFIG_SENSORS_LM90=m +CONFIG_SENSORS_LM92=m +CONFIG_SENSORS_LM93=m +CONFIG_SENSORS_LM95241=m +CONFIG_SENSORS_LM95245=m +CONFIG_SENSORS_LTC4151=m +CONFIG_SENSORS_LTC4215=m +CONFIG_SENSORS_LTC4245=m +CONFIG_SENSORS_LTC4261=m +CONFIG_SENSORS_MAX1111=m +CONFIG_SENSORS_MAX16065=m +CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_MAX1668=m +CONFIG_SENSORS_MAX6639=m +CONFIG_SENSORS_MAX6642=m +CONFIG_SENSORS_MAX6650=m +CONFIG_SENSORS_MC13783_ADC=m +CONFIG_SENSORS_NTC_THERMISTOR=m +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m +CONFIG_SENSORS_PCF8591=m +CONFIG_SENSORS_SCH5627=m +CONFIG_SENSORS_SCH5636=m +CONFIG_SENSORS_SHT15=m +CONFIG_SENSORS_SHT21=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_SMM665=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_THMC50=m +CONFIG_SENSORS_TMP102=m +CONFIG_SENSORS_TMP401=m +CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_TSL2550=m +CONFIG_SENSORS_TSL2563=m +CONFIG_SENSORS_TWL4030_MADC=m +CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VIA_CPUTEMP=m +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83627EHF=m +CONFIG_SENSORS_W83627HF=m +CONFIG_SENSORS_W83781D=m +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m +CONFIG_SENSORS_W83795=m +# CONFIG_SENSORS_W83795_FANCTRL is not set +CONFIG_SENSORS_W83L785TS=m +CONFIG_SENSORS_W83L786NG=m +CONFIG_SENSORS_WM831X=m +CONFIG_SENSORS_WM8350=m +CONFIG_SERIAL_8250_ACCENT=m +CONFIG_SERIAL_8250_BOCA=m +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_CS=m +# CONFIG_SERIAL_8250_DETECT_IRQ is not set +CONFIG_SERIAL_8250_DW=m +CONFIG_SERIAL_8250_EXAR_ST16C554=m +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_FOURPORT=m +CONFIG_SERIAL_8250_HUB6=m +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_MCA=m +CONFIG_SERIAL_8250_NR_UARTS=48 +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_RUNTIME_UARTS=32 +CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_ALTERA_JTAGUART=m +CONFIG_SERIAL_ALTERA_UART=m +CONFIG_SERIAL_ALTERA_UART_BAUDRATE=115200 +CONFIG_SERIAL_ALTERA_UART_MAXPORTS=4 +CONFIG_SERIAL_AMBA_PL011_CONSOLE=y +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +# CONFIG_SERIAL_ICOM is not set +# CONFIG_SERIAL_IFX6X60 is not set +CONFIG_SERIAL_JSM=m +CONFIG_SERIAL_MAX3100=m +CONFIG_SERIAL_MAX3107=m +CONFIG_SERIAL_MFD_HSU=m +CONFIG_SERIAL_MRST_MAX3110=m +CONFIG_SERIAL_OF_PLATFORM=m +CONFIG_SERIAL_OMAP=y +CONFIG_SERIAL_OMAP_CONSOLE=y +CONFIG_SERIAL_PCH_UART=m +CONFIG_SERIAL_PMACZILOG_CONSOLE=y +# CONFIG_SERIAL_PMACZILOG_TTYS is not set +CONFIG_SERIAL_TIMBERDALE=m +CONFIG_SERIAL_UARTLITE=m +CONFIG_SERIAL_XILINX_PS_UART=m +CONFIG_SERIO=y +CONFIG_SERIO_ALTERA_PS2=m +CONFIG_SERIO_CT82C710=m +CONFIG_SERIO_I8042=y +CONFIG_SERIO_LIBPS2=y +CONFIG_SERIO_PARKBD=m +CONFIG_SERIO_PCIPS2=m +CONFIG_SERIO_PS2MULT=m +CONFIG_SERIO_RAW=m +CONFIG_SERIO_XILINX_XPS_PS2=m +CONFIG_SFC=m +CONFIG_SFC_MTD=y +CONFIG_SFI=y +CONFIG_SGI_IOC4=m +CONFIG_SHMEM=y +# CONFIG_SIGMA is not set +CONFIG_SIGMATEL_FIR=m +CONFIG_SIGNALFD=y +CONFIG_SIMPLE_GPIO=y +CONFIG_SIS190=m +CONFIG_SIS900=m +CONFIG_SKFP=m +CONFIG_SKGE=m +# CONFIG_SKGE_DEBUG is not set +CONFIG_SKGE_GENESIS=y +CONFIG_SKISA=m +CONFIG_SKY2=m +# CONFIG_SKY2_DEBUG is not set +# CONFIG_SLAB is not set +CONFIG_SLABINFO=y +CONFIG_SLHC=y +CONFIG_SLICOSS=m +CONFIG_SLIP=m +CONFIG_SLIP_COMPRESSED=y +CONFIG_SLIP_MODE_SLIP6=y +CONFIG_SLIP_SMART=y +# CONFIG_SLOB is not set +CONFIG_SLUB=y +CONFIG_SLUB_DEBUG=y +# CONFIG_SLUB_DEBUG_ON is not set +# CONFIG_SLUB_STATS is not set +CONFIG_SMARTJOYPLUS_FF=y +CONFIG_SMC911X=m +CONFIG_SMC9194=m +CONFIG_SMC91X=m +CONFIG_SMCTR=m +CONFIG_SMC_IRCC_FIR=m +CONFIG_SMP=y +CONFIG_SMP_ON_UP=y +CONFIG_SMSC37B787_WDT=m +CONFIG_SMSC911X=m +# CONFIG_SMSC911X_ARCH_HOOKS is not set +CONFIG_SMSC9420=m +CONFIG_SMSC_PHY=y +CONFIG_SMSC_SCH311X_WDT=m +CONFIG_SMS_SDIO_DRV=m +CONFIG_SMS_SIANO_MDTV=m +CONFIG_SMS_USB_DRV=m +CONFIG_SND=m +CONFIG_SND_AC97_CODEC=m +CONFIG_SND_AC97_POWER_SAVE=y +CONFIG_SND_AC97_POWER_SAVE_DEFAULT=0 +CONFIG_SND_AD1816A=m +CONFIG_SND_AD1848=m +CONFIG_SND_AD1889=m +CONFIG_SND_ADLIB=m +CONFIG_SND_ALI5451=m +CONFIG_SND_ALOOP=m +CONFIG_SND_ALS100=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALS4000=m +CONFIG_SND_AOA=m +CONFIG_SND_AOA_FABRIC_LAYOUT=m +CONFIG_SND_AOA_ONYX=m +CONFIG_SND_AOA_SOUNDBUS=m +CONFIG_SND_AOA_SOUNDBUS_I2S=m +CONFIG_SND_AOA_TAS=m +CONFIG_SND_AOA_TOONIE=m +CONFIG_SND_ARM=y +CONFIG_SND_ARMAACI=m +CONFIG_SND_ASIHPI=m +CONFIG_SND_ATIIXP=m +CONFIG_SND_ATIIXP_MODEM=m +CONFIG_SND_AU8810=m +CONFIG_SND_AU8820=m +CONFIG_SND_AU8830=m +CONFIG_SND_AW2=m +CONFIG_SND_AZT1605=m +CONFIG_SND_AZT2316=m +CONFIG_SND_AZT2320=m +CONFIG_SND_AZT3328=m +CONFIG_SND_BT87X=m +CONFIG_SND_CA0106=m +CONFIG_SND_CMI8330=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_CS4231=m +CONFIG_SND_CS4236=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CS5530=m +CONFIG_SND_CS5535AUDIO=m +CONFIG_SND_CTXFI=m +CONFIG_SND_DARLA20=m +CONFIG_SND_DARLA24=m +# CONFIG_SND_DEBUG is not set +CONFIG_SND_DMA_SGBUF=y +CONFIG_SND_DRIVERS=y +CONFIG_SND_DUMMY=m +CONFIG_SND_DYNAMIC_MINORS=y +CONFIG_SND_ECHO3G=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1X=m +CONFIG_SND_ENS1370=m +CONFIG_SND_ENS1371=m +CONFIG_SND_ES1688=m +CONFIG_SND_ES18XX=m +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +CONFIG_SND_ES1968_INPUT=y +CONFIG_SND_ES1968_RADIO=y +CONFIG_SND_FIREWIRE=y +CONFIG_SND_FIREWIRE_LIB=m +CONFIG_SND_FIREWIRE_SPEAKERS=m +CONFIG_SND_FM801=m +CONFIG_SND_FM801_TEA575X_BOOL=y +CONFIG_SND_GINA20=m +CONFIG_SND_GINA24=m +CONFIG_SND_GUSCLASSIC=m +CONFIG_SND_GUSEXTREME=m +CONFIG_SND_GUSMAX=m +CONFIG_SND_HDA_CODEC_ANALOG=y +CONFIG_SND_HDA_CODEC_CA0110=y +CONFIG_SND_HDA_CODEC_CA0132=y +CONFIG_SND_HDA_CODEC_CIRRUS=y +CONFIG_SND_HDA_CODEC_CMEDIA=y +CONFIG_SND_HDA_CODEC_CONEXANT=y +CONFIG_SND_HDA_CODEC_HDMI=y +CONFIG_SND_HDA_CODEC_REALTEK=y +CONFIG_SND_HDA_CODEC_SI3054=y +CONFIG_SND_HDA_CODEC_SIGMATEL=y +CONFIG_SND_HDA_CODEC_VIA=y +CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS=y +CONFIG_SND_HDA_GENERIC=y +CONFIG_SND_HDA_HWDEP=y +CONFIG_SND_HDA_INPUT_BEEP=y +CONFIG_SND_HDA_INPUT_BEEP_MODE=0 +CONFIG_SND_HDA_INPUT_JACK=y +CONFIG_SND_HDA_INTEL=m +CONFIG_SND_HDA_PATCH_LOADER=y +CONFIG_SND_HDA_POWER_SAVE=y +CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0 +CONFIG_SND_HDA_PREALLOC_SIZE=64 +CONFIG_SND_HDA_RECONFIG=y +CONFIG_SND_HDSP=m +CONFIG_SND_HDSPM=m +CONFIG_SND_HRTIMER=m +CONFIG_SND_HWDEP=m +CONFIG_SND_ICE1712=m +CONFIG_SND_ICE1724=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_INDIGODJX=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INTEL8X0=m +CONFIG_SND_INTEL8X0M=m +CONFIG_SND_INTERWAVE=m +CONFIG_SND_INTERWAVE_STB=m +CONFIG_SND_ISA=y +CONFIG_SND_ISIGHT=m +CONFIG_SND_JACK=y +CONFIG_SND_JAZZ16=m +CONFIG_SND_KCTL_JACK=y +CONFIG_SND_KORG1212=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_LOLA=m +CONFIG_SND_LX6464ES=m +CONFIG_SND_MAESTRO3=m +CONFIG_SND_MAESTRO3_INPUT=y +CONFIG_SND_MIA=m +CONFIG_SND_MIRO=m +CONFIG_SND_MIXART=m +CONFIG_SND_MIXER_OSS=m +CONFIG_SND_MONA=m +CONFIG_SND_MPU401=m +CONFIG_SND_MPU401_UART=m +CONFIG_SND_MSND_CLASSIC=m +CONFIG_SND_MSND_PINNACLE=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_NM256=m +CONFIG_SND_OMAP_SOC=m +CONFIG_SND_OMAP_SOC_IGEP0020=m +CONFIG_SND_OMAP_SOC_MCBSP=m +CONFIG_SND_OMAP_SOC_OMAP3EVM=m +CONFIG_SND_OMAP_SOC_OMAP3_BEAGLE=m +CONFIG_SND_OMAP_SOC_OMAP3_PANDORA=m +CONFIG_SND_OMAP_SOC_OVERO=m +CONFIG_SND_OMAP_SOC_RX51=m +CONFIG_SND_OMAP_SOC_SDP3430=m +CONFIG_SND_OMAP_SOC_ZOOM2=m +CONFIG_SND_OPL3SA2=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_OPL4_LIB=m +CONFIG_SND_OPTI92X_AD1848=m +CONFIG_SND_OPTI92X_CS4231=m +CONFIG_SND_OPTI93X=m +CONFIG_SND_OSSEMUL=y +CONFIG_SND_OXYGEN=m +CONFIG_SND_OXYGEN_LIB=m +CONFIG_SND_PCI=y +CONFIG_SND_PCM=m +CONFIG_SND_PCMCIA=y +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_PCSP=m +CONFIG_SND_PCXHR=m +CONFIG_SND_PDAUDIOCF=m +CONFIG_SND_PORTMAN2X4=m +CONFIG_SND_POWERMAC=m +CONFIG_SND_POWERMAC_AUTO_DRC=y +CONFIG_SND_PPC=y +CONFIG_SND_PS3=m +CONFIG_SND_PS3_DEFAULT_START_DELAY=2000 +CONFIG_SND_RAWMIDI=m +CONFIG_SND_RAWMIDI_SEQ=m +CONFIG_SND_RIPTIDE=m +CONFIG_SND_RME32=m +CONFIG_SND_RME96=m +CONFIG_SND_RME9652=m +CONFIG_SND_SB16=m +CONFIG_SND_SB16_CSP=y +CONFIG_SND_SB16_DSP=m +CONFIG_SND_SB8=m +CONFIG_SND_SB8_DSP=m +CONFIG_SND_SBAWE=m +CONFIG_SND_SB_COMMON=m +CONFIG_SND_SC6000=m +CONFIG_SND_SEQUENCER=m +# CONFIG_SND_SEQUENCER_OSS is not set +CONFIG_SND_SEQ_DUMMY=m +CONFIG_SND_SEQ_HRTIMER_DEFAULT=y +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_SIS7019=m +CONFIG_SND_SOC=m +CONFIG_SND_SOC_88PM860X=m +CONFIG_SND_SOC_AD1836=m +CONFIG_SND_SOC_AD193X=m +CONFIG_SND_SOC_AD73311=m +CONFIG_SND_SOC_ADAU1373=m +CONFIG_SND_SOC_ADAV80X=m +CONFIG_SND_SOC_ADS117X=m +CONFIG_SND_SOC_AK4104=m +CONFIG_SND_SOC_AK4535=m +CONFIG_SND_SOC_AK4641=m +CONFIG_SND_SOC_AK4642=m +CONFIG_SND_SOC_AK4671=m +CONFIG_SND_SOC_ALC5623=m +CONFIG_SND_SOC_ALL_CODECS=m +# CONFIG_SND_SOC_CACHE_LZO is not set +CONFIG_SND_SOC_CS4270=m +CONFIG_SND_SOC_CS4271=m +CONFIG_SND_SOC_CS42L51=m +CONFIG_SND_SOC_CX20442=m +CONFIG_SND_SOC_DA7210=m +CONFIG_SND_SOC_DFBMCS320=m +CONFIG_SND_SOC_I2C_AND_SPI=m +CONFIG_SND_SOC_JZ4740_CODEC=m +CONFIG_SND_SOC_L3=m +CONFIG_SND_SOC_LM4857=m +CONFIG_SND_SOC_MAX98088=m +CONFIG_SND_SOC_MAX98095=m +CONFIG_SND_SOC_MAX9850=m +CONFIG_SND_SOC_MAX9877=m +CONFIG_SND_SOC_PCM3008=m +CONFIG_SND_SOC_RT5631=m +CONFIG_SND_SOC_SGTL5000=m +CONFIG_SND_SOC_SPDIF=m +CONFIG_SND_SOC_SSM2602=m +CONFIG_SND_SOC_STA32X=m +CONFIG_SND_SOC_TLV320AIC23=m +CONFIG_SND_SOC_TLV320AIC26=m +CONFIG_SND_SOC_TLV320AIC32X4=m +CONFIG_SND_SOC_TLV320AIC3X=m +CONFIG_SND_SOC_TLV320DAC33=m +CONFIG_SND_SOC_TPA6130A2=m +CONFIG_SND_SOC_TWL4030=m +CONFIG_SND_SOC_TWL6040=m +CONFIG_SND_SOC_UDA134X=m +CONFIG_SND_SOC_UDA1380=m +CONFIG_SND_SOC_WL1273=m +CONFIG_SND_SOC_WM1250_EV1=m +CONFIG_SND_SOC_WM2000=m +CONFIG_SND_SOC_WM5100=m +CONFIG_SND_SOC_WM8350=m +CONFIG_SND_SOC_WM8400=m +CONFIG_SND_SOC_WM8510=m +CONFIG_SND_SOC_WM8523=m +CONFIG_SND_SOC_WM8580=m +CONFIG_SND_SOC_WM8711=m +CONFIG_SND_SOC_WM8727=m +CONFIG_SND_SOC_WM8728=m +CONFIG_SND_SOC_WM8731=m +CONFIG_SND_SOC_WM8737=m +CONFIG_SND_SOC_WM8741=m +CONFIG_SND_SOC_WM8750=m +CONFIG_SND_SOC_WM8753=m +CONFIG_SND_SOC_WM8770=m +CONFIG_SND_SOC_WM8776=m +CONFIG_SND_SOC_WM8782=m +CONFIG_SND_SOC_WM8804=m +CONFIG_SND_SOC_WM8900=m +CONFIG_SND_SOC_WM8903=m +CONFIG_SND_SOC_WM8904=m +CONFIG_SND_SOC_WM8940=m +CONFIG_SND_SOC_WM8955=m +CONFIG_SND_SOC_WM8960=m +CONFIG_SND_SOC_WM8961=m +CONFIG_SND_SOC_WM8962=m +CONFIG_SND_SOC_WM8971=m +CONFIG_SND_SOC_WM8974=m +CONFIG_SND_SOC_WM8978=m +CONFIG_SND_SOC_WM8983=m +CONFIG_SND_SOC_WM8985=m +CONFIG_SND_SOC_WM8988=m +CONFIG_SND_SOC_WM8990=m +CONFIG_SND_SOC_WM8991=m +CONFIG_SND_SOC_WM8993=m +CONFIG_SND_SOC_WM8994=m +CONFIG_SND_SOC_WM8995=m +CONFIG_SND_SOC_WM8996=m +CONFIG_SND_SOC_WM9081=m +CONFIG_SND_SOC_WM9090=m +CONFIG_SND_SOC_WM_HUBS=m +CONFIG_SND_SONICVIBES=m +CONFIG_SND_SPI=y +CONFIG_SND_SSCAPE=m +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_TEA575X=m +CONFIG_SND_TIMER=m +CONFIG_SND_TRIDENT=m +CONFIG_SND_USB=y +CONFIG_SND_USB_6FIRE=m +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_CAIAQ=m +CONFIG_SND_USB_CAIAQ_INPUT=y +CONFIG_SND_USB_UA101=m +CONFIG_SND_USB_US122L=m +CONFIG_SND_USB_USX2Y=m +# CONFIG_SND_VERBOSE_PRINTK is not set +CONFIG_SND_VERBOSE_PROCFS=y +CONFIG_SND_VIA82XX=m +CONFIG_SND_VIA82XX_MODEM=m +CONFIG_SND_VIRMIDI=m +CONFIG_SND_VIRTUOSO=m +CONFIG_SND_VMASTER=y +CONFIG_SND_VX222=m +CONFIG_SND_VXPOCKET=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_WAVEFRONT=m +CONFIG_SND_WSS_LIB=m +CONFIG_SND_YMFPCI=m +CONFIG_SOC_CAMERA=m +CONFIG_SOC_CAMERA_IMX074=m +CONFIG_SOC_CAMERA_MT9M001=m +CONFIG_SOC_CAMERA_MT9M111=m +CONFIG_SOC_CAMERA_MT9T031=m +CONFIG_SOC_CAMERA_MT9T112=m +CONFIG_SOC_CAMERA_MT9V022=m +CONFIG_SOC_CAMERA_OV2640=m +CONFIG_SOC_CAMERA_OV5642=m +CONFIG_SOC_CAMERA_OV6650=m +CONFIG_SOC_CAMERA_OV772X=m +CONFIG_SOC_CAMERA_OV9640=m +CONFIG_SOC_CAMERA_OV9740=m +CONFIG_SOC_CAMERA_PLATFORM=m +CONFIG_SOC_CAMERA_RJ54N1=m +CONFIG_SOC_CAMERA_TW9910=m +CONFIG_SOC_OMAP3430=y +CONFIG_SOC_OMAPTI816X=y +CONFIG_SOFT_WATCHDOG=m +# CONFIG_SOLO6X10 is not set +CONFIG_SONYPI=m +CONFIG_SONYPI_COMPAT=y +CONFIG_SONY_LAPTOP=m +CONFIG_SOUND=m +CONFIG_SOUND_OSS_CORE=y +CONFIG_SOUND_OSS_CORE_PRECLAIM=y +# CONFIG_SOUND_PRIME is not set +CONFIG_SP5100_TCO=m +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_STATIC=y +CONFIG_SPARSEMEM_VMEMMAP=y +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +# CONFIG_SPARSE_RCU_POINTER is not set +CONFIG_SPEAKUP=m +CONFIG_SPEAKUP_SYNTH_ACNTPC=m +CONFIG_SPEAKUP_SYNTH_ACNTSA=m +CONFIG_SPEAKUP_SYNTH_APOLLO=m +CONFIG_SPEAKUP_SYNTH_AUDPTR=m +CONFIG_SPEAKUP_SYNTH_BNS=m +CONFIG_SPEAKUP_SYNTH_DECEXT=m +CONFIG_SPEAKUP_SYNTH_DECPC=m +CONFIG_SPEAKUP_SYNTH_DECTLK=m +CONFIG_SPEAKUP_SYNTH_DTLK=m +CONFIG_SPEAKUP_SYNTH_DUMMY=m +CONFIG_SPEAKUP_SYNTH_KEYPC=m +CONFIG_SPEAKUP_SYNTH_LTLK=m +CONFIG_SPEAKUP_SYNTH_SOFT=m +CONFIG_SPEAKUP_SYNTH_SPKOUT=m +CONFIG_SPEAKUP_SYNTH_TXPRT=m +CONFIG_SPI=y +CONFIG_SPI_ALTERA=m +CONFIG_SPI_BITBANG=m +CONFIG_SPI_BUTTERFLY=m +# CONFIG_SPI_DEBUG is not set +CONFIG_SPI_DW_MID_DMA=y +# CONFIG_SPI_DW_MMIO is not set +CONFIG_SPI_DW_PCI=m +CONFIG_SPI_GPIO=m +CONFIG_SPI_LM70_LLP=m +CONFIG_SPI_MASTER=y +CONFIG_SPI_OC_TINY=m +CONFIG_SPI_OMAP24XX=m +CONFIG_SPI_PXA2XX=m +CONFIG_SPI_TLE62X0=m +CONFIG_SPI_TOPCLIFF_PCH=m +# CONFIG_SPI_XILINX is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_SPU_BASE=y +CONFIG_SPU_FS=m +CONFIG_SPU_FS_64K_LS=y +CONFIG_SQUASHFS=m +# CONFIG_SQUASHFS_4K_DEVBLK_SIZE is not set +# CONFIG_SQUASHFS_EMBEDDED is not set +CONFIG_SQUASHFS_FRAGMENT_CACHE_SIZE=3 +CONFIG_SQUASHFS_ZLIB=y +CONFIG_SR_REPORT_TIME_LIMIT=100 +CONFIG_SSB=m +CONFIG_SSB_B43_PCI_BRIDGE=y +CONFIG_SSB_BLOCKIO=y +# CONFIG_SSB_DEBUG is not set +CONFIG_SSB_DRIVER_PCICORE=y +CONFIG_SSB_DRIVER_PCICORE_POSSIBLE=y +CONFIG_SSB_PCIHOST=y +CONFIG_SSB_PCIHOST_POSSIBLE=y +CONFIG_SSB_PCMCIAHOST_POSSIBLE=y +CONFIG_SSB_POSSIBLE=y +CONFIG_SSB_SDIOHOST=y +CONFIG_SSB_SDIOHOST_POSSIBLE=y +# CONFIG_SSB_SILENT is not set +CONFIG_SSB_SPROM=y +CONFIG_SSFDC=m +CONFIG_STACKTRACE=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_STAGING=y +CONFIG_STALDRV=y +# CONFIG_STMMAC_CHAINED is not set +# CONFIG_STMMAC_DA is not set +# CONFIG_STMMAC_DEBUG_FS is not set +CONFIG_STMMAC_ETH=m +CONFIG_STMMAC_RING=y +CONFIG_STOP_MACHINE=y +CONFIG_STP=m +CONFIG_STRICT_DEVMEM=y +# CONFIG_STRIP_ASM_SYMS is not set +# CONFIG_STUB_POULSBO is not set +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_SUNGEM=m +CONFIG_SUNGEM_PHY=m +CONFIG_SUNRPC=m +CONFIG_SUNRPC_GSS=m +CONFIG_SUNRPC_XPRT_RDMA=m +CONFIG_SUSPEND=y +CONFIG_SUSPEND_FREEZER=y +CONFIG_SWAP=y +CONFIG_SWIOTLB=y +CONFIG_SWIOTLB_XEN=y +CONFIG_SYNCLINK=m +CONFIG_SYNCLINKMP=m +CONFIG_SYNCLINK_CS=m +CONFIG_SYNCLINK_GT=m +CONFIG_SYN_COOKIES=y +CONFIG_SYSCTL=y +CONFIG_SYSFS=y +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_COMPAT=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_SYSV_FS=m +CONFIG_SYS_SUPPORTS_APM_EMULATION=y +CONFIG_SYS_SUPPORTS_HUGETLBFS=y +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_GTCO=m +CONFIG_TABLET_USB_HANWANG=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TARGET_CORE=m +CONFIG_TASK_DELAY_ACCT=y +CONFIG_TASK_IO_ACCOUNTING=y +CONFIG_TASK_SIZE=0xc0000000 +CONFIG_TASK_XACCT=y +CONFIG_TAU=y +# CONFIG_TAU_AVERAGE is not set +# CONFIG_TAU_INT is not set +CONFIG_TC1100_WMI=m +CONFIG_TCG_ATMEL=m +CONFIG_TCG_INFINEON=m +CONFIG_TCG_NSC=m +CONFIG_TCIC=m +CONFIG_TCM_FC=m +CONFIG_TCM_FILEIO=m +CONFIG_TCM_IBLOCK=m +CONFIG_TCM_PSCSI=m +CONFIG_TCP_CONG_BIC=m +CONFIG_TCP_CONG_CUBIC=y +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_ILLINOIS=m +CONFIG_TCP_CONG_LP=m +CONFIG_TCP_CONG_SCALABLE=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_VENO=m +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_YEAH=m +CONFIG_TEHUTI=m +CONFIG_TEKRAM_DONGLE=m +CONFIG_TELCLOCK=m +CONFIG_TEST_KSTRTOX=m +# CONFIG_TEST_LIST_SORT is not set +CONFIG_TEST_POWER=m +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_TEXTSEARCH_KMP=m +CONFIG_THERMAL=y +CONFIG_THERMAL_HWMON=y +CONFIG_THERM_ADT746X=y +CONFIG_THERM_PM72=m +CONFIG_THERM_WINDTUNNEL=m +CONFIG_THINKPAD_ACPI=m +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y +# CONFIG_THINKPAD_ACPI_DEBUG is not set +CONFIG_THINKPAD_ACPI_DEBUGFACILITIES=y +CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y +# CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set +CONFIG_THINKPAD_ACPI_VIDEO=y +CONFIG_THRUSTMASTER_FF=y +# CONFIG_THUMB2_KERNEL is not set +CONFIG_TICK_ONESHOT=y +# CONFIG_TIDSPBRIDGE is not set +CONFIG_TIFM_7XX1=m +CONFIG_TIFM_CORE=m +CONFIG_TIGON3=m +CONFIG_TIMB_DMA=m +CONFIG_TIMERFD=y +CONFIG_TIMER_STATS=y +CONFIG_TINY_RCU=y +CONFIG_TIPC=m +# CONFIG_TIPC_ADVANCED is not set +# CONFIG_TIPC_DEBUG is not set +CONFIG_TI_DAC7512=m +CONFIG_TI_DAVINCI_CPDMA=m +# CONFIG_TI_DAVINCI_EMAC is not set +CONFIG_TI_DAVINCI_MDIO=m +CONFIG_TI_ST=m +CONFIG_TLAN=m +CONFIG_TMD_HERMES=m +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +CONFIG_TMS380TR=m +CONFIG_TMSPCI=m +CONFIG_TOIM3232_DONGLE=m +CONFIG_TOPSTAR_LAPTOP=m +# CONFIG_TOSHIBA is not set +CONFIG_TOSHIBA_BT_RFKILL=m +CONFIG_TOSHIBA_FIR=m +CONFIG_TOUCHSCREEN_88PM860X=m +CONFIG_TOUCHSCREEN_AD7877=m +CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m +CONFIG_TOUCHSCREEN_AD7879_SPI=m +CONFIG_TOUCHSCREEN_ADS7846=m +CONFIG_TOUCHSCREEN_ATMEL_MXT=m +CONFIG_TOUCHSCREEN_BU21013=m +CONFIG_TOUCHSCREEN_CY8CTMG110=m +CONFIG_TOUCHSCREEN_DA9034=m +CONFIG_TOUCHSCREEN_DYNAPRO=m +CONFIG_TOUCHSCREEN_EETI=m +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_FUJITSU=m +CONFIG_TOUCHSCREEN_GUNZE=m +CONFIG_TOUCHSCREEN_HAMPSHIRE=m +CONFIG_TOUCHSCREEN_HTCPEN=m +CONFIG_TOUCHSCREEN_INEXIO=m +CONFIG_TOUCHSCREEN_MAX11801=m +CONFIG_TOUCHSCREEN_MC13783=m +CONFIG_TOUCHSCREEN_MCS5000=m +CONFIG_TOUCHSCREEN_MK712=m +CONFIG_TOUCHSCREEN_MTOUCH=m +CONFIG_TOUCHSCREEN_PCAP=m +CONFIG_TOUCHSCREEN_PENMOUNT=m +CONFIG_TOUCHSCREEN_ST1232=m +CONFIG_TOUCHSCREEN_STMPE=m +CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4=m +CONFIG_TOUCHSCREEN_TOUCHIT213=m +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +CONFIG_TOUCHSCREEN_TPS6507X=m +CONFIG_TOUCHSCREEN_TSC2005=m +CONFIG_TOUCHSCREEN_TSC2007=m +CONFIG_TOUCHSCREEN_TSC_SERIO=m +CONFIG_TOUCHSCREEN_UCB1400=m +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y +CONFIG_TOUCHSCREEN_USB_E2I=y +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_ETT_TC45USB=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y +CONFIG_TOUCHSCREEN_USB_GOTOP=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_IDEALTEK=y +CONFIG_TOUCHSCREEN_USB_IRTOUCH=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_JASTEC=y +CONFIG_TOUCHSCREEN_USB_NEXIO=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_W90X900=m +CONFIG_TOUCHSCREEN_WACOM_W8001=m +CONFIG_TOUCHSCREEN_WM831X=m +CONFIG_TOUCHSCREEN_WM9705=y +CONFIG_TOUCHSCREEN_WM9712=y +CONFIG_TOUCHSCREEN_WM9713=y +CONFIG_TOUCHSCREEN_WM97XX=m +CONFIG_TPS6105X=m +CONFIG_TPS6507X=m +CONFIG_TR=y +CONFIG_TRACEPOINTS=y +CONFIG_TRACER_MAX_TRACE=y +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +CONFIG_TRACE_ROUTER=m +CONFIG_TRACE_SINK=m +CONFIG_TRACING=y +CONFIG_TRACING_SUPPORT=y +CONFIG_TRANSPARENT_HUGEPAGE=y +# CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS is not set +CONFIG_TRANSPARENT_HUGEPAGE_MADVISE=y +CONFIG_TREE_PREEMPT_RCU=y +CONFIG_TREE_RCU=y +# CONFIG_TREE_RCU_TRACE is not set +CONFIG_TRUSTED_KEYS=y +CONFIG_TSL2583=m +CONFIG_TTPCI_EEPROM=m +CONFIG_TTY_PRINTK=y +CONFIG_TULIP=m +# CONFIG_TULIP_MMIO is not set +# CONFIG_TULIP_MWI is not set +# CONFIG_TULIP_NAPI is not set +CONFIG_TUN=y +# CONFIG_TUNE_CELL is not set +CONFIG_TWL4030_MADC=m +CONFIG_TWL4030_WATCHDOG=m +CONFIG_TWL6030_PWM=m +CONFIG_TWL6030_USB=m +CONFIG_TWL6040_CORE=y +CONFIG_TYPHOON=m +CONFIG_U3_DART=y +# CONFIG_UACCESS_WITH_MEMCPY is not set +CONFIG_UBIFS_FS=m +# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set +# CONFIG_UBIFS_FS_DEBUG is not set +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_XATTR=y +CONFIG_UBIFS_FS_ZLIB=y +CONFIG_UCB1400_CORE=m +CONFIG_UDBG_RTAS_CONSOLE=y +CONFIG_UDF_FS=m +CONFIG_UDF_NLS=y +CONFIG_UEVENT_HELPER_PATH="" +# CONFIG_UFS_DEBUG is not set +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +CONFIG_UID16=y +CONFIG_UIO=m +CONFIG_UIO_AEC=m +CONFIG_UIO_CIF=m +CONFIG_UIO_NETX=m +CONFIG_UIO_PCI_GENERIC=m +CONFIG_UIO_PDRV=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_SERCOS3=m +CONFIG_ULI526X=m +CONFIG_ULTRA=m +CONFIG_ULTRA32=m +CONFIG_ULTRAMCA=m +CONFIG_UNIX=y +CONFIG_UNIX98_PTYS=y +CONFIG_USB=y +CONFIG_USBIP_CORE=m +# CONFIG_USBIP_DEBUG is not set +CONFIG_USBIP_HOST=m +CONFIG_USBIP_VHCI_HCD=m +CONFIG_USBPCWATCHDOG=m +CONFIG_USB_ACM=m +CONFIG_USB_ADUTUX=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AMD5536UDC=m +CONFIG_USB_AN2720=y +CONFIG_USB_APPLEDISPLAY=m +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB_ARMLINUX=y +CONFIG_USB_ATM=m +CONFIG_USB_AUDIO=m +CONFIG_USB_BELKIN=y +CONFIG_USB_C67X00_HCD=m +CONFIG_USB_CATC=m +CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_CDC_PHONET=m +CONFIG_USB_CI13XXX_PCI=m +CONFIG_USB_COMMON=y +CONFIG_USB_CXACRU=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +# CONFIG_USB_DEBUG is not set +# CONFIG_USB_DEVICEFS is not set +# CONFIG_USB_DEVICE_CLASS is not set +CONFIG_USB_DSBR=m +# CONFIG_USB_DUMMY_HCD is not set +CONFIG_USB_DWC3=m +# CONFIG_USB_DWC3_DEBUG is not set +CONFIG_USB_EG20T=m +CONFIG_USB_EHCI_BIG_ENDIAN_DESC=y +CONFIG_USB_EHCI_BIG_ENDIAN_MMIO=y +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_HCD_OMAP=y +CONFIG_USB_EHCI_HCD_PPC_OF=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +CONFIG_USB_EMI26=m +CONFIG_USB_EMI62=m +CONFIG_USB_ENESTORAGE=m +CONFIG_USB_EPSON2888=y +CONFIG_USB_ETH=m +# CONFIG_USB_ETH_EEM is not set +CONFIG_USB_ETH_RNDIS=y +CONFIG_USB_EZUSB=y +# CONFIG_USB_FILE_STORAGE is not set +CONFIG_USB_FTDI_ELAN=m +CONFIG_USB_FUNCTIONFS=m +CONFIG_USB_FUNCTIONFS_ETH=y +CONFIG_USB_FUNCTIONFS_GENERIC=y +CONFIG_USB_FUNCTIONFS_RNDIS=y +CONFIG_USB_GADGETFS=m +# CONFIG_USB_GADGET_DEBUG is not set +# CONFIG_USB_GADGET_DEBUG_FILES is not set +# CONFIG_USB_GADGET_DEBUG_FS is not set +CONFIG_USB_GADGET_DUALSPEED=y +CONFIG_USB_GADGET_STORAGE_NUM_BUFFERS=2 +CONFIG_USB_GADGET_SUPERSPEED=y +CONFIG_USB_GADGET_VBUS_DRAW=2 +CONFIG_USB_GL860=m +CONFIG_USB_GOKU=m +CONFIG_USB_GSPCA=m +CONFIG_USB_GSPCA_BENQ=m +CONFIG_USB_GSPCA_CONEX=m +CONFIG_USB_GSPCA_CPIA1=m +CONFIG_USB_GSPCA_ETOMS=m +CONFIG_USB_GSPCA_FINEPIX=m +CONFIG_USB_GSPCA_JEILINJ=m +CONFIG_USB_GSPCA_KINECT=m +CONFIG_USB_GSPCA_KONICA=m +CONFIG_USB_GSPCA_MARS=m +CONFIG_USB_GSPCA_MR97310A=m +CONFIG_USB_GSPCA_NW80X=m +CONFIG_USB_GSPCA_OV519=m +CONFIG_USB_GSPCA_OV534=m +CONFIG_USB_GSPCA_OV534_9=m +CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m +CONFIG_USB_GSPCA_PAC7311=m +CONFIG_USB_GSPCA_SE401=m +CONFIG_USB_GSPCA_SN9C2028=m +CONFIG_USB_GSPCA_SN9C20X=m +CONFIG_USB_GSPCA_SONIXB=m +CONFIG_USB_GSPCA_SONIXJ=m +CONFIG_USB_GSPCA_SPCA1528=m +CONFIG_USB_GSPCA_SPCA500=m +CONFIG_USB_GSPCA_SPCA501=m +CONFIG_USB_GSPCA_SPCA505=m +CONFIG_USB_GSPCA_SPCA506=m +CONFIG_USB_GSPCA_SPCA508=m +CONFIG_USB_GSPCA_SPCA561=m +CONFIG_USB_GSPCA_SQ905=m +CONFIG_USB_GSPCA_SQ905C=m +CONFIG_USB_GSPCA_SQ930X=m +CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STV0680=m +CONFIG_USB_GSPCA_SUNPLUS=m +CONFIG_USB_GSPCA_T613=m +CONFIG_USB_GSPCA_TOPRO=m +CONFIG_USB_GSPCA_TV8532=m +CONFIG_USB_GSPCA_VC032X=m +CONFIG_USB_GSPCA_VICAM=m +CONFIG_USB_GSPCA_XIRLINK_CIT=m +CONFIG_USB_GSPCA_ZC3XX=m +CONFIG_USB_G_ACM_MS=m +CONFIG_USB_G_DBGP=m +# CONFIG_USB_G_DBGP_PRINTK is not set +CONFIG_USB_G_DBGP_SERIAL=y +CONFIG_USB_G_HID=m +CONFIG_USB_G_MULTI_CDC=y +CONFIG_USB_G_MULTI_RNDIS=y +CONFIG_USB_G_NCM=m +CONFIG_USB_G_NOKIA=m +CONFIG_USB_G_PRINTER=m +CONFIG_USB_G_SERIAL=m +CONFIG_USB_G_WEBCAM=m +CONFIG_USB_HID=m +CONFIG_USB_HIDDEV=y +CONFIG_USB_HSO=m +CONFIG_USB_HWA_HCD=m +CONFIG_USB_IDMOUSE=m +CONFIG_USB_IOWARRIOR=m +CONFIG_USB_IPHETH=m +CONFIG_USB_IRDA=m +CONFIG_USB_ISIGHTFW=m +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_ISP1760_HCD=m +CONFIG_USB_KAWETH=m +CONFIG_USB_KBD=m +CONFIG_USB_LANGWELL=m +CONFIG_USB_LCD=m +CONFIG_USB_LD=m +CONFIG_USB_LED=m +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LIBUSUAL=y +CONFIG_USB_M5602=m +CONFIG_USB_MASS_STORAGE=m +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m +CONFIG_USB_MIDI_GADGET=m +CONFIG_USB_MOUSE=m +CONFIG_USB_MR800=m +# CONFIG_USB_MUSB_AM35X is not set +CONFIG_USB_NET2272_DMA=y +CONFIG_USB_NET2280=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_CDC_EEM=m +CONFIG_USB_NET_CDC_NCM=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_NET_CX82310_ETH=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_INT51X1=m +CONFIG_USB_NET_KALMIA=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_RNDIS_WLAN=m +CONFIG_USB_NET_SMSC75XX=m +CONFIG_USB_NET_SMSC95XX=m +CONFIG_USB_NET_ZAURUS=m +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_HCD_OMAP3=y +CONFIG_USB_OHCI_HCD_PCI=y +CONFIG_USB_OHCI_HCD_PPC_OF=y +CONFIG_USB_OHCI_HCD_PPC_OF_BE=y +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_OMAP is not set +# CONFIG_USB_OTG_BLACKLIST_HUB is not set +CONFIG_USB_OTG_UTILS=y +# CONFIG_USB_OTG_WHITELIST is not set +CONFIG_USB_OXU210HP_HCD=m +CONFIG_USB_PEGASUS=m +CONFIG_USB_PRINTER=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set +CONFIG_USB_PWC_INPUT_EVDEV=y +CONFIG_USB_RENESAS_USBHS=m +CONFIG_USB_RENESAS_USBHS_HCD=m +CONFIG_USB_RIO500=m +CONFIG_USB_RTL8150=m +CONFIG_USB_S2255=m +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_CH341=m +CONFIG_USB_SERIAL_CP210X=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_DEBUG=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_FUNSOFT=m +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_HP4X=m +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_IUU=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KEYSPAN_MPR=y +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KEYSPAN_USA18X=y +CONFIG_USB_SERIAL_KEYSPAN_USA19=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y +CONFIG_USB_SERIAL_KEYSPAN_USA19W=y +CONFIG_USB_SERIAL_KEYSPAN_USA28=y +CONFIG_USB_SERIAL_KEYSPAN_USA28X=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y +CONFIG_USB_SERIAL_KEYSPAN_USA49W=y +CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_MOS7715_PARPORT=y +CONFIG_USB_SERIAL_MOS7720=m +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_MOTOROLA=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_SERIAL_OPTICON=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OTI6858=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_QCAUX=m +CONFIG_USB_SERIAL_QUALCOMM=m +CONFIG_USB_SERIAL_QUATECH2=m +CONFIG_USB_SERIAL_QUATECH_USB2=m +CONFIG_USB_SERIAL_SAFE=m +CONFIG_USB_SERIAL_SIEMENS_MPI=m +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_SPCP8X5=m +CONFIG_USB_SERIAL_SSU100=m +CONFIG_USB_SERIAL_SYMBOL=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_VIVOPAY_SERIAL=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_WWAN=m +CONFIG_USB_SERIAL_XIRCOM=m +CONFIG_USB_SERIAL_ZIO=m +CONFIG_USB_SEVSEG=m +CONFIG_USB_SIERRA_NET=m +CONFIG_USB_SISUSBVGA=m +# CONFIG_USB_SISUSBVGA_CON is not set +CONFIG_USB_SL811_CS=m +CONFIG_USB_SL811_HCD=m +CONFIG_USB_SL811_HCD_ISO=y +CONFIG_USB_SPEEDTOUCH=m +CONFIG_USB_STKWEBCAM=m +CONFIG_USB_STORAGE=m +CONFIG_USB_STORAGE_ALAUDA=m +CONFIG_USB_STORAGE_CYPRESS_ATACB=m +CONFIG_USB_STORAGE_DATAFAB=m +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_ENE_UB6250=m +CONFIG_USB_STORAGE_FREECOM=m +CONFIG_USB_STORAGE_ISD200=m +CONFIG_USB_STORAGE_JUMPSHOT=m +CONFIG_USB_STORAGE_KARMA=m +CONFIG_USB_STORAGE_ONETOUCH=m +CONFIG_USB_STORAGE_REALTEK=m +CONFIG_USB_STORAGE_SDDR09=m +CONFIG_USB_STORAGE_SDDR55=m +CONFIG_USB_STORAGE_USBAT=m +CONFIG_USB_STV06XX=m +CONFIG_USB_SUPPORT=y +CONFIG_USB_SUSPEND=y +CONFIG_USB_SWITCH_FSA9480=m +CONFIG_USB_TEST=m +# CONFIG_USB_TI_CPPI_DMA is not set +CONFIG_USB_TMC=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_U132_HCD=m +CONFIG_USB_UAS=m +CONFIG_USB_UEAGLEATM=m +CONFIG_USB_UHCI_HCD=y +CONFIG_USB_ULPI=y +CONFIG_USB_USBNET=m +CONFIG_USB_USS720=m +# CONFIG_USB_UX500_DMA is not set +CONFIG_USB_VIDEO_CLASS=m +CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y +CONFIG_USB_VL600=m +CONFIG_USB_WDM=m +CONFIG_USB_WHCI_HCD=m +CONFIG_USB_WUSB=m +CONFIG_USB_WUSB_CBAF=m +# CONFIG_USB_WUSB_CBAF_DEBUG is not set +CONFIG_USB_XHCI_HCD=y +# CONFIG_USB_XHCI_HCD_DEBUGGING is not set +CONFIG_USB_XUSBATM=m +CONFIG_USB_YUREX=m +CONFIG_USB_ZD1201=m +CONFIG_USB_ZERO=m +# CONFIG_USB_ZERO_HNPTEST is not set +CONFIG_USB_ZR364XX=m +CONFIG_USER_NS=y +CONFIG_USER_RETURN_NOTIFIER=y +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_USE_GENERIC_SMP_HELPERS=y +CONFIG_USE_OF=y +CONFIG_USE_PERCPU_NUMA_NODE_ID=y +CONFIG_UTS_NS=y +CONFIG_UWB=m +CONFIG_UWB_HWA=m +CONFIG_UWB_I1480U=m +CONFIG_UWB_WHCI=m +CONFIG_V4L2_MEM2MEM_DEV=m +CONFIG_V4L_MEM2MEM_DRIVERS=y +CONFIG_V4L_USB_DRIVERS=y +CONFIG_VECTORS_BASE=0xffff0000 +CONFIG_VETH=m +CONFIG_VFP=y +CONFIG_VFPv3=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_VGA_ARB=y +CONFIG_VGA_CONSOLE=y +CONFIG_VGA_SWITCHEROO=y +CONFIG_VHOST_NET=m +CONFIG_VIA_FIR=m +CONFIG_VIA_RHINE=m +CONFIG_VIA_RHINE_MMIO=y +CONFIG_VIA_VELOCITY=m +CONFIG_VIDEOBUF2_CORE=m +CONFIG_VIDEOBUF2_DMA_CONTIG=m +CONFIG_VIDEOBUF2_MEMOPS=m +CONFIG_VIDEOBUF2_VMALLOC=m +CONFIG_VIDEOBUF_DMA_CONTIG=m +CONFIG_VIDEOBUF_DMA_SG=m +CONFIG_VIDEOBUF_DVB=m +CONFIG_VIDEOBUF_GEN=m +CONFIG_VIDEOBUF_VMALLOC=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m +CONFIG_VIDEO_ADV7180=m +# CONFIG_VIDEO_ADV_DEBUG is not set +CONFIG_VIDEO_AK881X=m +CONFIG_VIDEO_AU0828=m +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT848=m +CONFIG_VIDEO_BT848_DVB=y +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_BT866=m +CONFIG_VIDEO_BTCX=m +CONFIG_VIDEO_BWQCAM=m +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_VIDEO_CAPTURE_DRIVERS=y +CONFIG_VIDEO_CPIA2=m +CONFIG_VIDEO_CQCAM=m +CONFIG_VIDEO_CS5345=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_CX18=m +CONFIG_VIDEO_CX18_ALSA=m +CONFIG_VIDEO_CX231XX=m +CONFIG_VIDEO_CX231XX_ALSA=m +CONFIG_VIDEO_CX231XX_DVB=m +CONFIG_VIDEO_CX231XX_RC=y +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_CX23885=m +CONFIG_VIDEO_CX25821=m +CONFIG_VIDEO_CX25821_ALSA=m +CONFIG_VIDEO_CX25840=m +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_MPEG=m +CONFIG_VIDEO_CX88_VP3054=m +CONFIG_VIDEO_DEV=m +CONFIG_VIDEO_DM6446_CCDC=m +CONFIG_VIDEO_DT3155=m +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_EM28XX_ALSA=m +CONFIG_VIDEO_EM28XX_DVB=m +CONFIG_VIDEO_EM28XX_RC=y +CONFIG_VIDEO_FB_IVTV=m +# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set +CONFIG_VIDEO_GO7007=m +CONFIG_VIDEO_GO7007_OV7640=m +CONFIG_VIDEO_GO7007_SAA7113=m +CONFIG_VIDEO_GO7007_SAA7115=m +CONFIG_VIDEO_GO7007_SONY_TUNER=m +CONFIG_VIDEO_GO7007_TW2804=m +CONFIG_VIDEO_GO7007_TW9903=m +CONFIG_VIDEO_GO7007_UDA1342=m +CONFIG_VIDEO_GO7007_USB=m +CONFIG_VIDEO_GO7007_USB_S2250_BOARD=m +CONFIG_VIDEO_HDPVR=m +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_IR_I2C=m +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_M52790=m +CONFIG_VIDEO_MEDIA=m +CONFIG_VIDEO_MEM2MEM_TESTDEV=m +CONFIG_VIDEO_MEYE=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_MT9V011=m +CONFIG_VIDEO_MXB=m +CONFIG_VIDEO_OMAP2_VOUT=m +CONFIG_VIDEO_OMAP2_VOUT_VRFB=y +CONFIG_VIDEO_OUTPUT_CONTROL=m +CONFIG_VIDEO_OV7670=m +CONFIG_VIDEO_PMS=m +CONFIG_VIDEO_PVRUSB2=m +# CONFIG_VIDEO_PVRUSB2_DEBUGIFC is not set +CONFIG_VIDEO_PVRUSB2_DVB=y +CONFIG_VIDEO_PVRUSB2_SYSFS=y +CONFIG_VIDEO_SAA6588=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_SAA7127=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_DVB=m +CONFIG_VIDEO_SAA7134_RC=y +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_VIDEO_SAA7164=m +CONFIG_VIDEO_SAA717X=m +CONFIG_VIDEO_SAA7185=m +CONFIG_VIDEO_SH_MOBILE_CEU=m +CONFIG_VIDEO_SH_MOBILE_CSI2=m +CONFIG_VIDEO_SR030PC30=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_TIMBERDALE=m +CONFIG_VIDEO_TLG2300=m +CONFIG_VIDEO_TM6000=m +CONFIG_VIDEO_TM6000_ALSA=m +CONFIG_VIDEO_TM6000_DVB=m +CONFIG_VIDEO_TUNER=m +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_TVP7002=m +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m +CONFIG_VIDEO_USBVISION=m +CONFIG_VIDEO_V4L2=m +CONFIG_VIDEO_V4L2_COMMON=m +CONFIG_VIDEO_VIA_CAMERA=m +CONFIG_VIDEO_VIVI=m +CONFIG_VIDEO_VP27SMPX=m +CONFIG_VIDEO_VPFE_CAPTURE=m +CONFIG_VIDEO_VPSS_SYSTEM=m +CONFIG_VIDEO_VPX3220=m +CONFIG_VIDEO_W9966=m +CONFIG_VIDEO_WM8739=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_ZORAN=m +CONFIG_VIDEO_ZORAN_AVS6EYES=m +CONFIG_VIDEO_ZORAN_BUZ=m +CONFIG_VIDEO_ZORAN_DC10=m +CONFIG_VIDEO_ZORAN_DC30=m +CONFIG_VIDEO_ZORAN_LML33=m +CONFIG_VIDEO_ZORAN_LML33R10=m +CONFIG_VIDEO_ZORAN_ZR36060=m +# CONFIG_VIRQ_DEBUG is not set +CONFIG_VIRTIO_CONSOLE=m +CONFIG_VIRTUALIZATION=y +CONFIG_VIRT_CPU_ACCOUNTING=y +CONFIG_VIRT_TO_BUS=y +CONFIG_VITESSE_PHY=y +CONFIG_VLAN_8021Q=m +CONFIG_VLSI_FIR=m +CONFIG_VM86=y +CONFIG_VME_CA91CX42=m +CONFIG_VME_TSI148=m +CONFIG_VME_USER=m +CONFIG_VMIVME_7805=m +# CONFIG_VMSPLIT_1G is not set +# CONFIG_VMSPLIT_2G is not set +# CONFIG_VMSPLIT_2G_OPT is not set +CONFIG_VMSPLIT_3G=y +# CONFIG_VMSPLIT_3G_OPT is not set +CONFIG_VMWARE_BALLOON=m +CONFIG_VMWARE_PVSCSI=m +CONFIG_VMXNET3=m +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_VORTEX=m +CONFIG_VSX=y +CONFIG_VT=y +# CONFIG_VT6655 is not set +CONFIG_VT_CONSOLE=y +CONFIG_VT_CONSOLE_SLEEP=y +CONFIG_VXFS_FS=m +CONFIG_VXGE=m +# CONFIG_VXGE_DEBUG_TRACE_ALL is not set +CONFIG_W1=m +CONFIG_W1_CON=y +CONFIG_W1_MASTER_DS1WM=m +CONFIG_W1_MASTER_DS2482=m +CONFIG_W1_MASTER_DS2490=m +CONFIG_W1_MASTER_GPIO=m +CONFIG_W1_MASTER_MATROX=m +CONFIG_W1_SLAVE_BQ27000=m +CONFIG_W1_SLAVE_DS2408=m +CONFIG_W1_SLAVE_DS2423=m +CONFIG_W1_SLAVE_DS2431=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set +CONFIG_W1_SLAVE_DS2760=m +CONFIG_W1_SLAVE_DS2780=m +CONFIG_W1_SLAVE_SMEM=m +CONFIG_W1_SLAVE_THERM=m +CONFIG_W83627HF_WDT=m +CONFIG_W83697HF_WDT=m +CONFIG_W83697UG_WDT=m +CONFIG_W83877F_WDT=m +CONFIG_W83977F_WDT=m +CONFIG_WAFER_WDT=m +CONFIG_WANXL=m +CONFIG_WAN_ROUTER=m +CONFIG_WAN_ROUTER_DRIVERS=m +CONFIG_WATCHDOG_CORE=y +# CONFIG_WATCHDOG_NOWAYOUT is not set +CONFIG_WATCHDOG_RTAS=m +CONFIG_WD80x3=m +CONFIG_WDT=m +CONFIG_WDTPCI=m +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PRIV=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WIMAX=m +CONFIG_WIMAX_DEBUG_LEVEL=8 +CONFIG_WIMAX_I2400M=m +CONFIG_WIMAX_I2400M_DEBUG_LEVEL=8 +CONFIG_WIMAX_IWMC3200_SDIO=y +CONFIG_WINBOND_840=m +CONFIG_WINBOND_FIR=m +CONFIG_WINDFARM=m +CONFIG_WINDFARM_PM112=m +CONFIG_WINDFARM_PM121=m +CONFIG_WINDFARM_PM81=m +CONFIG_WINDFARM_PM91=m +CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WIRELESS_EXT_SYSFS=y +CONFIG_WL1251=m +CONFIG_WL1251_SDIO=m +CONFIG_WL1251_SPI=m +CONFIG_WL12XX=m +CONFIG_WL12XX_MENU=m +CONFIG_WL12XX_PLATFORM_DATA=y +CONFIG_WL12XX_SDIO=m +# CONFIG_WL12XX_SDIO_TEST is not set +CONFIG_WL12XX_SPI=m +CONFIG_WLAGS49_H2=m +CONFIG_WLAGS49_H25=m +CONFIG_WLAN=y +CONFIG_WM831X_BACKUP=m +CONFIG_WM831X_POWER=m +CONFIG_WM831X_WATCHDOG=m +CONFIG_WM8350_POWER=m +CONFIG_X25=m +CONFIG_X86=y +CONFIG_X86_32_IRIS=m +# CONFIG_X86_32_NON_STANDARD is not set +CONFIG_X86_32_SMP=y +CONFIG_X86_64_ACPI_NUMA=y +CONFIG_X86_64_SMP=y +CONFIG_X86_ACPI_CPUFREQ=y +# CONFIG_X86_ANCIENT_MCE is not set +CONFIG_X86_APM_BOOT=y +# CONFIG_X86_BIGSMP is not set +CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y +CONFIG_X86_BSWAP=y +CONFIG_X86_CHECK_BIOS_CORRUPTION=y +CONFIG_X86_CMOV=y +CONFIG_X86_CMPXCHG=y +CONFIG_X86_CMPXCHG64=y +CONFIG_X86_CPUFREQ_NFORCE2=y +CONFIG_X86_CPUID=m +CONFIG_X86_DEBUGCTLMSR=y +# CONFIG_X86_DECODER_SELFTEST is not set +CONFIG_X86_EXTENDED_PLATFORM=y +# CONFIG_X86_E_POWERSAVER is not set +CONFIG_X86_GENERIC=y +CONFIG_X86_GX_SUSPMOD=y +CONFIG_X86_HT=y +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_INVLPG=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_LONGHAUL=y +CONFIG_X86_LONGRUN=y +CONFIG_X86_MCE=y +CONFIG_X86_MCE_AMD=y +CONFIG_X86_MCE_INJECT=m +CONFIG_X86_MCE_INTEL=y +CONFIG_X86_MCE_THRESHOLD=y +CONFIG_X86_MCE_XEON75XX=m +CONFIG_X86_MPPARSE=y +# CONFIG_X86_MRST is not set +CONFIG_X86_MSR=m +CONFIG_X86_NEED_RELOCS=y +CONFIG_X86_NUMACHIP=y +CONFIG_X86_P4_CLOCKMOD=m +CONFIG_X86_PAE=y +CONFIG_X86_PAT=y +CONFIG_X86_PCC_CPUFREQ=m +CONFIG_X86_PLATFORM_DEVICES=y +CONFIG_X86_PM_TIMER=y +CONFIG_X86_POPAD_OK=y +CONFIG_X86_POWERNOW_K6=y +CONFIG_X86_POWERNOW_K7=y +CONFIG_X86_POWERNOW_K7_ACPI=y +CONFIG_X86_POWERNOW_K8=y +CONFIG_X86_PPRO_FENCE=y +# CONFIG_X86_PTDUMP is not set +# CONFIG_X86_RDC321X is not set +CONFIG_X86_REBOOTFIXUPS=y +CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y +CONFIG_X86_RESERVE_LOW=64 +CONFIG_X86_SPEEDSTEP_CENTRINO=y +CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y +CONFIG_X86_SPEEDSTEP_ICH=y +CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK=y +CONFIG_X86_SPEEDSTEP_SMI=y +CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y +CONFIG_X86_THERMAL_VECTOR=y +CONFIG_X86_TSC=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +# CONFIG_X86_UV is not set +# CONFIG_X86_VERBOSE_BOOTUP is not set +# CONFIG_X86_VSMP is not set +CONFIG_X86_WANT_INTEL_MID=y +CONFIG_X86_WP_WORKS_OK=y +CONFIG_X86_XADD=y +CONFIG_XEN=y +CONFIG_XENFS=m +CONFIG_XEN_ACPI_PROCESSOR=y +CONFIG_XEN_BACKEND=y +CONFIG_XEN_BALLOON=y +CONFIG_XEN_BALLOON_MEMORY_HOTPLUG=y +CONFIG_XEN_BLKDEV_BACKEND=m +CONFIG_XEN_BLKDEV_FRONTEND=y +CONFIG_XEN_COMPAT_XENFS=y +# CONFIG_XEN_DEBUG_FS is not set +CONFIG_XEN_DEV_EVTCHN=m +CONFIG_XEN_DOM0=y +CONFIG_XEN_FBDEV_FRONTEND=m +CONFIG_XEN_GNTDEV=m +CONFIG_XEN_GRANT_DEV_ALLOC=m +CONFIG_XEN_MAX_DOMAIN_MEMORY=128 +CONFIG_XEN_NETDEV_BACKEND=m +CONFIG_XEN_NETDEV_FRONTEND=y +CONFIG_XEN_PCIDEV_BACKEND=m +CONFIG_XEN_PCIDEV_FRONTEND=m +CONFIG_XEN_PVHVM=y +CONFIG_XEN_SAVE_RESTORE=y +CONFIG_XEN_SCRUB_PAGES=y +CONFIG_XEN_SELFBALLOONING=y +CONFIG_XEN_SYS_HYPERVISOR=y +CONFIG_XEN_TMEM=y +CONFIG_XEN_WDT=m +CONFIG_XEN_XENBUS_FRONTEND=y +CONFIG_XFRM=y +CONFIG_XFRM_IPCOMP=m +# CONFIG_XFRM_MIGRATE is not set +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_XFRM_USER=m +# CONFIG_XFS_DEBUG is not set +CONFIG_XFS_FS=m +CONFIG_XFS_POSIX_ACL=y +CONFIG_XFS_QUOTA=y +CONFIG_XILINX_EMACLITE=m +CONFIG_XILINX_LL_TEMAC=m +# CONFIG_XIP_KERNEL is not set +# CONFIG_XMON is not set +CONFIG_XO15_EBOOK=m +CONFIG_XO1_RFKILL=m +CONFIG_XOR_BLOCKS=m +CONFIG_XPS=y +CONFIG_XPS_USB_HCD_XILINX=y +CONFIG_XVMALLOC=y +CONFIG_XZ_DEC=y +CONFIG_XZ_DEC_ARM=y +CONFIG_XZ_DEC_ARMTHUMB=y +CONFIG_XZ_DEC_BCJ=y +CONFIG_XZ_DEC_IA64=y +CONFIG_XZ_DEC_POWERPC=y +CONFIG_XZ_DEC_SPARC=y +CONFIG_XZ_DEC_TEST=m +CONFIG_XZ_DEC_X86=y +CONFIG_YAM=m +CONFIG_YELLOWFIN=m +CONFIG_YENTA=m +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_TOSHIBA=y +CONFIG_ZBOOT_ROM_BSS=0x0 +CONFIG_ZBOOT_ROM_TEXT=0x0 +CONFIG_ZCACHE=m +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_ZEROPLUS_FF=y +CONFIG_ZISOFS=y +CONFIG_ZLIB_INFLATE=y +CONFIG_ZNET=m +CONFIG_ZONE_DMA=y +CONFIG_ZRAM=m +# CONFIG_ZRAM_DEBUG is not set --- linux-3.2.0.orig/debian.master/config/config.common.ports +++ linux-3.2.0/debian.master/config/config.common.ports @@ -0,0 +1,3 @@ +# +# Common config options automatically generated by splitconfig.pl +# --- linux-3.2.0.orig/debian.master/config/enforce +++ linux-3.2.0/debian.master/config/enforce @@ -0,0 +1,111 @@ +# +# SECURITY items +# +# Ensure this option is enabled. +value CONFIG_COMPAT_BRK n +value CONFIG_DEVKMEM n +value CONFIG_LSM_MMAP_MIN_ADDR 0 +value CONFIG_SECURITY y +!exists CONFIG_SECURITY_FILE_CAPABILITIES | value CONFIG_SECURITY_FILE_CAPABILITIES y +value CONFIG_SECURITY_SELINUX y +value CONFIG_SECURITY_SMACK y +value CONFIG_SECURITY_YAMA y +value CONFIG_SYN_COOKIES y +value CONFIG_DEFAULT_SECURITY_APPARMOR y +# For architectures which support this option ensure it is enabled. +!exists CONFIG_SECCOMP | value CONFIG_SECCOMP y +!exists CONFIG_HAVE_ARCH_SECCOMP_FILTER | value CONFIG_SECCOMP_FILTER y +!exists CONFIG_CC_STACKPROTECTOR | value CONFIG_CC_STACKPROTECTOR y +!exists CONFIG_DEBUG_RODATA | value CONFIG_DEBUG_RODATA y +!exists CONFIG_DEBUG_SET_MODULE_RONX | value CONFIG_DEBUG_SET_MODULE_RONX y +!exists CONFIG_STRICT_DEVMEM | value CONFIG_STRICT_DEVMEM y +# For architectures which support this option ensure it is disabled. +!exists CONFIG_COMPAT_VDSO | value CONFIG_COMPAT_VDSO n +!exists CONFIG_ACPI_CUSTOM_METHOD | value CONFIG_ACPI_CUSTOM_METHOD n +# Default to 32768 on ARM, 65536 for everything else. +(arch armel armhf & value CONFIG_DEFAULT_MMAP_MIN_ADDR 32768) | \ + (!arch armel armhf & value CONFIG_DEFAULT_MMAP_MIN_ADDR 65536) + +# CONFIG_USB_DEVICE_FS breaks udev USB firmware loading and is deprecated +# ensure it is disabled. +value CONFIG_USB_DEVICEFS n + +# upstart requires DEVTMPFS be enabled and mounted by default. +value CONFIG_DEVTMPFS y +value CONFIG_DEVTMPFS_MOUNT y + +# some /dev nodes require POSIX ACLs, like /dev/dsp +value CONFIG_TMPFS_POSIX_ACL y + +# Ramdisk size should be a minimum of 64M +value CONFIG_BLK_DEV_RAM_SIZE 65536 + +# LVM requires dm_mod built in to activate correctly (LP: #560717) +value CONFIG_BLK_DEV_DM y + +# sysfs: ensure all DEPRECATED items are off +!exists CONFIG_SYSFS_DEPRECATED_V2 | value CONFIG_SYSFS_DEPRECATED_V2 n +!exists CONFIG_SYSFS_DEPRECATED | value CONFIG_SYSFS_DEPRECATED n + +# automatically add local version will cause packaging failure +value CONFIG_LOCALVERSION_AUTO n + +# provide framebuffer console form the start +# UbuntuSpec:foundations-m-grub2-boot-framebuffer +value CONFIG_FRAMEBUFFER_CONSOLE y + +# GRUB changes will rely on built in vesafb on x86, +# UbuntuSpec:foundations-m-grub2-boot-framebuffer +#(( arch i386 | arch amd64 ) & value CONFIG_FB_VESA y) | \ +# value CONFIG_FB_VESA m | !exists CONFIG_FB_VESA +value CONFIG_FB_VESA m | !exists CONFIG_FB_VESA + +# Build in uinput module so that it's always available (LP: 584812) +value CONFIG_INPUT_UINPUT y + +# upstart relies on getting all of the kernel arguments +value CONFIG_INIT_PASS_ALL_PARAMS y + +# Enabling CONFIG_IMA is vastly expensive, ensure it is off +value CONFIG_IMA n + +# Ensure CONFIG_INTEL_IDLE is turned off for -virtual. +!exists CONFIG_INTEL_IDLE | \ + (flavour virtual & value CONFIG_INTEL_IDLE n) | \ + (!flavour virtual & value CONFIG_INTEL_IDLE y) + +# Ensure CONFIG_IPV6 is y, if this is a module we get a module load for +# every ipv6 packet, bad. +value CONFIG_IPV6 y + +# Ensure ECRYPT_FS is y as it cannot be autoloaded and it has complex +# dependancies which can pull it =m at a whim. +value CONFIG_ECRYPT_FS y + +# Ensure CONFIG_EFI_VARS is y as debian-installer relies on having +# access to efivars when installing in EFI mode. See LP:837332 +value CONFIG_EFI_VARS y | !exists CONFIG_EFI_VARS + +# Ensure CONFIG_FAT_FS is y for arm, needed to ensure we able to replace +# a kernel with the same version. +(arch armel armhf & value CONFIG_FAT_FS y) | \ + (!arch armel armhf & value CONFIG_FAT_FS m) + +# Ensure CONFIG_GPIO_TWL4030 is y for arm, LP:921934 +(arch armel armhf & value CONFIG_GPIO_TWL4030 y) | \ + (!arch armel armhf & (value CONFIG_GPIO_TWL4030 m | !exists CONFIG_GPIO_TWL4030)) + +# Ensure CONFIG_THERM_ADT746X is y for powerpc and powerpc-smp flavours. +# See LP:923094 +!exists CONFIG_THERM_ADT746X | \ + (flavour powerpc powerpc-smp & value CONFIG_THERM_ADT746X y) + +# Ensure CONFIG_NVRAM is y for powerpc and powerpc-smp, LP:942193 +(flavour powerpc powerpc-smp & value CONFIG_NVRAM y) | \ + (value CONFIG_NVRAM m | !exists CONFIG_NVRAM) + +# Ensure CONFIG_STUB_POULSBO is disabled if CONFIG_DRM_PSB is enabled +# See LP:899244 +(!exists CONFIG_DRM_PSB | value CONFIG_DRM_PSB n) | \ +((value CONFIG_DRM_PSB y | value CONFIG_DRM_PSB m) & (value CONFIG_STUB_POULSBO n | !exists CONFIG_STUB_POULSBO)) + --- linux-3.2.0.orig/debian.master/config/powerpc/config.flavour.powerpc-smp +++ linux-3.2.0/debian.master/config/powerpc/config.flavour.powerpc-smp @@ -0,0 +1,43 @@ +# +# Config options for config.flavour.powerpc-smp automatically generated by splitconfig.pl +# +# CONFIG_ARCH_DMA_ADDR_T_64BIT is not set +# CONFIG_ARCH_NO_VIRT_TO_BUS is not set +# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_CFG80211_REG_DEBUG=y +# CONFIG_CRASH_DUMP is not set +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FORCE_MAX_ZONEORDER=11 +# CONFIG_HAVE_SETUP_PER_CPU_AREA is not set +# CONFIG_HUGETLB_PAGE is not set +CONFIG_KERNEL_START=0xc0000000 +# CONFIG_KGDB is not set +# CONFIG_LATENCYTOP is not set +CONFIG_MAX_ACTIVE_REGIONS=32 +# CONFIG_MMIO_NVRAM is not set +# CONFIG_MPIC_U3_HT_IRQS is not set +# CONFIG_NEED_DMA_MAP_STATE is not set +# CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK is not set +CONFIG_NR_CPUS=4 +CONFIG_PAGE_OFFSET=0xc0000000 +# CONFIG_PHYS_ADDR_T_64BIT is not set +# CONFIG_PPC64 is not set +# CONFIG_PPC_970_NAP is not set +# CONFIG_PPC_CELL is not set +# CONFIG_PPC_ICP_HV is not set +# CONFIG_PPC_ICP_NATIVE is not set +# CONFIG_PPC_ICS_RTAS is not set +CONFIG_PPC_INDIRECT_PCI=y +# CONFIG_PPC_MM_SLICES is not set +CONFIG_PPC_MPC106=y +# CONFIG_PPC_P7_NAP is not set +# CONFIG_PPC_XICS is not set +CONFIG_RCU_FANOUT=32 +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCSI_QLA_ISCSI is not set +CONFIG_WORD_SIZE=32 +CONFIG_ZLIB_DEFLATE=m --- linux-3.2.0.orig/debian.master/config/powerpc/config.flavour.powerpc64-smp +++ linux-3.2.0/debian.master/config/powerpc/config.flavour.powerpc64-smp @@ -0,0 +1,43 @@ +# +# Config options for config.flavour.powerpc64-smp automatically generated by splitconfig.pl +# +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_NO_VIRT_TO_BUS=y +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ATA_NONSTANDARD=y +# CONFIG_CFG80211_REG_DEBUG is not set +CONFIG_CRASH_DUMP=y +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_SYS_IMAGEBLIT=y +CONFIG_FORCE_MAX_ZONEORDER=13 +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HUGETLB_PAGE=y +CONFIG_KERNEL_START=0xc000000000000000 +CONFIG_KGDB=y +CONFIG_LATENCYTOP=y +CONFIG_MAX_ACTIVE_REGIONS=256 +CONFIG_MMIO_NVRAM=y +CONFIG_MPIC_U3_HT_IRQS=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NR_CPUS=1024 +CONFIG_PAGE_OFFSET=0xc000000000000000 +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_PPC64=y +CONFIG_PPC_970_NAP=y +CONFIG_PPC_CELL=y +CONFIG_PPC_ICP_HV=y +CONFIG_PPC_ICP_NATIVE=y +CONFIG_PPC_ICS_RTAS=y +# CONFIG_PPC_INDIRECT_PCI is not set +CONFIG_PPC_MM_SLICES=y +# CONFIG_PPC_MPC106 is not set +CONFIG_PPC_P7_NAP=y +CONFIG_PPC_XICS=y +CONFIG_RCU_FANOUT=64 +CONFIG_SCHEDSTATS=y +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_WORD_SIZE=64 +CONFIG_ZLIB_DEFLATE=y --- linux-3.2.0.orig/debian.master/config/powerpc/config.common.powerpc +++ linux-3.2.0/debian.master/config/powerpc/config.common.powerpc @@ -0,0 +1,386 @@ +# +# Config options for config.common.powerpc automatically generated by splitconfig.pl +# +CONFIG_64BIT=y +CONFIG_ABX500_CORE=y +CONFIG_ACORN_PARTITION=y +CONFIG_AIC79XX_RESET_DELAY_MS=15000 +CONFIG_AMIGA_PARTITION=y +CONFIG_APM_EMULATION=m +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SUPPORTS_MSI=y +# CONFIG_ASYNC_TX_DMA is not set +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +CONFIG_ATA_PIIX=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_AUDIT_ARCH=y +CONFIG_AUXDISPLAY=y +# CONFIG_AX25_DAMA_SLAVE is not set +CONFIG_BCH=m +CONFIG_BINARY_PRINTF=y +CONFIG_BLK_DEV_CMD64X=m +# CONFIG_BLK_DEV_SR_VENDOR is not set +# CONFIG_BLK_DEV_XIP is not set +CONFIG_BSD_DISKLABEL=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BTRFS_FS_POSIX_ACL=y +CONFIG_CAN_C_CAN_PLATFORM=m +CONFIG_CGROUPS=y +CONFIG_CGROUP_MEM_RES_CTLR_SWAP=y +# CONFIG_CIFS_EXPERIMENTAL is not set +# CONFIG_CIFS_XATTR is not set +CONFIG_CLEANCACHE=y +# CONFIG_COMEDI is not set +# CONFIG_COMPACTION is not set +CONFIG_CORDIC=m +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_CPU_FREQ_STAT=m +# CONFIG_DAB is not set +# CONFIG_DEBUG_INFO is not set +CONFIG_DEBUG_KERNEL=y +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DEVPTS_MULTIPLE_INSTANCES=y +# CONFIG_DM9000 is not set +# CONFIG_DM_RAID45 is not set +# CONFIG_DRM_PSB is not set +# CONFIG_DVB_FE_CUSTOMISE is not set +CONFIG_DVB_USB_DIBUSB_MB_FAULTY=y +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_EVM=y +CONFIG_EXPERT=y +# CONFIG_EZX_PCAP is not set +CONFIG_FANOTIFY=y +CONFIG_FAT_FS=m +CONFIG_FB_3DFX=y +CONFIG_FB_ATY128=y +CONFIG_FB_BACKLIGHT=y +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_DDC=y +CONFIG_FB_MACMODES=y +CONFIG_FB_RADEON=y +CONFIG_FB_SVGALIB=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_VOODOO1=y +CONFIG_FIRMWARE_EDID=y +CONFIG_FLATMEM_MANUAL=y +# CONFIG_FONTS is not set +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +# CONFIG_FSAM7400 is not set +CONFIG_FTGMAC100=m +CONFIG_FTMAC100=m +CONFIG_FTRACE=y +CONFIG_FUNCTION_TRACER=y +# CONFIG_GENERIC_IOMAP is not set +# CONFIG_GENERIC_IRQ_PROBE is not set +# CONFIG_GENERIC_PENDING_IRQ is not set +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GFS2_FS_LOCKING_DLM=y +# CONFIG_GPIO_SYSFS is not set +CONFIG_GPIO_TWL4030=m +CONFIG_HAMRADIO=y +# CONFIG_HARDIRQS_SW_RESEND is not set +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_HAVE_AOUT is not set +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_HIDRAW=y +CONFIG_HIGHMEM=y +CONFIG_HTC_I2CPLD=y +# CONFIG_HVC_CONSOLE is not set +CONFIG_HZ=250 +CONFIG_I2C_ALGOBIT=y +CONFIG_I2C_HELPER_AUTO=y +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_IBMEBUS is not set +# CONFIG_IDE is not set +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_SPIN_UNLOCK=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_IOMMU_HELPER=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_PRIVACY=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_PNP is not set +CONFIG_IRDA_CACHE_LAST_LSAP=y +CONFIG_IRDA_DEBUG=y +CONFIG_IRDA_FAST_RR=y +CONFIG_IRDA_ULTRA=y +# CONFIG_IRQ_ALL_CPUS is not set +CONFIG_IRQ_PER_CPU=y +# CONFIG_ISA is not set +CONFIG_ISDN=y +CONFIG_IWMC3200TOP_DEBUGFS=y +CONFIG_JFS_SECURITY=y +CONFIG_JFS_STATISTICS=y +CONFIG_KARMA_PARTITION=y +CONFIG_KEXEC=y +CONFIG_KPROBES=y +CONFIG_KSM=y +CONFIG_KVM=y +# CONFIG_KVM_BOOK3S_32 is not set +CONFIG_LDM_PARTITION=y +CONFIG_LEGACY_PTY_COUNT=0 +CONFIG_LIBERTAS_MESH=y +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_LIS3L02DQ=m +CONFIG_LLC=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGITECH_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_LOG_BUF_SHIFT=17 +# CONFIG_LPARCFG is not set +CONFIG_MAC80211_DEBUG_MENU=y +CONFIG_MAC80211_MESH=y +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAX_RAW_DEVS=256 +# CONFIG_MEMORY_HOTREMOVE is not set +CONFIG_MFD_88PM860X=y +CONFIG_MFD_AAT2870_CORE=y +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_STMPE=y +CONFIG_MFD_TC3589X=y +# CONFIG_MFD_TMIO is not set +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS65910=y +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TPS65912_SPI=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM831X_SPI=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8994=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_DEVICES=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MODVERSIONS=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CHAR=m +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_BCH=m +CONFIG_MTD_NAND_ECC=m +CONFIG_MTD_NAND_IDS=m +CONFIG_MTD_OF_PARTS=m +CONFIG_MTD_SM_COMMON=m +CONFIG_MUTEX_SPIN_ON_OWNER=y +# CONFIG_NET_CALXEDA_XGMAC is not set +CONFIG_NET_DMA=y +CONFIG_NL80211_TESTMODE=y +CONFIG_NLS_CODEPAGE_437=m +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NODES_SHIFT=8 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NVRAM=y +CONFIG_OSF_PARTITION=y +CONFIG_PANEL_DVI=m +CONFIG_PANEL_GENERIC_DPI=m +CONFIG_PARAVIRT_TIME_ACCOUNTING=n +CONFIG_PARPORT_1284=y +CONFIG_PATA_ARASAN_CF=m +CONFIG_PATA_SIS=m +CONFIG_PCCARD=m +CONFIG_PCI_SYSCALL=y +CONFIG_PDC_ADMA=m +CONFIG_PERF_COUNTERS=y +CONFIG_PHYSICAL_START=0x00000000 +CONFIG_PMIC_ADP5520=y +CONFIG_PMIC_DA903X=y +# CONFIG_PM_DEBUG is not set +CONFIG_PM_DEVFREQ=y +CONFIG_PM_RUNTIME=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPC_4K_PAGES=y +# CONFIG_PPC_64K_PAGES is not set +# CONFIG_PPC_SMLPAR is not set +# CONFIG_PPC_SPLPAR is not set +CONFIG_PPP_FILTER=y +CONFIG_PPP_MULTILINK=y +# CONFIG_PREEMPT is not set +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_RCU is not set +CONFIG_PREEMPT_VOLUNTARY=y +CONFIG_PRINTK_TIME=y +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PSERIES_ENERGY=m +CONFIG_PSTORE=y +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_R3964=m +CONFIG_R8712U=m +CONFIG_RAID_ATTRS=m +CONFIG_RAMOOPS=m +CONFIG_RAW_DRIVER=m +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_RELAY=y +CONFIG_RT2800USB_UNKNOWN=y +CONFIG_RT2X00=m +# CONFIG_RT2X00_LIB_DEBUGFS is not set +# CONFIG_RTAS_FLASH is not set +CONFIG_RTC_DRV_CMOS=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_RTL8187=m +CONFIG_RTL8192CU=m +CONFIG_RTS5139=m +# CONFIG_RTS_PSTOR is not set +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_MV=m +CONFIG_SATA_SVW=y +# CONFIG_SCANLOG is not set +CONFIG_SCHED_AUTOGROUP=y +CONFIG_SCHED_SMT=y +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_DH=m +# CONFIG_SCSI_IBMVSCSIS is not set +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_MULTI_LUN=y +CONFIG_SCSI_OSD_INITIATOR=m +CONFIG_SCSI_SCAN_ASYNC=y +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SECURITY_TOMOYO=y +CONFIG_SENSORS_LIS3LV02D=m +# CONFIG_SENSORS_SCH56XX_COMMON is not set +CONFIG_SERIAL_8250=m +CONFIG_SERIAL_8250_PCI=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_PMACZILOG=y +CONFIG_SERIO_SERPORT=m +CONFIG_SGI_PARTITION=y +# CONFIG_SM_FTL is not set +CONFIG_SND_BT87X_OVERCLOCK=y +CONFIG_SND_EMU10K1_SEQ=m +# CONFIG_SND_HIFIER is not set +CONFIG_SND_OPL3_LIB_SEQ=m +# CONFIG_SND_OPL4_LIB_SEQ is not set +# CONFIG_SND_PCM_OSS is not set +# CONFIG_SND_SBAWE_SEQ is not set +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSE_IRQ=y +CONFIG_SPI_DESIGNWARE=y +# CONFIG_SPI_PXA2XX_PCI is not set +CONFIG_SPI_SPIDEV=m +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_XZ=y +# CONFIG_SSB_PCMCIAHOST is not set +# CONFIG_STACK_TRACER is not set +CONFIG_STAGING_MEDIA=y +CONFIG_STANDALONE=y +CONFIG_STE10XP=m +CONFIG_SUN_PARTITION=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSCTL_SYSCALL_CHECK=y +CONFIG_SYSV68_PARTITION=y +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_TABLET_USB_WACOM is not set +CONFIG_TASKSTATS=y +# CONFIG_TCG_TIS is not set +CONFIG_TCG_TPM=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_MD5SIG=y +CONFIG_TOUCHSCREEN_CLEARPAD_TM1217=m +# CONFIG_TPS65010 is not set +# CONFIG_TRANZPORT is not set +CONFIG_TWL4030_CORE=y +CONFIG_TWL4030_USB=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB_ARCH_HAS_OHCI=y +CONFIG_USB_ARCH_HAS_XHCI=y +# CONFIG_USB_DYNAMIC_MINORS is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_ET61X251=m +CONFIG_USB_FUSB300=m +CONFIG_USB_GADGET=m +# CONFIG_USB_GADGET_DUMMY_HCD is not set +CONFIG_USB_GADGET_DWC3=m +CONFIG_USB_GPIO_VBUS=m +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_INVENTRA_DMA is not set +# CONFIG_USB_IP_COMMON is not set +CONFIG_USB_ISP1362_HCD=m +CONFIG_USB_KC2190=y +CONFIG_USB_M66592=m +CONFIG_USB_MON=y +# CONFIG_USB_MUSB_OMAP2PLUS is not set +CONFIG_USB_MUSB_TUSB6010=y +CONFIG_USB_NET2272=m +CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y +CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y +# CONFIG_USB_OHCI_HCD_PPC_OF_LE is not set +# CONFIG_USB_OTG is not set +CONFIG_USB_R8A66597=m +CONFIG_USB_R8A66597_HCD=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +# CONFIG_USB_SI470X is not set +CONFIG_USB_SN9C102=m +CONFIG_VERSION_SIGNATURE="" +CONFIG_VFAT_FS=m +CONFIG_VGASTATE=m +CONFIG_VGA_ARB_MAX_GPUS=16 +CONFIG_VIDEO_ADV7343=m +# CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set +CONFIG_VIDEO_SAA7191=m +CONFIG_VIDEO_TCM825X=m +CONFIG_VIDEO_TDA9875=m +CONFIG_VIDEO_THS7303=m +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_TVP514X=m +CONFIG_VIRTIO=m +CONFIG_VIRTIO_BALLOON=m +CONFIG_VIRTIO_BLK=m +CONFIG_VIRTIO_MMIO=m +CONFIG_VIRTIO_NET=m +CONFIG_VIRTIO_PCI=m +CONFIG_VIRTIO_RING=m +CONFIG_VIRT_DRIVERS=y +CONFIG_VLAN_8021Q_GVRP=y +# CONFIG_VME_BUS is not set +# CONFIG_VT6656 is not set +CONFIG_VT_HW_CONSOLE_BINDING=y +# CONFIG_W35UND is not set +CONFIG_WAN=y +CONFIG_WATCHDOG=y +CONFIG_WIMAX_I2400M_SDIO=m +CONFIG_WIMAX_I2400M_USB=m +CONFIG_WM8350_WATCHDOG=m +CONFIG_X25_ASY=m +CONFIG_XFS_RT=y +CONFIG_ZONE_DMA_FLAG=1 --- linux-3.2.0.orig/debian.master/config/ppc64/config.flavour.powerpc64-smp +++ linux-3.2.0/debian.master/config/ppc64/config.flavour.powerpc64-smp @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.powerpc64-smp automatically generated by splitconfig.pl +# --- linux-3.2.0.orig/debian.master/config/ppc64/config.common.ppc64 +++ linux-3.2.0/debian.master/config/ppc64/config.common.ppc64 @@ -0,0 +1,421 @@ +# +# Config options for config.common.ppc64 automatically generated by splitconfig.pl +# +CONFIG_64BIT=y +CONFIG_ABX500_CORE=y +CONFIG_ACORN_PARTITION=y +CONFIG_AIC79XX_RESET_DELAY_MS=15000 +CONFIG_AMIGA_PARTITION=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_NO_VIRT_TO_BUS=y +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SUPPORTS_MSI=y +# CONFIG_ASYNC_TX_DMA is not set +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=m +CONFIG_ATA_NONSTANDARD=y +CONFIG_ATA_PIIX=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_AUDIT_ARCH=y +CONFIG_AUXDISPLAY=y +# CONFIG_AX25_DAMA_SLAVE is not set +CONFIG_BCH=m +CONFIG_BINARY_PRINTF=y +CONFIG_BLK_DEV_CMD64X=m +CONFIG_BLK_DEV_SR_VENDOR=y +# CONFIG_BLK_DEV_XIP is not set +CONFIG_BSD_DISKLABEL=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BTRFS_FS_POSIX_ACL=y +CONFIG_CAN_C_CAN_PLATFORM=m +# CONFIG_CFG80211_REG_DEBUG is not set +CONFIG_CGROUPS=y +CONFIG_CGROUP_MEM_RES_CTLR_SWAP=y +# CONFIG_CIFS_EXPERIMENTAL is not set +# CONFIG_CIFS_XATTR is not set +CONFIG_CLEANCACHE=y +# CONFIG_COMEDI is not set +CONFIG_COMPACTION=y +CONFIG_CORDIC=m +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_CPU_FREQ_STAT=m +CONFIG_CRASH_DUMP=y +# CONFIG_DAB is not set +# CONFIG_DEBUG_INFO is not set +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_PINCTRL=y +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DEVPTS_MULTIPLE_INSTANCES=y +# CONFIG_DM9000 is not set +# CONFIG_DM_RAID45 is not set +# CONFIG_DRM_PSB is not set +# CONFIG_DVB_FE_CUSTOMISE is not set +CONFIG_DVB_USB_DIBUSB_MB_FAULTY=y +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_EVM=y +CONFIG_EXPERT=y +# CONFIG_EZX_PCAP is not set +CONFIG_FANOTIFY=y +CONFIG_FAT_FS=m +CONFIG_FB_3DFX=y +CONFIG_FB_ATY128=y +CONFIG_FB_BACKLIGHT=y +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_DDC=y +CONFIG_FB_MACMODES=y +CONFIG_FB_RADEON=y +CONFIG_FB_SVGALIB=m +CONFIG_FB_SYS_COPYAREA=y +CONFIG_FB_SYS_FILLRECT=y +CONFIG_FB_SYS_FOPS=y +CONFIG_FB_SYS_IMAGEBLIT=y +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_VOODOO1=y +CONFIG_FIRMWARE_EDID=y +# CONFIG_FONTS is not set +CONFIG_FORCE_MAX_ZONEORDER=9 +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +# CONFIG_FSAM7400 is not set +CONFIG_FTGMAC100=m +CONFIG_FTMAC100=m +CONFIG_FTRACE=y +CONFIG_FUNCTION_TRACER=y +# CONFIG_GENERIC_IOMAP is not set +# CONFIG_GENERIC_IRQ_PROBE is not set +# CONFIG_GENERIC_PENDING_IRQ is not set +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GFS2_FS_LOCKING_DLM=y +# CONFIG_GPIO_SYSFS is not set +CONFIG_GPIO_TWL4030=m +CONFIG_HAMRADIO=y +# CONFIG_HARDIRQS_SW_RESEND is not set +# CONFIG_HARDLOCKUP_DETECTOR is not set +# CONFIG_HAVE_AOUT is not set +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HIDRAW=y +CONFIG_HTC_I2CPLD=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HVC_CONSOLE=y +CONFIG_HZ=250 +CONFIG_I2C_ALGOBIT=y +CONFIG_I2C_HELPER_AUTO=y +# CONFIG_I2C_PXA_PCI is not set +CONFIG_IBMEBUS=y +CONFIG_IDE=y +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_SPIN_UNLOCK=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_IOMMU_HELPER=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_PRIVACY=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_PNP is not set +CONFIG_IRDA_CACHE_LAST_LSAP=y +CONFIG_IRDA_DEBUG=y +CONFIG_IRDA_FAST_RR=y +CONFIG_IRDA_ULTRA=y +CONFIG_IRQ_ALL_CPUS=y +CONFIG_IRQ_PER_CPU=y +CONFIG_ISDN=y +CONFIG_IWMC3200TOP_DEBUGFS=y +CONFIG_JFS_SECURITY=y +CONFIG_JFS_STATISTICS=y +CONFIG_KARMA_PARTITION=y +CONFIG_KERNEL_START=0xc000000000000000 +CONFIG_KEXEC=y +CONFIG_KGDB=y +CONFIG_KPROBES=y +CONFIG_KSM=y +CONFIG_KVM=y +CONFIG_KVM_BOOK3S_32=m +CONFIG_LATENCYTOP=y +CONFIG_LDM_PARTITION=y +CONFIG_LEGACY_PTY_COUNT=0 +CONFIG_LIBERTAS_MESH=y +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_LIS3L02DQ=m +CONFIG_LLC=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGITECH_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_LOG_BUF_SHIFT=19 +CONFIG_LPARCFG=y +CONFIG_MAC80211_DEBUG_MENU=y +CONFIG_MAC80211_MESH=y +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAX_ACTIVE_REGIONS=256 +CONFIG_MAX_RAW_DEVS=8192 +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_MFD_88PM860X=y +CONFIG_MFD_AAT2870_CORE=y +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_STMPE=y +CONFIG_MFD_TC3589X=y +# CONFIG_MFD_TMIO is not set +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS65910=y +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TPS65912_SPI=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM831X_SPI=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8994=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_DEVICES=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMIO_NVRAM=y +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MODVERSIONS=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MPIC_U3_HT_IRQS=y +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CHAR=m +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_BCH=m +CONFIG_MTD_NAND_ECC=m +CONFIG_MTD_NAND_IDS=m +CONFIG_MTD_OF_PARTS=m +CONFIG_MTD_SM_COMMON=m +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +# CONFIG_NET_CALXEDA_XGMAC is not set +CONFIG_NET_DMA=y +CONFIG_NL80211_TESTMODE=y +CONFIG_NLS_CODEPAGE_437=m +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NODES_SHIFT=8 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NR_CPUS=1024 +CONFIG_OSF_PARTITION=y +CONFIG_PAGE_OFFSET=0xc000000000000000 +CONFIG_PANEL_DVI=m +CONFIG_PARAVIRT_TIME_ACCOUNTING=n +CONFIG_PARPORT_1284=y +CONFIG_PATA_ARASAN_CF=m +CONFIG_PATA_SIS=m +CONFIG_PCCARD=m +CONFIG_PCI_SYSCALL=y +CONFIG_PDC_ADMA=m +CONFIG_PERF_COUNTERS=y +CONFIG_PHYSICAL_START=0x00000000 +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_PMIC_ADP5520=y +CONFIG_PMIC_DA903X=y +# CONFIG_PM_DEBUG is not set +CONFIG_PM_DEVFREQ=y +CONFIG_PM_RUNTIME=y +CONFIG_POWER_SUPPLY=m +CONFIG_PPC64=y +# CONFIG_PPC_4K_PAGES is not set +CONFIG_PPC_64K_PAGES=y +CONFIG_PPC_970_NAP=y +CONFIG_PPC_CELL=y +CONFIG_PPC_ICP_HV=y +CONFIG_PPC_ICP_NATIVE=y +CONFIG_PPC_ICS_RTAS=y +# CONFIG_PPC_INDIRECT_PCI is not set +CONFIG_PPC_MM_SLICES=y +# CONFIG_PPC_MPC106 is not set +CONFIG_PPC_P7_NAP=y +CONFIG_PPC_SMLPAR=y +CONFIG_PPC_SPLPAR=y +CONFIG_PPC_XICS=y +CONFIG_PPP_FILTER=y +CONFIG_PPP_MULTILINK=y +# CONFIG_PREEMPT is not set +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_RCU is not set +CONFIG_PREEMPT_VOLUNTARY=y +CONFIG_PRINTK_TIME=y +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PSERIES_ENERGY=y +CONFIG_PSTORE=y +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_R3964=m +CONFIG_R8712U=m +CONFIG_RAID_ATTRS=m +CONFIG_RAMOOPS=m +CONFIG_RAW_DRIVER=m +CONFIG_RCU_FANOUT=64 +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_RELAY=y +CONFIG_RT2800USB_UNKNOWN=y +CONFIG_RT2X00=m +# CONFIG_RT2X00_LIB_DEBUGFS is not set +CONFIG_RTAS_FLASH=y +CONFIG_RTC_DRV_CMOS=m +CONFIG_RTC_DRV_TWL4030=m +CONFIG_RTL8187=m +CONFIG_RTL8192CU=m +CONFIG_RTS5139=m +# CONFIG_RTS_PSTOR is not set +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_MV=m +CONFIG_SATA_SVW=y +CONFIG_SCANLOG=y +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_AUTOGROUP=y +CONFIG_SCHED_SMT=y +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_DH=m +CONFIG_SCSI_IBMVSCSIS=m +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_MULTI_LUN=y +CONFIG_SCSI_OSD_INITIATOR=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_SCAN_ASYNC=y +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SECURITY_TOMOYO=y +CONFIG_SENSORS_LIS3LV02D=m +# CONFIG_SENSORS_SCH56XX_COMMON is not set +CONFIG_SERIAL_8250=m +CONFIG_SERIAL_8250_PCI=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIAL_PMACZILOG=y +CONFIG_SERIO_SERPORT=m +CONFIG_SGI_PARTITION=y +# CONFIG_SM_FTL is not set +CONFIG_SND_BT87X_OVERCLOCK=y +CONFIG_SND_EMU10K1_SEQ=m +# CONFIG_SND_HIFIER is not set +CONFIG_SND_OPL3_LIB_SEQ=m +# CONFIG_SND_OPL4_LIB_SEQ is not set +# CONFIG_SND_PCM_OSS is not set +# CONFIG_SND_SBAWE_SEQ is not set +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSE_IRQ=y +CONFIG_SPI_DESIGNWARE=y +# CONFIG_SPI_PXA2XX_PCI is not set +CONFIG_SPI_SPIDEV=m +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_XZ=y +CONFIG_SSB_PCMCIAHOST=y +# CONFIG_STACK_TRACER is not set +CONFIG_STAGING_MEDIA=y +CONFIG_STANDALONE=y +CONFIG_STE10XP=m +CONFIG_SUN_PARTITION=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSCTL_SYSCALL_CHECK=y +CONFIG_SYSV68_PARTITION=y +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_TABLET_USB_WACOM is not set +CONFIG_TASKSTATS=y +# CONFIG_TCG_TIS is not set +CONFIG_TCG_TPM=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_MD5SIG=y +CONFIG_TOUCHSCREEN_CLEARPAD_TM1217=m +# CONFIG_TPS65010 is not set +# CONFIG_TRANZPORT is not set +CONFIG_TWL4030_CORE=y +CONFIG_TWL4030_USB=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB_ARCH_HAS_OHCI=y +CONFIG_USB_ARCH_HAS_XHCI=y +# CONFIG_USB_DYNAMIC_MINORS is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_ET61X251=m +CONFIG_USB_GADGET=m +# CONFIG_USB_GADGET_DUMMY_HCD is not set +CONFIG_USB_GADGET_DWC3=m +CONFIG_USB_GADGET_NET2280=y +CONFIG_USB_GPIO_VBUS=m +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_INVENTRA_DMA is not set +# CONFIG_USB_IP_COMMON is not set +CONFIG_USB_ISP1362_HCD=m +CONFIG_USB_KC2190=y +CONFIG_USB_M66592=m +CONFIG_USB_MON=y +# CONFIG_USB_MUSB_OMAP2PLUS is not set +CONFIG_USB_MUSB_TUSB6010=y +CONFIG_USB_NET2272=m +CONFIG_USB_OHCI_BIG_ENDIAN_DESC=y +CONFIG_USB_OHCI_BIG_ENDIAN_MMIO=y +CONFIG_USB_OHCI_HCD_PPC_OF_LE=y +# CONFIG_USB_OTG is not set +CONFIG_USB_R8A66597=m +CONFIG_USB_R8A66597_HCD=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +# CONFIG_USB_SI470X is not set +CONFIG_USB_SN9C102=m +CONFIG_VERSION_SIGNATURE="" +CONFIG_VFAT_FS=m +CONFIG_VGASTATE=m +CONFIG_VGA_ARB_MAX_GPUS=64 +CONFIG_VIDEO_ADV7343=m +# CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set +CONFIG_VIDEO_SAA7191=m +CONFIG_VIDEO_TCM825X=m +CONFIG_VIDEO_TDA9875=m +CONFIG_VIDEO_THS7303=m +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_TVP514X=m +CONFIG_VIRTIO=m +CONFIG_VIRTIO_BALLOON=m +CONFIG_VIRTIO_BLK=m +CONFIG_VIRTIO_MMIO=m +CONFIG_VIRTIO_NET=m +CONFIG_VIRTIO_PCI=m +CONFIG_VIRTIO_RING=m +CONFIG_VIRT_DRIVERS=y +CONFIG_VLAN_8021Q_GVRP=y +# CONFIG_VME_BUS is not set +# CONFIG_VT6656 is not set +CONFIG_VT_HW_CONSOLE_BINDING=y +# CONFIG_W35UND is not set +CONFIG_WAN=y +CONFIG_WATCHDOG=y +CONFIG_WIMAX_I2400M_SDIO=m +CONFIG_WIMAX_I2400M_USB=m +CONFIG_WM8350_WATCHDOG=m +CONFIG_WORD_SIZE=64 +CONFIG_X25_ASY=m +CONFIG_XFS_RT=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_ZONE_DMA_FLAG=1 --- linux-3.2.0.orig/debian.master/config/armhf/config.common.armhf +++ linux-3.2.0/debian.master/config/armhf/config.common.armhf @@ -0,0 +1,151 @@ +# +# Config options for config.common.armhf automatically generated by splitconfig.pl +# +# CONFIG_APM_EMULATION is not set +# CONFIG_ARCH_SELECT_MEMORY_MODEL is not set +# CONFIG_ARCH_SPARSEMEM_DEFAULT is not set +# CONFIG_ARCH_SUPPORTS_MSI is not set +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATM_BR2684_IPFILTER=y +CONFIG_AX25_DAMA_SLAVE=y +# CONFIG_BLK_DEV_SR_VENDOR is not set +# CONFIG_CGROUP_MEM_RES_CTLR_SWAP is not set +CONFIG_CIFS_XATTR=y +# CONFIG_COMPACTION is not set +CONFIG_CPU_FREQ_STAT=y +CONFIG_DEBUG_INFO=y +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 +CONFIG_DM9000=m +# CONFIG_DM_RAID45 is not set +CONFIG_DVB_FE_CUSTOMISE=y +# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set +CONFIG_FAT_FS=y +# CONFIG_FB_BACKLIGHT is not set +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +# CONFIG_FB_DDC is not set +# CONFIG_FB_MACMODES is not set +# CONFIG_FB_SVGALIB is not set +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +# CONFIG_FB_TILEBLITTING is not set +# CONFIG_FIRMWARE_EDID is not set +CONFIG_FLATMEM_MANUAL=y +CONFIG_FORCE_MAX_ZONEORDER=11 +# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set +# CONFIG_FTGMAC100 is not set +# CONFIG_FTMAC100 is not set +# CONFIG_FUNCTION_TRACER is not set +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GPIO_TWL4030=y +CONFIG_HARDIRQS_SW_RESEND=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +CONFIG_HAVE_AOUT=y +CONFIG_HAVE_GENERIC_DMA_COHERENT=y +# CONFIG_HUGETLB_PAGE is not set +CONFIG_I2C_ALGOBIT=m +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_IWMC3200TOP_DEBUGFS is not set +CONFIG_KGDB=y +# CONFIG_KSM is not set +CONFIG_KTIME_SCALAR=y +CONFIG_LATENCYTOP=y +# CONFIG_LIBERTAS_MESH is not set +CONFIG_LLC=m +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_MAX_RAW_DEVS=256 +CONFIG_MMC_BLOCK=y +CONFIG_MMC_SDHCI=y +# CONFIG_MTD_SM_COMMON is not set +CONFIG_NEED_DMA_MAP_STATE=y +# CONFIG_NL80211_TESTMODE is not set +CONFIG_NOP_USB_XCEIV=y +CONFIG_NR_CPUS=4 +CONFIG_NVRAM=m +CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_PANEL_DVI=y +CONFIG_PANEL_GENERIC_DPI=y +# CONFIG_PCCARD is not set +# CONFIG_PCI_SYSCALL is not set +# CONFIG_PHYS_ADDR_T_64BIT is not set +# CONFIG_PM_DEBUG is not set +CONFIG_POWER_SUPPLY=y +# CONFIG_PREEMPT_NONE is not set +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_R3964 is not set +CONFIG_RCU_FANOUT=32 +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=y +# CONFIG_RT2800USB_UNKNOWN is not set +CONFIG_RT2X00_LIB_DEBUGFS=y +CONFIG_RTC_DRV_CMOS=m +CONFIG_RWSEM_GENERIC_SPINLOCK=y +CONFIG_SCHEDSTATS=y +# CONFIG_SCHED_SMT is not set +# CONFIG_SCSI_OSD_INITIATOR is not set +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SM_FTL=m +# CONFIG_SND_EMU10K1_SEQ is not set +# CONFIG_SND_OPL3_LIB_SEQ is not set +# CONFIG_SND_OPL4_LIB_SEQ is not set +CONFIG_SND_PCM_OSS=m +# CONFIG_SND_SBAWE_SEQ is not set +# CONFIG_SPARSE_IRQ is not set +CONFIG_SPI_DESIGNWARE=m +# CONFIG_SPI_PXA2XX_PCI is not set +# CONFIG_STACK_TRACER is not set +CONFIG_STANDALONE=y +CONFIG_STE10XP=y +# CONFIG_SYS_HYPERVISOR is not set +CONFIG_TABLET_USB_WACOM=m +# CONFIG_TCG_TPM is not set +CONFIG_TPS65010=m +CONFIG_TRANZPORT=m +CONFIG_TWL4030_CORE=y +CONFIG_TWL4030_USB=y +# CONFIG_USB_ARCH_HAS_XHCI is not set +# CONFIG_USB_EHCI_TT_NEWSCHED is not set +# CONFIG_USB_ET61X251 is not set +CONFIG_USB_GADGET=y +# CONFIG_USB_GADGET_DWC3 is not set +CONFIG_USB_GADGET_MUSB_HDRC=y +CONFIG_USB_G_MULTI=m +CONFIG_USB_INVENTRA_DMA=y +# CONFIG_USB_M66592 is not set +CONFIG_USB_MON=m +CONFIG_USB_MUSB_OMAP2PLUS=y +# CONFIG_USB_MUSB_TUSB6010 is not set +# CONFIG_USB_NET2272 is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set +CONFIG_USB_OTG=y +# CONFIG_USB_R8A66597 is not set +CONFIG_USB_SI470X=m +# CONFIG_USB_SN9C102 is not set +CONFIG_VFAT_FS=y +# CONFIG_VGASTATE is not set +CONFIG_VIDEO_ADV7343=m +# CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set +CONFIG_VIDEO_SAA7191=m +CONFIG_VIDEO_TCM825X=m +CONFIG_VIDEO_THS7303=m +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_TVP514X=m +# CONFIG_VIRTIO is not set +# CONFIG_VIRTIO_BALLOON is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_VIRTIO_MMIO is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_VIRTIO_PCI is not set +# CONFIG_VIRTIO_RING is not set +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_W35UND=m +# CONFIG_WM8350_WATCHDOG is not set +# CONFIG_X25_ASY is not set +CONFIG_ZLIB_DEFLATE=m +CONFIG_ZONE_DMA_FLAG=0 --- linux-3.2.0.orig/debian.master/config/armhf/config.flavour.omap +++ linux-3.2.0/debian.master/config/armhf/config.flavour.omap @@ -0,0 +1,232 @@ +# +# Config options for config.flavour.omap automatically generated by splitconfig.pl +# +CONFIG_ABX500_CORE=y +CONFIG_ACORN_PARTITION=y +CONFIG_AMBA_PL08X=y +CONFIG_AMIGA_PARTITION=y +# CONFIG_ARCH_HIGHBANK is not set +CONFIG_ARCH_OMAP=y +CONFIG_ARM_ERRATA_430973=y +CONFIG_ARM_ERRATA_743622=y +CONFIG_ARM_L1_CACHE_SHIFT=6 +CONFIG_ASYNC_TX_DMA=y +CONFIG_ATARI_PARTITION=y +CONFIG_AUXDISPLAY=y +CONFIG_AX88796=m +CONFIG_BCH=y +CONFIG_BINARY_PRINTF=y +# CONFIG_BLK_DEV_XIP is not set +CONFIG_BSD_DISKLABEL=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BTRFS_FS_POSIX_ACL=y +CONFIG_CAN_C_CAN_PLATFORM=m +CONFIG_CFG80211_REG_DEBUG=y +CONFIG_CGROUPS=y +CONFIG_CLEANCACHE=y +CONFIG_CORDIC=m +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_CPU_IDLE=y +CONFIG_CRASH_DUMP=y +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_USER=y +CONFIG_DEVPTS_MULTIPLE_INSTANCES=y +CONFIG_DW_DMAC=m +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_EVM=y +CONFIG_EXPERT=y +CONFIG_EZX_PCAP=y +CONFIG_FANOTIFY=y +CONFIG_FB_ARMCLCD=m +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FONTS=y +CONFIG_FPE_NWFPE=y +CONFIG_FTRACE=y +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_GPIO_SYSFS=y +CONFIG_HAMRADIO=y +CONFIG_HIDRAW=y +# CONFIG_HIGHMEM is not set +CONFIG_HTC_EGPIO=y +CONFIG_HTC_I2CPLD=y +CONFIG_HVC_DCC=y +CONFIG_HZ=128 +CONFIG_I2C_DESIGNWARE_PLATFORM=m +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_SPIN_UNLOCK=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_PRIVACY=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_PNP is not set +CONFIG_IRDA_CACHE_LAST_LSAP=y +CONFIG_IRDA_DEBUG=y +CONFIG_IRDA_FAST_RR=y +CONFIG_IRDA_ULTRA=y +CONFIG_ISDN=y +CONFIG_JFS_SECURITY=y +CONFIG_JFS_STATISTICS=y +CONFIG_KARMA_PARTITION=y +CONFIG_KEXEC=y +CONFIG_KPROBES=y +CONFIG_LDM_PARTITION=y +CONFIG_LEGACY_PTY_COUNT=0 +CONFIG_LIS3L02DQ=m +CONFIG_LOGIG940_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGITECH_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_MAC80211_DEBUG_MENU=y +CONFIG_MAC80211_MESH=y +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ=y +CONFIG_MFD_88PM860X=y +CONFIG_MFD_AAT2870_CORE=y +CONFIG_MFD_ASIC3=y +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_STMPE=y +CONFIG_MFD_T7L66XB=y +CONFIG_MFD_TC3589X=y +CONFIG_MFD_TC6387XB=y +CONFIG_MFD_TC6393XB=y +CONFIG_MFD_TMIO=y +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS65910=y +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TPS65912_SPI=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM831X_SPI=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8994=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_DEVICES=y +CONFIG_MMC_ARMMMCI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_SDHCI_PXAV2=m +CONFIG_MMC_SDHCI_PXAV3=m +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MODVERSIONS=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MTD=y +CONFIG_MTD_BLKDEVS=y +CONFIG_MTD_BLOCK=y +CONFIG_MTD_CHAR=y +CONFIG_MTD_NAND=y +CONFIG_MTD_NAND_BCH=y +CONFIG_MTD_NAND_ECC=y +CONFIG_MTD_NAND_IDS=y +CONFIG_MTD_OF_PARTS=y +# CONFIG_MUTEX_SPIN_ON_OWNER is not set +# CONFIG_NET_CALXEDA_XGMAC is not set +CONFIG_NET_DMA=y +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_OC_ETM=y +CONFIG_OSF_PARTITION=y +CONFIG_PARPORT_1284=y +CONFIG_PATA_ARASAN_CF=m +CONFIG_PERF_COUNTERS=y +CONFIG_PL330_DMA=m +CONFIG_PMIC_ADP5520=y +CONFIG_PMIC_DA903X=y +CONFIG_PM_DEVFREQ=y +CONFIG_PM_RUNTIME=y +CONFIG_PPP_FILTER=y +CONFIG_PPP_MULTILINK=y +# CONFIG_PREEMPT is not set +# CONFIG_PREEMPT_RCU is not set +CONFIG_PREEMPT_VOLUNTARY=y +CONFIG_PRINTK_TIME=y +CONFIG_PSTORE=y +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_R8712U=m +CONFIG_RAID_ATTRS=m +CONFIG_RAMOOPS=m +CONFIG_RAW_DRIVER=m +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_RELAY=y +CONFIG_RFKILL_GPIO=m +CONFIG_RT2X00=m +CONFIG_RTC_DRV_TWL4030=y +CONFIG_RTL8187=m +CONFIG_RTL8192CU=m +CONFIG_RTS5139=m +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_MV=m +CONFIG_SCHED_AUTOGROUP=y +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_DH=y +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_MULTI_LUN=y +CONFIG_SCSI_SCAN_ASYNC=y +# CONFIG_SCSI_SPI_ATTRS is not set +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SECURITY_TOMOYO=y +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_AMBA_PL010=m +CONFIG_SERIAL_AMBA_PL011=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIO_AMBAKMI=m +CONFIG_SERIO_SERPORT=m +CONFIG_SGI_PARTITION=y +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SPI_PL022=m +# CONFIG_SPI_SPIDEV is not set +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_XZ=y +CONFIG_STAGING_MEDIA=y +CONFIG_SUN_PARTITION=y +# CONFIG_SWP_EMULATE is not set +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSCTL_SYSCALL_CHECK=y +CONFIG_SYSV68_PARTITION=y +CONFIG_TASKSTATS=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_MD5SIG=y +CONFIG_TOUCHSCREEN_CLEARPAD_TM1217=m +CONFIG_TWL4030_POWER=y +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB_ARCH_HAS_OHCI=y +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_FUSB300 is not set +CONFIG_USB_GPIO_VBUS=y +# CONFIG_USB_ISP1362_HCD is not set +CONFIG_USB_KC2190=y +CONFIG_USB_MUSB_HDRC=y +CONFIG_USB_R8A66597_HCD=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_VERSION_SIGNATURE="" +CONFIG_VIRT_DRIVERS=y +CONFIG_VLAN_8021Q_GVRP=y +# CONFIG_VT6656 is not set +CONFIG_WAN=y +CONFIG_WATCHDOG=y +# CONFIG_WIMAX_I2400M_SDIO is not set +# CONFIG_WIMAX_I2400M_USB is not set +CONFIG_XFS_RT=y --- linux-3.2.0.orig/debian.master/config/armhf/config.flavour.highbank +++ linux-3.2.0/debian.master/config/armhf/config.flavour.highbank @@ -0,0 +1,232 @@ +# +# Config options for config.flavour.highbank automatically generated by splitconfig.pl +# +# CONFIG_ABX500_CORE is not set +# CONFIG_ACORN_PARTITION is not set +# CONFIG_AMBA_PL08X is not set +# CONFIG_AMIGA_PARTITION is not set +CONFIG_ARCH_HIGHBANK=y +# CONFIG_ARCH_OMAP is not set +# CONFIG_ARM_ERRATA_430973 is not set +# CONFIG_ARM_ERRATA_743622 is not set +CONFIG_ARM_L1_CACHE_SHIFT=5 +# CONFIG_ASYNC_TX_DMA is not set +# CONFIG_ATARI_PARTITION is not set +# CONFIG_AUXDISPLAY is not set +# CONFIG_AX88796 is not set +CONFIG_BCH=m +# CONFIG_BINARY_PRINTF is not set +CONFIG_BLK_DEV_XIP=y +# CONFIG_BSD_DISKLABEL is not set +# CONFIG_BSD_PROCESS_ACCT is not set +# CONFIG_BTRFS_FS_POSIX_ACL is not set +# CONFIG_CAN_C_CAN_PLATFORM is not set +# CONFIG_CFG80211_REG_DEBUG is not set +# CONFIG_CGROUPS is not set +# CONFIG_CLEANCACHE is not set +# CONFIG_CORDIC is not set +CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y +# CONFIG_CPU_IDLE is not set +# CONFIG_CRASH_DUMP is not set +# CONFIG_DEBUG_KERNEL is not set +# CONFIG_DEBUG_USER is not set +# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set +# CONFIG_DW_DMAC is not set +CONFIG_ENABLE_MUST_CHECK=y +CONFIG_ENABLE_WARN_DEPRECATED=y +# CONFIG_EVM is not set +# CONFIG_EXPERT is not set +# CONFIG_EZX_PCAP is not set +# CONFIG_FANOTIFY is not set +# CONFIG_FB_ARMCLCD is not set +CONFIG_FB_CFB_COPYAREA=m +CONFIG_FB_CFB_FILLRECT=m +CONFIG_FB_CFB_IMAGEBLIT=m +# CONFIG_FONTS is not set +# CONFIG_FPE_NWFPE is not set +# CONFIG_FTRACE is not set +# CONFIG_GFS2_FS_LOCKING_DLM is not set +# CONFIG_GPIO_SYSFS is not set +# CONFIG_HAMRADIO is not set +# CONFIG_HIDRAW is not set +CONFIG_HIGHMEM=y +# CONFIG_HTC_EGPIO is not set +# CONFIG_HTC_I2CPLD is not set +# CONFIG_HVC_DCC is not set +CONFIG_HZ=100 +CONFIG_I2C_DESIGNWARE_PLATFORM=y +# CONFIG_INLINE_READ_UNLOCK is not set +# CONFIG_INLINE_READ_UNLOCK_IRQ is not set +# CONFIG_INLINE_SPIN_UNLOCK is not set +# CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set +# CONFIG_INLINE_WRITE_UNLOCK is not set +# CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_IPV6_PRIVACY is not set +# CONFIG_IPV6_ROUTER_PREF is not set +# CONFIG_IPV6_SIT_6RD is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +# CONFIG_IP_MULTICAST is not set +CONFIG_IP_PNP=y +# CONFIG_IRDA_CACHE_LAST_LSAP is not set +# CONFIG_IRDA_DEBUG is not set +# CONFIG_IRDA_FAST_RR is not set +# CONFIG_IRDA_ULTRA is not set +# CONFIG_ISDN is not set +# CONFIG_JFS_SECURITY is not set +# CONFIG_JFS_STATISTICS is not set +# CONFIG_KARMA_PARTITION is not set +# CONFIG_KEXEC is not set +# CONFIG_KPROBES is not set +# CONFIG_LDM_PARTITION is not set +CONFIG_LEGACY_PTY_COUNT=256 +# CONFIG_LIS3L02DQ is not set +# CONFIG_LOGIG940_FF is not set +# CONFIG_LOGIRUMBLEPAD2_FF is not set +# CONFIG_LOGITECH_FF is not set +# CONFIG_LOGIWHEELS_FF is not set +# CONFIG_MAC80211_DEBUG_MENU is not set +# CONFIG_MAC80211_MESH is not set +# CONFIG_MAC_PARTITION is not set +# CONFIG_MAGIC_SYSRQ is not set +# CONFIG_MFD_88PM860X is not set +# CONFIG_MFD_AAT2870_CORE is not set +# CONFIG_MFD_ASIC3 is not set +# CONFIG_MFD_MAX8925 is not set +# CONFIG_MFD_MAX8997 is not set +# CONFIG_MFD_MAX8998 is not set +# CONFIG_MFD_STMPE is not set +# CONFIG_MFD_T7L66XB is not set +# CONFIG_MFD_TC3589X is not set +# CONFIG_MFD_TC6387XB is not set +# CONFIG_MFD_TC6393XB is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_TPS6586X is not set +# CONFIG_MFD_TPS65910 is not set +# CONFIG_MFD_TPS65912_I2C is not set +# CONFIG_MFD_TPS65912_SPI is not set +# CONFIG_MFD_WM831X_I2C is not set +# CONFIG_MFD_WM831X_SPI is not set +# CONFIG_MFD_WM8350_I2C is not set +# CONFIG_MFD_WM8994 is not set +# CONFIG_MINIX_SUBPARTITION is not set +# CONFIG_MISC_DEVICES is not set +# CONFIG_MMC_ARMMMCI is not set +CONFIG_MMC_SDHCI_PLTFM=y +# CONFIG_MMC_SDHCI_PXAV2 is not set +# CONFIG_MMC_SDHCI_PXAV3 is not set +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODVERSIONS is not set +CONFIG_MOUSE_PS2_TOUCHKIT=y +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CHAR=m +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_BCH=m +CONFIG_MTD_NAND_ECC=m +CONFIG_MTD_NAND_IDS=m +CONFIG_MTD_OF_PARTS=m +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_NET_CALXEDA_XGMAC=y +# CONFIG_NET_DMA is not set +CONFIG_NLS_CODEPAGE_437=m +CONFIG_NLS_DEFAULT="iso8859-1" +# CONFIG_OC_ETM is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_PARPORT_1284 is not set +# CONFIG_PATA_ARASAN_CF is not set +# CONFIG_PERF_COUNTERS is not set +CONFIG_PL330_DMA=y +# CONFIG_PMIC_ADP5520 is not set +# CONFIG_PMIC_DA903X is not set +# CONFIG_PM_DEVFREQ is not set +# CONFIG_PM_RUNTIME is not set +# CONFIG_PPP_FILTER is not set +# CONFIG_PPP_MULTILINK is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_RCU=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PRINTK_TIME is not set +# CONFIG_PSTORE is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +# CONFIG_QUOTA_NETLINK_INTERFACE is not set +# CONFIG_R8712U is not set +# CONFIG_RAID_ATTRS is not set +# CONFIG_RAMOOPS is not set +# CONFIG_RAW_DRIVER is not set +CONFIG_REGMAP_I2C=m +CONFIG_REGMAP_SPI=m +# CONFIG_REISERFS_FS_POSIX_ACL is not set +# CONFIG_REISERFS_FS_SECURITY is not set +# CONFIG_RELAY is not set +# CONFIG_RFKILL_GPIO is not set +# CONFIG_RT2X00 is not set +CONFIG_RTC_DRV_TWL4030=m +# CONFIG_RTL8187 is not set +# CONFIG_RTL8192CU is not set +# CONFIG_RTS5139 is not set +CONFIG_SATA_AHCI_PLATFORM=y +# CONFIG_SATA_MV is not set +# CONFIG_SCHED_AUTOGROUP is not set +# CONFIG_SCSI_CONSTANTS is not set +CONFIG_SCSI_DH=m +# CONFIG_SCSI_LOGGING is not set +# CONFIG_SCSI_MULTI_LUN is not set +# CONFIG_SCSI_SCAN_ASYNC is not set +CONFIG_SCSI_SPI_ATTRS=m +# CONFIG_SECURITY_SELINUX_BOOTPARAM is not set +# CONFIG_SECURITY_SELINUX_DISABLE is not set +# CONFIG_SECURITY_TOMOYO is not set +# CONFIG_SENSORS_LIS3LV02D is not set +CONFIG_SERIAL_8250=m +# CONFIG_SERIAL_AMBA_PL010 is not set +CONFIG_SERIAL_AMBA_PL011=y +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_SERIO_AMBAKMI is not set +CONFIG_SERIO_SERPORT=y +# CONFIG_SGI_PARTITION is not set +# CONFIG_SOLARIS_X86_PARTITION is not set +CONFIG_SPI_PL022=y +CONFIG_SPI_SPIDEV=m +# CONFIG_SQUASHFS_LZO is not set +# CONFIG_SQUASHFS_XATTR is not set +# CONFIG_SQUASHFS_XZ is not set +# CONFIG_STAGING_MEDIA is not set +# CONFIG_SUN_PARTITION is not set +CONFIG_SWP_EMULATE=y +# CONFIG_SYSCTL_SYSCALL is not set +# CONFIG_SYSCTL_SYSCALL_CHECK is not set +# CONFIG_SYSV68_PARTITION is not set +# CONFIG_TASKSTATS is not set +# CONFIG_TCP_CONG_ADVANCED is not set +# CONFIG_TCP_MD5SIG is not set +# CONFIG_TOUCHSCREEN_CLEARPAD_TM1217 is not set +# CONFIG_TWL4030_POWER is not set +# CONFIG_ULTRIX_PARTITION is not set +# CONFIG_UNIXWARE_DISKLABEL is not set +# CONFIG_UNUSED_SYMBOLS is not set +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y +# CONFIG_USB_ARCH_HAS_EHCI is not set +# CONFIG_USB_ARCH_HAS_OHCI is not set +CONFIG_USB_DYNAMIC_MINORS=y +CONFIG_USB_FUSB300=y +CONFIG_USB_GPIO_VBUS=m +CONFIG_USB_ISP1362_HCD=m +# CONFIG_USB_KC2190 is not set +# CONFIG_USB_MUSB_HDRC is not set +# CONFIG_USB_R8A66597_HCD is not set +CONFIG_USB_SERIAL_SAFE_PADDED=y +CONFIG_VERSION_SIGNATURE="Ubuntu 3.2.0-1800.1-highbank 3.2.9" +# CONFIG_VIRT_DRIVERS is not set +# CONFIG_VLAN_8021Q_GVRP is not set +CONFIG_VT6656=m +# CONFIG_WAN is not set +# CONFIG_WATCHDOG is not set +CONFIG_WIMAX_I2400M_SDIO=m +CONFIG_WIMAX_I2400M_USB=m +# CONFIG_XFS_RT is not set --- linux-3.2.0.orig/debian.master/config/amd64/config.common.amd64 +++ linux-3.2.0/debian.master/config/amd64/config.common.amd64 @@ -0,0 +1,408 @@ +# +# Config options for config.common.amd64 automatically generated by splitconfig.pl +# +CONFIG_64BIT=y +CONFIG_ABX500_CORE=y +CONFIG_ACORN_PARTITION=y +CONFIG_ACPI_BLACKLIST_YEAR=0 +CONFIG_AIC79XX_RESET_DELAY_MS=5000 +CONFIG_AMIGA_PARTITION=y +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11" +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SUPPORTS_MSI=y +# CONFIG_ASYNC_TX_DMA is not set +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=y +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_PIIX=y +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_AUDIT_ARCH=y +CONFIG_AUXDISPLAY=y +CONFIG_AX25_DAMA_SLAVE=y +CONFIG_BCH=m +CONFIG_BINARY_PRINTF=y +# CONFIG_BLK_DEV_CMD64X is not set +# CONFIG_BLK_DEV_SR_VENDOR is not set +# CONFIG_BLK_DEV_XIP is not set +CONFIG_BSD_DISKLABEL=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BTRFS_FS_POSIX_ACL=y +CONFIG_CAN_C_CAN_PLATFORM=m +CONFIG_CFG80211_REG_DEBUG=y +CONFIG_CGROUPS=y +CONFIG_CGROUP_MEM_RES_CTLR_SWAP=y +CONFIG_CIFS_EXPERIMENTAL=y +CONFIG_CIFS_XATTR=y +CONFIG_CLEANCACHE=y +CONFIG_COMEDI=m +CONFIG_COMPACTION=y +CONFIG_CORDIC=m +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_CPU_FREQ_STAT=y +CONFIG_CPU_IDLE=y +CONFIG_CRASH_DUMP=y +CONFIG_DAB=y +CONFIG_DEBUG_INFO=y +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_PINCTRL is not set +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DEVPTS_MULTIPLE_INSTANCES=y +# CONFIG_DM9000 is not set +CONFIG_DM_RAID45=m +CONFIG_DRM_PSB=m +# CONFIG_DVB_FE_CUSTOMISE is not set +# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_EVM=y +CONFIG_EXPERT=y +# CONFIG_EZX_PCAP is not set +CONFIG_FANOTIFY=y +CONFIG_FAT_FS=m +CONFIG_FB_3DFX=m +CONFIG_FB_ATY128=m +CONFIG_FB_BACKLIGHT=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_DDC=m +# CONFIG_FB_MACMODES is not set +CONFIG_FB_RADEON=m +CONFIG_FB_SVGALIB=m +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_VOODOO1=m +CONFIG_FIRMWARE_EDID=y +# CONFIG_FLATMEM_MANUAL is not set +# CONFIG_FONTS is not set +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FSAM7400=m +CONFIG_FTGMAC100=m +CONFIG_FTMAC100=m +CONFIG_FTRACE=y +CONFIG_FUNCTION_TRACER=y +CONFIG_GENERIC_CPU=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_GENERIC_TIME_VSYSCALL=y +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_GPIO_CS5535=m +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_TWL4030=m +CONFIG_HAMRADIO=y +# CONFIG_HARDIRQS_SW_RESEND is not set +CONFIG_HARDLOCKUP_DETECTOR=y +# CONFIG_HAVE_AOUT is not set +CONFIG_HAVE_CPUMASK_OF_CPU_MAP=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HIDRAW=y +CONFIG_HTC_I2CPLD=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HZ=250 +CONFIG_I2C_ALGOBIT=m +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_IDE is not set +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_SPIN_UNLOCK=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_INTEL_TXT=y +CONFIG_INTR_REMAP=y +CONFIG_IOMMU_HELPER=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_PRIVACY=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_PNP is not set +CONFIG_IRDA_CACHE_LAST_LSAP=y +CONFIG_IRDA_DEBUG=y +CONFIG_IRDA_FAST_RR=y +CONFIG_IRDA_ULTRA=y +# CONFIG_IRQ_PER_CPU is not set +CONFIG_ISDN=y +CONFIG_IWMC3200TOP_DEBUGFS=y +CONFIG_JFS_SECURITY=y +CONFIG_JFS_STATISTICS=y +CONFIG_KARMA_PARTITION=y +CONFIG_KEXEC=y +CONFIG_KGDB=y +CONFIG_KPROBES=y +CONFIG_KSM=y +# CONFIG_KTIME_SCALAR is not set +CONFIG_KVM=m +CONFIG_KVM_BOOK3S_32=m +CONFIG_LATENCYTOP=y +CONFIG_LDM_PARTITION=y +CONFIG_LEGACY_PTY_COUNT=0 +CONFIG_LIBERTAS_MESH=y +CONFIG_LIBIPW_DEBUG=y +CONFIG_LIS3L02DQ=m +CONFIG_LLC=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGITECH_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_LOG_BUF_SHIFT=18 +# CONFIG_M686 is not set +CONFIG_MAC80211_DEBUG_MENU=y +CONFIG_MAC80211_MESH=y +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAX_RAW_DEVS=256 +CONFIG_MEMORY_HOTREMOVE=y +CONFIG_MFD_88PM860X=y +CONFIG_MFD_AAT2870_CORE=y +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_STMPE=y +CONFIG_MFD_TC3589X=y +# CONFIG_MFD_TMIO is not set +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS65910=y +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TPS65912_SPI=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM831X_SPI=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8994=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_DEVICES=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MODVERSIONS=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CHAR=m +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_BCH=m +CONFIG_MTD_NAND_ECC=m +CONFIG_MTD_NAND_IDS=m +CONFIG_MTD_SM_COMMON=m +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +# CONFIG_NET_CALXEDA_XGMAC is not set +CONFIG_NET_DMA=y +CONFIG_NL80211_TESTMODE=y +CONFIG_NLS_CODEPAGE_437=m +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NODES_SHIFT=6 +CONFIG_NOP_USB_XCEIV=m +CONFIG_NVRAM=m +CONFIG_OSF_PARTITION=y +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_PANEL_DVI=m +CONFIG_PANEL_GENERIC_DPI=m +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARPORT_1284=y +CONFIG_PATA_ARASAN_CF=m +CONFIG_PATA_SIS=y +CONFIG_PCCARD=m +CONFIG_PDC_ADMA=y +CONFIG_PERF_COUNTERS=y +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_PMIC_ADP5520=y +CONFIG_PMIC_DA903X=y +CONFIG_PM_DEBUG=y +CONFIG_PM_DEVFREQ=y +CONFIG_PM_RUNTIME=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP_FILTER=y +CONFIG_PPP_MULTILINK=y +# CONFIG_PREEMPT is not set +# CONFIG_PREEMPT_RCU is not set +CONFIG_PRINTK_TIME=y +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PSTORE=y +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_R3964=m +CONFIG_R8712U=m +CONFIG_RAID_ATTRS=m +CONFIG_RAMOOPS=m +CONFIG_RAW_DRIVER=m +CONFIG_RCU_FANOUT=64 +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_RELAY=y +CONFIG_RT2800USB_UNKNOWN=y +CONFIG_RT2X00=m +# CONFIG_RT2X00_LIB_DEBUGFS is not set +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_TWL4030=m +CONFIG_RTL8187=m +CONFIG_RTL8192CU=m +CONFIG_RTS5139=m +CONFIG_RTS_PSTOR=m +# CONFIG_RWSEM_GENERIC_SPINLOCK is not set +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_MV=m +CONFIG_SATA_SVW=m +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_AUTOGROUP=y +CONFIG_SCHED_SMT=y +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_DH=y +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_MULTI_LUN=y +CONFIG_SCSI_OSD_INITIATOR=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_SCAN_ASYNC=y +CONFIG_SCSI_SPI_ATTRS=y +CONFIG_SCSI_SYM53C8XX_2=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SECURITY_TOMOYO=y +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_SERIAL_PMACZILOG is not set +CONFIG_SERIO_SERPORT=m +CONFIG_SGI_PARTITION=y +CONFIG_SM_FTL=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_HIFIER=m +CONFIG_SND_OPL3_LIB_SEQ=m +# CONFIG_SND_OPL4_LIB_SEQ is not set +# CONFIG_SND_PCM_OSS is not set +# CONFIG_SND_SBAWE_SEQ is not set +CONFIG_SOLARIS_X86_PARTITION=y +CONFIG_SPARSEMEM_MANUAL=y +CONFIG_SPARSE_IRQ=y +CONFIG_SPI_DESIGNWARE=y +# CONFIG_SPI_PXA2XX_PCI is not set +CONFIG_SPI_SPIDEV=m +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_XZ=y +# CONFIG_SSB_PCMCIAHOST is not set +CONFIG_STACK_TRACER=y +CONFIG_STAGING_MEDIA=y +# CONFIG_STANDALONE is not set +CONFIG_STE10XP=y +CONFIG_SUN_PARTITION=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSCTL_SYSCALL_CHECK=y +CONFIG_SYSV68_PARTITION=y +CONFIG_SYS_HYPERVISOR=y +CONFIG_TABLET_USB_WACOM=m +CONFIG_TASKSTATS=y +CONFIG_TCG_TIS=m +CONFIG_TCG_TPM=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_MD5SIG=y +CONFIG_TOUCHSCREEN_CLEARPAD_TM1217=m +CONFIG_TPS65010=m +CONFIG_TRANZPORT=m +# CONFIG_TWL4030_CORE is not set +CONFIG_TWL4030_USB=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB_ARCH_HAS_OHCI=y +CONFIG_USB_ARCH_HAS_XHCI=y +# CONFIG_USB_DYNAMIC_MINORS is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_ET61X251=m +CONFIG_USB_GADGET=m +CONFIG_USB_GADGET_DUMMY_HCD=y +CONFIG_USB_GADGET_DWC3=m +# CONFIG_USB_GADGET_MUSB_HDRC is not set +# CONFIG_USB_GADGET_NET2280 is not set +CONFIG_USB_GPIO_VBUS=m +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_INVENTRA_DMA is not set +CONFIG_USB_IP_COMMON=m +CONFIG_USB_ISP1362_HCD=m +CONFIG_USB_KC2190=y +CONFIG_USB_M66592=m +CONFIG_USB_MON=y +# CONFIG_USB_MUSB_OMAP2PLUS is not set +CONFIG_USB_MUSB_TUSB6010=y +CONFIG_USB_NET2272=m +# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set +# CONFIG_USB_OTG is not set +CONFIG_USB_R8A66597=m +CONFIG_USB_R8A66597_HCD=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SI470X=m +CONFIG_USB_SN9C102=m +CONFIG_VERSION_SIGNATURE="" +CONFIG_VFAT_FS=m +CONFIG_VGASTATE=m +CONFIG_VGA_ARB_MAX_GPUS=16 +# CONFIG_VIDEO_ADV7343 is not set +CONFIG_VIDEO_HELPER_CHIPS_AUTO=y +# CONFIG_VIDEO_SAA7191 is not set +# CONFIG_VIDEO_TCM825X is not set +# CONFIG_VIDEO_TDA9875 is not set +# CONFIG_VIDEO_THS7303 is not set +# CONFIG_VIDEO_TLV320AIC23B is not set +# CONFIG_VIDEO_TVP514X is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_BALLOON=m +CONFIG_VIRTIO_BLK=y +CONFIG_VIRTIO_MMIO=m +CONFIG_VIRTIO_NET=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_RING=y +CONFIG_VIRT_DRIVERS=y +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VME_BUS=m +CONFIG_VT6656=m +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_W35UND=m +CONFIG_WAN=y +CONFIG_WATCHDOG=y +CONFIG_WIMAX_I2400M_SDIO=m +CONFIG_WIMAX_I2400M_USB=m +CONFIG_WM8350_WATCHDOG=m +CONFIG_X25_ASY=m +# CONFIG_X86_32 is not set +CONFIG_X86_64=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=7 +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_SPEEDSTEP_LIB=m +CONFIG_X86_X2APIC=y +CONFIG_XEN_PRIVILEGED_GUEST=y +CONFIG_XFS_RT=y +CONFIG_ZLIB_DEFLATE=m +CONFIG_ZONE_DMA32=y +CONFIG_ZONE_DMA_FLAG=1 --- linux-3.2.0.orig/debian.master/config/amd64/config.flavour.generic +++ linux-3.2.0/debian.master/config/amd64/config.flavour.generic @@ -0,0 +1,10 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_INTEL_IDLE=y +CONFIG_NR_CPUS=256 +# CONFIG_PREEMPT_NONE is not set +CONFIG_PREEMPT_VOLUNTARY=y --- linux-3.2.0.orig/debian.master/config/amd64/config.flavour.virtual +++ linux-3.2.0/debian.master/config/amd64/config.flavour.virtual @@ -0,0 +1,10 @@ +# +# Config options for config.flavour.virtual automatically generated by splitconfig.pl +# +# CONFIG_DEFAULT_CFQ is not set +CONFIG_DEFAULT_DEADLINE=y +CONFIG_DEFAULT_IOSCHED="deadline" +# CONFIG_INTEL_IDLE is not set +CONFIG_NR_CPUS=64 +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set --- linux-3.2.0.orig/debian.master/config/i386/config.flavour.generic +++ linux-3.2.0/debian.master/config/i386/config.flavour.generic @@ -0,0 +1,18 @@ +# +# Config options for config.flavour.generic automatically generated by splitconfig.pl +# +# CONFIG_ARCH_DMA_ADDR_T_64BIT is not set +# CONFIG_ARCH_PHYS_ADDR_T_64BIT is not set +CONFIG_GPIO_CS5535=y +CONFIG_HIGHMEM4G=y +# CONFIG_HIGHMEM64G is not set +CONFIG_I2C_PXA_PCI=y +CONFIG_INTEL_IDLE=y +# CONFIG_IOMMU_HELPER is not set +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_PHYSICAL_START=0x1000000 +# CONFIG_PHYS_ADDR_T_64BIT is not set +CONFIG_SCSI_SPI_ATTRS=m +CONFIG_SCSI_SYM53C8XX_2=m +# CONFIG_SYS_HYPERVISOR is not set +# CONFIG_XEN_PRIVILEGED_GUEST is not set --- linux-3.2.0.orig/debian.master/config/i386/config.common.i386 +++ linux-3.2.0/debian.master/config/i386/config.common.i386 @@ -0,0 +1,404 @@ +# +# Config options for config.common.i386 automatically generated by splitconfig.pl +# +# CONFIG_64BIT is not set +CONFIG_ABX500_CORE=y +CONFIG_ACORN_PARTITION=y +CONFIG_ACPI_BLACKLIST_YEAR=2000 +CONFIG_AIC79XX_RESET_DELAY_MS=5000 +CONFIG_AMIGA_PARTITION=y +CONFIG_ARCH_DEFCONFIG="arch/x86/configs/i386_defconfig" +CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-ecx -fcall-saved-edx" +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SUPPORTS_MSI=y +CONFIG_ASYNC_TX_DMA=y +CONFIG_ATARI_PARTITION=y +CONFIG_ATA_GENERIC=y +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_PIIX=y +# CONFIG_ATM_BR2684_IPFILTER is not set +# CONFIG_AUDIT_ARCH is not set +CONFIG_AUXDISPLAY=y +CONFIG_AX25_DAMA_SLAVE=y +CONFIG_BCH=m +CONFIG_BINARY_PRINTF=y +# CONFIG_BLK_DEV_CMD64X is not set +# CONFIG_BLK_DEV_SR_VENDOR is not set +# CONFIG_BLK_DEV_XIP is not set +CONFIG_BSD_DISKLABEL=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BTRFS_FS_POSIX_ACL=y +CONFIG_CAN_C_CAN_PLATFORM=m +CONFIG_CFG80211_REG_DEBUG=y +CONFIG_CGROUPS=y +CONFIG_CGROUP_MEM_RES_CTLR_SWAP=y +CONFIG_CIFS_EXPERIMENTAL=y +CONFIG_CIFS_XATTR=y +CONFIG_CLEANCACHE=y +CONFIG_COMEDI=m +CONFIG_COMPACTION=y +CONFIG_CORDIC=m +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_CPU_FREQ_STAT=y +CONFIG_CPU_IDLE=y +CONFIG_CRASH_DUMP=y +CONFIG_DAB=y +CONFIG_DEBUG_INFO=y +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_PINCTRL is not set +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 +CONFIG_DEVPTS_MULTIPLE_INSTANCES=y +# CONFIG_DM9000 is not set +CONFIG_DM_RAID45=m +CONFIG_DRM_PSB=m +# CONFIG_DVB_FE_CUSTOMISE is not set +# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_EVM=y +CONFIG_EXPERT=y +# CONFIG_EZX_PCAP is not set +CONFIG_FANOTIFY=y +CONFIG_FAT_FS=m +CONFIG_FB_3DFX=m +CONFIG_FB_ATY128=m +CONFIG_FB_BACKLIGHT=y +CONFIG_FB_BOOT_VESA_SUPPORT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_DDC=m +# CONFIG_FB_MACMODES is not set +CONFIG_FB_RADEON=m +CONFIG_FB_SVGALIB=m +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_TILEBLITTING=y +CONFIG_FB_VOODOO1=m +CONFIG_FIRMWARE_EDID=y +CONFIG_FLATMEM_MANUAL=y +# CONFIG_FONTS is not set +CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y +CONFIG_FSAM7400=m +CONFIG_FTGMAC100=m +CONFIG_FTMAC100=m +CONFIG_FTRACE=y +CONFIG_FUNCTION_TRACER=y +# CONFIG_GENERIC_CPU is not set +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_PENDING_IRQ=y +# CONFIG_GENERIC_TIME_VSYSCALL is not set +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_TWL4030=m +CONFIG_HAMRADIO=y +# CONFIG_HARDIRQS_SW_RESEND is not set +CONFIG_HARDLOCKUP_DETECTOR=y +CONFIG_HAVE_AOUT=y +# CONFIG_HAVE_CPUMASK_OF_CPU_MAP is not set +CONFIG_HAVE_GENERIC_DMA_COHERENT=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HIDRAW=y +CONFIG_HIGHMEM=y +CONFIG_HTC_I2CPLD=y +CONFIG_HUGETLB_PAGE=y +CONFIG_HZ=250 +CONFIG_I2C_ALGOBIT=m +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_IDE is not set +CONFIG_ILLEGAL_POINTER_VALUE=0 +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_SPIN_UNLOCK=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +# CONFIG_INTEL_TXT is not set +# CONFIG_INTR_REMAP is not set +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_PRIVACY=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_PNP is not set +CONFIG_IRDA_CACHE_LAST_LSAP=y +CONFIG_IRDA_DEBUG=y +CONFIG_IRDA_FAST_RR=y +CONFIG_IRDA_ULTRA=y +# CONFIG_IRQ_PER_CPU is not set +CONFIG_ISA=y +CONFIG_ISDN=y +CONFIG_IWMC3200TOP_DEBUGFS=y +CONFIG_JFS_SECURITY=y +CONFIG_JFS_STATISTICS=y +CONFIG_KARMA_PARTITION=y +CONFIG_KEXEC=y +CONFIG_KGDB=y +CONFIG_KPROBES=y +CONFIG_KSM=y +CONFIG_KTIME_SCALAR=y +CONFIG_KVM=m +CONFIG_KVM_BOOK3S_32=m +CONFIG_LATENCYTOP=y +CONFIG_LDM_PARTITION=y +CONFIG_LEGACY_PTY_COUNT=0 +CONFIG_LIBERTAS_MESH=y +CONFIG_LIBIPW_DEBUG=y +CONFIG_LIS3L02DQ=m +CONFIG_LLC=y +CONFIG_LOGIG940_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGITECH_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_M686=y +CONFIG_MAC80211_DEBUG_MENU=y +CONFIG_MAC80211_MESH=y +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAX_RAW_DEVS=256 +CONFIG_MFD_88PM860X=y +CONFIG_MFD_AAT2870_CORE=y +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_STMPE=y +CONFIG_MFD_TC3589X=y +# CONFIG_MFD_TMIO is not set +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS65910=y +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TPS65912_SPI=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM831X_SPI=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8994=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_DEVICES=y +CONFIG_MMC_BLOCK=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MODVERSIONS=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MTD=m +CONFIG_MTD_BLKDEVS=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_CHAR=m +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_BCH=m +CONFIG_MTD_NAND_ECC=m +CONFIG_MTD_NAND_IDS=m +CONFIG_MTD_OF_PARTS=m +CONFIG_MTD_SM_COMMON=m +CONFIG_MUTEX_SPIN_ON_OWNER=y +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +# CONFIG_NET_CALXEDA_XGMAC is not set +CONFIG_NET_DMA=y +CONFIG_NL80211_TESTMODE=y +CONFIG_NLS_CODEPAGE_437=m +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NOP_USB_XCEIV=m +CONFIG_NR_CPUS=8 +CONFIG_NVRAM=m +CONFIG_OSF_PARTITION=y +CONFIG_OUTPUT_FORMAT="elf32-i386" +CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_PANEL_DVI=m +CONFIG_PANEL_GENERIC_DPI=m +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +CONFIG_PARPORT_1284=y +CONFIG_PATA_ARASAN_CF=m +CONFIG_PATA_SIS=y +CONFIG_PCCARD=m +CONFIG_PDC_ADMA=y +CONFIG_PERF_COUNTERS=y +CONFIG_PMIC_ADP5520=y +CONFIG_PMIC_DA903X=y +CONFIG_PM_DEBUG=y +CONFIG_PM_DEVFREQ=y +CONFIG_PM_RUNTIME=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP_FILTER=y +CONFIG_PPP_MULTILINK=y +# CONFIG_PREEMPT is not set +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_RCU is not set +CONFIG_PREEMPT_VOLUNTARY=y +CONFIG_PRINTK_TIME=y +# CONFIG_PRINT_QUOTA_WARNING is not set +CONFIG_PSTORE=y +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTA_NETLINK_INTERFACE=y +CONFIG_R3964=m +CONFIG_R8712U=m +CONFIG_RAID_ATTRS=m +CONFIG_RAMOOPS=m +CONFIG_RAW_DRIVER=m +CONFIG_RCU_FANOUT=32 +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +CONFIG_REGULATOR_DEBUG=y +CONFIG_REGULATOR_FIXED_VOLTAGE=m +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_RELAY=y +CONFIG_RT2800USB_UNKNOWN=y +CONFIG_RT2X00=m +# CONFIG_RT2X00_LIB_DEBUGFS is not set +CONFIG_RTC_DRV_CMOS=y +CONFIG_RTC_DRV_TWL4030=m +CONFIG_RTL8187=m +CONFIG_RTL8192CU=m +CONFIG_RTS5139=m +CONFIG_RTS_PSTOR=m +# CONFIG_RWSEM_GENERIC_SPINLOCK is not set +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_MV=m +CONFIG_SATA_SVW=m +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_AUTOGROUP=y +CONFIG_SCHED_SMT=y +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_DH=y +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_MULTI_LUN=y +CONFIG_SCSI_OSD_INITIATOR=m +CONFIG_SCSI_QLA_ISCSI=m +CONFIG_SCSI_SCAN_ASYNC=y +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SECURITY_TOMOYO=y +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_NONSTANDARD=y +# CONFIG_SERIAL_PMACZILOG is not set +CONFIG_SERIO_SERPORT=m +CONFIG_SGI_PARTITION=y +CONFIG_SM_FTL=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_EMU10K1_SEQ=m +CONFIG_SND_HIFIER=m +CONFIG_SND_OPL3_LIB_SEQ=m +CONFIG_SND_OPL4_LIB_SEQ=m +# CONFIG_SND_PCM_OSS is not set +CONFIG_SND_SBAWE_SEQ=m +CONFIG_SOLARIS_X86_PARTITION=y +# CONFIG_SPARSEMEM_MANUAL is not set +CONFIG_SPARSE_IRQ=y +CONFIG_SPI_DESIGNWARE=y +CONFIG_SPI_PXA2XX_PCI=y +CONFIG_SPI_SPIDEV=m +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_XZ=y +# CONFIG_SSB_PCMCIAHOST is not set +CONFIG_STACK_TRACER=y +CONFIG_STAGING_MEDIA=y +# CONFIG_STANDALONE is not set +CONFIG_STE10XP=y +CONFIG_SUN_PARTITION=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSCTL_SYSCALL_CHECK=y +CONFIG_SYSV68_PARTITION=y +CONFIG_TABLET_USB_WACOM=m +CONFIG_TASKSTATS=y +CONFIG_TCG_TIS=m +CONFIG_TCG_TPM=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_MD5SIG=y +CONFIG_TOUCHSCREEN_CLEARPAD_TM1217=m +CONFIG_TPS65010=m +CONFIG_TRANZPORT=m +# CONFIG_TWL4030_CORE is not set +CONFIG_TWL4030_USB=m +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB_ARCH_HAS_OHCI=y +CONFIG_USB_ARCH_HAS_XHCI=y +# CONFIG_USB_DYNAMIC_MINORS is not set +CONFIG_USB_EHCI_TT_NEWSCHED=y +CONFIG_USB_ET61X251=m +CONFIG_USB_FUSB300=m +CONFIG_USB_GADGET=m +CONFIG_USB_GADGET_DUMMY_HCD=y +CONFIG_USB_GADGET_DWC3=m +# CONFIG_USB_GADGET_MUSB_HDRC is not set +# CONFIG_USB_GADGET_NET2280 is not set +CONFIG_USB_GPIO_VBUS=m +# CONFIG_USB_G_MULTI is not set +# CONFIG_USB_INVENTRA_DMA is not set +CONFIG_USB_IP_COMMON=m +CONFIG_USB_ISP1362_HCD=m +CONFIG_USB_KC2190=y +CONFIG_USB_M66592=m +CONFIG_USB_MON=y +# CONFIG_USB_MUSB_OMAP2PLUS is not set +CONFIG_USB_MUSB_TUSB6010=y +CONFIG_USB_NET2272=m +# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set +# CONFIG_USB_OTG is not set +CONFIG_USB_R8A66597=m +CONFIG_USB_R8A66597_HCD=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SI470X=m +CONFIG_USB_SN9C102=m +CONFIG_VERSION_SIGNATURE="" +CONFIG_VFAT_FS=m +CONFIG_VGASTATE=m +CONFIG_VGA_ARB_MAX_GPUS=16 +# CONFIG_VIDEO_ADV7343 is not set +CONFIG_VIDEO_HELPER_CHIPS_AUTO=y +# CONFIG_VIDEO_SAA7191 is not set +# CONFIG_VIDEO_TCM825X is not set +# CONFIG_VIDEO_TDA9875 is not set +# CONFIG_VIDEO_THS7303 is not set +# CONFIG_VIDEO_TLV320AIC23B is not set +# CONFIG_VIDEO_TVP514X is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_BALLOON=m +CONFIG_VIRTIO_BLK=y +CONFIG_VIRTIO_MMIO=m +CONFIG_VIRTIO_NET=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_RING=y +CONFIG_VIRT_DRIVERS=y +CONFIG_VLAN_8021Q_GVRP=y +CONFIG_VME_BUS=m +CONFIG_VT6656=m +CONFIG_VT_HW_CONSOLE_BINDING=y +CONFIG_W35UND=m +CONFIG_WAN=y +CONFIG_WATCHDOG=y +CONFIG_WIMAX_I2400M_SDIO=m +CONFIG_WIMAX_I2400M_USB=m +CONFIG_WM8350_WATCHDOG=m +CONFIG_X25_ASY=m +CONFIG_X86_32=y +# CONFIG_X86_64 is not set +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_MINIMUM_CPU_FAMILY=5 +CONFIG_X86_SPEEDSTEP_LIB=y +# CONFIG_X86_X2APIC is not set +CONFIG_XFS_RT=y +CONFIG_ZLIB_DEFLATE=m +# CONFIG_ZONE_DMA32 is not set +CONFIG_ZONE_DMA_FLAG=1 --- linux-3.2.0.orig/debian.master/config/i386/config.flavour.generic-pae +++ linux-3.2.0/debian.master/config/i386/config.flavour.generic-pae @@ -0,0 +1,18 @@ +# +# Config options for config.flavour.generic-pae automatically generated by splitconfig.pl +# +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_GPIO_CS5535=m +# CONFIG_HIGHMEM4G is not set +CONFIG_HIGHMEM64G=y +# CONFIG_I2C_PXA_PCI is not set +CONFIG_INTEL_IDLE=y +CONFIG_IOMMU_HELPER=y +CONFIG_PHYSICAL_ALIGN=0x1000000 +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_SCSI_SPI_ATTRS=y +CONFIG_SCSI_SYM53C8XX_2=y +CONFIG_SYS_HYPERVISOR=y +CONFIG_XEN_PRIVILEGED_GUEST=y --- linux-3.2.0.orig/debian.master/config/i386/config.flavour.virtual +++ linux-3.2.0/debian.master/config/i386/config.flavour.virtual @@ -0,0 +1,18 @@ +# +# Config options for config.flavour.virtual automatically generated by splitconfig.pl +# +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +CONFIG_GPIO_CS5535=m +# CONFIG_HIGHMEM4G is not set +CONFIG_HIGHMEM64G=y +# CONFIG_I2C_PXA_PCI is not set +# CONFIG_INTEL_IDLE is not set +CONFIG_IOMMU_HELPER=y +CONFIG_PHYSICAL_ALIGN=0x100000 +CONFIG_PHYSICAL_START=0x100000 +CONFIG_PHYS_ADDR_T_64BIT=y +CONFIG_SCSI_SPI_ATTRS=y +CONFIG_SCSI_SYM53C8XX_2=y +CONFIG_SYS_HYPERVISOR=y +CONFIG_XEN_PRIVILEGED_GUEST=y --- linux-3.2.0.orig/debian.master/config/armel/config.common.armel +++ linux-3.2.0/debian.master/config/armel/config.common.armel @@ -0,0 +1,377 @@ +# +# Config options for config.common.armel automatically generated by splitconfig.pl +# +CONFIG_ABX500_CORE=y +CONFIG_ACORN_PARTITION=y +CONFIG_AMBA_PL08X=y +CONFIG_AMIGA_PARTITION=y +# CONFIG_APM_EMULATION is not set +# CONFIG_ARCH_HIGHBANK is not set +CONFIG_ARCH_OMAP=y +# CONFIG_ARCH_SELECT_MEMORY_MODEL is not set +# CONFIG_ARCH_SPARSEMEM_DEFAULT is not set +# CONFIG_ARCH_SUPPORTS_MSI is not set +CONFIG_ARM_ERRATA_430973=y +CONFIG_ARM_ERRATA_743622=y +CONFIG_ARM_L1_CACHE_SHIFT=6 +CONFIG_ASYNC_TX_DMA=y +CONFIG_ATARI_PARTITION=y +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATM_BR2684_IPFILTER=y +CONFIG_AUXDISPLAY=y +CONFIG_AX25_DAMA_SLAVE=y +CONFIG_AX88796=m +CONFIG_BCH=y +CONFIG_BINARY_PRINTF=y +# CONFIG_BLK_DEV_SR_VENDOR is not set +# CONFIG_BLK_DEV_XIP is not set +CONFIG_BSD_DISKLABEL=y +CONFIG_BSD_PROCESS_ACCT=y +CONFIG_BTRFS_FS_POSIX_ACL=y +CONFIG_CAN_C_CAN_PLATFORM=m +CONFIG_CFG80211_REG_DEBUG=y +CONFIG_CGROUPS=y +# CONFIG_CGROUP_MEM_RES_CTLR_SWAP is not set +CONFIG_CIFS_XATTR=y +CONFIG_CLEANCACHE=y +# CONFIG_COMPACTION is not set +CONFIG_CORDIC=m +# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set +CONFIG_CPU_FREQ_STAT=y +CONFIG_CPU_IDLE=y +CONFIG_CRASH_DUMP=y +CONFIG_DEBUG_INFO=y +CONFIG_DEBUG_KERNEL=y +CONFIG_DEBUG_USER=y +CONFIG_DEFAULT_CFQ=y +# CONFIG_DEFAULT_DEADLINE is not set +CONFIG_DEFAULT_IOSCHED="cfq" +CONFIG_DEFAULT_MMAP_MIN_ADDR=32768 +CONFIG_DEVPTS_MULTIPLE_INSTANCES=y +CONFIG_DM9000=m +# CONFIG_DM_RAID45 is not set +CONFIG_DVB_FE_CUSTOMISE=y +# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set +CONFIG_DW_DMAC=m +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +CONFIG_EVM=y +CONFIG_EXPERT=y +CONFIG_EZX_PCAP=y +CONFIG_FANOTIFY=y +CONFIG_FAT_FS=y +CONFIG_FB_ARMCLCD=m +# CONFIG_FB_BACKLIGHT is not set +# CONFIG_FB_BOOT_VESA_SUPPORT is not set +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_DDC is not set +# CONFIG_FB_MACMODES is not set +# CONFIG_FB_SVGALIB is not set +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_SYS_IMAGEBLIT=m +# CONFIG_FB_TILEBLITTING is not set +# CONFIG_FIRMWARE_EDID is not set +CONFIG_FLATMEM_MANUAL=y +CONFIG_FONTS=y +CONFIG_FORCE_MAX_ZONEORDER=11 +CONFIG_FPE_NWFPE=y +# CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY is not set +# CONFIG_FTGMAC100 is not set +# CONFIG_FTMAC100 is not set +CONFIG_FTRACE=y +# CONFIG_FUNCTION_TRACER is not set +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GFS2_FS_LOCKING_DLM=y +CONFIG_GPIO_SYSFS=y +CONFIG_GPIO_TWL4030=y +CONFIG_HAMRADIO=y +CONFIG_HARDIRQS_SW_RESEND=y +# CONFIG_HARDLOCKUP_DETECTOR is not set +CONFIG_HAVE_AOUT=y +CONFIG_HAVE_GENERIC_DMA_COHERENT=y +CONFIG_HIDRAW=y +# CONFIG_HIGHMEM is not set +CONFIG_HTC_EGPIO=y +CONFIG_HTC_I2CPLD=y +# CONFIG_HUGETLB_PAGE is not set +CONFIG_HVC_DCC=y +CONFIG_HZ=128 +CONFIG_I2C_ALGOBIT=m +CONFIG_I2C_DESIGNWARE_PLATFORM=m +# CONFIG_I2C_HELPER_AUTO is not set +# CONFIG_I2C_PXA_PCI is not set +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_SPIN_UNLOCK=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_INPUT_TABLET=y +CONFIG_INPUT_TOUCHSCREEN=y +CONFIG_IPV6_MROUTE=y +CONFIG_IPV6_MULTIPLE_TABLES=y +CONFIG_IPV6_PRIVACY=y +CONFIG_IPV6_ROUTER_PREF=y +CONFIG_IPV6_SIT_6RD=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_IP_MULTICAST=y +# CONFIG_IP_PNP is not set +CONFIG_IRDA_CACHE_LAST_LSAP=y +CONFIG_IRDA_DEBUG=y +CONFIG_IRDA_FAST_RR=y +CONFIG_IRDA_ULTRA=y +CONFIG_ISDN=y +# CONFIG_IWMC3200TOP_DEBUGFS is not set +CONFIG_JFS_SECURITY=y +CONFIG_JFS_STATISTICS=y +CONFIG_KARMA_PARTITION=y +CONFIG_KEXEC=y +CONFIG_KGDB=y +CONFIG_KPROBES=y +# CONFIG_KSM is not set +CONFIG_KTIME_SCALAR=y +CONFIG_LATENCYTOP=y +CONFIG_LDM_PARTITION=y +CONFIG_LEGACY_PTY_COUNT=0 +# CONFIG_LIBERTAS_MESH is not set +CONFIG_LIS3L02DQ=m +CONFIG_LLC=m +CONFIG_LOGIG940_FF=y +CONFIG_LOGIRUMBLEPAD2_FF=y +CONFIG_LOGITECH_FF=y +CONFIG_LOGIWHEELS_FF=y +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_MAC80211_DEBUG_MENU=y +CONFIG_MAC80211_MESH=y +CONFIG_MAC_PARTITION=y +CONFIG_MAGIC_SYSRQ=y +CONFIG_MAX_RAW_DEVS=256 +CONFIG_MFD_88PM860X=y +CONFIG_MFD_AAT2870_CORE=y +CONFIG_MFD_ASIC3=y +CONFIG_MFD_MAX8925=y +CONFIG_MFD_MAX8997=y +CONFIG_MFD_MAX8998=y +CONFIG_MFD_STMPE=y +CONFIG_MFD_T7L66XB=y +CONFIG_MFD_TC3589X=y +CONFIG_MFD_TC6387XB=y +CONFIG_MFD_TC6393XB=y +CONFIG_MFD_TMIO=y +CONFIG_MFD_TPS6586X=y +CONFIG_MFD_TPS65910=y +CONFIG_MFD_TPS65912_I2C=y +CONFIG_MFD_TPS65912_SPI=y +CONFIG_MFD_WM831X_I2C=y +CONFIG_MFD_WM831X_SPI=y +CONFIG_MFD_WM8350_I2C=y +CONFIG_MFD_WM8994=y +CONFIG_MINIX_SUBPARTITION=y +CONFIG_MISC_DEVICES=y +CONFIG_MMC_ARMMMCI=m +CONFIG_MMC_BLOCK=y +CONFIG_MMC_SDHCI=y +CONFIG_MMC_SDHCI_PLTFM=m +CONFIG_MMC_SDHCI_PXAV2=m +CONFIG_MMC_SDHCI_PXAV3=m +CONFIG_MODULE_SRCVERSION_ALL=y +CONFIG_MODVERSIONS=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set +CONFIG_MTD=y +CONFIG_MTD_BLKDEVS=y +CONFIG_MTD_BLOCK=y +CONFIG_MTD_CHAR=y +CONFIG_MTD_NAND=y +CONFIG_MTD_NAND_BCH=y +CONFIG_MTD_NAND_ECC=y +CONFIG_MTD_NAND_IDS=y +CONFIG_MTD_OF_PARTS=y +# CONFIG_MTD_SM_COMMON is not set +# CONFIG_MUTEX_SPIN_ON_OWNER is not set +CONFIG_NEED_DMA_MAP_STATE=y +# CONFIG_NET_CALXEDA_XGMAC is not set +CONFIG_NET_DMA=y +# CONFIG_NL80211_TESTMODE is not set +CONFIG_NLS_CODEPAGE_437=y +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NOP_USB_XCEIV=y +CONFIG_NVRAM=m +CONFIG_OC_ETM=y +CONFIG_OSF_PARTITION=y +CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_PANEL_DVI=y +CONFIG_PANEL_GENERIC_DPI=y +CONFIG_PARPORT_1284=y +CONFIG_PATA_ARASAN_CF=m +# CONFIG_PCCARD is not set +# CONFIG_PCI_SYSCALL is not set +CONFIG_PERF_COUNTERS=y +# CONFIG_PHYS_ADDR_T_64BIT is not set +CONFIG_PL330_DMA=m +CONFIG_PMIC_ADP5520=y +CONFIG_PMIC_DA903X=y +# CONFIG_PM_DEBUG is not set +CONFIG_PM_DEVFREQ=y +CONFIG_PM_RUNTIME=y +CONFIG_POWER_SUPPLY=y +CONFIG_PPP_FILTER=y +CONFIG_PPP_MULTILINK=y +# CONFIG_PREEMPT is not set +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_RCU is not set +CONFIG_PREEMPT_VOLUNTARY=y +CONFIG_PRINTK_TIME=y +CONFIG_PRINT_QUOTA_WARNING=y +CONFIG_PSTORE=y +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTA_NETLINK_INTERFACE=y +# CONFIG_R3964 is not set +CONFIG_R8712U=m +CONFIG_RAID_ATTRS=m +CONFIG_RAMOOPS=m +CONFIG_RAW_DRIVER=m +CONFIG_REGMAP_I2C=y +CONFIG_REGMAP_SPI=y +# CONFIG_REGULATOR_DEBUG is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=y +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_RELAY=y +CONFIG_RFKILL_GPIO=m +# CONFIG_RT2800USB_UNKNOWN is not set +CONFIG_RT2X00=m +CONFIG_RT2X00_LIB_DEBUGFS=y +CONFIG_RTC_DRV_CMOS=m +CONFIG_RTC_DRV_TWL4030=y +CONFIG_RTL8187=m +CONFIG_RTL8192CU=m +CONFIG_RTS5139=m +CONFIG_RWSEM_GENERIC_SPINLOCK=y +CONFIG_SATA_AHCI_PLATFORM=m +CONFIG_SATA_MV=m +CONFIG_SCHEDSTATS=y +CONFIG_SCHED_AUTOGROUP=y +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_DH=y +CONFIG_SCSI_LOGGING=y +CONFIG_SCSI_MULTI_LUN=y +# CONFIG_SCSI_OSD_INITIATOR is not set +CONFIG_SCSI_SCAN_ASYNC=y +# CONFIG_SCSI_SPI_ATTRS is not set +CONFIG_SECURITY_SELINUX_BOOTPARAM=y +CONFIG_SECURITY_SELINUX_DISABLE=y +CONFIG_SECURITY_TOMOYO=y +CONFIG_SENSORS_LIS3LV02D=m +CONFIG_SENSORS_SCH56XX_COMMON=m +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_AMBA_PL010=m +CONFIG_SERIAL_AMBA_PL011=m +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_SERIO_AMBAKMI=m +CONFIG_SERIO_SERPORT=m +CONFIG_SGI_PARTITION=y +CONFIG_SM_FTL=m +# CONFIG_SND_EMU10K1_SEQ is not set +# CONFIG_SND_OPL3_LIB_SEQ is not set +# CONFIG_SND_OPL4_LIB_SEQ is not set +CONFIG_SND_PCM_OSS=m +# CONFIG_SND_SBAWE_SEQ is not set +CONFIG_SOLARIS_X86_PARTITION=y +# CONFIG_SPARSE_IRQ is not set +CONFIG_SPI_DESIGNWARE=m +CONFIG_SPI_PL022=m +# CONFIG_SPI_PXA2XX_PCI is not set +# CONFIG_SPI_SPIDEV is not set +CONFIG_SQUASHFS_LZO=y +CONFIG_SQUASHFS_XATTR=y +CONFIG_SQUASHFS_XZ=y +# CONFIG_STACK_TRACER is not set +CONFIG_STAGING_MEDIA=y +CONFIG_STANDALONE=y +CONFIG_STE10XP=y +CONFIG_SUN_PARTITION=y +# CONFIG_SWP_EMULATE is not set +CONFIG_SYSCTL_SYSCALL=y +CONFIG_SYSCTL_SYSCALL_CHECK=y +CONFIG_SYSV68_PARTITION=y +# CONFIG_SYS_HYPERVISOR is not set +CONFIG_TABLET_USB_WACOM=m +CONFIG_TASKSTATS=y +# CONFIG_TCG_TPM is not set +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_MD5SIG=y +CONFIG_TOUCHSCREEN_CLEARPAD_TM1217=m +CONFIG_TPS65010=m +CONFIG_TRANZPORT=m +CONFIG_TWL4030_CORE=y +CONFIG_TWL4030_POWER=y +CONFIG_TWL4030_USB=y +CONFIG_ULTRIX_PARTITION=y +CONFIG_UNIXWARE_DISKLABEL=y +CONFIG_UNUSED_SYMBOLS=y +# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB_ARCH_HAS_OHCI=y +# CONFIG_USB_ARCH_HAS_XHCI is not set +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_EHCI_TT_NEWSCHED is not set +# CONFIG_USB_ET61X251 is not set +# CONFIG_USB_FUSB300 is not set +CONFIG_USB_GADGET=y +# CONFIG_USB_GADGET_DWC3 is not set +CONFIG_USB_GADGET_MUSB_HDRC=y +CONFIG_USB_GPIO_VBUS=y +CONFIG_USB_G_MULTI=m +CONFIG_USB_INVENTRA_DMA=y +# CONFIG_USB_ISP1362_HCD is not set +CONFIG_USB_KC2190=y +# CONFIG_USB_M66592 is not set +CONFIG_USB_MON=m +CONFIG_USB_MUSB_HDRC=y +CONFIG_USB_MUSB_OMAP2PLUS=y +# CONFIG_USB_MUSB_TUSB6010 is not set +# CONFIG_USB_NET2272 is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set +CONFIG_USB_OTG=y +# CONFIG_USB_R8A66597 is not set +CONFIG_USB_R8A66597_HCD=m +# CONFIG_USB_SERIAL_SAFE_PADDED is not set +CONFIG_USB_SI470X=m +# CONFIG_USB_SN9C102 is not set +CONFIG_VERSION_SIGNATURE="" +CONFIG_VFAT_FS=y +# CONFIG_VGASTATE is not set +CONFIG_VIDEO_ADV7343=m +# CONFIG_VIDEO_HELPER_CHIPS_AUTO is not set +CONFIG_VIDEO_SAA7191=m +CONFIG_VIDEO_TCM825X=m +CONFIG_VIDEO_THS7303=m +CONFIG_VIDEO_TLV320AIC23B=m +CONFIG_VIDEO_TVP514X=m +# CONFIG_VIRTIO is not set +# CONFIG_VIRTIO_BALLOON is not set +# CONFIG_VIRTIO_BLK is not set +# CONFIG_VIRTIO_MMIO is not set +# CONFIG_VIRTIO_NET is not set +# CONFIG_VIRTIO_PCI is not set +# CONFIG_VIRTIO_RING is not set +CONFIG_VIRT_DRIVERS=y +CONFIG_VLAN_8021Q_GVRP=y +# CONFIG_VT6656 is not set +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_W35UND=m +CONFIG_WAN=y +CONFIG_WATCHDOG=y +# CONFIG_WIMAX_I2400M_SDIO is not set +# CONFIG_WIMAX_I2400M_USB is not set +# CONFIG_WM8350_WATCHDOG is not set +# CONFIG_X25_ASY is not set +CONFIG_XFS_RT=y +CONFIG_ZLIB_DEFLATE=m +CONFIG_ZONE_DMA_FLAG=0 --- linux-3.2.0.orig/debian.master/config/armel/config.flavour.omap +++ linux-3.2.0/debian.master/config/armel/config.flavour.omap @@ -0,0 +1,3 @@ +# +# Config options for config.flavour.omap automatically generated by splitconfig.pl +# --- linux-3.2.0.orig/debian.master/control.d/vars.generic-pae +++ linux-3.2.0/debian.master/control.d/vars.generic-pae @@ -0,0 +1,6 @@ +arch="i386" +supported="Generic" +target="Geared toward 32 bit desktop or server systems with more than 4GB RAM." +desc="=HUMAN= SMP" +bootloader="grub-pc | grub | lilo (>= 19.1)" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9" --- linux-3.2.0.orig/debian.master/control.d/vars.generic +++ linux-3.2.0/debian.master/control.d/vars.generic @@ -0,0 +1,6 @@ +arch="i386 amd64" +supported="Generic" +target="Geared toward desktop and server systems." +desc="=HUMAN= SMP" +bootloader="grub-pc | grub-efi-amd64 | grub-efi-ia32 | grub | lilo (>= 19.1)" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9" --- linux-3.2.0.orig/debian.master/control.d/flavour-control.stub +++ linux-3.2.0/debian.master/control.d/flavour-control.stub @@ -0,0 +1,98 @@ +# Items that get replaced: +# FLAVOUR +# DESC +# ARCH +# SUPPORTED +# TARGET +# BOOTLOADER +# =PROVIDES= +# +# Items marked with =FOO= are optional +# +# This file describes the template for packages that are created for each flavour +# in debian/control.d/vars.* +# +# This file gets edited in a couple of places. See the debian/control.stub rule in +# debian/rules. PGGVER, ABINUM, and SRCPKGNAME are all converted in the +# process of creating debian/control. +# +# The flavour specific strings (ARCH, DESC, etc) are converted using values from the various +# flavour files in debian/control.d/vars.* +# +# XXX: Leave the blank line before the first package!! + +Package: linux-image-PKGVER-ABINUM-FLAVOUR +Architecture: ARCH +Section: kernel +Priority: optional +Pre-Depends: dpkg (>= 1.10.24) +Provides: linux-image, linux-image-3.0, fuse-module, =PROVIDES= +Depends: ${misc:Depends}, ${shlibs:Depends}, initramfs-tools (>= 0.36ubuntu6), module-init-tools (>= 3.3-pre11-4ubuntu3), crda (>=1.1.1-1ubuntu2) | wireless-crda +Conflicts: hotplug (<< 0.0.20040105-1) +Recommends: BOOTLOADER +Suggests: fdutils, SRCPKGNAME-doc-PKGVER | SRCPKGNAME-source-PKGVER, SRCPKGNAME-tools +Description: Linux kernel image for version PKGVER on DESC + This package contains the Linux kernel image for version PKGVER on + DESC. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-image-extra-PKGVER-ABINUM-FLAVOUR +Architecture: ARCH +Section: kernel +Priority: optional +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-PKGVER-ABINUM-FLAVOUR +Description: Linux kernel image for version PKGVER on DESC + This package contains the Linux kernel image for version PKGVER on + DESC. + . + Also includes the corresponding System.map file, the modules built by the + packager, and scripts that try to ensure that the system is not left in an + unbootable state after an update. + . + Supports SUPPORTED processors. + . + TARGET + . + You likely do not want to install this package directly. Instead, install + the linux-FLAVOUR meta-package, which will ensure that upgrades work + correctly, and that supporting packages are also installed. + +Package: linux-headers-PKGVER-ABINUM-FLAVOUR +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends}, SRCPKGNAME-headers-PKGVER-ABINUM, ${shlibs:Depends} +Provides: SRCPKGNAME-headers, SRCPKGNAME-headers-3.0 +Description: Linux kernel headers for version PKGVER on DESC + This package provides kernel header files for version PKGVER on + DESC. + . + This is for sites that want the latest kernel headers. Please read + /usr/share/doc/SRCPKGNAME-headers-PKGVER-ABINUM/debian.README.gz for details. + +Package: linux-image-PKGVER-ABINUM-FLAVOUR-dbgsym +Architecture: ARCH +Section: devel +Priority: optional +Depends: ${misc:Depends} +Provides: linux-debug +Description: Linux kernel debug image for version PKGVER on DESC + This package provides a kernel debug image for version PKGVER on + DESC. + . + This is for sites that wish to debug the kernel. + . + The kernel image contained in this package is NOT meant to boot from. It + is uncompressed, and unstripped. This package also includes the + unstripped modules. --- linux-3.2.0.orig/debian.master/control.d/vars.powerpc-smp +++ linux-3.2.0/debian.master/control.d/vars.powerpc-smp @@ -0,0 +1,6 @@ +supported="32-bit PowerPC SMP" +target="Geared toward desktop or server systems." +desc="32-bit PowerPC SMP" +bootloader="yaboot" +provides="redhat-cluster-modules, ivtv-modules" +arch="powerpc" --- linux-3.2.0.orig/debian.master/control.d/vars.omap +++ linux-3.2.0/debian.master/control.d/vars.omap @@ -0,0 +1,8 @@ +arch="armel armhf" +supported="TI OMAP3" +desc="TI OMAP3-based =HUMAN= systems" +target="Targeted towards boards such as Beagleboard, Gumstix, IGEPv2, etc." +bootloader="flash-kernel" +provides="" +section_image="universe/base" +do_debug="Yes" --- linux-3.2.0.orig/debian.master/control.d/virtual.inclusion-list +++ linux-3.2.0/debian.master/control.d/virtual.inclusion-list @@ -0,0 +1,138 @@ +arch/*/{crypto,kernel,oprofile} +crypto/* +drivers/acpi/* +drivers/block/nbd.ko +drivers/block/floppy.ko +drivers/block/cryptoloop.ko +drivers/char/hangcheck-timer.ko +drivers/char/lp.ko +drivers/char/nvram.ko +drivers/char/ppdev.ko +drivers/char/raw.ko +drivers/hv/* +drivers/input/evbug.ko +drivers/input/gameport/gameport.ko +drivers/input/mouse/psmouse.ko +drivers/input/serio/serio_raw.ko +drivers/input/serio/serport.ko +drivers/input/joydev.ko +drivers/input/touchscreen/usbtouchscreen.ko +drivers/input/misc/xen-kbdfront.ko +drivers/md/* +drivers/message/fusion* +drivers/misc/vmw_balloon.ko +drivers/net/ethernet/8390/8390.ko +drivers/net/ethernet/realtek/8139too.ko +drivers/net/ethernet/realtek/8139cp.ko +drivers/net/appletalk/ipddp.ko +drivers/net/bonding/bonding.ko +drivers/net/ppp/bsd_comp.ko +drivers/net/dummy.ko +drivers/net/ethernet/intel/e1000/e1000.ko +drivers/net/ethernet/intel/e1000e/e1000e.ko +drivers/net/eql.ko +drivers/net/ifb.ko +drivers/net/ethernet/intel/igbvf/igbvf.ko +drivers/net/ethernet/intel/ixgbevf/ixgbevf.ko +drivers/net/macvlan.ko +drivers/net/macvtap.ko +drivers/net/ethernet/8390/ne2k-pci.ko +drivers/net/netconsole.ko +drivers/net/ethernet/amd/pcnet32.ko +drivers/net/hyperv/hv_netvsc.ko +drivers/net/ppp/* +drivers/net/slip/* +drivers/net/veth.ko +drivers/net/vmxnet3/vmxnet3.ko +drivers/net/xen-netback/* +drivers/parport/parport.ko +drivers/parport/parport_pc.ko +drivers/pci/hotplug/acpiphp.ko +drivers/net/ethernet/dec/tulip/* +drivers/scsi/BusLogic.ko +drivers/scsi/iscsi_tcp.ko +drivers/scsi/libiscsi.ko +drivers/scsi/libiscsi_tcp.ko +drivers/scsi/libsas/* +drivers/scsi/qla1280.ko +drivers/scsi/raid_class.ko +drivers/scsi/scsi_transport_fc.ko +drivers/scsi/scsi_transport_iscsi.ko +drivers/scsi/scsi_transport_sas.ko +drivers/scsi/scsi_wait_scan.ko +drivers/scsi/scsi_tgt.ko +drivers/scsi/vmw_pvscsi.ko +drivers/scsi/hv_storvsc.ko +drivers/usb/storage/usb-storage.ko +drivers/video/cirrusfb.ko +drivers/video/output.ko +drivers/video/syscopyarea.ko +drivers/video/sysfillrect.ko +drivers/video/sysimgblt.ko +drivers/video/vesafb.ko +drivers/video/vga16fb.ko +drivers/video/vgastate.ko +drivers/video/xen-fbfront.ko +drivers/video/fb_sys_fops.ko +drivers/virtio/virtio_balloon.ko +drivers/watchdog/softdog.ko +drivers/xen/* +fs/binfmt_misc.ko +fs/btrfs/* +fs/cachefiles/cachefiles.ko +fs/configfs/* +fs/ext*/* +fs/fat/* +fs/nls/nls_cp437.ko +fs/nls/nls_iso8859-1.ko +fs/isofs/* +fs/cifs/* +fs/xfs/* +fs/ufs/* +fs/squashfs/* +fs/nfs/* +fs/nfsd/* +fs/nfs_common/* +fs/fscache/* +fs/lockd/* +fs/autofs4/autofs4.ko +fs/overlayfs/* +lib/* +net/802/* +net/8021q/* +net/appletalk/* +net/atm/* +net/ax25/* +net/bridge/* +net/can/* +net/core/* +net/dccp/* +net/decnet/* +net/econet/* +net/ieee802154/* +net/ipv4/* +net/ipv6/* +net/ipx/* +net/irda/* +net/key/* +net/lapb/* +net/llc/* +net/mac80211/* +net/netfilter/* +net/netrom/* +net/phonet/* +net/rose/* +net/rxrpc/* +net/sched/* +net/sctp/* +net/tipc/* +net/wanrouter/* +net/wireless/* +net/x25/* +net/xfrm/* +net/sunrpc/auth_gss/auth_rpcgss.ko +net/sunrpc/sunrpc.ko +sound/soundcore.ko +sound/core/* +sound/pci/snd-ens1370.ko +sound/drivers/pcsp/snd-pcsp.ko --- linux-3.2.0.orig/debian.master/control.d/vars.powerpc64-smp +++ linux-3.2.0/debian.master/control.d/vars.powerpc64-smp @@ -0,0 +1,6 @@ +supported="64-bit PowerPC SMP" +target="Geared toward desktop or server systems." +desc="64-bit PowerPC SMP" +bootloader="yaboot" +provides="redhat-cluster-modules, ivtv-modules" +arch="powerpc ppc64" --- linux-3.2.0.orig/debian.master/control.d/vars.highbank +++ linux-3.2.0/debian.master/control.d/vars.highbank @@ -0,0 +1,8 @@ +arch="armhf" +supported="Calxeda highbank" +desc="Calxeda highbank ARM Server" +target="Targeted towards Calxeda highbank ARM Server" +bootloader="flash-kernel" +provides="" +section_image="universe/base" +do_debug="Yes" --- linux-3.2.0.orig/debian.master/control.d/vars.virtual +++ linux-3.2.0/debian.master/control.d/vars.virtual @@ -0,0 +1,6 @@ +arch="i386 amd64" +supported="Virtual" +target="Geared toward virtual appliances." +desc="=HUMAN= Virtual Guests" +bootloader="grub-pc | grub | lilo (>= 19.1)" +provides="kvm-api-4, redhat-cluster-modules, ivtv-modules, ndiswrapper-modules-1.9" --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/abiname +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/abiname @@ -0,0 +1 @@ +25 --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/powerpc/powerpc64-smp.modules +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/powerpc/powerpc64-smp.modules @@ -0,0 +1,3040 @@ +3c359 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250 +8250_dw +8250_pci +8390 +88pm860x_bl +88pm860x_onkey +88pm860x-ts +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a3d +a8293 +aacraid +aat2870_bl +aat2870-regulator +ab3100 +ab3100-otp +ab8500-ponkey +ab8500-usb +abyss +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act_csum +act_gact +act_ipt +actisys-sir +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5398 +ad5446 +ad5504 +ad5624r_spi +ad5686 +ad5791 +ad5930 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7280a +ad7291 +ad7298 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad799x +ad9832 +ad9834 +ad9850 +ad9852 +ad9910 +ad9951 +adcxx +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adfs +adi +adis16060 +adis16080 +adis16130 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm8211 +adm9240 +adp5520_bl +adp5520-keys +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7343 +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af_802154 +af9013 +af_alg +affs +af_key +af-rxrpc +ah4 +ah6 +aha152x_cs +ahci_platform +aic79xx +aic7xxx +aic94xx +aiptek +aircable +airo +airo_cs +airport +ak881x +ak8975 +alauda +algif_hash +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera_jtaguart +altera_ps2 +altera-stapl +altera_uart +amc6821 +amd5536udc +amd8111e +amd8111_edac +amd8131_edac +amd-rng +ams369fg06 +analog +ansi_cprng +anubis +aoe +apds9802als +apds990x +appledisplay +appletalk +appletouch +applicom +ar7part +arc4 +arcmsr +arcnet +arc-rawmode +arc-rimi +ark3116 +arkfb +arptable_filter +arp_tables +arpt_mangle +as5011 +asc7621 +asix +asus_oled +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +ata_generic +ata_piix +atbm8830 +aten +ath +ath3k +ath5k +ath6kl +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atxp1 +atyfb +au0828 +au8522 +aufs +authenc +authencesn +auth_rpcgss +autofs4 +avma1_cs +avm_cs +avmfritz +ax25 +axnet_cs +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bch +bcm203x +bcm3510 +bcm5974 +bcma +bcm_wimax +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bma150 +bmp085 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bonding +bpa10x +bpck +bpqether +bq20z75 +bq24022 +bq27x00_battery +br2684 +brcmfmac +brcmsmac +brcmutil +bridge +broadsheetfb +bsd_comp +bsr +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btcx-risc +btmrvl +btmrvl_sdio +btrfs +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +bw-qcam +c4 +c67x00 +cachefiles +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +camellia +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5 +cast6 +catc +cb710 +cb710-mmc +c_can +c_can_platform +cciss +ccm +cdc-acm +cdc_eem +cdc_ether +cdc_ncm +cdc-phonet +cdc_subset +cdc-wdm +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +chipreg +chnl_net +ci13xxx_pci +cifs +cirrusfb +clearpad_tm1217 +clip +cls_basic +cls_cgroup +cls_flow +cls_fw +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmtp +cnic +cobra +coda +com20020 +com20020_cs +com20020-pci +com90io +com90xx +comm +configfs +cordic +core +cp210x +cpc925_edac +cpia2 +cpufreq_spudemand +cpufreq_stats +cpu-notifier-error-inject +c-qcam +cramfs +crc7 +crc8 +crc-ccitt +crc-itu-t +cryptd +cryptoloop +crypto_null +crypto_user +crystalhd +cs5345 +cs53l32a +ctr +cts +cuse +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx8800 +cx8802 +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx88xx +cxacru +cxd2099 +cxd2820r +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxt1e1 +cy8ctmg110_ts +cyber2000fb +cyberjack +cyclades +cyclomx +cycx_drv +cypress_cy7c63 +cypress_m8 +cytherm +da9030_battery +da9034-ts +da903x +da903x_bl +DAC960 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +de600 +de620 +decnet +deflate +defxx +denali +des_generic +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +display +divacapi +divadidd +diva_idi +diva_mnt +divas +dl2k +dlci +dlm +dm1105 +dm9601 +dm-bufio +dm-crypt +dmfe +dm-log +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-thin-pool +dmx3191d +dm-zero +dnet +dn_rtmsg +doc2000 +doc2001 +doc2001plus +docecc +docg3 +docprobe +drbd +drm +drm_kms_helper +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt3155v4l +dtl1_cs +dummy +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-it913x +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dwc3 +dwc3-omap +dwc3-pci +dynapro +e100 +e1000 +e1000e +earth-pt1 +easycap +eata +ebt_802_3 +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_ulog +ebt_vlan +ec100 +echo +econet +edac_core +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +ehv_bytechan +electra_cf +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +emc1403 +emc2103 +emc6w201 +em_cmp +emi26 +emi62 +em_meta +em_nbyte +empeg +ems_pci +ems_pcmcia +ems_usb +em_text +emu10k1-gp +em_u32 +enc28j60 +enclosure +eni +enic +epat +epia +epic100 +eql +esd_usb2 +esi-sir +esp4 +esp6 +et131x +et61x251 +ethoc +evbug +exofs +ext2 +f75375s +fakephp +farsync +fat +faulty +fcoe +fcrypt +fdomain +fdomain_cs +fealnx +ff-memless +firedtv +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +fit2 +fit3 +fixed +floppy +fm801-gp +fm_drv +fmvj18x_cs +forcedeth +fore_200e +freevxfs +friq +frpw +fsa9480 +fscache +fsl_elbc_nand +ft1000 +ft1000_pcmcia +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +funsoft +g450_pll +g760a +g_acm_ms +gadgetfs +gamecon +gameport +garmin_gps +garp +g_audio +g_cdc +gcm +g_dbgp +gdth +generic +generic_bl +gen_probe +g_ether +gf128mul +gf2k +g_ffs +gfs2 +ghash-generic +g_hid +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +g_mass_storage +g_midi +g_ncm +g_nokia +go7007 +go7007-usb +goku_udc +gpio-74x164 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-charger +gpio-fan +gpio-generic +gpio-i2cmux +gpio-it8761e +gpio-janz-ttl +gpio_keys +gpio_keys_polled +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio_mouse +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-tps65912 +gpio-twl4030 +gpio_vbus +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +g_printer +gre +grip +grip_mp +g_serial +gspca_benq +gspca_conex +gspca_cpia1 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +g_webcam +gxt4500 +g_zero +hamachi +hampshire +hangcheck-timer +hanwang +hci_uart +hci_vhci +hdlc +hdlc_cisco +hdlcdrv +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfcmulti +hfcpci +hfcsusb +hfc_usb +hfs +hfsplus +hid +hid-a4tech +hid-apple +hid-axff +hid-belkin +hid-cherry +hid-chicony +hid-cypress +hid-dr +hid-elecom +hid-emsff +hid-ezkey +hid-gaff +hid-gyration +hid-holtekff +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-logitech +hid-logitech-dj +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hidp +hid-petalynx +hid-picolcd +hid-pl +hid-primax +hid-prodikeys +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-kovaplus +hid-roccat-pyra +hid-samsung +hid-sjoy +hid-sony +hid-speedlink +hid-sunplus +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-wacom +hid-waltop +hid-wiimote +hid-zpff +hid-zydacron +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hmc5843 +hmc6352 +hopper +hostap +hostap_cs +hostap_pci +hostap_plx +hp100 +hp4x +hpfs +hpilo +hpsa +hptiop +hso +htc-pasic3 +hwa-hc +hwa-rc +hwmon-vid +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-sdio +i2400m-usb +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-designware-pci +i2c-dev +i2c-diolan-u2c +i2c-eg20t +i2c-gpio +i2c-i801 +i2c-intel-mid +i2c-isch +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pasemi +i2c-pca-platform +i2c-piix4 +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-xiic +i2o_block +i2o_bus +i2o_core +i2o_proc +i2o_scsi +i5k_amb +i82092 +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_mad +ibmaem +ibmpex +ib_mthca +ibmtr_cs +ibmveth +ibmvfc +ibmvscsic +ib_qib +ib_sa +ib_srp +ib_ucm +ib_umad +ib_uverbs +ics932s401 +idmouse +idt77252 +ieee802154 +ifb +iforce +igb +igbvf +iio_dummy +iio-trig-gpio +iio-trig-periodic-rtc +iio-trig-sysfs +ili9320 +imm +imon +imx074 +industrialio +inet_diag +inexio +inftl +initio +input-polldev +int51x1 +intel_vr_nor +interact +ioc4 +io_edgeport +io_ti +iowarrior +ip6_queue +ip6table_filter +ip6table_mangle +ip6table_raw +ip6_tables +ip6table_security +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_LOG +ip6t_mh +ip6t_REJECT +ip6t_rt +ip6_tunnel +ipaq +ipcomp +ipcomp6 +ipddp +ipg +ip_gre +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_watchdog +ip_queue +ipr +ips +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netport +ip_set_list_set +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +ip_tables +iptable_security +ipt_ah +ipt_CLUSTERIP +ipt_ecn +ipt_ECN +ipt_LOG +ipt_MASQUERADE +ipt_NETMAP +ipt_REDIRECT +ipt_REJECT +ipt_ULOG +ip_vs +ip_vs_dh +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ircomm +ircomm-tty +irda +irda-usb +ir-jvc-decoder +ir-kbd-i2c +irlan +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +irnet +ir-rc5-decoder +ir-rc5-sz-decoder +ir-rc6-decoder +ir-sony-decoder +irtty-sir +ir-usb +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x-fe +itd1000 +iuu_phoenix +ivtv +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iwl3945 +iwl4965 +iwl-legacy +iwlwifi +iwmc3200top +iwmc3200wifi +iw_nes +ix2505v +ixgb +ixgbe +ixgbevf +ixj +ixj_pcmcia +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jsm +kafs +kalmia +kaweth +kbic +kbtab +kernelcapi +keucr +keyspan +keyspan_pda +keyspan_remote +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_ppp +l4f00242t03 +l64781 +lanai +lapb +lapbether +latch-addr-flash +lcd +ld9040 +ldusb +lec +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-da903x +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lt3593 +leds-mc13783 +leds-pca9532 +leds-pca955x +leds-regulator +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-timer +legousbtower +lgdt3305 +lgdt330x +lgs8gxx +lg-vl600 +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libceph +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +libsrp +lightning +line6usb +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_igorplugusb +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_ttusbir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +llc2 +ll_temac +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95241 +lm95245 +lms283gf05 +lnbp21 +lnbp22 +lockd +lp +lp3971 +lp3972 +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc4151 +ltc4215 +ltc4245 +ltc4261 +ltv350qv +lzo +m25p80 +m52790 +m66592-udc +ma600-sir +mac80211 +mac80211_hwsim +mac_hid +macvlan +macvtap +magellan +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +matrix_keypad +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_DAC1064 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +matroxfb_Ti3026 +matrox_w1 +max1111 +max11801_ts +max1363 +max1586 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max2165 +max3100 +max3107 +max6639 +max6642 +max6650 +max6875 +max7359_keypad +max8649 +max8660 +max8903_charger +max8925_bl +max8925_onkey +max8925_power +max8925-regulator +max8952 +max8997 +max8997_charger +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-regulator-core +mc44s803 +mceusb +mcp2120-sir +mcp251x +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md4 +mdc800 +mdio +mdio-bitbang +mdio-gpio +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mem2mem_testdev +memstick +metronomefb +mfd +mga +michael_mic +micrel +microtek +minix +mip6 +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mma8450 +mmc_block +mmc_spi +mos7720 +mos7840 +moto_modem +moxa +mpoa +mpr121_touchkey +mpt2sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrst_max3110 +msdos +msp3400 +mspro_block +mt2060 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtdblock +mtdblock_ro +mtdchar +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtouch +multipath +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwl8k +mxb +mxl111sf-demod +mxl111sf-tuner +mxl5005s +mxl5007t +mxser +myri10ge +nand +nand_bch +nand_ecc +nand_ids +nandsim +natsemi +navman +nbd +nci +ncpfs +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netrom +netxen_nic +newtonkbd +nfc +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nfcwilink +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nfnetlink +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfsd +nftl +nf_tproxy_core +ngene +n_hdlc +nicstar +nilfs2 +niu +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp437 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nop-usb-xceiv +nosy +nouveau +nozomi +n_r3964 +ns558 +ns83820 +nsc-ircc +ntc_thermistor +ntfs +n_tracerouter +n_tracesink +nvidiafb +nxt200x +nxt6000 +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stackglue +ocfs2_stack_o2cb +ocfs2_stack_user +of_mmc_spi +ofpart +of_serial +old_belkin-sir +olympic +omfs +omninet +on20 +on26 +onenand +onenand_sim +opencores-kbd +oprofile +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +output +ov2640 +ov5642 +ov6650 +ov7670 +ov772x +ov9640 +ov9740 +overlayfs +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8023 +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pasemi_edac +pasemi_nand +pasemi-rng +pata_ali +pata_amd +pata_arasan_cf +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cs5520 +pata_cs5530 +pata_cs5536 +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sc1200 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pca9541 +pca954x +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_can +pch_gbe +pch_phub +pch_uart +pch_udc +pci +pci200syn +pcips2 +pci-stub +pcmcia +pcmcia_core +pcmciamtd +pcmcia_rsrc +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +pegasus +penmount +pf +pg +phantom +phison +phonedev +phonet +phram +physmap +physmap_of +pktcdvd +pktgen +pl2303 +platform_lcd +plat_nand +plat-ram +plip +plusb +pluto2 +plx_pci +pm2fb +pm3fb +pm8001 +pmc551 +pmcraid +pn533 +pn544 +pn_pep +pohmelfs +poseidon +powermate +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +pppoatm +pppoe +pppox +ppp_synctty +pps_core +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +prism54 +ps2mult +ps3disk +ps3flash +ps3_gelic +ps3-lpm +ps3rom +ps3stor_lib +ps3vram +pseries_energy +psmouse +pt +pti +pvrusb2 +pwc +qcaux +qcserial +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qnx4 +qt1010 +qt1070 +quatech_usb2 +quota_tree +quota_v1 +quota_v2 +r128 +r592 +r6040 +r8169 +r8187se +r8192e_pci +r8192u_usb +r852 +r8712u +r8a66597-hcd +r8a66597-udc +rack-meter +radeon +radio-i2c-si470x +radio-maxiradio +radio-mr800 +radio-si4713 +radio-tea5764 +radio-timb +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-em-terratec +rc-encore-enltv +rc-encore-enltv2 +rc-encore-enltv-fm53 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-kaiomy +rc-kworld-315u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-snapstream-firefly +rc-streamzap +rc-tbs-nec +rc-technisat-usb2 +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-trekstor +rc-tt-1500 +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +redboot +redrat3 +reed_solomon +reiserfs +renesas_usbhs +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-regulator +ring_sw +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rndis_host +rndis_wlan +rocket +romfs +rose +rotary_encoder +rpadlpar_io +rpaphp +rpcsec_gss_krb5 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800pci +rt2800usb +rt2x00lib +rt2x00pci +rt2x00usb +rt61pci +rt73usb +rtc-88pm860x +rtc-ab3100 +rtc-ab8500 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc_cmos_setup +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1742 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-isl12022 +rtc-isl1208 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8925 +rtc-max8998 +rtc-mc13xxx +rtc-msm6242 +rtc-pcf2123 +rtc-pcf50633 +rtc-pcf8563 +rtc-pcf8583 +rtc-ps3 +rtc-r9701 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-stk17ta8 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtl8150 +rtl8180 +rtl8187 +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192se +rtlwifi +rts5139 +rxkad +s1d13xxxfb +s2250 +s2250-loader +s2255drv +s2io +s3fb +s5h1409 +s5h1411 +s5h1420 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7191 +saa7706h +safe_serial +salsa20_generic +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbe-2t3e3 +sc92031 +sca3000 +sch_atm +sch_cbq +sch_choke +sch_drr +sch_dsmark +sch_gred +sch_hfsc +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_tgt +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +scsi_wait_scan +sctp +sctp_probe +sdhci +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +seeq8005 +sep_driver +seqiv +ser_gigaset +serial_cs +serio_raw +sermouse +serpent +serport +serqt_usb2 +ses +sfc +sha512_generic +shpchp +sht15 +sht21 +si21xx +si4713-i2c +sidewinder +siemens_mpi +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_of_platform +sja1000_platform +skfp +skge +sky2 +sl811_cs +sl811-hcd +slcan +slip +slram +sm501 +sm501fb +sm7xx +smc91c92_cs +sm_common +smm665 +smsc47m192 +smsc75xx +smsc9420 +smsc95xx +smsc-ircc2 +smscufx +smsdvb +smsmdtv +smssdio +smsusb +sn9c102 +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-aoa +snd-aoa-codec-onyx +snd-aoa-codec-tas +snd-aoa-codec-toonie +snd-aoa-fabric-layout +snd-aoa-i2sbus +snd-aoa-soundbus +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs5530 +snd-cs5535audio +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-lib +snd-firewire-speakers +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxygen +snd-oxygen-lib +snd-page-alloc +snd-pcm +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-powermac +snd_ps3 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb16-dsp +snd-sb-common +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-88pm860x +snd-soc-ad1836 +snd-soc-ad193x +snd-soc-ad73311 +snd-soc-adau1373 +snd-soc-adav80x +snd-soc-ads117x +snd-soc-ak4104 +snd-soc-ak4535 +snd-soc-ak4641 +snd-soc-ak4642 +snd-soc-ak4671 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs42l51 +snd-soc-cx20442 +snd-soc-da7210 +snd-soc-dfbmcs320 +snd-soc-jz4740-codec +snd-soc-l3 +snd-soc-lm4857 +snd-soc-max98088 +snd-soc-max98095 +snd-soc-max9850 +snd-soc-max9877 +snd-soc-pcm3008 +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-spdif +snd-soc-ssm2602 +snd-soc-sta32x +snd-soc-tlv320aic23 +snd-soc-tlv320aic26 +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic3x +snd-soc-tlv320dac33 +snd-soc-tpa6130a2 +snd-soc-twl4030 +snd-soc-twl6040 +snd-soc-uda134x +snd-soc-uda1380 +snd-soc-wl1273 +snd-soc-wm1250-ev1 +snd-soc-wm2000 +snd-soc-wm5100 +snd-soc-wm8350 +snd-soc-wm8400 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8727 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8900 +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8940 +snd-soc-wm8955 +snd-soc-wm8960 +snd-soc-wm8961 +snd-soc-wm8962 +snd-soc-wm8971 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8983 +snd-soc-wm8985 +snd-soc-wm8988 +snd-soc-wm8990 +snd-soc-wm8991 +snd-soc-wm8993 +snd-soc-wm8994 +snd-soc-wm8995 +snd-soc-wm8996 +snd-soc-wm9081 +snd-soc-wm9090 +snd-soc-wm-hubs +snd-sonicvibes +snd-tea575x-tuner +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usbmidi-lib +snd-usb-usx2y +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx222 +snd-vx-lib +snd-vxpocket +snd-ymfpci +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solos-pci +soundcore +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spidev +spi-dw-midpci +spi-gpio +spi-lm70llp +spi-oc-tiny +spi-tle62x0 +spi-topcliff-pch +spufs +squashfs +sr030pc30 +ssb +ssfdc +sst25l +ssu100 +st +st1232 +starfire +stb0899 +stb6000 +stb6100 +st_drv +ste10Xp +stex +stinger +stir4200 +stkwebcam +stmmac +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +svcrdma +svgalib +sx8 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synclink +synclink_cs +synclink_gt +synclinkmp +sysv +t1pci +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +tc3589x-keypad +tca6416-keypad +tcm825x +tcm_fc +tcm_loop +tcp_bic +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tdfx +tdo24m +tea +tea5761 +tea5767 +tea6415c +tea6420 +tef6862 +tehuti +tekram-sir +teles_cs +test-kstrtox +test_power +tg3 +tgr192 +therm_pm72 +thmc50 +ths7303 +ti_dac7512 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timb_dma +timberdale +timblogiw +timbuart +timeriomem-rng +tipc +ti_usb_3410_5052 +tlan +tlv320aic23b +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmiofb +tmp102 +tmp401 +tmp421 +tms380tr +tmscsim +tmspci +toim3232-sir +touchit213 +touchright +touchwin +tpm_atmel +tpm_nsc +tps6105x +tps6105x-regulator +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +trancevibrator +tridentfb +ts_bm +tsc2005 +tsc2007 +tsc40 +ts_fsm +ts_kmp +tsl2550 +tsl2563 +tsl2583 +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +tua6100 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw9910 +twidjoy +twl4030_charger +twl4030_keypad +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-usb +twl4030-vibra +twl4030_wdt +twl6030-pwm +twl6030-usb +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +uartlite +uas +ub +ubi +ubifs +ucb1400_core +ucb1400_ts +udc-core +udf +udlfb +ueagle-atm +ufs +uio +uio_aec +uio_cif +uio_netx +uio_pci_generic +uio_pdrv +uio_pdrv_genirq +uio_sercos3 +uli526x +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +uninorth-agp +upd64031a +upd64083 +usb8xxx +usbatm +usb_debug +usb_gigaset +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmouse +usbnet +usbserial +usbsevseg +usb-storage +usbtest +usbtmc +usbtouchscreen +usbvision +usb_wwan +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-compat-ioctl32 +v4l2-int-device +v4l2-mem2mem +vcan +ves1820 +ves1x93 +veth +vfat +vga16fb +vgastate +vgg2432a4 +vhci-hcd +vhost_net +via +via686a +via-ircc +via-rhine +via-sdmmc +via-velocity +videobuf2-core +videobuf2-dma-contig +videobuf2-memops +videobuf2-vmalloc +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videodev +virtio +virtio_balloon +virtio_blk +virtio_console +virtio_mmio +virtio_net +virtio_pci +virtio_ring +virtio-rng +virtual +visor +vivi +vivopay-serial +vlsi_ir +vmac +vmwgfx +vmxnet3 +vp27smpx +vpx3220 +vsxxxaa +vt8231 +vt8623fb +vub300 +vx855 +vxge +w1_bq27000 +w1_ds2408 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1-gpio +w1_smem +w1_therm +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +w9966 +wacom_w8001 +walkera0701 +wanrouter +wanxl +warrior +wbsd +wdrtas +wdt_pci +whci +whci-hcd +whc-rc +whiteheat +wimax +winbond-840 +windfarm_core +windfarm_cpufreq_clamp +windfarm_lm75_sensor +windfarm_max6690_sensor +windfarm_pid +windfarm_pm112 +windfarm_pm121 +windfarm_pm81 +windfarm_pm91 +windfarm_smu_controls +windfarm_smu_sat +windfarm_smu_sensors +wire +wis-ov7640 +wis-saa7113 +wis-saa7115 +wis-sony-tuner +wis-tw2804 +wis-tw9903 +wis-uda1342 +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl12xx_sdio +wl12xx_spi +wl3501_cs +wlags49_h25_cs +wlags49_h2_cs +wm831x_backup +wm831x_bl +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x_power +wm831x-ts +wm831x_wdt +wm8350-hwmon +wm8350_power +wm8350-regulator +wm8350_wdt +wm8400-core +wm8400-regulator +wm8739 +wm8775 +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusbcore +wusb-wa +x25 +x25_asy +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_ipcomp +xfrm_user +xfs +xgifb +xilinx_ps2 +xilinx_uartps +xirc2ps_cs +xircom_cb +xor +xpad +xprtrdma +x_tables +xt_addrtype +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_cluster +xt_comment +xt_connbytes +xt_connlimit +xt_connmark +xt_CONNSECMARK +xt_conntrack +xt_cpu +xt_CT +xt_dccp +xt_devgroup +xt_dscp +xt_DSCP +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_HL +xt_IDLETIMER +xt_iprange +xt_ipvs +xtkbd +xt_LED +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_NFLOG +xt_NFQUEUE +xt_NOTRACK +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_RATEEST +xt_realm +xt_recent +xts +xt_sctp +xt_SECMARK +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_TCPMSS +xt_TCPOPTSTRIP +xt_tcpudp +xt_TEE +xt_time +xt_TPROXY +xt_TRACE +xt_u32 +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zaurus +zcache +zd1201 +zd1211rw +zhenhua +zio +zl10036 +zl10039 +zl10353 +zlib +znet +zr364xx +zram --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/powerpc/powerpc-smp.compiler +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/powerpc/powerpc-smp.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/powerpc/powerpc64-smp +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/powerpc/powerpc64-smp @@ -0,0 +1,12068 @@ +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x8c14518f suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x644aaba2 bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x5c165453 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x024e7441 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x0d0b1483 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x1ebd2d44 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x519462e9 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x53def720 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x5a926fc3 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x64c0b82b pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x92f12aa3 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xad1cfc3a pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xe960f064 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xf5dd6611 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xffd99a3a pi_write_regr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0bdd9d24 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1f6f0d4c ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2acf2d12 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x62fd325d ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6321d1d8 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa28a2ace ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/edac/edac_core 0x54c29cac edac_mc_handle_fbd_ue +EXPORT_SYMBOL drivers/edac/edac_core 0xe672d65d edac_mc_find +EXPORT_SYMBOL drivers/edac/edac_core 0xe85a0545 edac_mc_handle_fbd_ce +EXPORT_SYMBOL drivers/firewire/firewire-core 0x08300ab8 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1fcb3b37 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x27bf9f09 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ec30748 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x339f275f fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x346633ea fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x453a940f fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49a29946 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4e86dd83 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x61ff6a31 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x66b0e697 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dc44b09 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6de14ba9 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6ebdd706 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x750565cd fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x795f4fe5 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7cb83473 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7da3e401 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x879fefaf fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x88387be9 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8d1d5835 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9224ce8f fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9f5cd06c fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa502ea35 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa54ad659 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbca4e620 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe6688edc fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf95da1df fw_card_initialize +EXPORT_SYMBOL drivers/gpu/drm/drm 0x013925d6 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02925ff7 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0371d930 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04203678 drm_connector_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04af1a05 drm_mm_pre_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x091c86d1 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0afb70ea drm_core_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d6645f3 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df34c54 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e3b4c4c drm_core_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ef26353 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fe990d3 drm_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x119b1166 drm_mode_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11c6bd11 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c6276a drm_buffer_read_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14031947 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142b8b35 drm_buffer_copy_from_user +EXPORT_SYMBOL drivers/gpu/drm/drm 0x148bb5d4 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x154da6a0 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16db24af drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1700025d drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aa2ea90 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bc28110 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bccdf4c drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bfd3166 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c51cb34 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd240a5 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e6608a1 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f072c59 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x207a6c92 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2204f7b6 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22aa7a80 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22cea05f drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26470a5f drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x278151d0 drm_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x279aa8f8 drm_mode_create_dithering_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27db88cc drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28ea2fa4 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a8d844f drm_mm_get_block_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a8e1170 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aa9c3ab drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dfb0d4f drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e14d05b drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3074f033 drm_order +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32f07300 drm_get_encoder_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e154ba drm_sman_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39405ab5 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dfa3fcf drm_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x418d79ab drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4197e469 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42458345 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42508fe2 drm_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43384bd9 drm_buffer_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4368f891 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c9a91c drm_sman_set_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x448fda98 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x472cd541 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48a121d8 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498dcb5e drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae33cf7 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b65545b drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc09a98 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de23935 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fb88f47 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51935a75 drm_gem_object_handle_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52673926 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52de785b drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580830f0 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dcf0186 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e20c39e drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e6d594e drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6cbc33 drm_find_cea_extension +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fb516ed drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6044956f drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x668932c0 drm_global_mutex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ab0d2bb drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ac54ac1 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d7375 drm_timestamp_precision +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7087501f drm_mode_detachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x709f4c35 drm_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x733b02ab drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73829e05 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x771e963a drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x772753f3 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78d77d14 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b84d5a7 drm_usb_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1fd6c8 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c8955c7 drm_mode_connector_detach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cb26d39 drm_mm_insert_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d8fe09a drm_mm_search_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e362726 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ede16e4 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4cfa5d drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x804d3106 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80dbdab6 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x838e0344 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85de09f5 drm_mode_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89d02019 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de3ac39 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfb019d drm_buffer_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e4fb989 drm_fasync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ea21a51 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f9965fb drm_mode_attachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9135ab56 drm_get_last_vbltimestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f2d102 drm_sman_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932df43d drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9612ac72 drm_mm_put_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9745d638 drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99322029 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9957715f drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99f91de4 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9acb6bbb drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b402ae6 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b50cb9e drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9baa8959 drm_get_connector_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cc4b9e4 drm_usb_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc25a34 drm_sman_owner_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1eabd87 drm_mode_list_concat +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa237e931 drm_sman_set_manager +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3056457 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa60d2cdd drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa66354e9 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6e1c619 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa757774d drm_connector_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7984573 drm_mm_get_block_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8b9de82 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaca61f60 drm_sysfs_connector_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1fed306 drm_connector_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2b82eea drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4b1bffb drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb688a26d drm_free_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a467b1 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb787380b drm_mode_validate_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb915f479 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb568dea drm_core_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbbcf880 drm_sysfs_connector_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdd4ee08 drm_get_platform_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf2f8241 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf4cb130 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc00afb42 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1be3746 drm_gem_object_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc276481e drm_platform_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3e894d7 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc414c422 drm_vblank_offdelay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7b3c28b drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcde0eef8 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf2eff4 drm_mode_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0429aa6 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08fa3f0 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1cc85b8 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd368975c drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd431287e drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4505342 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f1ab84 drm_sman_owner_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca27c8e drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfdd5c20 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe120600d drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe14cd880 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe14fd967 drm_unbind_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe256edfd drm_sman_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3553657 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4107beb drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe47664d7 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5bdce7e drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6403777 drm_mm_search_free_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d7fd48 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe82ac085 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe87f1411 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe94f045d drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe954ea95 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeaf257d4 drm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb4a6a27 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccc9f7d drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed256cae drm_sman_free_key +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed9baa50 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee4c5fb2 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0179a52 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a0bf79 drm_sman_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0b6a5dd drm_get_usb_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf535f36c drm_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf59d5f34 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf710e078 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7535699 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf764b7a9 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e3dc57 drm_core_reclaim_buffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81985b4 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4f8599 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01062fe0 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0bd16f57 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x246e2438 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x269c81f8 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29647db1 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31f0f942 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42bafc9b drm_fb_helper_single_fb_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x439163b3 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54c14007 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x555191ee drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f4e8fd0 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c5e4287 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78dedac5 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84bb7dab drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89571bdf drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x992aa329 i2c_dp_aux_add_bus +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d251144 drm_fb_helper_panic +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0f9cf00 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa36790c1 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa461de09 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa61791e9 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9b9bf0f drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc469c244 drm_fb_helper_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd2c29b52 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd586ea21 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcdc203c drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe39b5bfc drm_fb_helper_restore_fbdev_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4ce95e1 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe819f520 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf087e1ba drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf3dbe933 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbe0e2db drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfff80d3e drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06935610 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x08943676 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b2fe68c ttm_bo_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1042a482 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x145e6a73 ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x156420b6 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1905e31e ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x197d98ad ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d89df73 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1da1f0f5 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20c34dbd ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21231c56 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24fa4083 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25392771 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c0d51e9 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x321baeee ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x323a8e99 ttm_bo_wait_unreserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fd155ed ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48473c1d ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ec6e423 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5431ffcf ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x597264e1 ttm_bo_wait_cpu +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61bdb34f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64418ad8 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66217096 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c039370 ttm_agp_backend_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f296467 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7586fb3a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75a84302 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7876142f ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a87c041 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ac702f6 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7dcb1e64 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85477881 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86043469 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86a4066d ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8832162b ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a55ef70 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e29981f ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x912f5dfd ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x940438e7 ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x99069f51 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b2be07d ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d06ced6 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa068577d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0fcfd19 ttm_bo_unreserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac0e50d1 ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac360439 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac843717 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0cdc4cd ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1c3d72a ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4a78d92 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb70484eb ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbda0177c ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc831306 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde587405 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5dd75f4 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe80a2ba3 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5a26ed6 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xcf98fad0 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xda6aec1e i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x8640d9ef amd756_smbus +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x37838b44 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d1f522d rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xa8f6808f rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xbdfa292c rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0d204964 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1137d887 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4530026b ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x45e08d69 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x51f7872f ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x60c53c94 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7e858d8d ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8fa28524 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa6004e77 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb521cbf7 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb9af7425 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc014f5f0 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc2e7d139 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcda508ec ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe75f998f ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeae1b334 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd1cdeaf ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01f756a6 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x037414ec ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c82fcf mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x079ff3a6 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b16ce63 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0cc856f2 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1180fb86 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f84918 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171f99f1 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c973255 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f191901 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21b6951c ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23169fa7 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x253e6605 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2707fc7a ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27529c5a ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bfbe859 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ec0c382 ib_free_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f6fa369 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36a0ca71 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a1e33cf ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a8d37da ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44b094a6 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a6f529a ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f2f315b ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50eeb14c ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51382f0a ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51a06adb ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54332b09 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x561f9cd4 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56a671db ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57f4ab85 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x585d93ec ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6448514b ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x66a86622 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x679a95f7 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b6942dc ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bf21065 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7687011c ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x769bbd6a ib_alloc_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77326670 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d1ab2fc ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81fbd3a4 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x833551bf ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84214029 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85ae3902 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x899d8f23 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cf272a8 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d436404 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92b493c9 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96ce6c46 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96e7388a ib_rereg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b17786d ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2593e1d ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3f6aac9 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4636de0 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7e96f98 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc618e34 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc024f599 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc076987b ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca71a65f ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc15ba5a ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce963f5f ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd45ef543 ib_reg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd589fe5a ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9972b5c ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9ba656c ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb68e721 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfd22c0d ib_alloc_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe479ac1d ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe923eaff ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea59c397 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2415847 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3c89021 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf63cad78 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfab154c2 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe079959 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x072782df ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x10ad73aa ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2a506968 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5d21e58f ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x60d74c68 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x946d5d27 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xaa4ceab4 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb0608b7b ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb5d722f6 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbee4398a ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc82bbbb1 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xce0149b2 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfee53803 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x20d8fa2c ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x23f29f68 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2cb9d9b3 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x79692d94 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xcc7fdbc8 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd6748940 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf6b6444b ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f847bc ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07cf5a51 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18382f6a ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x184f3575 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2285ca64 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x22ba595b iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x51237a99 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5a94b494 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x91725519 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9d00573a iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcbb69ee3 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd40cf8fa iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1845c80e rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35aab72c rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3624d082 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x40193762 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x537b355d rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ac8518c rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5f9e936a rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7aed8210 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b213ca0 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x91aae8f1 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x91bf8021 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb31f22af rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb7f79130 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcad65e30 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd57ff28c rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde21e5ae rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde3ac051 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe63ddef0 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe840138e rdma_leave_multicast +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1111d384 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2d70bded gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5d8fa3ab gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9a44aa55 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa020f67c gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbba74754 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe9de1978 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf99a5f7e gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfe01d35b __gameport_register_driver +EXPORT_SYMBOL drivers/input/input-polldev 0x20109264 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7d9bce49 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xbc885669 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc19c49df input_allocate_polled_device +EXPORT_SYMBOL drivers/input/misc/ad714x 0x09bf2ff8 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x8bb91def ad714x_remove +EXPORT_SYMBOL drivers/input/misc/ad714x 0x918a48f8 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xcf1cdb53 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xd77aeaeb cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1a8477ec sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2b5e7062 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x62db8260 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x8bd7ae06 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb7e84fe0 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe79579c2 sparse_keymap_free +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x80673747 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbc9dc160 ad7879_suspend +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf3bd1692 ad7879_resume +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x134b51e9 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47d3fc51 capi_info2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47dbfa0a capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4f790c0d capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x533a14df capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x58e958b8 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6d8c4784 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x77b7d6df capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x788d398c capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7b4a272c capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8d51e9ac capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc1f865f2 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe9f62f29 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed061606 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfb8e25c7 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x03769faf b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2cdd8234 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2fbd0694 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x42f5002b avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4b86215b b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4d4908ec b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x54a50bed b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x92ce0641 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x986f89df b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb263b341 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb98f7b8d b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbacfc936 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcaecb15d b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd65eff8d b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xda557830 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x051b9624 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3666adbb b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5c13f56f t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x61e660e4 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x756eab16 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8b5f024d b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x980bdef1 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc0425e46 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd109d1a8 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x1cf18358 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x0b9090df mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x49110e6d mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe0ff464b mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xeba2812a mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4a96af94 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x968b0643 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7f29ce36 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x8f5a29f0 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe227344e FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xff2db2cf FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x47f7761e isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xa51e13e3 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb90faf77 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdf62945e isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xee2e5785 isacsx_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x6709419f isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc54894de register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xf6d510d9 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1594d52a mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a2b3811 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x347ab5ce recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x38d3227c bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3de705e8 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x466e3d37 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50bfc8c3 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x527816c0 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54451388 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dc7400a mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5de288ca mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5e5d2b88 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x614ede30 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8038d727 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x81ae6126 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8e3e267b recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x95c003e3 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96309324 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb96a4265 confirm_Bsend +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd21ec0b9 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe1e587d7 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe87943cf mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec705b50 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xecff17e6 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf6896b37 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf695714b get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/dm-log 0x60b835d3 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x94819fe9 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xf4bc0d01 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xf7676932 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x28dc7c07 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x45bbdb8f dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4e5483b8 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x64e48e50 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6c570b42 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbe7768fe dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x931067e2 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/tuners/max2165 0xc5aa6eb2 max2165_attach +EXPORT_SYMBOL drivers/media/common/tuners/mc44s803 0xb901c214 mc44s803_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2060 0xbee1bf57 mt2060_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2131 0x98c58011 mt2131_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2266 0xcedd05d9 mt2266_attach +EXPORT_SYMBOL drivers/media/common/tuners/mxl5005s 0x20509c3d mxl5005s_attach +EXPORT_SYMBOL drivers/media/common/tuners/qt1010 0x32782059 qt1010_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18212 0x68b93aac tda18212_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18218 0xfa5e343c tda18218_attach +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/common/tuners/tuner-xc2028 0x2ce92cba xc2028_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc4000 0x2ec2caea xc4000_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc5000 0x7f75c133 xc5000_attach +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x0a85e6a0 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x0b769a39 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x2f9a4a99 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x506782bc flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x60e58099 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x6cee6ca0 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x6f325c41 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x76e9b602 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x7ab77c16 flexcop_device_exit +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x83a26c2c flexcop_device_kfree +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x8846517a flexcop_device_initialize +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x8b548edd flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x92189bdc flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x9f85146a flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xa70a9c41 flexcop_dma_config +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xbb40a505 flexcop_dma_free +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc0ca0266 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xd35e2ef7 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xe89ddfc9 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xedb5a3dd flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x912c4335 bt878_device_control +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xb224f9b2 bt878_stop +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xb5fa3663 bt878_start +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xdff99586 bt878 +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x328cb6de dst_pio_disable +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x6a0c7455 dst_attach +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x98911c2c dst_error_recovery +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xb7c10fe6 write_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xdaeccd0a dst_comm_init +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xedda83ef dst_error_bailout +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xee570479 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xf49a92f1 read_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xffe442ef rdc_reset_state +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst_ca 0x6c5dd9da dst_ca_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0b531d19 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0c4d4a14 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x1001f390 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x1038dc86 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x133b3a22 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x192c9982 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x21a618b7 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x241ed75d dvb_net_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x263ea814 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x26b3820a dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x27c60a5d dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x29b0b679 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x2b889cf1 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x368ad1b6 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x37e5779d dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x40662fc9 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x57bd3b3a dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x5e73e368 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x5f7edbb8 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x606702a6 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6e1626db dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x781d381f dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7f26f3db dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x85f3e829 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x87fcac70 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8df8c893 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xa0895237 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xa319f3c3 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xa6f88c66 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xabf53a50 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xae2431b2 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xb95ee5b5 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbc0d91e1 timeval_usec_diff +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc1677c70 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xed15617c dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf5a4bc36 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x37090d78 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x60b8cc21 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x6125244e dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x82e0117d dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xc30ab0c1 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xe0a8c8df dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xe7375064 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xaf43f23f af9005_rc_decode +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x48374858 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x5de6e0bf dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x8ac8da4b dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x92bf7d03 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x96ee1227 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb9a00f9a dibusb_pid_filter +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xc28c2866 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xc582f05c dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xc8ff81be dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xcb6e296e dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xda62fe17 dibusb_rc_query +EXPORT_SYMBOL drivers/media/dvb/frontends/a8293 0x541b3233 a8293_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/af9013 0xb0260d68 af9013_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/atbm8830 0xce4b7069 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/au8522 0xa7ec4768 au8522_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/bcm3510 0x08b1ab8b bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22700 0x9128861d cx22700_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22702 0x09cb2649 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24110 0xde87eb83 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x6dfd35e8 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x77267907 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24116 0x1ac7658d cx24116_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x27ec0ebe cx24123_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x44c2610f cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/cxd2820r 0x81d081a2 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x395fdf58 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x4c53c3c2 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xaf0d2a2c dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xd2eeac1a dib0070_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xfd934b62 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x05c3039c dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x0b1ec0e1 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x53fdf3b2 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x56fc08fd dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x59fd1058 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x62b699b4 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x93085184 dib0090_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xd65ee841 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xfe38a2a0 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mb 0xf073fc69 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x321f354f dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x4a1441e4 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x7a26cdc6 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x9af78b4f dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xbce684c3 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xcd711278 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x0506f194 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x293e4771 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xcd40ff96 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xcdbe42ee dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x13d6c14a dib7090_get_i2c_tuner +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x2b0f83b4 dib7090_tuner_sleep +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x3c66e853 dib7000p_ctrl_timf +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x44647f44 dib7090_slave_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x70de700f dib7090_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x7343c063 dib7000pc_detection +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x7aa321ee dib7000p_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x85bbe422 dib7000p_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x94a62a35 dib7000p_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x957b2364 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xa96f01e4 dib7090_agc_restart +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xd069b943 dib7000p_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xd97ef48b dib7000p_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xe3ef3488 dib7000p_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xf40909ac dib7000p_update_pll +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x033f00f6 dib8000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x1323773d dib8000_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x25112281 dib8000_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x40a562bd dib8000_remove_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x4e51014f dib8000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x4eef157b dib8000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x6830860c dib8000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x94b7f9aa dib8000_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xa733b21f dib8000_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xaceea29f dib8000_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xbef09180 dib8000_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xe0a70cd4 dib8000_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xe86ec141 dib8000_pwm_agc_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xfcd2db9a dib8000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x27e02bdc dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x970970ff dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xc3d3256f dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xd126602b dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xd6256e78 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x2c9554b0 drxd_config_i2c +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x9d429b2d drxd_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/drxk 0xf357a298 drxk_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ds3000 0x793c99e9 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dvb-pll 0x3d52f164 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ec100 0xc19544e9 ec100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6405 0x766a6476 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6421 0x80d710b4 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6423 0x1e8f727a isl6423_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/it913x-fe 0xd70d5101 it913x_fe_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/itd1000 0x539a8ff1 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ix2505v 0x83741df8 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/l64781 0x0886b63e l64781_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt3305 0x2ec06450 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt330x 0x77b9e215 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgs8gxx 0x83f33e8f lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0x6d2d664f lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0xcbcdcc01 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp22 0xfcb7950c lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a16 0x08b2d7d7 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a20s 0x2f861d66 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt312 0x7597c39f mt312_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt352 0xbef23093 mt352_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt200x 0x4949ed1a nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt6000 0xdbd178d2 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51132 0xd50e688f or51132_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51211 0xdccab157 or51211_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1409 0xe5cea47d s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1411 0x2c20c93b s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0xe7d31d16 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0xff3946a2 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s921 0x0cc2e668 s921_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/si21xx 0x2b3e27f1 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp8870 0x3f027767 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp887x 0x98a2ded2 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb0899 0x263bce2c stb0899_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6000 0xe639e6a1 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6100 0x9b169e79 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0288 0x39f4688f stv0288_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0297 0xfdc3185f stv0297_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0299 0x05c58bf3 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0x3b6bc5dd stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0xa1a15df2 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0900 0x49b4bc7d stv0900_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0xa5760b9d stv090x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0xe9fc0d7c stv090x_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110 0x7bf613dc stv6110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110x 0x03af4b5f stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10021 0x768e2497 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10023 0x6832472d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10048 0x45f7c68c tda10048_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0xaf00e195 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0xcf39a81a tda10046_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10071 0xe2e46a1a tda10071_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10086 0x0749d04d tda10086_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda665x 0xc74ff411 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8083 0x1ed03b59 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8261 0xafddf027 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda826x 0xc71a10b2 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tua6100 0xaef5f764 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1820 0xdffa1e1c ves1820_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1x93 0xe0a64d14 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10036 0x811a3c38 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10039 0x2dc3df66 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10353 0x3ea34416 zl10353_attach +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0x9c53e35b ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x8bc5a3df ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0xa002a215 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x232ec76f lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5f1ecac6 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x70f52c4f lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7d682e00 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x985f7b84 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9e0b6429 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa0bd9a82 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe4551456 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/rc-core 0xa2ad75ae ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf543decd ir_raw_handler_register +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xa17af8cb bttv_sub_register +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xb5bba232 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xde025b61 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x3e56f033 btcx_riscmem_free +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x495e4b0c btcx_calc_skips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x8677330d btcx_riscmem_alloc +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xad2fe38b btcx_sort_clips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xc368f8e6 btcx_align +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xcda0ded2 btcx_screen_clips +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x20b33c68 cx18_release_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2b4e9174 cx18_ext_init +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xaa3fb104 cx18_claim_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xb805f55e cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xc08f011d cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0x475a9703 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0xfc02a356 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/cx2341x 0x166469c1 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/video/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/video/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/video/cx2341x 0x32674195 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5b88faf6 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0x676ed443 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx2341x 0x8943044a cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/video/cx2341x 0xbf1e2dd9 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/video/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x4579bc95 altera_pid_feed_control +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x9247b72f altera_hw_filt_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xb07602cc altera_ci_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xecc78096 altera_hw_filt_init +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x144602f5 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x46e4ca85 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x471e1cfb cx25821_devlist +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x5e6b1f0f cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x678cab50 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x67cc5b8b cx25821_sram_channels +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x81192899 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x9abb548d cx25821_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x9c108005 cx25821_dev_get +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x9f4e3e1c cx25821_devlist_mutex +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xfaf43023 cx25821_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0x81256527 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0xdd93b00d vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x140f5244 cx88_set_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x760ddf41 cx88_get_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x8e94a0d2 cx88_set_freq +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xac4e53b9 cx88_user_ctrls +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xb7721df5 cx88_video_mux +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xcbdaec52 cx8800_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xff80508f cx88_enum_input +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x0311ad57 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x2d0082d8 cx8802_register_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x4e7a492f cx8802_get_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xcd8515ac cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xd43ee040 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xf343e668 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x0c0e5c88 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x16d2699a cx88_vdev_init +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x24277922 cx88_shutdown +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x26eb9130 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x3b8779be cx88_risc_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x405ec106 cx88_ir_stop +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x6dea2221 cx88_wakeup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x71780628 cx88_newstation +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x74b98dc6 cx88_set_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xa1b61ae7 cx88_reset +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xa6d32244 cx88_risc_stopper +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb08adbff cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb2134c2f cx88_sram_channels +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xc0a0645a cx88_core_put +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xcc846e34 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xcd26a252 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xcf9f2627 cx88_free_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xd4728fd8 cx88_core_irq +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xd7f07352 cx88_ir_start +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xee24dbf0 cx88_set_scale +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xf2e9cc59 cx88_get_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xfc85f9b5 cx88_core_get +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xffaa656d cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0xa7e443a6 em28xx_register_extension +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0xe832f678 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x8167bca6 gspca_disconnect +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x98ad2437 gspca_suspend +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xaab21751 gspca_auto_gain_n_exposure +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xb0005edd gspca_dev_probe +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xc6117fde gspca_frame_add +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xf0f9fb9d gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xfda413b7 gspca_resume +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x22ccb908 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x3e2e7968 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x47f9bb69 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x4943ea22 ivtv_api +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x4bac7a59 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x4ca148aa ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x6822943e ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x71bda157 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x99d5f9f1 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xa2551cd6 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xb1b58f70 ivtv_vapi +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xe49531cb ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x0f71dd66 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x14dfecc6 saa7134_boards +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x48d5fcda saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x4921d344 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x616398ee saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x91875dc9 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x9208d853 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xb2d2a5b1 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xe35c670a saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xe38d21e0 saa7134_ts_register +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xef9f4856 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xf1a84028 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xf4cbe177 saa_dsp_writel +EXPORT_SYMBOL drivers/media/video/soc_camera 0x0d9f5b91 soc_camera_lock +EXPORT_SYMBOL drivers/media/video/soc_camera 0x3837f8f9 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/video/soc_camera 0x5f6ac778 soc_camera_host_register +EXPORT_SYMBOL drivers/media/video/soc_camera 0x890ed1e8 soc_camera_unlock +EXPORT_SYMBOL drivers/media/video/soc_camera 0xc398bf6a soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/video/soc_camera 0xf26430f7 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x433952ab soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x6951757b soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x85d52182 soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xcb4b96ae soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x60e5c716 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0xd653af9b tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0xec35d35a tm6000_register_extension +EXPORT_SYMBOL drivers/media/video/tveeprom 0x472710a7 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/video/tveeprom 0x4aff6318 tveeprom_read +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x42c8e001 v4l2_ctrl_next +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x4ed5e0d7 v4l2_chip_match_host +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x50766d69 v4l2_ctrl_query_menu_valid_items +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x5a6580ca v4l2_chip_ident_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x791ab099 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xc0699aac v4l2_ctrl_check +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xed4b0f2e v4l2_chip_match_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xf052e6db v4l2_ctrl_query_menu +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x8b7a385e v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0xe7e9a51c v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0xf7f18d91 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x3ce56b72 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x479a0ae3 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x7f254ff3 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x8456350d videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x8af2c910 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x8e6daa3b videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/video/videobuf2-core 0x7a45456e vb2_querybuf +EXPORT_SYMBOL drivers/media/video/videodev 0x045b3904 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/video/videodev 0x0cc77f3c v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/video/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/video/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/video/videodev 0x19362e19 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/video/videodev 0x2b613da0 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x2c74f94c v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x2f38d076 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0x3161fabb v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0x33b691d4 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/video/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/video/videodev 0x44b39892 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/video/videodev 0x45d006f9 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/video/videodev 0x4842598e v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/video/videodev 0x4d9623e7 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/video/videodev 0x5160979a v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/video/videodev 0x5663debb video_device_release_empty +EXPORT_SYMBOL drivers/media/video/videodev 0x5d6e9b45 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/video/videodev 0x5ebefe4b v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/video/videodev 0x614a18db v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x62d438f8 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x67b3fd8c video_devdata +EXPORT_SYMBOL drivers/media/video/videodev 0x6bcbffca v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x6d0de850 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x7048aa43 video_ioctl2 +EXPORT_SYMBOL drivers/media/video/videodev 0x74a17362 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x768f73e3 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x774221bf v4l2_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0x7769a99e v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x7dee011d v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/video/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/video/videodev 0x83ab4488 video_device_release +EXPORT_SYMBOL drivers/media/video/videodev 0x84302f48 v4l2_ctrl_add_event +EXPORT_SYMBOL drivers/media/video/videodev 0xa855c3ea v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/video/videodev 0xaa6c6f26 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/video/videodev 0xab0e4759 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/video/videodev 0xaca43da9 v4l2_ctrl_del_event +EXPORT_SYMBOL drivers/media/video/videodev 0xb7566a8d v4l2_ctrl_handler_init +EXPORT_SYMBOL drivers/media/video/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/video/videodev 0xc7b803f9 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/video/videodev 0xcdb5e84f __video_register_device +EXPORT_SYMBOL drivers/media/video/videodev 0xd7d3a903 video_device_alloc +EXPORT_SYMBOL drivers/media/video/videodev 0xd94c9ad8 video_unregister_device +EXPORT_SYMBOL drivers/media/video/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/video/videodev 0xe3719f5c v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/video/videodev 0xe6cd4689 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xf2ea0da5 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/video/videodev 0xf75f482c video_usercopy +EXPORT_SYMBOL drivers/media/video/videodev 0xfffd4e8a v4l2_s_ctrl +EXPORT_SYMBOL drivers/memstick/core/memstick 0x18587bba memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x22da93da memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x292a1b22 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2bf428c1 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4688e2ee memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x535bbf54 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6c211f26 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6fc86d6a memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x72a75c45 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8cd685ee memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x90810e8a memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb62614b0 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc152c9ff memstick_new_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e0f39fe mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10369ae1 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10a82af4 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x14910c16 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1d372314 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x25380515 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2831ffe8 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x33a0c735 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x377b6719 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ed81b2f mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5aa4e132 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63f9c941 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74fed5b6 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x792db2d6 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ae61413 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x86babaa5 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8ba7ed94 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa1855af2 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa2e04115 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xad339d53 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xade782d8 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc10f9679 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc3174958 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc50e0b3c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb8182b0 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xddd7411f mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde07a6a1 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe4392d83 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe80a24d8 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0209c1fd mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x22efd98f mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23bc669f mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2c2b88d5 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35b2ff96 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x375f8f09 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3cc986e8 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x403426cc mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x42610ee4 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5d47fe0e mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66d0a6eb mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66eb56a8 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x741e88eb mptscsih_proc_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x79b6d148 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e8fcb4e mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x818b8be3 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8b6e9b27 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8e96931e mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x91288863 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x93dd18f6 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x94845429 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9851cd52 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa8bcb00d mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9cb5340 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb3d569f8 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdf4db7a2 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe802eeb7 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x0ddd80db i2o_cntxt_list_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x0de59c25 i2o_iop_find_device +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x2a843bef i2o_dump_message +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x41b5d1d1 i2o_device_claim +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x44b3801d i2o_parm_field_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x766104ee i2o_driver_notify_controller_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x8b51e48d i2o_cntxt_list_remove +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x8bc9d23b i2o_cntxt_list_add +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x8d269a6e i2o_event_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x96f30b91 i2o_cntxt_list_get_ptr +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x9ef93003 i2o_device_claim_release +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x9f92c10b i2o_driver_unregister +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xa102780b i2o_find_iop +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xa77977da i2o_driver_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb1876d6c i2o_driver_notify_device_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb4c00dcf i2o_controllers +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xbd3f8463 i2o_driver_notify_device_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xc2c608d1 i2o_status_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xc597be4a i2o_msg_get_wait +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xc6900e75 i2o_parm_issue +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xcc0c5976 i2o_parm_table_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xe49f9e0a i2o_driver_notify_controller_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xed885be9 i2o_exec_lct_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xfd96550d i2o_msg_post_wait_mem +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x0aef4a37 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x4d2bf29d pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0a0f0fa1 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19f1f7a8 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x304d2b09 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x648f3e82 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c8289a3 mc13xxx_irq_request_nounmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x81e0f888 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x908760bc mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9bc42b70 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa83c26ee mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad06449f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb3dae053 mc13xxx_irq_ack +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc60a9247 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdc5799c mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/tps6105x 0xcee9a37b tps6105x_get +EXPORT_SYMBOL drivers/mfd/tps6105x 0xeca7e05b tps6105x_mask_and_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0xf45cee45 tps6105x_set +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0x015ee601 pwm_free +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xa4ee3c79 pwm_disable +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xaee34e3d pwm_request +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xd83c7949 pwm_enable +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xdeebfb06 pwm_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x2d59bf41 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x93c4918f ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x4eccc439 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x004af0b0 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xd4c77cd1 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x85167b80 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xbf40714f ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x03d911af tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x1afbfb1f tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x2bccb8b5 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x385a575f tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x3acb1a6c tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x3fe40cb1 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x44e9cbb0 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x4ebe59f6 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5a73a433 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa5deee9c tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8948aff tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xdd0674ff tifm_has_ms_pif +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xd2e2c980 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x8e778be1 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xddb3d27f mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc1b951be cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe8601a60 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xeefc3501 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x22f6a4da register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2a2c871b map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2e98b68c unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x53de3581 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x1cdcf6a9 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x827d0107 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xc59e9b84 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x68295f50 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x7f7ba246 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0122526b nand_default_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x01ce517e nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x03fd4cac nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x3412e6c9 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb728a06a nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xd2141a09 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xfa9f5c82 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x47fb123e nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xa7ac78e7 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xead9b2f7 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x080c8744 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x38800ce6 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x836bdb72 nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x17b0cb59 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x683a5e00 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x842d321b onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x904351f1 flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1a0ba283 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3b8fcf79 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3e743f10 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x990a3527 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa668843c arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe59b648e arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe61d1f75 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe95c34f7 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfa6613e9 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfd6abf54 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x43bb87b7 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x821dab65 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xaddc4997 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x537767d7 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x65c302fd ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7db0e528 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaef6091c ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaf5b7c0b NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc4629ded __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc9bb4813 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdaa8eefb ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf196939e ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfe440a80 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2 0xc8be6c0f bnx2_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xa6e00955 bnx2x_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x5e2d5a10 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x02da0df9 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x06c85038 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1a32e102 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2a725dd5 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x36ddd41e t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4ebf21ef cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x50990add cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x52f053c2 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x635f1592 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9a81584e cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaf196d3e cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb6e968f8 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbdf16787 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd93ce4e8 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf3ca6e14 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfb571b16 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x01bcfeaf cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0daf63cf cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2038fbf1 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22f52a66 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33a06501 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b2b70aa cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4188cf1a cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x572ccf83 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x855e81b8 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86956310 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f53e50d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa397f0b0 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6979383 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb55edcd1 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5872d04 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6f1b1af cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xec500835 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x632a19c7 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf2e2a52 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5a2bc77 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x59927231 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6c780fb0 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xd763c1d7 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xea3846b2 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf4384dbd hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2100a2d6 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x418fbd92 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x440a695a sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6a3c2585 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x86a7f4e7 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9023cf36 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb574b921 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb970119d sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd15edca0 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe053f17c irda_unregister_dongle +EXPORT_SYMBOL drivers/net/mdio 0x0f934475 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xb34a7575 mdio45_ethtool_spauseparam_an +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2cce0747 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x5cf7de72 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5bb5bd05 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8293a5f9 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xcedae2ed pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x604bb282 sungem_phy_probe +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x0a90a59f tmsdev_term +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x14587ed9 tms380tr_close +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x7f7bc0ea tms380tr_netdev_ops +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xbcd23793 tms380tr_interrupt +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xc1fba436 tms380tr_open +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xd2328794 tms380tr_wait +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xe04045ab tmsdev_init +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x38da4725 cycx_intr +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x62be23ea cycx_setup +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x66a4c4e6 cycx_down +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x968458a6 cycx_peek +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xb6f383de cycx_poke +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xfe7cd576 cycx_exec +EXPORT_SYMBOL drivers/net/wan/hdlc 0x14654a6e alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1ec846f9 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x22fa0fb9 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x499f4889 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x612b0407 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x8549a0e9 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x94cecf0e register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x99b04bcc hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc037af20 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe055738f unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe1ef046f unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x1b570cc5 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x026c233b stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x44d8d462 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xd4b3bf77 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0ab068a3 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1000ab3a ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2f3de84d ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x30b5aea8 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ec437e1 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x45da11f3 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e2481d5 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4f5299ca ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x900d9db9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1a9f65b ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa48a7192 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfe9d1e7c ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x047d08ee ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x09054b39 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40d3a2e4 ath9k_cmn_update_ichannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49e7e8c4 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5b1cf15a ath9k_cmn_get_curchannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf59eadf3 ath9k_cmn_padpos +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09768f22 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09a0a2c9 ath9k_hw_proc_mib_event +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c304d76 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12f5d5f2 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x158b0bf9 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b90b387 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cc3677a ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f9fe1b1 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27cdf868 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x297850e2 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a86956e ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cf420c5 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32221636 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x387ed71f ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b778358 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d95037e ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3edd1831 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42ff171c ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4441d831 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45446212 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4582cecd ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45a4a4f9 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46299fbc ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4725eb34 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48db6758 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49bddac0 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b2fb300 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5425a8bf ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a2c7f13 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b8ce9ea ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x624200fe ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6539a364 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67373377 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68e9c896 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ac26131 ath9k_hw_gettxintrtxqs +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b56c6b2 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7018977b ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75f61452 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77072ac9 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b0c5572 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c83b58b ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7efef9dc ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81cd9347 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8584fdef ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d990787 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8dc30ec6 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9217e2c6 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96f7a0d6 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x990962ad ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d0e237f ath9k_hw_htc_resetinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9df134f6 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa04228cf ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa14bf07d ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa94f197b ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacd9f625 ath9k_hw_getdefantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0a650ef ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb150569e ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb956666b ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb86ab37 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbebbce26 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc24eb847 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2f6d9c2 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4ba9f6e ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4cc39f8 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9fc87e5 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaab6e0f ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xccc2b030 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcecf8736 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf49c10f ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf9e21c7 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd120a4b1 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1a89a8f ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4111817 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd64d3b6e ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddb0d83f ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde1d3ecf ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdff17d33 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0294265 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe104ee5a ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe478fe52 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4d53a49 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6485a56 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9d2e7da ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9e78bd5 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee9f0c00 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0cd9059 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4ef16a6 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe2a6238 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/atmel 0x50c8a167 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x7b54c3cf atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x8479887b stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x3da9cb3f brcmf_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0xa3592857 brcmf_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x064216da brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1b8674cf brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x252429a8 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x303ed588 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3e31a11d brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4828a879 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4ac1d450 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x59dcc7c6 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x605519cf brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x72d4d70c brcmu_pktfrombuf +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9fe54a10 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbeca1fe5 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xce7d0093 brcmu_pkttotlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xeb21ea8e brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x107106a8 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x159e1c55 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x23345097 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3023dbb4 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x48e407c2 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x52b8003e hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x57999127 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x59acf248 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x61b23296 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6d3d638b hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7ee56c2e hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x80c551ec hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x83e4d460 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x904641ac prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x96bcc323 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa68530a8 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb5ea4499 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb8dd3d43 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc2644771 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc30051a9 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc9b7c0b6 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xccb689ff hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd62baa41 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xda43e94f hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf0d3f9ce hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0054d8f0 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x09399a2c libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0cfdf2d6 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0db35f81 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x11aec334 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2db6a1e2 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2f3bb7d8 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4884c337 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5afa162d libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x64b5cf70 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6c331629 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7aad4337 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x80a11b54 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x871a588f libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x99a0fe1a libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9f43df8a libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa3f531a4 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xaa08d385 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb3fa08a2 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb74231ab alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc4470f0b libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0083255a iwl_legacy_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0925ac0a iwl_legacy_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0d4a7331 iwl_legacy_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x10189293 iwl_legacy_rx_pm_debug_statistics_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x11e28953 iwl_legacy_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x13c46be1 iwl_legacy_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x144f7f5a iwl_legacy_rx_pm_sleep_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x19a8c0e4 iwl_legacy_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x19b61eaf iwl_legacy_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1eb5167b iwl_legacy_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x25302a84 iwl_legacy_rx_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x26e7483f iwl_legacy_pci_resume +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x28ffa5e1 iwl_legacy_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x299f9e4e iwl_legacy_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x29b9092f iwl_legacy_get_free_ucode_key_index +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2a3e0257 iwl_legacy_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2cd51a25 iwl_legacy_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x303aaa49 iwl_legacy_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x32b25d25 iwl_legacy_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x32b87e47 iwl_legacy_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x361f9acc iwl_legacy_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x38921eae iwl_legacy_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3d9c8692 iwl_legacy_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x41c846bf iwl_legacy_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4276e781 iwl_legacy_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x47560f46 iwl_legacy_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x48b57220 iwl_legacy_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4befbb48 iwl_legacy_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4d4273f8 iwl_legacy_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4ed9d3de iwl_legacy_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4f94c831 iwl_legacy_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x51b5bed4 iwl_legacy_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5665954f iwl_legacy_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x593b14a1 iwl_legacy_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5961cb00 iwl_legacy_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x59fd9216 iwl_legacy_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5b314cde iwl_legacy_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5c3402df iwl_legacy_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5e243f8d iwl_legacy_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5e7f8f6d iwl_legacy_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x656f67e0 iwlegacy_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6a01bf12 iwl_legacy_rx_spectrum_measure_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6e350d01 iwl_legacy_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x741465ad iwl_legacy_rx_reply_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x74b8f3a2 iwl_legacy_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7585ae8d iwl_legacy_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7873ffee iwl_legacy_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7b4eb5cc iwl_legacy_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x811736b5 iwl_legacy_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x81539e8f iwl_legacy_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x82342c62 iwl_legacy_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x83394132 iwl_legacy_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x878b82af iwl_legacy_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8a15a592 iwl_legacy_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8b5f9b5c iwl_legacy_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8b98cd94 iwl_legacy_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8cb69b20 iwl_legacy_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8f5eb782 iwl_legacy_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x97fbac41 iwl_legacy_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9a7e2da2 iwl_legacy_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9b23b285 iwl_legacy_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9cc16e7b iwl_legacy_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9eb041ed iwl_legacy_send_statistics_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa618c0c2 iwl_legacy_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa782b0b6 iwl_legacy_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xabe48768 iwl_legacy_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xae019207 iwlegacy_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xaeec5cfe iwl_legacy_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb323f8e5 iwl_legacy_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb41e7de3 iwl_legacy_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb652990e iwl_legacy_alloc_all +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb83dc64e iwl_legacy_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb92bcfed iwl_legacy_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xbfae710e iwl_legacy_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc002a5cc iwl_legacy_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc0b98302 iwl_legacy_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc182a170 iwl_legacy_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc27513ba iwl_legacy_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc57a2954 iwl_legacy_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc77a9d60 iwl_legacy_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc9288606 iwl_legacy_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xdadfa8d5 iwl_legacy_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xdcaa2751 iwl_legacy_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xdf2b4230 iwl_legacy_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xdf303da6 iwl_legacy_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe1c3fccf iwl_legacy_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe4a882ab iwl_legacy_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe5c19910 iwl_legacy_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe6084b72 iwl_legacy_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe7111e58 iwl_legacy_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf5c350b8 iwl_legacy_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf704a300 iwl_legacy_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfaf031ce iwl_legacy_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x07849596 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1a260580 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x373f37dd __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x482aecd3 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x58e9338a __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8daa79ba __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xbb7e5c47 __tracepoint_iwlwifi_dev_rx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xbff320f5 __tracepoint_iwlwifi_dev_tx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xf6765781 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1aeb9f26 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3bc7491d orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4be736b5 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5f765922 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x657190a3 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6a234714 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6ff1e114 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7038edb3 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x865349ac free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x98788d9c __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9a06ccef orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb46a54fe orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbecdd82c orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcac3bd19 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe5b855c3 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xef8ea552 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x040a7269 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x057c100e rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x104705a3 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x12aded11 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x140ebfdc _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1d204274 _rtl92c_phy_dbm_to_txpwr_Idx +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x274c1800 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x50d50f72 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5338cb72 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5d8090a2 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x66aa2395 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x699ee059 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6b54f6a6 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x72ae1d48 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7ad38c3a rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x817851da _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x81d7e1d5 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x828321fb _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x86800e58 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x87a57f0c _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x8a4f5b15 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x90d0bd14 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa0d59e4f rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa2096cfe rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa6f28407 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa7e4c807 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb019a974 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbb31df01 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbee9c56c rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc3efea95 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd01f0b4b rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd51c04c5 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd9fa59b1 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xda42669e rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xde675053 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe1880e68 rtl92c_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe1a31e81 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe7f79f3e rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf4a67eab _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf6f4b14c rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf9dd41ce rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xfac599f5 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x10cbb230 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x110ae2b2 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x16986eba rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x30b3e695 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x386ec85a rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x404cc93f rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x49e3ba2d rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x852b2de1 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x86391274 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x98729037 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x9a3535a4 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x9be4cd02 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x9fe2f195 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xa208cc55 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xa63eb833 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xa7dbb03c rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xaa412f03 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xb01e0b90 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd26180cd rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xec061928 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xf300f8d8 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xfadeb112 efuse_read_1byte +EXPORT_SYMBOL drivers/parport/parport 0x18a90ca7 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x1c668fba parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x2e0c6a8f parport_read +EXPORT_SYMBOL drivers/parport/parport 0x395a9ddf parport_release +EXPORT_SYMBOL drivers/parport/parport 0x3d674a5c parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x47781bbf parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x55e1ae2b parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x673d2226 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x712fd74e parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x75cbd3b2 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x7704e9dd parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x8c08b5f6 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x9152dbc0 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x918338e1 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x92ab4ecb parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x99ed15e5 parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xa338df9b parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xa885ef65 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xae6ca01a parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xb4639f3a parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xb819e299 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xbee125ca parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc30c61e3 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xd667c1bd parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xe287cdc7 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xec9c011d parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xf36c3f94 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xfb8c34ed parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xfc5b5c0a parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xfe792224 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport_pc 0x46b13df3 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x7257bbfe parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0c3968ea pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x103e7da8 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2616c8e8 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x294e5533 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2b983ac8 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2df7dabb pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x32613d39 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4626dad6 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4c2eb837 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x545cd0bd pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x68e43fd9 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6915a8c5 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6ea10280 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7fb64f46 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x86a48bd8 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbc1e92fd pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc4028e80 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc469c1d8 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe11c78d6 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x08ced9d8 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3fb393a8 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x76c860a4 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa150789f pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbac3d700 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc8998638 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd1465995 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xefd43459 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xeff178ff pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf2e4b3b2 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf66743cc pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x8cfca73f pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa358c14f pccard_static_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x49bd00c1 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x55cf884b pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xe07c4227 pps_unregister_source +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x153a6cab fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1dcb60b9 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2d83db83 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x55a331da fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5642438b fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6694851c fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xba46cf79 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc9dfe1e3 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xffd63919 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x042d58ae fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b752686 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fab7526 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fb7d9d0 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14845805 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x149c7259 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1538ae12 fc_change_queue_depth +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x167c9f74 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x174a5820 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c31cd05 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26637629 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x302f7ff1 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bee16ca fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41c3bc7f fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41cdbc17 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x46e25ec3 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bfac8c0 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52fd59fd fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x597ca663 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b13460c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62aab64d fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63e38a15 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64bc649d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68063b29 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75cb68b5 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75ee2d52 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ba99686 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8134c3b3 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8272d479 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a7aabf4 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b822070 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ecff4c8 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa17a3a8d fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa25cbaac fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae8a7df5 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1fc6cb5 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb959701c fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb6f194f fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc085ff63 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4965ec3 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc55c4ea6 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb372478 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcdc3506b fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcecfd240 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf4658f7 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd1f58379 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd88a094d fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea7dcfc1 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xefe00696 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0d193db fc_change_queue_type +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xe3b9971b mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x05ff4e2a osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0754e6a9 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0829f034 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0da049f8 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0eff34f4 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x118369d7 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1c782591 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x29d5dabc osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34e218b6 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x38aed787 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x39ab0200 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40257776 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x51bea9ac osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x53354aa7 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5ddcb131 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6b916d93 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ba0bead osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x720dffe3 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x85f88a9f osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x86df2310 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9269612c osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa3906835 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa560d581 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaad372c1 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb04b4c28 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc2b50b95 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc89b1ca0 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcd884cf2 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd452b3b1 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd8953e88 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd9bae5f8 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdb36ca17 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xde6fd196 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeac9789b osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf34539a3 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfcfbd4d6 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0ec7e344 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5be58df5 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7754470a osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x8b3cd75e osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x8e6cc97b osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xed05fbda osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x240b8761 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8e9c6dd6 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xaf59f33c qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xbb33ad72 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd4d26855 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe2e4317b qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x6c358d69 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xa7057f35 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xbcd7b301 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x08ec3b2e scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x10cf072a fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x14cec0b0 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x16f63a6c fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1953bba1 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2a25d2a0 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3c919168 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7581b580 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x832a5e89 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x96c8480a fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa86015ea fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xee9b475f fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf1214854 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0902e441 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f0254df sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x14e0cbed sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x226b01e2 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24d612b3 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2ebd7d4f sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3be7fba4 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4522ab6f sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x45a1a929 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5818e77c sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x715b2a8f sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x78ed232f sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x807ac085 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x89fd5fec sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x99ce0632 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9f4e8270 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaa5d084f sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc649fc7b sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6f7cf15 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcac81115 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xccdfbfd7 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee401560 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf04b65eb sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf4ac58af sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf839aa22 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfe456fbd sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x078a439e spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1ccb44c5 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x79256ae8 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x97b4f4b6 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc04423ed spi_schedule_dv_device +EXPORT_SYMBOL drivers/ssb/ssb 0x05333698 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x08df741e ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x12519816 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x15462ba2 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x2015831a ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x237ef4af ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x42cb0847 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x48dec714 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x493a66ec ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x537f06bf ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x75d14601 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x8d7a7884 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xac12db9b ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb1a79cd2 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xb834a263 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xc04b4e84 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd2be9c77 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe2f5b906 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xe9b86bae ssb_bus_pcibus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf4a88c4a ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xfbe2293f ssb_bus_suspend +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x0ef6dfe4 adt7316_disable +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x39b692be adt7316_remove +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x7415f83e adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf55aefff adt7316_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x02eccaaf iio_buffer_store_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x1b0e928a iio_allocate_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x23233693 iio_trigger_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2675f010 iio_push_event +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4c4b735b iio_trigger_notify_done +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4cbeedf6 iio_free_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x52e98adc iio_buffer_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x544d8e73 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x62004358 iio_buffer_read_bytes_per_datum +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x6611438a iio_allocate_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x78546a9e iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x877c09ed iio_trigger_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x8804dd20 iio_bus_type +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x8b44b209 iio_buffer_read_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xaa4ce2ee iio_buffer_show_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb44f99b1 iio_trigger_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb70c6c48 iio_buffer_write_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb8df4b84 iio_read_const_attr +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xbbfe48cf iio_device_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd5024a28 iio_device_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd6012be6 iio_sw_buffer_preenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdcb5debe iio_free_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdea7e971 iio_buffer_init +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf64c94ad iio_trigger_poll_chained +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf6e82106 iio_buffer_register +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x37e8c396 iio_kfifo_allocate +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xb1d09c11 iio_kfifo_free +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xefc3595f kfifo_access_funcs +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x3a3e7579 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xd6d9e0f4 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x18ff8100 iio_sw_rb_allocate +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x2ec828bd iio_sw_rb_free +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0xba3e16aa ring_sw_access_funcs +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x6f298bb4 cxd2099_attach +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x35efe037 go7007_read_interrupt +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x61e285bd go7007_parse_video_stream +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x76e861f9 go7007_snd_init +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x92e92868 go7007_alloc +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x96ef6305 go7007_register_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x9a307fd3 go7007_read_addr +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xc8fe03d8 go7007_boot_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xcd140c4f go7007_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xf19246ea go7007_snd_remove +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03471090 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0468a14a ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04bc340c ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06255c91 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x067495f9 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06ec3334 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08fe2887 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x134a6381 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1fc76df6 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21c8d7b0 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25fead6b ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2701bf68 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2edc2864 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x33850c53 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a564322 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4534cc9e ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48293ab2 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a7b0217 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ef75544 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5257bea4 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57bae3e0 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c0e125e ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61b0524f ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64d3f793 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66d760a7 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x764f1435 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x784f0d69 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f9e23bd ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x836eb86d ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x843ae512 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8875676f ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d475de9 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99a34c2f IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9aa7aaa4 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ddd63f3 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0b54997 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1204f59 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa64d791b ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa87884b7 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaefc7b60 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1395350 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2724b09 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb383ba4d ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb473db5e ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc04775a1 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc19a2470 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc496613d SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc80de290 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc4b76f3 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd1f5506 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcef7041c ieee80211_send_probe_requests_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6cbc09a HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf761fe9 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8674042 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea7f542a ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed30e440 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/target/target_core_mod 0x02b39467 transport_subsystem_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x03d9d2b7 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x065ff67a target_fabric_configfs_free +EXPORT_SYMBOL drivers/target/target_core_mod 0x084572ce transport_generic_map_mem_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0af32fe8 target_fabric_configfs_init +EXPORT_SYMBOL drivers/target/target_core_mod 0x0fe80ce4 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x11d0d1dc transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x14221597 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x16147790 core_tpg_add_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x17935820 sas_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x1922e732 transport_do_task_sg_chain +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bc7c009 transport_init_queue_obj +EXPORT_SYMBOL drivers/target/target_core_mod 0x1edc9c38 iscsi_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x2072739b target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x22b18037 target_splice_sess_cmd_list +EXPORT_SYMBOL drivers/target/target_core_mod 0x267384b0 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x287f6663 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f9b8a9c transport_generic_handle_cdb_map +EXPORT_SYMBOL drivers/target/target_core_mod 0x313a24a0 fc_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x320f9935 target_fabric_configfs_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x3494d9df __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x41dfab77 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x43b4f2e5 sas_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x43ffc7a2 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x57ec91a2 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x58c23a7e transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x73bb34ac transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x763f3833 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b4b3167 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d7ec6d6 target_get_task_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f15225c fc_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x9868de94 transport_generic_allocate_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xa04f75a0 fc_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6615269 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xab8e06f3 transport_generic_process_write +EXPORT_SYMBOL drivers/target/target_core_mod 0xae122114 transport_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf00fd03 core_tpg_clear_object_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5b4fae5 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdc2374b transport_generic_handle_data +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf82ea84 iscsi_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6ac09d7 iscsi_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xc95d4b5f transport_subsystem_release +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc5f9951 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xd2e472d0 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd34c8eb6 sas_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3d74ba4 fc_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5087d0e core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xda0a3ce6 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcc233d2 iscsi_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xdfd36626 transport_complete_sync_cache +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6f70d04 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xe9f0bd19 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xebe13e96 core_tpg_del_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3f08bc4 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6125186 target_fabric_configfs_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf90ec6b7 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf93ea4fe transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xf981bf00 transport_add_device_to_core_hba +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd29c5a8 sas_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd5d83ab core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xff7bce2d transport_complete_task +EXPORT_SYMBOL drivers/telephony/ixj 0x589200ef ixj_pcmcia_probe +EXPORT_SYMBOL drivers/telephony/phonedev 0x8d87f924 phone_unregister_device +EXPORT_SYMBOL drivers/telephony/phonedev 0x9a83d04c phone_register_device +EXPORT_SYMBOL drivers/tty/serial/8250 0x0003e02b serial8250_do_pm +EXPORT_SYMBOL drivers/tty/serial/8250 0x039591a9 serial8250_do_set_termios +EXPORT_SYMBOL drivers/tty/serial/8250 0x10795d03 serial8250_set_isa_configurator +EXPORT_SYMBOL drivers/tty/serial/8250 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL drivers/tty/serial/8250 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL drivers/tty/serial/8250 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL drivers/tty/serial/8250 0xedd56f85 serial8250_register_port +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xe8659b70 sl811h_driver +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xa64a4cea usb_nop_xceiv_unregister +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xd0e43207 usb_nop_xceiv_register +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x03e8d735 usb_wwan_disconnect +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x088eb03b usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x36514c57 usb_wwan_startup +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3aa46518 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3b74c63f usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4607da76 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4b98ba69 usb_wwan_release +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x85a5673d usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x95e48248 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa6d881ef usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa804eea8 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc996f2e6 usb_wwan_set_termios +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd2549f9a usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe90404c2 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf94b0ea3 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x93b2c612 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb06f40f0 usb_serial_suspend +EXPORT_SYMBOL drivers/video/backlight/generic_bl 0x366d19ef genericbl_limit_intensity +EXPORT_SYMBOL drivers/video/backlight/lcd 0x331bef56 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb1ce97f4 lcd_device_unregister +EXPORT_SYMBOL drivers/video/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/cyber2000fb 0xd89be340 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/display/display 0x84368564 display_device_register +EXPORT_SYMBOL drivers/video/display/display 0x96412d59 display_device_unregister +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x127d503a g450_mnp2f +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x94a8d415 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0xf84cba21 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x2c2e135d matrox_G100 +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x49df269b DAC1064_global_restore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xa3b2874e DAC1064_global_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xc4af6e2e matrox_mystique +EXPORT_SYMBOL drivers/video/matrox/matroxfb_Ti3026 0xf2d1af9d matrox_millennium +EXPORT_SYMBOL drivers/video/matrox/matroxfb_accel 0x93baa3c2 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x093fddcf matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x4633b5cd matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x8c8022eb matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0xf38e8046 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0xe770f285 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0xff25bc25 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x0690ae79 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x52b9d9f6 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x71525ffc matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x7b588e63 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xabd8e427 matroxfb_var2my +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xd237255b matroxfb_read_pins +EXPORT_SYMBOL drivers/video/mb862xx/mb862xxfb 0xbcff3934 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/output 0xa1f08a08 video_output_unregister +EXPORT_SYMBOL drivers/video/output 0xe3bececf video_output_register +EXPORT_SYMBOL drivers/video/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/svgalib 0x1b95c56a svga_check_timings +EXPORT_SYMBOL drivers/video/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/svgalib 0x28d18287 svga_settile +EXPORT_SYMBOL drivers/video/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/svgalib 0x5176aca8 svga_tilecopy +EXPORT_SYMBOL drivers/video/svgalib 0x549b03a1 svga_set_timings +EXPORT_SYMBOL drivers/video/svgalib 0x73efcf90 svga_tileblit +EXPORT_SYMBOL drivers/video/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/svgalib 0x96fdfe8f svga_get_caps +EXPORT_SYMBOL drivers/video/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/svgalib 0xd5dcc737 svga_tilecursor +EXPORT_SYMBOL drivers/video/svgalib 0xdaa6e80e svga_get_tilemax +EXPORT_SYMBOL drivers/video/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/svgalib 0xec83c473 svga_match_format +EXPORT_SYMBOL drivers/video/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/svgalib 0xf36aeecf svga_tilefill +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x26ba6500 w1_bq27000_read +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x9092e1e2 w1_bq27000_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x0527884d w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x1a5cd002 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xd33768a2 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xdc6ff697 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x1dc8e988 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x40765bee w1_ds2780_io_nolock +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xef1b65c7 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x433e3fa1 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x6f12ff74 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x82549b19 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x8b8d767a w1_add_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x1475f144 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x2ebc6963 config_item_init +EXPORT_SYMBOL fs/configfs/configfs 0x3eb39266 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x60786153 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x60e201eb configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x6a9e342c config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xa9647fae configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xbf4644b7 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xdec9f87d config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xdfd46cfa config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xed91fe96 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xf14c22fe config_item_init_type_name +EXPORT_SYMBOL fs/exofs/libore 0x011500ad ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x047a9378 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x1b085b7d ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x52993521 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x872d639f extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x8820864f ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x91b7e6cb ore_read +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa4251013 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xa4aceb85 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xcd2d7b6f ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xe93d7394 ore_put_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x07d9b576 fscache_wait_bit_interruptible +EXPORT_SYMBOL fs/fscache/fscache 0x1d038f50 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x21db0938 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x2807b7c9 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x32fc527e __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3a26efe4 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3fc23318 fscache_wait_bit +EXPORT_SYMBOL fs/fscache/fscache 0x467d0914 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x4a88ec05 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x51a8c258 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x6ce94c52 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x70827296 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x767ae015 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x789a0a93 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x79635428 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x79ac04f1 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x8016b055 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x86f8894f fscache_object_states +EXPORT_SYMBOL fs/fscache/fscache 0x8a140b55 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x8c62ddca __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x99acf427 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xa05658a8 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa48e410b __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xba6873b0 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xbe1a9482 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xbf95feff fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc0111f1a __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xcceb3c43 fscache_object_work_func +EXPORT_SYMBOL fs/fscache/fscache 0xd8833a22 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xe9706453 __fscache_attr_changed +EXPORT_SYMBOL fs/nfsd/nfsd 0x0c8d6829 nfs4_acl_nfsv4_to_posix +EXPORT_SYMBOL fs/nfsd/nfsd 0x2095976a nfs4_acl_new +EXPORT_SYMBOL fs/nfsd/nfsd 0x35e33c1e nfs4_acl_write_who +EXPORT_SYMBOL fs/nfsd/nfsd 0x5a157ae4 nfs4_acl_get_whotype +EXPORT_SYMBOL fs/nfsd/nfsd 0xcbb738be nfs4_acl_posix_to_nfsv4 +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x56ccab52 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdc03c25e qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xe4468e73 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xedca98e7 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf4966938 qtree_delete_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x651c2313 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x276c7e62 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0xc086bfba crc7 +EXPORT_SYMBOL lib/crc7 0xd80c3603 crc7_syndrome_table +EXPORT_SYMBOL lib/crc8 0x3e77b340 crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0518340f lc_find +EXPORT_SYMBOL lib/lru_cache 0x2ff95600 lc_changed +EXPORT_SYMBOL lib/lru_cache 0x3530544e lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x5017d593 lc_del +EXPORT_SYMBOL lib/lru_cache 0x53b654b5 lc_create +EXPORT_SYMBOL lib/lru_cache 0xb4784042 lc_set +EXPORT_SYMBOL lib/lru_cache 0xb4ad2fb0 lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xbd225dab lc_put +EXPORT_SYMBOL lib/lru_cache 0xc2978d4e lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xd4c4212c lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xd861ce80 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xe074efd5 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xf09852de lc_get +EXPORT_SYMBOL lib/lru_cache 0xf5c091d6 lc_reset +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL net/802/p8023 0x3c2c8d1c make_8023_client +EXPORT_SYMBOL net/802/p8023 0xb457eaf7 destroy_8023_client +EXPORT_SYMBOL net/9p/9pnet 0x100648b9 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x126e2504 p9_payload_gup +EXPORT_SYMBOL net/9p/9pnet 0x1aa77364 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x1cd9511d p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x1d7f07ba p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x1ebb0801 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x205d4a3e p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x218ac00e p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x2309b33d p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x237b3377 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x30c3bd80 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3d3f07b9 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4368f544 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x47ab861d p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x49f862e6 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x4b1a6faa p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x61567ef2 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x635ed468 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x6e098f31 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x7a19028a p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7b36b5c3 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x7c9b995f p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x8230fd05 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x826e5ff0 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x839febb0 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x85355952 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x94379b1d p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x977a0030 p9_nr_pages +EXPORT_SYMBOL net/9p/9pnet 0x9c964743 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xa6c43ffb p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xadb94b60 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xb0c7cea9 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xb5cdcd6c p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xb703566e v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xb93c736c v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xbf49c4c2 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbf516887 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcca2bfa5 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xcf2af88c p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xd124c4c4 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xe06edf65 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xe57a6c0f p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe8a7ecda p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xef96f355 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf9289a5d p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x0f7a5066 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x5ae32eec aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x69fab279 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xd6b46dd9 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x03e066b4 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x0ef79b96 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x198dec13 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3323a96f atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x3d36fc19 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x3f3b35d1 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x4ed5d951 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x6425d6d3 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x7e914b88 atm_charge +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xaad379f1 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xc6968c4d atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xe6d5b9c6 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xef5f8d45 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x026c1368 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x0c69e546 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x29a7ce34 ax25_rebuild_header +EXPORT_SYMBOL net/ax25/ax25 0x2deea2d1 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x49ab5314 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x6ca0d301 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9baee0cc ax25_hard_header +EXPORT_SYMBOL net/ax25/ax25 0xbb5f1510 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xdeb1a53c ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xf5a48f64 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xfac92c3d ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x01463740 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x054f6aa5 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a25d9e6 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b6eae8f hci_register_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0fd93774 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x130a22e4 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1a08e4b3 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d434597 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x261ad56c hci_conn_put_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d069d11 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3125ae77 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c18a0a7 hci_le_ltk_reply +EXPORT_SYMBOL net/bluetooth/bluetooth 0x49358d09 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a3771e3 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b599289 bt_printk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bd798fc hci_le_start_enc +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52417ea2 hci_send_sco +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a5045f8 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71abab71 hci_conn_check_link_mode +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7325e4ec hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x75e301fd hci_recv_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79d85597 hci_unregister_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d8c5b0a hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85d2c09a hci_find_link_key_type +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a518b70 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ac145df hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ba60dac hci_conn_change_link_key +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9031c94e hci_connect +EXPORT_SYMBOL net/bluetooth/bluetooth 0x904d69c8 hci_find_ltk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa599b936 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb02311a6 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb749191 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2066af0 batostr +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3a8b013 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd34db279 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd70cb7c0 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb273d76 hci_recv_stream_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7ae3bc0 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8713935 hci_le_conn_update +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec851008 hci_send_acl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf19294db bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf40f518b bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfa37daa9 hci_conn_hold_device +EXPORT_SYMBOL net/bridge/bridge 0x30e6753b br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1abc5009 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7b279280 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfdfabecf ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x35b49017 caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x49d778c5 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x504da5e8 cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x5807d88d caif_free_client +EXPORT_SYMBOL net/caif/caif 0x63e9812a cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x6eb67769 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xbec06e6f get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xf3926732 caif_connect_client +EXPORT_SYMBOL net/can/can 0x1d3e7352 can_ioctl +EXPORT_SYMBOL net/can/can 0x3ae279fd can_proto_register +EXPORT_SYMBOL net/can/can 0x4a245e6c can_rx_register +EXPORT_SYMBOL net/can/can 0x643a3bc1 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xdd1c2141 can_send +EXPORT_SYMBOL net/can/can 0xf6c77484 can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x00691887 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x01196332 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x06335a1b ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x070a1e61 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0d495c3e ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x0ddc5835 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x0e3d0216 ceph_calc_object_layout +EXPORT_SYMBOL net/ceph/libceph 0x197effcb ceph_osdc_release_request +EXPORT_SYMBOL net/ceph/libceph 0x1e24846f ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x23920182 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x2ef5b0ad ceph_osdc_init +EXPORT_SYMBOL net/ceph/libceph 0x33f2d647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3b357b9b ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x3d433b61 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x3e1f462a ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x40851f7a ceph_osdc_stop +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x49b7e973 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x56ff90d7 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5cd578cf ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x65473835 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x6b7d1982 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x7245b278 ceph_calc_raw_layout +EXPORT_SYMBOL net/ceph/libceph 0x72eb03cd ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x74daee66 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x77692acb ceph_msg_last_put +EXPORT_SYMBOL net/ceph/libceph 0x791afe98 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x7d5053ea ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x891d790c ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x90cbf7c9 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x91742005 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x93396641 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x995373d8 ceph_osdc_wait_event +EXPORT_SYMBOL net/ceph/libceph 0x99a3aa85 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9c8b4a4e ceph_monc_create_snapid +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa45e8d7d ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xa5f9bb1f ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xa7bf019c ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xaf8f7098 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb4e49689 ceph_messenger_create +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb71dee37 ceph_osdc_unregister_linger_request +EXPORT_SYMBOL net/ceph/libceph 0xba95d3cb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xbc22558e ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbe90bbb4 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0xc2e5ce68 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xc33e3cd6 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc74b8566 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcc05fc65 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd01b645a ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xd150b1df ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd64bec4b ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xdd07e5bb ceph_copy_page_vector_to_user +EXPORT_SYMBOL net/ceph/libceph 0xe182eb01 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xe1d3400c ceph_messenger_destroy +EXPORT_SYMBOL net/ceph/libceph 0xe2903743 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe66da465 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe891b649 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xe9cd23ab ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xebe1148f ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xec06d7be ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf08c109c ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xf858f7bf ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xfba5146d ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xfe367272 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xfea6fb21 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ieee802154/ieee802154 0x030323d0 ieee802154_nl_assoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x03820469 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0fe10402 wpan_phy_alloc +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1ed8a60f ieee802154_nl_assoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2a9d4b4f ieee802154_nl_disassoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x41c563b6 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7a328aa9 ieee802154_nl_start_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x838a1a08 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb58b6d8f wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xba0a7df2 ieee802154_nl_beacon_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdfcd22ae ieee802154_nl_scan_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe6ab7593 ieee802154_nl_disassoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf6568cac wpan_phy_free +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6973a536 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7102e20b arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf93f4470 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x416efba7 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa6399fd4 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb9cadf28 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x0e752286 nf_nat_protocol_register +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x5b96e712 nf_nat_follow_master +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x88125cab nf_nat_used_tuple +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x8969ab9e __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xb09b238e nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xb0e31d11 nf_nat_setup_info +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xb79a16a2 nf_nat_protocol_unregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x54df1ce0 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xec4434c6 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x007a8a2d ipv6_find_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x530b86ce ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xa76e4711 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8bddf33 ip6t_ext_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xdfd9fbeb ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x7e8da606 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xf4f79748 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1c26841a xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xaee1d732 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x06f17de0 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x22612b9c ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x46af8208 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7ade6cda ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x902a44ac ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x932d6bca ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xabc227de ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xed53642b ircomm_data_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x05a003ba alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0c29b781 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x10522fe7 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x15bea49f irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x2036ad06 irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x22137237 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x37886405 irlap_open +EXPORT_SYMBOL net/irda/irda 0x38a20e5b irda_debug +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x437d3e9e irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x48b61c03 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x5a1824e6 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x5fcf6c4e irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x62c505c0 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x659ae5a2 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x664a4133 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x71b99bd1 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x855c1904 iriap_close +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x95782978 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x993ad14b irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xaced0f85 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xaee1730f irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xafc19c7e proc_irda +EXPORT_SYMBOL net/irda/irda 0xb1371035 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbb0ec9db irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xebf93743 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xed565f24 irlap_close +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf05d264e iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf2aec459 iriap_open +EXPORT_SYMBOL net/irda/irda 0xf3ed6549 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/l2tp/l2tp_core 0xbf24d434 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x277e492f lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x5e39d58f lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x9ec61258 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x9fafa3b5 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xb684f149 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xb6abc9db lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xe8bf282c lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xedc69121 lapb_data_received +EXPORT_SYMBOL net/mac80211/mac80211 0x05247095 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0600daae ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x08d17f95 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0a34ad94 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0e3e0f2c ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x0ea08ba0 ieee80211_get_operstate +EXPORT_SYMBOL net/mac80211/mac80211 0x10dfc8c9 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x12da16f4 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x149bf019 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x17ab7873 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x198e8d3c ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x25aa7460 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x356bccc0 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x3c0c1de6 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x4bf36784 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x4fb39646 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5064ea48 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x54116041 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x55363104 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x55a3466f ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x58466717 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5a14692c ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x5c28cca5 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x5d07b690 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x61b8644e ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x63915eba ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x643de512 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6503ef71 ieee80211_sta_eosp_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x714bebf3 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x7248fcfc ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x72baeca3 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x75379bef ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea8068 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x78ddb794 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x8173a67e ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x84b3c8c3 ieee80211_disable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x8eec2c88 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9329e8d3 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9606de5d rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x9a0090dd ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x9dff7092 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa1c0f0f8 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa4241970 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xa4865447 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xaa157485 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xb1797370 ieee80211_alloc_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb5d048ee ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xba0ccd80 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xc2e9c744 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc512eb72 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xc7e9782e ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xc8e286a0 ieee80211_napi_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xce01fb10 ieee80211_rx +EXPORT_SYMBOL net/mac80211/mac80211 0xd7448e82 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd9bcbb93 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xda14c5a4 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xdbe01809 ieee80211_enable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0xddb47d52 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xde01998a ieee80211_napi_schedule +EXPORT_SYMBOL net/mac80211/mac80211 0xdfcfe196 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe09462b9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe1f92090 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe202850f ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe7a0eb02 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xea07a7e3 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf9b1e4b1 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf9edf699 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xfe2d68fb ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x032bb4b8 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x062af956 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0655920b ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2ec2829a ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x31136f87 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x47a7be35 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4b006709 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x762548f6 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7e6786c8 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x93104370 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa1dbc2d8 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb2f25b76 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb7ea3096 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbfc66208 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe020981b unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1c1fa5d4 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x9115d9c7 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc3bec874 __nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_proto_gre 0x779c32ac nf_ct_gre_keymap_flush +EXPORT_SYMBOL net/netfilter/x_tables 0x0437a75b xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x08c473b7 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x44e3a0c1 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x4b9056c8 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x535fb091 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x59183203 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x7a99866d xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x925a17f5 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xb28f5ef1 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xc96748d4 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xcbeb2769 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xfdb373d5 xt_register_match +EXPORT_SYMBOL net/nfc/nci/nci 0x8b16a83e nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x989a38a2 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa7173141 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xd8e16b14 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf0c1c6ae nci_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x0aec493c nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x2cf1913e nfc_printk +EXPORT_SYMBOL net/nfc/nfc 0x2f1e51c0 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x42314881 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x927bf24d nfc_alloc_skb +EXPORT_SYMBOL net/nfc/nfc 0x9285c546 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xbe4b1cc4 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xdbf2e965 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xfe5be28d nfc_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x093323cb pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x4094501f phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x55a54663 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x5770405d pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xe65c77bc phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xea63b17e pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xeafb003d phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xfd765cdb pn_skb_send +EXPORT_SYMBOL net/rds/rds 0x1c9be661 rds_str_array +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x04c9a8a9 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x177acce2 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1b7996c3 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x25b69888 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5c8dbe83 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5f6ab66d rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x72d85ada rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7d685686 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb10b72d3 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc00bc0a2 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd48755ae key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd7be0f46 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe287f460 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf20c3706 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfef3bd95 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa93ce1d7 svc_pool_stats_open +EXPORT_SYMBOL net/wanrouter/wanrouter 0x0ebe03d1 unregister_wan_device +EXPORT_SYMBOL net/wanrouter/wanrouter 0x96dbe48f register_wan_device +EXPORT_SYMBOL net/wimax/wimax 0x5a95233c wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xef82588c wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x015cabac wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x018fd0d6 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x0409a8e4 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x0822af6d cfg80211_send_rx_auth +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x1581b7ac cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1c2b429b __cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x1e0b8e9c cfg80211_send_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x1e1b324e cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x23560c66 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x24756211 cfg80211_get_mesh +EXPORT_SYMBOL net/wireless/cfg80211 0x286d1cc2 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x299cf54e cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x2e70be2e cfg80211_send_unprot_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x2edf7d69 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x31a0bd9b cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x358a2c79 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x35e4184d __cfg80211_auth_canceled +EXPORT_SYMBOL net/wireless/cfg80211 0x37895871 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x37f4cccc cfg80211_send_rx_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x3d7eacc2 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x3e6f1981 cfg80211_del_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x4422ec87 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x446bd6fc cfg80211_send_unprot_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x45cf2555 ieee802_11_parse_elems_crc +EXPORT_SYMBOL net/wireless/cfg80211 0x490e40c0 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x4d6a868c cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5966645a __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x69d2006d __cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x6b26cdc2 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x6fed01b8 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x7513e94e ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x76b6ad9b cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x77c244a1 cfg80211_testmode_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x85e66353 cfg80211_send_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x8da7bb98 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x8e1f4ca5 cfg80211_inform_bss_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x902135e8 cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x914a295d cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9e642af8 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xa3a142cd cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0xa3fad2ab cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xa574eef1 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xb613575c cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xb67f4890 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xb886cc90 cfg80211_testmode_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f91de cfg80211_inform_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xcb3cd4e0 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xcc8ad419 cfg80211_testmode_event +EXPORT_SYMBOL net/wireless/cfg80211 0xcce9f42b ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xce40864c wiphy_new +EXPORT_SYMBOL net/wireless/cfg80211 0xd3162330 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xdc1826da cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe0f53294 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe1b10535 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xe8bccbbc cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xea50fac3 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xebd9404c cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xeed448ef freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xf0e20617 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xfc0b8b70 cfg80211_testmode_reply +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x03679fff lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2d0f99e5 print_ssid +EXPORT_SYMBOL net/wireless/lib80211 0x2e6fac73 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x4d1ce575 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x836910f5 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xb56e6692 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xf5cbf0c8 lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xdabf3e66 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x116fe9b3 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x467acd55 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xa13a1fe6 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xac907b08 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xaff88780 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x1aa60dbb snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3a57f235 snd_seq_autoload_unlock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xb90668b2 snd_seq_autoload_lock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xc622fb29 snd_seq_device_unregister_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xffd94721 snd_seq_device_register_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x860f25ee snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x096e3cc0 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x19854ff2 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1cc93923 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x20508311 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2ff5271d snd_register_device_for_dev +EXPORT_SYMBOL sound/core/snd 0x37799bf9 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x42d87a3b snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x4566f106 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b015768 snd_iprintf +EXPORT_SYMBOL sound/core/snd 0x518bb7f8 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0x51fc2fec snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x5272037e snd_card_proc_new +EXPORT_SYMBOL sound/core/snd 0x52e1f7c4 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x56a8fec2 snd_cards +EXPORT_SYMBOL sound/core/snd 0x5bb35159 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x61ce3e0c snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x62b503a0 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x68b5c846 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x71a6cb53 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x75fa67ba snd_device_new +EXPORT_SYMBOL sound/core/snd 0x797fb734 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x7bba23c2 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e314868 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x906b8a9c snd_component_add +EXPORT_SYMBOL sound/core/snd 0x906c0dbe snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x90de213d snd_card_register +EXPORT_SYMBOL sound/core/snd 0x93615c04 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x94ead16b snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x9c9faa5f snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x9d412338 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x9e18801f snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa71df397 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xa784e5da snd_add_device_sysfs_file +EXPORT_SYMBOL sound/core/snd 0xa8769786 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xadf64895 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb6bdb12e snd_card_free +EXPORT_SYMBOL sound/core/snd 0xb86daf0e snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xbd0eccc6 snd_card_create +EXPORT_SYMBOL sound/core/snd 0xc35d6ace snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xcf9ed246 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xd3277534 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xd6ab8735 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xdc1df8c1 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xdd4d948f snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xddf0143d snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xe243dde3 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0xe5b132bd snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xeac0ef5b snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xede1354d snd_device_free +EXPORT_SYMBOL sound/core/snd 0xeee7a08e snd_info_register +EXPORT_SYMBOL sound/core/snd 0xf0ca9db0 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xf5f52907 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd-hwdep 0x7348bf06 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-page-alloc 0x19cc2ce3 snd_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x1d61d595 snd_dma_reserve_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0xa0bfc6e5 snd_dma_get_reserved_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0xa778f4cb snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-page-alloc 0xc6829020 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0xde518254 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0xfcad4d8f snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x05ab14f3 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x11834a77 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x1754deb4 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x1959519c snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x19826077 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x1a27634b snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x2b6bcd15 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x3602096d snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x3937d4b9 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b77027b snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x3b93e557 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x43964766 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x4724e7a2 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x53dd0742 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x61f78e07 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x63af5814 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x682c6076 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x68f1fa20 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x6af3568a snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x6c8c7899 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7e742758 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x82870b80 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x8ba48ecf snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x9048537d _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x9e2efaef snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xa33ad6ad snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xade02776 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xae402445 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xb5c2e167 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb6d88103 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbdc94b81 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xc6a36d06 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xc6c59461 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b9b8b8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd5fb21a2 snd_pcm_link_rwlock +EXPORT_SYMBOL sound/core/snd-pcm 0xe07b55fb snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xe51a1c64 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe5e9dc63 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xe5f60edc snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xf1ce72ac snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xf202f940 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xf3797152 snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xf5851a9c snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xf845626f snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xffecdd2b snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-rawmidi 0x00ad462b snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0a55e6d4 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x134da8c7 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x20386350 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2935cb57 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x306f4610 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5bd86f9d snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x775a0de7 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7baf4cc0 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9edfb833 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa177cfff snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaf9f2909 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc74e0add snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcbe58a51 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd946f023 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xef6b2e02 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfe0ba441 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-timer 0x02bcfc1e snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x2a92c523 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x417d3193 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x586f046d snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x5a00ea8e snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x5a972891 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x5bf80ee0 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x6ab53399 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x7dd5f749 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xa9ba658b snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xadf66601 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xb12bbd15 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xbebe9d1d snd_timer_global_free +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x53d64074 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x465094f7 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6320f83e snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x71f62123 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x86adb76d snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd3e9448d snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd41b99ef snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xeb96e969 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf5fbcd66 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfd6325a7 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1f442bd4 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x29b117ff snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5bf099b8 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5e10ac8f snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x77cdfbc7 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9dce3260 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb35e1c1a snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc266af22 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc2fdad96 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e962e54 amdtp_out_stream_set_rate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2203f5ce iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2804bcef fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x428419a1 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a23953e cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c9ca21f fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4d1e1398 amdtp_out_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4f6bbf3f amdtp_out_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x507ba1a7 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5670fe66 amdtp_out_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x59dba9fd fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5d432d87 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ad72181 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x727fc076 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fde354b amdtp_out_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x857616ef amdtp_out_stream_set_pcm_format +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x88045d09 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x895b8f40 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1176df2 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xacd8ce19 amdtp_out_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb06aafdf amdtp_out_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb8e32d91 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc75d9135 amdtp_out_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3700978 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd74bc7a rcode_string +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x11d97fa4 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3f5e3eaa snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4c63591f snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4e7c2c72 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x91910992 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd2ceb3ac snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1b0704f4 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x22dea7df snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x616f2a97 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xacfc2595 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd1982858 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xec688b6f snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb8aef9ea snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcc473a22 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xda8f1c34 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf73a2f9c snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x52a079ce snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf52b1ba7 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0x932cd7f4 snd_tea575x_init +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0xc45af13f snd_tea575x_exit +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1384eddb snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x79176955 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xad63abe1 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc090e270 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe5b7937c snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x32a6ba34 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3bcfb739 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x6fde7c3c snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9b7357c4 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc3d9f8f6 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xcc304d4c snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x16ccaa8f snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x39fbad03 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x55afe0ed snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5b887e24 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5d03e175 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6b60de2a snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7fe2ecbd snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa2edb013 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc4ea4148 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe0785f42 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x0848c1b4 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x6a17a055 snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x8db4fd12 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x01fd60c0 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x06a451ad snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0b87ef88 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1a43a1a8 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6c9ac44f snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x74491392 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x79de2684 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x83da83c6 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x87adb217 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8cb9595d snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x92e181bc snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x98d8a087 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb9038069 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc6d0a7ae snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc7a7717e snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe9364199 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfcfb02c9 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x16def5e4 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3d2cc3d4 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4dff95b9 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x50f3c747 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x97d6ea55 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbf720daf snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xefe8e82b snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf5d2c52d snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf901509f snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/hda/snd-hda-codec 0x5ad63a42 snd_hda_parse_generic_codec +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x179ae63f snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2514422d snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xbee0f4b0 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x11ac0b44 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1221e168 oxygen_pci_resume +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x16e3f604 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x28e63ca8 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a6fc9ca oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5098140e oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x77f83074 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7a0ac4d7 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7dd01986 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7e80b5ff oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8800eb54 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x896c4f14 oxygen_pci_suspend +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e6852c6 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8ec9db4f oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa9a05005 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaf13968e oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb7eede29 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xede8a8ce oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf5497ad0 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf84f207c oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf8d69320 oxygen_write_spi +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0a4b3afe snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x221ffa1c snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x247d8cf2 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4e80f9aa snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9811ef89 snd_trident_free_voice +EXPORT_SYMBOL sound/soundcore 0x32b23085 sound_class +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x92e5723a register_sound_special +EXPORT_SYMBOL sound/soundcore 0x93b09df7 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0x9d3f24c4 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xb5d9e9df register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfa67707a register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0c07634d snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x53998b35 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6a84f78a snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7b29e144 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe378f4b3 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xea613862 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x1ec9d336 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2b78c898 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4f7397a0 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x555e5349 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x91eae737 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9cad7bbf snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd98d99dd snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xf7a680af __snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x0b1ff47d snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00000000 softirq_work_list +EXPORT_SYMBOL vmlinux 0x001e0573 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x002de09c vfsmount_lock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x003837bc __neigh_event_send +EXPORT_SYMBOL vmlinux 0x005a4975 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x006a67c1 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x007dd8f9 jbd2_journal_update_format +EXPORT_SYMBOL vmlinux 0x00801678 flush_scheduled_work +EXPORT_SYMBOL vmlinux 0x00aba930 bh_submit_read +EXPORT_SYMBOL vmlinux 0x00b9f000 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x00be7c35 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x00dac41a arp_send +EXPORT_SYMBOL vmlinux 0x00e0f633 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x00e724a6 skb_store_bits +EXPORT_SYMBOL vmlinux 0x00f42699 files_lglock_global_unlock +EXPORT_SYMBOL vmlinux 0x00f7c3da set_user_nice +EXPORT_SYMBOL vmlinux 0x00fe1e43 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0104c7f2 udp_ioctl +EXPORT_SYMBOL vmlinux 0x01071e62 md_integrity_register +EXPORT_SYMBOL vmlinux 0x0122f95e _lv1_get_spe_irq_outlet +EXPORT_SYMBOL vmlinux 0x013243b9 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x013e0fa0 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x014f0b1a sg_miter_stop +EXPORT_SYMBOL vmlinux 0x01512324 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x01601740 generic_read_dir +EXPORT_SYMBOL vmlinux 0x018d9919 _lv1_set_lpm_interrupt_mask +EXPORT_SYMBOL vmlinux 0x01902adf netpoll_trap +EXPORT_SYMBOL vmlinux 0x019e7765 __init_rwsem +EXPORT_SYMBOL vmlinux 0x01b951b1 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x01db7f7a ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x01f50517 wireless_send_event +EXPORT_SYMBOL vmlinux 0x01f6620b tcp_ioctl +EXPORT_SYMBOL vmlinux 0x020d18d7 _lv1_set_lpm_debug_bus_control +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x027d5499 _lv1_did_update_interrupt_mask +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a67de0 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02bf5598 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x02d81845 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x02fdbd1d tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x03065c5d sock_no_poll +EXPORT_SYMBOL vmlinux 0x0317c4d0 dcb_getapp +EXPORT_SYMBOL vmlinux 0x031dc65e pasemi_dma_free_chan +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03479bcf sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x034cf416 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x034f9e73 param_ops_byte +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x036e09e2 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037f69b2 ps2_drain +EXPORT_SYMBOL vmlinux 0x0382f210 release_pages +EXPORT_SYMBOL vmlinux 0x03975d68 idr_find +EXPORT_SYMBOL vmlinux 0x03ba562a dquot_disable +EXPORT_SYMBOL vmlinux 0x03c06156 bitmap_fold +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x041c2ee2 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0434eeeb pci_dev_driver +EXPORT_SYMBOL vmlinux 0x0440a533 _lv1_net_remove_multicast_address +EXPORT_SYMBOL vmlinux 0x0445a283 dev_uc_del +EXPORT_SYMBOL vmlinux 0x04516228 padata_alloc +EXPORT_SYMBOL vmlinux 0x0455981e journal_ack_err +EXPORT_SYMBOL vmlinux 0x04659f48 nf_afinfo +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04a1527c tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x04acd9cb __cleancache_flush_fs +EXPORT_SYMBOL vmlinux 0x04d040fb __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x04d8178b i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x04dd46b7 __lock_page +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04fd7941 simple_readpage +EXPORT_SYMBOL vmlinux 0x0503ce9b md_done_sync +EXPORT_SYMBOL vmlinux 0x0504bad5 eth_header_cache +EXPORT_SYMBOL vmlinux 0x0508c5a8 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x0521b2ee set_current_groups +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052da13e ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x0540b32a cpu_core_map +EXPORT_SYMBOL vmlinux 0x054434d6 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x056051be tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x056b27aa eth_validate_addr +EXPORT_SYMBOL vmlinux 0x057a7704 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x058e89e8 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05ca3f92 follow_down +EXPORT_SYMBOL vmlinux 0x05cf31ac bio_sector_offset +EXPORT_SYMBOL vmlinux 0x05e113bf nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x05e49f7c twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06391625 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x0639a9e4 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06843c97 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x0686233a neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x06a485f2 __krealloc +EXPORT_SYMBOL vmlinux 0x06b7e548 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x06bbb24a mempool_resize +EXPORT_SYMBOL vmlinux 0x06f5f400 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0704df0a phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x0704fa4b inet6_bind +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x07338b4c fb_pan_display +EXPORT_SYMBOL vmlinux 0x07414e6c ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x0756d7c3 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x076f6e45 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x0780901f register_sysctl_table +EXPORT_SYMBOL vmlinux 0x078a6e0f __invalidate_device +EXPORT_SYMBOL vmlinux 0x079493b6 iget_locked +EXPORT_SYMBOL vmlinux 0x0799aca4 local_bh_enable +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07cbe671 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d9b783 scsi_nl_send_vendor_msg +EXPORT_SYMBOL vmlinux 0x07ef213a pasemi_dma_free_fun +EXPORT_SYMBOL vmlinux 0x07f8ee15 _lv1_unmap_device_dma_region +EXPORT_SYMBOL vmlinux 0x07fac23b seq_write +EXPORT_SYMBOL vmlinux 0x07fb0d43 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084bd89f swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x0887c763 thermal_zone_bind_cooling_device +EXPORT_SYMBOL vmlinux 0x088923d7 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x08a29e60 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x08c11f55 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x08c6d4fc ip_check_defrag +EXPORT_SYMBOL vmlinux 0x08ed0b62 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x09006e54 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x091a0855 mpage_writepage +EXPORT_SYMBOL vmlinux 0x09410012 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x0946a24b llc_sap_close +EXPORT_SYMBOL vmlinux 0x0948cde9 num_physpages +EXPORT_SYMBOL vmlinux 0x094ac533 phy_disconnect +EXPORT_SYMBOL vmlinux 0x096341c2 _lv1_connect_irq_plug_ext +EXPORT_SYMBOL vmlinux 0x09775cdc kref_get +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09a67738 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e36161 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x0a0b226b abx500_register_ops +EXPORT_SYMBOL vmlinux 0x0a2487e0 unblock_all_signals +EXPORT_SYMBOL vmlinux 0x0a3a102b d_validate +EXPORT_SYMBOL vmlinux 0x0a3a3099 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x0a3d0644 cpu_online_mask +EXPORT_SYMBOL vmlinux 0x0a514291 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x0a8f96ac proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x0aac605d sock_i_ino +EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0ac63dda eth_type_trans +EXPORT_SYMBOL vmlinux 0x0acb1a3c __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae35688 unlock_page +EXPORT_SYMBOL vmlinux 0x0af3539e dev_mc_init +EXPORT_SYMBOL vmlinux 0x0b09564a inetdev_by_index +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b197d9b blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b5a2f21 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x0b61b917 proc_create_data +EXPORT_SYMBOL vmlinux 0x0b6fe30f dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x0b7086d9 param_get_short +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b9c3569 proto_unregister +EXPORT_SYMBOL vmlinux 0x0bb3c60b devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0be69ae7 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x0bed0268 do_truncate +EXPORT_SYMBOL vmlinux 0x0bff2ac8 of_node_put +EXPORT_SYMBOL vmlinux 0x0c0557d9 eth_rebuild_header +EXPORT_SYMBOL vmlinux 0x0c192f94 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x0c1ad162 _lv1_net_start_rx_dma +EXPORT_SYMBOL vmlinux 0x0c4231c4 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x0c44b431 bdi_destroy +EXPORT_SYMBOL vmlinux 0x0c517dd0 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x0c65e73c scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x0c7305bc register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x0c7f4167 do_splice_from +EXPORT_SYMBOL vmlinux 0x0c81e345 twl6040_irq_init +EXPORT_SYMBOL vmlinux 0x0c8c9e99 scsi_show_extd_sense +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cbc336c dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x0ccc06a6 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x0d053e28 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x0d3e2af4 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x0d3f55bb napi_gro_frags +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d652bb4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0d815919 framebuffer_release +EXPORT_SYMBOL vmlinux 0x0d864b8d elevator_change +EXPORT_SYMBOL vmlinux 0x0d97d423 pci_find_capability +EXPORT_SYMBOL vmlinux 0x0da08a65 skb_pad +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da52103 mpage_readpage +EXPORT_SYMBOL vmlinux 0x0df10682 tty_get_baud_rate +EXPORT_SYMBOL vmlinux 0x0df2c2e0 posix_acl_create +EXPORT_SYMBOL vmlinux 0x0e0d7dfa __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x0e0f6591 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x0e241adc scsi_prep_state_check +EXPORT_SYMBOL vmlinux 0x0e4b1d13 vfs_create +EXPORT_SYMBOL vmlinux 0x0e52592a panic +EXPORT_SYMBOL vmlinux 0x0e774b66 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x0e81524f netdev_bonding_change +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e93733b d_invalidate +EXPORT_SYMBOL vmlinux 0x0eb14c81 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x0ebe7efa md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x0ec0dbc2 call_usermodehelper_setfns +EXPORT_SYMBOL vmlinux 0x0edab7dc set_anon_super +EXPORT_SYMBOL vmlinux 0x0efeff8d jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x0f029349 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x0f144c75 dentry_open +EXPORT_SYMBOL vmlinux 0x0f19697f mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x0f1a0f9a __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x0f2aa42a sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x0f30ce4d fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x0f59f197 param_array_ops +EXPORT_SYMBOL vmlinux 0x0f615170 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x0f71fdd3 invalidate_partition +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb0e29f init_timer_key +EXPORT_SYMBOL vmlinux 0x0fcb31a8 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x10162ce2 __scm_destroy +EXPORT_SYMBOL vmlinux 0x101ac930 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x1028d930 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x1043699e dquot_get_dqinfo +EXPORT_SYMBOL vmlinux 0x1057dbbd netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x105cc648 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x1075168f tty_mutex +EXPORT_SYMBOL vmlinux 0x1080b756 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x10889130 skb_queue_head +EXPORT_SYMBOL vmlinux 0x109f0c2a vmtruncate +EXPORT_SYMBOL vmlinux 0x10c14ad9 generic_write_end +EXPORT_SYMBOL vmlinux 0x10ccce99 kobject_set_name +EXPORT_SYMBOL vmlinux 0x10d9d048 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f2eb76 vsnprintf +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11267875 scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x1130b917 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x11319356 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x113262f1 put_mnt_ns +EXPORT_SYMBOL vmlinux 0x113c3b65 bio_copy_user +EXPORT_SYMBOL vmlinux 0x114c548d generic_show_options +EXPORT_SYMBOL vmlinux 0x114d8dbf security_task_getsecid +EXPORT_SYMBOL vmlinux 0x11505b2f input_close_device +EXPORT_SYMBOL vmlinux 0x115710b9 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x11633870 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1171b635 _lv1_delete_lpm_event_bookmark +EXPORT_SYMBOL vmlinux 0x117f1d71 journal_dirty_data +EXPORT_SYMBOL vmlinux 0x118f01ea putname +EXPORT_SYMBOL vmlinux 0x11d46a52 bdi_unregister +EXPORT_SYMBOL vmlinux 0x11d4fd8c netdev_state_change +EXPORT_SYMBOL vmlinux 0x11db2c42 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11f9b561 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x122b71ea input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x123f0d8f pci_get_device +EXPORT_SYMBOL vmlinux 0x1253a3b5 dma_async_memcpy_buf_to_buf +EXPORT_SYMBOL vmlinux 0x126f8d2b i2c_master_recv +EXPORT_SYMBOL vmlinux 0x1286a589 make_EII_client +EXPORT_SYMBOL vmlinux 0x12924ef1 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x12a0f56d dquot_drop +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12aa4c5d scsi_calculate_bounce_limit +EXPORT_SYMBOL vmlinux 0x12b602a2 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x12c4ed93 follow_up +EXPORT_SYMBOL vmlinux 0x12c8d073 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x12cb6622 _lv1_map_device_dma_region +EXPORT_SYMBOL vmlinux 0x12dab89a md_unregister_thread +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12f38d1d lock_rename +EXPORT_SYMBOL vmlinux 0x12f99022 inet_frags_init_net +EXPORT_SYMBOL vmlinux 0x12fce654 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x13055d63 netdev_crit +EXPORT_SYMBOL vmlinux 0x13184cd2 try_to_release_page +EXPORT_SYMBOL vmlinux 0x13525854 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x1365b581 qdisc_watchdog_schedule +EXPORT_SYMBOL vmlinux 0x1383de52 simple_link +EXPORT_SYMBOL vmlinux 0x13899567 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x13955d61 d_alloc_root +EXPORT_SYMBOL vmlinux 0x1396092f phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x13a34149 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x13aaea33 start_tty +EXPORT_SYMBOL vmlinux 0x13affbda percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e01a00 netdev_printk +EXPORT_SYMBOL vmlinux 0x13e38f5c up_read +EXPORT_SYMBOL vmlinux 0x13ec80f3 param_set_short +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x13fa074e sock_no_bind +EXPORT_SYMBOL vmlinux 0x141fe5fd pasemi_read_iob_reg +EXPORT_SYMBOL vmlinux 0x142e1ede nobh_writepage +EXPORT_SYMBOL vmlinux 0x1436b661 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x1447f5a3 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x145cef7a pci_enable_msi_block +EXPORT_SYMBOL vmlinux 0x1482dd49 register_key_type +EXPORT_SYMBOL vmlinux 0x14a184aa xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x14a95cb6 scsi_execute_req +EXPORT_SYMBOL vmlinux 0x14d3a51e mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x14daefab macio_release_resource +EXPORT_SYMBOL vmlinux 0x14e7ca7c alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x150e69e7 may_umount_tree +EXPORT_SYMBOL vmlinux 0x151592c4 _lv1_invalidate_htab_entries +EXPORT_SYMBOL vmlinux 0x152927be request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x15296ff7 skb_gso_segment +EXPORT_SYMBOL vmlinux 0x152e1dd9 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x1533d136 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1551dc51 bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x156b7390 bio_integrity_alloc_bioset +EXPORT_SYMBOL vmlinux 0x157cdd1c thaw_bdev +EXPORT_SYMBOL vmlinux 0x15864b03 flex_array_get +EXPORT_SYMBOL vmlinux 0x1587701f lookup_one_len +EXPORT_SYMBOL vmlinux 0x1588e649 seq_bitmap_list +EXPORT_SYMBOL vmlinux 0x15a99746 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x15ea88a3 llc_sap_find +EXPORT_SYMBOL vmlinux 0x15f4ea04 request_key_async +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x16193ba9 dev_close +EXPORT_SYMBOL vmlinux 0x161e5cc7 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x1627ed72 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x1629b023 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x16380d98 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x164762d1 alloc_pci_dev +EXPORT_SYMBOL vmlinux 0x165074dc end_page_writeback +EXPORT_SYMBOL vmlinux 0x168d482a scsi_print_command +EXPORT_SYMBOL vmlinux 0x168e7ea3 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x169d5bbe abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x16c42197 init_timer_deferrable_key +EXPORT_SYMBOL vmlinux 0x16cd67f1 unbind_con_driver +EXPORT_SYMBOL vmlinux 0x16ecdceb netif_carrier_off +EXPORT_SYMBOL vmlinux 0x173009b5 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x1759e13d xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x1776c1ee end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x17827dba scsi_device_get +EXPORT_SYMBOL vmlinux 0x17a9f133 inode_init_once +EXPORT_SYMBOL vmlinux 0x17cb8c79 _lv1_read_htab_entries +EXPORT_SYMBOL vmlinux 0x17cfe8ce pci_dev_put +EXPORT_SYMBOL vmlinux 0x17df17bc sysctl_tcp_ecn +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x182f50af _lv1_open_device +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184ba3f0 note_scsi_host +EXPORT_SYMBOL vmlinux 0x184e6c85 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x185b7dd6 _lv1_modify_repository_node_value +EXPORT_SYMBOL vmlinux 0x186f4216 filp_close +EXPORT_SYMBOL vmlinux 0x1887b02a dev_set_group +EXPORT_SYMBOL vmlinux 0x188c77f9 give_up_console +EXPORT_SYMBOL vmlinux 0x189654db ethtool_op_set_tx_hw_csum +EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x18a3289f netif_skb_features +EXPORT_SYMBOL vmlinux 0x18c85879 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x18c98205 _lv1_destruct_virtual_address_space +EXPORT_SYMBOL vmlinux 0x18e22439 kernel_accept +EXPORT_SYMBOL vmlinux 0x18f894cd udp_poll +EXPORT_SYMBOL vmlinux 0x18fa04d6 mmc_host_lazy_disable +EXPORT_SYMBOL vmlinux 0x18fd6d96 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x19179e54 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x193613cb abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x19391763 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x1963305c mii_nway_restart +EXPORT_SYMBOL vmlinux 0x1967fac7 inet_addr_type +EXPORT_SYMBOL vmlinux 0x1987f6be skb_copy_expand +EXPORT_SYMBOL vmlinux 0x1990a2dd scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x19933fc6 revert_creds +EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c452f5 phy_device_register +EXPORT_SYMBOL vmlinux 0x19c968d1 pasemi_dma_start_chan +EXPORT_SYMBOL vmlinux 0x19e218f0 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x1a042d1f ida_simple_get +EXPORT_SYMBOL vmlinux 0x1a111a41 ftrace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x1a115834 get_fs_type +EXPORT_SYMBOL vmlinux 0x1a2f4b22 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x1a2f6945 __next_cpu +EXPORT_SYMBOL vmlinux 0x1a58edf3 release_sock +EXPORT_SYMBOL vmlinux 0x1a91663d pasemi_dma_free_buf +EXPORT_SYMBOL vmlinux 0x1a9fdb20 bio_alloc +EXPORT_SYMBOL vmlinux 0x1aa8c8ba dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1aad72c7 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x1ac2ef4f blk_put_request +EXPORT_SYMBOL vmlinux 0x1acb5d40 dscr_default +EXPORT_SYMBOL vmlinux 0x1ace138d bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x1af54f36 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b24979d check_disk_change +EXPORT_SYMBOL vmlinux 0x1b4592a7 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6bcdac of_get_mac_address +EXPORT_SYMBOL vmlinux 0x1b88f355 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b9e0ff1 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x1ba8fc86 kill_litter_super +EXPORT_SYMBOL vmlinux 0x1bc1c5d6 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bc79409 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x1bda4068 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x1bdfb093 filp_open +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1c006056 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x1c1af916 set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x1c200a7d pasemi_dma_stop_chan +EXPORT_SYMBOL vmlinux 0x1c2c58dd fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x1c3aab0e input_get_keycode +EXPORT_SYMBOL vmlinux 0x1c3acf9b dev_remove_pack +EXPORT_SYMBOL vmlinux 0x1c4dab93 _lv1_connect_irq_plug +EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete +EXPORT_SYMBOL vmlinux 0x1c65b913 sock_no_listen +EXPORT_SYMBOL vmlinux 0x1c68f687 pipe_lock +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1ca48446 release_firmware +EXPORT_SYMBOL vmlinux 0x1cac944c netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x1cb1f533 genl_unregister_mc_group +EXPORT_SYMBOL vmlinux 0x1cb9e3c1 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x1cc6719a register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x1cdc6651 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x1cf6decf neigh_direct_output +EXPORT_SYMBOL vmlinux 0x1d08e0a7 poll_initwait +EXPORT_SYMBOL vmlinux 0x1d2e87c6 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x1d3865da param_get_invbool +EXPORT_SYMBOL vmlinux 0x1d44ed27 journal_init_dev +EXPORT_SYMBOL vmlinux 0x1d4750bc _lv1_stop_lpm +EXPORT_SYMBOL vmlinux 0x1d4c9419 __brelse +EXPORT_SYMBOL vmlinux 0x1d568f5a blk_start_queue +EXPORT_SYMBOL vmlinux 0x1d6d455e locks_init_lock +EXPORT_SYMBOL vmlinux 0x1d8e83a8 iunique +EXPORT_SYMBOL vmlinux 0x1da11acb tcp_proc_register +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1db410bf simple_statfs +EXPORT_SYMBOL vmlinux 0x1db8d4f8 file_remove_suid +EXPORT_SYMBOL vmlinux 0x1dbf5446 otg_put_transceiver +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddf56f7 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x1de59940 dcb_setapp +EXPORT_SYMBOL vmlinux 0x1e1db3af dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e338418 of_phy_connect +EXPORT_SYMBOL vmlinux 0x1e5be8cb scsi_finish_command +EXPORT_SYMBOL vmlinux 0x1e5e8dc8 __scsi_put_command +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e6fe6f1 idr_init +EXPORT_SYMBOL vmlinux 0x1e71f18b lock_fb_info +EXPORT_SYMBOL vmlinux 0x1e915bc1 netif_device_detach +EXPORT_SYMBOL vmlinux 0x1e9416da dev_trans_start +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eadfc7f ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x1ed5abf3 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x1ef1f75f posix_acl_valid +EXPORT_SYMBOL vmlinux 0x1f131ab6 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x1f24bad6 read_cache_page_async +EXPORT_SYMBOL vmlinux 0x1f40d570 generic_readlink +EXPORT_SYMBOL vmlinux 0x1f52cef8 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x1f712d6e jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x1f7258ea unregister_console +EXPORT_SYMBOL vmlinux 0x1f728aff __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x1f88e729 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x1fcbc359 __quota_error +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe7b4ab pasemi_write_dma_reg +EXPORT_SYMBOL vmlinux 0x1fed01d3 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b016a dquot_resume +EXPORT_SYMBOL vmlinux 0x20108028 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x201494ee _lv1_net_set_interrupt_mask +EXPORT_SYMBOL vmlinux 0x2066d126 scsi_nonblockable_ioctl +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208222af jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x20a02883 inode_permission +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c41e67 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x20cddc7e kset_register +EXPORT_SYMBOL vmlinux 0x20db7026 dm_register_target +EXPORT_SYMBOL vmlinux 0x20dd3a3b fb_set_var +EXPORT_SYMBOL vmlinux 0x210b880a of_phy_connect_fixed_link +EXPORT_SYMBOL vmlinux 0x210e4fc7 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x2132fb31 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x213603bf pasemi_dma_free_ring +EXPORT_SYMBOL vmlinux 0x2144b118 user_path_create +EXPORT_SYMBOL vmlinux 0x214607f1 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x215ebd78 bitrev16 +EXPORT_SYMBOL vmlinux 0x217fe17f pci_match_id +EXPORT_SYMBOL vmlinux 0x21d77f77 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x21f314c2 neigh_update +EXPORT_SYMBOL vmlinux 0x21f678b9 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x221103dc register_gifconf +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ed0c2 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x2235c081 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0x224cae3f arp_xmit +EXPORT_SYMBOL vmlinux 0x225ebee6 _lv1_destruct_lpm +EXPORT_SYMBOL vmlinux 0x226678ba i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x22681140 have_submounts +EXPORT_SYMBOL vmlinux 0x2274de2c of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x2288378f system_state +EXPORT_SYMBOL vmlinux 0x228df324 dcache_readdir +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c7af4d inet_add_protocol +EXPORT_SYMBOL vmlinux 0x22d1ff6f clear_user_page +EXPORT_SYMBOL vmlinux 0x22d3e808 md_check_recovery +EXPORT_SYMBOL vmlinux 0x22d704d2 pci_iounmap +EXPORT_SYMBOL vmlinux 0x230c3722 idr_for_each +EXPORT_SYMBOL vmlinux 0x23112e33 generic_writepages +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23339f8e bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x234509f3 strncat +EXPORT_SYMBOL vmlinux 0x234a671f blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x23687035 __locks_copy_lock +EXPORT_SYMBOL vmlinux 0x2373ed6d thaw_process +EXPORT_SYMBOL vmlinux 0x239d4909 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b6f30a kill_pid +EXPORT_SYMBOL vmlinux 0x23c085f0 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x23c0d9cb tty_free_termios +EXPORT_SYMBOL vmlinux 0x23dfda45 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x23e498b6 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24180682 lock_super +EXPORT_SYMBOL vmlinux 0x241bae71 netif_napi_add +EXPORT_SYMBOL vmlinux 0x24413307 __register_chrdev +EXPORT_SYMBOL vmlinux 0x24472701 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x244a2411 __first_cpu +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245a5a94 sleep_on_timeout +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24962eb7 get_phy_device +EXPORT_SYMBOL vmlinux 0x24a8f562 __destroy_inode +EXPORT_SYMBOL vmlinux 0x24c9eb6d swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x24cfd438 _lv1_copy_lpm_trace_buffer +EXPORT_SYMBOL vmlinux 0x24fc500c kernel_getsockname +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x2523198b key_put +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252b4852 mmc_cache_ctrl +EXPORT_SYMBOL vmlinux 0x253da220 sock_update_classid +EXPORT_SYMBOL vmlinux 0x2553f011 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258355b4 fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x2590d0a3 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x2591517a bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x2597559a dev_disable_lro +EXPORT_SYMBOL vmlinux 0x259afadb blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x25a6bb84 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x25b4b8c8 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x25b6b8f7 _lv1_set_spe_transition_notifier +EXPORT_SYMBOL vmlinux 0x25ba95a0 default_llseek +EXPORT_SYMBOL vmlinux 0x25c677c4 mac_pton +EXPORT_SYMBOL vmlinux 0x25e158fa pci_save_state +EXPORT_SYMBOL vmlinux 0x25fc937b pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x261249c0 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x261ccb93 tcp_v4_md5_do_add +EXPORT_SYMBOL vmlinux 0x262deebb pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x26337152 get_io_context +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x26622300 journal_start_commit +EXPORT_SYMBOL vmlinux 0x266da9e0 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x2685c3d7 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26cd466a pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x26db3663 __get_page_tail +EXPORT_SYMBOL vmlinux 0x26e4ca44 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26ed27e3 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x27277915 vm_stat +EXPORT_SYMBOL vmlinux 0x272a72c3 netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27588481 journal_lock_updates +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x27757f89 uart_match_port +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27ac038d __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27d285cf read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x27d98436 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x27db01f1 generic_make_request +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x280a3501 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282a53c1 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x282ea3e6 serio_open +EXPORT_SYMBOL vmlinux 0x28343bad scnprintf +EXPORT_SYMBOL vmlinux 0x2876a6d3 memcpy_toiovec +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28ae3d12 __put_cred +EXPORT_SYMBOL vmlinux 0x28cbf4d5 dput +EXPORT_SYMBOL vmlinux 0x28da240b pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x291ca072 vfs_write +EXPORT_SYMBOL vmlinux 0x292dd050 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x2935f969 netlink_ack +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2960019b eeh_check_failure +EXPORT_SYMBOL vmlinux 0x297e8a4a __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x298c496d journal_check_used_features +EXPORT_SYMBOL vmlinux 0x29a79d95 vfs_getattr +EXPORT_SYMBOL vmlinux 0x29b96a8a inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x29bd84ff single_open +EXPORT_SYMBOL vmlinux 0x29d73d03 ida_init +EXPORT_SYMBOL vmlinux 0x29fea6f0 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x2a122b14 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x2a265d99 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3c3b4c tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x2a467d54 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x2a708956 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x2a7bc36b con_copy_unimap +EXPORT_SYMBOL vmlinux 0x2a96d6d9 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x2acdd2cb xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x2ad409e8 inet_shutdown +EXPORT_SYMBOL vmlinux 0x2aed917e bioset_free +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b260e82 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2b2bd977 journal_errno +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b4e940a generic_setxattr +EXPORT_SYMBOL vmlinux 0x2b4ef092 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x2b5e0494 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x2b5e6c69 __any_online_cpu +EXPORT_SYMBOL vmlinux 0x2b7dd682 mmc_card_awake +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba07c36 mdiobus_alloc +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bfd598e ppp_input +EXPORT_SYMBOL vmlinux 0x2c1cd4a4 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x2c231c04 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x2c24715c __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c3d2420 dquot_destroy +EXPORT_SYMBOL vmlinux 0x2c3ded55 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x2c4c7997 _lv1_construct_lpm +EXPORT_SYMBOL vmlinux 0x2c77b5e9 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c919c63 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x2c94f088 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x2cbe12d3 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x2cda95d6 d_splice_alias +EXPORT_SYMBOL vmlinux 0x2ce5e80e dma_async_memcpy_pg_to_pg +EXPORT_SYMBOL vmlinux 0x2d01be39 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x2d0b2755 ip_cmsg_recv +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d344277 nla_put +EXPORT_SYMBOL vmlinux 0x2d5528c9 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x2d7b236e splice_from_pipe_end +EXPORT_SYMBOL vmlinux 0x2d7d2767 _lv1_set_lpm_group_control +EXPORT_SYMBOL vmlinux 0x2d89342a scsi_show_sense_hdr +EXPORT_SYMBOL vmlinux 0x2d89d606 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x2db4c99b flush_delayed_work +EXPORT_SYMBOL vmlinux 0x2db7ecaf nobh_write_end +EXPORT_SYMBOL vmlinux 0x2dd638a7 send_sig_info +EXPORT_SYMBOL vmlinux 0x2dd876e4 journal_check_available_features +EXPORT_SYMBOL vmlinux 0x2ddb1db9 scsi_release_buffers +EXPORT_SYMBOL vmlinux 0x2de55071 key_validate +EXPORT_SYMBOL vmlinux 0x2e1945a1 security_file_mmap +EXPORT_SYMBOL vmlinux 0x2e1bef92 eeh_subsystem_enabled +EXPORT_SYMBOL vmlinux 0x2e252542 unlock_rename +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e40737f mach_ps3 +EXPORT_SYMBOL vmlinux 0x2e52336e compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x2e59fc7a ab8500_gpadc_get +EXPORT_SYMBOL vmlinux 0x2e5aba71 fail_migrate_page +EXPORT_SYMBOL vmlinux 0x2e6284cb fsync_bdev +EXPORT_SYMBOL vmlinux 0x2e7738b0 seq_escape +EXPORT_SYMBOL vmlinux 0x2e8a78e9 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x2e909b09 kern_path +EXPORT_SYMBOL vmlinux 0x2e93495e _lv1_write_htab_entry +EXPORT_SYMBOL vmlinux 0x2ec534e9 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x2ed98aaa compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x2edde4ef blk_integrity_is_initialized +EXPORT_SYMBOL vmlinux 0x2ee1f956 idr_pre_get +EXPORT_SYMBOL vmlinux 0x2ee4337f smu_queue_cmd +EXPORT_SYMBOL vmlinux 0x2eeceb42 sk_chk_filter +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f1f8088 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f3f06d4 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x2f566af4 fb_class +EXPORT_SYMBOL vmlinux 0x2f57a01f pci_claim_resource +EXPORT_SYMBOL vmlinux 0x2f67c28d sock_wfree +EXPORT_SYMBOL vmlinux 0x2f76ff50 fb_show_logo +EXPORT_SYMBOL vmlinux 0x2f85eda5 tcp_v4_get_peer +EXPORT_SYMBOL vmlinux 0x2fa54cd3 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x2fa8af2b padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb26644 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x2fc89d31 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x2fcf740d idr_get_new_above +EXPORT_SYMBOL vmlinux 0x2fe48d72 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3032758b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x304a4223 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30c6f879 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x30cada8f radix_tree_next_hole +EXPORT_SYMBOL vmlinux 0x30d70fa9 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x310fc0d6 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x312cfaf2 _lv1_disable_logical_spe +EXPORT_SYMBOL vmlinux 0x3139d06e md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x31463ca7 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x31549f60 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x315c65fd zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x317cf000 block_write_begin +EXPORT_SYMBOL vmlinux 0x318b665c phy_stop +EXPORT_SYMBOL vmlinux 0x3196af43 mii_check_link +EXPORT_SYMBOL vmlinux 0x31afa80d __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x31b7f300 _lv1_set_lpm_signal +EXPORT_SYMBOL vmlinux 0x31bf6646 fb_get_mode +EXPORT_SYMBOL vmlinux 0x31cd362c ethtool_op_get_ufo +EXPORT_SYMBOL vmlinux 0x31cd509a _lv1_net_control +EXPORT_SYMBOL vmlinux 0x31f77c87 bio_get_nr_vecs +EXPORT_SYMBOL vmlinux 0x32380687 tcp_syn_flood_action +EXPORT_SYMBOL vmlinux 0x323d3c71 key_task_permission +EXPORT_SYMBOL vmlinux 0x3240c65b files_lglock_global_lock_online +EXPORT_SYMBOL vmlinux 0x32484d5b dquot_commit +EXPORT_SYMBOL vmlinux 0x3262386e security_d_instantiate +EXPORT_SYMBOL vmlinux 0x327b1c99 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb +EXPORT_SYMBOL vmlinux 0x32a12c6e xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x32cbe36d genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x330181f8 dquot_file_open +EXPORT_SYMBOL vmlinux 0x331f4edd neigh_ifdown +EXPORT_SYMBOL vmlinux 0x33a6e92b file_sb_list_del +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33d6d439 __skb_get_rxhash +EXPORT_SYMBOL vmlinux 0x33da9931 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f780cc datagram_poll +EXPORT_SYMBOL vmlinux 0x3403a93d proc_symlink +EXPORT_SYMBOL vmlinux 0x3430c042 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x3431b98b iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x34506f0a xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x345e7cee pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x346c4ded rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3472c210 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x347a63ed tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x34942172 set_security_override +EXPORT_SYMBOL vmlinux 0x3497da28 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349e3b4d __cleancache_flush_inode +EXPORT_SYMBOL vmlinux 0x34da1777 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x34e13789 prepare_binprm +EXPORT_SYMBOL vmlinux 0x34e6a382 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x35003598 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x3515bcfa pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x35420a3b abort_creds +EXPORT_SYMBOL vmlinux 0x354a01a0 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3555ed08 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x357c90d2 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0x35a65e2a bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x35a779cc generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x35ab4ddd genphy_read_status +EXPORT_SYMBOL vmlinux 0x35ac71d3 inet_put_port +EXPORT_SYMBOL vmlinux 0x35bda15c blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x35c2ba9e refrigerator +EXPORT_SYMBOL vmlinux 0x35ca8cfa dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x360c5343 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x36139a51 memcpy_fromiovec +EXPORT_SYMBOL vmlinux 0x362311c3 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x363fe5db d_instantiate +EXPORT_SYMBOL vmlinux 0x366c4362 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x3671382f compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x36793af7 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36b16e4d igrab +EXPORT_SYMBOL vmlinux 0x36e360e3 __hw_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x371902e9 _lv1_get_lpm_interrupt_status +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x37236c43 genl_register_mc_group +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x37395535 init_buffer +EXPORT_SYMBOL vmlinux 0x373d98a4 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37618620 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x37730a20 i2c_transfer +EXPORT_SYMBOL vmlinux 0x37737983 scsi_host_put +EXPORT_SYMBOL vmlinux 0x3781878e mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x379bad35 pci_find_bus +EXPORT_SYMBOL vmlinux 0x379f5837 param_set_invbool +EXPORT_SYMBOL vmlinux 0x37b2884c splice_from_pipe_feed +EXPORT_SYMBOL vmlinux 0x37b42dbf __napi_complete +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d5852a skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x37d9bfe5 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x37ea921e vfsmount_lock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x3801f0f7 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x38102301 page_readlink +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382777ab _lv1_gpu_context_allocate +EXPORT_SYMBOL vmlinux 0x3835a5df max8925_set_bits +EXPORT_SYMBOL vmlinux 0x383ce9e1 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x38425f50 mmc_regulator_set_ocr +EXPORT_SYMBOL vmlinux 0x3860c769 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x388959b5 _lv1_net_stop_tx_dma +EXPORT_SYMBOL vmlinux 0x388f9128 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x389eb328 aio_complete +EXPORT_SYMBOL vmlinux 0x38b92846 llc_remove_pack +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x391495df locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39420f56 genphy_resume +EXPORT_SYMBOL vmlinux 0x39729fe3 vfs_read +EXPORT_SYMBOL vmlinux 0x39732329 do_mmap_pgoff +EXPORT_SYMBOL vmlinux 0x3980aac1 unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3982d7b6 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x398a14f0 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x39c5c3fe pneigh_lookup +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39d01c5c i2c_bit_add_bus +EXPORT_SYMBOL vmlinux 0x39f2bebc neigh_table_clear +EXPORT_SYMBOL vmlinux 0x3a051cb6 scsi_unregister +EXPORT_SYMBOL vmlinux 0x3a0557c7 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x3a0fd4ed eth_header +EXPORT_SYMBOL vmlinux 0x3a2204c6 security_netlink_recv +EXPORT_SYMBOL vmlinux 0x3a82ea79 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x3a8f9535 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ab2c243 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x3b2bb7a7 tty_register_device +EXPORT_SYMBOL vmlinux 0x3b3016d3 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3b3b0c18 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x3b43f422 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x3b464517 key_revoke +EXPORT_SYMBOL vmlinux 0x3b4bb5fa generic_getxattr +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b6ede89 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x3b7f6a2f gen_pool_create +EXPORT_SYMBOL vmlinux 0x3b8bf2c4 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x3b98eca6 mmc_hw_reset_check +EXPORT_SYMBOL vmlinux 0x3b9d601d vio_find_node +EXPORT_SYMBOL vmlinux 0x3bafe95e read_dev_sector +EXPORT_SYMBOL vmlinux 0x3bb54706 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x3bd1b1f6 msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c0f85c1 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x3c1adda2 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8d1171 input_reset_device +EXPORT_SYMBOL vmlinux 0x3c9d1211 string_get_size +EXPORT_SYMBOL vmlinux 0x3cd33d48 free_netdev +EXPORT_SYMBOL vmlinux 0x3cd435e1 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ceeff70 xfrm_cfg_mutex +EXPORT_SYMBOL vmlinux 0x3d1454e2 tcp_gro_receive +EXPORT_SYMBOL vmlinux 0x3d30f5c0 bio_split +EXPORT_SYMBOL vmlinux 0x3d54ac01 _lv1_net_stop_rx_dma +EXPORT_SYMBOL vmlinux 0x3d5b1b4b jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x3d8728bb memcpy_toiovecend +EXPORT_SYMBOL vmlinux 0x3d93ee61 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x3db8fe9b input_grab_device +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3ddb6944 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x3dddd2b9 journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x3ded4f2e serio_close +EXPORT_SYMBOL vmlinux 0x3dedc38a xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0e9023 param_set_long +EXPORT_SYMBOL vmlinux 0x3e0f1da9 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x3e286dca _lv1_get_rtc +EXPORT_SYMBOL vmlinux 0x3e45e9ff register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x3e6a3ebe qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e8d5e77 lro_receive_frags +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e9da756 mii_link_ok +EXPORT_SYMBOL vmlinux 0x3eb81e9b devm_free_irq +EXPORT_SYMBOL vmlinux 0x3ec8886f param_ops_int +EXPORT_SYMBOL vmlinux 0x3ed324a1 pci_clear_master +EXPORT_SYMBOL vmlinux 0x3ed63055 zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f06a656 _lv1_construct_event_receive_port +EXPORT_SYMBOL vmlinux 0x3f0fd5fa empty_aops +EXPORT_SYMBOL vmlinux 0x3f13c193 llc_sap_open +EXPORT_SYMBOL vmlinux 0x3f206c53 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4575e7 lock_may_write +EXPORT_SYMBOL vmlinux 0x3f665487 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x3f70c3da scsi_print_result +EXPORT_SYMBOL vmlinux 0x3f81a2be proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3f9058ba commit_creds +EXPORT_SYMBOL vmlinux 0x3f9f44a5 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x3fa03a97 memset +EXPORT_SYMBOL vmlinux 0x3fa532bb skb_insert +EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fb00b71 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x3fbfd6ed _lv1_gpu_open +EXPORT_SYMBOL vmlinux 0x3fd0844b mmc_card_sleep +EXPORT_SYMBOL vmlinux 0x3fd4bf75 ns_capable +EXPORT_SYMBOL vmlinux 0x3fd51abd write_inode_now +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fe803ee lock_may_read +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff62317 local_bh_disable +EXPORT_SYMBOL vmlinux 0x401b0ffa phy_register_fixup +EXPORT_SYMBOL vmlinux 0x4029d238 param_set_copystring +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4047f475 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406ef4a0 _dev_info +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409c2672 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x409f78fe dst_alloc +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a61c30 tr_type_trans +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40bfc968 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x40c1bb63 elv_rb_add +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40f35aba save_mount_options +EXPORT_SYMBOL vmlinux 0x4108e69a fb_match_mode +EXPORT_SYMBOL vmlinux 0x4132e571 request_key +EXPORT_SYMBOL vmlinux 0x41333aaf __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x41361807 _lv1_get_logical_ppe_id +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x416a2816 seq_printf +EXPORT_SYMBOL vmlinux 0x4171ee42 secpath_dup +EXPORT_SYMBOL vmlinux 0x41779437 tcf_hash_lookup +EXPORT_SYMBOL vmlinux 0x41812d16 bio_map_user +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41bd920e bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x41d0e3ef mfd_add_devices +EXPORT_SYMBOL vmlinux 0x41dbf4de _lv1_start_lpm +EXPORT_SYMBOL vmlinux 0x41f69c8d __free_pages +EXPORT_SYMBOL vmlinux 0x4205aa9e dm_put_device +EXPORT_SYMBOL vmlinux 0x4211c3c1 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x42224298 sscanf +EXPORT_SYMBOL vmlinux 0x422b9946 d_add_ci +EXPORT_SYMBOL vmlinux 0x42585e85 nf_reinject +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42599319 security_path_truncate +EXPORT_SYMBOL vmlinux 0x427d0614 tty_port_put +EXPORT_SYMBOL vmlinux 0x4283accb vfs_rmdir +EXPORT_SYMBOL vmlinux 0x42977ad4 __hw_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x429ad522 mount_single +EXPORT_SYMBOL vmlinux 0x42c28885 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x42f21134 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x42f37e26 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4309bf11 netdev_info +EXPORT_SYMBOL vmlinux 0x430e4d6f alloc_tty_driver +EXPORT_SYMBOL vmlinux 0x4330fbfa __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x4349897b names_cachep +EXPORT_SYMBOL vmlinux 0x4357db5b dev_set_mtu +EXPORT_SYMBOL vmlinux 0x436b99ea would_dump +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x4384af0c of_dev_get +EXPORT_SYMBOL vmlinux 0x438ff312 scsi_adjust_queue_depth +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a0458b blk_start_plug +EXPORT_SYMBOL vmlinux 0x43a5f713 posix_test_lock +EXPORT_SYMBOL vmlinux 0x43ab060a neigh_table_init_no_netlink +EXPORT_SYMBOL vmlinux 0x43aff1a7 security_path_unlink +EXPORT_SYMBOL vmlinux 0x43cd998f noop_qdisc +EXPORT_SYMBOL vmlinux 0x43dabb66 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x43ddce84 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x43e39844 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x43ec913a put_cmsg +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4417acc4 pci_set_master +EXPORT_SYMBOL vmlinux 0x44289a7a cdev_alloc +EXPORT_SYMBOL vmlinux 0x44402b6f param_get_ulong +EXPORT_SYMBOL vmlinux 0x44482f5b vfs_mknod +EXPORT_SYMBOL vmlinux 0x446efd02 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x4485cab3 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x44ac758d of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x44b1c072 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x44b911c3 rb_replace_node +EXPORT_SYMBOL vmlinux 0x44cac5be arp_find +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44eec9b8 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x44f93c47 cad_pid +EXPORT_SYMBOL vmlinux 0x452ebe86 schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453e630b inet_listen +EXPORT_SYMBOL vmlinux 0x4543d026 devm_iounmap +EXPORT_SYMBOL vmlinux 0x4550ba8a register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x455621ed __napi_schedule +EXPORT_SYMBOL vmlinux 0x4564459b _lv1_set_virtual_uart_param +EXPORT_SYMBOL vmlinux 0x45704798 print_hex_dump_bytes +EXPORT_SYMBOL vmlinux 0x4578d62f mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4596823e unregister_nls +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45bd68e5 cap_file_mmap +EXPORT_SYMBOL vmlinux 0x45bd9efd dm_table_put +EXPORT_SYMBOL vmlinux 0x45ce033b d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x45cfe80b pasemi_dma_free_flag +EXPORT_SYMBOL vmlinux 0x45d216b9 tcp_put_md5sig_pool +EXPORT_SYMBOL vmlinux 0x45d755ec vga_tryget +EXPORT_SYMBOL vmlinux 0x45ef2932 mb_cache_create +EXPORT_SYMBOL vmlinux 0x45fc958b bio_clone +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x46214106 files_lglock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x4657b6d5 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4679fce2 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x468a89aa scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x46a3fb9c ____pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x46a90141 writeback_inodes_sb_nr_if_idle +EXPORT_SYMBOL vmlinux 0x46b67693 hex2bin +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x471691cf macio_request_resources +EXPORT_SYMBOL vmlinux 0x4726a56d pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x4732f57e mdio_bus_type +EXPORT_SYMBOL vmlinux 0x475100c2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x475785d4 scsi_cmd_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x477ecec6 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47b27d4b jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x47b3f862 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x47b411a6 d_find_alias +EXPORT_SYMBOL vmlinux 0x47b4840b blk_execute_rq +EXPORT_SYMBOL vmlinux 0x47d2bb63 sock_no_accept +EXPORT_SYMBOL vmlinux 0x47f52e63 input_set_capability +EXPORT_SYMBOL vmlinux 0x48000553 mempool_create_node +EXPORT_SYMBOL vmlinux 0x48034724 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x480ab42a __next_cpu_nr +EXPORT_SYMBOL vmlinux 0x4815f22b _lv1_gpu_attribute +EXPORT_SYMBOL vmlinux 0x483e7d79 __rta_fill +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x484c9540 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x484ca201 textsearch_register +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486f80b5 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x487da8f3 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition +EXPORT_SYMBOL vmlinux 0x48b47ef3 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x48bcf283 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x49065aa7 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x49205ec4 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x4958fd7a blk_start_request +EXPORT_SYMBOL vmlinux 0x495ec6eb pasemi_dma_alloc_buf +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x498486cd bdput +EXPORT_SYMBOL vmlinux 0x498ce81e agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49fc0540 __serio_register_port +EXPORT_SYMBOL vmlinux 0x4a358252 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x4a36b6c2 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x4a419e4d alloc_pages_current +EXPORT_SYMBOL vmlinux 0x4a421dd3 vfs_llseek +EXPORT_SYMBOL vmlinux 0x4a63f87f jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x4a7b8575 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x4aaab2b1 groups_alloc +EXPORT_SYMBOL vmlinux 0x4ac64da4 _lv1_select_virtual_address_space +EXPORT_SYMBOL vmlinux 0x4ac82fe0 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4af9fe55 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x4afb6e10 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b3cb349 _lv1_destruct_io_irq_outlet +EXPORT_SYMBOL vmlinux 0x4b5814ef kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x4b58fdba xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6863bf ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x4b6fcddc _lv1_set_spe_interrupt_mask +EXPORT_SYMBOL vmlinux 0x4b74ef4a bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x4b7ed27b sleep_on +EXPORT_SYMBOL vmlinux 0x4b8f398d blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x4b92748b max8998_read_reg +EXPORT_SYMBOL vmlinux 0x4b98479f write_cache_pages +EXPORT_SYMBOL vmlinux 0x4ba3deb8 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x4bb9873a simple_write_end +EXPORT_SYMBOL vmlinux 0x4bc96635 ifla_policy +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c1182cb bitmap_scnprintf +EXPORT_SYMBOL vmlinux 0x4c1b9820 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x4c268aed of_dev_put +EXPORT_SYMBOL vmlinux 0x4c4c4708 do_sync_read +EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp +EXPORT_SYMBOL vmlinux 0x4c56e1aa I_BDEV +EXPORT_SYMBOL vmlinux 0x4c8f28c1 bmap +EXPORT_SYMBOL vmlinux 0x4c9e5cdc __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x4cbbd171 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x4cdc0a29 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x4cf7783f f_setown +EXPORT_SYMBOL vmlinux 0x4d131bc9 scsi_allocate_command +EXPORT_SYMBOL vmlinux 0x4d158796 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x4d1d747d otg_get_transceiver +EXPORT_SYMBOL vmlinux 0x4d208dcd zero_fill_bio +EXPORT_SYMBOL vmlinux 0x4d2d5f1b fb_set_suspend +EXPORT_SYMBOL vmlinux 0x4d400d7d ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x4d7581a6 ether_setup +EXPORT_SYMBOL vmlinux 0x4d778b8d kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x4d88961f input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x4d92efc6 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x4d94cd61 dev_add_pack +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9adaf2 pmac_suspend_agp_for_card +EXPORT_SYMBOL vmlinux 0x4da7c931 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x4db38ca7 simple_unlink +EXPORT_SYMBOL vmlinux 0x4dc45be9 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy +EXPORT_SYMBOL vmlinux 0x4ddeaf0f netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfed71c flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x4e069249 security_tun_dev_post_create +EXPORT_SYMBOL vmlinux 0x4e0cedf1 ppc_md +EXPORT_SYMBOL vmlinux 0x4e135a8e blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x4e197e7d tty_register_driver +EXPORT_SYMBOL vmlinux 0x4e2223b1 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x4e320d33 of_get_parent +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e559ad4 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e96645a nlmsg_notify +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4ea2bf60 ilookup5 +EXPORT_SYMBOL vmlinux 0x4edd72f7 block_all_signals +EXPORT_SYMBOL vmlinux 0x4ee1b529 llc_add_pack +EXPORT_SYMBOL vmlinux 0x4ee3c7fd __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x4eea9494 genphy_suspend +EXPORT_SYMBOL vmlinux 0x4ef4ac05 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x4f038284 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x4f0bfed2 d_path +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f23b87d pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x4f250cf8 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x4f34cb34 sock_map_fd +EXPORT_SYMBOL vmlinux 0x4f3559aa cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3a6c6d mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x4f42ed1e input_register_handle +EXPORT_SYMBOL vmlinux 0x4f5b66a5 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x4f664db6 _lv1_insert_htab_entry +EXPORT_SYMBOL vmlinux 0x4f6a62cb jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x4f71abdf unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x4f937f8f scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x4fc308e7 drop_super +EXPORT_SYMBOL vmlinux 0x4fc5c226 vfs_stat +EXPORT_SYMBOL vmlinux 0x4fc75b97 journal_abort +EXPORT_SYMBOL vmlinux 0x4fdc34e5 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x4fdde81f mmc_start_req +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe7577b scm_detach_fds +EXPORT_SYMBOL vmlinux 0x4ff1c9bc populate_rootfs_wait +EXPORT_SYMBOL vmlinux 0x50189677 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x50211ee3 tcp_free_md5sig_pool +EXPORT_SYMBOL vmlinux 0x5030e3ee mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x50310150 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x503c0ee1 address_space_init_once +EXPORT_SYMBOL vmlinux 0x50421428 pci_release_region +EXPORT_SYMBOL vmlinux 0x50656449 dev_open +EXPORT_SYMBOL vmlinux 0x506746b6 getrawmonotonic +EXPORT_SYMBOL vmlinux 0x50720c5f snprintf +EXPORT_SYMBOL vmlinux 0x508425db pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x50844e71 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x50ab4c6d files_lglock_global_lock +EXPORT_SYMBOL vmlinux 0x50dee8ce textsearch_prepare +EXPORT_SYMBOL vmlinux 0x50e48ae0 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x50f27150 request_firmware +EXPORT_SYMBOL vmlinux 0x510c2535 xz_dec_run +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x5140ba39 page_symlink +EXPORT_SYMBOL vmlinux 0x515ac9ec dev_set_drvdata +EXPORT_SYMBOL vmlinux 0x5163d272 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x517e2eaf ip_setsockopt +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x519e5c9b __block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x51c29870 tcp_child_process +EXPORT_SYMBOL vmlinux 0x51c31a28 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x51ce5ad3 files_lglock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x51dce73b xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x51f89c92 dst_discard +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5218966d bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x521a0e3a udp_disconnect +EXPORT_SYMBOL vmlinux 0x522bce32 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x523660c4 neigh_create +EXPORT_SYMBOL vmlinux 0x5248bab3 tcf_hash_destroy +EXPORT_SYMBOL vmlinux 0x52760ca9 getnstimeofday +EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read +EXPORT_SYMBOL vmlinux 0x527b7d85 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x5295f485 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x529e50a0 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x52a3b5b1 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x52bb9339 vfs_open +EXPORT_SYMBOL vmlinux 0x52ccd63d agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL vmlinux 0x52e3fa05 _lv1_allocate_memory +EXPORT_SYMBOL vmlinux 0x52f2573e tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x52f4cadf nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x52ff3e4f pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5339f5f8 _lv1_read_virtual_uart +EXPORT_SYMBOL vmlinux 0x536d55e3 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x538383c0 unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x538918d8 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x5397f2d3 posix_acl_init +EXPORT_SYMBOL vmlinux 0x539ba824 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x53e57eb6 __vlan_find_dev_deep +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x53f04062 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x54093b40 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x54233093 macio_request_resource +EXPORT_SYMBOL vmlinux 0x5435f010 tty_hangup +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54568b75 register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x547296f0 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x549d0d1f tcp_v4_md5_do_del +EXPORT_SYMBOL vmlinux 0x54a18bd7 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c0aa79 of_device_alloc +EXPORT_SYMBOL vmlinux 0x54d9a8fa directly_mappable_cdev_bdi +EXPORT_SYMBOL vmlinux 0x54e07f62 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x54e54616 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ed13ea skb_trim +EXPORT_SYMBOL vmlinux 0x5506d956 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x5532f10d n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5545368b paca +EXPORT_SYMBOL vmlinux 0x55598a60 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x5564866f kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x55678b4b bsearch +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x557b3dd8 _lv1_gpu_close +EXPORT_SYMBOL vmlinux 0x557ce55a seq_putc +EXPORT_SYMBOL vmlinux 0x5594be03 bitmap_remap +EXPORT_SYMBOL vmlinux 0x559b6c5b inet_accept +EXPORT_SYMBOL vmlinux 0x559f89e3 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x55c50c7d fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x55cd7d21 __lru_cache_add +EXPORT_SYMBOL vmlinux 0x56002b78 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x5600904f fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x5609f79b locks_delete_block +EXPORT_SYMBOL vmlinux 0x5614b010 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5642793a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x56591287 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x566600f1 mmc_resume_host +EXPORT_SYMBOL vmlinux 0x567a4cd5 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x5681e371 journal_get_write_access +EXPORT_SYMBOL vmlinux 0x568804ee _lv1_destruct_event_receive_port +EXPORT_SYMBOL vmlinux 0x56a10763 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0x56bb5baf tcf_em_register +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ddd997 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x56f6b79b agp_generic_enable +EXPORT_SYMBOL vmlinux 0x56f9acbf pci_scan_bus_parented +EXPORT_SYMBOL vmlinux 0x57089fe8 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x57266ddb truncate_setsize +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574299cd mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x5742efec mdiobus_register +EXPORT_SYMBOL vmlinux 0x57488db4 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576b131a kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x577cf3db skb_split +EXPORT_SYMBOL vmlinux 0x57818526 tty_set_operations +EXPORT_SYMBOL vmlinux 0x5785384a flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x579a74df pcim_enable_device +EXPORT_SYMBOL vmlinux 0x579bab50 _lv1_gpu_memory_free +EXPORT_SYMBOL vmlinux 0x57b57ebe jiffies_to_timespec +EXPORT_SYMBOL vmlinux 0x57baa8da tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x57bab334 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x57be2fa2 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x57db7242 mangle_path +EXPORT_SYMBOL vmlinux 0x57dfc845 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x582eb3b5 input_free_device +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584fb5e2 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58630f0a dev_alloc_name +EXPORT_SYMBOL vmlinux 0x586849d3 dev_addr_add +EXPORT_SYMBOL vmlinux 0x58757367 fget_raw +EXPORT_SYMBOL vmlinux 0x58b9bf97 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x58e191dc wake_up_process +EXPORT_SYMBOL vmlinux 0x5918b33a vsc824x_add_skew +EXPORT_SYMBOL vmlinux 0x592f2000 dentry_unhash +EXPORT_SYMBOL vmlinux 0x5934392b fb_register_client +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x5976e10a skb_gro_reset_offset +EXPORT_SYMBOL vmlinux 0x5981b75b xfrm_input +EXPORT_SYMBOL vmlinux 0x598aa1e1 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x5998a789 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59cd2008 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x59d696b6 register_module_notifier +EXPORT_SYMBOL vmlinux 0x59dbb2f0 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x59e70f93 __send_remote_softirq +EXPORT_SYMBOL vmlinux 0x59eb116e __d_drop +EXPORT_SYMBOL vmlinux 0x59ee8033 netif_notify_peers +EXPORT_SYMBOL vmlinux 0x5a025f7b arch_local_irq_restore +EXPORT_SYMBOL vmlinux 0x5a294eb6 pci_disable_device +EXPORT_SYMBOL vmlinux 0x5a2f9faf inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x5a34a45c __kmalloc +EXPORT_SYMBOL vmlinux 0x5a5c0e45 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5a744b86 netlink_set_nonroot +EXPORT_SYMBOL vmlinux 0x5a9a07b4 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x5aa4ce42 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x5aaea714 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x5acb0d5a keyring_search +EXPORT_SYMBOL vmlinux 0x5ade2aaf scsi_put_command +EXPORT_SYMBOL vmlinux 0x5ae1bc77 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x5af355e1 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5b047900 kill_block_super +EXPORT_SYMBOL vmlinux 0x5b07dfc6 netlink_dump_start +EXPORT_SYMBOL vmlinux 0x5b218384 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x5b2809ea bio_endio +EXPORT_SYMBOL vmlinux 0x5b2a1259 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x5b39988e ftrace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b5791c4 agp_create_memory +EXPORT_SYMBOL vmlinux 0x5b61effe genl_register_family_with_ops +EXPORT_SYMBOL vmlinux 0x5b867146 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5bbeda4d sk_filter +EXPORT_SYMBOL vmlinux 0x5bd8bb81 neigh_lookup +EXPORT_SYMBOL vmlinux 0x5be145e5 dma_find_channel +EXPORT_SYMBOL vmlinux 0x5be25de3 ata_print_version +EXPORT_SYMBOL vmlinux 0x5be76bff dev_get_by_name +EXPORT_SYMBOL vmlinux 0x5bfb6e55 blk_get_queue +EXPORT_SYMBOL vmlinux 0x5bfff7e3 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c53e482 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x5c5e9413 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x5c80e46f neigh_parms_release +EXPORT_SYMBOL vmlinux 0x5c95a1a9 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x5cb3ca4c inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x5cc8e015 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x5ccc9045 _lv1_close_device +EXPORT_SYMBOL vmlinux 0x5ceaba93 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5d1ce1fc posix_lock_file +EXPORT_SYMBOL vmlinux 0x5d1f5901 generic_removexattr +EXPORT_SYMBOL vmlinux 0x5d4d26fd of_n_size_cells +EXPORT_SYMBOL vmlinux 0x5d597475 dquot_acquire +EXPORT_SYMBOL vmlinux 0x5d5b5a16 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x5d6791ce kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x5d6bdce1 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x5d89faaa netpoll_setup +EXPORT_SYMBOL vmlinux 0x5d946ab0 journal_extend +EXPORT_SYMBOL vmlinux 0x5dbbe98e memmove +EXPORT_SYMBOL vmlinux 0x5dc05473 ip_nat_decode_session +EXPORT_SYMBOL vmlinux 0x5dcbc23d of_match_device +EXPORT_SYMBOL vmlinux 0x5de7abd9 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x5df081d1 inet_select_addr +EXPORT_SYMBOL vmlinux 0x5e2a0116 current_fs_time +EXPORT_SYMBOL vmlinux 0x5e2fe483 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x5e32847d ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e529b19 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x5e5fb2b1 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x5e6947f7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea549bf sk_stream_error +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebd0048 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x5ec01c93 genphy_update_link +EXPORT_SYMBOL vmlinux 0x5ec11991 soft_cursor +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5edd0762 bin2bcd +EXPORT_SYMBOL vmlinux 0x5ef400e1 unload_nls +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f035451 pci_disable_ltr +EXPORT_SYMBOL vmlinux 0x5f0e96c1 dev_addr_del +EXPORT_SYMBOL vmlinux 0x5f234cb0 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x5f4097bb mmc_register_driver +EXPORT_SYMBOL vmlinux 0x5f55fa8c udp_sendmsg +EXPORT_SYMBOL vmlinux 0x5f60e953 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x5f7c7a1c sk_common_release +EXPORT_SYMBOL vmlinux 0x5f85cc96 dma_pool_create +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5fa17c73 sk_filter_release_rcu +EXPORT_SYMBOL vmlinux 0x5fac89ed fput +EXPORT_SYMBOL vmlinux 0x5fc642f4 simple_lookup +EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr +EXPORT_SYMBOL vmlinux 0x5fd79f0f pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602bba8f tty_kref_put +EXPORT_SYMBOL vmlinux 0x6048747e vfs_symlink +EXPORT_SYMBOL vmlinux 0x60631cad ethtool_op_get_flags +EXPORT_SYMBOL vmlinux 0x6067a146 memcpy +EXPORT_SYMBOL vmlinux 0x606913c6 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606e012c pci_iomap +EXPORT_SYMBOL vmlinux 0x6086fae9 rwsem_wake +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a7682e validate_sp +EXPORT_SYMBOL vmlinux 0x60ac3638 inet_bind +EXPORT_SYMBOL vmlinux 0x60af4ac5 pci_enable_obff +EXPORT_SYMBOL vmlinux 0x60faf6b6 km_query +EXPORT_SYMBOL vmlinux 0x6101cb13 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x610203e0 bioset_create +EXPORT_SYMBOL vmlinux 0x610ed1fe fd_install +EXPORT_SYMBOL vmlinux 0x61105855 mii_check_media +EXPORT_SYMBOL vmlinux 0x61229b10 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x612390ad netpoll_set_trap +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6157f358 noop_fsync +EXPORT_SYMBOL vmlinux 0x61828754 netdev_set_master +EXPORT_SYMBOL vmlinux 0x618a8ba8 napi_skb_finish +EXPORT_SYMBOL vmlinux 0x619cb97f rtnl_create_link +EXPORT_SYMBOL vmlinux 0x61a4487c _lv1_gpu_device_unmap +EXPORT_SYMBOL vmlinux 0x61b56cd2 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b920bb blk_run_queue +EXPORT_SYMBOL vmlinux 0x61dcdcd3 _lv1_pause +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61effae4 km_policy_expired +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226ce1f tcf_hash_create +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6229d14c rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x6239879a ndisc_build_skb +EXPORT_SYMBOL vmlinux 0x62522ebf cdrom_check_events +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x6258ff7a panic_notifier_list +EXPORT_SYMBOL vmlinux 0x625bf860 mach_pasemi +EXPORT_SYMBOL vmlinux 0x626c6521 elevator_init +EXPORT_SYMBOL vmlinux 0x626c820b tty_pair_get_tty +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x6289c168 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x628b14e9 do_splice_to +EXPORT_SYMBOL vmlinux 0x629b3920 alloc_pages_exact_nid +EXPORT_SYMBOL vmlinux 0x62a11612 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x62aa66bd pci_vpd_truncate +EXPORT_SYMBOL vmlinux 0x62bca925 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x62bfb9f4 neigh_table_init +EXPORT_SYMBOL vmlinux 0x62c3d050 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x62c4f2c5 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x62da7b96 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x630395d6 padata_free +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x632f8954 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x6332cc1a audit_log_start +EXPORT_SYMBOL vmlinux 0x6337dfce ab8500_gpadc_convert +EXPORT_SYMBOL vmlinux 0x6360d639 cpu_all_bits +EXPORT_SYMBOL vmlinux 0x638c172e vfs_fstat +EXPORT_SYMBOL vmlinux 0x639f4a1c mach_maple +EXPORT_SYMBOL vmlinux 0x63e57e50 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ecad53 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x63f75920 _lv1_construct_virtual_address_space +EXPORT_SYMBOL vmlinux 0x63f9c93f ida_get_new_above +EXPORT_SYMBOL vmlinux 0x64004949 skb_copy_datagram_from_iovec +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64340087 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x643c262a generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x643eaec8 param_get_string +EXPORT_SYMBOL vmlinux 0x644e0cdc module_refcount +EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64b6f37b km_report +EXPORT_SYMBOL vmlinux 0x64bb767f tty_pair_get_pty +EXPORT_SYMBOL vmlinux 0x64cba7b7 get_agp_version +EXPORT_SYMBOL vmlinux 0x6514d881 tty_devnum +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65291cff timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0x6533a15b eth_header_parse +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65414e67 dev_valid_name +EXPORT_SYMBOL vmlinux 0x656ae049 netdev_notice +EXPORT_SYMBOL vmlinux 0x65b2bcd8 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65bda6af sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x65d5d582 take_over_console +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x662e0a9c get_super +EXPORT_SYMBOL vmlinux 0x663c4dbe tty_check_change +EXPORT_SYMBOL vmlinux 0x66480895 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x6661d366 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x6671f794 d_genocide +EXPORT_SYMBOL vmlinux 0x668da8d5 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x66932e54 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x66a256b3 ida_pre_get +EXPORT_SYMBOL vmlinux 0x66ad1cb3 _lv1_set_lpm_general_control +EXPORT_SYMBOL vmlinux 0x66b64f1a sk_receive_skb +EXPORT_SYMBOL vmlinux 0x66b790ae dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x66b8a3bf set_disk_ro +EXPORT_SYMBOL vmlinux 0x66bf8203 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write +EXPORT_SYMBOL vmlinux 0x66d0ee54 vfsmount_lock_global_unlock +EXPORT_SYMBOL vmlinux 0x66dbafa3 sk_reset_txq +EXPORT_SYMBOL vmlinux 0x66dddbd6 md_flush_request +EXPORT_SYMBOL vmlinux 0x66f32af6 module_put +EXPORT_SYMBOL vmlinux 0x6702c461 filemap_flush +EXPORT_SYMBOL vmlinux 0x67053080 current_kernel_time +EXPORT_SYMBOL vmlinux 0x670fbc31 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x672144bd strlcpy +EXPORT_SYMBOL vmlinux 0x673dec85 machine_id +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6778b501 noop_llseek +EXPORT_SYMBOL vmlinux 0x6788eb78 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x67a323bd sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67ea9889 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x682bd6f5 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x6849a15f flex_array_clear +EXPORT_SYMBOL vmlinux 0x6851d82c mmc_can_discard +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x68737b21 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68817318 do_munmap +EXPORT_SYMBOL vmlinux 0x68bd9e5b tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x68d2a22b vio_unregister_device +EXPORT_SYMBOL vmlinux 0x68d6b437 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x68e1ef51 smu_present +EXPORT_SYMBOL vmlinux 0x690471a1 input_register_device +EXPORT_SYMBOL vmlinux 0x692348b4 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x693c2b69 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x695fdca3 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x698ed811 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x69943ff2 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x6994abf5 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x699ccbf8 _lv1_deconfigure_virtual_uart_irq +EXPORT_SYMBOL vmlinux 0x699cf56f agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c487c0 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x69d38ed9 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x69e27c7a bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x69ea189a dqput +EXPORT_SYMBOL vmlinux 0x69f32610 __cputime_msec_factor +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a152876 path_get +EXPORT_SYMBOL vmlinux 0x6a1c6fe1 fib_default_rule_pref +EXPORT_SYMBOL vmlinux 0x6a2220e1 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x6a349e31 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a61f874 to_tm +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6ac91ec1 netdev_alert +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6af696ae kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b387694 _lv1_end_of_interrupt_ext +EXPORT_SYMBOL vmlinux 0x6b405d17 init_net +EXPORT_SYMBOL vmlinux 0x6b496559 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x6b589a6e _lv1_net_add_multicast_address +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b6f0c4b _lv1_create_repository_node +EXPORT_SYMBOL vmlinux 0x6b932f20 __ps2_command +EXPORT_SYMBOL vmlinux 0x6b9df9c1 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bdf3b5f bio_unmap_user +EXPORT_SYMBOL vmlinux 0x6bf0bee0 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x6bf242dd cfb_copyarea +EXPORT_SYMBOL vmlinux 0x6bf6ebbe pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x6bfa43ce dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x6c034e33 dev_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x6c07bfc1 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x6c0c34a4 inet_getname +EXPORT_SYMBOL vmlinux 0x6c5c9807 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c665691 flex_array_shrink +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c7fc83e kick_iocb +EXPORT_SYMBOL vmlinux 0x6cee3118 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x6d077ebc padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d172be9 thermal_cooling_device_unregister +EXPORT_SYMBOL vmlinux 0x6d1743eb _lv1_get_total_execution_time +EXPORT_SYMBOL vmlinux 0x6d201f14 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x6d27ef64 __bitmap_empty +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d60a50b fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x6d6cbadc rb_last +EXPORT_SYMBOL vmlinux 0x6d6f6791 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x6d763f93 proc_dostring +EXPORT_SYMBOL vmlinux 0x6da26e51 twl6040_irq_exit +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6daf1888 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x6db0044a ps2_begin_command +EXPORT_SYMBOL vmlinux 0x6dc614cb scsi_execute +EXPORT_SYMBOL vmlinux 0x6dd80af2 __sock_create +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6dfc20ad gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x6e06424a proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x6e333607 dev_driver_string +EXPORT_SYMBOL vmlinux 0x6e666b35 splice_from_pipe_begin +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eabaab1 ethtool_op_set_flags +EXPORT_SYMBOL vmlinux 0x6eee6309 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x6f29a9b9 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x6f3d080d thermal_cooling_device_register +EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv +EXPORT_SYMBOL vmlinux 0x6fa331ed _lv1_construct_io_irq_outlet +EXPORT_SYMBOL vmlinux 0x6fc5ef8d simple_rmdir +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd40fcf flock_lock_file_wait +EXPORT_SYMBOL vmlinux 0x6fd7e79a tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x6ffc0658 input_release_device +EXPORT_SYMBOL vmlinux 0x6fff393f time_to_tm +EXPORT_SYMBOL vmlinux 0x6fffc803 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x70081e36 ethtool_op_set_tso +EXPORT_SYMBOL vmlinux 0x700ad500 keyring_clear +EXPORT_SYMBOL vmlinux 0x701699b2 _lv1_set_spe_privilege_state_area_1_register +EXPORT_SYMBOL vmlinux 0x703d707d mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x704c4365 __cputime_sec_factor +EXPORT_SYMBOL vmlinux 0x704e80c0 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70704588 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x70823084 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x708cfd26 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x70bc17d7 inode_wait +EXPORT_SYMBOL vmlinux 0x70d053fd try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x70e0515e uart_update_timeout +EXPORT_SYMBOL vmlinux 0x70e7cd46 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x70ebff35 con_is_bound +EXPORT_SYMBOL vmlinux 0x70f6910f bitmap_unplug +EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request +EXPORT_SYMBOL vmlinux 0x70fea097 napi_complete +EXPORT_SYMBOL vmlinux 0x7114150a __devm_request_region +EXPORT_SYMBOL vmlinux 0x711d76ec dm_unregister_target +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712c3bff iget5_locked +EXPORT_SYMBOL vmlinux 0x71348e90 del_gendisk +EXPORT_SYMBOL vmlinux 0x7165de52 bdget_disk +EXPORT_SYMBOL vmlinux 0x716a47ca __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x716fcce4 set_bh_page +EXPORT_SYMBOL vmlinux 0x717de3a4 pci_request_regions +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b93127 simple_release_fs +EXPORT_SYMBOL vmlinux 0x71deb7f2 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x71e768cd blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x71f6cc6a bd_set_size +EXPORT_SYMBOL vmlinux 0x71f6eb38 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x71f9db89 kill_pgrp +EXPORT_SYMBOL vmlinux 0x72305593 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x72334d0f seq_bitmap +EXPORT_SYMBOL vmlinux 0x7234eafb otg_state_string +EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x725b3a54 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x726bf2fd path_put +EXPORT_SYMBOL vmlinux 0x729b4a83 _lv1_get_spe_all_interrupt_statuses +EXPORT_SYMBOL vmlinux 0x72aa82c6 param_ops_charp +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72c06589 kernel_listen +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f216ec account_page_writeback +EXPORT_SYMBOL vmlinux 0x73000e1f ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x730ff363 param_set_uint +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x7326a8f8 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x732b7833 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x732e0f40 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x732e9ead tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x7347d6a8 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x736bf2ee swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x736c79dc param_get_byte +EXPORT_SYMBOL vmlinux 0x736ceef9 seq_path +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x737de5e9 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x73917a5d iov_iter_copy_from_user +EXPORT_SYMBOL vmlinux 0x739a2648 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x73a903c4 vfsmount_lock_local_lock +EXPORT_SYMBOL vmlinux 0x73b992dc idr_remove_all +EXPORT_SYMBOL vmlinux 0x73c91fe5 phy_scan_fixups +EXPORT_SYMBOL vmlinux 0x73d91c6c get_unmapped_area_prot +EXPORT_SYMBOL vmlinux 0x73f191ac of_match_node +EXPORT_SYMBOL vmlinux 0x73f5308b end_writeback +EXPORT_SYMBOL vmlinux 0x740e8634 create_proc_entry +EXPORT_SYMBOL vmlinux 0x744de149 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x7469fcfe radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x747353df softnet_data +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x7491ff8f tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x749a879f pci_enable_bridges +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c4ebb2 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x74cc1cbe unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler +EXPORT_SYMBOL vmlinux 0x75040acc inet_frags_init +EXPORT_SYMBOL vmlinux 0x7515a5af input_unregister_handle +EXPORT_SYMBOL vmlinux 0x751b2247 param_get_bool +EXPORT_SYMBOL vmlinux 0x751c2917 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x756c786e _lv1_connect_interrupt_event_receive_port +EXPORT_SYMBOL vmlinux 0x756e6992 strnicmp +EXPORT_SYMBOL vmlinux 0x75754995 _lv1_storage_check_async_status +EXPORT_SYMBOL vmlinux 0x7576319b bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x757be6a5 freeze_super +EXPORT_SYMBOL vmlinux 0x759826a4 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75ac0197 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75bed22b rt6_lookup +EXPORT_SYMBOL vmlinux 0x75c07377 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x75c0fa6e blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x75ddf6d6 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x75e4f5aa pasemi_read_mac_reg +EXPORT_SYMBOL vmlinux 0x760898c2 __blk_end_request +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760b437a unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x76207fe3 dma_set_mask +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x764e2224 _lv1_disconnect_irq_plug_ext +EXPORT_SYMBOL vmlinux 0x766c4a4d mmc_remove_host +EXPORT_SYMBOL vmlinux 0x768378d8 journal_get_create_access +EXPORT_SYMBOL vmlinux 0x76908bf2 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x769b25d2 _lv1_get_version_info +EXPORT_SYMBOL vmlinux 0x76b6f8fc vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0x76b79356 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x76bf656d __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e597f5 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x76f26fd2 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x77144936 _lv1_disconnect_irq_plug +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x77270ac9 pci_do_scan_bus +EXPORT_SYMBOL vmlinux 0x772b785c dst_destroy +EXPORT_SYMBOL vmlinux 0x7731d408 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x773a9c94 blk_iopoll_enabled +EXPORT_SYMBOL vmlinux 0x774be0fe pci_get_subsys +EXPORT_SYMBOL vmlinux 0x77614dfb mutex_lock +EXPORT_SYMBOL vmlinux 0x7761dbf0 of_find_property +EXPORT_SYMBOL vmlinux 0x776f5699 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a118e3 lookup_bdev +EXPORT_SYMBOL vmlinux 0x77a2e98c macio_release_resources +EXPORT_SYMBOL vmlinux 0x77b7e428 tcp_v4_tw_get_peer +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d78057 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x77df0847 __set_personality +EXPORT_SYMBOL vmlinux 0x77ecac9f zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x77fa5d1f ns_to_timespec +EXPORT_SYMBOL vmlinux 0x780aa81e __inet6_hash +EXPORT_SYMBOL vmlinux 0x7814c00b sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x7839227e tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x783bbb98 dns_query +EXPORT_SYMBOL vmlinux 0x783f8458 redraw_screen +EXPORT_SYMBOL vmlinux 0x7876eb62 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x787fe159 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7888ad93 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x789a17f7 _lv1_destruct_logical_spe +EXPORT_SYMBOL vmlinux 0x78b8aec6 register_exec_domain +EXPORT_SYMBOL vmlinux 0x78bb8fad __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x78c3324e ethtool_op_set_sg +EXPORT_SYMBOL vmlinux 0x78d48349 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x78dbbaac register_cdrom +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e0f74f input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x78ed3e5c __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x790df6ca __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x79216bf4 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x7933e1e2 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x7947d1b9 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x7962a1f8 pm860x_page_bulk_write +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79755c9e blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x7978d792 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x7981532b fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x79989cab serio_rescan +EXPORT_SYMBOL vmlinux 0x79a00612 follow_pfn +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79ae3018 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x79c2bf4d inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x79e9983f dma_async_memcpy_buf_to_pg +EXPORT_SYMBOL vmlinux 0x7a1390f7 param_set_bool +EXPORT_SYMBOL vmlinux 0x7a164ed3 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x7a27c184 ewma_init +EXPORT_SYMBOL vmlinux 0x7a3132c1 bdget +EXPORT_SYMBOL vmlinux 0x7a371109 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a50a315 files_lglock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x7a68336e sock_i_uid +EXPORT_SYMBOL vmlinux 0x7a6d7099 vm_map_ram +EXPORT_SYMBOL vmlinux 0x7a78f139 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x7a794f79 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x7a85920b jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x7a8ebb10 ip_route_input_common +EXPORT_SYMBOL vmlinux 0x7a9c4c12 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x7aa64621 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x7aa9e259 _lv1_map_htab +EXPORT_SYMBOL vmlinux 0x7aae047e find_or_create_page +EXPORT_SYMBOL vmlinux 0x7acdd120 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7ad470aa d_prune_aliases +EXPORT_SYMBOL vmlinux 0x7ae1ba3c inet_stream_ops +EXPORT_SYMBOL vmlinux 0x7ae73de1 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7af0bad7 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x7af6ad90 get_user_pages +EXPORT_SYMBOL vmlinux 0x7b03848a verify_mem_not_deleted +EXPORT_SYMBOL vmlinux 0x7b081586 macio_dev_get +EXPORT_SYMBOL vmlinux 0x7b12c3c3 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x7b256846 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x7b279320 test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x7b2ab274 journal_flush +EXPORT_SYMBOL vmlinux 0x7b534a15 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x7b718228 ida_destroy +EXPORT_SYMBOL vmlinux 0x7b8f4c40 key_create_or_update +EXPORT_SYMBOL vmlinux 0x7bcc720a elv_add_request +EXPORT_SYMBOL vmlinux 0x7bd900cd gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x7bd94010 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x7be862a2 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x7be9d9f1 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7beb71e4 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x7bff3be7 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c07a188 misc_register +EXPORT_SYMBOL vmlinux 0x7c0fc088 brioctl_set +EXPORT_SYMBOL vmlinux 0x7c2df035 read_cache_pages +EXPORT_SYMBOL vmlinux 0x7c3dbaac kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c52e5c6 phy_driver_register +EXPORT_SYMBOL vmlinux 0x7c60d66e getname +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c63886c nf_getsockopt +EXPORT_SYMBOL vmlinux 0x7c744f8d __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x7c750f49 netif_napi_del +EXPORT_SYMBOL vmlinux 0x7c8e4277 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x7c904ded unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca341af kernel_thread +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb768d4 journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x7cbd8b38 dev_err +EXPORT_SYMBOL vmlinux 0x7cd44bbb inode_add_bytes +EXPORT_SYMBOL vmlinux 0x7ce0ae7c param_get_long +EXPORT_SYMBOL vmlinux 0x7d0db7f7 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d164f0e i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x7d2916da ll_rw_block +EXPORT_SYMBOL vmlinux 0x7d2eb375 mpage_writepages +EXPORT_SYMBOL vmlinux 0x7d2f5981 kobject_del +EXPORT_SYMBOL vmlinux 0x7d9476e5 skb_put +EXPORT_SYMBOL vmlinux 0x7d983226 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x7d9a46c7 kobject_get +EXPORT_SYMBOL vmlinux 0x7da2a9b8 mount_bdev +EXPORT_SYMBOL vmlinux 0x7daef7d2 submit_bio +EXPORT_SYMBOL vmlinux 0x7dbbbde3 dev_mc_add +EXPORT_SYMBOL vmlinux 0x7dbe7bbd proc_dointvec +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7dca30d3 llc_mac_hdr_init +EXPORT_SYMBOL vmlinux 0x7dcadcc2 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e149527 dm_get_mapinfo +EXPORT_SYMBOL vmlinux 0x7e1cc927 mmc_do_release_host +EXPORT_SYMBOL vmlinux 0x7e328120 user_path_at +EXPORT_SYMBOL vmlinux 0x7e394c4e sysctl_local_reserved_ports +EXPORT_SYMBOL vmlinux 0x7e49f72c agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x7e6f50f8 vm_insert_page +EXPORT_SYMBOL vmlinux 0x7e79a89a __lock_buffer +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7eaa76c6 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x7ec28ca6 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x7ec9bfbc strncpy +EXPORT_SYMBOL vmlinux 0x7ef73440 load_nls +EXPORT_SYMBOL vmlinux 0x7f17c7a0 bdevname +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f261f1a call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7f27a60f kernel_bind +EXPORT_SYMBOL vmlinux 0x7f340ee8 blk_init_tags +EXPORT_SYMBOL vmlinux 0x7f664120 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x7f928fac cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x7f960fc1 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x7f9f8841 idr_remove +EXPORT_SYMBOL vmlinux 0x7fa28634 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x7fbb2aa0 generic_pipe_buf_unmap +EXPORT_SYMBOL vmlinux 0x7fe29110 mmc_suspend_host +EXPORT_SYMBOL vmlinux 0x7fe3b51d cap_netlink_recv +EXPORT_SYMBOL vmlinux 0x7fed4c52 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x7ffe1559 register_netdev +EXPORT_SYMBOL vmlinux 0x80010ca5 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x800df1d7 groups_free +EXPORT_SYMBOL vmlinux 0x800e88ae macio_register_driver +EXPORT_SYMBOL vmlinux 0x801125b7 padata_stop +EXPORT_SYMBOL vmlinux 0x801927ac dquot_free_inode +EXPORT_SYMBOL vmlinux 0x801f5a3f __strncpy_from_user +EXPORT_SYMBOL vmlinux 0x80439d48 proc_net_netfilter +EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x806af058 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x80789b58 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x808106cb block_write_full_page_endio +EXPORT_SYMBOL vmlinux 0x80cce993 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x80e76a79 __mutex_init +EXPORT_SYMBOL vmlinux 0x810b3618 param_ops_string +EXPORT_SYMBOL vmlinux 0x8111c247 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x8113a937 security_inode_permission +EXPORT_SYMBOL vmlinux 0x8119681b qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x8122e8e2 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x812ef583 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f0fdb journal_start +EXPORT_SYMBOL vmlinux 0x816d8995 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x81724559 init_special_inode +EXPORT_SYMBOL vmlinux 0x81868ab1 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x8194b2de elv_abort_queue +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81cff456 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x81d5cd1e genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x81d9f7f2 _lv1_put_iopte +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81f8596e vfs_lstat +EXPORT_SYMBOL vmlinux 0x81fd0027 of_parse_phandles_with_args +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8228dd3e tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x822d476a __serio_register_driver +EXPORT_SYMBOL vmlinux 0x823444ab pci_ltr_supported +EXPORT_SYMBOL vmlinux 0x8241d28c alloc_fcdev +EXPORT_SYMBOL vmlinux 0x8251bcc3 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x8260686f bitmap_find_next_zero_area +EXPORT_SYMBOL vmlinux 0x827c5bb0 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x82819e48 file_update_time +EXPORT_SYMBOL vmlinux 0x828eda8b file_open_root +EXPORT_SYMBOL vmlinux 0x829fbfe4 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b1b9c6 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x82d9ed87 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x82e2d641 kthread_bind +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x82e9c083 csum_partial_copy_fromiovecend +EXPORT_SYMBOL vmlinux 0x832da063 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x83302220 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x83309692 mntput +EXPORT_SYMBOL vmlinux 0x83606efc blk_get_request +EXPORT_SYMBOL vmlinux 0x83718f97 inet_sendpage +EXPORT_SYMBOL vmlinux 0x837624b6 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x83800bfa kref_init +EXPORT_SYMBOL vmlinux 0x8384a2c5 tty_unlock +EXPORT_SYMBOL vmlinux 0x838f70b0 twl_i2c_write_u8 +EXPORT_SYMBOL vmlinux 0x83a476ce bitmap_scnlistprintf +EXPORT_SYMBOL vmlinux 0x83d86992 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL vmlinux 0x83f912d3 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x84053c80 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x840d45a4 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x8414f6f6 writeback_inodes_sb_if_idle +EXPORT_SYMBOL vmlinux 0x841d8e1c __break_lease +EXPORT_SYMBOL vmlinux 0x84247448 gen_pool_free +EXPORT_SYMBOL vmlinux 0x842635e0 dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x8426b1bf end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x84279146 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x842aa087 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x8436f8e3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x843997a0 seq_open_private +EXPORT_SYMBOL vmlinux 0x845124e0 ps3_mm_phys_to_lpar +EXPORT_SYMBOL vmlinux 0x8462b6de fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x846bcc01 dm_table_get +EXPORT_SYMBOL vmlinux 0x8476b964 input_event +EXPORT_SYMBOL vmlinux 0x8480d902 dev_get_by_flags_rcu +EXPORT_SYMBOL vmlinux 0x848cc8ae bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84a70ce2 sk_free +EXPORT_SYMBOL vmlinux 0x84b5070d led_brightness_set +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84dd619b nf_log_register +EXPORT_SYMBOL vmlinux 0x84f00e38 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x8511f177 vm_event_states +EXPORT_SYMBOL vmlinux 0x8516ea4a pci_scan_slot +EXPORT_SYMBOL vmlinux 0x851d3efe inode_set_bytes +EXPORT_SYMBOL vmlinux 0x85333195 d_delete +EXPORT_SYMBOL vmlinux 0x85535af7 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x8561acb2 skb_push +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856bd3f8 tcp_connect +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x85a316fe pci_set_mwi +EXPORT_SYMBOL vmlinux 0x85a407ba pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85b42a96 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85ba1b4f prepare_creds +EXPORT_SYMBOL vmlinux 0x85d5b14a inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x86052076 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x861aa86f mdiobus_read +EXPORT_SYMBOL vmlinux 0x861b46fb tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x862080f7 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x862dad10 udp_seq_open +EXPORT_SYMBOL vmlinux 0x86332a7e scm_fp_dup +EXPORT_SYMBOL vmlinux 0x863a0908 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x8642f8bc km_new_mapping +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664a2ad mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8665f8db vio_register_device_node +EXPORT_SYMBOL vmlinux 0x866849d7 mmc_erase +EXPORT_SYMBOL vmlinux 0x8687bf1a clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x86892646 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a40beb blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x86d40e5a skb_copy +EXPORT_SYMBOL vmlinux 0x86d6a074 fasync_helper +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86e922ff tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x86ea1c2d sock_kmalloc +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86ff6a78 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x870bf928 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8730de3c netdev_class_create_file +EXPORT_SYMBOL vmlinux 0x87372e9b max8998_write_reg +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x873db2ab phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x8752dbf6 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x877d9ecb simple_write_begin +EXPORT_SYMBOL vmlinux 0x877ee0df journal_revoke +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87981a83 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x87a41a11 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x87b16054 mdiobus_free +EXPORT_SYMBOL vmlinux 0x87c91047 register_filesystem +EXPORT_SYMBOL vmlinux 0x87de86ae __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x87df8ee5 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x87f3b1bc cont_write_begin +EXPORT_SYMBOL vmlinux 0x87f61450 mnt_unpin +EXPORT_SYMBOL vmlinux 0x87f7f950 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x8805909f compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x880da1b1 _lv1_get_logical_partition_id +EXPORT_SYMBOL vmlinux 0x881039d0 zlib_inflate +EXPORT_SYMBOL vmlinux 0x881affde sock_create +EXPORT_SYMBOL vmlinux 0x8829ce21 create_mnt_ns +EXPORT_SYMBOL vmlinux 0x882de49b proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x8834396c mod_timer +EXPORT_SYMBOL vmlinux 0x886a9a7f ps2_init +EXPORT_SYMBOL vmlinux 0x88ddc3b1 bio_free +EXPORT_SYMBOL vmlinux 0x88f93132 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x891a1cac jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x892d7592 inet6_getname +EXPORT_SYMBOL vmlinux 0x8945c3d0 ip_xfrm_me_harder +EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x8956f064 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x8960197c scsi_prep_return +EXPORT_SYMBOL vmlinux 0x897473df mktime +EXPORT_SYMBOL vmlinux 0x89762eee dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x897f061d downgrade_write +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c5a8be smu_get_sdb_partition +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d66811 build_ehash_secret +EXPORT_SYMBOL vmlinux 0x89da4432 of_iomap +EXPORT_SYMBOL vmlinux 0x89defc9c iget_failed +EXPORT_SYMBOL vmlinux 0x89e1d9ca jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x89e20830 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x8a2e2ca8 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x8a3c1e4a jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a746aa2 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a807d09 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x8a8aa451 neigh_for_each +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9cef2a _lv1_allocate_device_dma_region +EXPORT_SYMBOL vmlinux 0x8ae07a22 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x8ae308a7 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x8b05a06d register_qdisc +EXPORT_SYMBOL vmlinux 0x8b0810da inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x8b095593 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x8b14e9a8 mddev_congested +EXPORT_SYMBOL vmlinux 0x8b1a7a66 pcie_aspm_enabled +EXPORT_SYMBOL vmlinux 0x8b1f1d74 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8b34a42d d_alloc_name +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b484ff4 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x8b5817df scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x8b7e0a67 simple_empty +EXPORT_SYMBOL vmlinux 0x8b7fe311 kmemdup +EXPORT_SYMBOL vmlinux 0x8bab6361 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x8bc3d5d1 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x8bce9e11 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x8bd67cad iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c23bfb0 ps3_dma_region_init +EXPORT_SYMBOL vmlinux 0x8c6dc98e inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x8c7a3757 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x8c8c95eb qdisc_destroy +EXPORT_SYMBOL vmlinux 0x8c8d79c0 _lv1_gpu_context_iomap +EXPORT_SYMBOL vmlinux 0x8c980a8d input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x8ca014b8 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cffb884 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x8d06f28b override_creds +EXPORT_SYMBOL vmlinux 0x8d1fec53 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d557e93 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x8d606468 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x8d6906d4 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x8d931a42 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8de2fbc5 _lv1_get_virtual_uart_param +EXPORT_SYMBOL vmlinux 0x8df26c86 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x8df843f4 sync_inode +EXPORT_SYMBOL vmlinux 0x8dfaaed2 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x8e0b7743 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x8e3777ac blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x8e444099 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x8e555738 param_get_uint +EXPORT_SYMBOL vmlinux 0x8e77271e ping_prot +EXPORT_SYMBOL vmlinux 0x8eb37c9e netif_rx_ni +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ecb1f42 d_move +EXPORT_SYMBOL vmlinux 0x8ee69235 timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8eea1bc9 smu_poll +EXPORT_SYMBOL vmlinux 0x8eec04ae __f_setown +EXPORT_SYMBOL vmlinux 0x8ef4edf2 generic_fillattr +EXPORT_SYMBOL vmlinux 0x8efa4c29 user_revoke +EXPORT_SYMBOL vmlinux 0x8f089003 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x8f48679a rb_prev +EXPORT_SYMBOL vmlinux 0x8f636d23 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f8c47fb inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x8f98d1e7 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x8f9a7378 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x8faf6a57 call_usermodehelper_freeinfo +EXPORT_SYMBOL vmlinux 0x8fc7f839 param_set_charp +EXPORT_SYMBOL vmlinux 0x8ff66782 param_get_ushort +EXPORT_SYMBOL vmlinux 0x90157f91 vc_cons +EXPORT_SYMBOL vmlinux 0x9037a4f5 vfs_fsync +EXPORT_SYMBOL vmlinux 0x90542d9e agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x9094c697 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x90ac214a journal_create +EXPORT_SYMBOL vmlinux 0x90b91d55 dma_direct_ops +EXPORT_SYMBOL vmlinux 0x90dee30c input_inject_event +EXPORT_SYMBOL vmlinux 0x90e146c2 trace_seq_putc +EXPORT_SYMBOL vmlinux 0x90ee8a7a bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x9115cfd1 journal_destroy +EXPORT_SYMBOL vmlinux 0x91201cef _lv1_enable_logical_spe +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x91415197 inet6_release +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9198bc0b sys_copyarea +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91c1749b scsi_init_io +EXPORT_SYMBOL vmlinux 0x91c4feca _lv1_unmap_htab +EXPORT_SYMBOL vmlinux 0x91de2f91 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x91ebcab3 bdev_read_only +EXPORT_SYMBOL vmlinux 0x922466c3 sg_miter_start +EXPORT_SYMBOL vmlinux 0x922dd3b0 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x92392cd9 iov_shorten +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923c54cf idr_destroy +EXPORT_SYMBOL vmlinux 0x923cffa3 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x926fe7e8 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x928dc8b5 rename_lock +EXPORT_SYMBOL vmlinux 0x929b3cac vio_register_driver +EXPORT_SYMBOL vmlinux 0x92b509e1 pci_restore_state +EXPORT_SYMBOL vmlinux 0x92beeb4d pci_select_bars +EXPORT_SYMBOL vmlinux 0x92ea4ae4 crc32_le +EXPORT_SYMBOL vmlinux 0x92f74b43 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x930410bf agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93089bee sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x93399e36 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x93448c57 screen_info +EXPORT_SYMBOL vmlinux 0x93507f1c _lv1_gpu_memory_allocate +EXPORT_SYMBOL vmlinux 0x9356c9d4 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x938e8293 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x9395b64f call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x939d0a00 dev_activate +EXPORT_SYMBOL vmlinux 0x939f7b6a tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93ccfd82 bio_map_kern +EXPORT_SYMBOL vmlinux 0x93f81421 __breadahead +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9414860e pid_task +EXPORT_SYMBOL vmlinux 0x94200c09 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x9425ea3a sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x94269a94 do_sync_write +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x9450e77c dm_io +EXPORT_SYMBOL vmlinux 0x94633bc0 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x94642760 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x94864c7a wl12xx_get_platform_data +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94d4a8ec udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x94e7b522 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x94fa72b6 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x94ff2055 dquot_enable +EXPORT_SYMBOL vmlinux 0x94ffd604 revalidate_disk +EXPORT_SYMBOL vmlinux 0x950feede i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9518b623 register_shrinker +EXPORT_SYMBOL vmlinux 0x951b22ad xfrm_register_type +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x953db383 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x954488a4 syncookie_secret +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9553c6e0 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x956a3d22 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x9581dadb nobh_write_begin +EXPORT_SYMBOL vmlinux 0x9581ea62 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x9597de2b __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x95ceb864 key_update +EXPORT_SYMBOL vmlinux 0x95da167f elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x95e288f8 kill_anon_super +EXPORT_SYMBOL vmlinux 0x96063f2c inode_change_ok +EXPORT_SYMBOL vmlinux 0x962427f2 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x965305da ps3_sb_event_receive_port_destroy +EXPORT_SYMBOL vmlinux 0x9653cd00 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x967930a9 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x96970dbf i8042_check_port_owner +EXPORT_SYMBOL vmlinux 0x96a779e2 vfs_statfs +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d1f2a7 mmc_assume_removable +EXPORT_SYMBOL vmlinux 0x96f0c11d __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x96f7020b cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x971027e7 md_register_thread +EXPORT_SYMBOL vmlinux 0x971859ce netlink_set_err +EXPORT_SYMBOL vmlinux 0x9729f355 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x9730d652 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x973988a4 kobject_add +EXPORT_SYMBOL vmlinux 0x973e2492 unlock_super +EXPORT_SYMBOL vmlinux 0x97478a82 bio_integrity_get_tag +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9749cff5 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976e014f _lv1_map_device_mmio_region +EXPORT_SYMBOL vmlinux 0x9777b3c3 grab_cache_page_nowait +EXPORT_SYMBOL vmlinux 0x9787ce53 tcf_register_action +EXPORT_SYMBOL vmlinux 0x978c2827 pci_map_rom +EXPORT_SYMBOL vmlinux 0x9794394f pci_pme_active +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a3f99c nf_register_hooks +EXPORT_SYMBOL vmlinux 0x97a90fc1 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x97b46341 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x980b10ef vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x98177648 _lv1_set_lpm_interval +EXPORT_SYMBOL vmlinux 0x9824c1b9 arp_invalidate +EXPORT_SYMBOL vmlinux 0x982926a2 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x9831e9e4 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x98394b16 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x983e09f5 irq_stat +EXPORT_SYMBOL vmlinux 0x98574ec2 proto_register +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x98719579 scsi_register +EXPORT_SYMBOL vmlinux 0x987867c2 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x98c31d62 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x98c60c90 vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0x98fa21b0 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x99199491 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x992009af vfs_readv +EXPORT_SYMBOL vmlinux 0x9927df4d put_tty_driver +EXPORT_SYMBOL vmlinux 0x992ee74d dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x9931010d bio_put +EXPORT_SYMBOL vmlinux 0x994b3f95 generic_file_aio_write +EXPORT_SYMBOL vmlinux 0x99525e3a vfsmount_lock_local_unlock +EXPORT_SYMBOL vmlinux 0x99572e56 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x99655d7c locks_copy_lock +EXPORT_SYMBOL vmlinux 0x997362d4 sock_init_data +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a46d06 complete_request_key +EXPORT_SYMBOL vmlinux 0x99acbccf is_container_init +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99bfbe39 get_unused_fd +EXPORT_SYMBOL vmlinux 0x99c24cfe _lv1_free_device_dma_region +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99d764cd dmam_pool_create +EXPORT_SYMBOL vmlinux 0x99da7587 seq_release +EXPORT_SYMBOL vmlinux 0x99e1975c mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x99ea155d sk_alloc +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1ffb92 _lv1_clear_spe_interrupt_status +EXPORT_SYMBOL vmlinux 0x9a41f0bb force_sig +EXPORT_SYMBOL vmlinux 0x9a44b907 security_path_symlink +EXPORT_SYMBOL vmlinux 0x9a5fef2f blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x9a626734 ftrace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x9a6c2531 pasemi_dma_init +EXPORT_SYMBOL vmlinux 0x9aa56fad backlight_force_update +EXPORT_SYMBOL vmlinux 0x9aabc564 crc16 +EXPORT_SYMBOL vmlinux 0x9ab8808c param_get_charp +EXPORT_SYMBOL vmlinux 0x9ab986a8 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x9accb2de qdisc_tree_decrease_qlen +EXPORT_SYMBOL vmlinux 0x9acdfd72 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x9ad0236f __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9b1df074 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b84c339 fb_find_mode +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9be271bb dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x9bf8437a mutex_trylock +EXPORT_SYMBOL vmlinux 0x9c012508 fb_parse_edid +EXPORT_SYMBOL vmlinux 0x9c049d4d mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x9c0ea3cd memscan +EXPORT_SYMBOL vmlinux 0x9c0fb1b9 padata_start +EXPORT_SYMBOL vmlinux 0x9c2a9cb5 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x9c33439a inet_csk_accept +EXPORT_SYMBOL vmlinux 0x9c3b25e5 inet_frag_evictor +EXPORT_SYMBOL vmlinux 0x9c3e0d21 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5f81da cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x9c62663f eth_mac_addr +EXPORT_SYMBOL vmlinux 0x9c711a66 unlock_buffer +EXPORT_SYMBOL vmlinux 0x9c72d294 vio_get_attribute +EXPORT_SYMBOL vmlinux 0x9c7df022 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x9c91d06f mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x9ca95a0e sort +EXPORT_SYMBOL vmlinux 0x9cb96e92 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x9cd78896 __netif_schedule +EXPORT_SYMBOL vmlinux 0x9cdf0ec5 vfsmount_lock_global_lock_online +EXPORT_SYMBOL vmlinux 0x9cf4c4e2 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x9cfd56c5 scsi_print_status +EXPORT_SYMBOL vmlinux 0x9d0f5a05 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d181109 dma_iommu_ops +EXPORT_SYMBOL vmlinux 0x9d2ff8fc skb_append +EXPORT_SYMBOL vmlinux 0x9d314090 ppp_input_error +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d3dc387 netdev_warn +EXPORT_SYMBOL vmlinux 0x9d5ab642 dev_mc_del +EXPORT_SYMBOL vmlinux 0x9d67dfc6 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x9d786943 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9da0b079 blk_complete_request +EXPORT_SYMBOL vmlinux 0x9db21624 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x9db4743f scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x9dcf3281 add_disk +EXPORT_SYMBOL vmlinux 0x9dda534d posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x9ddb5175 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x9e0bcd0e tty_throttle +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0e0e6c pci_read_irq_line +EXPORT_SYMBOL vmlinux 0x9e102af1 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x9e23035a dquot_transfer +EXPORT_SYMBOL vmlinux 0x9e28be8f pci_get_class +EXPORT_SYMBOL vmlinux 0x9e2f52aa bdi_init +EXPORT_SYMBOL vmlinux 0x9e40b6e9 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x9e4bf170 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x9e4e2caa dquot_commit_info +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e607910 audit_log +EXPORT_SYMBOL vmlinux 0x9e6931a6 napi_frags_skb +EXPORT_SYMBOL vmlinux 0x9e845d5d agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x9e90caa8 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9f1714 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x9ea0ad49 __sg_free_table +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9edbb788 elv_rb_del +EXPORT_SYMBOL vmlinux 0x9ee226cf jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x9ee78669 _lv1_write_virtual_uart +EXPORT_SYMBOL vmlinux 0x9eecde16 do_brk +EXPORT_SYMBOL vmlinux 0x9ef33f3c gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x9ef7597e dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x9eff2f75 skb_set_dev +EXPORT_SYMBOL vmlinux 0x9f1c6a94 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x9f1eca89 free_task +EXPORT_SYMBOL vmlinux 0x9f2acaf3 pcim_iomap +EXPORT_SYMBOL vmlinux 0x9f2bdaac __bitmap_or +EXPORT_SYMBOL vmlinux 0x9f435e5d security_path_chown +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f538d63 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x9f5f380b i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x9f6ae3bf dqget +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f99740e cdev_init +EXPORT_SYMBOL vmlinux 0x9f9db5d6 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x9f9e7f58 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x9fccbc63 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x9fce4782 mapping_tagged +EXPORT_SYMBOL vmlinux 0x9fda0c2c ip6_frag_match +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe5f167 unregister_key_type +EXPORT_SYMBOL vmlinux 0x9ff82959 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xa01cf0bc inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06e00ff pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa0a7dbab bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0cc2565 genl_register_ops +EXPORT_SYMBOL vmlinux 0xa0ceef51 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f40a11 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa119c1b9 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14f3d8c ewma_add +EXPORT_SYMBOL vmlinux 0xa15353c5 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa16b932f padata_do_serial +EXPORT_SYMBOL vmlinux 0xa1941097 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xa1b1ea3a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1b93378 ethtool_op_get_tso +EXPORT_SYMBOL vmlinux 0xa1ba2fdb vfsmount_lock_global_lock +EXPORT_SYMBOL vmlinux 0xa1ba4b95 memcpy_fromiovecend +EXPORT_SYMBOL vmlinux 0xa1c4b6d2 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xa1c5a3b3 cleancache_enabled +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1e82c1a shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa20ce1b8 net_msg_warn +EXPORT_SYMBOL vmlinux 0xa2127cdc pasemi_dma_alloc_flag +EXPORT_SYMBOL vmlinux 0xa2234cfc of_device_register +EXPORT_SYMBOL vmlinux 0xa236b91f consume_skb +EXPORT_SYMBOL vmlinux 0xa266539d pci_release_regions +EXPORT_SYMBOL vmlinux 0xa28111c1 dev_get_flags +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa286a989 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xa28c7908 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xa2928177 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xa29dc0cc register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xa2a5fd77 inet_ehash_secret +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2bee265 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xa2c56c31 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa2dc5981 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xa2ee15e4 key_link +EXPORT_SYMBOL vmlinux 0xa2ef34d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa332cdd1 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa33f7c7c nla_strlcpy +EXPORT_SYMBOL vmlinux 0xa349f8f9 netdev_change_features +EXPORT_SYMBOL vmlinux 0xa34cec82 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xa35de80f ipv4_config +EXPORT_SYMBOL vmlinux 0xa3695d1e find_inode_number +EXPORT_SYMBOL vmlinux 0xa38acba0 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xa396c452 scsi_free_command +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3c736a5 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xa3d8672a ps3_dma_region_free +EXPORT_SYMBOL vmlinux 0xa3e3aa1b pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xa3f7e98c __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xa40913ab pci_reenable_device +EXPORT_SYMBOL vmlinux 0xa41e5187 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xa4566d1d nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xa4643c20 input_flush_device +EXPORT_SYMBOL vmlinux 0xa480c04b _lv1_gpu_context_attribute +EXPORT_SYMBOL vmlinux 0xa490907c inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xa49221d5 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4ae38fa ethtool_op_set_tx_csum +EXPORT_SYMBOL vmlinux 0xa4b560df scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xa4b5f7b2 new_inode +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bdd447 __cputime_clockt_factor +EXPORT_SYMBOL vmlinux 0xa4c41694 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xa4c7e36c blk_register_region +EXPORT_SYMBOL vmlinux 0xa4d2f8a1 dev_load +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa500173d pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xa51c7dba uart_suspend_port +EXPORT_SYMBOL vmlinux 0xa565e13d pci_target_state +EXPORT_SYMBOL vmlinux 0xa5674861 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a5595a genl_unregister_ops +EXPORT_SYMBOL vmlinux 0xa5a90693 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xa5bb1134 load_nls_default +EXPORT_SYMBOL vmlinux 0xa5c4b6f3 lease_modify +EXPORT_SYMBOL vmlinux 0xa5e05e89 i2c_smbus_process_call +EXPORT_SYMBOL vmlinux 0xa5e5972b pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xa60a9e89 uart_resume_port +EXPORT_SYMBOL vmlinux 0xa64feb04 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xa654099d inet_ioctl +EXPORT_SYMBOL vmlinux 0xa654ee97 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa676f217 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68e15fb security_path_mknod +EXPORT_SYMBOL vmlinux 0xa6cd3dcb udplite_prot +EXPORT_SYMBOL vmlinux 0xa6d21d48 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xa6d262d3 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xa6dcc773 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa6dfacfe cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xa6f14f47 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xa701cae5 i2c_release_client +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa75c9f25 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7a8123d macio_unregister_driver +EXPORT_SYMBOL vmlinux 0xa7e155b4 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xa7ea9325 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xa7fa0171 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xa816c525 schedule_work_on +EXPORT_SYMBOL vmlinux 0xa8223905 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa8232c78 strtobool +EXPORT_SYMBOL vmlinux 0xa83c91ef vc_resize +EXPORT_SYMBOL vmlinux 0xa8442b86 input_open_device +EXPORT_SYMBOL vmlinux 0xa854d491 of_node_get +EXPORT_SYMBOL vmlinux 0xa876f01e make_bad_inode +EXPORT_SYMBOL vmlinux 0xa886a958 krealloc +EXPORT_SYMBOL vmlinux 0xa8a05537 path_is_under +EXPORT_SYMBOL vmlinux 0xa8a6f639 __check_region +EXPORT_SYMBOL vmlinux 0xa8ab1c20 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xa8bae089 submit_bh +EXPORT_SYMBOL vmlinux 0xa8ced546 _lv1_net_set_interrupt_status_indicator +EXPORT_SYMBOL vmlinux 0xa8e1253a mmc_try_claim_host +EXPORT_SYMBOL vmlinux 0xa8e5292e agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa91c77b6 _lv1_end_of_interrupt +EXPORT_SYMBOL vmlinux 0xa921c0fe tcf_hash_release +EXPORT_SYMBOL vmlinux 0xa928ebcd mount_pseudo +EXPORT_SYMBOL vmlinux 0xa945312e ip_getsockopt +EXPORT_SYMBOL vmlinux 0xa95e468c ps3_dma_region_create +EXPORT_SYMBOL vmlinux 0xa983d4de i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xa9c9bbc1 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xa9ebb876 log_wait_commit +EXPORT_SYMBOL vmlinux 0xa9ffed6d __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xaa0edca8 pasemi_dma_alloc_fun +EXPORT_SYMBOL vmlinux 0xaa113a16 may_umount +EXPORT_SYMBOL vmlinux 0xaa2898b8 find_get_page +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa84346b ps2_command +EXPORT_SYMBOL vmlinux 0xaa874a1d journal_init_inode +EXPORT_SYMBOL vmlinux 0xaa892c07 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xaa9599fc d_lookup +EXPORT_SYMBOL vmlinux 0xaa971fbf sock_rfree +EXPORT_SYMBOL vmlinux 0xaaa556b7 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xaabe4844 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xaac6a3b9 tty_name +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab118d10 pm860x_page_set_bits +EXPORT_SYMBOL vmlinux 0xab1fc92b swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xab2919d9 search_binary_handler +EXPORT_SYMBOL vmlinux 0xab4f331b sock_kfree_s +EXPORT_SYMBOL vmlinux 0xab66f611 _lv1_set_lpm_trigger_control +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab7388fb inet_frag_find +EXPORT_SYMBOL vmlinux 0xab75b64f blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xab774e6f vfs_readdir +EXPORT_SYMBOL vmlinux 0xab8dcf48 bio_init +EXPORT_SYMBOL vmlinux 0xab9bf2b9 i2c_bit_add_numbered_bus +EXPORT_SYMBOL vmlinux 0xab9d2024 filemap_fault +EXPORT_SYMBOL vmlinux 0xabb33142 tty_port_close +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcf5e0d jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xabd0c91c rtc_time_to_tm +EXPORT_SYMBOL vmlinux 0xabe7895e bio_integrity_split +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac13b68e pci_bus_type +EXPORT_SYMBOL vmlinux 0xac15cc65 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac444f77 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xac5cd663 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xac6855b0 gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xac72403a create_empty_buffers +EXPORT_SYMBOL vmlinux 0xac9a476f backlight_device_register +EXPORT_SYMBOL vmlinux 0xacb9cfe9 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaccc4587 vga_get +EXPORT_SYMBOL vmlinux 0xaccdaf44 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xacd14ab8 _lv1_construct_logical_spe +EXPORT_SYMBOL vmlinux 0xacd3a8c9 vga_put +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad034706 neigh_destroy +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad062620 key_unlink +EXPORT_SYMBOL vmlinux 0xad0a6e0a flex_array_prealloc +EXPORT_SYMBOL vmlinux 0xad292ae9 generic_permission +EXPORT_SYMBOL vmlinux 0xad313e96 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xad372557 thermal_zone_device_register +EXPORT_SYMBOL vmlinux 0xad466018 quota_send_warning +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad6b2930 __page_symlink +EXPORT_SYMBOL vmlinux 0xad797454 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xadaa2657 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0xadc76b9e __bforget +EXPORT_SYMBOL vmlinux 0xadcac4a3 vfsmount_lock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xadced028 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xadde5f37 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xadeb7c61 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xadeffe25 _lv1_gpu_context_intr +EXPORT_SYMBOL vmlinux 0xadfab45b pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xae061b9e __pagevec_release +EXPORT_SYMBOL vmlinux 0xae1cac64 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xae20b152 udp_proc_register +EXPORT_SYMBOL vmlinux 0xae318a08 journal_forget +EXPORT_SYMBOL vmlinux 0xae3d5130 lro_flush_all +EXPORT_SYMBOL vmlinux 0xae3e6496 __dev_printk +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae6923b5 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xae81f732 inode_init_always +EXPORT_SYMBOL vmlinux 0xae972365 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xaeb3c912 tcp_check_req +EXPORT_SYMBOL vmlinux 0xaed49bc0 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xaed990f2 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xaedc45b0 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xaee21016 pm860x_page_reg_read +EXPORT_SYMBOL vmlinux 0xaef0a9f8 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf1967fc twl6040_power +EXPORT_SYMBOL vmlinux 0xaf1acb44 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xaf1c541b dma_async_device_register +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf34b76f tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xaf36e3e5 vfs_readlink +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf438d65 _lv1_get_repository_node_value +EXPORT_SYMBOL vmlinux 0xaf55c0c8 icmp_send +EXPORT_SYMBOL vmlinux 0xaf64ad0d zlib_deflate +EXPORT_SYMBOL vmlinux 0xaf75864e vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0xaf7b66fe vfs_follow_link +EXPORT_SYMBOL vmlinux 0xaf91d89f __kernel_param_lock +EXPORT_SYMBOL vmlinux 0xafa13eae filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xafabe94e block_read_full_page +EXPORT_SYMBOL vmlinux 0xafd68c33 flex_array_free +EXPORT_SYMBOL vmlinux 0xafde288f generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xafe010ce scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn +EXPORT_SYMBOL vmlinux 0xafe924a3 seq_open +EXPORT_SYMBOL vmlinux 0xafef8fa9 register_memory_notifier +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb010441d con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xb0146c3a param_set_byte +EXPORT_SYMBOL vmlinux 0xb03b15eb kill_fasync +EXPORT_SYMBOL vmlinux 0xb03bab38 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xb055cf77 kobject_init +EXPORT_SYMBOL vmlinux 0xb0af2f90 update_region +EXPORT_SYMBOL vmlinux 0xb0b4312d netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xb0b847ac __bitmap_full +EXPORT_SYMBOL vmlinux 0xb0c23119 skb_copy_datagram_iovec +EXPORT_SYMBOL vmlinux 0xb0c6a61d alloc_disk +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0fc6fcd blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xb107a929 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xb11fa1ce strlcat +EXPORT_SYMBOL vmlinux 0xb12a6d9e unregister_con_driver +EXPORT_SYMBOL vmlinux 0xb136b5f4 dev_emerg +EXPORT_SYMBOL vmlinux 0xb1552f8f generic_listxattr +EXPORT_SYMBOL vmlinux 0xb15aedaf proc_mkdir +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs +EXPORT_SYMBOL vmlinux 0xb170ee69 ethtool_op_set_tx_ipv6_csum +EXPORT_SYMBOL vmlinux 0xb19760c3 bitmap_onto +EXPORT_SYMBOL vmlinux 0xb1a03ce6 ata_port_printk +EXPORT_SYMBOL vmlinux 0xb1af52b9 cdev_add +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1dfaade thermal_zone_device_update +EXPORT_SYMBOL vmlinux 0xb1ef5a49 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb1fa3e40 dev_gro_receive +EXPORT_SYMBOL vmlinux 0xb20572a7 __nla_put +EXPORT_SYMBOL vmlinux 0xb23058e9 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xb236cb65 pci_remove_bus_device +EXPORT_SYMBOL vmlinux 0xb23794e6 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xb2499971 dev_change_flags +EXPORT_SYMBOL vmlinux 0xb24fcaf6 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xb253952e inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xb25cbfe5 macio_dev_put +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2683a8b netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xb27498fb tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xb2906a0d pskb_expand_head +EXPORT_SYMBOL vmlinux 0xb2986e00 skb_pull +EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0xb2c5842b should_remove_suid +EXPORT_SYMBOL vmlinux 0xb2c74047 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xb2d86af8 dev_deactivate +EXPORT_SYMBOL vmlinux 0xb3305d52 send_remote_softirq +EXPORT_SYMBOL vmlinux 0xb36372b4 nf_log_packet +EXPORT_SYMBOL vmlinux 0xb37af3c8 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xb3a307c6 si_meminfo +EXPORT_SYMBOL vmlinux 0xb3a33b24 ps2_end_command +EXPORT_SYMBOL vmlinux 0xb3a51410 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xb3a74469 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xb3bf73df cpu_active_mask +EXPORT_SYMBOL vmlinux 0xb3e9edff is_bad_inode +EXPORT_SYMBOL vmlinux 0xb3fd13f8 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xb3fe01c2 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact +EXPORT_SYMBOL vmlinux 0xb407dc7a tcp_tso_segment +EXPORT_SYMBOL vmlinux 0xb412edcd ab8500_gpadc_read_raw +EXPORT_SYMBOL vmlinux 0xb41cbfd0 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb438b54e pci_enable_device +EXPORT_SYMBOL vmlinux 0xb44c0e9f tty_vhangup +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb48a086f sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xb48a58a1 rtnl_notify +EXPORT_SYMBOL vmlinux 0xb4c6e67e dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xb4d9cfc5 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xb4dd68e2 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xb5002584 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xb5044271 vsscanf +EXPORT_SYMBOL vmlinux 0xb50bca73 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xb5136065 put_disk +EXPORT_SYMBOL vmlinux 0xb5306a62 vfs_writev +EXPORT_SYMBOL vmlinux 0xb54533f7 usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xb5465b04 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xb5590311 cdrom_open +EXPORT_SYMBOL vmlinux 0xb56bfd9e smu_spinwait_cmd +EXPORT_SYMBOL vmlinux 0xb57f2255 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xb585e900 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5baaa54 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xb5f46d98 ethtool_op_get_tx_csum +EXPORT_SYMBOL vmlinux 0xb6075616 unregister_8022_client +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb628f715 files_lglock_local_lock +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb679432c iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xb6822a33 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xb68bfa9d node_states +EXPORT_SYMBOL vmlinux 0xb6a61a86 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6c5a973 scsi_show_result +EXPORT_SYMBOL vmlinux 0xb6d62fc9 phy_connect +EXPORT_SYMBOL vmlinux 0xb6d71ed0 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xb6e6a168 scsi_device_put +EXPORT_SYMBOL vmlinux 0xb6e75b68 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xb7332b7a tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xb753a9bc skb_checksum_help +EXPORT_SYMBOL vmlinux 0xb758b998 giveup_altivec +EXPORT_SYMBOL vmlinux 0xb75c293a tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xb78c61e8 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb79cb2ac scsi_block_requests +EXPORT_SYMBOL vmlinux 0xb7a0475a kfree_skb +EXPORT_SYMBOL vmlinux 0xb7ab198b mount_ns +EXPORT_SYMBOL vmlinux 0xb7be8150 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xb7d779f1 inode_init_owner +EXPORT_SYMBOL vmlinux 0xb7f23eb2 d_set_d_op +EXPORT_SYMBOL vmlinux 0xb8189d35 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xb835b3e4 radix_tree_prev_hole +EXPORT_SYMBOL vmlinux 0xb86097c1 security_file_permission +EXPORT_SYMBOL vmlinux 0xb86e4ab9 random32 +EXPORT_SYMBOL vmlinux 0xb87257bc console_start +EXPORT_SYMBOL vmlinux 0xb88cd171 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xb89986cc request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xb89af9bf srandom32 +EXPORT_SYMBOL vmlinux 0xb8a30c7e _lv1_add_lpm_event_bookmark +EXPORT_SYMBOL vmlinux 0xb8ac1eee of_phy_find_device +EXPORT_SYMBOL vmlinux 0xb8bb1815 seq_release_private +EXPORT_SYMBOL vmlinux 0xb8d6f4b9 security_path_rmdir +EXPORT_SYMBOL vmlinux 0xb8d9b94d of_parse_phandle +EXPORT_SYMBOL vmlinux 0xb90d45ea phy_find_first +EXPORT_SYMBOL vmlinux 0xb913e59c blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xb91cc50d skb_recycle_check +EXPORT_SYMBOL vmlinux 0xb978c389 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xb98a0185 rtc_tm_to_time +EXPORT_SYMBOL vmlinux 0xb98ea973 dev_addr_init +EXPORT_SYMBOL vmlinux 0xb9c5e378 scsi_reset_provider +EXPORT_SYMBOL vmlinux 0xb9e26ac9 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xb9ed3fbb cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xba122a2c smu_done_complete +EXPORT_SYMBOL vmlinux 0xba2c731f mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xba44441a journal_load +EXPORT_SYMBOL vmlinux 0xba451870 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5f42bc skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xba6c779d ethtool_op_set_ufo +EXPORT_SYMBOL vmlinux 0xba6d5fca blk_peek_request +EXPORT_SYMBOL vmlinux 0xba9c9e8d journal_set_features +EXPORT_SYMBOL vmlinux 0xbaa2782a kstrndup +EXPORT_SYMBOL vmlinux 0xbaaab8ae timespec_to_jiffies +EXPORT_SYMBOL vmlinux 0xbac2106d tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xbafb74e5 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xbb167766 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xbb189cad disallow_signal +EXPORT_SYMBOL vmlinux 0xbb23ae24 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xbb33ba2b filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xbb42c603 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xbb46918f posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb7d54ea __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9bf5a6 tcp_poll +EXPORT_SYMBOL vmlinux 0xbb9fe630 journal_update_format +EXPORT_SYMBOL vmlinux 0xbba159e0 files_lglock_local_unlock +EXPORT_SYMBOL vmlinux 0xbba437be sk_release_kernel +EXPORT_SYMBOL vmlinux 0xbbb62348 block_commit_write +EXPORT_SYMBOL vmlinux 0xbbda7a94 get_write_access +EXPORT_SYMBOL vmlinux 0xbc08d140 mmc_add_host +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc382c54 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0xbc3f6afa down_read +EXPORT_SYMBOL vmlinux 0xbc437d77 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xbc987244 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xbcba0057 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xbccd9209 blk_put_queue +EXPORT_SYMBOL vmlinux 0xbccdc2f6 flex_array_put +EXPORT_SYMBOL vmlinux 0xbcd9ce4a d_drop +EXPORT_SYMBOL vmlinux 0xbce5ab31 ip6_route_output +EXPORT_SYMBOL vmlinux 0xbcf54b00 generic_file_open +EXPORT_SYMBOL vmlinux 0xbd2fa522 skb_unlink +EXPORT_SYMBOL vmlinux 0xbd490ca8 udp_prot +EXPORT_SYMBOL vmlinux 0xbd68f00c __get_user_pages +EXPORT_SYMBOL vmlinux 0xbd7f8c9b idr_get_next +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd8cfa15 pasemi_write_mac_reg +EXPORT_SYMBOL vmlinux 0xbd8d2233 __block_write_begin +EXPORT_SYMBOL vmlinux 0xbd9a671b napi_frags_finish +EXPORT_SYMBOL vmlinux 0xbdbe7378 cookie_check_timestamp +EXPORT_SYMBOL vmlinux 0xbdc6a8f8 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xbdcd2e08 lookup_hash +EXPORT_SYMBOL vmlinux 0xbdcd815a d_rehash +EXPORT_SYMBOL vmlinux 0xbde2c600 input_unregister_device +EXPORT_SYMBOL vmlinux 0xbde5ace8 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xbdf5c25c rb_next +EXPORT_SYMBOL vmlinux 0xbe108de3 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xbe265665 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xbe2c0274 add_timer +EXPORT_SYMBOL vmlinux 0xbe41d760 single_release +EXPORT_SYMBOL vmlinux 0xbe702284 pipe_unlock +EXPORT_SYMBOL vmlinux 0xbe77aebe down_write_trylock +EXPORT_SYMBOL vmlinux 0xbe78df7a tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xbe814159 ida_remove +EXPORT_SYMBOL vmlinux 0xbe9b0b83 mem_cgroup_count_vm_event +EXPORT_SYMBOL vmlinux 0xbea18b13 mach_powermac +EXPORT_SYMBOL vmlinux 0xbeb6fc64 journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xbeeb9f2f mdiobus_write +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefbd94c dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xbf35695a ihold +EXPORT_SYMBOL vmlinux 0xbf48c722 cpu_sysdev_class +EXPORT_SYMBOL vmlinux 0xbf7cf133 ethtool_op_get_sg +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf806375 mem_cgroup_update_page_stat +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9429eb pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfb69d3f simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd0770f xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xbfd2e9a9 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xbfd4312d loop_register_transfer +EXPORT_SYMBOL vmlinux 0xbfdff814 of_get_address +EXPORT_SYMBOL vmlinux 0xbfe63ba8 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbfee3c3e tcp_prot +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xc05701eb jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xc0580937 rb_erase +EXPORT_SYMBOL vmlinux 0xc059a059 tcp_valid_rtt_meas +EXPORT_SYMBOL vmlinux 0xc05b1c4e proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xc0760476 blk_rq_init +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc087db14 ata_link_printk +EXPORT_SYMBOL vmlinux 0xc09651d9 crc32_be +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a7e849 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xc0b2494c vfsmount_lock_lock_init +EXPORT_SYMBOL vmlinux 0xc0d3d53c i2c_master_send +EXPORT_SYMBOL vmlinux 0xc0d4cc90 flush_old_exec +EXPORT_SYMBOL vmlinux 0xc0e13919 mmc_host_disable +EXPORT_SYMBOL vmlinux 0xc0f7ab2e md_write_end +EXPORT_SYMBOL vmlinux 0xc0fbe6a4 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xc0fc1112 journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xc10a63ad ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xc110bc78 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xc12670d5 led_blink_set +EXPORT_SYMBOL vmlinux 0xc1290af4 sys_fillrect +EXPORT_SYMBOL vmlinux 0xc13511d7 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xc13b3a13 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xc144ee7d otg_set_transceiver +EXPORT_SYMBOL vmlinux 0xc16388cc xfrm_state_add +EXPORT_SYMBOL vmlinux 0xc177f062 __netdev_printk +EXPORT_SYMBOL vmlinux 0xc18f5568 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xc197c483 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xc1c2dd09 __hw_addr_flush +EXPORT_SYMBOL vmlinux 0xc1d7d179 blk_stack_limits +EXPORT_SYMBOL vmlinux 0xc20a4f83 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xc23b24b0 vmap +EXPORT_SYMBOL vmlinux 0xc23cc4d2 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc256e762 __bitmap_equal +EXPORT_SYMBOL vmlinux 0xc265620e km_policy_notify +EXPORT_SYMBOL vmlinux 0xc291dd77 dump_write +EXPORT_SYMBOL vmlinux 0xc2ad7ae4 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xc2afb42c twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xc2b6de62 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2fb9ee1 _lv1_shutdown_logical_partition +EXPORT_SYMBOL vmlinux 0xc314c3d2 __cputime_jiffies_factor +EXPORT_SYMBOL vmlinux 0xc316b98c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0xc34ff0bb clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xc35e28f7 llc_sap_list_lock +EXPORT_SYMBOL vmlinux 0xc3618116 journal_clear_err +EXPORT_SYMBOL vmlinux 0xc3758318 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xc3927901 set_page_dirty +EXPORT_SYMBOL vmlinux 0xc39a125a skb_copy_and_csum_datagram_iovec +EXPORT_SYMBOL vmlinux 0xc3a27dfd i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xc3aad025 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xc3cf1128 in_group_p +EXPORT_SYMBOL vmlinux 0xc3fdfaad clip_tbl_hook +EXPORT_SYMBOL vmlinux 0xc3fe87c8 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc409146a dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xc41f1696 _lv1_configure_virtual_uart_irq +EXPORT_SYMBOL vmlinux 0xc4200914 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xc43551b1 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xc43fa081 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xc441afdd generic_file_aio_read +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc4870cc0 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4ba1e80 block_write_full_page +EXPORT_SYMBOL vmlinux 0xc4c1f59d elv_register_queue +EXPORT_SYMBOL vmlinux 0xc4fc3f94 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xc5089620 _lv1_stop_ppe_periodic_tracer +EXPORT_SYMBOL vmlinux 0xc50bab05 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xc52c6e2b sock_register +EXPORT_SYMBOL vmlinux 0xc52f5714 fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc5576e06 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xc55c2a9d inode_sb_list_lock +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc5670bfe balance_dirty_pages_ratelimited_nr +EXPORT_SYMBOL vmlinux 0xc56787fd set_binfmt +EXPORT_SYMBOL vmlinux 0xc57b1ba2 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xc5a37aa8 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xc5b9359a of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5dba418 mmc_free_host +EXPORT_SYMBOL vmlinux 0xc5f46566 rb_augment_insert +EXPORT_SYMBOL vmlinux 0xc5fee70b prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xc603053a dev_get_drvdata +EXPORT_SYMBOL vmlinux 0xc609b816 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xc619b624 kdb_current_task +EXPORT_SYMBOL vmlinux 0xc6256fe7 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc638ce75 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xc64a1126 __bio_clone +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc6710018 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xc685a9f5 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xc6abf6d1 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xc6b220e2 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc721d7e4 giveup_vsx +EXPORT_SYMBOL vmlinux 0xc740c64a memchr +EXPORT_SYMBOL vmlinux 0xc76dae23 kernel_read +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc78a02bd tty_port_init +EXPORT_SYMBOL vmlinux 0xc791d4aa blk_recount_segments +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a059c7 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7bb01a5 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xc7bf9865 __elv_add_request +EXPORT_SYMBOL vmlinux 0xc7e873ba generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xc7e9ab0b icmpv6_send +EXPORT_SYMBOL vmlinux 0xc7ec28b0 memcmp +EXPORT_SYMBOL vmlinux 0xc7fb7d80 mach_pseries +EXPORT_SYMBOL vmlinux 0xc8085cc1 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xc816946d pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xc8293f7e tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xc8321bb7 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8535a0e __register_binfmt +EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xc8764ee4 pci_enable_ido +EXPORT_SYMBOL vmlinux 0xc87823bf twl_i2c_read_u8 +EXPORT_SYMBOL vmlinux 0xc88a7bf8 md_write_start +EXPORT_SYMBOL vmlinux 0xc88e4a7f __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a4bacf idr_replace +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8e07219 flush_signals +EXPORT_SYMBOL vmlinux 0xc8e31d75 _lv1_configure_irq_state_bitmap +EXPORT_SYMBOL vmlinux 0xc8eb920e dev_alert +EXPORT_SYMBOL vmlinux 0xc8ef0680 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xc8f1ff0b mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xc91fe5d8 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xc91ff664 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc92d5913 sock_release +EXPORT_SYMBOL vmlinux 0xc9308639 journal_stop +EXPORT_SYMBOL vmlinux 0xc947ef6b bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xc9544df4 phy_detach +EXPORT_SYMBOL vmlinux 0xc95d2aa5 set_device_ro +EXPORT_SYMBOL vmlinux 0xc9643f27 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xc996d097 del_timer +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9aec10e journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xc9f37df3 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xc9fc598d pasemi_read_dma_reg +EXPORT_SYMBOL vmlinux 0xca0c4294 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xca2ee570 nf_register_hook +EXPORT_SYMBOL vmlinux 0xca34df04 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xca4c923d vscnprintf +EXPORT_SYMBOL vmlinux 0xca4de5ee get_phy_id +EXPORT_SYMBOL vmlinux 0xca5dbc50 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xca74837e scsi_device_resume +EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend +EXPORT_SYMBOL vmlinux 0xca853932 setup_new_exec +EXPORT_SYMBOL vmlinux 0xcaabf3f9 pasemi_write_iob_reg +EXPORT_SYMBOL vmlinux 0xcad47c98 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xcae14c05 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xcaf5f15d jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xcaf9a004 journal_restart +EXPORT_SYMBOL vmlinux 0xcb1c5a57 security_path_chmod +EXPORT_SYMBOL vmlinux 0xcb2dd524 vga_client_register +EXPORT_SYMBOL vmlinux 0xcb3d3024 pci_get_slot +EXPORT_SYMBOL vmlinux 0xcb7131fb fb_get_options +EXPORT_SYMBOL vmlinux 0xcb793964 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xcb7a1cd5 seq_read +EXPORT_SYMBOL vmlinux 0xcb8288f8 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xcb8e7088 dm_get_device +EXPORT_SYMBOL vmlinux 0xcb9937d8 ethtool_invalid_flags +EXPORT_SYMBOL vmlinux 0xcba50433 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xcbbdf166 uart_register_driver +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbdbd08f tc_classify_compat +EXPORT_SYMBOL vmlinux 0xcbe8b038 _lv1_configure_execution_time_variable +EXPORT_SYMBOL vmlinux 0xcc07af75 strnlen +EXPORT_SYMBOL vmlinux 0xcc0bc63a pmac_register_agp_pm +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc1b6475 blkdev_get +EXPORT_SYMBOL vmlinux 0xcc1fd88a ___pskb_trim +EXPORT_SYMBOL vmlinux 0xcc220527 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xcc36f32e fb_unregister_client +EXPORT_SYMBOL vmlinux 0xcc4ce636 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc7f6a90 __find_get_block +EXPORT_SYMBOL vmlinux 0xcc7fa952 local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0xcc89c246 pasemi_dma_alloc_chan +EXPORT_SYMBOL vmlinux 0xcc91584e jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xcc9cfe2d sock_no_getname +EXPORT_SYMBOL vmlinux 0xcca94125 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xcccce15b register_console +EXPORT_SYMBOL vmlinux 0xcccdb03d dev_addr_add_multiple +EXPORT_SYMBOL vmlinux 0xccf70363 pskb_copy +EXPORT_SYMBOL vmlinux 0xcd0254f0 dev_uc_init +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd12f684 i2c_use_client +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2e68b3 journal_force_commit +EXPORT_SYMBOL vmlinux 0xcd330adb ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xcd3de44c qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xcd769f62 _lv1_gpu_device_map +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcdaf95e1 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xcde172ac radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xce0a5025 dst_release +EXPORT_SYMBOL vmlinux 0xce19bac5 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce35b0e8 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce3c8abc tty_port_close_start +EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume +EXPORT_SYMBOL vmlinux 0xce528035 free_buffer_head +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce7ce037 of_translate_address +EXPORT_SYMBOL vmlinux 0xceb795d6 write_one_page +EXPORT_SYMBOL vmlinux 0xcec3a908 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xced88654 skb_seq_read +EXPORT_SYMBOL vmlinux 0xcee09069 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xcee722e0 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xceebf62e mmc_host_enable +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcf015f7b do_settimeofday +EXPORT_SYMBOL vmlinux 0xcf337bd6 unregister_netdev +EXPORT_SYMBOL vmlinux 0xcf486b76 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xcf67df24 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xcf704705 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xcf7d4445 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xcf8e330b pci_set_ltr +EXPORT_SYMBOL vmlinux 0xcf901697 __strnlen_user +EXPORT_SYMBOL vmlinux 0xcfad67de pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xcfb7d5a0 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xcfb9006e jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0xcfcdef23 llc_build_and_send_ui_pkt +EXPORT_SYMBOL vmlinux 0xcfde3610 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xcfeb0be9 rb_augment_erase_begin +EXPORT_SYMBOL vmlinux 0xd0181f4f __bitmap_xor +EXPORT_SYMBOL vmlinux 0xd01aad81 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xd0347504 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd040332d generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xd05931ec _lv1_set_lpm_counter_control +EXPORT_SYMBOL vmlinux 0xd0637fb7 check_disk_size_change +EXPORT_SYMBOL vmlinux 0xd0799edd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xd08139fa unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd0a1277d of_find_node_by_path +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0c0efab simple_fill_super +EXPORT_SYMBOL vmlinux 0xd0d42c42 mod_timer_pending +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fa6774 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd10136c3 mach_powernv +EXPORT_SYMBOL vmlinux 0xd10ded1a pci_dev_get +EXPORT_SYMBOL vmlinux 0xd11c0dc1 __kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd1302ec5 alloc_file +EXPORT_SYMBOL vmlinux 0xd135e8b8 thermal_zone_device_unregister +EXPORT_SYMBOL vmlinux 0xd1712cf5 skb_dst_set_noref +EXPORT_SYMBOL vmlinux 0xd172cb8d netdev_increment_features +EXPORT_SYMBOL vmlinux 0xd17ccfad wait_iff_congested +EXPORT_SYMBOL vmlinux 0xd18bcdbe sget +EXPORT_SYMBOL vmlinux 0xd18c02c5 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xd18c2731 __dst_free +EXPORT_SYMBOL vmlinux 0xd1b75a00 misc_deregister +EXPORT_SYMBOL vmlinux 0xd1ca9a4a __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xd1cf89f5 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xd1d24df0 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xd1dbc291 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xd1e3184a mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0xd1e6b054 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xd1eb44a8 elv_rb_find +EXPORT_SYMBOL vmlinux 0xd1f152ad kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xd1fe8ebb _lv1_get_spe_interrupt_status +EXPORT_SYMBOL vmlinux 0xd2209bf8 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xd24b4bab remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd260d0ea of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xd2635da4 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xd276f795 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd2965f6f kthread_should_stop +EXPORT_SYMBOL vmlinux 0xd2989a1f module_layout +EXPORT_SYMBOL vmlinux 0xd2a38f3b dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xd2a455ce set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xd2c638f9 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xd2cd5568 interruptible_sleep_on_timeout +EXPORT_SYMBOL vmlinux 0xd2d31f9b ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xd2d51180 of_gpio_count +EXPORT_SYMBOL vmlinux 0xd2e537cc blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xd2ef2638 smu_cmdbuf_abs +EXPORT_SYMBOL vmlinux 0xd2fc2ebc register_framebuffer +EXPORT_SYMBOL vmlinux 0xd3082185 kernel_connect +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32d8113 generic_file_splice_write +EXPORT_SYMBOL vmlinux 0xd332f6f5 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xd3434c3f kref_sub +EXPORT_SYMBOL vmlinux 0xd3512e75 wait_on_sync_kiocb +EXPORT_SYMBOL vmlinux 0xd37cf2cb register_md_personality +EXPORT_SYMBOL vmlinux 0xd37fa3f7 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xd38480a0 rb_augment_erase_end +EXPORT_SYMBOL vmlinux 0xd39a8f48 scsi_get_command +EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3cb0305 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xd409383c pmu_request +EXPORT_SYMBOL vmlinux 0xd40c8f60 kthread_stop +EXPORT_SYMBOL vmlinux 0xd423b79d phy_start +EXPORT_SYMBOL vmlinux 0xd44258a6 generic_file_buffered_write +EXPORT_SYMBOL vmlinux 0xd47b8689 journal_wipe +EXPORT_SYMBOL vmlinux 0xd480944e jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xd4821ae1 qdisc_reset +EXPORT_SYMBOL vmlinux 0xd496d929 sys_imageblit +EXPORT_SYMBOL vmlinux 0xd49a4718 deactivate_super +EXPORT_SYMBOL vmlinux 0xd4c4b45d __cleancache_flush_page +EXPORT_SYMBOL vmlinux 0xd4fe55c9 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xd505239b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xd511e500 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xd529ffd1 lro_receive_skb +EXPORT_SYMBOL vmlinux 0xd52ab204 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xd530cb5a mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xd54896d3 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xd55f3209 _lv1_remove_repository_node +EXPORT_SYMBOL vmlinux 0xd5b037e1 kref_put +EXPORT_SYMBOL vmlinux 0xd5b6a7ab ip6_xmit +EXPORT_SYMBOL vmlinux 0xd5bbb46e mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xd5bfcdb6 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xd5c6353c invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xd5d162ea tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xd5e1d719 _lv1_set_ppe_periodic_tracer_frequency +EXPORT_SYMBOL vmlinux 0xd5f2172f del_timer_sync +EXPORT_SYMBOL vmlinux 0xd5f89dc0 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62129c7 set_groups +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd64324cc pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xd6534ee6 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xd65673b4 netdev_update_features +EXPORT_SYMBOL vmlinux 0xd6974feb pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xd6afb137 sock_no_connect +EXPORT_SYMBOL vmlinux 0xd6d6abde __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xd6dd61b2 simple_setattr +EXPORT_SYMBOL vmlinux 0xd6e230d3 netlink_unicast +EXPORT_SYMBOL vmlinux 0xd6edf811 _lv1_release_memory +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f10ffc phy_attach +EXPORT_SYMBOL vmlinux 0xd6fb13ad mmc_card_can_sleep +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd707addd posix_lock_file_wait +EXPORT_SYMBOL vmlinux 0xd72e1cfc _lv1_set_lpm_spr_trigger +EXPORT_SYMBOL vmlinux 0xd754449c fb_blank +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd764e1bb pci_enable_ltr +EXPORT_SYMBOL vmlinux 0xd77a5aa5 __bitmap_and +EXPORT_SYMBOL vmlinux 0xd786507c console_stop +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd79b5a02 allow_signal +EXPORT_SYMBOL vmlinux 0xd79bd6e9 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xd7d1f2a6 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xd7d95344 seq_puts +EXPORT_SYMBOL vmlinux 0xd7db90c5 splice_from_pipe_next +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ee1c0e skb_recycle +EXPORT_SYMBOL vmlinux 0xd802c260 pmac_resume_agp_for_card +EXPORT_SYMBOL vmlinux 0xd818fdea da903x_query_status +EXPORT_SYMBOL vmlinux 0xd82ac43c mount_nodev +EXPORT_SYMBOL vmlinux 0xd8502ad2 dump_seek +EXPORT_SYMBOL vmlinux 0xd85fa8f0 simple_rename +EXPORT_SYMBOL vmlinux 0xd86683d0 task_ns_capable +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a2ab95 in_egroup_p +EXPORT_SYMBOL vmlinux 0xd8a38553 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xd8b67822 agp_backend_release +EXPORT_SYMBOL vmlinux 0xd8c4d38e __bread +EXPORT_SYMBOL vmlinux 0xd8ce7e67 clocksource_register +EXPORT_SYMBOL vmlinux 0xd8d4a9ea jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xd8d9adb2 open_exec +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f602b1 scsi_prep_fn +EXPORT_SYMBOL vmlinux 0xd90bb8df unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xd91a204c tcp_sendpage +EXPORT_SYMBOL vmlinux 0xd91bf6cc netdev_set_bond_master +EXPORT_SYMBOL vmlinux 0xd92afabe bitmap_clear +EXPORT_SYMBOL vmlinux 0xd93000fb pci_set_power_state +EXPORT_SYMBOL vmlinux 0xd930c53a bio_add_page +EXPORT_SYMBOL vmlinux 0xd941940a i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xd94efe92 do_SAK +EXPORT_SYMBOL vmlinux 0xd981d42d fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9c571b3 stop_tty +EXPORT_SYMBOL vmlinux 0xd9d4d09d _lv1_release_io_segment +EXPORT_SYMBOL vmlinux 0xd9e5a9e3 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xda04a78f jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xda35eb8e elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xdaa43c85 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdae2b218 security_path_link +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb185e7b __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xdb199bfb alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xdb4811dc __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb76814e scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xdb87a2a3 pipe_to_file +EXPORT_SYMBOL vmlinux 0xdb890e20 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xdb9198cf skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xdb9559d9 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xdb9849dc posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xdbb24fc2 down_write +EXPORT_SYMBOL vmlinux 0xdbc5f886 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xdbcd416e sysctl_ip_nonlocal_bind +EXPORT_SYMBOL vmlinux 0xdbde5289 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xdbf0e0c2 locks_free_lock +EXPORT_SYMBOL vmlinux 0xdbf9322a put_page +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0a0102 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xdc0b6cce agp_bridge +EXPORT_SYMBOL vmlinux 0xdc0e3857 ip_defrag +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc2519e0 param_set_ulong +EXPORT_SYMBOL vmlinux 0xdc2adb35 add_taint +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc43a9c8 daemonize +EXPORT_SYMBOL vmlinux 0xdc4e92d2 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdc9bf4c9 serio_interrupt +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb5671d strlen +EXPORT_SYMBOL vmlinux 0xdce0c517 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume +EXPORT_SYMBOL vmlinux 0xdcfc6620 destroy_EII_client +EXPORT_SYMBOL vmlinux 0xdd1c65f6 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xdd244850 lro_flush_pkt +EXPORT_SYMBOL vmlinux 0xdd349cf3 netif_device_attach +EXPORT_SYMBOL vmlinux 0xdd3d69aa blk_init_queue +EXPORT_SYMBOL vmlinux 0xdd83a816 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xdd9f4628 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xdda8c380 pci_remove_behind_bridge +EXPORT_SYMBOL vmlinux 0xddabe925 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xddcd656e get_disk +EXPORT_SYMBOL vmlinux 0xddd2c053 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xdddd1953 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xdde80fa5 scsi_setup_blk_pc_cmnd +EXPORT_SYMBOL vmlinux 0xddec1d82 scsi_add_device +EXPORT_SYMBOL vmlinux 0xddee0c7a blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xddf7c469 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xde0e1173 __generic_file_aio_write +EXPORT_SYMBOL vmlinux 0xde2fe2d3 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde4b11b1 devm_ioremap +EXPORT_SYMBOL vmlinux 0xde5c2bd8 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde7a581a bio_pair_release +EXPORT_SYMBOL vmlinux 0xde847999 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xde8aecf9 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9930b5 sk_wait_data +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea5a1ff ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xdeb40602 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xded0a93d mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xdee1361d compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xdef5d379 do_splice_direct +EXPORT_SYMBOL vmlinux 0xdf09dd5f ppp_dev_name +EXPORT_SYMBOL vmlinux 0xdf177760 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xdf4c8767 ns_to_timeval +EXPORT_SYMBOL vmlinux 0xdf5f658d __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf60fc83 _lv1_net_start_tx_dma +EXPORT_SYMBOL vmlinux 0xdf6e6b4f tty_shutdown +EXPORT_SYMBOL vmlinux 0xdf8786c3 netdev_err +EXPORT_SYMBOL vmlinux 0xdf901dd6 generic_pipe_buf_map +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf999351 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xdfb0193e of_register_spi_devices +EXPORT_SYMBOL vmlinux 0xdfb6f7a2 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xdfc8ba1b qdisc_list_del +EXPORT_SYMBOL vmlinux 0xdfd0f3c8 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xe01ac628 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xe024e491 iput +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe08207ae netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xe08cb8cd dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xe097dd4f elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xe0aab741 tty_port_open +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b20207 sk_run_filter +EXPORT_SYMBOL vmlinux 0xe0bb9746 mmc_release_host +EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xe0fc24aa param_set_int +EXPORT_SYMBOL vmlinux 0xe0fd6a77 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe12d4ca3 install_exec_creds +EXPORT_SYMBOL vmlinux 0xe13cff31 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xe13ed552 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe177443c __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xe1859fd1 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xe1961450 mntget +EXPORT_SYMBOL vmlinux 0xe19c825d ip_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xe1ad19c8 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xe1f5378e freeze_bdev +EXPORT_SYMBOL vmlinux 0xe200c5b2 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20c63e7 _lv1_unmap_device_mmio_region +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe22ae43f of_device_is_available +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe246fb59 setattr_copy +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe25e6761 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xe2710c6c __scm_send +EXPORT_SYMBOL vmlinux 0xe2810e04 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe29e3a36 simple_getattr +EXPORT_SYMBOL vmlinux 0xe2ae4be3 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e0c7c6 __flush_icache_range +EXPORT_SYMBOL vmlinux 0xe313a062 pci_disable_ido +EXPORT_SYMBOL vmlinux 0xe33a12dc skb_clone +EXPORT_SYMBOL vmlinux 0xe3741bc3 sock_wake_async +EXPORT_SYMBOL vmlinux 0xe388c5af dev_get_stats +EXPORT_SYMBOL vmlinux 0xe3cc3f22 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3dccaaf netpoll_print_options +EXPORT_SYMBOL vmlinux 0xe3e29c9c __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xe40626be elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xe4377516 input_set_keycode +EXPORT_SYMBOL vmlinux 0xe44257cc dquot_operations +EXPORT_SYMBOL vmlinux 0xe44985df iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xe47b939c mac_find_mode +EXPORT_SYMBOL vmlinux 0xe4829dd8 register_quota_format +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe491664f input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xe4a4a922 dev_uc_add +EXPORT_SYMBOL vmlinux 0xe4a895fa up_write +EXPORT_SYMBOL vmlinux 0xe4ab71ea ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xe4d19830 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe4fe8db8 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xe5122890 flow_cache_genid +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5433c7d giveup_fpu +EXPORT_SYMBOL vmlinux 0xe54c2244 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xe566682a sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xe56c56ed sock_create_kern +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe588d18d mmc_request_done +EXPORT_SYMBOL vmlinux 0xe593dd42 generic_write_checks +EXPORT_SYMBOL vmlinux 0xe5acfbe7 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xe5b3c129 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xe5c3f5fc seq_lseek +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cc5fd5 ipv4_specific +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f5d580 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xe6002b16 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xe6038ce2 vfs_rename +EXPORT_SYMBOL vmlinux 0xe606d546 follow_down_one +EXPORT_SYMBOL vmlinux 0xe60988ac _lv1_query_logical_partition_address_region_info +EXPORT_SYMBOL vmlinux 0xe60d5ae4 d_alloc +EXPORT_SYMBOL vmlinux 0xe610136d pci_domain_nr +EXPORT_SYMBOL vmlinux 0xe61329f7 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xe627dc48 no_llseek +EXPORT_SYMBOL vmlinux 0xe643e180 dquot_initialize +EXPORT_SYMBOL vmlinux 0xe64437b0 blk_free_tags +EXPORT_SYMBOL vmlinux 0xe64d8460 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xe6524127 skb_dequeue +EXPORT_SYMBOL vmlinux 0xe65c2c57 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6dfc9fc security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xe6ef980e skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xe6efd197 tcp_close +EXPORT_SYMBOL vmlinux 0xe6f606f1 vfs_link +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe70feefa mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xe72c0993 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xe734df3c gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xe74165cc __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xe742f441 mnt_pin +EXPORT_SYMBOL vmlinux 0xe74aa406 _lv1_set_dabr +EXPORT_SYMBOL vmlinux 0xe752c5a3 journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xe753d7c7 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe75e6874 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xe7609b0d generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe790b866 llc_set_station_handler +EXPORT_SYMBOL vmlinux 0xe793cb6b scsi_setup_fs_cmnd +EXPORT_SYMBOL vmlinux 0xe79c485f blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xe7a664c4 nf_hooks +EXPORT_SYMBOL vmlinux 0xe7a78f68 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7a93989 nonseekable_open +EXPORT_SYMBOL vmlinux 0xe7cd99b7 smu_queue_simple +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e792ad skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xe7ede89a xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xe804701f jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xe80c1f00 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xe80ce219 sysctl_tcp_dma_copybreak +EXPORT_SYMBOL vmlinux 0xe8116e08 __kmalloc_node +EXPORT_SYMBOL vmlinux 0xe8149ec3 set_create_files_as +EXPORT_SYMBOL vmlinux 0xe8260dd0 scsi_host_get +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe8303a6e kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xe85779ef kern_unmount +EXPORT_SYMBOL vmlinux 0xe87de7ff skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe8b60b9d input_register_handler +EXPORT_SYMBOL vmlinux 0xe8b63ace radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xe8b81643 rtas +EXPORT_SYMBOL vmlinux 0xe8bece82 tcp_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xe8bfcfc8 inet_release +EXPORT_SYMBOL vmlinux 0xe8c949b1 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xe8d78471 of_get_next_child +EXPORT_SYMBOL vmlinux 0xe8e88313 sync_blockdev +EXPORT_SYMBOL vmlinux 0xe8ebf346 ab8500_gpadc_ad_to_voltage +EXPORT_SYMBOL vmlinux 0xe8f9313c iterate_supers_type +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91be2bb jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xe922b812 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xe922c6f2 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xe947065a fddi_type_trans +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe97c1c85 ip_mc_rejoin_groups +EXPORT_SYMBOL vmlinux 0xe98b15df pci_enable_msix +EXPORT_SYMBOL vmlinux 0xe9b3cd85 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xe9f49ac7 page_put_link +EXPORT_SYMBOL vmlinux 0xe9f59ba9 sk_dst_check +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea10212a int_to_scsilun +EXPORT_SYMBOL vmlinux 0xea10655a __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xea3f4fb2 journal_release_buffer +EXPORT_SYMBOL vmlinux 0xea6432ef node_data +EXPORT_SYMBOL vmlinux 0xea80bd39 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xea854ddb scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xea8a6c75 param_ops_long +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xea9855ae blk_limits_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xeab1234a kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xeabc50db blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeae0f51f pci_read_vpd +EXPORT_SYMBOL vmlinux 0xeaf2aedc jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xeb05595f ip_options_compile +EXPORT_SYMBOL vmlinux 0xeb2f1ac5 fget +EXPORT_SYMBOL vmlinux 0xeb2ff42f cdev_del +EXPORT_SYMBOL vmlinux 0xeb349885 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb5317c2 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xeb66ef91 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xeb6d9f52 input_allocate_device +EXPORT_SYMBOL vmlinux 0xeb7bb5b1 put_io_context +EXPORT_SYMBOL vmlinux 0xeb8334a7 skb_make_writable +EXPORT_SYMBOL vmlinux 0xeba23126 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebdbe48c radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xebea8c4d ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xec034947 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xec06e9bd find_vma +EXPORT_SYMBOL vmlinux 0xec15f00a tcp_cookie_generator +EXPORT_SYMBOL vmlinux 0xec1667d0 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xec27c4d1 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xec2fb2ea block_truncate_page +EXPORT_SYMBOL vmlinux 0xec30765a _lv1_allocate_io_segment +EXPORT_SYMBOL vmlinux 0xec4e50df free_user_ns +EXPORT_SYMBOL vmlinux 0xec7e8aaf netif_rx +EXPORT_SYMBOL vmlinux 0xec7f7595 netdev_class_remove_file +EXPORT_SYMBOL vmlinux 0xec9fcdaf cdrom_release +EXPORT_SYMBOL vmlinux 0xecad094d ilookup +EXPORT_SYMBOL vmlinux 0xecafceda skb_copy_datagram_const_iovec +EXPORT_SYMBOL vmlinux 0xecb72b64 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xecb8cce1 blk_insert_request +EXPORT_SYMBOL vmlinux 0xecbf5906 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xecd8d9c3 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xecfaf5bf send_sig +EXPORT_SYMBOL vmlinux 0xed302f0f tty_lock +EXPORT_SYMBOL vmlinux 0xed33fddd replace_mount_options +EXPORT_SYMBOL vmlinux 0xed36d094 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xed3b1edb mpage_readpages +EXPORT_SYMBOL vmlinux 0xed531ca8 touch_atime +EXPORT_SYMBOL vmlinux 0xed5c86f4 devm_ioremap_prot +EXPORT_SYMBOL vmlinux 0xed652427 _lv1_set_interrupt_mask +EXPORT_SYMBOL vmlinux 0xed668c4b __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xed6dfa90 __getblk +EXPORT_SYMBOL vmlinux 0xed930b8b macio_enable_devres +EXPORT_SYMBOL vmlinux 0xeda0d76e gen_estimator_active +EXPORT_SYMBOL vmlinux 0xeda481a4 md_error +EXPORT_SYMBOL vmlinux 0xedabf804 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xeddbdc10 pci_disable_obff +EXPORT_SYMBOL vmlinux 0xeddcab68 task_nice +EXPORT_SYMBOL vmlinux 0xeddf0eef xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xeddfc812 alloc_trdev +EXPORT_SYMBOL vmlinux 0xede5a98a kern_path_create +EXPORT_SYMBOL vmlinux 0xedf0b48c _lv1_storage_get_async_status +EXPORT_SYMBOL vmlinux 0xee268944 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3c1f29 d_clear_need_lookup +EXPORT_SYMBOL vmlinux 0xee410a87 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xee5bb20b _lv1_panic +EXPORT_SYMBOL vmlinux 0xee5c50ce skb_find_text +EXPORT_SYMBOL vmlinux 0xee75df8b register_snap_client +EXPORT_SYMBOL vmlinux 0xee811ae0 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xee8434be tty_write_room +EXPORT_SYMBOL vmlinux 0xee9174c5 _lv1_storage_read +EXPORT_SYMBOL vmlinux 0xee9afb65 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeecf9b09 km_state_notify +EXPORT_SYMBOL vmlinux 0xeedcb0a3 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xeee84f11 unregister_snap_client +EXPORT_SYMBOL vmlinux 0xef09cbe3 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xef109449 interruptible_sleep_on +EXPORT_SYMBOL vmlinux 0xef26f0fd udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init +EXPORT_SYMBOL vmlinux 0xef4adf31 log_start_commit +EXPORT_SYMBOL vmlinux 0xef6f6076 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xefb6b093 phy_device_free +EXPORT_SYMBOL vmlinux 0xefc2e54d _lv1_storage_send_device_command +EXPORT_SYMBOL vmlinux 0xefca3164 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefdecaab bio_integrity_tag_size +EXPORT_SYMBOL vmlinux 0xefedbf4f of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf006d8c4 ps3_sb_event_receive_port_setup +EXPORT_SYMBOL vmlinux 0xf02b96a1 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xf030690f pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xf030f33a neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xf03216af key_alloc +EXPORT_SYMBOL vmlinux 0xf03aeda1 of_get_property +EXPORT_SYMBOL vmlinux 0xf04206c5 dev_printk +EXPORT_SYMBOL vmlinux 0xf055344e generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf07e2ed0 set_blocksize +EXPORT_SYMBOL vmlinux 0xf08ee641 of_find_matching_node +EXPORT_SYMBOL vmlinux 0xf0a1ff1b __kfree_skb +EXPORT_SYMBOL vmlinux 0xf0aea383 unregister_exec_domain +EXPORT_SYMBOL vmlinux 0xf0af7244 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf0b257ed rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xf0b90af4 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xf0d2f84a _lv1_gpu_context_free +EXPORT_SYMBOL vmlinux 0xf0e8ce33 blk_end_request +EXPORT_SYMBOL vmlinux 0xf0eef938 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f1246c kvasprintf +EXPORT_SYMBOL vmlinux 0xf0f23044 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xf0fd4e8f rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xf100416a remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xf10c91af cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf10dfae8 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf1216c75 prandom32 +EXPORT_SYMBOL vmlinux 0xf127b788 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xf127cf59 irq_set_chip +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf19d8415 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xf1a2a083 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xf1ace0bd key_type_keyring +EXPORT_SYMBOL vmlinux 0xf1bea6f1 schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xf1cf3036 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e2532b dev_mc_sync +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf202c5cb radix_tree_insert +EXPORT_SYMBOL vmlinux 0xf20980ab in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf22b14d8 idr_get_new +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf261324c vfs_unlink +EXPORT_SYMBOL vmlinux 0xf28da490 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xf28feafe pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xf2a0a889 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xf2d93266 journal_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xf2db7910 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xf2e5def8 serio_reconnect +EXPORT_SYMBOL vmlinux 0xf2e82e04 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xf2f235a3 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xf2f72dd3 blk_queue_merge_bvec +EXPORT_SYMBOL vmlinux 0xf309e9ee cur_cpu_spec +EXPORT_SYMBOL vmlinux 0xf30d1036 _lv1_start_ppe_periodic_tracer +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3144ba3 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xf31bc7cd aio_put_req +EXPORT_SYMBOL vmlinux 0xf31bd586 mount_subtree +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf331b293 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf338d4c3 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf33c4d31 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xf34025ac mem_section +EXPORT_SYMBOL vmlinux 0xf3442246 generic_setlease +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf351bff5 migrate_page +EXPORT_SYMBOL vmlinux 0xf35211a3 get_gendisk +EXPORT_SYMBOL vmlinux 0xf357ae21 registered_fb +EXPORT_SYMBOL vmlinux 0xf357db8d pasemi_dma_set_flag +EXPORT_SYMBOL vmlinux 0xf360e297 nla_reserve +EXPORT_SYMBOL vmlinux 0xf381620e skb_free_datagram +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3906971 __seq_open_private +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39a5222 _lv1_get_virtual_address_space_id_of_ppe +EXPORT_SYMBOL vmlinux 0xf3ad8e7b poll_freewait +EXPORT_SYMBOL vmlinux 0xf3bf0bce __bitmap_complement +EXPORT_SYMBOL vmlinux 0xf3ca9918 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xf3d093cf kset_unregister +EXPORT_SYMBOL vmlinux 0xf3eef9ec unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xf4088fe9 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xf4131bc7 sg_miter_next +EXPORT_SYMBOL vmlinux 0xf430f732 neigh_compat_output +EXPORT_SYMBOL vmlinux 0xf432037f tc_classify +EXPORT_SYMBOL vmlinux 0xf4387dc3 register_8022_client +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4528073 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xf46944d2 thaw_super +EXPORT_SYMBOL vmlinux 0xf4742ee0 dget_parent +EXPORT_SYMBOL vmlinux 0xf4758ec7 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xf501e8da phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xf51a460c __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf525a7f0 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xf52a4263 dquot_alloc +EXPORT_SYMBOL vmlinux 0xf5319173 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xf53baf7c blk_make_request +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5404fd6 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf5670dad pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xf5687776 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xf59356e1 arp_create +EXPORT_SYMBOL vmlinux 0xf594f80d ida_get_new +EXPORT_SYMBOL vmlinux 0xf59f3f29 sock_create_lite +EXPORT_SYMBOL vmlinux 0xf59f553e register_netdevice +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5c9012e timespec_trunc +EXPORT_SYMBOL vmlinux 0xf5cf326a param_ops_short +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5f504f9 jbd2_journal_release_buffer +EXPORT_SYMBOL vmlinux 0xf612809a param_get_int +EXPORT_SYMBOL vmlinux 0xf615b588 block_write_end +EXPORT_SYMBOL vmlinux 0xf6213e12 pasemi_dma_clear_flag +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf669411b netdev_features_change +EXPORT_SYMBOL vmlinux 0xf6b07f98 dquot_release +EXPORT_SYMBOL vmlinux 0xf6b7d540 agp_free_page_array +EXPORT_SYMBOL vmlinux 0xf6b86302 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c42d12 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xf6d17ff9 of_device_unregister +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ecb763 _lv1_send_event_locally +EXPORT_SYMBOL vmlinux 0xf741c793 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xf7429c7b pci_disable_msix +EXPORT_SYMBOL vmlinux 0xf747dd44 kstat +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7682241 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xf76d2ae1 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xf77678c9 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xf78d04ab netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xf7932b3e scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xf7adda28 __devm_release_region +EXPORT_SYMBOL vmlinux 0xf7ae5edd dev_alloc_skb +EXPORT_SYMBOL vmlinux 0xf7bac0ec _lv1_set_lpm_counter +EXPORT_SYMBOL vmlinux 0xf7bcf447 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0xf7ea196e blkdev_put +EXPORT_SYMBOL vmlinux 0xf7edd79f xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf7ef673e notify_change +EXPORT_SYMBOL vmlinux 0xf8004bfd _lv1_disconnect_interrupt_event_receive_port +EXPORT_SYMBOL vmlinux 0xf803fe39 bitmap_set +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf8349a10 dev_crit +EXPORT_SYMBOL vmlinux 0xf8658989 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xf8686587 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xf8906870 vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0xf895e7fa km_state_expired +EXPORT_SYMBOL vmlinux 0xf89843f9 schedule_work +EXPORT_SYMBOL vmlinux 0xf8eb197e skb_checksum +EXPORT_SYMBOL vmlinux 0xf942b1db security_path_rename +EXPORT_SYMBOL vmlinux 0xf95a9c2e mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xf98f4b80 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b534e1 register_nls +EXPORT_SYMBOL vmlinux 0xf9d59356 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0xf9e56caa md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xf9ec89df genl_register_family +EXPORT_SYMBOL vmlinux 0xf9fa6b3a __alloc_skb +EXPORT_SYMBOL vmlinux 0xfa246318 arp_tbl +EXPORT_SYMBOL vmlinux 0xfa3f6aa9 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xfa41254a blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xfa43bd53 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xfa707ee6 elevator_exit +EXPORT_SYMBOL vmlinux 0xfa72819a bio_copy_kern +EXPORT_SYMBOL vmlinux 0xfa9bdc98 netdev_emerg +EXPORT_SYMBOL vmlinux 0xfa9d0335 journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock +EXPORT_SYMBOL vmlinux 0xfae4ddb3 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xfaf76069 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xfaf98462 bitrev32 +EXPORT_SYMBOL vmlinux 0xfb1c2e27 generic_write_sync +EXPORT_SYMBOL vmlinux 0xfb21b4a5 inet_twsk_deschedule +EXPORT_SYMBOL vmlinux 0xfb3c213d phy_print_status +EXPORT_SYMBOL vmlinux 0xfb5f846a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xfb689d74 init_task +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb719f30 find_lock_page +EXPORT_SYMBOL vmlinux 0xfb7d26f4 files_lglock_lock_init +EXPORT_SYMBOL vmlinux 0xfb87d599 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc177a6 bio_integrity_set_tag +EXPORT_SYMBOL vmlinux 0xfbcda5bd agp_free_memory +EXPORT_SYMBOL vmlinux 0xfbda3c79 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xfbe27a1c rb_first +EXPORT_SYMBOL vmlinux 0xfbf4d28d twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xfbf85216 dev_warn +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc3547b4 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc794eda twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xfc8dee57 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xfc93d040 napi_get_frags +EXPORT_SYMBOL vmlinux 0xfcaa04a0 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcd35070 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xfce01b65 register_con_driver +EXPORT_SYMBOL vmlinux 0xfce6fbf6 ip_fragment +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd276fbd dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xfd50caa7 kobject_put +EXPORT_SYMBOL vmlinux 0xfd5846db of_platform_device_create +EXPORT_SYMBOL vmlinux 0xfd6293c2 boot_tvec_bases +EXPORT_SYMBOL vmlinux 0xfd69605e pci_choose_state +EXPORT_SYMBOL vmlinux 0xfd6a20a6 flush_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xfd6ca83d lock_sock_nested +EXPORT_SYMBOL vmlinux 0xfd93f7a8 __nla_reserve +EXPORT_SYMBOL vmlinux 0xfd9ec626 iterate_mounts +EXPORT_SYMBOL vmlinux 0xfda8011e __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdf33486 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe392bcd generic_segment_checks +EXPORT_SYMBOL vmlinux 0xfe4cb4b5 _lv1_storage_write +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe769456 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe9f9418 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xfea40e98 pci_request_region +EXPORT_SYMBOL vmlinux 0xfec3c2f2 bcd2bin +EXPORT_SYMBOL vmlinux 0xfec54617 read_cache_page +EXPORT_SYMBOL vmlinux 0xfecd8f1b __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xfed221d9 pasemi_dma_alloc_ring +EXPORT_SYMBOL vmlinux 0xfedd35fc console_suspend_enabled +EXPORT_SYMBOL vmlinux 0xfee42b96 dev_notice +EXPORT_SYMBOL vmlinux 0xfef96e23 __scsi_print_command +EXPORT_SYMBOL vmlinux 0xff06e1ef bdi_register +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff1ef550 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xff3d9c62 of_i2c_register_devices +EXPORT_SYMBOL vmlinux 0xff40897b blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xff66d498 agp_copy_info +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff81d2c5 __debugger_dabr_match +EXPORT_SYMBOL vmlinux 0xff8a3db9 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xff9b2529 agp_enable +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xfface3dd unregister_cdrom +EXPORT_SYMBOL vmlinux 0xffadef71 nla_append +EXPORT_SYMBOL vmlinux 0xffcd8c17 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x4904ab45 spu_save +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0xbde2b789 spufs_context_fops +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0xf133da7e spu_restore +EXPORT_SYMBOL_GPL crypto/af_alg 0x56180dcf af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x63aba7d7 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x9fb48da3 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xb8c0f63d af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc0485c55 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc41aa50e af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xdfb48575 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xea73d9ea af_alg_register_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xbb2d78dd async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x4fe3fdf8 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xea7afce8 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x157a8fcb async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x52c27e79 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3158565b async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x32e95b3c __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x44175fd3 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xafdfb78a async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xcf185805 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd45f92cb async_xor +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xd2f45d73 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x18fd7414 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x19cec7d1 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x31dd6f15 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x335fce00 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7325f6a0 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xb9adc00e cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xc000d033 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xc59742f4 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xcf39e1ab cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xd6696f94 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x781b829d twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x2b697d7d __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x7aca464d __pata_platform_remove +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x3e762dba sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19511c73 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1ebe27da bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x224b995d bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6e9619d5 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7bd452d4 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x806f6afc bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9d55c413 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa60445d5 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb13567f0 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbdc8c382 bcma_core_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc430e191 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdc38229a bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd0a8f10 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x002f3cbe btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0c2e0919 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2e3484d3 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x928efc65 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb11f4eef btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcc741b6b btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd34cb2ce btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xeb7b883c btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x00db551f edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x01418f5b edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0a5f6e2d edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0bcb1837 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x166c7c4f edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1f7c628f edac_mc_handle_ue_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2e2cbc73 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2f785406 edac_mc_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x33e105d5 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x44d7dad6 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4e3bb476 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x50000420 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5594a8c3 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x69259f22 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6dc3fcd3 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7eef6b76 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x890a2cac find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9324572e edac_mc_handle_ce_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x94e610b7 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9e954c1e edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa4305798 edac_mc_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf6692ba edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc14b6eb2 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdb4f6996 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdebc6f41 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfadfc1fd edac_mc_add_mc +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xa67d7a15 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xcf5a2f2d bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x12949943 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xff0f5c8f __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcad74b31 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfc263918 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a431892 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1dd813a9 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x33a0f6b7 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x377561f4 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x42fc8228 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47fe7296 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f1f6509 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x620bd7a8 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x669c1302 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6be5927d hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x736d79c0 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93da8602 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ace091d hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c4d90cf hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa967ff79 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb78f80db hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba641a08 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba8c3180 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc45a89b hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc092c211 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0dbc4aa hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3514013 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc40f98d8 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdc3f6cd1 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe38459be hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xecfcff15 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x671de372 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x596f87d0 roccat_common_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x660a9706 roccat_common_receive +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x0a8a4bc4 usbhid_submit_report +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4a7384ab usbhid_set_leds +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xd56be7df usbhid_wait_io +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xe6d96965 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2a69a994 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcfe76c5f i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x2c5da2b7 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa1152f78 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xd681c638 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x6015b970 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0eed9fd8 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0f1731e1 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x23e193d5 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x26060d16 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x28c694c6 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3578899c wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5d033d09 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x896d4ffd wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x92b7b9b3 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc240594c wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc33076d3 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf9d28902 wm9713_codec +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x4de7b2d0 unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xb17b7c77 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x038adabc gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x06611dcc gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x16fd16b6 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1acab528 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1e5666a7 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x263ae317 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2fcabe8a gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x34802380 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x47b00d56 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4c92bc54 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4f70b381 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6f475396 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6fba8a81 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x826796a9 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x88200e7d gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x96dc7a51 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xce23c006 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe39747ee gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0860f59a wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2a8b4fcc wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x44e2f3cb wf_find_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x4de6a594 wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x64a3778f wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x94765fac wf_critical_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x970584f9 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa1221869 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa2f19a49 wf_is_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa3b602d1 wf_find_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xaf15726f wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc8e82be5 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdb7e8499 wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe5f9d82d wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0x9808f147 wf_pid_run +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xb8ed5b2c wf_cpu_pid_init +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xcd9a18ef wf_pid_init +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_pid 0xceda69f1 wf_cpu_pid_run +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_smu_sat 0xe05851d5 smu_sat_get_sdb_partition +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x452d0bb9 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x88037fb8 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x9c51c417 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x03da02a7 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1096c63c dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x1d1db624 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x84e16b39 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9032bd20 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd0ff1ea0 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x009e200c dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x03ced457 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x08a936ca dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x28400536 dm_sm_checker_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42727fbb dm_sm_checker_create_fresh +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x43293720 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x505cec23 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b2ff62 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x769a642e dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80afbcf5 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80c89b3d dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98925a60 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa6aae3ea dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa7e46220 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb7bad799 dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb967690a dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdb562135 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xefba9b23 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf99dc2cf dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/raid1 0x3998be60 md_raid1_congested +EXPORT_SYMBOL_GPL drivers/md/raid456 0xa3f2887f md_raid5_congested +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x0867b999 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x13fad12c saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xac7f2d13 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xca5be635 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xcf683cf2 saa7146_devices +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xd3ffab2f saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xdfda2985 saa7146_devices_lock +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xe0a9ec7a saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xe13ada59 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xeca022b4 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xf5df06ae saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xfb0df7cd saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x1502ae7a saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x4053aec7 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x40c98ff1 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x69e216ca saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xa3618a48 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xc900f222 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xeb176e57 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mt20xx 0x090f9486 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mxl5007t 0xa24655d6 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda18271 0xf77ad47b tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda827x 0xa45e4cb8 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0x61ddafd9 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0xba29963b tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda9887 0x4be38183 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x0bcc9466 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x57777de1 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x76efc85b tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x95e7f6ee tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tuner-simple 0xd36c6487 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-demod 0xec4aaf1c mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-tuner 0xa01566fb mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/frontends/tda18271c2dd 0x989dfdae tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x13855789 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x186db382 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x29842139 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x3a75abf5 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x3d170396 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x4344abb7 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x4ced4d0a mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x5c512e2b mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x5ed38b0d mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x6eaddb50 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x792b9e3f mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xa02a18a0 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xb286ba91 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xcd862d5a mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xd085dfbd mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xe8fc9d4e mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xf6a2d1d8 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x15ba764e sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x165fbd88 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x1d4fb92e smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x222d2289 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x3be851c0 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x6e751a3c smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x6fa63aac smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x76222253 sms_get_board +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7674dfc5 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x803adadd smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x82773e9c sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x83ba8456 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x91e7656f smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xaf22e07a sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbc193a5d smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xc3c25ba7 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xd116eb87 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xe5b015bf smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xf6e7bc2e smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x29962cda ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x2c48e467 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x6ed69023 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x819b0ff1 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x82e2756c ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x9117dcee ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x98448ca4 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x046b34dc ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x194d642d rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x19b00628 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x599b10d9 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5a5c1358 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5a913c32 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ce39869 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x71c7dc52 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x735b3c84 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b9783c0 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8ca2a066 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xac905dba rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc9a26358 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd537dc4f rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd9c62950 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1f6f8cd ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xedadebb0 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x06f2beab cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x09dae5f5 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x17c59f06 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x1f72eaeb cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x22dec5c9 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x2a9270fd cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x305b299c cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x32557336 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x340efb13 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x3ae09c94 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x5f927203 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x7265d96e cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x778c929a cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x84fadfb7 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x990480d8 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xb45418bd cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xb7b6eff9 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xdd46cf8f cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xfcc089a6 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/video/cx88/cx88xx 0x04392556 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x0ca5718a em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x3d678335 em28xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x5f10477c em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x63ac00df em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x959b4507 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x9889f496 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x9ef45451 em28xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xd33ae456 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xe2fe7d1d em28xx_isoc_dvb_max_packetsize +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xfe997d83 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x01b1a802 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x12d8d8a5 saa7134_queryctrl +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x21cb9d58 saa7134_s_std_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x2609b768 saa7134_s_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x69dac4a1 saa7134_g_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x0705f9c6 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x0c45daae tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x215996af tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xada32f58 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x0862795a v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x8860dfd1 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x94632f90 v4l_fill_dv_preset_info +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xad4e77fc v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xd6c54c9c v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xde40ac73 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xfbeb2afd v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-compat-ioctl32 0xbef0736b v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x4484af95 v4l2_int_ioctl_1 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x53395470 v4l2_int_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x93984513 v4l2_int_ioctl_0 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa5228b24 v4l2_int_device_try_attach_all +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xf76e1e40 v4l2_int_device_register +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x0bd1fbfc v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x2063beaf v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x20650991 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x2f5101af v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x477dddda v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x908d4019 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x9562a6e3 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xa03118a5 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xd3c06a84 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xd3ee3353 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xe2222244 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xe5684ed7 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xfc7e9414 v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x22ea23d5 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x2f4bb854 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x32e2ea3d videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x5b760035 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x5da00021 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x69a8e276 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x69ce0584 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x75cb0fac videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x77a6158b videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7c1d835a videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x827fc072 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8626f8c5 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8a054a97 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x913317de videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xa51c0c48 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xa53d94be __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xa8a79ee1 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xac4ff23c videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xb720b8a1 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xca4ae281 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xd0fc539b videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xd98f89ed videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xe7afd8c8 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xfd7e0694 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x010242fb videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x63d7fab3 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0xb866a883 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x0ea82c5e videobuf_dma_map +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x185c9fb0 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x45870b4b videobuf_dma_init_user +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x68d85598 videobuf_dma_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x86a1a80b videobuf_dma_init_overlay +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x8d8788fb videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xa38faed2 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xca7585d5 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xf1de9a19 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xfca307af videobuf_dma_init_kernel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x60bba8e3 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0xa367780e videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0xcb24eaeb videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x07f239da vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x0d95b54d vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x124f05ec vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x173fbd29 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x2cfd3ccf vb2_write +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x3d76a26c vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x4107498a vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x44ba1701 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x5c53476e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x6ea5eda8 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x73ed2d77 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x76538ec8 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x8f951257 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x96d31c2f vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xce955c2e vb2_poll +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xd2394eae vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xd355a6d6 vb2_read +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xadeabad3 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xe1ac1afc vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x0dfe7e22 vb2_put_vma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x261496d7 vb2_mmap_pfn_range +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x38d4ede2 vb2_get_contig_userptr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x46b9dbcd vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-vmalloc 0xd86778e4 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x00150e8a v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0c49c040 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x127c7825 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x1a83b609 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x23705dfc v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x2ee8b972 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x51ebac47 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x5bb1c593 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x647b8b97 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x6ce05848 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x896ceba1 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x95abf4db v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xa353fbec v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xa3db36c9 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xad52b06e v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xb1a5bd5a v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xb20461f3 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xbdadbb3e v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xc96d8af0 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xdf414d61 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xe42df7d1 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xe6e8c429 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x534b866a i2o_dma_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x569e193f i2o_dma_map_sg +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x76a81991 i2o_sg_tablesize +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x94fd6ec6 i2o_pool_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xd1805808 i2o_dma_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xdd6ad1ba i2o_dma_map_single +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xee1fe04a i2o_dma_realloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xf14bd37f i2o_pool_alloc +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29d1d107 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x20dfc0e5 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x34dcd95c pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x57ddd2b0 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6533ea96 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9a19b835 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa9105df3 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaae276ae pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb630c0ca pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb9f183bf pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbafb967e pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xef6fdc94 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x503a4ce4 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xbba4be1c pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x16ef2974 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4d21ddd3 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x51628760 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc04872c3 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcff7f6e8 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4f7b4270 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x52de48f8 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x63d899c9 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa4e864cf sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc9fec8d4 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/twl4030-madc 0x08b8dd2e twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/mfd/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x01d369db ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x5812775b wm8400_block_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x778bab11 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xc0538af6 wm8400_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xcb365e17 wm8400_set_bits +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x49e4b8ee cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xad7b8bc0 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc6eecd4a cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xec8236ec cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x2df115d4 eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d14d2f eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x19524da8 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x45ec59f8 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6c2d9562 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8c010c9e enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xace76ba2 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb49d7cc7 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd2b9cbb3 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x17dd5d64 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4b807d0e lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x73d72adc lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x794bc6ee lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa4a63fb8 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa7642e09 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd1ef9e33 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x636e2e9f st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe3a291ea st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4ca0cb13 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x79efa06a sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8ad027e1 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8da91115 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9bf7f484 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa0016757 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa2fe8bef sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xccec455a sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfd462bcf sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x259c0520 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x33a89605 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8146b6a0 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x91bb255c sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc614a84e sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc7293794 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x85eb0e96 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xacf1f535 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfa81e660 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2eeb0721 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x7cdef067 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd1ec334a cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x1a32e36d cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x051b9840 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6ec105a0 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6f396c50 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2000 0xcab6303b DoC2k_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001 0x26340034 DoCMil_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001plus 0x7e996ff4 DoCMilPlus_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/docecc 0x45937659 doc_decode_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0eaf0f4e mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b3d591e mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1dc2e4fd put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3dd175d4 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x45d1880e register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x514f9ffe mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x62ca4e5b __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x76de34f9 default_mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c8e4966 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80ee8035 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x83db771c register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8455ab79 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8a90d54a mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa67fac2a mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd04396ac mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4fa8474 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd93e400e deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xddba36e5 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe1b44a90 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf40f74aa mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5c88103 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x060aacab deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x20caced6 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc6b43bcc del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd5d15017 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xdccff36c add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x9f6f9525 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xcea20ce6 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x317a098e sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x03f43319 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x27c333a3 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x154ac2f6 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4093939b ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x654f48bc ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6917be66 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6960ad5a ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f09ba8a ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7b396ae5 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8799c9e1 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa1abca79 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xafdb4dfe ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd1ab1d0d ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd417b53e ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe0a868b8 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf730f7fe ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd6f0ef9 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa6d4a104 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbc8a25bd register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd56cf1da free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf2e90ce1 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0e70ab96 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1784cbe0 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x503b2b58 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x541726bd open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x800c10e2 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x87669580 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaa462bff can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb3bbe082 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdba4992d alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xea0428cf close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xee3db519 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf89b992b alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x2b788e86 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4a9fc805 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9a54e25f unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf8c79ca9 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0075d18f mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01d0ec51 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a0d4dbb mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d87daa8 mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ddc9f7e mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b9b174d mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fe3270f mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20e76d30 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2549ef94 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x262410a8 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2893b8dd mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c1d8346 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c26a609 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x321173f0 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fc621cb mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40010fd0 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4065c011 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46be32bd mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b6dbdeb mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d4fa1e5 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5adad8b4 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60052383 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x613874b9 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6259d430 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x658b1873 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x691e92fa mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d7c9b3c mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6db39047 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ded1349 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fd4d5b0 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70565e4d mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73cd4a9c mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79e29a76 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c617090 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8429e243 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8575194c __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x869f015f mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x877d2e6b mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8db6ac6a mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91429482 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93bc4387 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fbc2b06 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1ccb83d mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa408a9c mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac52cbed mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad64f90a mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1267700 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb786b4f9 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba3a9f3b mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbe05d9a mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd690aae mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf566d88 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc133ef9e mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc34ba49c mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc39e2967 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccb35a85 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccbe0438 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0b1c2f5 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0cd5a05 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0f15c0b mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4c32a2a mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd566de67 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebbb8715 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeec445c5 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef6f2fb3 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf695aee8 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6d5c19c mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf79a22cd mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x44997ac2 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x87c66686 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xabcc2afe macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb04b58af macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdd47f167 macvlan_start_xmit +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xbc905381 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x07b25bba usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x167942ab usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x54259eac usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x7ce3a7fc usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3ae6de66 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x49a33b66 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5b2c11e4 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5e5f74f0 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6c310464 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe9db3cd0 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2870abd8 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x290145a4 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x32837d82 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x350cb69e usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38a056aa usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x49b667cf usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x52c908f1 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5ef98b16 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e80bf39 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84396d64 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x96ed23be usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9ae28bdf usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9bee4758 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb7b607ca usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbd5f9d9c usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbfbe08d8 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc2c230db usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc731b59f usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc79529d6 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdeb4834e usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeabd6d24 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee185c1f usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf0e772b2 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf87e2fc6 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0779fb84 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x080ea364 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0de41a74 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1e84bc12 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1f338839 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3721795a i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4ad677a2 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x572dd74c i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x633ac5b3 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8ebc039e i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa3e92c11 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xade0e605 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc2a67479 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc8213db8 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xce297426 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xff1c288e i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x3ce37cbf libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x06fa7528 iwl_legacy_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x536f1933 iwl_legacy_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x5b569ab7 iwl_legacy_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x63ff8d33 iwl_legacy_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0a5c9077 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0d600a28 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2255aed0 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3004e739 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6321ff43 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8b477a1d lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8e6eaaf0 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa1faf4a3 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa6b94103 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa7c30201 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbf48fa1b __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc5e2207f lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xcc5e6e43 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xda15125a lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdb3ed4f1 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x01fd5c2f lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x160fff35 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2d0609ca lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2d580b1a lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x471d4d13 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x572efb50 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x71cae767 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x76de859a lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0xa7227bf8 if_usb_prog_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0xa7369f11 if_usb_reset_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x130f5f33 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x430b0309 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x73f29007 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7e37fc87 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9c4a0e7c mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa32cad95 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa75e3504 mwifiex_deauthenticate +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xabe166c6 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd89efd84 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe2fa6e14 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe97f1987 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x19230001 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x203e7179 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x31ff5432 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x43870878 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x57551a8f p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x91bb805d p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaa2e6c00 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xdd58c565 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xde1a79cd p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0ec66fae rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1c36454c rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1c83a1ca rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1cd69eb9 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x215940e0 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2633743b rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x34fcb0a9 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4706f6e7 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4ac58084 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4fa8ccf4 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x56c12be9 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6959b3eb rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c55b2e8 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6d18326a rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x78c8d1cc rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x80b878db rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x89efad7b rt2800_validate_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9316e388 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x96f1203f rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa05aacd8 rt2800_probe_hw_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa7315a64 rt2800_get_tkip_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xad3b77ff rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xad86124b rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb0249041 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb2c627d1 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb7a404c5 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcd306067 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdbba7cac rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdcd8e9c8 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdf3ca69b rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xebb7801d rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf0f09fd8 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf6a4c242 rt2800_init_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf731421c rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf7f10151 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf8230d88 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfef9eca5 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0492889b rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x068aebb8 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x112567b3 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x212d3107 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x21df35e7 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2b3cc953 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38dff841 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3af418a0 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f17111f rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x447a2831 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x468ef22f rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x60e88eae rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x678acce9 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7e7bb23d rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x80d6d99d rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8d64d839 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8d9e4446 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x93da5134 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9631ccb9 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x97736908 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x98cd75a0 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9a459d4a rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9b39a5a4 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa79bb721 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa91eb1e7 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb43bdccf rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbd5ee157 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1fd522c rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc5193114 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc597af2f rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc5db2980 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd055e8ce rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd2a4dd24 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd56b82e1 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd6f8b695 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd7a1ad52 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xde2e143b rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe338bc3e rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe75c1c4e rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe9eda9ab rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed5720c4 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed6d8142 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xef23e21b rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0a8a014 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf1e9a28a rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfbd0c64a rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x01c6bc10 rt2x00pci_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x16caffa8 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x2d7cde8e rt2x00pci_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x442c568d rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x547aacca rt2x00pci_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8b6dd2a7 rt2x00pci_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x9a4a1a76 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf021da4a rt2x00pci_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf4595335 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0de1681a rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1051973b rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1bebba71 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x22f3dac3 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x29b62977 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x40e9b451 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x522b3226 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5e6265be rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x793e71b8 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7daca0dd rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x91b9b5ec rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9acdf323 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb116512c rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb2401b9f rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd90e5f11 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xef7e9529 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xb89d4510 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xbe1328f6 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xf34f2ff4 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x03d2e081 wl1271_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x2a6d3b3d wl1271_unregister_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x6e06ca5d wl1271_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x773909e0 wl1271_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x7f253932 wl1271_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xd0a88d7e wl1271_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xdcdf905b wl1271_register_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xe795ba26 wl1271_irq +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x6a90c53c rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x7bf20aea rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x8f000cbc rpaphp_get_drc_props +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5b5dd22b pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xabe474d1 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xd6fb67f4 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x003998ab ps3_write_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x0bdf50c4 ps3_disable_pm_interrupts +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x0e622920 ps3_write_pm07_control +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x181e55ab ps3_read_phys_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x1bcb88c1 ps3_write_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x2abf1471 ps3_get_hw_thread_id +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x2b339635 ps3_disable_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x3c71a6b2 ps3_set_ctr_size +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x4a24996f ps3_lpm_copy_tb_to_user +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x50488f64 ps3_lpm_close +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x58e642c1 ps3_lpm_copy_tb +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x59c54782 ps3_set_bookmark +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x5eca6711 ps3_get_ctr_size +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x60e3f0d7 ps3_read_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x6702a28c ps3_get_and_clear_pm_interrupts +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x69010c19 ps3_set_signal +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0x70177200 ps3_write_phys_ctr +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xa76ee01d ps3_read_pm07_control +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xaa190bc1 ps3_read_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xbb72a01c ps3_enable_pm_interrupts +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xce72c9c0 ps3_lpm_open +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xdddfc980 ps3_set_pm_bookmark +EXPORT_SYMBOL_GPL drivers/ps3/ps3-lpm 0xfae0ab68 ps3_enable_pm +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x053bb7ac ps3stor_send_command +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x4cdd7667 ps3stor_read_write_sectors +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0xeb839660 ps3stor_setup +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0xf34b6b76 ps3stor_teardown +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x35833086 mc13xxx_sw_regulator_is_enabled +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xaf6d5c49 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb4315470 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd00b1ab9 mc13xxx_fixed_regulator_get_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdb4399ee mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe955cfac mc13xxx_regulator_list_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf9ccf9e7 mc13xxx_get_best_voltage_index +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x49b13a1b wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x7eca35ac wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x87f8e837 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaacf48e4 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc804f1ca wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcaa778f2 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x6a616db6 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d6db4f0 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e5f0551 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ece9273 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11cc4dac cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x146beb21 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x189222fb cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1f12499b cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ad022a5 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cc5d990 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e760549 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x339938d1 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42b97a14 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x42ebf865 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x496271f2 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4d52df07 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e92bbe5 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4f6cbd46 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5334b7cd cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63be67f0 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65863317 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x786b3936 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x788176aa cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f2fe137 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8155b441 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x826c1ee1 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x82d6e631 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84188b08 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8bf6e320 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x90a833d8 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91693911 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9525cb79 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d989e11 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa373367c cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa60a13a7 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc06bd380 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3896dc8 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc478fcc0 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6e1b190 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcfda6c6f cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd69d557f cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfab1f0e cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xecba5cdb cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf02b1ab4 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf595c731 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf631f406 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0x222610eb scsi_dh_set_params +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0x2bc3c2b2 scsi_register_device_handler +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0x4dc739d4 scsi_dh_activate +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0x593a36c2 scsi_dh_handler_exist +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0x7e4dd023 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0x85c86961 scsi_dh_detach +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0x91e95b2f scsi_dh_attach +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x07b89a4e fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2447ccbf fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x42661902 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x44d538d4 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x58fb197b fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x65253624 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa7a026ee fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa8b9d652 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xeb9cdeef fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x3cd70f04 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5caf368c iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x6407b895 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7c5d6fa4 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa8d38c43 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xac7e529b iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x005edcd9 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02dd8aa9 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0faef80c iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11018722 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11cba2e6 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1509e990 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x183efea9 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21a04d4a __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x247dc0a7 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a230548 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b4924f2 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eb88f8b iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3064dda7 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x398e2042 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2709b0 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4dcb558c __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51cf3401 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54407ccb iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5447c0e8 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x558e3a21 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5745da30 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61dff8b2 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b5d46cd iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71dbce94 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74d6d1c6 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75983dbe iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b6d431e iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b73fe74 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa013cd4d iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4832cf0 iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3cce145 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbad0e68f iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd7a2330 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc124a9ac iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd0312847 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd2797d21 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7f7895c iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4745321 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6966113 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xecee5028 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xefd8a642 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf0ba9e0f iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2808f91 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf8bdb8e4 iscsi_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb7137f8 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb92de9c iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18096a7d iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1b4b80c6 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x29febfda iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x332162cc iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4fe36d5f iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5751e635 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6a3ba1ff iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x848965fe iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9113c3cc iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x924a3e64 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9428467b iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa8ec6fa8 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa8ff127d iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc0e07f98 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xda8492d7 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfc4aa608 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14ed20b8 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2031a3e5 __sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x25994a00 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d6e200b sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ecdb340 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3f768353 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x48c36738 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x621155de sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6d12475e sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x701b7cfc sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x75641ef5 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7b477099 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x82a783b3 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x845b17cf sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8b24c495 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d2208ff sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x92ebef5a sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa0eef44f sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb04472c2 sas_slave_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3d66041 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc805ec9c sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd55043a0 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe7ae27f7 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1652592 sas_find_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf60883c4 sas_change_queue_type +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x3c629e82 srp_target_free +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x636254f4 srp_transfer_data +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x8612b13c srp_iu_get +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xad7be4fa srp_cmd_queue +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xccc4a6cc srp_iu_put +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xeb81a7f7 srp_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x11848173 scsi_tgt_it_nexus_create +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x176d5e6f scsi_tgt_queue_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x206583df scsi_tgt_alloc_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x4e2c30c5 scsi_tgt_it_nexus_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x6128c6af scsi_tgt_tsk_mgmt_request +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x67bbf74b scsi_tgt_cmd_to_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xc55316b2 scsi_tgt_free_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xe3801ac2 scsi_host_get_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xe524a64b scsi_host_put_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x122f9663 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1dca4f7b iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1df179b4 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x23e01bbb iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2580e58a iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2653bb2d iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2c5e7ad1 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4b5a7dcb iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54b7c704 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c8fc6ca iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ea9997f iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f4c9ec0 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x613aafdd iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c4bcdde iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89d731ac iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94161277 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ba452ee iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c3d1311 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9dd2be35 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7019387 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa70b5635 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc2edc9fd iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc45c4546 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc49ced34 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xce846476 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf4572f9 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed3cd233 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x44b0c66e sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x60f6c2e1 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7388234a sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbcfefd8f sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x01d2a6b3 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x77c63da1 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x88d617a8 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb1186782 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe80b72b6 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x107ab7a5 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3ccbc678 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7a0da203 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb7aea8e6 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc61afc3e spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe8fd5f08 spi_bitbang_transfer +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x2468ed34 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x579d2806 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x587711de oslec_create +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x882d5f27 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf828c15b oslec_flush +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf923a5b1 oslec_free +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xfabc3747 oslec_update +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x6a647704 iio_scan_mask_set +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x8dd7c3ae iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xa6451c80 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xb1f2a434 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/rts5139/rts5139 0x35b85807 rts5139_usb_ids +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x21a88333 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x580e8758 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x639579d1 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x74f40a7e spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8081037b spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9f54a7ed spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb73a5748 get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcae5254f spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd0e2ab0e spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xee649caf serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xee8a59a8 synth_add +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x20ea1aad usbip_start_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x26da7e77 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x27a51313 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x37115e80 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x57a4ce86 usbip_event_add +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x5a5bb7ba usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x68f9237e usbip_xmit +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x6dc9fd6e usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x9c75e92c usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd9872fee usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xee76c648 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xf4988872 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xf6c639ad sockfd_to_socket +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/tty/serial/8250 0xc9eee6ae serial8250_handle_irq +EXPORT_SYMBOL_GPL drivers/tty/serial/8250_pci 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL drivers/tty/serial/8250_pci 0xbdedb955 pciserial_init_ports +EXPORT_SYMBOL_GPL drivers/tty/serial/8250_pci 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL drivers/tty/serial/8250_pci 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x14fa309c max3107_rw +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x18fb61a0 max3107_hw_susp +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x85560150 max3107_resume +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xbb6ae1a5 max3107_probe +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xd2b02cd8 max3107_remove +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xe37e0846 max3107_suspend +EXPORT_SYMBOL_GPL drivers/uio/uio 0x1ec8ac2f uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6c176460 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xbb638e2c __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x1709fe1a usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x26889eec usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x3d1c4c6f usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x8132da8b usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xd27f6ff2 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xe2667cb0 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x06bf7935 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x08595566 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x110d839b ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4693b61f usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x60def43d usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6ea85b12 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7c379b73 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc7f7f492 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xe6fba867 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2357e118 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2aac1dba usb_serial_generic_submit_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x366640b1 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3a721a9d usb_serial_register +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x468f3ed6 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6cd05d52 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x70790996 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x73cae860 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x752c01e5 ezusb_set_reset +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7775b0d1 usb_serial_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x85101a16 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x88bbd885 usb_serial_generic_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8af53f11 usb_serial_deregister +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9a35ee11 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9a4e879e usb_serial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa5355f95 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbd011ecd usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf253baf usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcc572dfa usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xece33de9 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf366568f ezusb_writememory +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0b4e358d usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0c2dd2b4 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x10bdf3fc usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1170cd83 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x29022d0e usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x356acef3 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3867a143 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4baf7c50 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x54dca610 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x658a4552 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6b8ff84a usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x70f7d622 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8b9aa91f usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x93d232c4 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9944c9a7 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb3eca258 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbe577a56 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcf4256c7 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd6d50876 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xea25b963 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xef7275f1 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf1ea99f1 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x37197991 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x63e5dea5 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x9c41969a __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe38134ea wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe614c564 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x19c66897 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3aa73616 wusbhc_rh_resume +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x47f6bca2 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4bdf8ed7 wusbhc_rh_suspend +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9979c42e __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9a661fcb wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9d402ddd wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb2126792 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb887a227 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc29ce1aa wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc2c4bbc3 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc63fa822 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc7ce2ad0 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xde5f79d6 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe2e9e3c6 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfd52cb97 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1ed8e298 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x803c1a4a i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xba727e74 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2683e553 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x27b77ed7 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2a264a56 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x68415c90 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6d86f639 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6f0df323 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xcc649d3f umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xda71bc27 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x05a0f7d3 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x08ddcd4d uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0abf48eb uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b2a3c6c uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16f8d627 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x19a0ab4c uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1a66899d uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1eaa93e4 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x225fe6db uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x27172b9e uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x27697e46 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3061a5c5 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x31ba2fda uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4293a024 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4669e6f2 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x49d44ce8 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51183358 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x564637f2 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x58d6475c uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5bd6d331 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x64e75d59 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b9377c5 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x77698c0c uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a618e4d uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ab4e825 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8cb42db6 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa8a1626b uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xad0112b0 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xae4e4266 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc8377dd uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc5878895 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcfdf5d5c uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd0b0ebfe uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf420176 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe21a10c2 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe49684c1 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb4cab9a uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xec2381dd uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xef913944 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf672faeb uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf7ca313a uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x76de884b whci_wait_for +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x037ec5af ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x22285efb ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4f2240c2 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x551230e5 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x88c1131e ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x94c298b0 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc86a43c9 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0x077b3f67 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0xbc131ac0 sis_free_new +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x34b0f2ea register_virtio_device +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x5935ecf5 register_virtio_driver +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0x87d740df unregister_virtio_driver +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xb984f306 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xfc5fbe34 unregister_virtio_device +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x25c53747 vring_new_virtqueue +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x2b352f7b virtqueue_get_buf +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x2e71dfd1 vring_del_virtqueue +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x3176d7f0 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x5238ec56 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x5d807876 vring_transport_features +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x7d638375 virtqueue_add_buf_gfp +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x908a4cba virtqueue_disable_cb +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xa06d788b virtqueue_kick +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xc642c7cb virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xfab29c02 virtqueue_enable_cb +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2bb21f9b w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4497cade w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x54852a9d w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6bac7fbb w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x709ea14b w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x913b436f w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x99912660 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd0530ab4 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe811073b w1_next_pullup +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0864c4a4 dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9523fb9e dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe432d351 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xff3242ac dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fat/fat 0x043098f9 fat_dir_empty +EXPORT_SYMBOL_GPL fs/fat/fat 0x09584d35 fat_setattr +EXPORT_SYMBOL_GPL fs/fat/fat 0x11663c91 fat_sync_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0x197004db fat_free_clusters +EXPORT_SYMBOL_GPL fs/fat/fat 0x1a876d3f fat_attach +EXPORT_SYMBOL_GPL fs/fat/fat 0x2a89c24f fat_flush_inodes +EXPORT_SYMBOL_GPL fs/fat/fat 0x33e6d47f fat_search_long +EXPORT_SYMBOL_GPL fs/fat/fat 0x416a31f2 fat_alloc_new_dir +EXPORT_SYMBOL_GPL fs/fat/fat 0x44056c2e fat_getattr +EXPORT_SYMBOL_GPL fs/fat/fat 0x65f0a5ff fat_fill_super +EXPORT_SYMBOL_GPL fs/fat/fat 0x893e9685 fat_build_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0xa649e196 fat_time_unix2fat +EXPORT_SYMBOL_GPL fs/fat/fat 0xa9683494 fat_detach +EXPORT_SYMBOL_GPL fs/fat/fat 0xb0b22094 fat_remove_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0xbb395bce fat_scan +EXPORT_SYMBOL_GPL fs/fat/fat 0xcaad71e1 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL fs/fat/fat 0xeac04c92 fat_add_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0xf3125a77 __fat_fs_error +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x17ce645d locks_end_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1aed9f38 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x43ecd0f0 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x48db856f nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5950a280 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5f7d1307 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f959b35 locks_in_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96877ac4 locks_start_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa7b91a7b lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6933c48 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d434b29 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e9631f2 nfs_initiate_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53908508 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57aa9268 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b55a3b4 nfs4_reset_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87a8ad19 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99314a37 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9987eb5a nfs_commit_release_pages +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f1c95b6 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f30a171 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xae2ed5c4 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf186870 nfs_initiate_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc2d250bc nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb978cf6 nfs4_reset_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5a87370 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf72ffcba nfs_commit_clear_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc90de2d nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6665d862 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8794338a nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0a811c8a o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x16a62787 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x521e0726 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x64a9f474 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7d24dd57 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x89c8d88d o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8dbc7725 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xabd7ee40 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x19ad45e9 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x231ca65c dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x84045695 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc8d416df dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe4850c07 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xecf45ab0 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x025e2d69 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0562c415 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x16b2e575 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x34077534 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x344dc4af ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x3618e3ea ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5469ce31 ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7083dbd5 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89502fe7 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb4bd060c ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdc823ea4 ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe2bd47db ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe417d940 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x24935f26 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xcdc24ab5 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xdbab0c01 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL net/802/garp 0x138a5550 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x2312dcb7 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xa867dc8c garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xcc7372db garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xde13315a garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xe1de107b garp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x09d530de stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x85894abd stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0ed276b3 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbf9c880b p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0x50754510 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xe2c6bb26 unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x3aa83f32 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdf04e90f bt_debugfs +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00927657 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09cf422c dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11342f80 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1617d3af dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d658ed2 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2240f12d dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x27d2c73a dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28df9afe dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29144349 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30393e50 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3da91d3e dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x43c779b6 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45bfa48c dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ecd08f7 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ff72b43 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x72427c3b dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x85ad612d dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86d19923 dccp_insert_option_elapsed_time +EXPORT_SYMBOL_GPL net/dccp/dccp 0x87184445 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ff62c70 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x903e642f inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x96c244ad dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9db6dce9 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa3ee4403 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xac75c4a1 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb8225725 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc00fc2ec dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcdaa11fb dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd33c6731 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd685819f dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda6fd601 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb086e9f compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdcae645d dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea2795f6 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3017e21 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf629a680 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfaa962db dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x55d647bf dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6e495875 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x715d5e26 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbe8d9b3e dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd908420a dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf177d05a dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ipv4/gre 0x0cb366d9 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x78fb7cfb gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x95b66e3b inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd36ad31f inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x1a662c6a arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xf5cc8238 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x6d40a921 need_ipv4_conntrack +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0xb0d9fabb nf_nat_seq_adjust_hook +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x07ae60b6 nf_nat_proto_in_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x2da4318f nf_nat_set_seq_adjust +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x6e88f522 nf_nat_proto_range_to_nlattr +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x94a08134 nf_nat_proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xcc626379 nf_nat_proto_unique_tuple +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xd432df77 nf_nat_packet +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xedbfc9a2 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xfa941b35 nf_nat_get_offset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x55e081b2 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x73173f51 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x90b18151 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xc846a161 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdf2ea283 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x35b2a036 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x04a7a39c l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1102c1ee l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x25faf8eb l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a0e1def l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x449b2f15 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4d44d808 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5b9859c0 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x61a21172 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7ae07a7b l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb9ee8586 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2adeaa9 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xda259bf3 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21aeeb47 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2be6c2db ieee80211_iterate_active_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58852c16 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7e70b0db ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x90fa093e ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcef45b1c ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdbe127bb ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe05c502d ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebde69a8 ieee80211_key_removed +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x23d4a937 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2c88777b ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bd82539 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4e4ef701 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x66f91e6d ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6b0b06d9 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x869a4bfd ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8aafdef9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9335ea5d ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ca6d85d ip_set_nfnl_get +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa47ad846 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7f5c049 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5f9b62f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0e5b91f ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0a965b31 net_vs_ctl_path +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x45ebfb68 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x91aa3e58 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd32477c4 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xea580861 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0293a15a nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0997facf nf_conntrack_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bbf1fdf nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0da41256 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ed7b53f nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x101fb55b __nf_conntrack_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x123e5f48 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x134d8e6f nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e3c8d6f nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ef48569 nf_ct_nat_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31e8db74 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x390c9973 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b6b39d2 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41650c49 nf_conntrack_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42f85bed nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b195790 nf_ct_delete_from_lists +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e8db563 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5672add2 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59f38d08 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b88c906 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f6dde9f nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6373e509 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x665a2fbe nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69beab84 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6de5212e nf_conntrack_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fff8279 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74019f90 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74769d91 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7564f5da nf_conntrack_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x786e7a94 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ae8b635 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7baff516 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cbbd7e1 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d96fdc5 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8050117a nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82c5f220 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8917d194 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x942c8fd5 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x948f85ce nf_conntrack_hash_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x975ed404 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99d4e99e nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b64945c nf_ct_l3proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e19786d print_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa17874dd nf_ct_remove_userspace_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8534147 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa3ec57e __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0911a02 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0f9580c seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb114824e __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7f298d7 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8837b48 nf_ct_insert_dying_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8fe2867 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc118b459 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18fc2f0 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc340f554 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd286b544 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd42c8e4c nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe65f55c7 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedb84f4b nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeeddaaf6 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf76fe35e nf_conntrack_flush_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xd4ebfe8f nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x9b2c86ec nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xec6f701a nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0ae71060 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x16df546b nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3da3c56d set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6dcba4cb set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa186aafb nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa950a044 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbabafca7 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd0e2c346 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd1809bb7 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd22c9194 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x80212a99 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x00b996f2 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2a65a4ca nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x87d30445 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xaf4dfb53 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x12ea1da5 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xf7799f7a nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0be114dd nf_nat_sip_expect_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1c35e252 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x29d6595e nf_nat_sdp_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x34d4c7ab nf_nat_sdp_session_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3772b480 nf_nat_sip_seq_adjust_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x45606ead ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4e1a14bc ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5286f1e3 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x68326553 nf_nat_sdp_port_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x962a8680 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xaae6c8bf nf_nat_sip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf07fc3a8 nf_nat_sdp_media_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfa4a98c5 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xca1e8638 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4b913f71 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tproxy_core 0x069b4774 nf_tproxy_assign_sock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f58e71b nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3895cd7a nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3ce15425 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x57a4d591 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x792b51a3 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb9532f0f nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xef37ce75 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf567168b nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x1138a1f8 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x003deb7a xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0bf52029 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x133cc218 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2ef87702 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x32930829 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x51201c15 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x57e17fc1 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x594cd049 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5dfcca9c xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x723e7f31 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8b412d8e xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x95a523cc xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9dfe9921 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbe3a8410 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4f09399 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe609218d xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeab7d81a xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeae3e3d0 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfb301797 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x3e1dd4ab xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x9a303feb xt_rateest_lookup +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0c67b2ca rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x0e5a1c65 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x17e59b7b rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3c83716a rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x3f7a227b rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x70a2f5ba rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7407f41a rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x7b4d5638 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x87d92289 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x990ff6cb rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x993982b0 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x9ab8662f rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xaae6c5ec rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xb118dba2 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xb1cc4ad5 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2da8e38 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc366b406 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xcfa1451f rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xd1c24509 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xd6ecf3ad rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd6fa118b rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd7d73e98 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xebc4c795 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xf3e134ec rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x8ed17945 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xb572a6a4 rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x25e661b5 gss_mech_get_by_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2c2abc32 gss_mech_get +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2e969445 gss_mech_put +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x36bc9a29 gss_mech_list_pseudoflavors +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x421a0917 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4ac08023 gss_svc_to_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4f4ae19b gss_mech_get_by_OID +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x70c4f119 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x93ae5123 gss_service_to_auth_domain_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa8facc16 gss_mech_get_by_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xba68a7d4 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd6d07945 svc_gss_principal +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd7a349f0 gss_pseudoflavor_to_service +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a4ef24 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x035f5c88 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06e8c026 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07993075 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08fe95e0 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a87b312 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b3f3294 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c0712f3 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c13e2fc xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c88d31e xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d3b43db xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e43b335 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11b7d7e4 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11e658a4 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e280e3 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1521be20 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17422c8e xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x178e7550 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x179d6e27 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d5bd0f2 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fa8ccfc svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x236bca92 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23db2c19 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x258f4461 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25f9e284 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29d3b945 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a22b875 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b29c157 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bd337c5 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d6e585c svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2df5d634 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e79b832 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x306f3588 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32b8aa67 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34c774b7 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3707a55d xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37b62815 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3807ecfa sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3983b989 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39c83c64 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a60fd99 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a8965e0 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e8e6f77 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40570bab svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4194b52a xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41e05df9 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x420e64b7 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45168de5 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47dc70bb rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49f747b1 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ba3d466 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c05a29a rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce56c21 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d3d7c07 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d3f08ac csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ed14512 svc_sock_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51e0a28b svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x538f8501 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55259a11 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55c2de39 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5911c32e rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b14ec1a rpc_put_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd26000 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c964d92 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e1fd53d svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c84693 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63386095 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63a4cfff rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64f4164a rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65265de0 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x660647d8 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x666a93b2 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6794e241 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67da0bf3 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bd8798e xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb60d59 rpc_queue_empty +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dcbc1c9 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ddbe20b rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eea229d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x712e37cf svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71f20715 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7524d214 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x783d3e9c xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b38f1da xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8439eecc rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86f6fa0e rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87a0753b rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a0507d8 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cb7d16b rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ccfdfc0 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cf96244 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d691cae svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f1efa52 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9082a6d3 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90bf5bb9 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9246c94b cache_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96234dca xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x983b2cbd svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98af1cdc rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99d9dd5e rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9af81df8 rpc_get_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c4c3df1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9da36a8c rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ec79655 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1fda843 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9106224 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae254a6d rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae7bddd1 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafeed8ae rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb41327bd xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb486cbc1 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7be4eb0 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9bb94a5 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb16a918 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8cb46d rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd4ddaa6 cache_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf6cee40 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc095861a put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3f64743 rpc_mkpipe +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc53c7aa7 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d504ac xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc85a7566 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9937434 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca398001 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb8174bb svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc4ee22d xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce9e615d rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf791c88 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcfad2d80 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd89c2d96 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda32065c xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddde864f rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1a5ff21 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe26da5dd svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe54701ab rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6c910b2 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6ffad3a rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeddedf88 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee35571a svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee9a33a0 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef4621b0 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0289abb xdr_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1349186 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf168054d xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf17b9e7b xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2a7a791 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4e355ed rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7d85695 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc0cac14 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc4080d4 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd760635 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffe1b828 cache_purge +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0afc719c wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x13e6eeca wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x16f44e28 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2366c739 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x394fdf56 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3b5dc94b wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x46d5646e wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5043d126 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5f4c3165 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x686d3d00 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x895d65e6 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x99b9c996 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xedc3f784 wimax_msg_send +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2b46241e cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x41e34af4 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4a90b861 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4f7844b2 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x53047395 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7a62490f cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9e66caec cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa3892718 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xabadd396 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc99ad6c8 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xddddc2a9 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1e53d8d1 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2163f8c9 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe89c1ad9 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xef43bb1e ipcomp_output +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x1493e547 ftr_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x154220b9 aoa_fabric_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x2bc3c152 aoa_codec_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x54835135 aoa_fabric_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x5ba52971 pmf_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x6efc5456 aoa_fabric_unlink_codec +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x8a2a73c0 aoa_snd_device_new +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x9939617e aoa_get_card +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xccd4ba7f aoa_codec_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xeff89181 aoa_snd_ctl_add +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x3d18c3db soundbus_dev_put +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x725b2d36 soundbus_unregister_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x7fa5519b soundbus_register_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x8208c35b soundbus_dev_get +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xbee01fd2 soundbus_remove_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xf701e012 soundbus_add_one +EXPORT_SYMBOL_GPL sound/core/snd 0x3e235b23 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x74f01661 snd_kctl_jack_report +EXPORT_SYMBOL_GPL sound/core/snd 0x9fcba5fc snd_kctl_jack_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb117a494 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x141f5c48 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x2f87999d snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x39095d76 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x481a9313 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc2b673c8 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xeec7bce1 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0037cc64 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02630bad snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0458af87 snd_hda_ch_mode_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x090111f0 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0de85ccb snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ead0da8 snd_hda_ch_mode_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x112e8401 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12409c69 snd_hda_check_board_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x154ffa7e snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1601b59f snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x192c2d3f snd_hda_override_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19f202cc snd_hda_get_sub_nodes +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a55a25c snd_hda_codec_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f82e623 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x245b0525 snd_hda_check_board_codec_sid_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25dc7415 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28478212 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e818da6 snd_hda_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fe72868 snd_hda_create_spdif_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3488ca24 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x372aede4 snd_hda_jack_tbl_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ab6528a snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b14676e snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bb84956 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43869de9 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43deee85 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44402817 snd_hda_codec_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a087bad snd_hda_codec_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dab1f60 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fc1556f snd_hda_sequence_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x545fa421 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54b3f63b query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56ba6a61 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a6a8c32 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f5eec0d snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x606a20c7 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62cb94a8 snd_hda_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64b90848 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6685aef6 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6973f1df snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d791c4d snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70800157 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x710dbb63 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7227109a snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75b45fd3 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78da0e00 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b0bc9ea snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cdc5b3f snd_hda_is_supported_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84d2b544 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85597423 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x862d7d3d snd_hda_codec_resume_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a548bf7 snd_hda_delete_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c92d45e snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cd78c7b snd_hda_codec_amp_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4c6826 snd_hda_calc_stream_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e5aa857 snd_hda_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9151d043 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92b64c62 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93285957 snd_hda_bus_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94283fc7 snd_hda_codec_update_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95bc5379 snd_hda_ch_mode_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cae99f6 snd_hda_power_down +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f1d1942 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2827d76 snd_hda_get_jack_location +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2b6acef snd_hda_add_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2d1edac __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa34d5a0f snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab4d716a snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xab66fa37 snd_hda_resume +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac2c26f9 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae77ee6a snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb49f3987 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb9ef6ac snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0106d33 snd_hda_suspend +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc397ba42 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc588ca05 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc652fd69 snd_hda_get_jack_connectivity +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6984c3b snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc737a381 snd_hda_query_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc929a867 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb301b6e snd_hda_get_jack_type +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcda593bc snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcebb0ebc snd_hda_queue_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd32e9693 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3ddf4b3 snd_hda_query_supported_pcm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd537bb92 snd_hda_bus_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5a46fbf snd_hda_codec_resume_amp +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5cc716b snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7533e6a hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8634b47 snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9a0ba14 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe07bf8ef snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0df4a34 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe516b845 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe75e02ad snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe7f9a601 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebe47571 snd_hda_power_up +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed20a544 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee8afd77 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefa2f3e8 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf05086dc snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2599241 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf25abb12 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf34a09ca snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6247c45 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdf9fc14 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe70bdaf snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe730d05 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfeb4238e snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x93f739ce pm860x_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x95d51084 pm860x_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cx20442 0x1a9366a1 v253_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-l3 0x78c84c7e l3_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max9877 0x161370d9 max9877_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x0cf9476f aic3x_set_headset_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x27dfa527 aic3x_set_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x331f50b0 aic3x_button_pressed +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xe38102d4 aic3x_get_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xe9682632 aic3x_headset_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x0a16e09a tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xc1bb9f6e tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x46136bed twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x5cac3172 twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x965b0cb8 twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wl1273 0x004ced44 wl1273_get_format +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x54959c86 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa59ee171 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xedac508c wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm2000 0x41d16d28 wm2000_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x04e72eae wm8350_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x3e8b74b9 wm8350_hp_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x69b54848 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x5ac1ebb2 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x59bab783 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x8f16d244 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8996 0xb72a1d7b wm8996_detect +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x057227ee snd_soc_dapm_get_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05aea0c2 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08ba5f43 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08d7b4ce snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c28a1e5 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d1bfff6 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fb2cada snd_soc_get_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x197feab9 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f673979 snd_soc_dapm_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21892677 snd_soc_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21dc1117 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2207ca03 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x244c681f snd_soc_cache_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25e43460 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x281117b2 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x297c4f69 snd_soc_add_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f4ef8b8 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fa1648b snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fde9dea snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fe5209c snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x300e2cca snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33545196 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3365dfe4 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35257434 snd_soc_unregister_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35ca6607 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x380a9fa8 snd_soc_info_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38f020d7 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bbb1640 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x468ec1b2 snd_soc_get_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x487ad549 snd_soc_register_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c7aed82 snd_soc_default_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d1df148 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5049281f snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50fb7d99 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x541bee9d snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57fbf284 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a4755a5 snd_soc_update_bits_locked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a61e312 snd_soc_cache_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bc13b44 dapm_reg_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f445a13 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x605a8391 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6605ec93 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6795cc5d snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67f225c3 snd_soc_default_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x682f0ebf snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x688bdb23 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a391d34 snd_soc_codec_set_cache_io +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b8f6871 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e5f9265 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72a0a6d1 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73fbdbba snd_soc_info_volsw_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x741be9ec snd_soc_codec_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74cdcd95 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x764f5e35 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f55cbd7 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80842a84 snd_soc_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8211ac4b snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8293f284 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83bc94e3 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x861f2ec0 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86bc9987 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x874df1c6 snd_soc_codec_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d13f7ba snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x90519ac0 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91719611 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x971db6cd snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97c50942 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98b8a17a snd_soc_dapm_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98fd026b snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9edde48c snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f8f1bfc snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fc3da3e snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0da29c5 snd_soc_bulk_write_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2c3b437 snd_soc_codec_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa79da11d snd_soc_default_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabbd4edd snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafed1f1d snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3a650c8 snd_soc_info_enum_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba8f5920 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc306cd56 snd_soc_put_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3e645ae snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc460b977 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6f49071 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7bbcfe8 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca9487f5 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd3ac437 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce73c45f snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0901855 snd_soc_info_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd83193a6 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9c32ba3 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda3194c0 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe22a958c snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe337c3a4 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe478c221 snd_soc_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5ffecb8 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8b7b7ce snd_soc_dapm_put_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecdb5e79 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee8ff63d snd_soc_put_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8e0d416 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe04dc37 dapm_mark_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe56a9ec snd_soc_cache_sync +EXPORT_SYMBOL_GPL vmlinux 0x002fabd2 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x0050c0cf disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x0067df75 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x0088a193 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x00a4ad55 __rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x00b8ecf8 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x00c4dc87 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x00e18d05 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0135d141 sysfs_put +EXPORT_SYMBOL_GPL vmlinux 0x017543f0 net_ipv6_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0x01925e61 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x01a4ea6d unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02234eb6 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x023a3372 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x02ad3534 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x02b41207 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x02c37014 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x02fed445 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0315a6df tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x032d4675 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03523e5e shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x038cbf57 pmf_find_function +EXPORT_SYMBOL_GPL vmlinux 0x039c3498 pmf_call_one +EXPORT_SYMBOL_GPL vmlinux 0x03d47a7c pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03f3303c usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x04343167 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0447283d __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x04486e88 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x04492dc1 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x044c071c invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x044dae08 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04cf839a shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x0511aff0 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x0531dcb8 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0575aa66 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x05ae262e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05d80233 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x05d9b687 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x0619ca8a getboottime +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06520a7b apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x06a0cd34 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x06af9470 generic_subsys_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x06b7c2cd pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x06b96c32 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x070ad0bb dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x071cd8c1 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x076eae23 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x079d630b crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07e453ee sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x0820e89e dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x0823f6fd stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x083b3921 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x087b2251 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x087ee4e3 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0885f3c7 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x0888f3c7 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x088d60be usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x08a0ebd2 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x08a90c30 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x08eee909 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x094b4bfd devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x095f9dc6 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x09da209f ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x09e47676 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a067be8 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x0a1ac5ea macio_find +EXPORT_SYMBOL_GPL vmlinux 0x0a288348 flush_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0a4e71eb rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a766070 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x0a9ed6a9 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x0ac2ae98 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x0ad7e8a3 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b1e3d9b tpm_read +EXPORT_SYMBOL_GPL vmlinux 0x0b24f2f1 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x0b28defb kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b9bea43 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x0bb0dbd6 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x0bb46f0a wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0bc1a9a9 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x0bcda985 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x0be13004 usb_storage_usb_ids +EXPORT_SYMBOL_GPL vmlinux 0x0c095a45 sysfs_notify_dirent +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c1acd58 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x0c1c5154 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c92ab53 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cd10a4e work_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0cf5646d usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0d08d685 unregister_spu_syscalls +EXPORT_SYMBOL_GPL vmlinux 0x0d1db07c swiotlb_bounce +EXPORT_SYMBOL_GPL vmlinux 0x0d3cc82c of_irq_map_one +EXPORT_SYMBOL_GPL vmlinux 0x0d3ec629 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x0d469761 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x0d5b063c atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0db74fd1 init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x0dd9e86c tpm_store_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0dfa2202 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x0e071d4b wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0e12b3d3 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0e5b1dff md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x0ea721af device_move +EXPORT_SYMBOL_GPL vmlinux 0x0ebc343a xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x0f0eb4b2 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x0f25ac70 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0f4389ed drop_cop +EXPORT_SYMBOL_GPL vmlinux 0x0f440a72 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x0f4e059a rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x0f5078d0 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x0fb4adcb tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x1008663d ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1015aa5d tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x101b8dda simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x102995a9 use_cop +EXPORT_SYMBOL_GPL vmlinux 0x1036df35 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x109b918f spu_init_channels +EXPORT_SYMBOL_GPL vmlinux 0x10b0bfb7 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x10b98987 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x10e49140 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110a391a pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x111f1a5b pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x11200959 platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x112a8133 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x1146bde8 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11487595 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x11510529 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x118bc0a1 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x11a36f34 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x11aa3816 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x11decc08 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11e489a4 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x11f447ce __gpio_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x121ed3f3 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1258d9d9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12b71a25 ps3_vuart_clear_rx_bytes +EXPORT_SYMBOL_GPL vmlinux 0x13007b8d cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13228bf2 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x132c6762 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1333d8b3 ps3av_video_mode2res +EXPORT_SYMBOL_GPL vmlinux 0x13574bbf nf_net_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0x135cdb28 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x136d65da rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x13894d4e aead_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x13998c83 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x13b2a946 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13b486cd xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x13b82b24 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x13c625bf tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x13d21705 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x13d98b46 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x14062743 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x142c5f4f usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x145583c9 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x145d3d98 eeh_dn_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x14754c26 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x149ca1a1 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x149f5d33 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x14c1c7e1 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x14d5945d of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x14f9d473 ps3_system_bus_device_register +EXPORT_SYMBOL_GPL vmlinux 0x152b0b92 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x1556756b usermodehelper_is_disabled +EXPORT_SYMBOL_GPL vmlinux 0x15661acd bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158a17f3 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x1598dc9d unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x159abb63 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x15d27b02 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x162e3f2f agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x1640150f transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x1641bb25 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16530559 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x169a63e1 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x16ea00df ps3_vuart_port_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16f966f0 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x17112e6a tpm_write +EXPORT_SYMBOL_GPL vmlinux 0x1757598d cbe_spu_info +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x179cc83a fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x17b7290b __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x181e5200 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1850635a usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x1853783a pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer +EXPORT_SYMBOL_GPL vmlinux 0x185db111 blkiocg_add_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x18651797 pcibios_remove_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x187d176b i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x188c0fd5 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x18ae1263 register_net_sysctl_rotable +EXPORT_SYMBOL_GPL vmlinux 0x18d6e40c device_del +EXPORT_SYMBOL_GPL vmlinux 0x18dc3658 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x18e2c347 dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x192cef22 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x1931d97f transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x193d48e0 trace_current_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x1947e80b class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x194ff19a usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x195d1c23 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x1968cf0c task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1969983d proc_net_fops_create +EXPORT_SYMBOL_GPL vmlinux 0x19872867 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x19a1844b shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19fc7f60 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1a323362 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x1a7b1e14 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x1a863ea6 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x1ac717e3 ps3_os_area_get_rtc_diff +EXPORT_SYMBOL_GPL vmlinux 0x1ae0e135 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x1ae29728 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x1b344f77 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x1b37af93 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x1b46bba7 xv_free +EXPORT_SYMBOL_GPL vmlinux 0x1b7b44f1 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x1b850cc1 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bb62438 tpm_show_active +EXPORT_SYMBOL_GPL vmlinux 0x1bbb0bb8 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x1bc1cd09 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x1bc28f32 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x1bd9b45f cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x1bf02564 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1c19c039 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c66e34d init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x1c70223e blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x1c852e7c xfrm_calg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ca1b7fd tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x1cb22f40 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1cb92154 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d021c7b n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d070f66 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1d1c28a3 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x1d25db3c i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x1d41f8f5 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x1d77a009 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x1d9496fc of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x1dfc2aef debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x1e100d94 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1e314b21 regulator_use_dummy_regulator +EXPORT_SYMBOL_GPL vmlinux 0x1e47c8c6 device_schedule_callback_owner +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1ea13028 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ee9814e irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x1efcc0a2 inet_csk_clone +EXPORT_SYMBOL_GPL vmlinux 0x1f128e33 wm8994_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1f594c2a fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x1f70b4ee mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fcece42 inet_twdr_twcal_tick +EXPORT_SYMBOL_GPL vmlinux 0x1fe4f8c7 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x1fe970cb ps3_io_irq_setup +EXPORT_SYMBOL_GPL vmlinux 0x2005f793 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x200b7ce2 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x20338ff6 ps3_free_mmio_region +EXPORT_SYMBOL_GPL vmlinux 0x206d891e usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x20bc3470 orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x20d2c1eb usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x20e5361a ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x21102c4b pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x21625cf2 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2166fa2b usb_string +EXPORT_SYMBOL_GPL vmlinux 0x217bec31 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x21c60207 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x21d36a03 kvm_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x221e7426 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2285200f usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x228f9e84 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22bc9e6a ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x22c54a34 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x22c8ca03 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x22d2395c irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x22dc2880 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x22f547b3 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x230e0698 __clocksource_updatefreq_scale +EXPORT_SYMBOL_GPL vmlinux 0x237337cf __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23998755 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x23eeb779 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x23f92ab7 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x242eb794 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x243142d3 xv_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0x2447533c ktime_get_real +EXPORT_SYMBOL_GPL vmlinux 0x24736bf5 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x2476ec7c ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b67b27 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x24e0389e security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24fc46b6 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x252e43b4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x254e310c ps3_os_area_flash_register +EXPORT_SYMBOL_GPL vmlinux 0x25b093ea init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x25b72b50 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x25cbe4f0 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x25fb7f2c bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x2627448b sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2631e937 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x2640b100 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x26424e36 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x264bb4a8 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x26562e3a snmp_mib_init +EXPORT_SYMBOL_GPL vmlinux 0x26576139 queue_work +EXPORT_SYMBOL_GPL vmlinux 0x2657b65a rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x267b2de1 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x269f4310 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x26a77222 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x27200e8b evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x27345c2d ps3_system_bus_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x274d1134 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x27b35589 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27dc09d8 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x289b0e73 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x28af4b30 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x28d664ff __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x28da82be anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL vmlinux 0x28fbe3cf remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x2936992b pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x296592fb pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x298d8add usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x29ceecc5 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a6692c7 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a731dac cgroup_unload_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2a9268d0 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2ad96986 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x2afbe2a5 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2b05833b pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x2b270757 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x2b37478e inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x2b51146b fuse_conn_kill +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b890b26 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x2bfd164e perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x2c078454 generic_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x2c0dc18b filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x2c13c143 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x2c18aa3e stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c88c9bf platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ca4ebcd regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2cb52171 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2cc3e675 pmac_i2c_close +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5e0e58 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x2dbb59c0 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x2dbc740b gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x2ddee4bb usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x2de94683 ps3_mmio_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e3f2288 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2e442093 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2e45e488 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x2e47f677 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x2e4b0dd1 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x2e505834 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2e5437ed __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x2e60ba3f rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x2e754b9d cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x2e8e2944 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2e94abc3 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x2eb58f19 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2ebdfe99 sysdev_store_int +EXPORT_SYMBOL_GPL vmlinux 0x2ebef51d crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x2ec92012 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2eded608 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x2eef2bb1 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x2efdc562 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x2f35ca74 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f47d8c7 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2f683d9f edac_put_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0x2f7fec78 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x2fa87144 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x2fba1f22 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x2fcd9e17 dpm_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2ff2d6d3 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x3003605d proc_net_remove +EXPORT_SYMBOL_GPL vmlinux 0x300bcd0e crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x30301151 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3032a98b ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x307f7776 timecompare_offset +EXPORT_SYMBOL_GPL vmlinux 0x30bfbeab wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x30eaf582 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x31028da9 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x3108ea46 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310de1f5 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x3113e7bc regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x31193eef netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x311b78c2 ps3_get_spe_id +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x314598a0 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x314a2a80 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x315c3a79 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x31622e98 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x3194f3a1 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31ca0645 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x31e304bc force_sig_info +EXPORT_SYMBOL_GPL vmlinux 0x323c929b dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x324c5fdf sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x32b31a8c ktime_get_boottime +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c80d0d blkio_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32d45f03 irqd_to_hwirq +EXPORT_SYMBOL_GPL vmlinux 0x32d5e7fc xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x32f08411 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3309ea64 ps3av_audio_mute +EXPORT_SYMBOL_GPL vmlinux 0x3314a5ac crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3365da15 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x33bce0eb skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x33c18307 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x3417a09e inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34266b6d sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x343308a8 register_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x3441c3d6 gpio_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3443cb74 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x3448af66 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3457f027 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x346ace71 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x34753c76 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3490797e sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x34a233cd kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x35001c4c pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x3534e2a3 system_nrt_wq +EXPORT_SYMBOL_GPL vmlinux 0x35874fe3 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x35b90d7a debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x35d48ef1 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x35df0d89 tracepoint_iter_start +EXPORT_SYMBOL_GPL vmlinux 0x35e20251 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x35eeaa88 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x35efd9d0 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x361c0f9e cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x361c333c spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362598f6 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x362cae9e __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x362e23ec call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x363c7302 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x364b4c27 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x36875389 __timecompare_update +EXPORT_SYMBOL_GPL vmlinux 0x368e2a89 sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x3695ed27 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x36a007d6 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x36f88dea tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x36fb8d83 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x37231b65 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x37c2529c cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x37f002af page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x385f34df xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x386441b9 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x388074ed usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x38893432 tpm_open +EXPORT_SYMBOL_GPL vmlinux 0x3906440f rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x3932f232 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x395087d6 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x395e690a spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3977df46 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x397ef9ad crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x3992b9d8 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x39a7c4b5 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x39c234bb blkiocg_update_completion_stats +EXPORT_SYMBOL_GPL vmlinux 0x39c32010 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x39d7bb0a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x39e15e5f trace_nowake_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x3a011c9c __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3d75dc md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x3a45480a pci_stop_bus_device +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a70d3e3 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x3a74768e usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3b11b94d udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3b1c5afc ps3_vuart_irq_setup +EXPORT_SYMBOL_GPL vmlinux 0x3b42080e device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3b687a9a regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x3b7ef7c9 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x3b8122bb net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x3b85078f adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3b9a057e cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x3be89d3c usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x3becf1dd inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x3bf6f396 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x3c06bbee __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x3c0efe5a ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3c19ec93 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x3c371428 class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3c58db1a regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x3c8dd765 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c942368 profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cac21b9 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ce03c49 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x3cfedb3f register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd7c3b9 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df0e06f css_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e12c8cf gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x3e2b0e9c scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x3edad223 usb_usual_clear_present +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f330cb4 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x3f3643f1 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3f629ad2 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3f72a0fd da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x3f94c7f7 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x405aa9b3 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x4063f622 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x40783a1e __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x407f9109 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c54fcd enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x411903dc usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x411aea93 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x41974203 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41d3b253 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x41da034b ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x425878ab get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x42770171 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4302bd72 blk_rq_check_limits +EXPORT_SYMBOL_GPL vmlinux 0x43256d47 rtc_set_mmss +EXPORT_SYMBOL_GPL vmlinux 0x432fd7f6 __gpio_set_value +EXPORT_SYMBOL_GPL vmlinux 0x43423fb8 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x4348d7ae find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x435d31e6 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x437c0e16 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x4386b8bc led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x43ab3cab __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x43da39d0 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x43dcde3b rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x441f349c md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x442e3958 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x4435dad7 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x443d8f4d rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x44404f11 kdb_register_repeat +EXPORT_SYMBOL_GPL vmlinux 0x44465405 pci_pri_stopped +EXPORT_SYMBOL_GPL vmlinux 0x4448fe10 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x4455e1b3 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x445b3599 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448c041a ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x44bcfa6d system_nrt_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x44c684c8 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x44c8ef15 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x44dcdbb3 scsi_nl_add_driver +EXPORT_SYMBOL_GPL vmlinux 0x44de19d8 tps65910_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x44fb2fd7 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x45042e76 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x45055eb0 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45789935 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x457ba239 drop_file_write_access +EXPORT_SYMBOL_GPL vmlinux 0x458afa46 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c395ca ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x45d4d385 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x45e39084 __giveup_vsx +EXPORT_SYMBOL_GPL vmlinux 0x45f932e0 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x46074c17 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x460c15d6 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x461a6000 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4672e88b __crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x46d9f955 ps3_irq_plug_setup +EXPORT_SYMBOL_GPL vmlinux 0x46de114d __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46edf33a get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x46f23f78 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x46f732de queue_work_on +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x473feb17 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x4741db42 ps3av_set_audio_mode +EXPORT_SYMBOL_GPL vmlinux 0x474359b6 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x47acddea ps3_sys_manager_set_wol +EXPORT_SYMBOL_GPL vmlinux 0x47af92c2 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x47df3d31 __inet_hash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x482f08bb bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48336928 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x4865f9b3 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x4887b499 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x48a488a0 sysctl_tcp_cookie_size +EXPORT_SYMBOL_GPL vmlinux 0x48ba75d7 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x48c62e4a eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x48e89e61 sk_clone +EXPORT_SYMBOL_GPL vmlinux 0x4935f093 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x49374d4d single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x4942ca40 sysdev_class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499dfe99 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x49c61b1f kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x4a0f58f1 wm8994_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4a178965 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4a1c219a led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x4a3ce32e blkiocg_update_io_add_stats +EXPORT_SYMBOL_GPL vmlinux 0x4a7d48a3 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x4a872263 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab12815 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x4ab8f387 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ae55766 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x4ae6303d synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4b2a9005 blkdev_aio_write +EXPORT_SYMBOL_GPL vmlinux 0x4b359889 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x4b7a01fe spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x4b840dfd probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x4bbac89d sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x4bc62a81 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4bdf8b55 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x4bf06539 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x4c18f773 ps3_os_area_set_rtc_diff +EXPORT_SYMBOL_GPL vmlinux 0x4c213d2a user_match +EXPORT_SYMBOL_GPL vmlinux 0x4c284944 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x4c3866c0 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x4c6331da of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c915cfe tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4cda24b5 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x4cf68c5c blk_abort_queue +EXPORT_SYMBOL_GPL vmlinux 0x4d14ea21 spu_priv1_ops +EXPORT_SYMBOL_GPL vmlinux 0x4d172ccb ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x4d1cbcf1 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4d303574 cpu_add_sysdev_attr +EXPORT_SYMBOL_GPL vmlinux 0x4d3eae31 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x4d4fd5f1 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4d54b7d8 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x4d6abde2 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d9c090f raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x4db38630 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x4db4ea0c pmac_low_i2c_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4dbe19c0 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x4dce5714 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x4df4cda8 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e2595e0 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x4e76a2ed debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x4e7df11b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4ed08c0c rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f0fee5d inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x4f1ccf7d dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f1f98e1 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x4f28dd94 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x4f521f98 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x4f63764e ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x4f71cd1d of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4f74a375 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4fae1f2d of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x4fbdd449 of_property_count_strings +EXPORT_SYMBOL_GPL vmlinux 0x4fd4e89d ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4fd88107 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x5013e6de pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x5015209a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x50525ebb cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x506dc770 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50b005c0 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x50b2538f blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x50c79692 dm_dispatch_request +EXPORT_SYMBOL_GPL vmlinux 0x50cd056e crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f5e532 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51033a23 tps65910_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x51158f09 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x513435dc usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x5149e563 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5168d52e attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x51846493 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x51a19d3a pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x520da227 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x52191d51 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x521e87fc rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x523974dd usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x525f88c1 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x5285f761 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x528b40fd xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x52a1375d xv_malloc +EXPORT_SYMBOL_GPL vmlinux 0x52adbf36 tpm_release +EXPORT_SYMBOL_GPL vmlinux 0x52ebb26a rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52f11032 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x5324d04f bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x534bd9c8 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5365b101 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x53737011 wm8994_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x53986488 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x53a3e486 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x53c82322 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x53cb7915 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x53dea85c md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x54169338 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54314f0e crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x545973c5 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x5459c525 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x5471987d regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5476ec6c unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a905cb ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x54da8136 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x54e84170 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x54f86530 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5517b596 sysfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x552567c0 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x557fb662 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x55917fb1 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x5591d506 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x55bcc38d inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x560451f1 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x56056acc simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56391591 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x56433133 tpm_continue_selftest +EXPORT_SYMBOL_GPL vmlinux 0x564f1dca klist_add_after +EXPORT_SYMBOL_GPL vmlinux 0x56511ca1 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56a176df crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x56a680bc page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x56b65164 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x56bf227f sysfs_rename_link +EXPORT_SYMBOL_GPL vmlinux 0x56dc1026 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f396c8 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x5730a1ae dw_spi_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x576f41b2 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x578ebe7d sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57ae142d sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x57b9bab0 usb_enable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x57c4691b queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x5817f980 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x583b756b usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x585ecd83 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x587b5443 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589cff13 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x58b1654f pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x58c9dd12 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x58fb845f of_property_read_string_index +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x596cbcee flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x5989f218 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x59994483 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x59bf0654 platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x59dca68a kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59ef5c00 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x59f0fc57 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x59fb3c15 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x5a133ee4 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x5a1d4321 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x5a446712 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x5a48534a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a9811bf pmf_do_functions +EXPORT_SYMBOL_GPL vmlinux 0x5abc0f95 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x5af89626 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x5b540ef8 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x5baf3472 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x5bb482ec queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x5bb906a7 wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bc6bef7 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5bcd42aa pci_unblock_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x5bfc03c3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c2548b9 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x5c55ac21 ps3_vuart_port_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5c752c98 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5c7d35fb lookup_instantiate_filp +EXPORT_SYMBOL_GPL vmlinux 0x5cdebf1e driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x5ce396a6 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x5cef4a98 pmf_put_function +EXPORT_SYMBOL_GPL vmlinux 0x5cf78930 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x5d037de2 eeh_add_device_tree_late +EXPORT_SYMBOL_GPL vmlinux 0x5d07d335 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x5d181daf tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d66a230 blkio_root_cgroup +EXPORT_SYMBOL_GPL vmlinux 0x5d730e7b raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d810acd inet6_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x5d8cf009 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x5d9234b1 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x5d926fbc inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x5dd67618 register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5e0120a8 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x5e19e1b7 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x5e769986 ps3_os_area_get_av_multi_out +EXPORT_SYMBOL_GPL vmlinux 0x5eacba1f ahci_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ef97a80 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x5f248f72 set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0x5f37ecde get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x5f46d244 of_irq_map_raw +EXPORT_SYMBOL_GPL vmlinux 0x5fcdec5d xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x602b028d eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60956e1a __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x609ed66f __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60c99b6c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x60e2722e pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x6114d8a4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x61296cbb hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x61634f05 lock_flocks +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61ab5e36 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x61ef0c36 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x61f41b6a usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x61f488f1 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x62312e70 unregister_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x6294e924 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x62a5108e blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x62ad6279 find_module +EXPORT_SYMBOL_GPL vmlinux 0x62c6fb67 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6318f89e crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x63205de1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x632b4190 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6347c94c __css_put +EXPORT_SYMBOL_GPL vmlinux 0x6347ee72 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x63675a60 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x6377d40c register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x639f62e6 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x63f4dc09 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x640729d6 cred_to_ucred +EXPORT_SYMBOL_GPL vmlinux 0x6425ab3c ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x64787ad2 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x64877ee8 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x649113e3 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x64ee9608 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x650cdad3 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x65203d40 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6539dc2d ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x65869ed2 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d6d0f0 gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x65f24b0a wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x65f2532f pmac_i2c_match_adapter +EXPORT_SYMBOL_GPL vmlinux 0x6602ae75 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x660d1b02 css_id +EXPORT_SYMBOL_GPL vmlinux 0x6615eb2b bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661c3038 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x662faea6 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x664e1520 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x667a812c ps3av_set_video_mode +EXPORT_SYMBOL_GPL vmlinux 0x667b552f mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66a9fa24 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x66b2a859 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x66b8fa6b platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x67311e62 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a5629e scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x67be92c4 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x67e7dd59 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x67eb7ca1 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x680f1b95 dw_spi_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x68443028 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x68656d56 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x686c703f xfrm_count_auth_supported +EXPORT_SYMBOL_GPL vmlinux 0x686c7246 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x6892088c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68abe7aa rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x68d74f01 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x68da20a8 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x690c99f2 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69440c70 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6963e17e blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x69790ef6 __init_new_context +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x697de43f ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698be398 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x69e9a2cb ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x69ea7059 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x6a0655d4 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x6a2c0f66 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x6a3e88a4 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x6a49e3c5 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6a59525f regcache_read +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6aa62e9d ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x6ab922b2 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6aba167a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6b08da99 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x6b1319b9 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b93bf60 inet_twdr_twkill_work +EXPORT_SYMBOL_GPL vmlinux 0x6b9fd6cf dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x6bd90ed7 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6c03aeb5 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x6c1cbb46 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6c49c4f2 clockevents_notify +EXPORT_SYMBOL_GPL vmlinux 0x6c722403 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x6c84666c regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x6c8d5ae8 __gpio_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6c980cfa dm_requeue_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x6c992338 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6cb13936 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cd80f42 __ip_route_output_key +EXPORT_SYMBOL_GPL vmlinux 0x6ceac0fc dm_kill_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x6d05bd98 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x6d10241b pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d30f6b5 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6d77567e unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x6dab265e debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x6df7e762 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x6dfdb8b8 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e02ec74 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x6e14cf8c crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x6e1e9d9d blk_queue_bio +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e7474fc xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x6e8985fb sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x6eb9ab64 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x6ebfff41 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x6ee3d690 __scsi_get_command +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f26e66c dm_underlying_device_busy +EXPORT_SYMBOL_GPL vmlinux 0x6f44c41c sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x6f7f9391 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x6fbc719c pmf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6fd80751 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x6fd9963a posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x6fe0d458 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7015fda4 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x701f506f fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x7020de36 spu_remove_sysdev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x703189d7 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x704c7b85 tracepoint_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x706b3a33 cpufreq_frequency_table_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x706deba6 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70ad3fc6 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x70b8e7d3 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x70c9f59b blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d8a08d user_update +EXPORT_SYMBOL_GPL vmlinux 0x711745ce regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x712f50c9 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x713bc02f pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x713cd87b fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x71429782 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716c9600 sysfs_get_dirent +EXPORT_SYMBOL_GPL vmlinux 0x71a540df __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x71b01ced clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x71b45b58 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x71cf5dc2 bsg_goose_queue +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71fa0943 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7231eae8 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x7243f039 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x7262cbab ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x729555b1 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x72b212ff regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x72dc4447 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x73152a20 do_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x731a606f shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x731bd44c disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7329366c sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x7347f49b ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x734ef515 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x736537b2 sysdev_class_register +EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73cf2f9b pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73dce164 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743b37e0 tpm_show_caps_1_2 +EXPORT_SYMBOL_GPL vmlinux 0x744f14ba ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x7469538b rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7489ff90 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x74954462 timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x74abdafa task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74ea1ced class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x74f36228 xv_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x751e3574 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7524b538 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x753674dd debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x75430580 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x75b000f8 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x75b20f59 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x75cd8b4d usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x75d17d0b pmac_i2c_open +EXPORT_SYMBOL_GPL vmlinux 0x75e2a7ba regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x75e6e037 hash_page +EXPORT_SYMBOL_GPL vmlinux 0x75e8f3c3 crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x760a7f8b usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x761188fd dpm_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x763030c8 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x7642fcaa put_pid +EXPORT_SYMBOL_GPL vmlinux 0x7650b826 sysfs_schedule_callback +EXPORT_SYMBOL_GPL vmlinux 0x765837b5 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x76fcbb30 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x773729d7 tpm_show_enabled +EXPORT_SYMBOL_GPL vmlinux 0x7758cde9 blkio_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x7760ac0e alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x776475a5 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x77d1c61b security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x77e3d761 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x782594cb crypto_nivaead_type +EXPORT_SYMBOL_GPL vmlinux 0x7845835c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x7877e73a vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x787d1da5 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7888d7ff sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0x788a3974 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x78f8000a pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x798cb0f7 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7999264c inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x799ccfe3 spu_remove_sysdev_attr +EXPORT_SYMBOL_GPL vmlinux 0x79b36d09 blkcg_get_weight +EXPORT_SYMBOL_GPL vmlinux 0x79f8b14f devres_find +EXPORT_SYMBOL_GPL vmlinux 0x7a247310 tty_prepare_flip_string_flags +EXPORT_SYMBOL_GPL vmlinux 0x7a845f80 ps3_vuart_cancel_async +EXPORT_SYMBOL_GPL vmlinux 0x7ae1ae8e cpufreq_frequency_table_put_attr +EXPORT_SYMBOL_GPL vmlinux 0x7b0c1a14 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b16b2af shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b53e3b4 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x7c6b8d30 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7c6f2f7a rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x7c823a89 blkiocg_update_dispatch_stats +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d30bb66 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7d4b4740 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x7d4e3c86 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc5d0b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7df96d99 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7e1183c9 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e275ea8 scsi_complete_async_scans +EXPORT_SYMBOL_GPL vmlinux 0x7e3d628b raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7d3d6b skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x7e86368f usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7e8b588e blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x7ea181a1 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x7ea97936 pmf_register_irq_client +EXPORT_SYMBOL_GPL vmlinux 0x7eb82e44 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7eb8a91f proc_net_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x7ebe4dae ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7f14fd92 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7f457923 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x7f47c558 hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7f52c522 ps3av_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7fa0365e rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7fc34b95 usb_usual_ignore_device +EXPORT_SYMBOL_GPL vmlinux 0x7ff10ccf raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7ffc8718 gpio_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x80006968 dm_set_device_limits +EXPORT_SYMBOL_GPL vmlinux 0x8014b6af input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x8028ac30 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x8033806c fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x80507f72 ps3av_audio_mute_analog +EXPORT_SYMBOL_GPL vmlinux 0x806d2061 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x80701744 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80ccad3a ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x80e51528 xv_get_total_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0x80e608eb sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x80e6bede tpm_show_owned +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814d18a3 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x817be55f device_register +EXPORT_SYMBOL_GPL vmlinux 0x8226642f __gpio_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x825447c5 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x825f0828 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x827e9764 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x828225c0 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x82939ebd rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x82a3ce92 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x82a48f9e pmac_low_i2c_lock +EXPORT_SYMBOL_GPL vmlinux 0x82b3a921 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x82cd69de uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82d8e3ec dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x83348f9e scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x8362782b __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x836b21bd ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83cddaec ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x83ce82eb get_monotonic_boottime +EXPORT_SYMBOL_GPL vmlinux 0x845c6043 get_driver +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x849de4f7 pci_block_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x84b51ee5 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x84c3545f cgroup_add_file +EXPORT_SYMBOL_GPL vmlinux 0x84d62fa0 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x84e38dc0 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85054ad6 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x8517bfb2 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x85478a0b inet6_hash_frag +EXPORT_SYMBOL_GPL vmlinux 0x855d2e09 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x85605652 spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x856bc524 get_device +EXPORT_SYMBOL_GPL vmlinux 0x85b8eb5b sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x85c10896 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85ce5a71 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x85e2a5cb __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x863385bf usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x8642e619 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x866b3865 dw_spi_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x866f600c srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86c672a6 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x8718fb50 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x875e7396 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x875f4048 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x8770adb4 task_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0x87754115 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x8781cb60 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x87cf0ac2 cgroup_to_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0x87d423be ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x87fd7c20 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x8818e844 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8859f0a6 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x88602148 devm_kzalloc +EXPORT_SYMBOL_GPL vmlinux 0x88961931 usb_is_intel_switchable_xhci +EXPORT_SYMBOL_GPL vmlinux 0x889865a5 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88e6b3ba crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x898b7383 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x89b38a3b rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x89d4dbaf usb_usual_check_type +EXPORT_SYMBOL_GPL vmlinux 0x89f2ab57 filter_current_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x89ff43f6 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a03b7cd seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x8a054b2c xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x8a22bc14 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x8a5c7a80 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a63bf7a gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x8aabfd00 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8af41709 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8b3468e2 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x8b4dfb56 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b74be64 cgroup_load_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8b7529e7 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x8b752ac1 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x8b869f0c __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x8bdb9bc5 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x8be528e5 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x8bee97bf raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c5e9b87 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x8c8f4911 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x8ca21171 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8cf17afb pmf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8d14f8ca pmac_i2c_get_controller +EXPORT_SYMBOL_GPL vmlinux 0x8d17e61f input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8d72d9db tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8d80529b virq_is_host +EXPORT_SYMBOL_GPL vmlinux 0x8d82b600 ps3_vuart_write +EXPORT_SYMBOL_GPL vmlinux 0x8d838223 user_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x8d85367f smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x8d92637c unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8e03add5 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e502837 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8e744a0d usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x8ee5aeb3 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x8f1452f4 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x8f1d3604 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x8f277d45 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x8f30b3fb rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x8f35b866 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x8f59bc1e put_compat_timespec +EXPORT_SYMBOL_GPL vmlinux 0x8f59ee99 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8f62bff4 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x8f6c7fca tpm_show_durations +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8fec31f4 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x8ff3e0ed crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90673390 spu_switch_event_register +EXPORT_SYMBOL_GPL vmlinux 0x90801639 dw_spi_xfer_done +EXPORT_SYMBOL_GPL vmlinux 0x909c56b9 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x91072ae6 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x91360bd6 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x914b0575 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x9159b9d6 profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0x9178c4db pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91b59d1c raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x91d80916 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x91dfac9f wm8994_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9208503c wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x9214887f inode_dio_wait +EXPORT_SYMBOL_GPL vmlinux 0x92240c6f swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x925b0a5c ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x9279fcdc aead_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x92c8b950 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92e73255 tcp_init_congestion_ops +EXPORT_SYMBOL_GPL vmlinux 0x930316c4 slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x93543bf6 spu_switch_notify +EXPORT_SYMBOL_GPL vmlinux 0x938d051a xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x93a2a5b1 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x93cc157f __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x93d2422d snmp_mib_free +EXPORT_SYMBOL_GPL vmlinux 0x93d60db6 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x93fe93c8 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x94016e90 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x940462e2 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942eec37 of_irq_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x94684890 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x9478415e ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x94994b0a debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x949d47aa pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x94a68723 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x94c7f3e5 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x95037cee sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95305ab6 device_add +EXPORT_SYMBOL_GPL vmlinux 0x953f023c bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x954735aa debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956802b1 pcibios_find_pci_bus +EXPORT_SYMBOL_GPL vmlinux 0x956a91ba gpio_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x959bfc02 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x95b63838 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x95db5c91 tpm_show_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x96113132 free_css_id +EXPORT_SYMBOL_GPL vmlinux 0x96216dd2 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x963a937f locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x9641830d usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x965a78d5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x966553e0 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x968e0305 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x968e65c2 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x9696e0e2 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x96b8ec4f relay_close +EXPORT_SYMBOL_GPL vmlinux 0x96cbcf31 pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96fc3a46 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x974f0c54 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x9750d04a __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x978498b5 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x978f24b1 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x97914da1 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x979adf91 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x97a23a96 tracepoint_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0x97a84310 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x97b13dad __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x97e983ed wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x97f4ef68 cpu_add_sysdev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98637f5e ps3_mmio_region_init +EXPORT_SYMBOL_GPL vmlinux 0x986de4a9 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x987f9b1e irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x9891a8fb input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x98a2c11c vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x98a97aa1 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x98ace3d9 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x98b49b5a fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x98cc564a regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x98ceef06 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x98dbb7a4 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x994c0ac9 cgroup_add_files +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99a780ac crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a39f9ed transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a6c79a2 blkiocg_lookup_group +EXPORT_SYMBOL_GPL vmlinux 0x9aabd1ac find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9abd8fbd led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac491ae file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x9ada15d7 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b3b737f register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x9b5e1589 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x9b806c81 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x9ba0501e unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9bd6e2b4 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9c1638d5 d_materialise_unique +EXPORT_SYMBOL_GPL vmlinux 0x9c1af9e8 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9c78c78b shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9c840d67 user_read +EXPORT_SYMBOL_GPL vmlinux 0x9c9a7536 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x9cb8037b xfrm_count_enc_supported +EXPORT_SYMBOL_GPL vmlinux 0x9cb99db5 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x9cf7730f ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9d2dea46 inet6_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0x9d58ed0a pci_sriov_migration +EXPORT_SYMBOL_GPL vmlinux 0x9d703b8e ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x9da8160b blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf5f6 edac_get_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0x9dffeb39 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9e0bb311 eeh_remove_bus_device +EXPORT_SYMBOL_GPL vmlinux 0x9e24325d input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x9e37f38a blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x9e4dda49 sysdev_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9e4f1cfb ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x9e532c5a register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x9e8709d4 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9e984153 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x9ea865cf blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x9ec36ac5 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x9ec88d3a usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x9f00278e hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x9f0486ec ps3_vuart_read_async +EXPORT_SYMBOL_GPL vmlinux 0x9f277cbc spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9f40a6d6 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x9f6ded61 probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x9fa640a9 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x9fcbd9f0 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fedb268 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x9ff9863d max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x9ffe3a2e disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xa033dbe0 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xa05651b1 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xa0631805 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xa066c452 pmac_i2c_adapter_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xa07b8a99 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa09d908c crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0ba5733 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa0c9eb15 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xa0d449d3 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa0e4635a md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xa10bfa29 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa12d4621 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa12d5367 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xa1492411 dw_spi_add_host +EXPORT_SYMBOL_GPL vmlinux 0xa14cff0c crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xa1a5af3c pstore_write +EXPORT_SYMBOL_GPL vmlinux 0xa1cc4d1a ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xa1dad261 blkio_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa1e73296 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xa20d2858 tpm_show_temp_deactivated +EXPORT_SYMBOL_GPL vmlinux 0xa20f25bc spu_get_profile_private_kref +EXPORT_SYMBOL_GPL vmlinux 0xa23ad02a wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa2914cf6 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xa2aa5e9c power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xa2ce97fd usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xa2d554e4 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0xa2e7ed2e sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xa325fa83 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xa347c2d2 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xa368bc02 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa377bace ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3a4b953 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa40122f1 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xa40a8590 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa42509a5 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xa42b2a71 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xa4307d40 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xa45d2cc1 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa49a4ff0 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xa4a42813 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xa50b488d debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xa53a6158 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xa563e360 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xa570a342 sysdev_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa5840d10 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xa5887e27 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xa59c3ff6 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5b28fb6 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa5e0a4c4 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa646e074 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xa6560728 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa6c3af90 pmac_i2c_get_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa6fb893e led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xa71b8a2d crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xa71d17af ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa7303ccf ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xa74124e8 spu_management_ops +EXPORT_SYMBOL_GPL vmlinux 0xa7b79753 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xa7f92105 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0xa844738e relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xa87156ca input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xa8790f0e bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xa888a908 __cpufreq_driver_getavg +EXPORT_SYMBOL_GPL vmlinux 0xa8b305dc edac_class +EXPORT_SYMBOL_GPL vmlinux 0xa8b96bae skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xa8f59416 gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xa9493141 tcp_reno_min_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xa960caab single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xa9899222 tpm_show_pubek +EXPORT_SYMBOL_GPL vmlinux 0xa98cdb36 ps3_get_firmware_version +EXPORT_SYMBOL_GPL vmlinux 0xa9b6f02c device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa9c530b8 unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9ca69d3 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xa9f3f261 net_ipv4_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0xaa706429 bdi_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xaa852c93 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa99527c md_stop +EXPORT_SYMBOL_GPL vmlinux 0xaae94815 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xaaeef851 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xaaf512c7 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xab123c5f device_rename +EXPORT_SYMBOL_GPL vmlinux 0xab14110a stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xab2b243d ps3_irq_plug_destroy +EXPORT_SYMBOL_GPL vmlinux 0xab48bf2f hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xab535ad7 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xab692f1d sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xab695112 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab6c0f84 pcibios_add_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0xab8b399e ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xab991372 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xabbd96ed sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xabdf6bd8 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0xabe65fba shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xabf34fcc dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xabfbc63f irq_find_host +EXPORT_SYMBOL_GPL vmlinux 0xac160e21 pci_pri_enabled +EXPORT_SYMBOL_GPL vmlinux 0xac21b42e of_node_to_nid +EXPORT_SYMBOL_GPL vmlinux 0xac27d25b hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xac735092 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xaca1bf97 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xacc23d93 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xacc2633c spu_switch_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xacc5478a pmf_do_irq +EXPORT_SYMBOL_GPL vmlinux 0xacd1b94e tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad02ee16 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xad07214d gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xad5f1b39 nf_net_ipv4_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0xada38534 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xadb0214f usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xade2dc9a ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xade560ae ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xaded43dc rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xadf015cb securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae0c87ee pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae573161 spu_add_sysdev_attr +EXPORT_SYMBOL_GPL vmlinux 0xae8268e9 sysfs_get +EXPORT_SYMBOL_GPL vmlinux 0xae8f3806 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xae97e3bf __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xaedb22c8 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xaedf2a66 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xaeea3073 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xaf06a71c pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xaf1940a2 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xaf624eaa trace_nowake_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xaf69699e xv_get_object_size +EXPORT_SYMBOL_GPL vmlinux 0xafa22199 inet_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0xaff020e3 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xb029f06a tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xb02bc73e pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xb0695fee tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb07edddd eeh_add_device_tree_early +EXPORT_SYMBOL_GPL vmlinux 0xb0ae5977 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c1eca5 pm_generic_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xb0eb07ef ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb10d55bc cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xb11b4eca crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1695e4a register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1d51a17 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xb2866a96 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xb2883f30 register_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0xb2e1afb4 crypto_rng_type +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb3034034 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xb31d9e7c mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb3642ab8 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xb39e9844 net_cls_subsys_id +EXPORT_SYMBOL_GPL vmlinux 0xb3b2ed49 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xb3eea622 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xb3f1e216 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb3f89739 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb413341f generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xb4169ed6 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb41917f6 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xb4368f0a ps3_sys_manager_register_ops +EXPORT_SYMBOL_GPL vmlinux 0xb4814993 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xb4d354cc crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xb4d70192 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53d192b rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb55b64e3 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a6e89b md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb649e2ff blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xb69aff4b transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xb6a119bd unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bc007a spu_sys_callback +EXPORT_SYMBOL_GPL vmlinux 0xb739e5fc regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xb781e8e1 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xb7a03b3c ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xb7aad3e4 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xb7ac82c8 spu_setup_kernel_slbs +EXPORT_SYMBOL_GPL vmlinux 0xb7ce4949 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb7e81007 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb813ce5a timecompare_transform +EXPORT_SYMBOL_GPL vmlinux 0xb84b1aae ps3_event_receive_port_setup +EXPORT_SYMBOL_GPL vmlinux 0xb85416c2 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xb870dada crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xb89bf6b4 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xb89fc5a2 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb8abd56b pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9204080 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xb95a035e dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9f0a3b9 regcache_write +EXPORT_SYMBOL_GPL vmlinux 0xba1431e2 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xba27b736 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xba644b08 hrtimer_start +EXPORT_SYMBOL_GPL vmlinux 0xba7b05e8 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xba919638 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xbad26090 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbad49a61 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbae34c27 scsi_nl_remove_transport +EXPORT_SYMBOL_GPL vmlinux 0xbaea3b7f ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb49aafe spu_64k_pages_available +EXPORT_SYMBOL_GPL vmlinux 0xbb51237c spu_invalidate_slbs +EXPORT_SYMBOL_GPL vmlinux 0xbb53fdf0 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xbb885753 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xbb9e761f smu_get_ofdev +EXPORT_SYMBOL_GPL vmlinux 0xbbac5bec da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbc02a300 sysdev_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xbc0e8e9a tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbc0f7410 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xbc17a0a0 blkiocg_update_timeslice_used +EXPORT_SYMBOL_GPL vmlinux 0xbc456407 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xbc50749d usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xbc6f931b workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xbc8866ee usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xbcb7b90e platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xbcc6088a pci_renumber_slot +EXPORT_SYMBOL_GPL vmlinux 0xbcc65c27 pmac_i2c_find_bus +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbd2bbcb1 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd2d1b95 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd5fc4e2 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xbd93c7eb crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xbdc6685b ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbe036af3 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe31cd3d ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xbe544760 ftrace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xbe5e05c9 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xbe7358d6 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xbea8b93a pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xbec15b5a irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xbed5cc7f ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xbedff887 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbeee3c30 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf2629dd rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xbf615bc3 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc00534ad sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xc03ab504 setup_deferrable_timer_on_stack_key +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc06c1ef8 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xc07993a2 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc0825a72 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900eca tcp_is_cwnd_limited +EXPORT_SYMBOL_GPL vmlinux 0xc0930319 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc098192d pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xc09d4adc inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xc0bf6ead timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xc10f2b8e cgroup_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc11bd00f tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc154f8f2 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xc1713d91 spu_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xc173a233 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1812c99 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xc195b0d7 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xc1c424bc rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc1fa4dfb unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc2100fef set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xc2107ded xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc23973a1 spu_add_sysdev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xc242c44b __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xc274bc7c usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc28f8020 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xc2b2589b wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc2ba4d23 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xc2f88eaf part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xc306da7d watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc32dc8d2 pci_configure_slot +EXPORT_SYMBOL_GPL vmlinux 0xc330efe0 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3384343 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xc33baae5 task_current_syscall +EXPORT_SYMBOL_GPL vmlinux 0xc34efe27 snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37c5661 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc383949e css_depth +EXPORT_SYMBOL_GPL vmlinux 0xc39361ed device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc399468f scsi_nl_remove_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3a374ef max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xc3d8fa49 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xc3f2e3ff pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xc40ee765 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc4150c7a sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43e6933 platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xc442a446 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xc443563e wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xc4503cd7 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4c64dc2 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc4dd278d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc53650f3 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc556bc26 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc56b8dfb inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xc5713af8 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xc5912b92 ps3_open_hv_device +EXPORT_SYMBOL_GPL vmlinux 0xc592ba90 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xc5db93ce pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xc602f34c pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xc60f75ec __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc61f18c2 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xc63c16df hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6476386 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66c2311 ps3_vuart_irq_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc677b24c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xc696a6f6 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xc6a6b541 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xc6b82bf8 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xc71a45ea blkiocg_del_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc74e2f1b xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc80ad018 fb_ddc_read +EXPORT_SYMBOL_GPL vmlinux 0xc81cc5dd crypto_aead_type +EXPORT_SYMBOL_GPL vmlinux 0xc84dc55b ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xc869451a usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc887d395 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc9108143 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc91f6565 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc929118f account_system_vtime +EXPORT_SYMBOL_GPL vmlinux 0xc949cbfd dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xc9545062 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc97c2898 sysdev_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc99d7af7 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xc9a5ce84 ps3_system_bus_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc9b6d672 tracepoint_iter_stop +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ef914f kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc9fa9489 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc9fe6ee4 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xca342d1c get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0xca3eaa23 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xca7d9c56 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xca85d8cf tracepoint_probe_update_all +EXPORT_SYMBOL_GPL vmlinux 0xcaaff891 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xcab60372 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xcade26ac sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xcae14717 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xcb028ddc tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcb4535ee queue_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xcb5429ec rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xcbc2c8dd atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbd13f2e bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbee8bd7 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xcbfac262 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xcc092fcc blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xcc1aed08 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xcc1f1c3d inet_twdr_hangman +EXPORT_SYMBOL_GPL vmlinux 0xcc3a1e00 get_cpu_sysdev +EXPORT_SYMBOL_GPL vmlinux 0xcca0849f raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd0afb4 blkiocg_update_io_remove_stats +EXPORT_SYMBOL_GPL vmlinux 0xcce243b6 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xcd02cc58 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xcd141990 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xcd84631a get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xcd8f08c5 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xcd9991a9 usb_usual_set_present +EXPORT_SYMBOL_GPL vmlinux 0xcd9b331e ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xcdb856e3 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xcdc40627 input_class +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdf13db8 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xce0a1b43 scsi_nl_add_transport +EXPORT_SYMBOL_GPL vmlinux 0xce253e91 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xce60429b unregister_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xcedab2a6 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcedabbfc ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xceecbed0 pmac_i2c_get_bus_node +EXPORT_SYMBOL_GPL vmlinux 0xcf14ec2c wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xcf6d5562 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xcf73f5df class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcf82cf25 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcc83ad register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcfdc6f1d sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0422db7 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xd045f5c9 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xd05dc2a3 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd068e954 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xd0ab4383 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd0b69872 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0f2894f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xd1382d7f crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xd14b52aa platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1b2db37 tracepoint_probe_register_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xd1db4bd0 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xd1f7c03d ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd221aa69 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xd25c6baf tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd270fd37 blkiocg_update_io_merged_stats +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd28c6780 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xd299c87f securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xd29a7fa2 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xd2a8caf0 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd2ba333b usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xd3119a1b platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd312f918 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xd32fe193 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd34487f2 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xd34b2aca __put_net +EXPORT_SYMBOL_GPL vmlinux 0xd3795a42 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd37e13b4 regulator_set_optimum_mode +EXPORT_SYMBOL_GPL vmlinux 0xd3d868d0 pmf_unregister_irq_client +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40c3b1d rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd471b6d6 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xd48c9f93 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xd499940a replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cb9f64 cpu_remove_sysdev_attr +EXPORT_SYMBOL_GPL vmlinux 0xd5356ac6 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd561f93e stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xd56f9f78 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xd582227a leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd59668e6 unlock_flocks +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c06122 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xd5cbfae4 md_trim_bio +EXPORT_SYMBOL_GPL vmlinux 0xd5d852c2 mddev_check_plugged +EXPORT_SYMBOL_GPL vmlinux 0xd5df1c5e ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xd6348f83 blkio_alloc_blkg_stats +EXPORT_SYMBOL_GPL vmlinux 0xd6687cea wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd66a046f led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd67f08b7 cpu_remove_sysdev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xd68ab310 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xd6ae4672 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xd6d393bc usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xd6dff71c bus_register +EXPORT_SYMBOL_GPL vmlinux 0xd6e4e99c pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd6fb3bf3 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd70dc09a sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xd735929f default_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xd7389d04 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd75045af pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd771fb45 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7896efd dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd79d8509 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd7b7705d tpm_dev_vendor_release +EXPORT_SYMBOL_GPL vmlinux 0xd7c3dd83 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xd7c6fc10 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd7ca94f1 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8263870 mmu_slb_size +EXPORT_SYMBOL_GPL vmlinux 0xd826bf13 sysdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd839bf98 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0xd83a055f sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xd83ed27c class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd8437a92 register_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd8498f4d ps3av_mode_cs_info +EXPORT_SYMBOL_GPL vmlinux 0xd84a759f skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xd8525ea7 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xd85ac634 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87f27ab trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xd8b2cbe3 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xd8ffc0f3 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xd9042fa8 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xd9265777 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd93e76a6 kbd_table +EXPORT_SYMBOL_GPL vmlinux 0xd9464e45 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xd9470f85 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xd985f7b3 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xd99665b9 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd9e16aeb scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xd9ec87d2 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f371f2 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xda1be8e1 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xda3a7ca9 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xdaaadcf1 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xdab9321c netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdafb3195 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xdb04cacc tracepoint_probe_unregister_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xdb0ac13b ps3_compare_firmware_version +EXPORT_SYMBOL_GPL vmlinux 0xdb13a128 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xdb1a4681 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xdb274e52 monotonic_to_bootbased +EXPORT_SYMBOL_GPL vmlinux 0xdb29080d fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xdb65f97b ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xdb7cbcf1 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbf8bf3e crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xdc24ed08 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xdc6c3af9 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xdc793bbf raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xdc794a89 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdcace591 inet_csk_reqsk_queue_prune +EXPORT_SYMBOL_GPL vmlinux 0xdcca45d2 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdce2dd7a rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xdce851cd sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xdcea96ba pci_pri_status +EXPORT_SYMBOL_GPL vmlinux 0xdd043eea ps3av_get_auto_mode +EXPORT_SYMBOL_GPL vmlinux 0xdd0d40b5 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xdd1ff833 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd55c12c scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xddbbaa25 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdde99ae6 spu_associate_mm +EXPORT_SYMBOL_GPL vmlinux 0xddf7a02d __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xde315bde __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde417b81 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xdebf8470 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xdeea6a2a ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xdefef8cc inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xdf43dae7 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xdf8af406 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xdf8aff2e rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdf9fec6c ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xdfd80f3f relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xdff05226 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe011f817 ps3flash_bounce_buffer +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe05287e1 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xe057c8bf disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe0762d94 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe07911b6 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09363b6 register_spu_syscalls +EXPORT_SYMBOL_GPL vmlinux 0xe09b134d ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xe09de8cc class_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe0ce9a36 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe0d1f620 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xe10002d3 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xe19fc092 ps3fb_videomemory +EXPORT_SYMBOL_GPL vmlinux 0xe1e9bd90 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xe20c817b usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xe2694742 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xe2dd67e5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe2f0c200 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30d1a11 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xe33d2d1c __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xe370bc8d srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xe37191ca cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xe37ab4df ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xe384a102 usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xe3e904a4 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe3fc14b0 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xe4000468 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xe4085001 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4329ad6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe4dd784e regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe4ec5830 regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xe4f638ea wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xe5043354 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe5063390 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xe5181bff blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xe557f2fa stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xe55a0aa0 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xe5659d2e device_create +EXPORT_SYMBOL_GPL vmlinux 0xe56e0ad5 pmf_call_function +EXPORT_SYMBOL_GPL vmlinux 0xe57ea5ed simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xe57fadbd pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5b422d4 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe5da79c1 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5f380af __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe63c709b __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe6488b47 cpufreq_notify_transition +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel +EXPORT_SYMBOL_GPL vmlinux 0xe6bf7917 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xe6ddbe59 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe709cb59 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xe724ff7b register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe73e93e8 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xe74014c4 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xe788b878 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe78edbfb spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xe7a24bb9 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe7a5f858 driver_add_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe7c5d0d7 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe7ca611d put_device +EXPORT_SYMBOL_GPL vmlinux 0xe7dc5803 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xe7deae74 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe7e0cd9b crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe856dceb bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xe8578c71 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xe857a591 put_driver +EXPORT_SYMBOL_GPL vmlinux 0xe85f482a sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe87dfbe8 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe882dd74 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8c18dce ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe8c386bf tpm_remove_hardware +EXPORT_SYMBOL_GPL vmlinux 0xe8d14887 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xe8e237b7 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xe90f4ad2 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe924e0ba fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9587909 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0xe98f6a90 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe9ca9b13 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xe9e3676e usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xe9f71336 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe9fddf32 sysdev_class_create_file +EXPORT_SYMBOL_GPL vmlinux 0xea04ea3e pmac_i2c_get_dev_addr +EXPORT_SYMBOL_GPL vmlinux 0xea065e01 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea2c69e4 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea5f3414 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xeac2e46d debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xeac4168b bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xead2023b ps3_gpu_mutex +EXPORT_SYMBOL_GPL vmlinux 0xeae74760 scsi_nl_send_transport_msg +EXPORT_SYMBOL_GPL vmlinux 0xeae8099c ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xeb3ad7e7 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xeb45d6c5 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xeb4ddb17 pmf_get_function +EXPORT_SYMBOL_GPL vmlinux 0xeb52c06e show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xeb7c534c regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb93e081 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xebdefc05 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xebfec4d4 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec295a08 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xec38d5b9 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xec4e0563 cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xecb8e52f cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xed1a2328 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xed40bf21 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xed8b87f8 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xed8d1ce7 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xedca441b ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xedcb0d96 inode_dio_done +EXPORT_SYMBOL_GPL vmlinux 0xee5920a6 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xeef65080 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xef1124ac tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xef31063c bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xef4ef465 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xef5b725c __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xefc0aa92 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xefdd5a63 ktime_get_ts +EXPORT_SYMBOL_GPL vmlinux 0xf032be13 nf_unregister_queue_handlers +EXPORT_SYMBOL_GPL vmlinux 0xf0483ff8 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xf058c7b1 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xf0644f19 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xf098dd15 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xf09d8e0f skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xf09f0b0e cgroup_lock_live_group +EXPORT_SYMBOL_GPL vmlinux 0xf0bfec99 pci_msi_off +EXPORT_SYMBOL_GPL vmlinux 0xf0c34a70 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf1256c83 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xf12fcfae rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf14d1772 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf161c8d7 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf2100847 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0xf265dbcb md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0xf26f6657 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf2b29afc sysdev_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf2bfb62e get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xf2cf8810 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf34806ec hrtimer_get_res +EXPORT_SYMBOL_GPL vmlinux 0xf3728d1d tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b93a97 cgroup_lock_is_held +EXPORT_SYMBOL_GPL vmlinux 0xf3c392de class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf3dd036d regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xf3ddd652 sysdev_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf3e792e7 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xf3f04a9a blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xf40e594a pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xf411d190 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf4222936 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xf468bbb3 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xf469c705 ps3_io_irq_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf46a3acf scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xf49241e9 devres_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4a69588 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xf4ba5a5c rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xf4caa4db pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf4d2f914 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5106d65 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf5228086 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xf5299807 ref_module +EXPORT_SYMBOL_GPL vmlinux 0xf54991ac ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf579037c devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xf57a4338 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xf58ffda1 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xf59bb0fd i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a979b1 spu_set_profile_private_kref +EXPORT_SYMBOL_GPL vmlinux 0xf5cca6c3 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xf5ce981b sysdev_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf5de4697 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xf5f50f09 ps3_close_hv_device +EXPORT_SYMBOL_GPL vmlinux 0xf6464980 ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf6850b68 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xf68b0ece pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xf6cf6516 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xf6e04730 event_storage +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf725a405 ps3_vuart_read +EXPORT_SYMBOL_GPL vmlinux 0xf7506488 md_run +EXPORT_SYMBOL_GPL vmlinux 0xf77886dd regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xf778e52d blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xf78c8a33 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf791b5ab sysdev_register +EXPORT_SYMBOL_GPL vmlinux 0xf79bd9d4 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf7d27843 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xf7d623d8 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xf7e0ac46 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xf82d1fe0 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xf8364e73 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xf859b916 tpm_show_pcrs +EXPORT_SYMBOL_GPL vmlinux 0xf8706bb0 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf885994e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xf8d52711 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf906bb47 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf92f1b87 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf93628ee ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xf9379834 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf937b245 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xf9680a45 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b2cb83 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9f77171 sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0xf9fc7978 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfa012fe7 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xfa10b275 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa24daa0 sysfs_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xfa74ad99 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfa7c8025 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfa9b6d27 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfa9c9af0 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xfaa38d11 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xfaaf05f7 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfabeeef4 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xfac6228b crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xfacd45a5 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xfb0b9b25 sysdev_show_int +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type +EXPORT_SYMBOL_GPL vmlinux 0xfb5bdc4a ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb841d9b ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xfb8da0b9 mmput +EXPORT_SYMBOL_GPL vmlinux 0xfbf9be5d register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfbfcdc2b ps3_sys_manager_get_wol +EXPORT_SYMBOL_GPL vmlinux 0xfc06a1bc device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xfc141581 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xfc47bd23 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xfc8f280d cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xfcc28af2 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xfcd7bc0b ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd1f2053 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xfd273232 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xfd7f8c31 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xfda065ef tpm_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xfdb36846 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xfddc0467 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xfde0b92c crypto_larval_error +EXPORT_SYMBOL_GPL vmlinux 0xfdf60f3e mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xfdff55ed blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xfe22bb91 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xfe35d232 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xfe45845a rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xfe756168 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xfe8f27ee pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea7225c crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xfead06ce tpm_register_hardware +EXPORT_SYMBOL_GPL vmlinux 0xfed06799 tpm_show_caps +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee070ab event_storage_mutex +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0xff0dacff ps3av_video_mute +EXPORT_SYMBOL_GPL vmlinux 0xff0ee419 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xff3a40c9 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xff5369cc dma_mmap_coherent +EXPORT_SYMBOL_GPL vmlinux 0xff560346 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff851919 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff9439d8 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xffa255fc i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xffa4c4ec cgroup_lock +EXPORT_SYMBOL_GPL vmlinux 0xffb91d54 inet_csk_bind_conflict --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/powerpc/powerpc64-smp.compiler +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/powerpc/powerpc64-smp.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/powerpc/powerpc-smp.modules +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/powerpc/powerpc-smp.modules @@ -0,0 +1,3042 @@ +3c359 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8250 +8250_dw +8250_pci +8390 +88pm860x_bl +88pm860x_onkey +88pm860x-ts +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a3d +a8293 +aacraid +aat2870_bl +aat2870-regulator +ab3100 +ab3100-otp +ab8500-ponkey +ab8500-usb +abyss +ac97_bus +acard-ahci +acecad +acenic +act200l-sir +act_csum +act_gact +act_ipt +actisys-sir +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5398 +ad5446 +ad5504 +ad5624r_spi +ad5686 +ad5791 +ad5930 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7280a +ad7291 +ad7298 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad799x +ad9832 +ad9834 +ad9850 +ad9852 +ad9910 +ad9951 +adcxx +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adfs +adi +adis16060 +adis16080 +adis16130 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm8211 +adm9240 +adp5520_bl +adp5520-keys +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7343 +advansys +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af_802154 +af9013 +af_alg +affs +af_key +af-rxrpc +ah4 +ah6 +aha152x_cs +ahci_platform +aic79xx +aic7xxx +aic94xx +aiptek +aircable +airo +airo_cs +airport +ak881x +ak8975 +alauda +algif_hash +algif_skcipher +ali-ircc +alim7101_wdt +altera-ci +altera_jtaguart +altera_ps2 +altera-stapl +altera_uart +ambassador +amc6821 +amd5536udc +amd8111e +ams +ams369fg06 +analog +ansi_cprng +ans-lcd +anubis +aoe +apds9802als +apds990x +apm_emu +apm-emulation +apm_power +apm-power +appledisplay +appletalk +appletouch +applicom +ar7part +arc4 +arcmsr +arcnet +arc-rawmode +arc-rimi +ark3116 +arkfb +arptable_filter +arp_tables +arpt_mangle +as5011 +asc7621 +asix +asus_oled +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +ata_generic +ata_piix +atbm8830 +aten +ath +ath3k +ath5k +ath6kl +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp870u +atxp1 +atyfb +au0828 +au8522 +aufs +authenc +authencesn +auth_rpcgss +autofs4 +avma1_cs +avm_cs +avmfritz +ax25 +axnet_cs +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bch +bcm203x +bcm3510 +bcm5974 +bcma +bcm_wimax +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bma150 +bmac +bmp085 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bonding +bpa10x +bpck +bpck6 +bpqether +bq20z75 +bq24022 +bq27x00_battery +br2684 +brcmfmac +brcmsmac +brcmutil +bridge +briq_panel +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btcx-risc +btmrvl +btmrvl_sdio +btrfs +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +BusLogic +bw-qcam +c4 +c67x00 +cachefiles +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +camellia +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5 +cast6 +catc +cb710 +cb710-mmc +c_can +c_can_platform +cciss +ccm +cdc-acm +cdc_eem +cdc_ether +cdc_ncm +cdc-phonet +cdc_subset +cdc-wdm +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +chipreg +chnl_net +ci13xxx_pci +cifs +cirrusfb +clearpad_tm1217 +clip +cls_basic +cls_cgroup +cls_flow +cls_fw +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmtp +cnic +cobra +coda +com20020 +com20020_cs +com20020-pci +com90io +com90xx +comm +configfs +cordic +core +cp210x +cpia2 +cpqarray +cpufreq_stats +cpu-notifier-error-inject +c-qcam +cramfs +crc7 +crc8 +crc-ccitt +crc-itu-t +cryptd +cryptoloop +crypto_null +crypto_user +crystalhd +cs5345 +cs53l32a +ctr +cts +cuse +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx8800 +cx8802 +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx88xx +cxacru +cxd2099 +cxd2820r +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxt1e1 +cy8ctmg110_ts +cyber2000fb +cyberjack +cyclades +cyclomx +cycx_drv +cypress_cy7c63 +cypress_m8 +cytherm +da9030_battery +da9034-ts +da903x +da903x_bl +DAC960 +db9 +dc395x +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +ddbridge +de2104x +de4x5 +de600 +de620 +decnet +deflate +defxx +denali +des_generic +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +display +divacapi +divadidd +diva_idi +diva_mnt +divas +dl2k +dlci +dlm +dm1105 +dm9601 +dm-bufio +dm-crypt +dmfe +dm-log +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-thin-pool +dmx3191d +dm-zero +dnet +dn_rtmsg +doc2000 +doc2001 +doc2001plus +docecc +docg3 +docprobe +donauboe +dpt_i2o +drbd +drm +drm_kms_helper +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt3155v4l +dtl1_cs +dummy +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-it913x +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dwc3 +dwc3-omap +dwc3-pci +dynapro +e100 +e1000 +e1000e +earth-pt1 +easycap +eata +ebt_802_3 +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_ulog +ebt_vlan +ec100 +echo +econet +edac_core +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +ehv_bytechan +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +emc1403 +emc2103 +emc6w201 +em_cmp +emi26 +emi62 +em_meta +em_nbyte +empeg +ems_pci +ems_pcmcia +ems_usb +em_text +emu10k1-gp +em_u32 +enc28j60 +enclosure +eni +enic +epat +epia +epic100 +eql +esd_usb2 +esi-sir +esp4 +esp6 +et131x +et61x251 +ethoc +evbug +exofs +ext2 +f75375s +fakephp +farsync +fat +faulty +fb_sys_fops +fcoe +fcrypt +fdomain +fdomain_cs +fealnx +ff-memless +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +fit2 +fit3 +fixed +floppy +fm801-gp +fm_drv +fmvj18x_cs +forcedeth +fore_200e +freevxfs +friq +frpw +fsa9480 +fscache +fsl_elbc_nand +ft1000 +ft1000_pcmcia +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +funsoft +fusb300_udc +g450_pll +g760a +g_acm_ms +gadgetfs +gamecon +gameport +garmin_gps +garp +g_audio +g_cdc +gcm +g_dbgp +gdth +generic +generic_bl +gen_probe +g_ether +gf128mul +gf2k +g_ffs +gfs2 +ghash-generic +g_hid +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +g_mass_storage +g_midi +g_ncm +g_nokia +go7007 +go7007-usb +goku_udc +gpio-74x164 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-charger +gpio-fan +gpio-generic +gpio-i2cmux +gpio-it8761e +gpio-janz-ttl +gpio_keys +gpio_keys_polled +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio_mouse +gpio-pca953x +gpio-pcf857x +gpio-rdc321x +gpio-regulator +gpio-tps65912 +gpio-twl4030 +gpio_vbus +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +g_printer +gre +grip +grip_mp +g_serial +gspca_benq +gspca_conex +gspca_cpia1 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +g_webcam +gxt4500 +g_zero +hamachi +hampshire +hanwang +hci_uart +hci_vhci +hdlc +hdlc_cisco +hdlcdrv +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdpvr +he +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfcmulti +hfcpci +hfcsusb +hfc_usb +hfs +hfsplus +hid +hid-a4tech +hid-apple +hid-axff +hid-belkin +hid-cherry +hid-chicony +hid-cypress +hid-dr +hid-elecom +hid-emsff +hid-ezkey +hid-gaff +hid-gyration +hid-holtekff +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-logitech +hid-logitech-dj +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hidp +hid-petalynx +hid-picolcd +hid-pl +hid-primax +hid-prodikeys +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-kovaplus +hid-roccat-pyra +hid-samsung +hid-sjoy +hid-sony +hid-speedlink +hid-sunplus +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-wacom +hid-waltop +hid-wiimote +hid-zpff +hid-zydacron +hifn_795x +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hmc5843 +hmc6352 +hopper +horizon +hostap +hostap_cs +hostap_pci +hostap_plx +hp100 +hp4x +hpfs +hpilo +hpsa +hptiop +hso +htc-pasic3 +hwa-hc +hwa-rc +hwmon-vid +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-sdio +i2400m-usb +i2c-algo-pca +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd8111 +i2c-designware-pci +i2c-dev +i2c-diolan-u2c +i2c-eg20t +i2c-gpio +i2c-hydra +i2c-i801 +i2c-intel-mid +i2c-isch +i2c-matroxfb +i2c-mpc +i2c-mux +i2c-nforce2 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-xiic +i2o_block +i2o_bus +i2o_config +i2o_core +i2o_proc +i2o_scsi +i5k_amb +i82092 +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_mad +ibmaem +ibmpex +ib_mthca +ibmtr_cs +ib_sa +ib_srp +ib_ucm +ib_umad +ib_uverbs +ics932s401 +idmouse +idt77252 +ieee802154 +ifb +iforce +igb +igbvf +iio_dummy +iio-trig-gpio +iio-trig-periodic-rtc +iio-trig-sysfs +ili9320 +imm +imon +imx074 +industrialio +inet_diag +inexio +inftl +initio +input-polldev +int51x1 +intel_vr_nor +interact +ioc4 +io_edgeport +io_ti +iowarrior +ip6_queue +ip6table_filter +ip6table_mangle +ip6table_raw +ip6_tables +ip6table_security +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_LOG +ip6t_mh +ip6t_REJECT +ip6t_rt +ip6_tunnel +ipaq +ipcomp +ipcomp6 +ipddp +ipg +ip_gre +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_watchdog +ip_queue +ipr +ips +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netport +ip_set_list_set +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +ip_tables +iptable_security +ipt_ah +ipt_CLUSTERIP +ipt_ecn +ipt_ECN +ipt_LOG +ipt_MASQUERADE +ipt_NETMAP +ipt_REDIRECT +ipt_REJECT +ipt_ULOG +ip_vs +ip_vs_dh +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ircomm +ircomm-tty +irda +irda-usb +ir-jvc-decoder +ir-kbd-i2c +irlan +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +irnet +ir-rc5-decoder +ir-rc5-sz-decoder +ir-rc6-decoder +ir-sony-decoder +irtty-sir +ir-usb +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it913x-fe +itd1000 +iuu_phoenix +ivtv +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iwl3945 +iwl4965 +iwl-legacy +iwlwifi +iwmc3200top +iwmc3200wifi +iw_nes +ix2505v +ixgb +ixgbe +ixgbevf +ixj +ixj_pcmcia +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jsm +kafs +kalmia +kaweth +kbic +kbtab +kernelcapi +keucr +keyspan +keyspan_pda +keyspan_remote +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_ppp +l4f00242t03 +l64781 +lanai +langwell_udc +lanstreamer +lapb +lapbether +latch-addr-flash +lcd +ld9040 +ldusb +lec +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-da903x +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lt3593 +leds-mc13783 +leds-pca9532 +leds-pca955x +leds-regulator +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-timer +legousbtower +lgdt3305 +lgdt330x +lgs8gxx +lg-vl600 +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libceph +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +libsrp +lightning +line6usb +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_igorplugusb +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_ttusbir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +llc2 +ll_temac +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95241 +lm95245 +lmc +lms283gf05 +lnbp21 +lnbp22 +lockd +lp +lp3971 +lp3972 +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc4151 +ltc4215 +ltc4245 +ltc4261 +ltv350qv +lzo +m25p80 +m52790 +m66592-udc +ma600-sir +mac53c94 +mac80211 +mac80211_hwsim +mace +mac_hid +macvlan +macvtap +magellan +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +matrix_keypad +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_DAC1064 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +matroxfb_Ti3026 +matrox_w1 +max1111 +max11801_ts +max1363 +max1586 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max2165 +max3100 +max3107 +max6639 +max6642 +max6650 +max6875 +max7359_keypad +max8649 +max8660 +max8903_charger +max8925_bl +max8925_onkey +max8925_power +max8925-regulator +max8952 +max8997 +max8997_charger +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-regulator-core +mc44s803 +mceusb +mcp2120-sir +mcp251x +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md4 +mdc800 +mdio +mdio-bitbang +mdio-gpio +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mem2mem_testdev +memstick +mesh +metronomefb +mfd +mga +michael_mic +micrel +microtek +minix +mip6 +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mma8450 +mmc_block +mos7720 +mos7840 +moto_modem +moxa +mpoa +mpr121_touchkey +mpt2sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrst_max3110 +msdos +msp3400 +mspro_block +mt2060 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtdblock +mtdblock_ro +mtdchar +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtouch +multipath +mv643xx_eth +mvsas +mvumi +mwifiex +mwifiex_pcie +mwifiex_sdio +mwl8k +mxb +mxl111sf-demod +mxl111sf-tuner +mxl5005s +mxl5007t +mxser +myri10ge +nand +nand_bch +nand_ecc +nand_ids +nandsim +natsemi +navman +nbd +nci +ncpfs +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netrom +netxen_nic +newtonkbd +nfc +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nfcwilink +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nfnetlink +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfsd +nftl +nf_tproxy_core +ngene +n_hdlc +nicstar +nilfs2 +niu +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp437 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nop-usb-xceiv +nosy +nouveau +nozomi +n_r3964 +ns558 +ns83820 +nsc-ircc +nsp32 +nsp_cs +ntc_thermistor +ntfs +n_tracerouter +n_tracesink +nvidiafb +nxt200x +nxt6000 +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stackglue +ocfs2_stack_o2cb +ocfs2_stack_user +ofpart +of_serial +old_belkin-sir +olympic +omfs +omninet +on20 +on26 +onenand +onenand_sim +opencores-kbd +oprofile +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +output +ov2640 +ov5642 +ov6650 +ov7670 +ov772x +ov9640 +ov9740 +overlayfs +oxu210hp-hcd +p54common +p54pci +p54spi +p54usb +p8023 +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_ali +pata_amd +pata_arasan_cf +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cs5520 +pata_cs5530 +pata_cs5536 +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sc1200 +pata_sch +pata_serverworks +pata_sil680 +pata_sis +pata_sl82c105 +pata_triflex +pata_via +pc300too +pca9541 +pca954x +pcbc +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_can +pch_gbe +pch_phub +pch_uart +pch_udc +pci +pci200syn +pcips2 +pci-stub +pcmcia +pcmcia_core +pcmciamtd +pcmcia_rsrc +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +pdc_adma +peak_pci +pegasus +penmount +pf +pg +phantom +phison +phonedev +phonet +phram +physmap +physmap_of +pktcdvd +pktgen +pl2303 +platform_lcd +plat_nand +plat-ram +plip +plusb +pluto2 +plx_pci +pm2fb +pm3fb +pm8001 +pmc551 +pmcraid +pmu_battery +pn533 +pn544 +pn_pep +pohmelfs +poseidon +powermate +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +pppoatm +pppoe +pppox +ppp_synctty +pps_core +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +prism54 +ps2mult +psmouse +pt +pti +pvrusb2 +pwc +qcaux +qcserial +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qnx4 +qt1010 +qt1070 +quatech_usb2 +quota_tree +quota_v1 +quota_v2 +r128 +r592 +r6040 +r8169 +r8187se +r8192e_pci +r8192u_usb +r852 +r8712u +r8a66597-hcd +r8a66597-udc +rack-meter +radeon +radio-i2c-si470x +radio-maxiradio +radio-mr800 +radio-si4713 +radio-tea5764 +radio-timb +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-em-terratec +rc-encore-enltv +rc-encore-enltv2 +rc-encore-enltv-fm53 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-kaiomy +rc-kworld-315u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-snapstream-firefly +rc-streamzap +rc-tbs-nec +rc-technisat-usb2 +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-trekstor +rc-tt-1500 +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +redboot +redrat3 +reed_solomon +reiserfs +renesas_usbhs +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-regulator +ring_sw +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rndis_host +rndis_wlan +rocket +romfs +rose +rotary_encoder +rpcsec_gss_krb5 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800pci +rt2800usb +rt2x00lib +rt2x00pci +rt2x00usb +rt61pci +rt73usb +rtc-88pm860x +rtc-ab3100 +rtc-ab8500 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc_cmos_setup +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1742 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-generic +rtc-isl12022 +rtc-isl1208 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8925 +rtc-max8998 +rtc-mc13xxx +rtc-msm6242 +rtc-pcf2123 +rtc-pcf50633 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-stk17ta8 +rtc-twl +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtl8150 +rtl8180 +rtl8187 +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192se +rtlwifi +rts5139 +rxkad +s1d13xxxfb +s2250 +s2250-loader +s2255drv +s2io +s3fb +s5h1409 +s5h1411 +s5h1420 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7191 +saa7706h +safe_serial +salsa20_generic +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sbe-2t3e3 +sc92031 +sca3000 +sch_atm +sch_cbq +sch_choke +sch_drr +sch_dsmark +sch_gred +sch_hfsc +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_tgt +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +scsi_wait_scan +sctp +sctp_probe +sdhci +sdhci-of-esdhc +sdhci-of-hlwd +sdhci-pci +sdhci-pltfm +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +seeq8005 +sep_driver +seqiv +ser_gigaset +serial_cs +serio_raw +sermouse +serpent +serport +serqt_usb2 +ses +sfc +sha512_generic +shpchp +sht15 +sht21 +si21xx +si4713-i2c +sidewinder +siemens_mpi +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sisfb +sisusbvga +sit +sja1000 +sja1000_of_platform +sja1000_platform +skfp +skge +sky2 +sl811_cs +sl811-hcd +slcan +slip +slram +sm501 +sm501fb +sm7xx +smc91c92_cs +sm_common +smm665 +smsc47m192 +smsc75xx +smsc9420 +smsc95xx +smsc-ircc2 +smscufx +smsdvb +smsmdtv +smssdio +smsusb +sn9c102 +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-aoa +snd-aoa-codec-onyx +snd-aoa-codec-tas +snd-aoa-codec-toonie +snd-aoa-fabric-layout +snd-aoa-i2sbus +snd-aoa-soundbus +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs5530 +snd-cs5535audio +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-lib +snd-firewire-speakers +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxygen +snd-oxygen-lib +snd-page-alloc +snd-pcm +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-powermac +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb16-dsp +snd-sb-common +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-88pm860x +snd-soc-ad1836 +snd-soc-ad193x +snd-soc-ad73311 +snd-soc-adau1373 +snd-soc-adav80x +snd-soc-ads117x +snd-soc-ak4104 +snd-soc-ak4535 +snd-soc-ak4641 +snd-soc-ak4642 +snd-soc-ak4671 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs42l51 +snd-soc-cx20442 +snd-soc-da7210 +snd-soc-dfbmcs320 +snd-soc-jz4740-codec +snd-soc-l3 +snd-soc-lm4857 +snd-soc-max98088 +snd-soc-max98095 +snd-soc-max9850 +snd-soc-max9877 +snd-soc-pcm3008 +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-spdif +snd-soc-ssm2602 +snd-soc-sta32x +snd-soc-tlv320aic23 +snd-soc-tlv320aic26 +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic3x +snd-soc-tlv320dac33 +snd-soc-tpa6130a2 +snd-soc-twl4030 +snd-soc-twl6040 +snd-soc-uda134x +snd-soc-uda1380 +snd-soc-wl1273 +snd-soc-wm1250-ev1 +snd-soc-wm2000 +snd-soc-wm5100 +snd-soc-wm8350 +snd-soc-wm8400 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8727 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8900 +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8940 +snd-soc-wm8955 +snd-soc-wm8960 +snd-soc-wm8961 +snd-soc-wm8962 +snd-soc-wm8971 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8983 +snd-soc-wm8985 +snd-soc-wm8988 +snd-soc-wm8990 +snd-soc-wm8991 +snd-soc-wm8993 +snd-soc-wm8994 +snd-soc-wm8995 +snd-soc-wm8996 +snd-soc-wm9081 +snd-soc-wm9090 +snd-soc-wm-hubs +snd-sonicvibes +snd-tea575x-tuner +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usbmidi-lib +snd-usb-usx2y +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx222 +snd-vx-lib +snd-vxpocket +snd-ymfpci +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solos-pci +soundcore +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spidev +spi-dw-midpci +spi-gpio +spi-lm70llp +spi-oc-tiny +spi-tle62x0 +spi-topcliff-pch +squashfs +sr030pc30 +ssb +ssfdc +sst25l +ssu100 +st +st1232 +starfire +stb0899 +stb6000 +stb6100 +st_drv +ste10Xp +stex +stinger +stir4200 +stkwebcam +stmmac +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +svcrdma +svgalib +swim3 +sx8 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +tc3589x-keypad +tca6416-keypad +tcm825x +tcm_fc +tcm_loop +tcp_bic +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tdfx +tdo24m +tea +tea5761 +tea5767 +tea6415c +tea6420 +tef6862 +tehuti +tekram-sir +teles_cs +test-kstrtox +test_power +tg3 +tgr192 +therm_windtunnel +thmc50 +ths7303 +ti_dac7512 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timb_dma +timberdale +timblogiw +timbuart +timeriomem-rng +tipc +ti_usb_3410_5052 +tlan +tlv320aic23b +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmiofb +tmp102 +tmp401 +tmp421 +tms380tr +tmscsim +tmspci +toim3232-sir +touchit213 +touchright +touchwin +tpm_atmel +tpm_nsc +tps6105x +tps6105x-regulator +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +trancevibrator +tridentfb +ts_bm +tsc2005 +tsc2007 +tsc40 +ts_fsm +ts_kmp +tsl2550 +tsl2563 +tsl2583 +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +tua6100 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw9910 +twidjoy +twl4030_charger +twl4030_keypad +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-usb +twl4030-vibra +twl4030_wdt +twl6030-pwm +twl6030-usb +twl6040-vibra +twofish_common +twofish_generic +typhoon +u132-hcd +uartlite +uas +ub +ubi +ubifs +ucb1400_core +ucb1400_ts +udc-core +udf +udlfb +ueagle-atm +ufs +uio +uio_aec +uio_cif +uio_netx +uio_pci_generic +uio_pdrv +uio_pdrv_genirq +uio_sercos3 +uli526x +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +uninorth-agp +upd64031a +upd64083 +uPD98402 +usb8xxx +usbatm +usb_debug +usb_gigaset +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmouse +usbnet +usbserial +usbsevseg +usb-storage +usbtest +usbtmc +usbtouchscreen +usbvision +usb_wwan +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-int-device +v4l2-mem2mem +vcan +ves1820 +ves1x93 +veth +vfat +vga16fb +vgastate +vgg2432a4 +vhci-hcd +vhost_net +via +via686a +via-ircc +via-rhine +via-sdmmc +via-velocity +videobuf2-core +videobuf2-dma-contig +videobuf2-memops +videobuf2-vmalloc +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videocodec +videodev +virtio +virtio_balloon +virtio_blk +virtio_console +virtio_mmio +virtio_net +virtio_pci +virtio_ring +virtio-rng +virtual +visor +vivi +vivopay-serial +vlsi_ir +vmac +vmwgfx +vmxnet3 +vp27smpx +vpx3220 +vsxxxaa +vt8231 +vt8623fb +vub300 +vx855 +vxge +w1_bq27000 +w1_ds2408 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1-gpio +w1_smem +w1_therm +w6692 +w83781d +w83791d +w83792d +w83793 +w83795 +w83977af_ir +w83l785ts +w83l786ng +w9966 +wacom_w8001 +walkera0701 +wanrouter +wanxl +warrior +wbsd +wdrtas +wdt_pci +whci +whci-hcd +whc-rc +whiteheat +wimax +winbond-840 +windfarm_core +wire +wis-ov7640 +wis-saa7113 +wis-saa7115 +wis-sony-tuner +wis-tw2804 +wis-tw9903 +wis-uda1342 +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl12xx_sdio +wl12xx_spi +wl3501_cs +wlags49_h25_cs +wlags49_h2_cs +wm831x_backup +wm831x_bl +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x_power +wm831x-ts +wm831x_wdt +wm8350-hwmon +wm8350_power +wm8350-regulator +wm8350_wdt +wm8400-core +wm8400-regulator +wm8739 +wm8775 +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusbcore +wusb-wa +x25 +x25_asy +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_ipcomp +xfrm_user +xfs +xgifb +xilinx_emaclite +xilinx_ps2 +xilinx_uartps +xirc2ps_cs +xircom_cb +xor +xpad +xprtrdma +x_tables +xt_addrtype +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_cluster +xt_comment +xt_connbytes +xt_connlimit +xt_connmark +xt_CONNSECMARK +xt_conntrack +xt_cpu +xt_CT +xt_dccp +xt_devgroup +xt_dscp +xt_DSCP +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_HL +xt_IDLETIMER +xt_iprange +xt_ipvs +xtkbd +xt_LED +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_NFLOG +xt_NFQUEUE +xt_NOTRACK +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_RATEEST +xt_realm +xt_recent +xts +xt_sctp +xt_SECMARK +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_TCPMSS +xt_TCPOPTSTRIP +xt_tcpudp +xt_TEE +xt_time +xt_TPROXY +xt_TRACE +xt_u32 +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zatm +zaurus +zcache +zd1201 +zd1211rw +zhenhua +zio +zl10036 +zl10039 +zl10353 +zlib +zlib_deflate +znet +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/powerpc/powerpc-smp +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/powerpc/powerpc-smp @@ -0,0 +1,11742 @@ +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/atm/suni 0x8233b824 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x2f73f7bc uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x49d7ac98 bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x5c165453 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x007ce6f3 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x109dda21 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x1c02d7e6 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x293da242 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4e49d05f pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x5a78247a pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x5ce99a9a pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x5eb1a82a pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x63d0b2a8 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x7ddf9d14 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x839650bf paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xa2dade50 pi_schedule_claimed +EXPORT_SYMBOL drivers/char/apm-emulation 0x129e74f2 apm_get_power_status +EXPORT_SYMBOL drivers/char/apm-emulation 0xdf3329b8 apm_queue_event +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x02ab35e7 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2ad99526 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9c79c688 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa28a2ace ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb5bae9bf ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xde38109f ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/edac/edac_core 0x27b5d600 edac_mc_find +EXPORT_SYMBOL drivers/edac/edac_core 0xc106e860 edac_mc_handle_fbd_ce +EXPORT_SYMBOL drivers/edac/edac_core 0xd25bd2a9 edac_mc_handle_fbd_ue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x017db3a0 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x10330a1c fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1047ed6b fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2208445c fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4098e2fa fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a057be7 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4e3b9685 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x528d637e fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5759c5fe fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5da6f2d4 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x67abe800 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6dcde31a fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a43f92d fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x871cee0c fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b7b46d7 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9da7b027 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9fde27e1 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa59493dd fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xad7b74ae fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb29449ab fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbdbb543c fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbe333e1f fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc777db06 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcd5ba1ec fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfa23ab3c fw_run_transaction +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02a858b4 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02ff370c drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04270848 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04af1a05 drm_mm_pre_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0713a870 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b10f53d drm_free_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x108664a4 drm_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x121b75a3 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c6276a drm_buffer_read_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142b8b35 drm_buffer_copy_from_user +EXPORT_SYMBOL drivers/gpu/drm/drm 0x148bb5d4 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14fa68a9 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1589970e drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x166c37fc drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x186f37cb drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18e325b7 drm_core_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a44ad85 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1abcd9f3 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bccdf4c drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d967b34 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f072c59 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20b5bec0 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20f9fc35 drm_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2185e0cf drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21e5bed7 drm_core_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2204f7b6 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2490fea9 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24c0f30c drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28ea2fa4 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29b225a7 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29c61a84 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a8d844f drm_mm_get_block_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2acb3248 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b49c580 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c30d307 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d4f9a97 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f28e049 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3074f033 drm_order +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e154ba drm_sman_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c0a47c5 drm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c187a01 drm_get_usb_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e92dddb drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f7e5a5e drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4197e469 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43384bd9 drm_buffer_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c9a91c drm_sman_set_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44c16e81 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4528147b drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48675346 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498dcb5e drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b65545b drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4caafc92 drm_usb_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e0f2c99 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ecf52b1 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f6799da drm_mode_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5065a7cb drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50dffd85 drm_mode_connector_detach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5120daff drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x515540c4 drm_sysfs_connector_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52a2b9f2 drm_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x577ef1ca drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57c75f91 drm_global_mutex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580830f0 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a512fbb drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b02fe99 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e3ead71 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6cbc33 drm_find_cea_extension +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6044956f drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60b7b05b drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61a945c8 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65c33f39 drm_mode_detachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66745f96 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66cfbf20 drm_get_platform_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66ef73ab drm_get_last_vbltimestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69ea712a drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d7375 drm_timestamp_precision +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e9a9a0f drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6efc562e drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x739919fb drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aa4a331 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bed9ae9 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1fd6c8 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c4d4786 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cb26d39 drm_mm_insert_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d4355b8 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d8fe09a drm_mm_search_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4cfa5d drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80411d6e drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8056bde3 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80dbdab6 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e01e30 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82da407e drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84e63e07 drm_sysfs_connector_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85de09f5 drm_mode_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8766dee2 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89c60ea0 drm_gem_object_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aa8da41 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfb019d drm_buffer_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90a45129 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90a92025 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f2d102 drm_sman_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93036665 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932df43d drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94302ee2 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9612ac72 drm_mm_put_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9745d638 drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97ade96c drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99682a16 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99f91de4 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b402ae6 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d3c7f86 drm_fasync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d922a00 drm_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc25a34 drm_sman_owner_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e8148d7 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9efec858 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f815fa6 drm_mode_attachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1eabd87 drm_mode_list_concat +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa237e931 drm_sman_set_manager +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2599b10 drm_mode_create_dithering_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa401f6fa drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7984573 drm_mm_get_block_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c0fa7e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaa301b4 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad07d26a drm_mode_validate_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadb30dc2 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaec6ded0 drm_core_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1001aa drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf321cea drm_connector_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3904f76 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4e95d65 drm_connector_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5b11968 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a467b1 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb713778c drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7634f75 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7d25960 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb85c6d9a drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb92524b4 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba039fff drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbce3d60 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0c610e5 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc414c422 drm_vblank_offdelay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc57c6335 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6ab3d2c drm_connector_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8e7c860 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca072290 drm_core_reclaim_buffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb295c43 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb4faf64 drm_usb_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf2eff4 drm_mode_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfd625ec drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08fa3f0 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd431287e drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4f8672f drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd79799ec drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f1ab84 drm_sman_owner_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdea33a86 drm_unbind_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xded74099 drm_get_encoder_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe03e0042 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe088bf2b drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe109f939 drm_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1e03dbf drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe256edfd drm_sman_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3553657 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5bdce7e drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6403777 drm_mm_search_free_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6d0a8c0 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6ec5e74 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea79a6f5 drm_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebd762d1 drm_get_connector_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec9dc9d8 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccc9f7d drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed256cae drm_sman_free_key +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed57a7c7 drm_platform_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee43664d drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeee3a9ba drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a0bf79 drm_sman_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf13d8304 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31ec2f9 drm_gem_object_handle_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3461ad9 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3a54183 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf41c11fe drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4a3ef2c drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6511e7a drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4f8599 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc8a727b drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x080af846 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1289f4ce drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x138e4e90 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20c94385 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2923c8e4 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x308c8d44 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x384c1bd0 drm_fb_helper_restore_fbdev_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4290c1a5 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x471b2ed9 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ce85f22 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50652135 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x556ad62f drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57862dd2 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5af942dc drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b90916e drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x694e26da drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x697f1fc0 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a230a5d drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70908904 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d251144 drm_fb_helper_panic +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e4d7c47 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa154680e drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2d5bc4d drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5b31ec1 drm_fb_helper_single_fb_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf626163 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfd8ad42 i2c_dp_aux_add_bus +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc469c244 drm_fb_helper_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda062954 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfe63efc drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5854b94 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe97d7923 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7d896b5 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdbe3ac0 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x007292c2 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00ab5813 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05be2ed2 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10d140f3 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x118908fa ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1291973f ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x145e6a73 ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18ac0624 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d89df73 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1e142425 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f267527 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x20841b99 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24853a39 ttm_bo_wait_cpu +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25392771 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2de25f7d ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x379119e0 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3d1bf6d9 ttm_bo_wait_unreserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fd155ed ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x43417cfd ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4bac6815 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c84afd3 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52167e2f ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5eee8296 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61987cdb ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61bdb34f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66078c0d ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73507d9e ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7586fb3a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75d1bac1 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7dcb1e64 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85046a5a ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85477881 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86a4066d ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86b4a858 ttm_bo_unreserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8832162b ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88969f23 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x940438e7 ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9b2be07d ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cb9fb38 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d06ced6 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa068577d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac843717 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb70484eb ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb709ec54 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb88952e9 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbb71b5fb ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1972c5f ttm_bo_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3809e73 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd218422c ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd34203ee ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3a73c13 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd59f3203 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd77bdf90 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd99c9e3c ttm_agp_backend_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3148b00 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfda570d0 ttm_bo_create +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x57736342 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x57868633 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x49844bbc amd756_smbus +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1ea5767b rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x32a8402c rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x37838b44 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d1f522d rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xa8f6808f rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xe4f39d87 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0bf45c33 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d7911c3 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1e12e98d ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1e580804 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4e4b76ba ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x86e4efea ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x97eb42d7 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9eed5d2d ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa80d6fd1 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xadb0e7ab ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb66bc82d ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbca084af ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcc19ec88 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcfcd8ffc ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd76aebb8 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe5391efa cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xee170c9c ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05e7f2e1 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c82fcf mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x089e9196 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c3091cf ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c4a8291 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0eb2bd7d ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0eb4218c ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fa77f67 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1180fb86 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x138ddaef ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f84918 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171f99f1 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a47154b ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d588166 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f6cf224 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x215dbb84 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x241d671f ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25c795a7 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b234097 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31ab1a41 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3335a8fa ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33fcad06 ib_rereg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ab4efef ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bc8d255 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4df55e75 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ea9ce59 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ed345ad ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4fead177 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52e952d2 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58bb3326 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e2847bd ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f3dafd2 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f4aef5b ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60867f9e ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65afbca4 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f232efa ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x704c476f ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x716eae5b ib_alloc_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72b4d6b4 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77f14bd2 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78984329 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bf2e5a7 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d025b17 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7febb9d7 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x80cd1bb6 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96ce6c46 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x994f2176 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4bc71c0 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5629e68 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa57de105 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab99da68 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacb77d67 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacb9af07 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae1447ba ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3d1a95e ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4c93ac3 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8327460 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb9f789dd ib_free_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbce4c47b ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf733d08 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc1e1f4ec ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6f24b4c ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb46a5a6 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd036804 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce99bdcc ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd394ee44 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd404dbcf ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8c09e58 ib_alloc_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa90279 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd4b1624 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1e81c47 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8183283 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed17bbbe ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf01074b4 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5ec84ec ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf670ced0 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc9d0f68 ib_reg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x29f97549 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3b04e36e ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x417d8a5c ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4ea2336e ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x67f29e5a ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f8cda08 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x73e8afd4 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x84ac6db9 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x946d5d27 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa039645a ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcadf6491 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcf57d356 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe4f12a33 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x166d6ad3 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x456af09c ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x75722e99 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x84f3d8b7 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9197bdea ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbc8096db ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf6b6444b ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f847bc ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07cf5a51 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18382f6a ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x184f3575 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x13db5335 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3cbbe31a iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5aeb386b iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6ce5fd5c iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x94b6e7c6 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa631d397 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd14f67b8 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe7b54ac5 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11b1fcb2 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1947facd rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x238f5577 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x29785180 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3aac1d1d rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x46a81312 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a568454 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x589bc66c rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5c06d905 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7785e324 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7d10943c rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb4c26b27 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0e6b277 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd300a15d rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb3f67ba rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf258670 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdf5ddc43 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf27063fc rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfebe046e rdma_reject +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0102f7b3 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1392817c gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x17404720 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2a87e6f6 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x93e1e9cb gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9aa244b7 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xab2a9f9f gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdbb829dc gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe30687d2 __gameport_register_driver +EXPORT_SYMBOL drivers/input/input-polldev 0x55e159e8 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x59d4d8da input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xcc35f3b5 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xe8de681c input_unregister_polled_device +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1d8262e1 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1f4430bc ad714x_remove +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe0d0136c ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xea75839f ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x51c2b172 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2b9f57a4 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3ada0fb7 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x55002aa3 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x908b9fe9 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf0af55a4 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf26433c7 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbc9dc160 ad7879_suspend +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xea891c77 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf3bd1692 ad7879_resume +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2315d679 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3715d3f5 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3776726c attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3fe5e56e capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47d3fc51 capi_info2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5d153ed2 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x64ef4114 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x76955b72 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8188a094 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe9811110 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe9d32812 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed061606 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x10d58bbc b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1872df2f b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1e29ab6b b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x20bae11f b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2dcceaf9 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3df4a6a3 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x57c6e383 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6bdb92d8 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7014b91b b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7c842125 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x81ff3b27 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8fcf1513 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb07436f9 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc7fc346f b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xca23f32d b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0f4bec0b b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1e7c28a6 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2395d3d9 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x509e70fb b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x619e24f2 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x814dec33 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9c23481d b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc4c316d4 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd1a05641 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0xa204fdf5 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x54531c81 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x577892e7 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x73c4e888 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd1a79206 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x89c2d153 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc3bf3e2b mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x116410d2 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7f29ce36 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe227344e FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xff2db2cf FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x692551c7 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x733d6e34 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xbcbb36d4 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xbdbccd6c isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xfb0b38cd isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x091d0c43 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x9773a9d0 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xde677758 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x03b8e204 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x057d8b9a mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x069441ce create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x170fa878 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2a051d9c dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x319ba33a get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x367697bb get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4059efa6 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54451388 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dc7400a mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x614ede30 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x637061b1 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x685695c1 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x69ce3dd1 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6bbbcd1f confirm_Bsend +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96309324 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99689665 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa2a90c92 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2c53eeb mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdcb55bfa mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe5ee0a95 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe87943cf mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe91e5c59 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xebad4152 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf19c6c75 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf4750d4f queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/dm-log 0x243e7265 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x31ef1833 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x6043a2de dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xb96d1889 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x06b8903f dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x208c119e dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3ca4e14e dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6a5b8ed0 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7734c3b2 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x91ede0c6 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0xd28f4f8e raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/tuners/max2165 0xf88f5085 max2165_attach +EXPORT_SYMBOL drivers/media/common/tuners/mc44s803 0xe86742ae mc44s803_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2060 0x02d0a76a mt2060_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2131 0x24f4982c mt2131_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2266 0xb17a952b mt2266_attach +EXPORT_SYMBOL drivers/media/common/tuners/mxl5005s 0xee99630c mxl5005s_attach +EXPORT_SYMBOL drivers/media/common/tuners/qt1010 0x4ddfb0ab qt1010_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18212 0x1539e73a tda18212_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18218 0xd0ed4629 tda18218_attach +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/common/tuners/tuner-xc2028 0x445a425a xc2028_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc4000 0x268f473b xc4000_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc5000 0xb13c107b xc5000_attach +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x010513b7 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x1993a35b flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x2f8d1911 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x3453f665 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x42c5652e flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x55d171b9 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x59d29f4a flexcop_i2c_request +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x5e46923a flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x5f4b3f96 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x71e88122 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x8604bd81 flexcop_device_exit +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x86d66735 flexcop_dma_config +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x8da1bc88 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x8fdeb95c flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xa646c654 flexcop_dma_free +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc2959dba flexcop_device_kfree +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc73b4d5b flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xcc7ad577 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xd27c5503 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xfe41cf66 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x0899c826 bt878 +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x527b6f7c bt878_stop +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x65e89996 bt878_device_control +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xb7d6d9e9 bt878_start +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x046f37f7 dst_error_bailout +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x1218fe81 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x1d4c87a7 write_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x6885d8b0 dst_error_recovery +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x79f9747d dst_pio_disable +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x972c32e6 dst_attach +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xab933e85 dst_comm_init +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xebf810ad rdc_reset_state +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xfcab1c49 read_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst_ca 0xabe30b0e dst_ca_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x087e14e2 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0c4d4a14 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x1675fd85 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x22d6ce4a dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x24cc7d69 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x2598b555 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x2c79eb4e dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4115cffb dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4121faf9 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x48f08270 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4bdd61bf dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x55ba21f8 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x78d62338 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7ba5d8bd dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x82bfe980 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x88a7d8c9 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x9e6f9028 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xa2890069 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xa7ba0691 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbc0d91e1 timeval_usec_diff +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbef35739 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc42a9525 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc6e50fe0 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xcb28f281 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xcce230d2 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xdad8e598 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe15fa09b dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe82aa36c dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xed2f10e3 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf7d469d4 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x48c5d2fa usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x6aae1f11 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x6bb7c829 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x7b1dad20 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x99aefc27 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xacf216e6 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xed23b3d0 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x7a190847 af9005_rc_decode +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x12bd19f7 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x1a6d451c dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x1ada0bed dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x47d78e42 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x6c715d0a dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x74f88040 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x81a3a420 dibusb_rc_query +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x8ff421fa dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xa49e661a dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb41581fb dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xbf50211b dibusb_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/a8293 0x07d70693 a8293_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/af9013 0x8a9f902e af9013_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/atbm8830 0x6f5b6d2c atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/au8522 0x94f2699a au8522_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/bcm3510 0xc6b6d0d2 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22700 0x14c29c05 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22702 0x86783dd9 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24110 0x5b6df19b cx24110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x3a661259 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0xbfe1701d cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24116 0xb669e523 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x2a7cdc1c cx24123_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x9dc8f120 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/cxd2820r 0xf21ddc22 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x147b1230 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x5d5c6de2 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x97e59fb0 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xce321c4d dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xdf1a4c3d dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x270245d3 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x27b5dcee dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x283e6d0f dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x300ace44 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x30396aeb dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x3078ac7a dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x4de4d755 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xa6c1149a dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xbb283209 dib0090_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mb 0x1db8b214 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x4d3647a4 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x50694c34 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x5c9b797e dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x89993547 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xd9cd6f60 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xe14a83e3 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x2ae9d30d dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x746ded5e dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xe43a5e4b dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xf3ec947d dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x017452ba dib7000p_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x07518dcc dib7000p_update_pll +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x1d089617 dib7000p_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x21939242 dib7090_slave_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x2400b3c7 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x31edaa5a dib7090_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x50633834 dib7000p_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x6e8b48aa dib7000p_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x7525c3c6 dib7000p_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x91274d8e dib7000pc_detection +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x96297ebc dib7090_agc_restart +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xba640c5e dib7000p_ctrl_timf +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xc4a08ae2 dib7090_get_i2c_tuner +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xca6b282d dib7000p_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xe67d8024 dib7090_tuner_sleep +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x1e0473d5 dib8000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x3163d407 dib8000_pwm_agc_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x49ebbe55 dib8000_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x4a2422c6 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x536797d9 dib8000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x5bebae05 dib8000_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x5eea3d8f dib8000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x896b24e7 dib8000_remove_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x987ede55 dib8000_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x9a598d37 dib8000_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xa1a85fb4 dib8000_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xc6dbc76b dib8000_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xdb1c09f1 dib8000_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xfba5815a dib8000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x32c39b0e dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x909610c4 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xbabf349c dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xd5011e45 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xff125724 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x23b81d11 drxd_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0xdedb462f drxd_config_i2c +EXPORT_SYMBOL drivers/media/dvb/frontends/drxk 0xc9ee3fde drxk_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ds3000 0x867318d0 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dvb-pll 0x5a142fea dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ec100 0x200d2a3d ec100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6405 0xd2c148e8 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6421 0x247c3c2a isl6421_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6423 0xb41dfa10 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/it913x-fe 0x51fb0741 it913x_fe_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/itd1000 0x851fe02d itd1000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ix2505v 0xf1e6e211 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/l64781 0x47d81be2 l64781_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt3305 0xfbd99ee3 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt330x 0x16a1f665 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgs8gxx 0x4de3acd8 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0x17c59529 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0xd881e7e0 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp22 0x02098b42 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a16 0xf7fd56ee mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a20s 0xd4a2d123 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt312 0x5e72ff8d mt312_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt352 0xb5d8331d mt352_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt200x 0xc0f731ad nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt6000 0x3e60428f nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51132 0x5cb0b438 or51132_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51211 0x55efb79e or51211_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1409 0x0d5d66aa s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1411 0x246d44ea s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x3ed98d39 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x54c969b1 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s921 0xf3a62322 s921_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/si21xx 0xa48d3c61 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp8870 0xa6ffcabd sp8870_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp887x 0x015f6308 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb0899 0xcbfd7bb9 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6000 0x029f5c8f stb6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6100 0x8fe8b4d8 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0288 0x9934c74c stv0288_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0297 0x90344fc6 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0299 0x3ba009ae stv0299_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0x4ee07619 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0xd42aee36 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0900 0x136cb31b stv0900_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0x781f2716 stv090x_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0xe3231a8d stv090x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110 0x514561c9 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110x 0x5158dc0c stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10021 0x8daae8d2 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10023 0x6aff1488 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10048 0xaea8e07a tda10048_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x98bc0f5d tda10045_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0xf88546d2 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10071 0x626dbc3f tda10071_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10086 0x75db2fa4 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda665x 0xa3ede4fe tda665x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8083 0x9b3a2141 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8261 0x9708a231 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda826x 0x66205ae4 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tua6100 0x4a534d4a tua6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1820 0x6828d6f7 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1x93 0x5826cd25 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10036 0xa5bda3ee zl10036_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10039 0x85b6faea zl10039_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10353 0xc7a0279d zl10353_attach +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0x74173260 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x4269bfda ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x69aebe10 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0985e8aa lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x1faad0db lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5842facd lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x599a2128 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5a9746d2 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x68f17902 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8ca75ed8 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf678dc6f lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/rc-core 0x8017b8a7 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9e4ba655 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x18705602 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x3a3787d4 bttv_sub_register +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x4c10ed35 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x495e4b0c btcx_calc_skips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x7b6a5fe7 btcx_riscmem_free +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xa834322a btcx_riscmem_alloc +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xad2fe38b btcx_sort_clips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xc368f8e6 btcx_align +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xcda0ded2 btcx_screen_clips +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x465eb905 cx18_release_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x897e7792 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xab6b5299 cx18_claim_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xd10d1158 cx18_ext_init +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xeba60f78 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0xd32a499c cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0xf0ce07c4 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/video/cx2341x 0x13a135aa cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/video/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/video/cx2341x 0x266b0054 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/video/cx2341x 0x2c0011ec cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/video/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5b88faf6 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0x676ed443 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx2341x 0xae42d461 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/video/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x704f7e6e altera_pid_feed_control +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x7ce61c7b altera_hw_filt_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x9247b72f altera_hw_filt_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x9f3fff7a altera_ci_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x2d5a944c cx25821_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x3b0d3622 cx25821_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x424a2ce3 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x471e1cfb cx25821_devlist +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x5a22d614 cx25821_devlist_mutex +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x67cc5b8b cx25821_sram_channels +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x8dfdd99c cx25821_dev_get +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xa2f2e0b6 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xd0c0d085 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xddbb57ce cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xfd6dedbc cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0x03ac8e40 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0x65f64309 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x08c9c848 cx88_get_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x120e302e cx88_set_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x52163268 cx88_video_mux +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x698162bb cx88_enum_input +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x8a3acbf4 cx8800_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xac4e53b9 cx88_user_ctrls +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xffab0637 cx88_set_freq +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x31a4e93c cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x33b0d002 cx8802_register_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x49375c3a cx8802_get_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x9d64d847 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xbc019784 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xf8a9bd2e cx8802_buf_queue +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x0b5c2dfb cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x32863c44 cx88_free_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x38975126 cx88_ir_start +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x3ef09935 cx88_vdev_init +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x41b9293d cx88_wakeup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x49447754 cx88_set_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4a56c917 cx88_reset +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x5c1146ea cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x5e94f933 cx88_set_scale +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x6bcfd82a cx88_core_put +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x8d486449 cx88_get_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x973a7a86 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xa5c7474d cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xa911bd32 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xab048079 cx88_newstation +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xac5403a3 cx88_risc_stopper +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb09675ca cx88_core_irq +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb16f0851 cx88_core_get +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb2134c2f cx88_sram_channels +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xc859212d cx88_ir_stop +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xde771690 cx88_shutdown +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xf330f39c cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xf5e4f16d cx88_risc_buffer +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0xdd217ada em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0xfbcc719d em28xx_register_extension +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x225e4722 gspca_disconnect +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x29034f18 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xadccf640 gspca_frame_add +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xb3bbb8bb gspca_resume +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xcab04f07 gspca_dev_probe +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xd8b6be7f gspca_auto_gain_n_exposure +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xf3fab54c gspca_suspend +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x0e4bdc99 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x1a38e537 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x290a8279 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x884a0294 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x89659534 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x91234528 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x92201134 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xbdbd3c6a ivtv_vapi +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xeee46444 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xf6436e30 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xfafffbab ivtv_vapi_result +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xfec766a2 ivtv_api +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x11b62182 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x11f669bd saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x14dfecc6 saa7134_boards +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x1b6b8331 saa7134_ts_register +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x2dde59b0 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x3a94f6a0 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x4dac877f saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x5cdb21fa saa_dsp_writel +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x66ebc5b0 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x9ff265fc saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xb29f0f19 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xc17d7310 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xc65beac9 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/video/soc_camera 0x42d01a58 soc_camera_host_register +EXPORT_SYMBOL drivers/media/video/soc_camera 0x9227cf66 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/video/soc_camera 0x922a8f85 soc_camera_unlock +EXPORT_SYMBOL drivers/media/video/soc_camera 0xb7348d1a soc_camera_lock +EXPORT_SYMBOL drivers/media/video/soc_camera 0xd6613292 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/video/soc_camera 0xd97de360 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x433952ab soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x6951757b soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x85d52182 soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xcb4b96ae soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x67253770 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x92094918 tm6000_register_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0xa81a21be tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/video/tveeprom 0x2f1e357b tveeprom_read +EXPORT_SYMBOL drivers/media/video/tveeprom 0x82eae3a3 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x42c8e001 v4l2_ctrl_next +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x4ed5e0d7 v4l2_chip_match_host +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x50766d69 v4l2_ctrl_query_menu_valid_items +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x5dbb0ac2 v4l2_chip_match_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x791ab099 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xc0699aac v4l2_ctrl_check +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xc89d1740 v4l2_chip_ident_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xf052e6db v4l2_ctrl_query_menu +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x4c319b4c v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x92f0916d v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0xcd50b836 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x0348a595 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x181fde3c videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x1c365ced videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x2f733758 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x56c83ee5 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xee12a7a8 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/video/videobuf2-core 0x676ab13b vb2_querybuf +EXPORT_SYMBOL drivers/media/video/videodev 0x01626700 v4l2_ctrl_handler_init +EXPORT_SYMBOL drivers/media/video/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/video/videodev 0x083fb3f7 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/video/videodev 0x0a87baed video_device_release +EXPORT_SYMBOL drivers/media/video/videodev 0x0e1122df v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x0e9bc34c v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/video/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/video/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/video/videodev 0x16f9a3c7 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/video/videodev 0x18aef096 v4l2_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0x1eec529e v4l2_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/video/videodev 0x277215a0 video_devdata +EXPORT_SYMBOL drivers/media/video/videodev 0x2ceac840 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x2f556003 video_device_alloc +EXPORT_SYMBOL drivers/media/video/videodev 0x2f90cd25 video_usercopy +EXPORT_SYMBOL drivers/media/video/videodev 0x3077bb98 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x3375f19a v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x371590d6 v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x388eae7a v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/video/videodev 0x3ab96ffe v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/video/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/video/videodev 0x3b5ee738 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/video/videodev 0x3cc05009 video_ioctl2 +EXPORT_SYMBOL drivers/media/video/videodev 0x3e784388 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0x41b1a35e v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x48161c7c v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/video/videodev 0x4842bbe0 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/video/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/video/videodev 0x5ac422ba v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x5ebefe4b v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/video/videodev 0x6b3ba4b1 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x6c14530b v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x704980cb v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x7a98d922 v4l2_ctrl_del_event +EXPORT_SYMBOL drivers/media/video/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/video/videodev 0x9b723333 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0x9d5ac4f3 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/video/videodev 0xa224c1b2 video_unregister_device +EXPORT_SYMBOL drivers/media/video/videodev 0xa38601ac v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xa4a20200 video_device_release_empty +EXPORT_SYMBOL drivers/media/video/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/video/videodev 0xbc7a5d71 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xbfee8490 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xc2ec2166 __video_register_device +EXPORT_SYMBOL drivers/media/video/videodev 0xc6ab0d01 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/video/videodev 0xc7864642 v4l2_ctrl_add_event +EXPORT_SYMBOL drivers/media/video/videodev 0xc8b004e1 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/video/videodev 0xdc042a77 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/video/videodev 0xdd5a4b10 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/video/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/video/videodev 0xe3719f5c v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/video/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x54641a1d videocodec_detach +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x9165f6ce videocodec_unregister +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x9d90714a videocodec_register +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0xc4675125 videocodec_attach +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1e81d539 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3087eba8 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x41a26790 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5ed9f012 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6d7d1cf0 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x773f2337 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7db0f649 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x81662281 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb5c71ca0 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc3d48512 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc8ed9904 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf2006d9d memstick_remove_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0bd32dc7 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f489cac mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f65d417 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x21911bae mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3647bfd8 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x380e7433 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3dbaa911 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4c75791d mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57508b8f mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x62ba0844 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x63d1b0bf mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d6518f1 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7f4014bd mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81408d84 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d04e608 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8fe26cc9 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa8c95bb3 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xad273546 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6960f14 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdde6eaf mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcca2b1f2 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xce726b2c mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcef73a81 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdcf96209 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xddf4af6a mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf5729d0 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe2ffd021 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe917d823 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xffb80aa9 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0cb40873 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x13690843 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x178eba32 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1e1da134 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1f6eb2d6 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2cfa0357 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x45d8b95d mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a0f3fc7 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x58f5e288 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e6826c1 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66059d5e mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x77ac46c2 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81b242c6 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x88ffea5f mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x98a4911f mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9fd06fe7 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa10f4e27 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa55d4539 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb5590d88 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd8d52b0 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbefc128c mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc7b51165 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc8527cbf mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb3496a8 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf494f23 mptscsih_proc_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8374b1a mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf8e9d734 mptscsih_io_done +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x0d75150e i2o_device_claim +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x2a843bef i2o_dump_message +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x3503ad9a i2o_find_iop +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x3c06f622 i2o_driver_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x47c13fda i2o_device_claim_release +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x57ac864a i2o_msg_post_wait_mem +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x58f31039 i2o_event_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x83848871 i2o_driver_unregister +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x97fb0acc i2o_parm_field_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x9ae2ed11 i2o_parm_table_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xa4eebe84 i2o_driver_notify_controller_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xab2561f7 i2o_driver_notify_device_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb153fc31 i2o_driver_notify_device_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb4c00dcf i2o_controllers +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xc52a88b8 i2o_driver_notify_controller_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xc6be113a i2o_exec_lct_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xddd1c02b i2o_msg_get_wait +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xe1caeecc i2o_iop_find_device +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xe9c1f204 i2o_parm_issue +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xee297a44 i2o_status_get +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x79848b05 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xff456676 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0a0f0fa1 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19f1f7a8 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x304d2b09 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x648f3e82 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c8289a3 mc13xxx_irq_request_nounmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x81e0f888 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x908760bc mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9bc42b70 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa83c26ee mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad06449f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb3dae053 mc13xxx_irq_ack +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc60a9247 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdc5799c mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/tps6105x 0x17a1e6eb tps6105x_get +EXPORT_SYMBOL drivers/mfd/tps6105x 0x3b4d5b30 tps6105x_mask_and_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0xd2861f8f tps6105x_set +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0x015ee601 pwm_free +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xa4ee3c79 pwm_disable +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xaee34e3d pwm_request +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xd83c7949 pwm_enable +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xdeebfb06 pwm_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x747983b2 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xcfa9c350 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x45289567 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x221f9360 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x935bcf73 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x05b873bb ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xb89e39d1 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x065daabc tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x10c98785 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x30f46e19 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x45666a91 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x66c2abb4 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x750fdb82 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x8be72ce5 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x99fe7dab tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xb05df994 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xd9fda08f tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xdb20e20e tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf97bda16 tifm_map_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xa7bc7b64 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3ae1bcb5 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6ca64a70 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc8638471 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1debd8e6 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x531b1f34 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x774fa4a5 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf856952e map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xc6ab386b mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xca07ba7c lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xa8145cf2 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x6cc5dcc5 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xdeeae52d mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/nand 0x393117a5 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x64d4b263 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x67b5f972 nand_default_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb184314d nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xdf79efe3 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe071fb67 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xedaa2853 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x7869e431 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x8991cd20 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xdbca02c8 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x93704591 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xdc64232a nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x836bdb72 nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x12bf0898 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x38bb9813 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x6956818d flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xa2c97f3a onenand_default_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x02d574ac alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x08804f6c arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2145000d arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4a681d5a arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x796d8161 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7aae7750 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7c65d207 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa41eb82c arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbc83af7e arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd681ea9f arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x53d93841 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc3f46aa6 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xfcff0513 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0020058c NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1abb72c7 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x21dc684f ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3ecd9f97 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7d641136 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb297573e ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd34bac40 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd9abb31a ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdc68e097 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf0f9f163 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2 0xecf2be12 bnx2_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xc5c2295e bnx2x_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xea5bdfea cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x23bd8a40 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3d280783 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4fdab270 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x548d8c66 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6114cfa4 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6f66aee6 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x75272f62 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x78885529 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7b8ec862 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x90f75a8e dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa867e40a cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd0fa254c cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdd5360e4 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xebbf53d4 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xeddbcf1b t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc29d45c t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x024d5c3f cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a53a37c cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24a09c98 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2598e5b4 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3707e01e cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3e5d3d29 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4c66fd87 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6978bb6f cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x762d1ad6 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x981ade95 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae81ad91 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcbde96cd cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xce53d643 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd22705de cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe03689d7 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2c48028 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3ada9bf cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fb77264 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae52061d mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf09938c0 mlx4_release_eq +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4f5b513d hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa3df1bad hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb0e31dc0 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe9b8fbd1 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf8ff1206 hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x69f34bcd sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6ecd0857 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7dd06e17 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x826b02be sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa00701f2 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa4be558a sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xae002383 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xae0a4dc2 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb2389611 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb4223981 sirdev_write_complete +EXPORT_SYMBOL drivers/net/mdio 0x0f934475 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xb34a7575 mdio45_ethtool_spauseparam_an +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x0bed071c alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xf973d7f3 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x25e9adf5 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x822d96eb register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc238c6d2 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x8ea8183d sungem_phy_probe +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x2e588c6e tms380tr_netdev_ops +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x327c3480 tmsdev_init +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x42fefc87 tmsdev_term +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x648ce679 tms380tr_open +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x9e30fe21 tms380tr_close +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xbcd23793 tms380tr_interrupt +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xd2328794 tms380tr_wait +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x38da4725 cycx_intr +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x62be23ea cycx_setup +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x66a4c4e6 cycx_down +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x968458a6 cycx_peek +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xb6f383de cycx_poke +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xfe7cd576 cycx_exec +EXPORT_SYMBOL drivers/net/wan/hdlc 0x16de5e0f hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x25b6b0f5 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2bd285c7 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x659ba98c register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x65c569e0 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x861c6f25 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x88b21490 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa0938b66 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa12daff6 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc566defd alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xedef98cb hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xe2926cb5 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x15857cd2 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x78f33a28 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xd1e3e0a0 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x02710808 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e2481d5 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6da03d7b ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x900d9db9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x92654e08 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9b89c89d ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1a9f65b ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1c54b6f ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb343b244 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb43c1b35 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe007b175 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe23d55e6 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x09b0180d ath9k_cmn_get_curchannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1cc2ae27 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40d3a2e4 ath9k_cmn_update_ichannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x869bf508 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa774b153 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf59eadf3 ath9k_cmn_padpos +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06046147 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0854f7a0 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a1f6e81 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e471a4f ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10f7164d ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11990ec9 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x16614cb5 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18aa22d9 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bb6624b ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e60a4c8 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2838ecf0 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29551f14 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29b117eb ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d3e646c ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32b8722e ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x339875ef ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35d26064 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35f1c4ed ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x378f2deb ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39625c8c ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c20315a ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44c88464 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4722b549 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x477920ea ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e7ba1b7 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f714ac7 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54bf6b83 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c628eff ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d190d1d ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d4a5c8b ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x614e4c6f ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x618aebdd ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6542036f ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68b020f7 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a33024a ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b4ec395 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x713a6e14 ath9k_hw_gettxintrtxqs +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x736efc86 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74040b34 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x750817b1 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7565023e ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7678cc83 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x769db9d0 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x782bca05 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a61e39f ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89cbcc72 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89f7e71b ath9k_hw_getdefantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b4cba5e ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90e2d69c ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92a52c78 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9511dfe9 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x959c6868 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98c94d91 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ec89636 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fa5de83 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa38361e7 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8d7fedd ath9k_hw_proc_mib_event +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa96856b1 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabcc7ec3 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac217ab5 ath9k_hw_htc_resetinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac44c097 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf04b3bc ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2c3f6e7 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8f16f29 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9197e1f ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc4fcf8a ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdb8d106 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdcafd6a ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbed15c94 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0248b52 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0e3b7fc ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc52cce6f ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca3751ee ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcac3f248 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb1d6f5b ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf8f6eb4 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcff85c6e ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2acc8df ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5ee7c76 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd674a4d9 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb9b60d5 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbe73c2e ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcb53117 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe51c2738 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef31b89d ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4ecd1b8 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf99e6e7d ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc044901 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/atmel 0x8356104b atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x9cd5b95f stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xe98b93cd init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x225da4ab brcmf_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x7f228518 brcmf_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x04acefaf brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x092a8383 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x11674867 brcmu_pkttotlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3405696b brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x385ebba8 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x66622712 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x754fb4cd brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x78172216 brcmu_pktfrombuf +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x792c6179 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x90bcccf5 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x92f6c115 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa6853263 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xeda4d093 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xef498b5c brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ab58790 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1a8f0c64 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1b739865 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2dcf314d hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3706fc00 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4c171fd1 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5f9ba8a0 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x685844b9 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x794e03ea hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7a966bcb hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8de4e0ac hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x92e5eb6d hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9633986a hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x96f9806f hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9aef352d hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9cd4b371 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb96b7662 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb9d28139 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbc7a73cf hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc50ab26f hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd1789649 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdeb8d442 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe325ea76 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xec8c146f hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfb570697 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0b50a9e6 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1b8fa965 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x31fb4a65 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x347ddd2e libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x44a73351 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x59941678 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x64be1e91 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6e6c0753 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x72406bc8 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x76416f6b libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7cbaca9e libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x859de068 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa258bb6c libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xaf585c17 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd5403f42 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdcb9e890 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdddb8111 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe2da322d libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe43be30c libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xefd11925 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xff57d33a libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x01bd2778 iwl_legacy_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x028e9dde iwl_legacy_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x04cc0f4a iwl_legacy_rx_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x08fb4247 iwl_legacy_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0c8d3f9b iwl_legacy_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1210e88e iwl_legacy_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1342b012 iwl_legacy_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x14313c56 iwl_legacy_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1a546d4f iwl_legacy_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1b4ea91d iwl_legacy_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1bd4917f iwl_legacy_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1f45be2f iwl_legacy_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2003f196 iwl_legacy_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x200a1afb iwl_legacy_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x212521ef iwl_legacy_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x21c1f35f iwl_legacy_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2269f300 iwl_legacy_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x23d4f515 iwl_legacy_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x243fcc04 iwl_legacy_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2568505d iwl_legacy_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x267b7c50 iwl_legacy_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2a66b184 iwl_legacy_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2d52a96d iwl_legacy_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2ebe7f61 iwl_legacy_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x33110609 iwl_legacy_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x336717ae iwl_legacy_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x33ac9efd iwl_legacy_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x33b57876 iwl_legacy_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x34831cc5 iwl_legacy_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x39a2e007 iwl_legacy_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3cdaadf0 iwl_legacy_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3d6b5f80 iwl_legacy_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x40c0f38c iwl_legacy_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x416a5f5f iwl_legacy_rx_pm_debug_statistics_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x45b3173e iwl_legacy_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x45ce3c29 iwl_legacy_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x510d4f48 iwl_legacy_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x52af603d iwl_legacy_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x54d38051 iwl_legacy_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x577907f2 iwl_legacy_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5e2889e0 iwl_legacy_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5fac01de iwl_legacy_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6169a5d2 iwl_legacy_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x62b5b527 iwl_legacy_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x656f67e0 iwlegacy_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6a180664 iwl_legacy_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6a95513b iwl_legacy_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7737375f iwl_legacy_rx_pm_sleep_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7ac058a2 iwl_legacy_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7b50fbbf iwl_legacy_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x81013ff0 iwl_legacy_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8756fae1 iwl_legacy_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x88675e49 iwl_legacy_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8a15a592 iwl_legacy_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x914ba66e iwl_legacy_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x93f2211e iwl_legacy_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x97bc6a3d iwl_legacy_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9b674136 iwl_legacy_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9bcfba25 iwl_legacy_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa3a4c4df iwl_legacy_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa618c0c2 iwl_legacy_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xabe48768 iwl_legacy_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xae019207 iwlegacy_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb14d7236 iwl_legacy_rx_reply_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb1835e12 iwl_legacy_get_free_ucode_key_index +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb25f79f7 iwl_legacy_rx_spectrum_measure_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb61a056d iwl_legacy_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc0b0fc74 iwl_legacy_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc1fdf862 iwl_legacy_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc8b00d78 iwl_legacy_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc8ba250e iwl_legacy_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc963ddfb iwl_legacy_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xcd5b7bed iwl_legacy_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xcd8d618f iwl_legacy_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xcfd8843a iwl_legacy_alloc_all +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd40012fa iwl_legacy_send_statistics_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xdd713701 iwl_legacy_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe4688633 iwl_legacy_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe4d24bae iwl_legacy_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe5bbcf0f iwl_legacy_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe69a85ae iwl_legacy_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe7812b30 iwl_legacy_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe7b111df iwl_legacy_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe820ea79 iwl_legacy_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xed98d02a iwl_legacy_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xedef9d3c iwl_legacy_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xef3e9112 iwl_legacy_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf460ed65 iwl_legacy_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf4ab770f iwl_legacy_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfa0229a4 iwl_legacy_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfb241640 iwl_legacy_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfb4e1169 iwl_legacy_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xff6b90dc iwl_legacy_pci_resume +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x60faee03 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x61c5e32e __tracepoint_iwlwifi_dev_tx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x65489f9c __tracepoint_iwlwifi_dev_rx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x726d9621 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb6c345da __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcc312d73 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd1d62dbf __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd915418d __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xf7769239 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1ad4ab37 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x28e85a26 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4edf006d orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x552cadef __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5ae04ba6 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x60c5ff7f orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x75f4917e orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7e017aae orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x896d406e orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8a912608 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9220208f orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x97e83b3a orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa32f3c59 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xab8bd20a orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb089f16d __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc8e3dcb9 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x0518b0c4 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1215b027 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x15e75d6c rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1cff7ea6 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1ed5a155 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1f6e3e53 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x22670734 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x22c68e44 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x28bbcf32 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x29f85131 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2d2c58e1 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2ea3fc05 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x33b5e173 _rtl92c_phy_dbm_to_txpwr_Idx +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x390b6ce2 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3a08b0e8 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3fcbc1de rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x50b73013 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x52c4a4f2 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5675ed2d _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5f9063ef rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x63a92e14 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x70cf91c0 rtl92c_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7a366b9f rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7a41bc6a rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7b97a811 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x931b83c2 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x95775db6 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x9c80ec5d _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa278d181 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa6d76393 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xad2ea909 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb2e415a8 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb665c342 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc6e4f03e rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xcfd9b0ce rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd9e43386 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xed472bb0 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xee4cdbbb rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xef00f7ea rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf7095fc2 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf8622075 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xfc3fa414 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x01c636ab rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x140de093 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x1d260e9e rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x3eeb7e00 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x480aee0a rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x4c05f3a5 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x5c53c504 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x5defe7d8 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x6d7c899b rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x7532399f rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x7d3d594c rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x94464627 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xa821cfdf rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xb1c458db rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xca8d2574 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xcaa64ccc rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd0fefab9 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd4eed5cd rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd7191340 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xdb9f9fc0 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xe4482363 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xeff568aa rtl_ps_disable_nic +EXPORT_SYMBOL drivers/parport/parport 0x03dc02be parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x07ccdf12 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x10121172 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x10e90a5c parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x147df4f9 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x1bad5ba4 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x24e8f833 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x2e795cf7 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x38d82262 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5620ac4e parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x5a974324 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5e408850 parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x6a4f0fde parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x70600a4a parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x707bdfd1 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x81e1e805 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x88fda0e2 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x9d01087f parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x9f2c14b4 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xad7f7277 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xb97152dd parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xb9f9d634 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xbb3d9312 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd0e7b581 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xe32b6375 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xe835504c parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xeaacee36 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xef3ee828 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xf4bea773 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xf67ae255 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x176c0d17 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xb236dfa8 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x062a66aa pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x08a7cb24 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x14144edd pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x21091d0d pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4b1c3637 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6056233a pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x64db6e0a pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7a6ddd8c __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7c46e3ab pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8fcc55f9 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x90bcf1d8 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x927d114a pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9917d4cc pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa7cd6e10 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbb9b4a21 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe4118071 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xebfc1d59 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf64dda5b pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfe3f482b pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x08ced9d8 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x14d38a4a pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x151c09ad pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2cacc97f pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7275c329 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x94afbab0 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa0a6efec pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaebf6209 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb4e0d52f pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcd55b522 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf34f17e9 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x91de3256 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xd1e00de1 pccard_static_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x3173bd56 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x58a71aac pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x5ac9d314 pps_event +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x17ad105c fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1b9cdcb1 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4e760caa fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x56c5d790 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa41ab263 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc1fd7307 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xebaa21bf fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfb8927bc fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfd21c070 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x010c4e32 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e5773ed fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11da4ad3 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x138159d6 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d92ae2a fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20b2a69b fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24190224 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2d605731 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2df89193 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34dfaa52 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x375a36e4 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x391eee8c fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40239411 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x406ca0f2 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d2e90c6 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ff81c64 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x635de21d fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7189b192 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73883530 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x837f5369 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86701388 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8777c38e fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88d78d47 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a7aabf4 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d639274 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f6b4fe4 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97ca17db _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98536b41 fc_change_queue_type +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa04cf895 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa4e80da2 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa94f6e54 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac896f7d fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb115d557 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb28f2358 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb523068c fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9455656 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbba6538e libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc0b697f fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc73c1afe fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc7cd640d fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd824fd17 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8554c88 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf86378c fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe61a1f57 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe92d7bce fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec6fd478 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee32d63d fc_change_queue_depth +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf46f8d71 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb90d52b fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfc8f9a35 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x13b9e093 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x03f53096 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1d48b4ae osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2439e2f5 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x317efa0f osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x31cf77cb osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x388755a2 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3e17c207 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x55ca6dcd osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x62386b88 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x647b7679 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x73a4ffaf osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x75210046 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x77874bd3 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8628a5a2 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a1bd330 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9cf4d99d osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9e67676e osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa3c6ea83 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa4509459 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa4d539c4 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa94460a5 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xad9978c3 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb0e6449b osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb2e1abc5 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb7fa4a7a osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbb01608d osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbbc60fa8 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc2339d61 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc482e89c osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xca3c68e5 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcaf33f34 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdb870ee8 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdca2a256 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe262573e osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf2c864d8 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfefa9f28 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x60df2a9b osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6305b5c6 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x728a6521 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7b008df9 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x938b7997 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe63066be osduld_register_test +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8598626f qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb14dbe04 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb5235c5b qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xbff05400 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd69b379e qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe1db6ff2 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0xb24abeac raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xcd74a6eb raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xd22b8fbe raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x00d0651f fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x02448d57 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x225b3a44 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x25468427 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3e07bc7e fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4322d7fb fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6966ceea fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa03fb617 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa77da85b fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbaca2097 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbca90a04 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd5e133da fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf1127505 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c6797de sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e17ecd8 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x15fdfb5c scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x26eec938 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x270ce168 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2e87a10b sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a28d78b sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56bcaa21 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6622a779 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x66ed86e3 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ebea2e5 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73024ccc sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7964012a sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x84c4c22f sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8c482577 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x98a17705 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9ed1aaa0 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaabe9011 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4cf755e sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbcaa8683 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd33fd821 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdda6b181 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe1167663 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe7ee1c48 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf5e9e598 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfba5b272 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3b12a0a4 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x915b8443 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb858f16c spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc305d249 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc4363dd6 spi_attach_transport +EXPORT_SYMBOL drivers/ssb/ssb 0x0a3e47df ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x13d7f5a0 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x1665db58 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x2b607fe2 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x2d9281a0 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x450acfb3 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x63944977 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x66643c56 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x6d73cbdb ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x7a2d7bc6 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x83a8dbc3 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x84b24af7 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x86aea8be ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x94627ea9 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa879b5a4 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xb58a408e ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xedb48e11 ssb_bus_pcibus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xee03b118 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xf4e53e17 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xf76f6e9c ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xff55a85d ssb_bus_unregister +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x2c671ff1 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x2d1eb07c adt7316_enable +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x9c28ef81 adt7316_remove +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xc7ccae89 adt7316_disable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x040b8103 iio_push_event +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x07fa3658 iio_buffer_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x0f0e4fb8 iio_buffer_write_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x13c1cd05 iio_device_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x18786274 iio_trigger_notify_done +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2b64aa3e iio_buffer_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2c973235 iio_free_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x362f5ea7 iio_buffer_show_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4587796c iio_buffer_read_bytes_per_datum +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4ce17f57 iio_bus_type +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x5db0580e iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x67a37736 iio_buffer_init +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x680de93a iio_device_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x717a7ebb iio_allocate_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x855d2820 iio_sw_buffer_preenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x8ab0d0fa iio_read_const_attr +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x9f6ca4e0 iio_buffer_read_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xa25030e5 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xaaaafd31 iio_allocate_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb18ab37d iio_free_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd67c0366 iio_trigger_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xe825e7b7 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xef6e5945 iio_buffer_store_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf1941853 iio_trigger_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xfba36cf4 iio_trigger_poll +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x2d6fa84c iio_kfifo_free +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xb2581c6e kfifo_access_funcs +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xf8a1218e iio_kfifo_allocate +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x504ca064 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xc4db2c5f ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x08b0aa7e iio_sw_rb_free +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x2dd3a72f ring_sw_access_funcs +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x830855db iio_sw_rb_allocate +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xca118be1 cxd2099_attach +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x058873aa go7007_alloc +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x1adb9305 go7007_snd_init +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x3b0fd11a go7007_parse_video_stream +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x53932ccd go7007_boot_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x5696dc27 go7007_register_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x81a8fc25 go7007_read_interrupt +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x854686c0 go7007_snd_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xc2bd5ad0 go7007_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xf0250b8d go7007_read_addr +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11c090b1 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b232d74 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b2d3522 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c114662 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c23860d ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21d3ee5a notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2363098c Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23e9d5f6 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2de266dd DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30643707 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3266071c ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3445c053 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c34eb84 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cbb989d ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41d69ae9 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42722153 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4417cb77 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44227c5c ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4628b7e9 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x463d4eb8 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4ae7262d ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51f1f396 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x630d1231 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63d7e2b0 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64823d03 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69d35198 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c32c8b5 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ceaf36e SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76dfbb0c ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x784e4def ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a396cc4 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x815c4a8b ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8323eb96 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x889bd76b ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a944933 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8fe67ee3 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x958e0394 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x977d7ab9 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4953798 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf917017 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb711ad3f ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbab8492d ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc1075d0e ieee80211_send_probe_requests_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7594dfd ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcdb7969b ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf681aa2 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcfe3e90d Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd6a19482 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb953d11 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe20ad3c3 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee3d98d1 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee5f77eb IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef17202a ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf9d317ed HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb357c4e ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcdcffc5 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x04d4945a transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x064aacae sas_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ac335ae target_fabric_configfs_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e924eb0 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x13f9a23d fc_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x17cff8dd target_get_task_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1aad460a core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x1bc7c009 transport_init_queue_obj +EXPORT_SYMBOL drivers/target/target_core_mod 0x1cba355f transport_generic_process_write +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e4fce96 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x209159aa core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x28e54917 transport_complete_task +EXPORT_SYMBOL drivers/target/target_core_mod 0x2987fa47 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f2985c6 fc_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ff5af68 fc_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x33fa09e4 core_tpg_clear_object_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x35c20ef6 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x361f895e transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x380d696c core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x38104720 fc_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x389603fb transport_add_device_to_core_hba +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a8b7d95 sas_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x4926a418 iscsi_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x49783086 transport_generic_allocate_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a0f1659 transport_generic_handle_data +EXPORT_SYMBOL drivers/target/target_core_mod 0x4bfc43d4 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e2fb87d iscsi_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b2088f3 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x648f10a7 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x65370aa7 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ad049a4 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x6fe83cbd core_tpg_add_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x71f566b1 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x77426bfe transport_subsystem_release +EXPORT_SYMBOL drivers/target/target_core_mod 0x78765f32 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x8085f1e1 target_fabric_configfs_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x80b26561 core_tpg_del_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x84d786d4 target_fabric_configfs_free +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x87011a27 transport_generic_handle_cdb_map +EXPORT_SYMBOL drivers/target/target_core_mod 0x95031927 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x9527c8c7 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x952804a9 transport_do_task_sg_chain +EXPORT_SYMBOL drivers/target/target_core_mod 0x95462eff transport_generic_map_mem_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa10a7fa8 transport_complete_sync_cache +EXPORT_SYMBOL drivers/target/target_core_mod 0xacbc8606 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xad9fc15e transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7e0b312 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc10af3ec target_fabric_configfs_init +EXPORT_SYMBOL drivers/target/target_core_mod 0xc791df6e sas_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb624567 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4fba473 transport_subsystem_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xd80782b8 iscsi_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xde739e69 sas_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1191bba transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xe74f5b07 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe92a4dda transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xec0c81a7 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6b98527 iscsi_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9f27ef9 target_splice_sess_cmd_list +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbcbeb30 transport_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe3b375f transport_free_session +EXPORT_SYMBOL drivers/telephony/ixj 0x4697541e ixj_pcmcia_probe +EXPORT_SYMBOL drivers/telephony/phonedev 0x4d910db9 phone_register_device +EXPORT_SYMBOL drivers/telephony/phonedev 0x5fec00fa phone_unregister_device +EXPORT_SYMBOL drivers/tty/serial/8250 0x05bd5a55 serial8250_do_set_termios +EXPORT_SYMBOL drivers/tty/serial/8250 0x44f05630 serial8250_register_port +EXPORT_SYMBOL drivers/tty/serial/8250 0x846c1e45 serial8250_set_isa_configurator +EXPORT_SYMBOL drivers/tty/serial/8250 0x8a9f3262 serial8250_do_pm +EXPORT_SYMBOL drivers/tty/serial/8250 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL drivers/tty/serial/8250 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL drivers/tty/serial/8250 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xcc311b27 sl811h_driver +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xa64a4cea usb_nop_xceiv_unregister +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xd0e43207 usb_nop_xceiv_register +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x001a8caf usb_wwan_set_termios +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x06676b8f usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x07351b21 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x36adce3f usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x443b6280 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4737bbb8 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4af89939 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8753afe2 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x89fa700f usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x940e8c9d usb_wwan_release +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xab257d23 usb_wwan_disconnect +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xab551c4b usb_wwan_startup +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc8a845db usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd95234c7 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfff3a601 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xbaf435c4 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xea30907d usb_serial_suspend +EXPORT_SYMBOL drivers/video/backlight/generic_bl 0x366d19ef genericbl_limit_intensity +EXPORT_SYMBOL drivers/video/backlight/lcd 0x40931174 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc5854255 lcd_device_register +EXPORT_SYMBOL drivers/video/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/cyber2000fb 0x71d8818e cyber2000fb_attach +EXPORT_SYMBOL drivers/video/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/display/display 0x92f0c567 display_device_unregister +EXPORT_SYMBOL drivers/video/display/display 0xe237eff9 display_device_register +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0xb9411de3 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0xc86da2a4 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0xe901433d g450_mnp2f +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x3f062b05 matrox_mystique +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x914c3a92 matrox_G100 +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xf6462f91 DAC1064_global_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xf743f4b9 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_Ti3026 0x82171c42 matrox_millennium +EXPORT_SYMBOL drivers/video/matrox/matroxfb_accel 0x875da3fd matrox_cfbX_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x13340527 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x5a0daab3 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x7f9f4c72 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0xd52efd13 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0x1e9bedd4 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0xe2d3e441 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x0f67b3aa matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x581784c2 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x87d18b10 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x91e30408 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x93dca71f matroxfb_read_pins +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xabd8e427 matroxfb_var2my +EXPORT_SYMBOL drivers/video/mb862xx/mb862xxfb 0x118a86cc mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/output 0xbbe8f980 video_output_register +EXPORT_SYMBOL drivers/video/output 0xd38bcf2c video_output_unregister +EXPORT_SYMBOL drivers/video/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/svgalib 0x1b95c56a svga_check_timings +EXPORT_SYMBOL drivers/video/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/svgalib 0x4bf68cbb svga_get_tilemax +EXPORT_SYMBOL drivers/video/svgalib 0x549b03a1 svga_set_timings +EXPORT_SYMBOL drivers/video/svgalib 0x5a053d3a svga_settile +EXPORT_SYMBOL drivers/video/svgalib 0x6d2cc101 svga_tileblit +EXPORT_SYMBOL drivers/video/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/svgalib 0x82c6ca84 svga_tilefill +EXPORT_SYMBOL drivers/video/svgalib 0x9e45322b svga_tilecopy +EXPORT_SYMBOL drivers/video/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/svgalib 0xd38c60ff svga_tilecursor +EXPORT_SYMBOL drivers/video/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/svgalib 0xec83c473 svga_match_format +EXPORT_SYMBOL drivers/video/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/svgalib 0xefa41068 svga_get_caps +EXPORT_SYMBOL drivers/video/syscopyarea 0xe8939dfc sys_copyarea +EXPORT_SYMBOL drivers/video/sysfillrect 0x917ea199 sys_fillrect +EXPORT_SYMBOL drivers/video/sysimgblt 0xf3f6530a sys_imageblit +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x01356334 w1_bq27000_write +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x531c9115 w1_bq27000_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x07cbdfb0 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x4c497ba7 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xad3a7903 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe8c35071 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x7db7c336 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa426c648 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xbcaf8224 w1_ds2780_io_nolock +EXPORT_SYMBOL drivers/w1/wire 0x45d4860f w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x49740e5b w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x52ca0b21 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x68280261 w1_unregister_family +EXPORT_SYMBOL fs/configfs/configfs 0x00ace122 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x149e70c2 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x3c20289b configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x4bbbe581 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x73d33aee config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xa121705e configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xa51a56d8 config_item_init +EXPORT_SYMBOL fs/configfs/configfs 0xbc3c2b34 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xcc0c1b29 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xd8c1e754 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xeea5bc56 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xfcd1ee55 config_item_set_name +EXPORT_SYMBOL fs/exofs/libore 0x011500ad ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x2365dd41 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x6578cfdc ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x67b4cd0d ore_write +EXPORT_SYMBOL fs/exofs/libore 0x751e7d71 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x8b836877 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x91818b61 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x9ebcd0f2 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xbb74c52f ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xe41df286 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xefc3e69e ore_remove +EXPORT_SYMBOL fs/fscache/fscache 0x07d9b576 fscache_wait_bit_interruptible +EXPORT_SYMBOL fs/fscache/fscache 0x0a1155bd __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x11adeba6 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x12134c4b fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x13eda450 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x20b1fa39 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x2c123fd0 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x3fc23318 fscache_wait_bit +EXPORT_SYMBOL fs/fscache/fscache 0x51772cf1 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x52a60982 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x52c3d62f __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x75d0b5bf __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x7cfd9432 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x7d3f8f1b __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x86620a25 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x86f8894f fscache_object_states +EXPORT_SYMBOL fs/fscache/fscache 0xa4a83d47 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xb2da9a1e fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xc6532997 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc65c1a26 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc6af2836 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc7a583e8 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xc93f6e2c __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xcb9cbea8 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xcd9a0f55 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd1998d27 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xd295de19 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xde4fc950 fscache_object_work_func +EXPORT_SYMBOL fs/fscache/fscache 0xe267fc1b fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xf9e420cf __fscache_unregister_netfs +EXPORT_SYMBOL fs/nfsd/nfsd 0x0c8d6829 nfs4_acl_nfsv4_to_posix +EXPORT_SYMBOL fs/nfsd/nfsd 0x2095976a nfs4_acl_new +EXPORT_SYMBOL fs/nfsd/nfsd 0x35e33c1e nfs4_acl_write_who +EXPORT_SYMBOL fs/nfsd/nfsd 0x5a157ae4 nfs4_acl_get_whotype +EXPORT_SYMBOL fs/nfsd/nfsd 0xcbb738be nfs4_acl_posix_to_nfsv4 +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x107abee7 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1f68c277 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4e7932dd qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xab4955c8 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdf886e35 qtree_write_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0xa7587646 crc7 +EXPORT_SYMBOL lib/crc7 0xd80c3603 crc7_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x08924902 lc_get +EXPORT_SYMBOL lib/lru_cache 0x5c13f3da lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x5d279f45 lc_changed +EXPORT_SYMBOL lib/lru_cache 0x645cf5fe lc_put +EXPORT_SYMBOL lib/lru_cache 0x725659ce lc_del +EXPORT_SYMBOL lib/lru_cache 0x7cccfb50 lc_create +EXPORT_SYMBOL lib/lru_cache 0x7f93d734 lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x85a19037 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x909f9645 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x94eeff7e lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xb426467d lc_find +EXPORT_SYMBOL lib/lru_cache 0xbf4d1972 lc_set +EXPORT_SYMBOL lib/lru_cache 0xd379f8b4 lc_reset +EXPORT_SYMBOL lib/lru_cache 0xf14889db lc_element_by_index +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x7456cc61 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x315c65fd zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x48034724 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xaf64ad0d zlib_deflate +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf741c793 zlib_deflateEnd +EXPORT_SYMBOL net/802/p8023 0x58ec38ba make_8023_client +EXPORT_SYMBOL net/802/p8023 0xea6db870 destroy_8023_client +EXPORT_SYMBOL net/9p/9pnet 0x0f0bf770 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x36809588 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3e383626 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x3f01eb04 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x44241b84 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x47f13cec p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x4ad4ec07 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x4bfc2f28 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x4d017ba9 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x4d5b180f p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4d9022de p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x500a80b4 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x6a5bf9a3 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x6de9c4b5 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x6fafb80b p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x6fd58da4 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x7138d4ea p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x75c911cc p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x80ec6f42 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x834ec15d p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x849003f0 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x8e8b53eb p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x90e89b01 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x9334ad19 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x977a0030 p9_nr_pages +EXPORT_SYMBOL net/9p/9pnet 0x98e2d778 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x9a93d4b9 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9c964743 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x9f1cc692 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa5e96d87 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xa7f444e2 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xaa96af72 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xacfd3073 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb02d509f v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xb24d77c1 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xb4e90306 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xb7c543de p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xc185552f p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc56883bd p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xca0d9cc8 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xca733228 p9_payload_gup +EXPORT_SYMBOL net/9p/9pnet 0xcae841fd p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd00fac5a p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf683eda7 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x3b837987 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x6bde5be7 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xac56f15a aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xcb5bee39 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x030c4642 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2d1e615b register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2d856876 atm_charge +EXPORT_SYMBOL net/atm/atm 0x63b0e628 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x71732c7d atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x881f2b09 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x8b44c493 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x9896d888 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xc8fce4a8 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xc922d547 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xd8584410 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xd97f3f3e atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xe3f5f337 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x026c1368 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x04755b85 ax25_hard_header +EXPORT_SYMBOL net/ax25/ax25 0x19594266 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x49ab5314 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4bd662ee ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x60b537f8 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x7766e0dd ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x7cb51bbc ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x817c22b4 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x940801f8 ax25_rebuild_header +EXPORT_SYMBOL net/ax25/ax25 0x9ded223d ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/bluetooth/bluetooth 0x06cc0a4b hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12b6087a bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16cf220d bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1e7f1078 hci_send_sco +EXPORT_SYMBOL net/bluetooth/bluetooth 0x20749a6a bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x26fce761 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b0177f1 hci_le_conn_update +EXPORT_SYMBOL net/bluetooth/bluetooth 0x308ef13f hci_find_link_key_type +EXPORT_SYMBOL net/bluetooth/bluetooth 0x316ad5d9 hci_le_start_enc +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37714cf2 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f268061 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b599289 bt_printk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4c57461a hci_conn_check_link_mode +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53b63a0d bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x586961af hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a8d4b74 hci_send_acl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c33e14c hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e4825e1 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e97abf4 hci_unregister_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f91750d hci_recv_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0x709993b3 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e9a3e8d hci_conn_hold_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91a8a353 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x92fb4fd2 hci_conn_put_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x97a877b1 hci_register_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9bd74341 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e9bf80f hci_conn_change_link_key +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa12e4c31 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6abb293 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa70de8f2 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xab6a2fab bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xad8f11e9 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xae71a961 hci_le_ltk_reply +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb1271afd hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb149cee8 hci_find_ltk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb69b812b hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2066af0 batostr +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9ad9005 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd17011f0 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5185bde hci_connect +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdda67c78 hci_recv_stream_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf19294db bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xff5142f9 hci_recv_frame +EXPORT_SYMBOL net/bridge/bridge 0x81f84b28 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xba72eef7 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc8c4b2a8 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xddaaff23 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x18fcca4e get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x2d2bc9c6 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x35b49017 caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x504da5e8 cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x55ac2cb2 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x5807d88d caif_free_client +EXPORT_SYMBOL net/caif/caif 0x63e9812a cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x88d4afd0 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x1093a152 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x1a439b38 can_rx_register +EXPORT_SYMBOL net/can/can 0x1e76d8d8 can_send +EXPORT_SYMBOL net/can/can 0x31ff3ac2 can_ioctl +EXPORT_SYMBOL net/can/can 0x743cd3c8 can_proto_register +EXPORT_SYMBOL net/can/can 0xaa804773 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x048218e4 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x0517dba3 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x0655e045 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0e3d0216 ceph_calc_object_layout +EXPORT_SYMBOL net/ceph/libceph 0x10940306 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x11fecc06 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1621faca ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x166e35cc ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x195657f6 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x197effcb ceph_osdc_release_request +EXPORT_SYMBOL net/ceph/libceph 0x1e249e9b ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x255662ce ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x3158173e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x3263f473 ceph_copy_page_vector_to_user +EXPORT_SYMBOL net/ceph/libceph 0x33f2d647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x3514dd35 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3e1f462a ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x433ead25 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x43c8d341 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x45bc4f31 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x49a119bf ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x50fb667b ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x54767ce8 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x58cc66b7 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x5fe4b2fa ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x67731419 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6a24c6a6 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x6d2d06a1 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x6dc5175d ceph_osdc_stop +EXPORT_SYMBOL net/ceph/libceph 0x6ed41be2 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x74daee66 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x762abedb ceph_monc_create_snapid +EXPORT_SYMBOL net/ceph/libceph 0x77692acb ceph_msg_last_put +EXPORT_SYMBOL net/ceph/libceph 0x8a2307b6 ceph_osdc_unregister_linger_request +EXPORT_SYMBOL net/ceph/libceph 0x92af4f03 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x933985a9 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x93e86469 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9f73792b ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa3153f6e ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xa40bd703 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xa4fe07b7 ceph_calc_raw_layout +EXPORT_SYMBOL net/ceph/libceph 0xac812b45 ceph_messenger_create +EXPORT_SYMBOL net/ceph/libceph 0xacc826a6 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xaed4c4b1 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb1cffa11 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xb289f443 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xba95d3cb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xbbe6917c ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xc24254cf ceph_osdc_init +EXPORT_SYMBOL net/ceph/libceph 0xc27c92eb ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xccdb8b01 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xd01b645a ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xd11dded8 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd3737e30 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xd4a22c35 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xde92d0d2 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xe27115f5 ceph_osdc_wait_event +EXPORT_SYMBOL net/ceph/libceph 0xe2b7514c ceph_messenger_destroy +EXPORT_SYMBOL net/ceph/libceph 0xf36245ec ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xf48c77c2 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf709e50c ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf84377db ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xfb686002 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xff08def9 ceph_compare_options +EXPORT_SYMBOL net/ieee802154/ieee802154 0x02f0d234 ieee802154_nl_beacon_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0be894fe wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3694fe24 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x47556fe8 ieee802154_nl_disassoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5d869d0f wpan_phy_alloc +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6cd3904f wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9494c809 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xab8f2568 ieee802154_nl_assoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbd87e266 ieee802154_nl_scan_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xca32e3b3 ieee802154_nl_start_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xda1887e0 ieee802154_nl_assoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xda4fcfbd ieee802154_nl_disassoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfe4f8c85 wpan_phy_find +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x11eb479b arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x477897b2 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5bb36fdd arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4f024a7f ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xdc223e5e ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf56e3c92 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x090e6a33 nf_nat_protocol_register +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x5c3c3fb5 nf_nat_setup_info +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x7969788a __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xb839b193 nf_nat_protocol_unregister +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xcf1302b5 nf_nat_follow_master +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xcfe0c26c nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xe992e088 nf_nat_used_tuple +EXPORT_SYMBOL net/ipv4/tunnel4 0x7341b7b5 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x974be864 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2682f98b ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x2ccdc1f5 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb139eef6 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8bddf33 ip6t_ext_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xebf4cc42 ipv6_find_hdr +EXPORT_SYMBOL net/ipv6/tunnel6 0x092c7000 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xcc4f73bc xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x376010d2 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x827f280c xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x173c5b01 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x17b51f2e ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x40e8d768 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4c119a6c ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5af188a8 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8cfb0691 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb71046fe ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe5afca11 ircomm_connect_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x1513f70f irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x157e4c8b irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x1f07cc37 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x2036ad06 irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x34363517 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x38a20e5b irda_debug +EXPORT_SYMBOL net/irda/irda 0x38fb0588 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x4a6b2b87 irlap_open +EXPORT_SYMBOL net/irda/irda 0x4e684819 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x65b7967e irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b5fbcef hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x7556fbb8 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x79ea8fbc iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x915be268 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x993ad14b irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa4262521 irlap_close +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xab8297e9 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xac7ad22e iriap_close +EXPORT_SYMBOL net/irda/irda 0xad994464 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xb3588422 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbd65ac56 proc_irda +EXPORT_SYMBOL net/irda/irda 0xbdb9511b irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc074b348 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xc13e2351 iriap_open +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcbf04c11 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xcf732af0 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xedb17eb0 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf2c23994 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xf39b7fe0 irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xf7d73a3f irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xfce096b2 irttp_flow_request +EXPORT_SYMBOL net/l2tp/l2tp_core 0x484f5c1a l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x231b32bf lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x34944c5c lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x4e0610aa lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x54a990ff lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x744b9b27 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x94560d8d lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x9dc481dd lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xd05d1c56 lapb_data_request +EXPORT_SYMBOL net/mac80211/mac80211 0x004a45dd ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x078b524a ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x098f66d6 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x11f77518 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x1272278e ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x14830bd3 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x14d2a0a4 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x17217a33 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1c9992ab ieee80211_get_operstate +EXPORT_SYMBOL net/mac80211/mac80211 0x26503283 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x2d59d4f9 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2dfe0790 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x2ec66c42 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x307c0f31 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x359f1e77 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x36b247eb ieee80211_alloc_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3b2124ad ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x3c4bdf89 ieee80211_enable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x40cb0924 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4fb39646 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5b98a681 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x5c28cca5 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x5d64ede4 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x61993ef3 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x628dd752 ieee80211_napi_schedule +EXPORT_SYMBOL net/mac80211/mac80211 0x63caa554 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x6503ef71 ieee80211_sta_eosp_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x65b89bea ieee80211_rx +EXPORT_SYMBOL net/mac80211/mac80211 0x6a131db0 ieee80211_disable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x6d15e103 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x710586c0 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x75379bef ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x7b499581 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x82297f2f ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x8491d6ee ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8d1e5b27 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x922daf18 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x951be6c2 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x97f3777e __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9b4a59b3 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xa4241970 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xa7d8f0e5 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa91da16b ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xaa157485 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xaa2ab377 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xb7be2040 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xbb618557 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xc06602ac ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xc0ad7297 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc3aa19d6 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xc7e9782e ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xce17e037 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xce739e34 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xd5142fbb ieee80211_napi_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xd67bdef7 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xdab400c6 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdb290e6f ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xddb47d52 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe069e7c5 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe09462b9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe570c520 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe7a0eb02 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xeba14d72 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xedfd35cb ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf3a1dea4 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfb3e00e4 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xfc3d6229 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xfd1efe6e ieee80211_queue_work +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1571d9b6 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x19bcb2a1 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f475fbd register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2c151ca4 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x486b2520 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7f75e45b ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8f2ac4a0 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa1a5a0bd ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa1dbc2d8 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb47f5baf ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbcfc05e0 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbe102238 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd6a09939 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe13b69cc ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf769fb38 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x8e6e8a46 __nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xca22032f nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd63f77ff __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_proto_gre 0x4f78337b nf_ct_gre_keymap_flush +EXPORT_SYMBOL net/netfilter/x_tables 0x08c473b7 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x2a6ea5de xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x30d91c68 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x34723cef xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x4b70720c xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x65521526 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x89210a67 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x9c8dbc7f xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xad4b9f98 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xb28f5ef1 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xde1d8898 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xee1da150 xt_unregister_target +EXPORT_SYMBOL net/nfc/nci/nci 0x03267e6e nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x04c137d7 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x097dddde nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xce2ad38d nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xd33fb579 nci_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x1b149b37 nfc_alloc_skb +EXPORT_SYMBOL net/nfc/nfc 0x259617ac nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x2cf1913e nfc_printk +EXPORT_SYMBOL net/nfc/nfc 0x35ca300f nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x4b575df8 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x5445f3e5 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xad7e605f nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xc464719b nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xc9946153 nfc_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x0fc42068 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x24358a5f pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x277a35f7 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x70539039 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x79cf80b5 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x8f5581db pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xb8298b47 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xefc813af phonet_stream_ops +EXPORT_SYMBOL net/rds/rds 0x5031b8c5 rds_str_array +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x136388aa rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x14ce7b13 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1f85f310 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x34e0e329 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x45fefb5f rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5303cbd6 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x79f4d26f rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x86bf1cfd rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x97eebaa1 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb9e7c781 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbed40e61 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc536e133 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd3b49e7b rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdcdbeba7 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xed0a7a26 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf6a22a68 svc_pool_stats_open +EXPORT_SYMBOL net/wanrouter/wanrouter 0x0ebe03d1 unregister_wan_device +EXPORT_SYMBOL net/wanrouter/wanrouter 0xfb02277a register_wan_device +EXPORT_SYMBOL net/wimax/wimax 0x474d91a0 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x56c35181 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x035e150c wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x06d82049 wiphy_new +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0f74ef2f cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x10411a86 ieee802_11_parse_elems_crc +EXPORT_SYMBOL net/wireless/cfg80211 0x12459537 cfg80211_testmode_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1348f2b0 cfg80211_send_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x15b00894 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19ecc7ec ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x1b03d1ea __cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x1bd864bf cfg80211_send_rx_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x1d15d4f0 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1d6072ad __cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x22ec80f9 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x2468100e wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x24b3f6be cfg80211_inform_bss_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x25a9cbd5 cfg80211_send_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x25fd1707 cfg80211_testmode_event +EXPORT_SYMBOL net/wireless/cfg80211 0x2edf7d69 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x3a11b7e2 cfg80211_send_rx_auth +EXPORT_SYMBOL net/wireless/cfg80211 0x3a4c76b8 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x413dbd87 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x42aa802a cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4fb89df7 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x51f1f8a2 cfg80211_send_unprot_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x57cb015a cfg80211_testmode_reply +EXPORT_SYMBOL net/wireless/cfg80211 0x5e359d2b cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x5ebf9e2d cfg80211_del_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x5f2fc751 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x65390fda __cfg80211_auth_canceled +EXPORT_SYMBOL net/wireless/cfg80211 0x69831ace cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6b44e5b0 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x6e12a915 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x7249c86d cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x7513e94e ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x78aafd68 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x7e395243 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8bfff4e9 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x8ff3a118 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x91f6eb8a cfg80211_send_unprot_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x97ec3aae __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x989a0284 cfg80211_get_mesh +EXPORT_SYMBOL net/wireless/cfg80211 0x9c08d6ce cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x9ce6a923 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x9d6c6296 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xa8e9d507 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xaca2426f regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xadce8c2a cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb3701d02 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb44cab74 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xc0d6efb0 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xcceced7d cfg80211_testmode_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd545ec5a cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xd6a69724 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xd7779230 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd7ac9566 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe0a8c094 cfg80211_inform_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf24c394c cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf3d44dc9 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xf70b9386 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xf9555cfc cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x0a2e7970 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x25927f97 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x2d0f99e5 print_ssid +EXPORT_SYMBOL net/wireless/lib80211 0x3321d313 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x6d720eb6 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xa6e37c54 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xcb7170db lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x7409d9ff ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x581a81a7 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x31cd2b07 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3440d26e snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x4d2e272b snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x826cee69 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x168a88ab snd_seq_device_register_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3a57f235 snd_seq_autoload_unlock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x834a55dc snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xb90668b2 snd_seq_autoload_lock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xc622fb29 snd_seq_device_unregister_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x072d978b snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x13a17752 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2eed26bf snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x4d5ca523 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x592f6e9b snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd7c7afcc snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe60fb228 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xecbde43c snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x3e0c8ab3 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0467fde2 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x0d9b6aec snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x240752de snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x288a6bb6 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x29b6aa91 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x2d29a1f5 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x2dbb5b5a snd_card_create +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3a7185af snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x3ad4459e snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x3b710e0e snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x4223a016 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x42c6b5e3 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b015768 snd_iprintf +EXPORT_SYMBOL sound/core/snd 0x4b38a920 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x4d36b0ac snd_component_add +EXPORT_SYMBOL sound/core/snd 0x50d46204 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x5aec1745 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x607bcfd1 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x615b3e95 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x624e4de5 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x6aae0652 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x6c982a38 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x6ccd7af2 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x6ea123f5 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x74d66154 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x77db5184 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x78287637 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x7b1328bf snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x82a7b004 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x8394fc54 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x85b977ac snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x8ba996b5 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x916cd4da snd_device_free +EXPORT_SYMBOL sound/core/snd 0x9ad927c6 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x9bef0417 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x9cee26e2 snd_add_device_sysfs_file +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa12624a4 snd_cards +EXPORT_SYMBOL sound/core/snd 0xabfc6402 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xac572a3d snd_device_new +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb8e57c07 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xbe043e89 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xc1c3e286 snd_register_device_for_dev +EXPORT_SYMBOL sound/core/snd 0xc9b88f7f snd_card_proc_new +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd1157735 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xd1fd8d6c snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xe86698b0 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xe89973df snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xf0b085f1 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xf1148404 snd_ctl_add +EXPORT_SYMBOL sound/core/snd-hwdep 0x4979b3d6 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-page-alloc 0x002522d5 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-page-alloc 0x0f1b7d97 snd_dma_reserve_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0x14c7fbdf snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x31f51d8e snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x93b1ea74 snd_dma_get_reserved_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x094519f7 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1e94dc62 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x1eefa65e snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x2e722074 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x3361ff48 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x33b583e9 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x36f495ab snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x40232461 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x490eca0e snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x50d86940 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60127993 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x6091a028 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7095e393 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x75568b32 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x7907afb1 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x7b261250 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7ba13762 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x7e3ce71e snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x89b78319 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x93041f45 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xa0dc71c4 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xacc1a6cc snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xafbe3d23 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xafd34d85 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xaff343c3 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbf571810 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xbf9ce906 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xc15dd9c6 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xc4fafd84 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xcceaa4cf snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xcf5d3825 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b9b8b8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd20dce03 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xd5fb21a2 snd_pcm_link_rwlock +EXPORT_SYMBOL sound/core/snd-pcm 0xd7dfff57 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xd8412395 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xd8d08cb0 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xe29f0aee snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xeb5444dc snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xf3797152 snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xf4ace571 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xf943f64f snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xf9d479be snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xffd7fb35 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-rawmidi 0x189246ed snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1fbfe89a snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f57e03a snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c5059c8 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x551736bf snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x55636f65 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7ef853fe snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8817efbc snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8920d597 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa15ad2d1 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb60ea472 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc7859e82 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdd49b599 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdf894c17 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe273ee37 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xeeec4a88 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf0362f39 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-timer 0x35abc009 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x4f7461f2 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x5cbcc569 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x5e72153a snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x7c129c58 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xa88440d1 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xae81d646 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xbbe615e8 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xc9943f81 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xe23a7134 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xe66af518 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xe8bf4ac6 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xf0692ccc snd_timer_stop +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x8aef8681 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x056bcf8e snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0ba5d531 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x229cf7e4 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x34fdbc42 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3ae748cf snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4fbd4c92 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5613f3c8 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9708a60c snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x986bb441 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x294dbf92 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x37ce3870 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3831267d snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x74b57eb2 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x798a5df5 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x84a9d106 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x84fff1dc snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xce2f52d8 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe22f2161 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04e5e399 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0b2f8141 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19f462e6 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1c6d3063 amdtp_out_stream_set_pcm_format +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x240aa1f2 amdtp_out_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2db88e40 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3624bac6 amdtp_out_stream_set_rate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x41625ad7 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x438f3c9a amdtp_out_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47b466b3 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x506ad875 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5d4f4443 amdtp_out_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6da1f62a fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x70bfd430 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c4252c0 amdtp_out_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8caed21f fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8ece76c9 amdtp_out_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c94c8a9 amdtp_out_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7d0be6c amdtp_out_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5afbc38 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd5fd8287 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd74bc7a rcode_string +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe0633111 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed92b824 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef62c608 fw_iso_resources_update +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0b6980a1 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1c97879c snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x78a74009 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa54ea849 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdca9d139 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfc0e1154 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x354d81c0 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x39a2b09c snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8d9604c1 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa3112c17 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb1417d7e snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe78609ca snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x312b821d snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x81ca05a8 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x85298ea2 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xdedd48b9 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x86e5f171 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xfd441bf4 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0x55b69e1c snd_tea575x_init +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0xe8b8e7af snd_tea575x_exit +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0e43eb47 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x412663f2 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x54d06c3a snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x81fbfff4 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa430f85d snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbff003b4 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc779ec4b snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xced21c9f snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd850d080 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe824f6e6 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xeaf50a58 snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x492838a0 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5d4289ff snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x72a7977c snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7dc160c9 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9b8c8c71 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbae65d04 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbb6f708f snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbdd049c9 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xca6dc67b snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe24b4093 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x1480d9ba snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xa865cf21 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xf039ad7b snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0f9a11ab snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x105c0c89 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x25871ea3 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x353b0642 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3d0bf6cf snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x846efb92 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8ac99116 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9d2ad404 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa3b9620e snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb4ef5336 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xba50999b snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc0815697 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcc4ac22d snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xce616f98 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdc283365 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeb7e7543 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xef86fd31 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x06346cb0 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x38c91223 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x441eaf5a snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x86d37d7c snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8f0ee896 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9820a733 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb8ef5036 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdfabc671 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe93dd997 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/hda/snd-hda-codec 0x91e9b9ff snd_hda_parse_generic_codec +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x44d1ba7d snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc183e436 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc66ab546 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x023019dd oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x085d8548 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15f54f8d oxygen_pci_resume +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x200cc984 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x36db630f oxygen_pci_suspend +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x39a83eae oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3cac9163 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x41238635 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x52c360c6 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x54ba4026 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6919bc0d oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x71f28237 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8241c9e4 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x83d51bf1 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x86b38958 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8afe9ec6 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9e4cdd4c oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa23497b0 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4447d89 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcce5d1b2 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xef98d2c7 oxygen_write32 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x34f86491 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x38aff4ee snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbb728a8c snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc13ef9d5 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf1739da8 snd_trident_free_voice +EXPORT_SYMBOL sound/soundcore 0x24a60839 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x49d408ce sound_class +EXPORT_SYMBOL sound/soundcore 0x6baeaca4 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7489a925 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x920f80a7 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xb234f162 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x132effc0 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x397673d3 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7e10065d snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x808d6fb0 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x88929909 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd3f3853d snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0f47d69f snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x67c2654c __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6c7c88b8 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9da7ec06 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xac6e8867 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xbd5147d9 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xddbf95c6 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xf0353efc snd_util_memhdr_new +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x7e6c5210 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00000000 softirq_work_list +EXPORT_SYMBOL vmlinux 0x000ec497 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x00234ba6 eth_header +EXPORT_SYMBOL vmlinux 0x002de09c vfsmount_lock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x002f9312 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x00351e05 scsi_allocate_command +EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x00491115 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x005ff2a0 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x00801678 flush_scheduled_work +EXPORT_SYMBOL vmlinux 0x0084e86d unregister_shrinker +EXPORT_SYMBOL vmlinux 0x0099e59c framebuffer_release +EXPORT_SYMBOL vmlinux 0x00a4f8ad fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x00e8097b csum_partial_copy_fromiovecend +EXPORT_SYMBOL vmlinux 0x00f139de __page_symlink +EXPORT_SYMBOL vmlinux 0x00f42699 files_lglock_global_unlock +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x012527c9 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x013ab943 bdevname +EXPORT_SYMBOL vmlinux 0x014073dc have_submounts +EXPORT_SYMBOL vmlinux 0x014efe2a scsi_device_get +EXPORT_SYMBOL vmlinux 0x0156d327 unload_nls +EXPORT_SYMBOL vmlinux 0x0159414d unbind_con_driver +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x01902adf netpoll_trap +EXPORT_SYMBOL vmlinux 0x019aacd4 dst_destroy +EXPORT_SYMBOL vmlinux 0x019e7765 __init_rwsem +EXPORT_SYMBOL vmlinux 0x01a8e837 d_validate +EXPORT_SYMBOL vmlinux 0x01afe2d7 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x01b58f95 bio_integrity_set_tag +EXPORT_SYMBOL vmlinux 0x01bef72a gen_pool_free +EXPORT_SYMBOL vmlinux 0x01cc7b9d ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x022b3c23 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x022ee7ca napi_frags_finish +EXPORT_SYMBOL vmlinux 0x02638406 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x02869a0d input_open_device +EXPORT_SYMBOL vmlinux 0x0297c4f1 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02a8bd02 alloc_disk +EXPORT_SYMBOL vmlinux 0x02d81845 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x02ee2344 __dst_free +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x030d80c0 sg_miter_start +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03442abd qdisc_list_del +EXPORT_SYMBOL vmlinux 0x034f9e73 param_ops_byte +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03921645 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x03944ac5 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x039dbc18 posix_lock_file +EXPORT_SYMBOL vmlinux 0x03b1cb42 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x03c06156 bitmap_fold +EXPORT_SYMBOL vmlinux 0x03e4913b scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x03e4e4e1 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x03eb2b3c i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x041a457d security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x042eb32f write_inode_now +EXPORT_SYMBOL vmlinux 0x044e9f91 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x0479acad dquot_destroy +EXPORT_SYMBOL vmlinux 0x0479ae71 set_create_files_as +EXPORT_SYMBOL vmlinux 0x047c4ba6 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x0486719f tty_port_put +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x0488eab1 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x04aa9f60 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x04aec831 scsi_add_device +EXPORT_SYMBOL vmlinux 0x04d7a8d5 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x04e7f512 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f23fbd inode_init_owner +EXPORT_SYMBOL vmlinux 0x05036737 set_page_dirty +EXPORT_SYMBOL vmlinux 0x0521b2ee set_current_groups +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052fd52d d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x053e68ae xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x054434d6 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x054aa6de dev_get_stats +EXPORT_SYMBOL vmlinux 0x055b4adb directly_mappable_cdev_bdi +EXPORT_SYMBOL vmlinux 0x0562e66d dev_uc_add +EXPORT_SYMBOL vmlinux 0x057ce975 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05aebad5 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x05d9fdcb tty_shutdown +EXPORT_SYMBOL vmlinux 0x05fd96cb cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x060db32b ip_defrag +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061b1bb2 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0649dcbe skb_trim +EXPORT_SYMBOL vmlinux 0x06689868 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x06759848 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x069fe6b3 serio_interrupt +EXPORT_SYMBOL vmlinux 0x06bbb24a mempool_resize +EXPORT_SYMBOL vmlinux 0x06d5b3fc linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x06f3e1fe phy_connect +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x07285e80 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x0748e565 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x074989f8 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x07854123 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x0799aca4 local_bh_enable +EXPORT_SYMBOL vmlinux 0x07a0acf6 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d9b783 scsi_nl_send_vendor_msg +EXPORT_SYMBOL vmlinux 0x0819e7d3 skb_copy_and_csum_datagram_iovec +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x088bde6d scsi_device_resume +EXPORT_SYMBOL vmlinux 0x08b0c8b6 tty_hangup +EXPORT_SYMBOL vmlinux 0x08db9091 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x08df0872 inet_bind +EXPORT_SYMBOL vmlinux 0x08ed0b62 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x090651d2 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x0948cde9 num_physpages +EXPORT_SYMBOL vmlinux 0x094b4dde input_allocate_device +EXPORT_SYMBOL vmlinux 0x0963e254 dquot_file_open +EXPORT_SYMBOL vmlinux 0x09678ac0 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x096e3b9e tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x09775cdc kref_get +EXPORT_SYMBOL vmlinux 0x097b86ba ip_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x09855912 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x098a856f jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09a22115 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x09b21526 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x09b86d1b generic_file_aio_write +EXPORT_SYMBOL vmlinux 0x09baadb9 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x09c13ef5 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e94a80 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x0a029d9b skb_copy_bits +EXPORT_SYMBOL vmlinux 0x0a245745 journal_release_buffer +EXPORT_SYMBOL vmlinux 0x0a2487e0 unblock_all_signals +EXPORT_SYMBOL vmlinux 0x0a268cb8 vfs_fsync +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a466495 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a566791 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x0a60f9ae thermal_cooling_device_unregister +EXPORT_SYMBOL vmlinux 0x0a77a671 kthread_stop +EXPORT_SYMBOL vmlinux 0x0aa6d478 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x0acb1a3c __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad35edc __block_write_begin +EXPORT_SYMBOL vmlinux 0x0b030a8a __vlan_find_dev_deep +EXPORT_SYMBOL vmlinux 0x0b066c0d mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b12ad55 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b420bd1 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5a9469 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x0b6362ca ps2_init +EXPORT_SYMBOL vmlinux 0x0b7086d9 param_get_short +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b90f1e0 clip_tbl_hook +EXPORT_SYMBOL vmlinux 0x0ba5f823 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x0bb7395a macio_request_resources +EXPORT_SYMBOL vmlinux 0x0bc255b1 pci_do_scan_bus +EXPORT_SYMBOL vmlinux 0x0bc3bf27 follow_down +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcf8edd seq_bitmap +EXPORT_SYMBOL vmlinux 0x0bd49012 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x0be17cdf d_find_alias +EXPORT_SYMBOL vmlinux 0x0bf31241 do_splice_direct +EXPORT_SYMBOL vmlinux 0x0bf97f20 key_validate +EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x0c21fe3e gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x0c32840f do_splice_to +EXPORT_SYMBOL vmlinux 0x0c36867a blk_run_queue +EXPORT_SYMBOL vmlinux 0x0c65e73c scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x0c76ac23 grab_cache_page_nowait +EXPORT_SYMBOL vmlinux 0x0c8c9e99 scsi_show_extd_sense +EXPORT_SYMBOL vmlinux 0x0c92e6b6 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size +EXPORT_SYMBOL vmlinux 0x0c9e3be4 give_up_console +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb60a68 security_inode_permission +EXPORT_SYMBOL vmlinux 0x0cbf1c90 pci_match_id +EXPORT_SYMBOL vmlinux 0x0d0ccffe bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x0d1dd5d8 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x0d2800f0 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x0d44751e kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d709903 llc_mac_hdr_init +EXPORT_SYMBOL vmlinux 0x0d7b7654 init_special_inode +EXPORT_SYMBOL vmlinux 0x0d7e6ad2 d_path +EXPORT_SYMBOL vmlinux 0x0d9dec01 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0daa0285 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x0dacb992 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x0db5bd0f user_revoke +EXPORT_SYMBOL vmlinux 0x0dbf38b8 mol_trampoline +EXPORT_SYMBOL vmlinux 0x0dca9540 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x0dd4b4a5 bio_pair_release +EXPORT_SYMBOL vmlinux 0x0e1ba89c tcp_connect +EXPORT_SYMBOL vmlinux 0x0e2741a3 bio_endio +EXPORT_SYMBOL vmlinux 0x0e36adac request_key +EXPORT_SYMBOL vmlinux 0x0e419e71 tcp_valid_rtt_meas +EXPORT_SYMBOL vmlinux 0x0e52592a panic +EXPORT_SYMBOL vmlinux 0x0e82e3aa llc_sap_open +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e951fca pm860x_page_set_bits +EXPORT_SYMBOL vmlinux 0x0eb31dd7 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x0ec4ce8f writeback_inodes_sb_if_idle +EXPORT_SYMBOL vmlinux 0x0ecacdd6 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x0ef20db1 kernstart_addr +EXPORT_SYMBOL vmlinux 0x0ef68077 lro_flush_pkt +EXPORT_SYMBOL vmlinux 0x0f1b0c39 journal_load +EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL vmlinux 0x0f4515ee fb_validate_mode +EXPORT_SYMBOL vmlinux 0x0f59f197 param_array_ops +EXPORT_SYMBOL vmlinux 0x0f5f6ac6 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x0f7f1a49 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb0e29f init_timer_key +EXPORT_SYMBOL vmlinux 0x101aeeb6 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x103a4f25 phy_attach +EXPORT_SYMBOL vmlinux 0x1061226d neigh_ifdown +EXPORT_SYMBOL vmlinux 0x1066046e ata_print_version +EXPORT_SYMBOL vmlinux 0x10764fb3 of_phy_connect +EXPORT_SYMBOL vmlinux 0x10960e49 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x10a17276 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x10bbc3f3 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x10cad6ea nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x10d9d048 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x10ea3406 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f28007 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x10f96cee md_write_start +EXPORT_SYMBOL vmlinux 0x1100d2c6 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11135656 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x11267875 scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x113fa2e7 search_binary_handler +EXPORT_SYMBOL vmlinux 0x1151b0f7 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x1160d05d get_gendisk +EXPORT_SYMBOL vmlinux 0x11633870 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x11663cec adb_register +EXPORT_SYMBOL vmlinux 0x11681920 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x1168725c bio_alloc +EXPORT_SYMBOL vmlinux 0x116ccd8c vfs_fstatat +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117abe34 ilookup +EXPORT_SYMBOL vmlinux 0x117b5f79 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x117fed23 blk_get_queue +EXPORT_SYMBOL vmlinux 0x1187ba01 truncate_setsize +EXPORT_SYMBOL vmlinux 0x11886e11 kobject_del +EXPORT_SYMBOL vmlinux 0x118f01ea putname +EXPORT_SYMBOL vmlinux 0x11ced87a set_groups +EXPORT_SYMBOL vmlinux 0x11cf27a9 idr_destroy +EXPORT_SYMBOL vmlinux 0x11e33620 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x1204583d blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x12234d56 dcb_setapp +EXPORT_SYMBOL vmlinux 0x124f72a3 md_write_end +EXPORT_SYMBOL vmlinux 0x12625e9b pci_enable_ltr +EXPORT_SYMBOL vmlinux 0x127cdf78 elevator_exit +EXPORT_SYMBOL vmlinux 0x127f1cf8 vfs_lstat +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12ad85c6 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x12c2c94a of_match_device +EXPORT_SYMBOL vmlinux 0x12d86263 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e5661a twl6040_power +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12f99022 inet_frags_init_net +EXPORT_SYMBOL vmlinux 0x12fad1c3 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x133b4ee4 idr_get_next +EXPORT_SYMBOL vmlinux 0x1346ff5a register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x13516411 __ps2_command +EXPORT_SYMBOL vmlinux 0x136ba4f2 dev_driver_string +EXPORT_SYMBOL vmlinux 0x13affbda percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e38f5c up_read +EXPORT_SYMBOL vmlinux 0x13ec80f3 param_set_short +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13ffa266 i2c_release_client +EXPORT_SYMBOL vmlinux 0x140785ee dput +EXPORT_SYMBOL vmlinux 0x1407c6e7 kmap_prot +EXPORT_SYMBOL vmlinux 0x1419459f pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1421166b fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x14791466 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x147fc1b5 genl_register_ops +EXPORT_SYMBOL vmlinux 0x14821b33 sock_init_data +EXPORT_SYMBOL vmlinux 0x14e7ca7c alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x14e837a0 idr_find +EXPORT_SYMBOL vmlinux 0x150802c9 init_task +EXPORT_SYMBOL vmlinux 0x150b2eff pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x1536ed85 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x153f48c2 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1551dc51 bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x15683b64 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x156eebec user_path_at +EXPORT_SYMBOL vmlinux 0x15864b03 flex_array_get +EXPORT_SYMBOL vmlinux 0x15c0b1e9 __register_binfmt +EXPORT_SYMBOL vmlinux 0x15e110ec md_register_thread +EXPORT_SYMBOL vmlinux 0x15f248db ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x16012c46 input_close_device +EXPORT_SYMBOL vmlinux 0x1605b5ac sock_no_accept +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x161db32d blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x1627ed72 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x16287da5 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x16297a56 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x1645c609 mdiobus_write +EXPORT_SYMBOL vmlinux 0x165d6203 dm_io +EXPORT_SYMBOL vmlinux 0x16a936b9 I_BDEV +EXPORT_SYMBOL vmlinux 0x16c3cb4d grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x16c42197 init_timer_deferrable_key +EXPORT_SYMBOL vmlinux 0x16ea1b54 skb_push +EXPORT_SYMBOL vmlinux 0x17142747 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x1718277a __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x17232cba cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x172abeea mddev_congested +EXPORT_SYMBOL vmlinux 0x175a9ea0 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x1762f65a tcp_gro_receive +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x179ad09a ip6_route_output +EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x17b70ea3 skb_pad +EXPORT_SYMBOL vmlinux 0x17cbcbc0 generic_file_aio_read +EXPORT_SYMBOL vmlinux 0x17d76cd4 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x17df17bc sysctl_tcp_ecn +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x180123cd jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x180ee422 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x182e5d51 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x182fd9f4 ip_options_compile +EXPORT_SYMBOL vmlinux 0x18333daf tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184ba3f0 note_scsi_host +EXPORT_SYMBOL vmlinux 0x184e6c85 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x18552994 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x1857e8de blkdev_put +EXPORT_SYMBOL vmlinux 0x1868a24e notify_change +EXPORT_SYMBOL vmlinux 0x18e61950 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x18ebc38b ps2_handle_response +EXPORT_SYMBOL vmlinux 0x18fb7bed vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x190e2e5a call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x190fdba7 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x191fa068 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x192599a7 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x19280712 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x193ef9ea set_binfmt +EXPORT_SYMBOL vmlinux 0x19494911 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x1965a765 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x19972748 __napi_complete +EXPORT_SYMBOL vmlinux 0x1999982c inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bbf7f1 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19bf2bb0 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x19c4f55c pci_set_ltr +EXPORT_SYMBOL vmlinux 0x19d42f80 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x19f1fb89 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x1a111a41 ftrace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x1a2d4581 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x1a86b48a ip_fragment +EXPORT_SYMBOL vmlinux 0x1aa3c3f4 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x1ace138d bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x1ad5a37a bio_sector_offset +EXPORT_SYMBOL vmlinux 0x1aed608d lock_rename +EXPORT_SYMBOL vmlinux 0x1af53bb1 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b380c9a splice_from_pipe_begin +EXPORT_SYMBOL vmlinux 0x1b511fb2 mmc_card_can_sleep +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b87e0eb __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b9e0ff1 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bd5cadb agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x1bdf4a96 mmc_card_sleep +EXPORT_SYMBOL vmlinux 0x1be01deb tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x1c1af916 set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x1c39360c dev_change_flags +EXPORT_SYMBOL vmlinux 0x1c45ebd2 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete +EXPORT_SYMBOL vmlinux 0x1c7aeb3a file_update_time +EXPORT_SYMBOL vmlinux 0x1c7ee9d6 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1cc6719a register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x1cc6af19 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x1cdcdfc5 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x1ced3e39 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x1d0b09fb jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x1d10329b blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x1d1a185d phy_stop +EXPORT_SYMBOL vmlinux 0x1d1e3e42 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x1d2e87c6 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x1d3865da param_get_invbool +EXPORT_SYMBOL vmlinux 0x1d916f57 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x1d927dd1 ethtool_invalid_flags +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1db9821c remove_arg_zero +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc53188 ip_xfrm_me_harder +EXPORT_SYMBOL vmlinux 0x1dd4b921 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1e033a45 nla_reserve +EXPORT_SYMBOL vmlinux 0x1e0df59d iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x1e1676af blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e2d7997 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x1e668333 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7e3ab9 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x1e85a372 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x1e8a4f22 kernel_bind +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eba2eaa udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x1edafd44 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x1eddd8ae pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x1ede6488 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x1ef1f75f posix_acl_valid +EXPORT_SYMBOL vmlinux 0x1f2218b7 pmac_register_agp_pm +EXPORT_SYMBOL vmlinux 0x1f64356c jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x1f688799 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f86a36b mac_find_mode +EXPORT_SYMBOL vmlinux 0x1f97b931 del_gendisk +EXPORT_SYMBOL vmlinux 0x1faceca1 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x1fb86f66 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x1fc2694b sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x1ff55b7d jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20030ecd ioremap +EXPORT_SYMBOL vmlinux 0x200bcce9 seq_bitmap_list +EXPORT_SYMBOL vmlinux 0x20644dfd page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207bb6fb mmc_host_disable +EXPORT_SYMBOL vmlinux 0x208983a8 dev_notice +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20babdc9 thaw_super +EXPORT_SYMBOL vmlinux 0x20e3543f ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x20ebc98c __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x2143294e vm_insert_page +EXPORT_SYMBOL vmlinux 0x214cab6e iterate_mounts +EXPORT_SYMBOL vmlinux 0x215ebd78 bitrev16 +EXPORT_SYMBOL vmlinux 0x21872546 devm_ioremap +EXPORT_SYMBOL vmlinux 0x218f1571 poll_freewait +EXPORT_SYMBOL vmlinux 0x2195a10f console_stop +EXPORT_SYMBOL vmlinux 0x21997ad2 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x21cd3dbd pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x21d221cd unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x21e2f7e0 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x21f678b9 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x21f8e1f1 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ed0c2 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x224fb3ad alloc_trdev +EXPORT_SYMBOL vmlinux 0x225e909e schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x226852be sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x2288378f system_state +EXPORT_SYMBOL vmlinux 0x22ae4ea7 dev_set_group +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23265d4f dma_find_channel +EXPORT_SYMBOL vmlinux 0x2336487c stop_tty +EXPORT_SYMBOL vmlinux 0x23494fa3 input_reset_device +EXPORT_SYMBOL vmlinux 0x234afa62 dev_warn +EXPORT_SYMBOL vmlinux 0x23521978 inet_frag_evictor +EXPORT_SYMBOL vmlinux 0x23529743 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x23534c76 dev_deactivate +EXPORT_SYMBOL vmlinux 0x235aadba __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x236a644f single_release +EXPORT_SYMBOL vmlinux 0x2385cee7 user_path_create +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23d9ffa3 tty_get_baud_rate +EXPORT_SYMBOL vmlinux 0x23e3e0bf mmc_host_enable +EXPORT_SYMBOL vmlinux 0x23efda36 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2437cc6b tty_port_close_end +EXPORT_SYMBOL vmlinux 0x243da981 sock_create_kern +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245a5a94 sleep_on_timeout +EXPORT_SYMBOL vmlinux 0x247441ab elv_rb_add +EXPORT_SYMBOL vmlinux 0x247635b6 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x248e372e vfs_readlink +EXPORT_SYMBOL vmlinux 0x24bd9a73 unregister_snap_client +EXPORT_SYMBOL vmlinux 0x24e8e86e fsync_bdev +EXPORT_SYMBOL vmlinux 0x24f560f3 qdisc_tree_decrease_qlen +EXPORT_SYMBOL vmlinux 0x24f9b1fe lock_may_write +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x251a987f blk_execute_rq +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2558e202 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x2565b4d5 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x257e3819 blk_rq_init +EXPORT_SYMBOL vmlinux 0x257efc47 d_invalidate +EXPORT_SYMBOL vmlinux 0x25810f34 switch_mmu_context +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258355b4 fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x25c677c4 mac_pton +EXPORT_SYMBOL vmlinux 0x25d0ac2c kmalloc_caches +EXPORT_SYMBOL vmlinux 0x25dd15a5 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x25e12657 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg +EXPORT_SYMBOL vmlinux 0x26052fb8 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x26141f81 bdi_register +EXPORT_SYMBOL vmlinux 0x26182813 mii_check_link +EXPORT_SYMBOL vmlinux 0x262174d9 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x2634d7c2 pci_clear_master +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x265519c0 release_sock +EXPORT_SYMBOL vmlinux 0x265d9bed lro_flush_all +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26cb822a netdev_warn +EXPORT_SYMBOL vmlinux 0x26d47c1c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x272c9acd pmu_battery_count +EXPORT_SYMBOL vmlinux 0x2739076a input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x276ed7a3 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x279a833d neigh_table_clear +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bfd0f1 mmc_try_claim_host +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27f499c7 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x27fc18ee pci_pme_capable +EXPORT_SYMBOL vmlinux 0x2804d70a irq_set_chip +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28259bdc pci_find_capability +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a6399a lro_receive_frags +EXPORT_SYMBOL vmlinux 0x28ae7bde register_qdisc +EXPORT_SYMBOL vmlinux 0x28b6b64e __register_chrdev +EXPORT_SYMBOL vmlinux 0x28c90a02 mdiobus_read +EXPORT_SYMBOL vmlinux 0x28ddb3af km_policy_notify +EXPORT_SYMBOL vmlinux 0x28f5d3a0 fget_raw +EXPORT_SYMBOL vmlinux 0x29210fcc mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x29218101 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29618992 mdiobus_alloc +EXPORT_SYMBOL vmlinux 0x2969b07d __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x299698ad proto_register +EXPORT_SYMBOL vmlinux 0x29a74fbc pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x29ad1c5b tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x29b1c366 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x29b96a8a inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x29c2ed30 journal_start_commit +EXPORT_SYMBOL vmlinux 0x29ce0638 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x29d481e6 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x29decabd jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x29e0e54f tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x29e5572e fb_get_mode +EXPORT_SYMBOL vmlinux 0x29ea3593 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a266fe3 netdev_printk +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a4fdc86 inet_listen +EXPORT_SYMBOL vmlinux 0x2a5fd95e blk_integrity_register +EXPORT_SYMBOL vmlinux 0x2a697ff9 bmap +EXPORT_SYMBOL vmlinux 0x2a69ac25 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x2a8fb27d mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x2a94b3a8 thermal_zone_device_register +EXPORT_SYMBOL vmlinux 0x2a953fd0 mnt_unpin +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aacea18 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x2ab386a5 mntput +EXPORT_SYMBOL vmlinux 0x2ac94d43 icmpv6_send +EXPORT_SYMBOL vmlinux 0x2ae07a10 dcb_getapp +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b1579a6 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b39fedb cad_pid +EXPORT_SYMBOL vmlinux 0x2b8ba6b1 genl_register_family +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba145aa iterate_supers_type +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bc069e2 dquot_disable +EXPORT_SYMBOL vmlinux 0x2bc61da1 program_check_exception +EXPORT_SYMBOL vmlinux 0x2bd5117c revert_creds +EXPORT_SYMBOL vmlinux 0x2bf66f7b tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c25376a rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c5a07d5 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x2c5bc131 __bforget +EXPORT_SYMBOL vmlinux 0x2c60a315 elv_abort_queue +EXPORT_SYMBOL vmlinux 0x2c68eca3 sock_no_connect +EXPORT_SYMBOL vmlinux 0x2c7ac18e tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c919c63 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x2cc7c778 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x2cc850ec pagevec_lookup +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1d2c27 netlink_ack +EXPORT_SYMBOL vmlinux 0x2d32648e arp_xmit +EXPORT_SYMBOL vmlinux 0x2d406a35 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x2d418842 register_snap_client +EXPORT_SYMBOL vmlinux 0x2d480c87 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x2d5ba257 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x2d6d13f2 pci_enable_msi_block +EXPORT_SYMBOL vmlinux 0x2d8491b4 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x2d84f175 con_is_bound +EXPORT_SYMBOL vmlinux 0x2d89342a scsi_show_sense_hdr +EXPORT_SYMBOL vmlinux 0x2da94b20 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x2de17296 posix_lock_file_wait +EXPORT_SYMBOL vmlinux 0x2dee1df1 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x2df2ffda devm_iounmap +EXPORT_SYMBOL vmlinux 0x2e0befec of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e59fc7a ab8500_gpadc_get +EXPORT_SYMBOL vmlinux 0x2ea38f8d update_region +EXPORT_SYMBOL vmlinux 0x2eb39532 arp_invalidate +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2eeceb42 sk_chk_filter +EXPORT_SYMBOL vmlinux 0x2ef42b23 genphy_resume +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f1afd56 free_task +EXPORT_SYMBOL vmlinux 0x2f3ff5ea sock_no_getname +EXPORT_SYMBOL vmlinux 0x2f71488f blkdev_fsync +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fbac1a9 generic_read_dir +EXPORT_SYMBOL vmlinux 0x2fd345f3 fb_show_logo +EXPORT_SYMBOL vmlinux 0x2fdf0b2b n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x302d6aac icmp_send +EXPORT_SYMBOL vmlinux 0x3059c50c blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x305af49e sock_register +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3086586d scsi_register_driver +EXPORT_SYMBOL vmlinux 0x309c6ab9 mnt_pin +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30c14d7e pci_restore_state +EXPORT_SYMBOL vmlinux 0x30cada8f radix_tree_next_hole +EXPORT_SYMBOL vmlinux 0x30d70fa9 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x30e78d2e input_grab_device +EXPORT_SYMBOL vmlinux 0x30fbadf2 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x310e86b0 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x311517e3 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x31257f8c cdrom_check_events +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x314b947f file_remove_suid +EXPORT_SYMBOL vmlinux 0x3155d972 scsi_setup_blk_pc_cmnd +EXPORT_SYMBOL vmlinux 0x318b2e09 write_cache_pages +EXPORT_SYMBOL vmlinux 0x3190cabe journal_force_commit +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x319d37d9 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x31a561b4 netdev_bonding_change +EXPORT_SYMBOL vmlinux 0x31e06767 jbd2_journal_release_buffer +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31f819dc touch_atime +EXPORT_SYMBOL vmlinux 0x32193472 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x321fa78d inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x3225efc0 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x32403689 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x3240c65b files_lglock_global_lock_online +EXPORT_SYMBOL vmlinux 0x3245deef mb_cache_create +EXPORT_SYMBOL vmlinux 0x3260086c neigh_connected_output +EXPORT_SYMBOL vmlinux 0x32617360 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x327044ad ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x32704822 mmc_cache_ctrl +EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x329a5bd9 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x32b1f8fa register_quota_format +EXPORT_SYMBOL vmlinux 0x32b9cd10 of_find_property +EXPORT_SYMBOL vmlinux 0x32cf681b xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x32dada5e insert_inode_locked +EXPORT_SYMBOL vmlinux 0x32e10013 ip6_xmit +EXPORT_SYMBOL vmlinux 0x32fe42a8 bioset_free +EXPORT_SYMBOL vmlinux 0x330075e6 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x3304da0f scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x330d9da7 blk_put_queue +EXPORT_SYMBOL vmlinux 0x3329e185 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x3341c805 end_writeback +EXPORT_SYMBOL vmlinux 0x33604770 __breadahead +EXPORT_SYMBOL vmlinux 0x3375694d kick_iocb +EXPORT_SYMBOL vmlinux 0x33aed80a udp_proc_register +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33bc0316 sget +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x341807b0 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x343d3e53 sync_blockdev +EXPORT_SYMBOL vmlinux 0x343d91f6 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x346753c8 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x346c4ded rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3476ac27 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x347fc6ed bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x34908c14 print_hex_dump_bytes +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34ed71ef dst_release +EXPORT_SYMBOL vmlinux 0x351cb319 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x353a8bdd giveup_fpu +EXPORT_SYMBOL vmlinux 0x353b658b phy_device_register +EXPORT_SYMBOL vmlinux 0x355a1bb0 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x356db805 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x35728a43 phy_detach +EXPORT_SYMBOL vmlinux 0x3579ab5b netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x357c90d2 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0x35919aaf tcp_sendpage +EXPORT_SYMBOL vmlinux 0x35aa8f44 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x35c2ba9e refrigerator +EXPORT_SYMBOL vmlinux 0x35ca8cfa dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x35e7940d key_unlink +EXPORT_SYMBOL vmlinux 0x35e8f4be journal_clear_err +EXPORT_SYMBOL vmlinux 0x35ef9c2a pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x360cb97c generic_file_splice_write +EXPORT_SYMBOL vmlinux 0x36157262 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x361d21c7 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x36366259 cap_file_mmap +EXPORT_SYMBOL vmlinux 0x3649fb8d inode_init_once +EXPORT_SYMBOL vmlinux 0x368e3064 scsi_prep_fn +EXPORT_SYMBOL vmlinux 0x3692cb07 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x36ab87b1 scsi_calculate_bounce_limit +EXPORT_SYMBOL vmlinux 0x36acd475 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36b8b690 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x36bd282e simple_lookup +EXPORT_SYMBOL vmlinux 0x36e30c72 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x36e360e3 __hw_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x36e611b4 get_phy_id +EXPORT_SYMBOL vmlinux 0x3715cee9 fasync_helper +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x376debcd pci_remove_bus_device +EXPORT_SYMBOL vmlinux 0x378b0647 follow_pfn +EXPORT_SYMBOL vmlinux 0x3791203a serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x379f5837 param_set_invbool +EXPORT_SYMBOL vmlinux 0x37b920d4 dev_printk +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d12b7b __dquot_free_space +EXPORT_SYMBOL vmlinux 0x37e59662 ns_capable +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37ea921e vfsmount_lock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37f6fee5 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x388f9128 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x38a1ccf1 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x38a33c54 flock_lock_file_wait +EXPORT_SYMBOL vmlinux 0x38b92846 llc_remove_pack +EXPORT_SYMBOL vmlinux 0x38ebbe0e of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x38fc8ba2 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x390742aa jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x3915eee4 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x392d6fb6 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393acca5 bio_integrity_split +EXPORT_SYMBOL vmlinux 0x3944c011 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x3959e326 security_file_mmap +EXPORT_SYMBOL vmlinux 0x3980aac1 unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x39a1377c blk_end_request_all +EXPORT_SYMBOL vmlinux 0x39b0f7be register_key_type +EXPORT_SYMBOL vmlinux 0x39b18d20 dev_trans_start +EXPORT_SYMBOL vmlinux 0x39cb510c kset_unregister +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39ea7e8f otg_set_transceiver +EXPORT_SYMBOL vmlinux 0x3a175796 ps2_drain +EXPORT_SYMBOL vmlinux 0x3a2204c6 security_netlink_recv +EXPORT_SYMBOL vmlinux 0x3a2fa167 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x3a441f8e llc_add_pack +EXPORT_SYMBOL vmlinux 0x3a5c3e1b blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x3a79d270 pci_enable_bridges +EXPORT_SYMBOL vmlinux 0x3a8a328f swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x3a9624ed twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa2eb19 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x3aafebba tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x3ab3964c rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x3aeb383f ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x3b2d5837 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x3b2ed40d noop_qdisc +EXPORT_SYMBOL vmlinux 0x3b3016d3 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3b5730b9 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b7f6a2f gen_pool_create +EXPORT_SYMBOL vmlinux 0x3b991c63 setup_new_exec +EXPORT_SYMBOL vmlinux 0x3bb92b46 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x3bcad529 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x3bd0720a xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x3bd1b1f6 msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x3bd72c3a fb_set_var +EXPORT_SYMBOL vmlinux 0x3bf2e968 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x3bf4124a ilookup5 +EXPORT_SYMBOL vmlinux 0x3bf41ce6 netdev_emerg +EXPORT_SYMBOL vmlinux 0x3c13c2e8 journal_update_format +EXPORT_SYMBOL vmlinux 0x3c14e9d9 vmtruncate +EXPORT_SYMBOL vmlinux 0x3c1a3541 dquot_resume +EXPORT_SYMBOL vmlinux 0x3c1d8e13 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x3c613c10 get_io_context +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9aed37 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x3c9d1211 string_get_size +EXPORT_SYMBOL vmlinux 0x3caf7417 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cefae5f generic_pipe_buf_unmap +EXPORT_SYMBOL vmlinux 0x3cf8e981 pci_select_bars +EXPORT_SYMBOL vmlinux 0x3cf9744d ethtool_op_set_sg +EXPORT_SYMBOL vmlinux 0x3d0eb6bd journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x3d4af0b7 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x3d5b7456 input_register_handler +EXPORT_SYMBOL vmlinux 0x3d687a65 security_path_chown +EXPORT_SYMBOL vmlinux 0x3d6fddc4 bdi_destroy +EXPORT_SYMBOL vmlinux 0x3d93ee61 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x3d9c693e simple_link +EXPORT_SYMBOL vmlinux 0x3dba184f udp_ioctl +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3ddcb778 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0e9023 param_set_long +EXPORT_SYMBOL vmlinux 0x3e45e9ff register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x3e5f7667 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x3e7d48be textsearch_unregister +EXPORT_SYMBOL vmlinux 0x3e7d7dd2 dqput +EXPORT_SYMBOL vmlinux 0x3e7f87f7 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3eb2f794 register_filesystem +EXPORT_SYMBOL vmlinux 0x3eb95f99 journal_restart +EXPORT_SYMBOL vmlinux 0x3ebe9dea ip6_frag_init +EXPORT_SYMBOL vmlinux 0x3ec8886f param_ops_int +EXPORT_SYMBOL vmlinux 0x3ed38a03 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x3ed63055 zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x3edd3e16 bdev_read_only +EXPORT_SYMBOL vmlinux 0x3efc3557 dma_async_memcpy_buf_to_pg +EXPORT_SYMBOL vmlinux 0x3f03da66 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f2bc67e phy_start +EXPORT_SYMBOL vmlinux 0x3f366864 vmap +EXPORT_SYMBOL vmlinux 0x3f38293e phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f73f596 ethtool_op_set_flags +EXPORT_SYMBOL vmlinux 0x3fa96170 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3fb18605 kobject_put +EXPORT_SYMBOL vmlinux 0x3fb4622f __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x3fba9d44 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x3fc34c8d prepare_binprm +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3ff62317 local_bh_disable +EXPORT_SYMBOL vmlinux 0x3ff80ac2 skb_dst_set_noref +EXPORT_SYMBOL vmlinux 0x400c563b textsearch_destroy +EXPORT_SYMBOL vmlinux 0x4029d238 param_set_copystring +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x402cdd37 find_get_page +EXPORT_SYMBOL vmlinux 0x402e1051 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40654553 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x4085b715 call_usermodehelper_freeinfo +EXPORT_SYMBOL vmlinux 0x40906728 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c058b6 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x40c9dd07 kern_unmount +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40e93434 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy +EXPORT_SYMBOL vmlinux 0x40ff30cc xfrm_state_update +EXPORT_SYMBOL vmlinux 0x4108e69a fb_match_mode +EXPORT_SYMBOL vmlinux 0x4109f04d dev_get_by_index +EXPORT_SYMBOL vmlinux 0x412d95cb scsi_remove_target +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41779437 tcf_hash_lookup +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41f21f7b skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x4211c3c1 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x42224298 sscanf +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x425b710d dev_addr_add +EXPORT_SYMBOL vmlinux 0x42977ad4 __hw_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x42aa916f seq_read +EXPORT_SYMBOL vmlinux 0x42c0fceb inode_permission +EXPORT_SYMBOL vmlinux 0x42ea18cf agp_free_memory +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43239611 bio_put +EXPORT_SYMBOL vmlinux 0x4329f3af __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x435118b4 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x43542b6c netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x43810748 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x4385cb9c padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x43898b45 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x4397ccd3 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a0458b blk_start_plug +EXPORT_SYMBOL vmlinux 0x43a2d85c sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x43b07c56 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x43c7f523 pci_disable_ido +EXPORT_SYMBOL vmlinux 0x43d0c259 __lock_page +EXPORT_SYMBOL vmlinux 0x43e561a7 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x43e5c806 journal_dirty_data +EXPORT_SYMBOL vmlinux 0x43e74269 put_mnt_ns +EXPORT_SYMBOL vmlinux 0x43ee95ca of_device_is_available +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x44033cb8 alloc_file +EXPORT_SYMBOL vmlinux 0x4404f7aa check_disk_size_change +EXPORT_SYMBOL vmlinux 0x4412b7d4 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x4424e815 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x4429aa39 put_page +EXPORT_SYMBOL vmlinux 0x442bd0c3 mount_nodev +EXPORT_SYMBOL vmlinux 0x4430c75c ida_pre_get +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44402b6f param_get_ulong +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x4485bc80 qdisc_watchdog_schedule +EXPORT_SYMBOL vmlinux 0x44b911c3 rb_replace_node +EXPORT_SYMBOL vmlinux 0x44beab8c rtnl_unicast +EXPORT_SYMBOL vmlinux 0x44d63b1b lock_sock_nested +EXPORT_SYMBOL vmlinux 0x44d7dc20 mmc_start_req +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x4517c966 macio_dev_put +EXPORT_SYMBOL vmlinux 0x4520a5ac netif_carrier_on +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4550ba8a register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x457578bb ata_port_printk +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x458c8db3 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x4596db6a sys_sigreturn +EXPORT_SYMBOL vmlinux 0x45b27163 of_get_next_child +EXPORT_SYMBOL vmlinux 0x45bd9efd dm_table_put +EXPORT_SYMBOL vmlinux 0x45d04d4b netdev_notice +EXPORT_SYMBOL vmlinux 0x45d216b9 tcp_put_md5sig_pool +EXPORT_SYMBOL vmlinux 0x45d9c32e blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461902e6 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x46214106 files_lglock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x46604d00 bioset_create +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x468be8e3 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x46942d3d of_find_matching_node +EXPORT_SYMBOL vmlinux 0x46a1c42d address_space_init_once +EXPORT_SYMBOL vmlinux 0x46b169e7 __f_setown +EXPORT_SYMBOL vmlinux 0x46c0697c blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46db47c5 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x46fc5021 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4716e204 tc_classify +EXPORT_SYMBOL vmlinux 0x4739e3cb page_symlink +EXPORT_SYMBOL vmlinux 0x474b8aaf i2c_verify_client +EXPORT_SYMBOL vmlinux 0x475100c2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x475e72cd elv_register_queue +EXPORT_SYMBOL vmlinux 0x47784ab5 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47b3f862 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x47b4c60b start_tty +EXPORT_SYMBOL vmlinux 0x47b6d2ea uart_add_one_port +EXPORT_SYMBOL vmlinux 0x47d1ba39 sk_run_filter +EXPORT_SYMBOL vmlinux 0x48000553 mempool_create_node +EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask +EXPORT_SYMBOL vmlinux 0x4831a331 invalidate_partition +EXPORT_SYMBOL vmlinux 0x483c1b8e abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x48466b2d netdev_set_bond_master +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485deffc __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x48701312 vfs_readdir +EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition +EXPORT_SYMBOL vmlinux 0x48870513 security_path_symlink +EXPORT_SYMBOL vmlinux 0x48c1d92e nf_register_hook +EXPORT_SYMBOL vmlinux 0x48f89a62 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x490a7307 do_mmap_pgoff +EXPORT_SYMBOL vmlinux 0x4912029d jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x497a83c9 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x497f90cb dev_get_flags +EXPORT_SYMBOL vmlinux 0x4981e51d set_bdi_congested +EXPORT_SYMBOL vmlinux 0x498a670f pm860x_page_reg_read +EXPORT_SYMBOL vmlinux 0x49a83d50 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49bd1ab7 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x49c4d322 mdiobus_register +EXPORT_SYMBOL vmlinux 0x49ca6552 register_exec_domain +EXPORT_SYMBOL vmlinux 0x49f82341 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x4a14fc05 dma_pool_create +EXPORT_SYMBOL vmlinux 0x4a2070f7 thaw_process +EXPORT_SYMBOL vmlinux 0x4a290d4d cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x4a358252 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x4a3928aa __bread +EXPORT_SYMBOL vmlinux 0x4a3bac09 tr_type_trans +EXPORT_SYMBOL vmlinux 0x4a8d0200 d_drop +EXPORT_SYMBOL vmlinux 0x4a94e756 drop_super +EXPORT_SYMBOL vmlinux 0x4aaab2b1 groups_alloc +EXPORT_SYMBOL vmlinux 0x4ab066fd __blk_run_queue +EXPORT_SYMBOL vmlinux 0x4ab3a646 freeze_super +EXPORT_SYMBOL vmlinux 0x4ab4c4c6 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x4acd6b02 sk_wait_data +EXPORT_SYMBOL vmlinux 0x4af67791 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b14d7ca mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x4b15544e skb_put +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b34fbf5 block_all_signals +EXPORT_SYMBOL vmlinux 0x4b38d357 pci_map_rom +EXPORT_SYMBOL vmlinux 0x4b5047bc setup_arg_pages +EXPORT_SYMBOL vmlinux 0x4b50fa82 page_put_link +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b60a252 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x4b6567fa vfs_statfs +EXPORT_SYMBOL vmlinux 0x4b7ed27b sleep_on +EXPORT_SYMBOL vmlinux 0x4bc27bd3 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x4bc96635 ifla_policy +EXPORT_SYMBOL vmlinux 0x4bca6b57 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bf4e090 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x4c07a6db tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x4c0ba641 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c1182cb bitmap_scnprintf +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c353595 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x4c5e1655 dev_mc_add +EXPORT_SYMBOL vmlinux 0x4cbbd171 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x4cc1c5d5 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x4cc4ee3e do_sync_read +EXPORT_SYMBOL vmlinux 0x4cfc89b9 ethtool_op_get_flags +EXPORT_SYMBOL vmlinux 0x4d025d04 vfs_stat +EXPORT_SYMBOL vmlinux 0x4d0e78c9 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x4d173361 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x4d1794b8 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d4044e9 rt6_lookup +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4883c8 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x4d60f824 block_commit_write +EXPORT_SYMBOL vmlinux 0x4d70ebca mmc_resume_host +EXPORT_SYMBOL vmlinux 0x4d8b008d no_llseek +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4da4737e generic_writepages +EXPORT_SYMBOL vmlinux 0x4da7c931 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x4dc45be9 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x4dc9cfe0 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x4dcb76c2 journal_start +EXPORT_SYMBOL vmlinux 0x4dce2b7e ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x4ddd1324 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfed71c flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x4e069249 security_tun_dev_post_create +EXPORT_SYMBOL vmlinux 0x4e08b762 xfrm_cfg_mutex +EXPORT_SYMBOL vmlinux 0x4e0b3cf7 bio_clone +EXPORT_SYMBOL vmlinux 0x4e160028 __lru_cache_add +EXPORT_SYMBOL vmlinux 0x4e177aa5 mutex_trylock +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7077b4 vga_client_register +EXPORT_SYMBOL vmlinux 0x4e7fda9c ___pskb_trim +EXPORT_SYMBOL vmlinux 0x4e830a3e strnicmp +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4eaefa08 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x4f1c412c kill_block_super +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f261ccd fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x4f2e31f6 dev_gro_receive +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3fab26 udp_poll +EXPORT_SYMBOL vmlinux 0x4f429759 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x4f4d065d udp_prot +EXPORT_SYMBOL vmlinux 0x4f622ca6 skb_split +EXPORT_SYMBOL vmlinux 0x4f8840d1 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x4fa38a4d arp_find +EXPORT_SYMBOL vmlinux 0x4fa8ab02 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x4fac79e9 bio_add_page +EXPORT_SYMBOL vmlinux 0x4fc6bc8f __napi_schedule +EXPORT_SYMBOL vmlinux 0x4fc9418d proc_dointvec +EXPORT_SYMBOL vmlinux 0x4fd73968 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe4b48b mmc_detect_change +EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive +EXPORT_SYMBOL vmlinux 0x4fea81b7 vfs_getattr +EXPORT_SYMBOL vmlinux 0x4ff1c9bc populate_rootfs_wait +EXPORT_SYMBOL vmlinux 0x4ffe84a2 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x5017d696 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x50211ee3 tcp_free_md5sig_pool +EXPORT_SYMBOL vmlinux 0x50384baf vgacon_remap_base +EXPORT_SYMBOL vmlinux 0x5041df49 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x506746b6 getrawmonotonic +EXPORT_SYMBOL vmlinux 0x506e6869 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x508eaadb eth_change_mtu +EXPORT_SYMBOL vmlinux 0x50ab4c6d files_lglock_global_lock +EXPORT_SYMBOL vmlinux 0x50f74dbc dquot_scan_active +EXPORT_SYMBOL vmlinux 0x5102c5c6 mem_cgroup_count_vm_event +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51308b67 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x5130fbfd sock_create_lite +EXPORT_SYMBOL vmlinux 0x513a9e10 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x5150b3a3 init_buffer +EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache +EXPORT_SYMBOL vmlinux 0x517391f1 dev_emerg +EXPORT_SYMBOL vmlinux 0x517925f5 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x5184caf2 sock_i_ino +EXPORT_SYMBOL vmlinux 0x51919e82 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x519ac1e0 dev_addr_init +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51a986a1 skb_gso_segment +EXPORT_SYMBOL vmlinux 0x51ce5ad3 files_lglock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x51da6b1d dentry_path_raw +EXPORT_SYMBOL vmlinux 0x51dce73b xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51fd5a78 cpu_sysdev_class +EXPORT_SYMBOL vmlinux 0x51fe8b47 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5229982c of_parse_phandle +EXPORT_SYMBOL vmlinux 0x523868fc tcp_check_req +EXPORT_SYMBOL vmlinux 0x5244d2a5 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x5248bab3 tcf_hash_destroy +EXPORT_SYMBOL vmlinux 0x52626e9b simple_write_end +EXPORT_SYMBOL vmlinux 0x52748795 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x52760ca9 getnstimeofday +EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read +EXPORT_SYMBOL vmlinux 0x5282190f pci_bus_type +EXPORT_SYMBOL vmlinux 0x5289fbf0 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52a155ba pm860x_page_bulk_write +EXPORT_SYMBOL vmlinux 0x52c12e7f blk_init_queue +EXPORT_SYMBOL vmlinux 0x52cadb04 proc_create_data +EXPORT_SYMBOL vmlinux 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL vmlinux 0x52f4c717 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x530266cc generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x53050656 mmc_regulator_set_ocr +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533cf5f8 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x536794f1 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x53697084 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x538383c0 unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x5397f2d3 posix_acl_init +EXPORT_SYMBOL vmlinux 0x539ee797 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x53ebea75 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x540ac069 journal_forget +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x54143448 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x5429cd15 agp_backend_release +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5449269d mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x548520a6 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x549161e0 ata_link_printk +EXPORT_SYMBOL vmlinux 0x54a32f0b writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x54a3b7e7 cont_write_begin +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b553a0 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f5eba6 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x55059a73 sg_miter_next +EXPORT_SYMBOL vmlinux 0x551c1407 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x552217f0 pci_set_master +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55467ede fsl_upm_find +EXPORT_SYMBOL vmlinux 0x5553110d dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x556dca9e flush_tlb_page +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x557c4228 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x5594be03 bitmap_remap +EXPORT_SYMBOL vmlinux 0x55bb827f splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x55cddf54 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x55d01a44 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x5600904f fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x5601f1b5 skb_make_writable +EXPORT_SYMBOL vmlinux 0x560a4187 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x5614b010 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x56195a59 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x5622293f create_proc_entry +EXPORT_SYMBOL vmlinux 0x56225710 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x5623f257 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5642793a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x567a00af __break_lease +EXPORT_SYMBOL vmlinux 0x568c161e mii_nway_restart +EXPORT_SYMBOL vmlinux 0x5690cdcd inet_del_protocol +EXPORT_SYMBOL vmlinux 0x5695bcdb ethtool_op_set_ufo +EXPORT_SYMBOL vmlinux 0x56a05ef2 lock_fb_info +EXPORT_SYMBOL vmlinux 0x56a10763 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0x56bff185 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e90afd i2c_del_driver +EXPORT_SYMBOL vmlinux 0x56eae996 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x5712dce9 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x571df590 __seq_open_private +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573d6ce8 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x574946a8 path_is_under +EXPORT_SYMBOL vmlinux 0x574ed568 pci_read_irq_line +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57832875 __brelse +EXPORT_SYMBOL vmlinux 0x5785384a flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x578ca1be netdev_info +EXPORT_SYMBOL vmlinux 0x57b57ebe jiffies_to_timespec +EXPORT_SYMBOL vmlinux 0x57db7242 mangle_path +EXPORT_SYMBOL vmlinux 0x5823afdf splice_from_pipe_end +EXPORT_SYMBOL vmlinux 0x5826002e pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x582a4747 cacheable_memcpy +EXPORT_SYMBOL vmlinux 0x58382c89 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584e0f1a unregister_quota_format +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x587b209f twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x5897a2e8 dquot_commit +EXPORT_SYMBOL vmlinux 0x58a6c9a6 bdget +EXPORT_SYMBOL vmlinux 0x58d45ea7 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x58d6c20c __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x58f0749c atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x59127adb blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x59163774 inet_getname +EXPORT_SYMBOL vmlinux 0x591ab38b bitmap_unplug +EXPORT_SYMBOL vmlinux 0x592cc35d bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x5934392b fb_register_client +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x5964f2c8 dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x5970a109 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x597eccc2 mpage_readpages +EXPORT_SYMBOL vmlinux 0x598dbd43 netdev_class_create_file +EXPORT_SYMBOL vmlinux 0x59913061 dquot_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59d10896 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x59d696b6 register_module_notifier +EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource +EXPORT_SYMBOL vmlinux 0x59dec158 kill_pgrp +EXPORT_SYMBOL vmlinux 0x59e70f93 __send_remote_softirq +EXPORT_SYMBOL vmlinux 0x59fe6ae5 pci_enable_device +EXPORT_SYMBOL vmlinux 0x5a079687 i2c_bit_add_numbered_bus +EXPORT_SYMBOL vmlinux 0x5a1099e9 journal_extend +EXPORT_SYMBOL vmlinux 0x5a6ed245 napi_skb_finish +EXPORT_SYMBOL vmlinux 0x5a6ff2db kernel_getpeername +EXPORT_SYMBOL vmlinux 0x5a744b86 netlink_set_nonroot +EXPORT_SYMBOL vmlinux 0x5ab67931 do_IRQ +EXPORT_SYMBOL vmlinux 0x5ac145c3 balance_dirty_pages_ratelimited_nr +EXPORT_SYMBOL vmlinux 0x5ac2f732 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x5b125056 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b2eda38 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x5b362411 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x5b39988e ftrace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x5b3dc50c max8998_read_reg +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b50b722 skb_copy +EXPORT_SYMBOL vmlinux 0x5b6a53b2 lock_may_read +EXPORT_SYMBOL vmlinux 0x5b7605f6 of_device_unregister +EXPORT_SYMBOL vmlinux 0x5b87a3a6 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5bac765d i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x5bae0010 giveup_altivec +EXPORT_SYMBOL vmlinux 0x5bfaaef7 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one +EXPORT_SYMBOL vmlinux 0x5c2e73c6 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5cef00cd simple_fill_super +EXPORT_SYMBOL vmlinux 0x5cefae9d blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x5d29ba19 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x5d495cec blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x5d4d4c70 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x5d5b5a16 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x5d66186a scsi_prep_state_check +EXPORT_SYMBOL vmlinux 0x5d6a0f82 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x5d6bdce1 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x5d6d2677 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x5d7097c7 scsi_get_command +EXPORT_SYMBOL vmlinux 0x5d8cd17f dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x5d9f8078 unlock_page +EXPORT_SYMBOL vmlinux 0x5dc65534 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x5dc6e531 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x5dc8b331 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x5dd1fb70 sock_no_poll +EXPORT_SYMBOL vmlinux 0x5ddb6230 netdev_update_features +EXPORT_SYMBOL vmlinux 0x5debc1a5 input_inject_event +EXPORT_SYMBOL vmlinux 0x5df73517 proc_dostring +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e3d4414 scsi_setup_fs_cmnd +EXPORT_SYMBOL vmlinux 0x5e442c81 pcim_iomap +EXPORT_SYMBOL vmlinux 0x5e510961 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x5e529b19 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x5e563c2a pci_scan_slot +EXPORT_SYMBOL vmlinux 0x5e58163c bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x5e6947f7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x5e74e19e journal_init_dev +EXPORT_SYMBOL vmlinux 0x5e7d4819 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eac2676 dquot_transfer +EXPORT_SYMBOL vmlinux 0x5eac470a netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x5eb1a6e1 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5edacd21 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x5edd0762 bin2bcd +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f05bad7 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x5f4475a7 skb_copy_datagram_iovec +EXPORT_SYMBOL vmlinux 0x5f48f9f3 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x5f646b37 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x5f6c0725 path_put +EXPORT_SYMBOL vmlinux 0x5f70f8aa jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5fa17c73 sk_filter_release_rcu +EXPORT_SYMBOL vmlinux 0x5fbcbefe journal_ack_err +EXPORT_SYMBOL vmlinux 0x5fc03018 d_alloc_root +EXPORT_SYMBOL vmlinux 0x5ff92ed9 serio_reconnect +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6086fae9 rwsem_wake +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5b04 journal_stop +EXPORT_SYMBOL vmlinux 0x60df28ee abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x611bcc9c dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x612390ad netpoll_set_trap +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x617bfa05 ppp_input_error +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bafe4b scsi_init_io +EXPORT_SYMBOL vmlinux 0x61c41773 __put_cred +EXPORT_SYMBOL vmlinux 0x61cdf52f kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x61e9a6e8 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61f223e5 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x620b1fd3 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623d7182 _chrp_type +EXPORT_SYMBOL vmlinux 0x624e0428 scsi_execute_req +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x6254b24f cfb_imageblit +EXPORT_SYMBOL vmlinux 0x6258ff7a panic_notifier_list +EXPORT_SYMBOL vmlinux 0x625c9295 put_tty_driver +EXPORT_SYMBOL vmlinux 0x626d2a3d abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627e9273 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x628332e8 pmu_power_flags +EXPORT_SYMBOL vmlinux 0x6299d2ce sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x62ad7f1d kill_fasync +EXPORT_SYMBOL vmlinux 0x62cd8754 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x62d83d61 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6320a721 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x63276ba6 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x632cfc0d shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x6332cc1a audit_log_start +EXPORT_SYMBOL vmlinux 0x6337dfce ab8500_gpadc_convert +EXPORT_SYMBOL vmlinux 0x6338bab9 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x6357fa03 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x6366dca7 lease_modify +EXPORT_SYMBOL vmlinux 0x6367abc6 sock_create +EXPORT_SYMBOL vmlinux 0x636cb80b call_usermodehelper_setfns +EXPORT_SYMBOL vmlinux 0x6371315a mark_info_dirty +EXPORT_SYMBOL vmlinux 0x637707f6 padata_do_serial +EXPORT_SYMBOL vmlinux 0x6377e2dc generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x637f5546 uart_resume_port +EXPORT_SYMBOL vmlinux 0x637fae94 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x63afcca0 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x63bd37bc security_path_truncate +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ecad53 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x63eea421 eth_header_cache +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x6438c4b2 vfs_follow_link +EXPORT_SYMBOL vmlinux 0x643eaec8 param_get_string +EXPORT_SYMBOL vmlinux 0x644a64f8 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x644e1931 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x645ce5a0 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649edb7c kfree_skb +EXPORT_SYMBOL vmlinux 0x64a0b63b igrab +EXPORT_SYMBOL vmlinux 0x64cc4d60 iunique +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651ecbb3 padata_stop +EXPORT_SYMBOL vmlinux 0x65291cff timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0x653f35c4 i8042_check_port_owner +EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6540aa42 kernel_accept +EXPORT_SYMBOL vmlinux 0x65414e67 dev_valid_name +EXPORT_SYMBOL vmlinux 0x654c697c bio_integrity_get_tag +EXPORT_SYMBOL vmlinux 0x6554f202 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x655b0565 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x6565f68a i2c_transfer +EXPORT_SYMBOL vmlinux 0x6571628d scsi_block_requests +EXPORT_SYMBOL vmlinux 0x657680ba pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x6585e310 alloc_pages_exact_nid +EXPORT_SYMBOL vmlinux 0x658907ef __dquot_transfer +EXPORT_SYMBOL vmlinux 0x658ee451 generic_pipe_buf_map +EXPORT_SYMBOL vmlinux 0x65a23579 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x65b84e76 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65ef6a42 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x65f7be35 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x65ffe5e1 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x66199587 agp_bridge +EXPORT_SYMBOL vmlinux 0x6622671b pci_disable_msi +EXPORT_SYMBOL vmlinux 0x66382bc8 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x66701426 lookup_one_len +EXPORT_SYMBOL vmlinux 0x668da8d5 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x669dd28a posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write +EXPORT_SYMBOL vmlinux 0x66d0ee54 vfsmount_lock_global_unlock +EXPORT_SYMBOL vmlinux 0x66d18cf6 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x66d68f5c register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x66d6959b vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x67053080 current_kernel_time +EXPORT_SYMBOL vmlinux 0x671b6b52 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x672ecba1 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67424575 genl_unregister_mc_group +EXPORT_SYMBOL vmlinux 0x676636a5 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x677bf7cd bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67cab74f ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x67d5c47a of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x6802fc6d kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x6819ac26 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x681db10b __sk_dst_check +EXPORT_SYMBOL vmlinux 0x681e71e2 __kfree_skb +EXPORT_SYMBOL vmlinux 0x681fda34 elevator_init +EXPORT_SYMBOL vmlinux 0x6820154d skb_unlink +EXPORT_SYMBOL vmlinux 0x68370959 check_disk_change +EXPORT_SYMBOL vmlinux 0x683f0ed5 locks_delete_block +EXPORT_SYMBOL vmlinux 0x6849a15f flex_array_clear +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x6875aaa7 dma_set_mask +EXPORT_SYMBOL vmlinux 0x68a8e75a jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x68df7607 __cleancache_flush_page +EXPORT_SYMBOL vmlinux 0x68e0e289 idr_remove +EXPORT_SYMBOL vmlinux 0x68e75c78 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x6943c71b __d_drop +EXPORT_SYMBOL vmlinux 0x695611e8 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x696baa2d ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6971c3df __any_online_cpu +EXPORT_SYMBOL vmlinux 0x698ab241 input_set_keycode +EXPORT_SYMBOL vmlinux 0x69978d1b sock_wake_async +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b75ffb agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x69d38ed9 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x69de01e2 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x69e27c7a bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a32e69e skb_pull +EXPORT_SYMBOL vmlinux 0x6a38ed15 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x6a3e6907 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x6a61f874 to_tm +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a902691 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x6aa82f4f jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6adc7f44 get_user_pages +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b26d926 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b440ff2 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x6b4f82cb scsi_register_interface +EXPORT_SYMBOL vmlinux 0x6b5b38a4 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x6b7d7b72 of_register_spi_devices +EXPORT_SYMBOL vmlinux 0x6b982b1f kthread_bind +EXPORT_SYMBOL vmlinux 0x6baae653 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x6bacf568 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc57369 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x6bd556af netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x6bdbe184 blk_start_queue +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bde8a2b abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x6bead755 mpage_writepages +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c23da28 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x6c2fc813 netdev_class_remove_file +EXPORT_SYMBOL vmlinux 0x6c36abb5 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x6c56c83e gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c665691 flex_array_shrink +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c72a5c0 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x6c7e8e92 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x6c84df7f inet_csk_accept +EXPORT_SYMBOL vmlinux 0x6c91db95 agp_create_memory +EXPORT_SYMBOL vmlinux 0x6c9c6f9c led_brightness_set +EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read +EXPORT_SYMBOL vmlinux 0x6ca8b2a3 kunmap_high +EXPORT_SYMBOL vmlinux 0x6cbdc16c i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6ccddd05 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ce389b1 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x6d09bb5d account_page_dirtied +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d20a171 of_i2c_register_devices +EXPORT_SYMBOL vmlinux 0x6d27ef64 __bitmap_empty +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d393149 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x6d4578dc padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x6d464175 __sg_free_table +EXPORT_SYMBOL vmlinux 0x6d487f01 pci_target_state +EXPORT_SYMBOL vmlinux 0x6d5faf78 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x6d6cbadc rb_last +EXPORT_SYMBOL vmlinux 0x6da72629 module_put +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6ddffe30 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x6dec5123 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df7c075 tty_vhangup +EXPORT_SYMBOL vmlinux 0x6e078c0d mmc_card_awake +EXPORT_SYMBOL vmlinux 0x6e1e4a1b skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x6e2ba914 find_inode_number +EXPORT_SYMBOL vmlinux 0x6e4e6f77 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e779d64 iget5_locked +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ebad37a mem_cgroup_update_page_stat +EXPORT_SYMBOL vmlinux 0x6f043bbb mount_single +EXPORT_SYMBOL vmlinux 0x6f182970 file_sb_list_del +EXPORT_SYMBOL vmlinux 0x6f4380cc vga_tryget +EXPORT_SYMBOL vmlinux 0x6f673be1 journal_wipe +EXPORT_SYMBOL vmlinux 0x6fac0e6b skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x6fc3651b backlight_device_register +EXPORT_SYMBOL vmlinux 0x6fc54fbe km_new_mapping +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcc9697 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x6fff393f time_to_tm +EXPORT_SYMBOL vmlinux 0x70434aff page_follow_link_light +EXPORT_SYMBOL vmlinux 0x704a5541 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x7052273f agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70b1abf9 __inet6_hash +EXPORT_SYMBOL vmlinux 0x70b667f5 seq_release_private +EXPORT_SYMBOL vmlinux 0x70b902aa dev_uc_sync +EXPORT_SYMBOL vmlinux 0x70bc17d7 inode_wait +EXPORT_SYMBOL vmlinux 0x70d053fd try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request +EXPORT_SYMBOL vmlinux 0x7119e0f2 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x7127f72a bdput +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x714b521e generic_file_mmap +EXPORT_SYMBOL vmlinux 0x71584940 do_munmap +EXPORT_SYMBOL vmlinux 0x71888c78 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x71968a17 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x71974c3a neigh_update +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71af2b88 scsi_register +EXPORT_SYMBOL vmlinux 0x71b3263f aio_put_req +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71d3b197 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x7201e6fe sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x7234eafb otg_state_string +EXPORT_SYMBOL vmlinux 0x7238dddc ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x723cb694 filp_close +EXPORT_SYMBOL vmlinux 0x724923db dev_open +EXPORT_SYMBOL vmlinux 0x724f1844 ip_mc_rejoin_groups +EXPORT_SYMBOL vmlinux 0x72585556 flush_tlb_range +EXPORT_SYMBOL vmlinux 0x72671d18 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x72954618 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x72aa82c6 param_ops_charp +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72bf725b invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72d969da would_dump +EXPORT_SYMBOL vmlinux 0x72e50086 vm_stat +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x730ff363 param_set_uint +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x732b7833 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x732e0f40 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x735dc2c7 inet_ioctl +EXPORT_SYMBOL vmlinux 0x7362dd1e vfs_fstat +EXPORT_SYMBOL vmlinux 0x736c79dc param_get_byte +EXPORT_SYMBOL vmlinux 0x736ea4f1 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x736eb6af twl6040_irq_init +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x737ab25d devm_free_irq +EXPORT_SYMBOL vmlinux 0x737de5e9 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x738f1043 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x73a903c4 vfsmount_lock_local_lock +EXPORT_SYMBOL vmlinux 0x73c8ed0e twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x73e0f709 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x745d4dc7 thaw_bdev +EXPORT_SYMBOL vmlinux 0x7469fcfe radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74bcb04f mmc_erase +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c15afb rtnl_notify +EXPORT_SYMBOL vmlinux 0x74cc1cbe unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x74e0f768 create_mnt_ns +EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler +EXPORT_SYMBOL vmlinux 0x7501f3e8 llc_set_station_handler +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75159ad3 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x751b2247 param_get_bool +EXPORT_SYMBOL vmlinux 0x751c2917 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x75646e98 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x75684b1a scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x75684fab sk_dst_check +EXPORT_SYMBOL vmlinux 0x756dd160 start_thread +EXPORT_SYMBOL vmlinux 0x757880cb xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x757d587d mmc_free_host +EXPORT_SYMBOL vmlinux 0x7587825e vfs_unlink +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75952922 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75a204cf udp_disconnect +EXPORT_SYMBOL vmlinux 0x75b7b101 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x7605cf27 security_path_link +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760b437a unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x761dbb69 netdev_set_master +EXPORT_SYMBOL vmlinux 0x7620311f journal_get_write_access +EXPORT_SYMBOL vmlinux 0x76236e6c ihold +EXPORT_SYMBOL vmlinux 0x7630fdd9 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x767a049c __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x768a7843 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x768ee03f read_dev_sector +EXPORT_SYMBOL vmlinux 0x76a1b303 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x76bf656d __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x76c90672 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x76cced6f journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76dbc4b6 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x76e07962 idr_get_new +EXPORT_SYMBOL vmlinux 0x76f5a3c7 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x76fc499c __rta_fill +EXPORT_SYMBOL vmlinux 0x7707cdfa fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x771a5780 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x773119c2 tty_kref_put +EXPORT_SYMBOL vmlinux 0x773a9c94 blk_iopoll_enabled +EXPORT_SYMBOL vmlinux 0x77484d44 simple_release_fs +EXPORT_SYMBOL vmlinux 0x777845a1 set_blocksize +EXPORT_SYMBOL vmlinux 0x777bddc9 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x779360fc __nla_reserve +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77b851c4 cacheable_memzero +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c50a00 mii_link_ok +EXPORT_SYMBOL vmlinux 0x77df0847 __set_personality +EXPORT_SYMBOL vmlinux 0x77ecac9f zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x77edf722 schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x77fa5d1f ns_to_timespec +EXPORT_SYMBOL vmlinux 0x78232c65 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x782e5122 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x7863020c simple_transaction_set +EXPORT_SYMBOL vmlinux 0x7863cd54 task_nice +EXPORT_SYMBOL vmlinux 0x786c4165 blk_peek_request +EXPORT_SYMBOL vmlinux 0x786c5087 i2c_use_client +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788eaa31 __mutex_init +EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource +EXPORT_SYMBOL vmlinux 0x78942bba take_over_console +EXPORT_SYMBOL vmlinux 0x7895d9f1 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x78987f71 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x78a690fc bdget_disk +EXPORT_SYMBOL vmlinux 0x78d0bd4e pci_request_region +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ed3e5c __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x78f2a974 arp_send +EXPORT_SYMBOL vmlinux 0x790df6ca __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x79134b3e pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x7914c68c proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x793dec48 tcp_v4_tw_get_peer +EXPORT_SYMBOL vmlinux 0x79428c84 nf_log_packet +EXPORT_SYMBOL vmlinux 0x794b0cbf __invalidate_device +EXPORT_SYMBOL vmlinux 0x79578100 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x79610a66 unregister_netdev +EXPORT_SYMBOL vmlinux 0x796d1e03 abort_creds +EXPORT_SYMBOL vmlinux 0x796f836c ethtool_op_set_tx_ipv6_csum +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x798487e6 replace_mount_options +EXPORT_SYMBOL vmlinux 0x799bcfa2 unlock_rename +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x7a1390f7 param_set_bool +EXPORT_SYMBOL vmlinux 0x7a1476d8 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x7a2580d0 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x7a27c184 ewma_init +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a50a315 files_lglock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x7a6385e9 tcp_tso_segment +EXPORT_SYMBOL vmlinux 0x7a6f4cee neigh_parms_release +EXPORT_SYMBOL vmlinux 0x7a72ae71 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x7a79ce82 ethtool_op_get_ufo +EXPORT_SYMBOL vmlinux 0x7a9d251b of_find_node_by_path +EXPORT_SYMBOL vmlinux 0x7aadb791 seq_lseek +EXPORT_SYMBOL vmlinux 0x7ad22f3c blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x7add5a59 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b03848a verify_mem_not_deleted +EXPORT_SYMBOL vmlinux 0x7b081437 padata_start +EXPORT_SYMBOL vmlinux 0x7b1bd040 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x7b3d6fd6 mmc_request_done +EXPORT_SYMBOL vmlinux 0x7b6a424f input_set_capability +EXPORT_SYMBOL vmlinux 0x7b728036 key_put +EXPORT_SYMBOL vmlinux 0x7b846b07 is_bad_inode +EXPORT_SYMBOL vmlinux 0x7ba45393 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x7bb32ee3 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x7bc453aa unregister_console +EXPORT_SYMBOL vmlinux 0x7be3a8aa dev_add_pack +EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c008c29 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x7c246b12 registered_fb +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c60d66e getname +EXPORT_SYMBOL vmlinux 0x7c684c7f dquot_quota_off +EXPORT_SYMBOL vmlinux 0x7c8303a3 tcp_prot +EXPORT_SYMBOL vmlinux 0x7c8ec10e mfd_add_devices +EXPORT_SYMBOL vmlinux 0x7c904ded unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca341af kernel_thread +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb7fb78 free_netdev +EXPORT_SYMBOL vmlinux 0x7cd336a9 misc_register +EXPORT_SYMBOL vmlinux 0x7ce0ae7c param_get_long +EXPORT_SYMBOL vmlinux 0x7cf6d622 free_buffer_head +EXPORT_SYMBOL vmlinux 0x7d04c5d4 cap_netlink_recv +EXPORT_SYMBOL vmlinux 0x7d0da0ff lock_sock_fast +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d159c17 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7d49b984 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x7d71a0ff tcp_read_sock +EXPORT_SYMBOL vmlinux 0x7d7f5fc6 ftrace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x7d8fdeb4 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x7daae0f3 serio_rescan +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e394c4e sysctl_local_reserved_ports +EXPORT_SYMBOL vmlinux 0x7e3ca259 mount_bdev +EXPORT_SYMBOL vmlinux 0x7e4abcef blk_register_region +EXPORT_SYMBOL vmlinux 0x7e58f76e agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x7e72c14f netif_skb_features +EXPORT_SYMBOL vmlinux 0x7e7544c7 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x7e78a095 kmap_high +EXPORT_SYMBOL vmlinux 0x7e81f1a0 ps2_end_command +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e927ea0 dquot_get_dqinfo +EXPORT_SYMBOL vmlinux 0x7e9e4230 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x7ea44b78 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x7ec8e478 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7ed1dffb generic_setlease +EXPORT_SYMBOL vmlinux 0x7eef3418 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x7f05995f macio_dev_get +EXPORT_SYMBOL vmlinux 0x7f074042 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x7f14610c netif_device_attach +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f463a96 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x7f6c3937 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x7f751edc follow_up +EXPORT_SYMBOL vmlinux 0x7f78a0ed scsi_reset_provider +EXPORT_SYMBOL vmlinux 0x7f800b3f netpoll_setup +EXPORT_SYMBOL vmlinux 0x7f9cbded macio_request_resource +EXPORT_SYMBOL vmlinux 0x7fc1e6fd journal_errno +EXPORT_SYMBOL vmlinux 0x800df1d7 groups_free +EXPORT_SYMBOL vmlinux 0x801f5a3f __strncpy_from_user +EXPORT_SYMBOL vmlinux 0x8085444a kmem_cache_create +EXPORT_SYMBOL vmlinux 0x808b2458 mdiobus_free +EXPORT_SYMBOL vmlinux 0x808e96d3 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x80a1c31e blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x80f137e1 vfs_writev +EXPORT_SYMBOL vmlinux 0x80fef870 mpage_readpage +EXPORT_SYMBOL vmlinux 0x810b3618 param_ops_string +EXPORT_SYMBOL vmlinux 0x8110609e block_truncate_page +EXPORT_SYMBOL vmlinux 0x8123f2a4 ppp_input +EXPORT_SYMBOL vmlinux 0x8131abcd input_release_device +EXPORT_SYMBOL vmlinux 0x8139a1ad scsi_nonblockable_ioctl +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81568d3e swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8169b23f inet6_release +EXPORT_SYMBOL vmlinux 0x816e729f pci_vpd_truncate +EXPORT_SYMBOL vmlinux 0x81819480 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x818a0823 get_disk +EXPORT_SYMBOL vmlinux 0x818a2c08 do_splice_from +EXPORT_SYMBOL vmlinux 0x819043f7 writeback_inodes_sb_nr_if_idle +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81bc498d tty_write_room +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e44555 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x81fba17d dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x81fbf669 macio_register_driver +EXPORT_SYMBOL vmlinux 0x82034bdc posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x823ce977 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x8251bcc3 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x8260686f bitmap_find_next_zero_area +EXPORT_SYMBOL vmlinux 0x8288c92a __alloc_skb +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82bea1c8 machine_id +EXPORT_SYMBOL vmlinux 0x82cfd688 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x82d14473 blk_free_tags +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x82f278a4 key_type_keyring +EXPORT_SYMBOL vmlinux 0x83069e5f bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x831a6298 register_nls +EXPORT_SYMBOL vmlinux 0x831ae334 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x8343cd74 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x835afb59 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x8368e9a8 flush_hash_entry +EXPORT_SYMBOL vmlinux 0x836b2035 vc_cons +EXPORT_SYMBOL vmlinux 0x83800bfa kref_init +EXPORT_SYMBOL vmlinux 0x8384a2c5 tty_unlock +EXPORT_SYMBOL vmlinux 0x838f70b0 twl_i2c_write_u8 +EXPORT_SYMBOL vmlinux 0x839cce7a ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x839fdc27 pci_find_bus +EXPORT_SYMBOL vmlinux 0x83a476ce bitmap_scnlistprintf +EXPORT_SYMBOL vmlinux 0x83be5e05 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x83f1a59b do_sync_write +EXPORT_SYMBOL vmlinux 0x8406c583 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x8417175a cdev_init +EXPORT_SYMBOL vmlinux 0x8429e432 wireless_send_event +EXPORT_SYMBOL vmlinux 0x8436f8e3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD +EXPORT_SYMBOL vmlinux 0x844f697a tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x844f87bf unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x8454e6ca page_readlink +EXPORT_SYMBOL vmlinux 0x845b36ed in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x846bcc01 dm_table_get +EXPORT_SYMBOL vmlinux 0x84919578 dev_err +EXPORT_SYMBOL vmlinux 0x84a34d09 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84cd3184 __locks_copy_lock +EXPORT_SYMBOL vmlinux 0x84ea2347 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x84ea40da of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x84faf6b2 generic_listxattr +EXPORT_SYMBOL vmlinux 0x850e03e8 d_add_ci +EXPORT_SYMBOL vmlinux 0x852140e1 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x854074a1 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x8541bccc intercept_table +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x859275d5 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x859ea0d0 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b78955 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e4d8d0 fb_pan_display +EXPORT_SYMBOL vmlinux 0x85e7deb2 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x85eb0c5d flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x85ebafab of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x862ff3ca __ip_dev_find +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86586928 of_node_put +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x867c45c6 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x868625dc jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869c05c4 find_lock_page +EXPORT_SYMBOL vmlinux 0x86a3fbdf scsi_remove_host +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86c1c7ef pmac_suspend_agp_for_card +EXPORT_SYMBOL vmlinux 0x86ccfd06 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86db35d4 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x86f2435c load_nls_default +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87045e67 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x870bf928 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872ffc82 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x875e132b soft_cursor +EXPORT_SYMBOL vmlinux 0x8764c03f md_done_sync +EXPORT_SYMBOL vmlinux 0x876b1518 llc_build_and_send_ui_pkt +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87b0ea52 force_sig +EXPORT_SYMBOL vmlinux 0x87ba6818 sk_stream_error +EXPORT_SYMBOL vmlinux 0x87e1bbc0 mmc_suspend_host +EXPORT_SYMBOL vmlinux 0x87fed888 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x88024ba2 dma_async_memcpy_buf_to_buf +EXPORT_SYMBOL vmlinux 0x881039d0 zlib_inflate +EXPORT_SYMBOL vmlinux 0x8834396c mod_timer +EXPORT_SYMBOL vmlinux 0x884cbb6c sock_wfree +EXPORT_SYMBOL vmlinux 0x8858d4d4 tcp_close +EXPORT_SYMBOL vmlinux 0x886f55c5 dev_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x887fde9f dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x888f46af mpage_writepage +EXPORT_SYMBOL vmlinux 0x88a275cd dquot_enable +EXPORT_SYMBOL vmlinux 0x88a3157b locks_init_lock +EXPORT_SYMBOL vmlinux 0x88d4aa20 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x88ed0505 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x891d593f vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x893693aa vfs_create +EXPORT_SYMBOL vmlinux 0x8941bf84 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x8949858b schedule_work +EXPORT_SYMBOL vmlinux 0x89540e67 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x895834c4 input_free_device +EXPORT_SYMBOL vmlinux 0x897473df mktime +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x897f061d downgrade_write +EXPORT_SYMBOL vmlinux 0x89a02f97 test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x89a7ed2d pmac_resume_agp_for_card +EXPORT_SYMBOL vmlinux 0x89b3107b isa_mem_base +EXPORT_SYMBOL vmlinux 0x89b95c8a generic_file_open +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d66811 build_ehash_secret +EXPORT_SYMBOL vmlinux 0x89da4432 of_iomap +EXPORT_SYMBOL vmlinux 0x89ee91fa dev_mc_flush +EXPORT_SYMBOL vmlinux 0x89f20776 blk_put_request +EXPORT_SYMBOL vmlinux 0x8a0acaa6 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x8a22bdee noop_fsync +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a67bc61 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x8a792c42 mmc_host_lazy_disable +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ab0e3c9 ethtool_op_set_tso +EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add +EXPORT_SYMBOL vmlinux 0x8abab9c5 lookup_bdev +EXPORT_SYMBOL vmlinux 0x8aea09ef serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x8afe0f8d agp_copy_info +EXPORT_SYMBOL vmlinux 0x8b162918 elv_rb_find +EXPORT_SYMBOL vmlinux 0x8b1a7a66 pcie_aspm_enabled +EXPORT_SYMBOL vmlinux 0x8b2216d4 cdev_del +EXPORT_SYMBOL vmlinux 0x8b26e498 xfrm_input +EXPORT_SYMBOL vmlinux 0x8b291c85 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x8b33e5b6 d_alloc +EXPORT_SYMBOL vmlinux 0x8b3cdacb blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x8b42fcfd key_revoke +EXPORT_SYMBOL vmlinux 0x8b5b6f4c __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x8b74f0c9 genl_unregister_ops +EXPORT_SYMBOL vmlinux 0x8b8d5d6d xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x8bddb700 bdi_init +EXPORT_SYMBOL vmlinux 0x8be23854 bio_init +EXPORT_SYMBOL vmlinux 0x8bfeaaa1 end_page_writeback +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c2e3852 blk_complete_request +EXPORT_SYMBOL vmlinux 0x8c39fe08 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x8c527e4f vm_map_ram +EXPORT_SYMBOL vmlinux 0x8c54ca4f inet_select_addr +EXPORT_SYMBOL vmlinux 0x8c55385b __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x8c76cc23 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x8c7a3757 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x8c805436 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x8c832658 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x8c8fc61b sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x8cb82a46 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc8785e aio_complete +EXPORT_SYMBOL vmlinux 0x8ccf6da6 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x8cdae028 filp_open +EXPORT_SYMBOL vmlinux 0x8ce62385 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x8cf1dd70 otg_put_transceiver +EXPORT_SYMBOL vmlinux 0x8cfb7bd2 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x8d27416e eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x8d36bb7e agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x8d3ab26a netdev_err +EXPORT_SYMBOL vmlinux 0x8d4cbe82 mach_chrp +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d5be525 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x8d6e9062 wake_up_process +EXPORT_SYMBOL vmlinux 0x8da63552 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x8dbd1467 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x8dc82a27 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8df5da63 memstart_addr +EXPORT_SYMBOL vmlinux 0x8e0b7743 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x8e11426f scsi_print_result +EXPORT_SYMBOL vmlinux 0x8e2e1bf2 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x8e328de2 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x8e4ac3bb nlmsg_notify +EXPORT_SYMBOL vmlinux 0x8e4b1069 kobject_get +EXPORT_SYMBOL vmlinux 0x8e4ceefa simple_dir_operations +EXPORT_SYMBOL vmlinux 0x8e555738 param_get_uint +EXPORT_SYMBOL vmlinux 0x8e63350d idr_replace +EXPORT_SYMBOL vmlinux 0x8e66e438 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x8e67ebf1 scsi_device_put +EXPORT_SYMBOL vmlinux 0x8e71b809 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x8e902ae3 arp_create +EXPORT_SYMBOL vmlinux 0x8e97a21a skb_seq_read +EXPORT_SYMBOL vmlinux 0x8eb583a3 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ed27a17 page_address +EXPORT_SYMBOL vmlinux 0x8ed4a05b scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x8ed91efe unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x8ee69235 timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8f0b0083 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x8f120e18 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x8f1d2312 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x8f2cda52 seq_release +EXPORT_SYMBOL vmlinux 0x8f41b269 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x8f48679a rb_prev +EXPORT_SYMBOL vmlinux 0x8f4b9988 mmc_hw_reset_check +EXPORT_SYMBOL vmlinux 0x8f51e61a led_blink_set +EXPORT_SYMBOL vmlinux 0x8f532c07 task_ns_capable +EXPORT_SYMBOL vmlinux 0x8f5f53f2 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x8f7c4d8e sync_inode +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f89ce33 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x8f9e29d8 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x8f9e3c8f __scsi_put_command +EXPORT_SYMBOL vmlinux 0x8facb9ff pskb_copy +EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc +EXPORT_SYMBOL vmlinux 0x8fc7f839 param_set_charp +EXPORT_SYMBOL vmlinux 0x8fe6eede cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x8ff66782 param_get_ushort +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x9008c70b i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x902477c4 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x90284013 release_firmware +EXPORT_SYMBOL vmlinux 0x902e4cd5 of_phy_connect_fixed_link +EXPORT_SYMBOL vmlinux 0x903320dd skb_free_datagram +EXPORT_SYMBOL vmlinux 0x904a3504 generic_write_sync +EXPORT_SYMBOL vmlinux 0x904f185e tty_devnum +EXPORT_SYMBOL vmlinux 0x90501868 transfer_to_handler +EXPORT_SYMBOL vmlinux 0x905bba18 vm_event_states +EXPORT_SYMBOL vmlinux 0x9084507c ppc_md +EXPORT_SYMBOL vmlinux 0x90a33dd0 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x90b21caa blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x90c56177 of_dev_put +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90d2cc95 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x90e146c2 trace_seq_putc +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91490452 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x918a2a4e scsi_free_command +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a6b5fc tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x91be39e9 neigh_destroy +EXPORT_SYMBOL vmlinux 0x91ce4cac __netif_schedule +EXPORT_SYMBOL vmlinux 0x91d88e48 __debugger_dabr_match +EXPORT_SYMBOL vmlinux 0x91f6c2c3 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x920dfeb7 textsearch_register +EXPORT_SYMBOL vmlinux 0x9223fe6a skb_insert +EXPORT_SYMBOL vmlinux 0x922fe152 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x92378526 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x923acc16 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923de294 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x9268a0fe unregister_8022_client +EXPORT_SYMBOL vmlinux 0x9276fb7a pagecache_write_end +EXPORT_SYMBOL vmlinux 0x927df918 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x9282b3c7 datagram_poll +EXPORT_SYMBOL vmlinux 0x928d58b9 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x928dc8b5 rename_lock +EXPORT_SYMBOL vmlinux 0x92a2c46d ida_get_new +EXPORT_SYMBOL vmlinux 0x92bc2e7a sk_free +EXPORT_SYMBOL vmlinux 0x92c4d8fb tcp_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x92c818ec register_sysctl_table +EXPORT_SYMBOL vmlinux 0x92d0eaf2 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x92d64c9c add_disk +EXPORT_SYMBOL vmlinux 0x92db4aac qdisc_destroy +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9309de94 cuda_request +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table +EXPORT_SYMBOL vmlinux 0x93360fed pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x93448c57 screen_info +EXPORT_SYMBOL vmlinux 0x93506788 read_cache_page_async +EXPORT_SYMBOL vmlinux 0x935d90f9 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x9361014c xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x9375e865 km_state_notify +EXPORT_SYMBOL vmlinux 0x937bf4cb journal_abort +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93a6f662 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x93cfd568 blk_integrity_is_initialized +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x93fd66f0 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x9401eee1 scsi_host_get +EXPORT_SYMBOL vmlinux 0x940b3c3f read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x944ac7a2 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x94824ce7 generic_show_options +EXPORT_SYMBOL vmlinux 0x94864c7a wl12xx_get_platform_data +EXPORT_SYMBOL vmlinux 0x9489e97c ppp_dev_name +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949ea0c2 mount_subtree +EXPORT_SYMBOL vmlinux 0x94a2fb0c scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x94b6b3fa simple_empty +EXPORT_SYMBOL vmlinux 0x94bfdad5 inet_shutdown +EXPORT_SYMBOL vmlinux 0x94c4f6f8 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x94cb0585 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x94ebdd77 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x94f4788d call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x94f97d11 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x952b106a remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x9533b1c8 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x953db383 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x954488a4 syncookie_secret +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9553c16d sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x9557c8d1 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x95690745 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x9572ffde vfs_llseek +EXPORT_SYMBOL vmlinux 0x95830ac2 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x958b2b44 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x958fffae __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x959c440a simple_readpage +EXPORT_SYMBOL vmlinux 0x95b3509e key_task_permission +EXPORT_SYMBOL vmlinux 0x95b5c143 netdev_change_features +EXPORT_SYMBOL vmlinux 0x95f2bf8f get_fs_type +EXPORT_SYMBOL vmlinux 0x95f354a0 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x95ffe516 pci_disable_device +EXPORT_SYMBOL vmlinux 0x96146d3f __devm_request_region +EXPORT_SYMBOL vmlinux 0x964fb579 noop_llseek +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x965ff0e2 sk_reset_txq +EXPORT_SYMBOL vmlinux 0x9675f196 pci_remove_behind_bridge +EXPORT_SYMBOL vmlinux 0x96783e9e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x96b17161 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d1f2a7 mmc_assume_removable +EXPORT_SYMBOL vmlinux 0x96dbcca2 ioremap_prot +EXPORT_SYMBOL vmlinux 0x96f290e3 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x96ff8bc4 udp_seq_open +EXPORT_SYMBOL vmlinux 0x9704e93a ida_get_new_above +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x974b54e1 register_console +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975ab5f7 fb_class +EXPORT_SYMBOL vmlinux 0x97838056 skb_append +EXPORT_SYMBOL vmlinux 0x97939974 tcp_v4_md5_do_add +EXPORT_SYMBOL vmlinux 0x97960605 __elv_add_request +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97abf713 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x97d844f4 __lock_buffer +EXPORT_SYMBOL vmlinux 0x981888f7 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x9824a4bd pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x9824ba15 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x9839c302 tty_port_init +EXPORT_SYMBOL vmlinux 0x98440261 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x985d1924 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x989ede4b i8042_install_filter +EXPORT_SYMBOL vmlinux 0x98aeb205 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x98b2d884 unregister_nls +EXPORT_SYMBOL vmlinux 0x98b4a5fa unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x98fa21b0 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ +EXPORT_SYMBOL vmlinux 0x99048aa0 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x9927c32b scsi_adjust_queue_depth +EXPORT_SYMBOL vmlinux 0x99436140 inode_change_ok +EXPORT_SYMBOL vmlinux 0x99525e3a vfsmount_lock_local_unlock +EXPORT_SYMBOL vmlinux 0x99599d71 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x996912de redraw_screen +EXPORT_SYMBOL vmlinux 0x998ce915 eth_type_trans +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99bfbe39 get_unused_fd +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d7ab1c filemap_fault +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a305226 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x9a368f43 devm_ioremap_prot +EXPORT_SYMBOL vmlinux 0x9a626734 ftrace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x9a656cc7 serio_open +EXPORT_SYMBOL vmlinux 0x9a71eeed neigh_seq_next +EXPORT_SYMBOL vmlinux 0x9a99b968 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x9a9e9368 mutex_lock +EXPORT_SYMBOL vmlinux 0x9aa04412 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x9aac65ba dentry_unhash +EXPORT_SYMBOL vmlinux 0x9ab8808c param_get_charp +EXPORT_SYMBOL vmlinux 0x9ac22a4e uart_match_port +EXPORT_SYMBOL vmlinux 0x9acdfd72 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x9b0287d5 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x9b13aa0a alloc_disk_node +EXPORT_SYMBOL vmlinux 0x9b1b73c2 revalidate_disk +EXPORT_SYMBOL vmlinux 0x9b322379 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b68e095 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b78055f neigh_compat_output +EXPORT_SYMBOL vmlinux 0x9b9967c5 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba7935b pci_assign_resource +EXPORT_SYMBOL vmlinux 0x9bad1719 thermal_zone_device_update +EXPORT_SYMBOL vmlinux 0x9bce482f __release_region +EXPORT_SYMBOL vmlinux 0x9be638d7 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x9beb64fc md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x9c012508 fb_parse_edid +EXPORT_SYMBOL vmlinux 0x9c5f81da cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x9c7cb1df dm_get_mapinfo +EXPORT_SYMBOL vmlinux 0x9c9fc10f cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x9cb96e92 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x9ccf1b9b mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x9cdf0ec5 vfsmount_lock_global_lock_online +EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL vmlinux 0x9ceb163c memcpy_toiovec +EXPORT_SYMBOL vmlinux 0x9cf6a99d fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x9cfd56c5 scsi_print_status +EXPORT_SYMBOL vmlinux 0x9d125085 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d23437f pskb_expand_head +EXPORT_SYMBOL vmlinux 0x9d35d9e2 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d3c07ce udplite_prot +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d786943 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d7e9c90 ethtool_op_set_tx_hw_csum +EXPORT_SYMBOL vmlinux 0x9d8ac336 fib_default_rule_pref +EXPORT_SYMBOL vmlinux 0x9d9c9597 idr_init +EXPORT_SYMBOL vmlinux 0x9da70fa4 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x9dbaaf64 padata_alloc +EXPORT_SYMBOL vmlinux 0x9dc921f9 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x9dd149d8 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x9dde7acc uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x9df13044 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x9df9511c tty_unregister_device +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e12f16b ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x9e1aedff of_node_get +EXPORT_SYMBOL vmlinux 0x9e1cfc90 ioremap_wc +EXPORT_SYMBOL vmlinux 0x9e2000a7 memcpy_toiovecend +EXPORT_SYMBOL vmlinux 0x9e419d23 thermal_cooling_device_register +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e607910 audit_log +EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x9e740932 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x9e765f14 dquot_drop +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9f1714 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x9ebe3c98 sock_no_bind +EXPORT_SYMBOL vmlinux 0x9ed3884f read_cache_pages +EXPORT_SYMBOL vmlinux 0x9ed685ee iov_iter_advance +EXPORT_SYMBOL vmlinux 0x9edb632b input_register_handle +EXPORT_SYMBOL vmlinux 0x9eecde16 do_brk +EXPORT_SYMBOL vmlinux 0x9ef47538 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x9f176222 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x9f2bdaac __bitmap_or +EXPORT_SYMBOL vmlinux 0x9f2bff7d dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f5f7efe log_wait_commit +EXPORT_SYMBOL vmlinux 0x9f75082d journal_destroy +EXPORT_SYMBOL vmlinux 0x9f7bf40f journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x9f89386e pid_task +EXPORT_SYMBOL vmlinux 0x9f9436c6 serio_close +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fb3dd30 memcpy_fromiovec +EXPORT_SYMBOL vmlinux 0x9fbc3ecb __nla_put +EXPORT_SYMBOL vmlinux 0x9fd3e9b8 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x9fda167c genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa061a840 skb_clone +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa07e66af tty_throttle +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa095ced4 register_md_personality +EXPORT_SYMBOL vmlinux 0xa0ab939a jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0cbfc67 bh_submit_read +EXPORT_SYMBOL vmlinux 0xa0ceef51 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14f3d8c ewma_add +EXPORT_SYMBOL vmlinux 0xa163efde dcache_readdir +EXPORT_SYMBOL vmlinux 0xa16c5fd3 skb_set_dev +EXPORT_SYMBOL vmlinux 0xa170e6ce i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xa1a25653 pci_disable_ltr +EXPORT_SYMBOL vmlinux 0xa1a3c10e tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xa1a5c45a generic_getxattr +EXPORT_SYMBOL vmlinux 0xa1b1ea3a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1ba2fdb vfsmount_lock_global_lock +EXPORT_SYMBOL vmlinux 0xa1c4b6d2 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xa1c5a3b3 cleancache_enabled +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa1fbbc5d __netdev_printk +EXPORT_SYMBOL vmlinux 0xa20ce1b8 net_msg_warn +EXPORT_SYMBOL vmlinux 0xa2188e94 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xa2189615 security_path_chmod +EXPORT_SYMBOL vmlinux 0xa225664b inet_sendmsg +EXPORT_SYMBOL vmlinux 0xa22f4220 blk_init_tags +EXPORT_SYMBOL vmlinux 0xa2392ee5 dev_set_drvdata +EXPORT_SYMBOL vmlinux 0xa24c8474 qdisc_reset +EXPORT_SYMBOL vmlinux 0xa2706e37 tty_pair_get_pty +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2a5fd77 inet_ehash_secret +EXPORT_SYMBOL vmlinux 0xa2babe36 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2c56c31 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa2dc5981 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xa2ebd6f2 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xa2ef34d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa3086fca unregister_key_type +EXPORT_SYMBOL vmlinux 0xa315e883 pci_release_regions +EXPORT_SYMBOL vmlinux 0xa32629f6 dns_query +EXPORT_SYMBOL vmlinux 0xa332cdd1 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa3342148 read_cache_page +EXPORT_SYMBOL vmlinux 0xa34f1ef5 crc32_le +EXPORT_SYMBOL vmlinux 0xa35234f5 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xa35de80f ipv4_config +EXPORT_SYMBOL vmlinux 0xa360a9de mii_check_media +EXPORT_SYMBOL vmlinux 0xa372f256 dev_alert +EXPORT_SYMBOL vmlinux 0xa383c87e tty_free_termios +EXPORT_SYMBOL vmlinux 0xa3867b3d __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xa38a3508 mount_pseudo +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa3966c29 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3bfb80e macio_release_resources +EXPORT_SYMBOL vmlinux 0xa3dc5012 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0xa3e70a47 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa3f35c1a proc_symlink +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa43b9539 memcpy_fromiovecend +EXPORT_SYMBOL vmlinux 0xa43e028a sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xa43f8f46 pci_choose_state +EXPORT_SYMBOL vmlinux 0xa44340d6 dentry_open +EXPORT_SYMBOL vmlinux 0xa44b2366 __get_user_pages +EXPORT_SYMBOL vmlinux 0xa44ee473 tcf_em_register +EXPORT_SYMBOL vmlinux 0xa4791dbc of_get_property +EXPORT_SYMBOL vmlinux 0xa4799bee netif_napi_add +EXPORT_SYMBOL vmlinux 0xa49821c4 pci_release_region +EXPORT_SYMBOL vmlinux 0xa4a79a43 tty_pair_get_tty +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4ad3f7d block_write_begin +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bcab83 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xa4c46830 netif_napi_del +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4db5290 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xa4e18d34 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xa4e7ffe2 kobject_add +EXPORT_SYMBOL vmlinux 0xa50ce5d5 __free_pages +EXPORT_SYMBOL vmlinux 0xa52bccc1 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a2df90 dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xa5a3575d elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last +EXPORT_SYMBOL vmlinux 0xa5bd1358 kernel_read +EXPORT_SYMBOL vmlinux 0xa5c14f55 cdev_add +EXPORT_SYMBOL vmlinux 0xa5c2ed9c padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource +EXPORT_SYMBOL vmlinux 0xa5d3078c dma_sync_wait +EXPORT_SYMBOL vmlinux 0xa5d52b50 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xa5e6198b bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xa618d7e7 pci_save_state +EXPORT_SYMBOL vmlinux 0xa620e1b1 tcp_v4_md5_do_del +EXPORT_SYMBOL vmlinux 0xa62ce1d7 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xa630fb30 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xa6443ee5 security_path_mknod +EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa66d1e3b shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6a2efaa ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xa6a51cc5 netif_rx +EXPORT_SYMBOL vmlinux 0xa6a71958 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xa6cceaed pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xa6dcc773 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa6e1fcb1 napi_get_frags +EXPORT_SYMBOL vmlinux 0xa719ad38 override_creds +EXPORT_SYMBOL vmlinux 0xa74831a5 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xa7577c3b mmc_can_reset +EXPORT_SYMBOL vmlinux 0xa7824a1a bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa799aaf0 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xa7ae0071 elv_rb_del +EXPORT_SYMBOL vmlinux 0xa7cd5e5d skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xa7d8e303 dev_crit +EXPORT_SYMBOL vmlinux 0xa8163a21 mach_powermac +EXPORT_SYMBOL vmlinux 0xa81cdf50 ll_rw_block +EXPORT_SYMBOL vmlinux 0xa81f1106 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xa8223905 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa8232c78 strtobool +EXPORT_SYMBOL vmlinux 0xa857ee12 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xa861ab6e __ioremap +EXPORT_SYMBOL vmlinux 0xa8703d26 set_anon_super +EXPORT_SYMBOL vmlinux 0xa883b69e skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 +EXPORT_SYMBOL vmlinux 0xa8d09e4f agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9096d2b tty_set_operations +EXPORT_SYMBOL vmlinux 0xa90a41a8 register_framebuffer +EXPORT_SYMBOL vmlinux 0xa919a835 single_open +EXPORT_SYMBOL vmlinux 0xa921c0fe tcf_hash_release +EXPORT_SYMBOL vmlinux 0xa9353a02 dev_load +EXPORT_SYMBOL vmlinux 0xa9364a61 kill_pid +EXPORT_SYMBOL vmlinux 0xa93ebec0 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE +EXPORT_SYMBOL vmlinux 0xa9ded916 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xa9e828b0 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xa9effda5 __first_cpu +EXPORT_SYMBOL vmlinux 0xaa4df512 pmu_batteries +EXPORT_SYMBOL vmlinux 0xaa501852 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xaa5c70bf sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f760b empty_aops +EXPORT_SYMBOL vmlinux 0xaaa286ec kobject_init +EXPORT_SYMBOL vmlinux 0xaab9f7e7 node_states +EXPORT_SYMBOL vmlinux 0xaac47bdc blk_end_request +EXPORT_SYMBOL vmlinux 0xaad3cceb sock_kfree_s +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae4d30f md_flush_request +EXPORT_SYMBOL vmlinux 0xaaf537d1 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab304ede validate_sp +EXPORT_SYMBOL vmlinux 0xab4f5b9d ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab9ea999 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xabb9d87c pci_get_slot +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd0c91c rtc_time_to_tm +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac66143e d_lookup +EXPORT_SYMBOL vmlinux 0xac6855b0 gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xac913efe lookup_hash +EXPORT_SYMBOL vmlinux 0xac9e810d journal_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xacb1d6a6 sock_i_uid +EXPORT_SYMBOL vmlinux 0xacb36217 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd26e9a dev_addr_del +EXPORT_SYMBOL vmlinux 0xaceaae55 elv_add_request +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf78d6f dev_uc_del +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0a6e0a flex_array_prealloc +EXPORT_SYMBOL vmlinux 0xad145f13 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xad39bc36 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xad4307b5 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xad466018 quota_send_warning +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad669a70 journal_lock_updates +EXPORT_SYMBOL vmlinux 0xad6aedf8 may_umount +EXPORT_SYMBOL vmlinux 0xad77b2c6 scsi_put_command +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad9b7901 of_get_parent +EXPORT_SYMBOL vmlinux 0xad9ff6f1 skb_copy_datagram_const_iovec +EXPORT_SYMBOL vmlinux 0xadaa2657 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0xadcac4a3 vfsmount_lock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xadcaeee0 scsi_unregister +EXPORT_SYMBOL vmlinux 0xadcf8058 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xadd1e971 alignment_exception +EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region +EXPORT_SYMBOL vmlinux 0xae162448 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xae39438c xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xae4dd60d llc_sap_find +EXPORT_SYMBOL vmlinux 0xae4e7ec9 phy_find_first +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae6140c8 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xae76c191 bio_integrity_alloc_bioset +EXPORT_SYMBOL vmlinux 0xae7a4da7 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xae7c9b28 dev_alloc_skb +EXPORT_SYMBOL vmlinux 0xaebcc21f kern_path +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaec6578b blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xaed2a9b5 mem_map +EXPORT_SYMBOL vmlinux 0xaee21762 console_start +EXPORT_SYMBOL vmlinux 0xaee5cc56 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xaf034e19 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf0d0f5d security_inode_readlink +EXPORT_SYMBOL vmlinux 0xaf106a3b dev_close +EXPORT_SYMBOL vmlinux 0xaf180bd7 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xaf27673f unlock_super +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf5f7994 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xaf91d89f __kernel_param_lock +EXPORT_SYMBOL vmlinux 0xafd68c33 flex_array_free +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb0017cbf iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xb0146c3a param_set_byte +EXPORT_SYMBOL vmlinux 0xb022b853 phy_driver_register +EXPORT_SYMBOL vmlinux 0xb023d514 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xb039c2e9 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xb0456351 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xb05f2926 d_set_d_op +EXPORT_SYMBOL vmlinux 0xb0af0a7e skb_checksum +EXPORT_SYMBOL vmlinux 0xb0b847ac __bitmap_full +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb127349e migrate_page +EXPORT_SYMBOL vmlinux 0xb146faa2 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb18ee245 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xb19760c3 bitmap_onto +EXPORT_SYMBOL vmlinux 0xb1ace403 i2c_bit_add_bus +EXPORT_SYMBOL vmlinux 0xb1b1f154 ps2_command +EXPORT_SYMBOL vmlinux 0xb1b945bc neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1e070fd mapping_tagged +EXPORT_SYMBOL vmlinux 0xb1e57de6 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xb1eddd0e pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set +EXPORT_SYMBOL vmlinux 0xb24c2db9 idr_get_new_above +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26a7c96 __devm_release_region +EXPORT_SYMBOL vmlinux 0xb276f9cb default_llseek +EXPORT_SYMBOL vmlinux 0xb29065f0 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xb2965c68 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xb2acd6f5 pci_dev_put +EXPORT_SYMBOL vmlinux 0xb2f9f6af blkdev_get +EXPORT_SYMBOL vmlinux 0xb2fe6f8f scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xb3104ad4 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xb31526ee sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb3305d52 send_remote_softirq +EXPORT_SYMBOL vmlinux 0xb337dfb0 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xb34acf90 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xb3572321 scsi_prep_return +EXPORT_SYMBOL vmlinux 0xb35eee84 seq_escape +EXPORT_SYMBOL vmlinux 0xb386a3a5 d_alloc_name +EXPORT_SYMBOL vmlinux 0xb39da395 neigh_table_init_no_netlink +EXPORT_SYMBOL vmlinux 0xb3a307c6 si_meminfo +EXPORT_SYMBOL vmlinux 0xb3c0c0a7 vc_resize +EXPORT_SYMBOL vmlinux 0xb3d73415 uart_register_driver +EXPORT_SYMBOL vmlinux 0xb3f02622 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xb3f1f9a3 agp_free_page_array +EXPORT_SYMBOL vmlinux 0xb412edcd ab8500_gpadc_read_raw +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4312494 inet_twsk_deschedule +EXPORT_SYMBOL vmlinux 0xb439eb0d scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xb4520a71 kernel_listen +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb48f3dc1 splice_from_pipe_feed +EXPORT_SYMBOL vmlinux 0xb4985f65 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xb4c16af2 keyring_clear +EXPORT_SYMBOL vmlinux 0xb4f5d0ed fput +EXPORT_SYMBOL vmlinux 0xb5044271 vsscanf +EXPORT_SYMBOL vmlinux 0xb5198a1d __cleancache_flush_fs +EXPORT_SYMBOL vmlinux 0xb53a4336 kmap_pte +EXPORT_SYMBOL vmlinux 0xb53e9404 neigh_create +EXPORT_SYMBOL vmlinux 0xb53ef7a7 contig_page_data +EXPORT_SYMBOL vmlinux 0xb540617c tcp_poll +EXPORT_SYMBOL vmlinux 0xb54347ad tcp_syn_flood_action +EXPORT_SYMBOL vmlinux 0xb54533f7 usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xb55477f6 register_con_driver +EXPORT_SYMBOL vmlinux 0xb55b445b mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xb55e4bdf generic_write_checks +EXPORT_SYMBOL vmlinux 0xb564ca25 pci_dev_get +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5bc502f netif_device_detach +EXPORT_SYMBOL vmlinux 0xb5c8993f twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xb5d54817 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xb5e5862f journal_check_available_features +EXPORT_SYMBOL vmlinux 0xb5e675ba tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xb5f85c41 is_container_init +EXPORT_SYMBOL vmlinux 0xb60ff9ea install_exec_creds +EXPORT_SYMBOL vmlinux 0xb61f1d60 sk_release_kernel +EXPORT_SYMBOL vmlinux 0xb623885b security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xb628f715 files_lglock_local_lock +EXPORT_SYMBOL vmlinux 0xb64dcd55 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xb64fefc7 mount_ns +EXPORT_SYMBOL vmlinux 0xb6599b9a machine_check_exception +EXPORT_SYMBOL vmlinux 0xb65bd67f kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xb66eb397 dma_direct_ops +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6822a33 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xb682505d blk_insert_request +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6a61a86 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6c09fb4 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xb6c5a973 scsi_show_result +EXPORT_SYMBOL vmlinux 0xb6d42188 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xb6dcda00 freeze_bdev +EXPORT_SYMBOL vmlinux 0xb6eaaa89 scsi_host_put +EXPORT_SYMBOL vmlinux 0xb6f76161 put_disk +EXPORT_SYMBOL vmlinux 0xb70b7da7 phy_device_free +EXPORT_SYMBOL vmlinux 0xb72c25d7 arp_tbl +EXPORT_SYMBOL vmlinux 0xb7332ff0 adb_client_list +EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 +EXPORT_SYMBOL vmlinux 0xb75a0136 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xb75ce062 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xb7607055 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xb7703b55 vsc824x_add_skew +EXPORT_SYMBOL vmlinux 0xb77977ff netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xb789b89f tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xb78c61e8 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb78fac7a truncate_pagecache +EXPORT_SYMBOL vmlinux 0xb7931f1e writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xb7a4b8c5 generic_file_buffered_write +EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs +EXPORT_SYMBOL vmlinux 0xb7b61546 crc32_be +EXPORT_SYMBOL vmlinux 0xb7bad962 make_bad_inode +EXPORT_SYMBOL vmlinux 0xb7da3f54 dev_mc_init +EXPORT_SYMBOL vmlinux 0xb7db1555 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xb7f1bcdd padata_do_parallel +EXPORT_SYMBOL vmlinux 0xb7fab7ea generic_permission +EXPORT_SYMBOL vmlinux 0xb7fd91a4 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xb81774e8 skb_copy_datagram_from_iovec +EXPORT_SYMBOL vmlinux 0xb8179b45 secpath_dup +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb8214399 dget_parent +EXPORT_SYMBOL vmlinux 0xb835b3e4 radix_tree_prev_hole +EXPORT_SYMBOL vmlinux 0xb857da73 ida_destroy +EXPORT_SYMBOL vmlinux 0xb85ad338 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xb85cec2b jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xb8635939 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xb86e4ab9 random32 +EXPORT_SYMBOL vmlinux 0xb8723633 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xb8759454 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xb894926d schedule_work_on +EXPORT_SYMBOL vmlinux 0xb89af9bf srandom32 +EXPORT_SYMBOL vmlinux 0xb8aa2342 __check_region +EXPORT_SYMBOL vmlinux 0xb8d96d54 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8e93e71 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xb8ea0da8 inet6_getname +EXPORT_SYMBOL vmlinux 0xb8fdca0d of_platform_device_create +EXPORT_SYMBOL vmlinux 0xb907bb38 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xb931df13 register_netdev +EXPORT_SYMBOL vmlinux 0xb93617ac jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xb943021d vfs_readv +EXPORT_SYMBOL vmlinux 0xb97fe61c skb_queue_head +EXPORT_SYMBOL vmlinux 0xb98a0185 rtc_tm_to_time +EXPORT_SYMBOL vmlinux 0xb98d5097 input_unregister_device +EXPORT_SYMBOL vmlinux 0xb99bc390 make_EII_client +EXPORT_SYMBOL vmlinux 0xb99d45fd i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xb9a20163 simple_setattr +EXPORT_SYMBOL vmlinux 0xb9a2c28b netlink_broadcast +EXPORT_SYMBOL vmlinux 0xb9a74c34 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xb9bb7758 iput +EXPORT_SYMBOL vmlinux 0xb9c2166d ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xb9da870a mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0xb9deef3a filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xb9f13939 vfs_link +EXPORT_SYMBOL vmlinux 0xba261955 alloc_tty_driver +EXPORT_SYMBOL vmlinux 0xba324a8d mmc_add_host +EXPORT_SYMBOL vmlinux 0xba3d0cf9 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4f1e80 dqget +EXPORT_SYMBOL vmlinux 0xba7a9405 dev_addr_add_multiple +EXPORT_SYMBOL vmlinux 0xbaaab8ae timespec_to_jiffies +EXPORT_SYMBOL vmlinux 0xbada99fd pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xbb167766 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xbb189cad disallow_signal +EXPORT_SYMBOL vmlinux 0xbb27ac12 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6dc32e mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9ada3f scm_detach_fds +EXPORT_SYMBOL vmlinux 0xbba159e0 files_lglock_local_unlock +EXPORT_SYMBOL vmlinux 0xbbc6eda5 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xbbd4259d pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xbbe21319 seq_puts +EXPORT_SYMBOL vmlinux 0xbc1dfe38 nla_put +EXPORT_SYMBOL vmlinux 0xbc2427f0 ether_setup +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc3f6afa down_read +EXPORT_SYMBOL vmlinux 0xbc49e5ae tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xbc578284 file_open_root +EXPORT_SYMBOL vmlinux 0xbc6ace10 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xbc89dcda locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xbcc4f630 input_flush_device +EXPORT_SYMBOL vmlinux 0xbcc585d2 journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xbccdc2f6 flex_array_put +EXPORT_SYMBOL vmlinux 0xbcd04f41 neigh_lookup +EXPORT_SYMBOL vmlinux 0xbcd164c4 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xbce30f30 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xbcf8d805 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xbcffe639 idr_pre_get +EXPORT_SYMBOL vmlinux 0xbd1e9f88 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xbd57360b sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xbd5ffac4 register_gifconf +EXPORT_SYMBOL vmlinux 0xbd6c2116 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd8d541d flush_hash_pages +EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 +EXPORT_SYMBOL vmlinux 0xbdbe7378 cookie_check_timestamp +EXPORT_SYMBOL vmlinux 0xbdbfd0c0 key_alloc +EXPORT_SYMBOL vmlinux 0xbdf5c25c rb_next +EXPORT_SYMBOL vmlinux 0xbdf63342 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe162c84 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xbe168d74 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xbe23bf66 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xbe2ac821 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xbe2c0274 add_timer +EXPORT_SYMBOL vmlinux 0xbe2e24f5 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xbe3c6d60 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource +EXPORT_SYMBOL vmlinux 0xbe6f064d idr_for_each +EXPORT_SYMBOL vmlinux 0xbe77aebe down_write_trylock +EXPORT_SYMBOL vmlinux 0xbe7ac62b mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xbe97f06f of_get_mac_address +EXPORT_SYMBOL vmlinux 0xbee56324 genphy_read_status +EXPORT_SYMBOL vmlinux 0xbee81cef generic_readlink +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef2ce9f security_file_permission +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef64f65 __serio_register_port +EXPORT_SYMBOL vmlinux 0xbf052d78 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xbf1807e9 lock_super +EXPORT_SYMBOL vmlinux 0xbf1f097e phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xbf3fd576 _dev_info +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf82c448 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfad4db7 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfdff814 of_get_address +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc001257d agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xc011a384 otg_get_transceiver +EXPORT_SYMBOL vmlinux 0xc0183d07 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xc03dba1c dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xc057a121 tty_register_driver +EXPORT_SYMBOL vmlinux 0xc057f989 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xc0580937 rb_erase +EXPORT_SYMBOL vmlinux 0xc0651225 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07ce08e bd_set_size +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc090c17a ip_nat_decode_session +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b2494c vfsmount_lock_lock_init +EXPORT_SYMBOL vmlinux 0xc0b66a04 i2c_smbus_process_call +EXPORT_SYMBOL vmlinux 0xc0c88d95 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xc0cc0c6a dev_uc_init +EXPORT_SYMBOL vmlinux 0xc0d84ced cuda_poll +EXPORT_SYMBOL vmlinux 0xc0f7d1de macio_enable_devres +EXPORT_SYMBOL vmlinux 0xc1002ceb skb_store_bits +EXPORT_SYMBOL vmlinux 0xc115a5d9 account_page_writeback +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc128aecc __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xc1358d3b netdev_state_change +EXPORT_SYMBOL vmlinux 0xc1567fcd ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xc166c63c pci_enable_obff +EXPORT_SYMBOL vmlinux 0xc1bd0251 seq_write +EXPORT_SYMBOL vmlinux 0xc1c2dd09 __hw_addr_flush +EXPORT_SYMBOL vmlinux 0xc1dd4a7f adb_request +EXPORT_SYMBOL vmlinux 0xc1ded02e send_sig_info +EXPORT_SYMBOL vmlinux 0xc20d2ea3 bio_map_user +EXPORT_SYMBOL vmlinux 0xc22ba9b5 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xc22e9a89 tcp_child_process +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24a8fc9 pci_ltr_supported +EXPORT_SYMBOL vmlinux 0xc256e762 __bitmap_equal +EXPORT_SYMBOL vmlinux 0xc26a44ad follow_down_one +EXPORT_SYMBOL vmlinux 0xc2858a66 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xc2882ea4 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xc299ca2e key_link +EXPORT_SYMBOL vmlinux 0xc2aa40bb flush_old_exec +EXPORT_SYMBOL vmlinux 0xc2b83701 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xc2b9f2f0 init_net +EXPORT_SYMBOL vmlinux 0xc2c2c462 submit_bio +EXPORT_SYMBOL vmlinux 0xc2d52d2a of_n_size_cells +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc316b98c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0xc33252ef __get_page_tail +EXPORT_SYMBOL vmlinux 0xc3394d55 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xc34ff0bb clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xc35e28f7 llc_sap_list_lock +EXPORT_SYMBOL vmlinux 0xc35e89b4 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync +EXPORT_SYMBOL vmlinux 0xc381453b simple_write_begin +EXPORT_SYMBOL vmlinux 0xc38a6ac7 names_cachep +EXPORT_SYMBOL vmlinux 0xc3a05994 journal_revoke +EXPORT_SYMBOL vmlinux 0xc3cf1128 in_group_p +EXPORT_SYMBOL vmlinux 0xc3e32ee6 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xc3e7cd4d input_get_keycode +EXPORT_SYMBOL vmlinux 0xc3fe87c8 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc4163254 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xc41b1d57 napi_frags_skb +EXPORT_SYMBOL vmlinux 0xc4304bba mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xc4524dd0 unregister_exec_domain +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4ca2d10 bio_free +EXPORT_SYMBOL vmlinux 0xc4cda78a generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xc4ce872a destroy_EII_client +EXPORT_SYMBOL vmlinux 0xc4dfbae3 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xc5021af7 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xc5277456 iov_iter_copy_from_user +EXPORT_SYMBOL vmlinux 0xc52f5714 fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0xc549269b fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55bc141 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xc55c2a9d inode_sb_list_lock +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc5608407 cdev_alloc +EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xc59d4b19 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xc5a20055 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xc5a37aa8 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xc5cdb4a0 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5dc3d57 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xc5f46566 rb_augment_insert +EXPORT_SYMBOL vmlinux 0xc5f6c4f3 try_to_release_page +EXPORT_SYMBOL vmlinux 0xc61be59c ida_remove +EXPORT_SYMBOL vmlinux 0xc6275401 fd_install +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63534a0 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc6677a93 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xc678d4c9 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xc692633d xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xc6a67f3b pci_write_vpd +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6daf91f phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xc6e4b012 bio_split +EXPORT_SYMBOL vmlinux 0xc70b590a pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xc70f1142 km_report +EXPORT_SYMBOL vmlinux 0xc723cacc generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xc729ee87 netlink_set_err +EXPORT_SYMBOL vmlinux 0xc72ca57e put_io_context +EXPORT_SYMBOL vmlinux 0xc73fe7f2 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xc745eace pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xc7701986 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xc7811c45 __generic_file_aio_write +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc791c11c truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xc795e23e cpu_core_map +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ad866e pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xc7b5374f journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7fce3cd netdev_crit +EXPORT_SYMBOL vmlinux 0xc7fd40d7 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xc8111d84 kill_anon_super +EXPORT_SYMBOL vmlinux 0xc82117c3 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xc84241a3 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc855a8e8 vfs_write +EXPORT_SYMBOL vmlinux 0xc857531c i2c_master_send +EXPORT_SYMBOL vmlinux 0xc87823bf twl_i2c_read_u8 +EXPORT_SYMBOL vmlinux 0xc87dbe1a neigh_event_ns +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8ce269f unlock_new_inode +EXPORT_SYMBOL vmlinux 0xc91571b3 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xc91ff664 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc9257327 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xc9275c24 seq_open_private +EXPORT_SYMBOL vmlinux 0xc927d374 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xc977b2d6 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xc977bd8e find_or_create_page +EXPORT_SYMBOL vmlinux 0xc987a24d netif_notify_peers +EXPORT_SYMBOL vmlinux 0xc9892527 __scm_send +EXPORT_SYMBOL vmlinux 0xc993fe52 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xc996d097 del_timer +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a9da35 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xc9b93e58 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xc9ba754b inet6_bind +EXPORT_SYMBOL vmlinux 0xc9bf2863 pci_iounmap +EXPORT_SYMBOL vmlinux 0xc9e38266 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xc9e5c216 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xc9e7a1f6 softnet_data +EXPORT_SYMBOL vmlinux 0xca0faeb5 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xca22a002 macio_unregister_driver +EXPORT_SYMBOL vmlinux 0xca335465 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xca35a632 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xca5dbc50 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend +EXPORT_SYMBOL vmlinux 0xca8feafe fget +EXPORT_SYMBOL vmlinux 0xca9d56fe security_path_unlink +EXPORT_SYMBOL vmlinux 0xcabd0eb5 block_write_full_page +EXPORT_SYMBOL vmlinux 0xcacc2e22 neigh_table_init +EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return +EXPORT_SYMBOL vmlinux 0xcad08e48 mmu_hash_lock +EXPORT_SYMBOL vmlinux 0xcb11c5b0 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xcb18f3a4 set_device_ro +EXPORT_SYMBOL vmlinux 0xcb1cf5ac md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xcb7131fb fb_get_options +EXPORT_SYMBOL vmlinux 0xcb7d5995 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xcb99edb0 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0xcbc768af pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd1065d f_setown +EXPORT_SYMBOL vmlinux 0xcc1446a5 tty_name +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc36f32e fb_unregister_client +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc691b3d pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xcc6a7858 input_register_device +EXPORT_SYMBOL vmlinux 0xcc6da9de sockfd_lookup +EXPORT_SYMBOL vmlinux 0xcc7fa952 local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0xcc9196cc thermal_zone_device_unregister +EXPORT_SYMBOL vmlinux 0xcc9c69af generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xcca5302a phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xccd18460 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xccd4a720 seq_putc +EXPORT_SYMBOL vmlinux 0xccf09a1d cdrom_open +EXPORT_SYMBOL vmlinux 0xccf0bf63 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd0775d9 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xcd0896b3 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xcd0fbd94 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd310317 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xcd4ea155 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xcd5db7dc xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xcd7dc71b input_unregister_handler +EXPORT_SYMBOL vmlinux 0xcd7f3c77 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd92f450 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xcda8b4d0 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xcdd9af6f ip_route_input_common +EXPORT_SYMBOL vmlinux 0xcde0d0ff proc_mkdir +EXPORT_SYMBOL vmlinux 0xcde172ac radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xcde42b33 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xcdf404af vfs_rename +EXPORT_SYMBOL vmlinux 0xce19bac5 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2866be consume_skb +EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce669744 eth_rebuild_header +EXPORT_SYMBOL vmlinux 0xce7ce037 of_translate_address +EXPORT_SYMBOL vmlinux 0xce8390dc pci_request_regions +EXPORT_SYMBOL vmlinux 0xcebff26f generic_fillattr +EXPORT_SYMBOL vmlinux 0xced0c36a pci_iomap +EXPORT_SYMBOL vmlinux 0xcedd9dfd __cleancache_flush_inode +EXPORT_SYMBOL vmlinux 0xcee77cc3 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcf015f7b do_settimeofday +EXPORT_SYMBOL vmlinux 0xcf051338 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xcf45ef63 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0xcf79623d blk_queue_merge_bvec +EXPORT_SYMBOL vmlinux 0xcf86289e dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xcf901697 __strnlen_user +EXPORT_SYMBOL vmlinux 0xcfa56195 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xcfad561e i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xcfb9006e jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0xcfbb6c96 generic_setxattr +EXPORT_SYMBOL vmlinux 0xcfeb0be9 rb_augment_erase_begin +EXPORT_SYMBOL vmlinux 0xcff7733c skb_find_text +EXPORT_SYMBOL vmlinux 0xd005efe8 inet_addr_type +EXPORT_SYMBOL vmlinux 0xd0181f4f __bitmap_xor +EXPORT_SYMBOL vmlinux 0xd028f2f8 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xd0418774 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0xd04d9966 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xd05435bc simple_rmdir +EXPORT_SYMBOL vmlinux 0xd0756ffb save_mount_options +EXPORT_SYMBOL vmlinux 0xd078e5fe generic_removexattr +EXPORT_SYMBOL vmlinux 0xd07ce727 kill_litter_super +EXPORT_SYMBOL vmlinux 0xd098678f tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xd0a415c3 pipe_to_file +EXPORT_SYMBOL vmlinux 0xd0a45fa5 pmu_enable_irled +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b95c51 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xd0d42c42 mod_timer_pending +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f09a3d max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd11c0dc1 __kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xd120fb16 simple_statfs +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd1347bed fb_blank +EXPORT_SYMBOL vmlinux 0xd172cb8d netdev_increment_features +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1add873 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xd1fce3ba __getblk +EXPORT_SYMBOL vmlinux 0xd20d19d6 km_query +EXPORT_SYMBOL vmlinux 0xd213e2c8 journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xd21bca4b ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd21dac63 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25749d4 ipv4_specific +EXPORT_SYMBOL vmlinux 0xd2589e4d jbd2_journal_update_format +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd276f795 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd27e9940 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xd2965f6f kthread_should_stop +EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table +EXPORT_SYMBOL vmlinux 0xd2ad90e1 input_event +EXPORT_SYMBOL vmlinux 0xd2cd5568 interruptible_sleep_on_timeout +EXPORT_SYMBOL vmlinux 0xd2ce7aa7 set_security_override +EXPORT_SYMBOL vmlinux 0xd2d31f2f tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xd2d51180 of_gpio_count +EXPORT_SYMBOL vmlinux 0xd2d78067 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xd2d8502e inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xd2db8ebe tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xd2ef3a5a agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xd2f62780 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xd303ee1c dquot_initialize +EXPORT_SYMBOL vmlinux 0xd30e4344 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xd314ad94 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xd3187da4 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd336eaab napi_complete +EXPORT_SYMBOL vmlinux 0xd33f3fce xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xd34154cf __blk_end_request +EXPORT_SYMBOL vmlinux 0xd3434c3f kref_sub +EXPORT_SYMBOL vmlinux 0xd37b63aa generic_ro_fops +EXPORT_SYMBOL vmlinux 0xd38480a0 rb_augment_erase_end +EXPORT_SYMBOL vmlinux 0xd39230da proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xd39c851f unregister_con_driver +EXPORT_SYMBOL vmlinux 0xd39cdfb5 unlock_buffer +EXPORT_SYMBOL vmlinux 0xd3a85405 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xd3ada181 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xd3b19f7b tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd3d4402d alloc_pci_dev +EXPORT_SYMBOL vmlinux 0xd3e3e04a bio_get_nr_vecs +EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd3f50ad6 inode_init_always +EXPORT_SYMBOL vmlinux 0xd401b74f skb_dequeue +EXPORT_SYMBOL vmlinux 0xd409383c pmu_request +EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource +EXPORT_SYMBOL vmlinux 0xd42fdee9 path_get +EXPORT_SYMBOL vmlinux 0xd43910fd md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xd449ddbc brioctl_set +EXPORT_SYMBOL vmlinux 0xd44ee46d km_policy_expired +EXPORT_SYMBOL vmlinux 0xd4602ae9 do_SAK +EXPORT_SYMBOL vmlinux 0xd470219c dquot_operations +EXPORT_SYMBOL vmlinux 0xd4a3b861 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xd4fc4e7f poll_initwait +EXPORT_SYMBOL vmlinux 0xd503091e release_pages +EXPORT_SYMBOL vmlinux 0xd527cbfe pci_enable_msix +EXPORT_SYMBOL vmlinux 0xd52e5029 d_genocide +EXPORT_SYMBOL vmlinux 0xd52eba0c scsi_target_resume +EXPORT_SYMBOL vmlinux 0xd5670821 pci_disable_obff +EXPORT_SYMBOL vmlinux 0xd5b037e1 kref_put +EXPORT_SYMBOL vmlinux 0xd5b1376d register_shrinker +EXPORT_SYMBOL vmlinux 0xd5b2e52a single_step_exception +EXPORT_SYMBOL vmlinux 0xd5b80e18 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xd5ba3959 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xd5c1bbf5 llc_sap_close +EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 +EXPORT_SYMBOL vmlinux 0xd5efa86b d_delete +EXPORT_SYMBOL vmlinux 0xd5f2172f del_timer_sync +EXPORT_SYMBOL vmlinux 0xd5f84755 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xd5fefc61 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd62f877c pci_domain_nr +EXPORT_SYMBOL vmlinux 0xd6778050 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless +EXPORT_SYMBOL vmlinux 0xd6a6207b dm_register_target +EXPORT_SYMBOL vmlinux 0xd6b8a55c unregister_md_personality +EXPORT_SYMBOL vmlinux 0xd6baf1b2 skb_recycle_check +EXPORT_SYMBOL vmlinux 0xd6d90371 dev_get_by_flags_rcu +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fc6492 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xd7538bd2 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761bdd3 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xd76d2acb dst_discard +EXPORT_SYMBOL vmlinux 0xd77a5aa5 __bitmap_and +EXPORT_SYMBOL vmlinux 0xd77b5ce2 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xd7860afa inet_release +EXPORT_SYMBOL vmlinux 0xd786d93e netif_carrier_off +EXPORT_SYMBOL vmlinux 0xd795cf46 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xd79b5a02 allow_signal +EXPORT_SYMBOL vmlinux 0xd7bec0ea phy_print_status +EXPORT_SYMBOL vmlinux 0xd7d1c5e3 nonseekable_open +EXPORT_SYMBOL vmlinux 0xd7d22dc6 submit_bh +EXPORT_SYMBOL vmlinux 0xd7e563b7 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e57f90 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xd7f34904 neigh_for_each +EXPORT_SYMBOL vmlinux 0xd7f75cee clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xd80ce1a8 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xd8329da4 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xd834a00b generic_write_end +EXPORT_SYMBOL vmlinux 0xd8355ae2 pipe_unlock +EXPORT_SYMBOL vmlinux 0xd85dbb3a dev_get_drvdata +EXPORT_SYMBOL vmlinux 0xd8601022 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xd861ede0 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xd87993d2 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xd88a6aba genl_register_family_with_ops +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a2ab95 in_egroup_p +EXPORT_SYMBOL vmlinux 0xd8ab997c udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xd8b91855 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xd8ce7e67 clocksource_register +EXPORT_SYMBOL vmlinux 0xd8dfe7e0 phy_scan_fixups +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd92514ca agp_special_page +EXPORT_SYMBOL vmlinux 0xd92afabe bitmap_clear +EXPORT_SYMBOL vmlinux 0xd9354dd5 nf_reinject +EXPORT_SYMBOL vmlinux 0xd93d8579 scsi_release_buffers +EXPORT_SYMBOL vmlinux 0xd94a2751 request_key_async +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99201fe scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xd9af3b9a wait_on_sync_kiocb +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9bddc23 simple_unlink +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d5b4d9 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xda0f33ee block_write_full_page_endio +EXPORT_SYMBOL vmlinux 0xda158af3 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xda20b1e2 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xda3473d5 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xda386db9 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xda533e60 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xda5b65bd __destroy_inode +EXPORT_SYMBOL vmlinux 0xda6d9594 scsi_print_command +EXPORT_SYMBOL vmlinux 0xda6eb823 open_exec +EXPORT_SYMBOL vmlinux 0xda76fe64 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xda7c407f pci_device_from_OF_node +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8578e7 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8bc385 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xda977d85 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdb0ecb79 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xdb1d05fe deactivate_super +EXPORT_SYMBOL vmlinux 0xdb221de8 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb864d65 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xdb9e2c22 posix_acl_create +EXPORT_SYMBOL vmlinux 0xdb9f7a94 register_netdevice +EXPORT_SYMBOL vmlinux 0xdbb24fc2 down_write +EXPORT_SYMBOL vmlinux 0xdbcd416e sysctl_ip_nonlocal_bind +EXPORT_SYMBOL vmlinux 0xdbe0b302 tty_port_close +EXPORT_SYMBOL vmlinux 0xdbe1ce94 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0a0cfb ethtool_op_get_tx_csum +EXPORT_SYMBOL vmlinux 0xdc0f3fa2 sk_filter +EXPORT_SYMBOL vmlinux 0xdc145100 misc_deregister +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc2519e0 param_set_ulong +EXPORT_SYMBOL vmlinux 0xdc2adb35 add_taint +EXPORT_SYMBOL vmlinux 0xdc34bb86 padata_free +EXPORT_SYMBOL vmlinux 0xdc377799 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc43a9c8 daemonize +EXPORT_SYMBOL vmlinux 0xdc4cc17a may_umount_tree +EXPORT_SYMBOL vmlinux 0xdc542b22 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xdc732024 irq_stat +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdc9c2f49 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xdc9e270c bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcc7494c iget_locked +EXPORT_SYMBOL vmlinux 0xdcde0a88 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xdce3ba4c send_sig +EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd1c65f6 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2802c6 backlight_force_update +EXPORT_SYMBOL vmlinux 0xdd4a4d72 iget_failed +EXPORT_SYMBOL vmlinux 0xdd7f2975 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xdda022d0 of_device_alloc +EXPORT_SYMBOL vmlinux 0xddf16ad3 of_parse_phandles_with_args +EXPORT_SYMBOL vmlinux 0xddfc7f2b scsi_execute +EXPORT_SYMBOL vmlinux 0xde0a57d2 seq_printf +EXPORT_SYMBOL vmlinux 0xde30f9a8 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde7bf505 journal_get_create_access +EXPORT_SYMBOL vmlinux 0xde7fba11 vfs_mknod +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde97b59c d_instantiate +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xde9d47fc dm_get_device +EXPORT_SYMBOL vmlinux 0xdea6392a nla_append +EXPORT_SYMBOL vmlinux 0xdeb72558 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xdec9b0ba dst_alloc +EXPORT_SYMBOL vmlinux 0xdee2b4bf blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xdeff3b72 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xdf234151 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xdf2454c6 elevator_change +EXPORT_SYMBOL vmlinux 0xdf4c8767 ns_to_timeval +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf634c48 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xdf65f341 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xdf67c468 module_refcount +EXPORT_SYMBOL vmlinux 0xdf67cf4d __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xdf7e11d7 tty_check_change +EXPORT_SYMBOL vmlinux 0xdf86cc11 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfb44135 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xdfe6d010 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger +EXPORT_SYMBOL vmlinux 0xdff56e64 adb_poll +EXPORT_SYMBOL vmlinux 0xe02c3ce3 pci_pme_active +EXPORT_SYMBOL vmlinux 0xe03432be netdev_alert +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07fa7a1 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xe0821f65 sk_alloc +EXPORT_SYMBOL vmlinux 0xe0932754 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next +EXPORT_SYMBOL vmlinux 0xe09660e0 twl6040_irq_exit +EXPORT_SYMBOL vmlinux 0xe096cde1 __pagevec_release +EXPORT_SYMBOL vmlinux 0xe099a852 fb_find_mode +EXPORT_SYMBOL vmlinux 0xe0a98698 d_rehash +EXPORT_SYMBOL vmlinux 0xe0ad39bb task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xe0b03e76 dma_async_memcpy_pg_to_pg +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b15b55 pci_get_device +EXPORT_SYMBOL vmlinux 0xe0c3ab3a nf_log_register +EXPORT_SYMBOL vmlinux 0xe0c69f77 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xe0dda754 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xe0fc24aa param_set_int +EXPORT_SYMBOL vmlinux 0xe10b33e0 kernel_connect +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe12c3083 module_layout +EXPORT_SYMBOL vmlinux 0xe136fbeb gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xe142e4a3 keyring_search +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17e78cf tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xe18ae39b pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xe19dc2fb sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xe1acc903 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xe1b2c0f3 dm_put_device +EXPORT_SYMBOL vmlinux 0xe1c8bf62 write_one_page +EXPORT_SYMBOL vmlinux 0xe1e3d848 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xe1e8b0c9 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe205b8df vga_get +EXPORT_SYMBOL vmlinux 0xe20c903e iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2503687 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xe25e093c skb_queue_tail +EXPORT_SYMBOL vmlinux 0xe2705f01 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xe2ae4be3 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xe2b28266 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xe2c901e5 netlink_dump_start +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e0c7c6 __flush_icache_range +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe31269e5 blk_make_request +EXPORT_SYMBOL vmlinux 0xe317764a pci_claim_resource +EXPORT_SYMBOL vmlinux 0xe31c5a86 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xe332babc kset_register +EXPORT_SYMBOL vmlinux 0xe397929e get_phy_device +EXPORT_SYMBOL vmlinux 0xe3b003e6 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xe3b0fd1b udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe404e7dd xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xe405052e tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xe41783c5 complete_request_key +EXPORT_SYMBOL vmlinux 0xe4281387 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xe42862d7 journal_set_features +EXPORT_SYMBOL vmlinux 0xe42de1f8 register_8022_client +EXPORT_SYMBOL vmlinux 0xe4399a85 log_start_commit +EXPORT_SYMBOL vmlinux 0xe44eada7 phy_disconnect +EXPORT_SYMBOL vmlinux 0xe46411ee ____pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xe4645d72 __find_get_block +EXPORT_SYMBOL vmlinux 0xe4745abe unregister_filesystem +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe49775f9 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xe4979bf5 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xe49d32d0 nobh_writepage +EXPORT_SYMBOL vmlinux 0xe4a895fa up_write +EXPORT_SYMBOL vmlinux 0xe4adfbc8 eth_header_parse +EXPORT_SYMBOL vmlinux 0xe4ca0fb7 sock_rfree +EXPORT_SYMBOL vmlinux 0xe4d3d03c netdev_features_change +EXPORT_SYMBOL vmlinux 0xe4e3dbe6 pci_enable_ido +EXPORT_SYMBOL vmlinux 0xe4e80c52 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe50fd5eb blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xe5122890 flow_cache_genid +EXPORT_SYMBOL vmlinux 0xe5193ebd journal_flush +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe523e2f8 current_fs_time +EXPORT_SYMBOL vmlinux 0xe526253c blk_requeue_request +EXPORT_SYMBOL vmlinux 0xe5390b3e bio_copy_user +EXPORT_SYMBOL vmlinux 0xe5485ad4 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cb7d57 dev_mc_del +EXPORT_SYMBOL vmlinux 0xe5ce1135 da903x_query_status +EXPORT_SYMBOL vmlinux 0xe5dbd22d get_super +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe608eca4 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xe62d1441 set_user_nice +EXPORT_SYMBOL vmlinux 0xe683df9a mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6a91d85 bio_unmap_user +EXPORT_SYMBOL vmlinux 0xe6b981ce invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xe6ba4c03 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xe6be9025 of_dev_get +EXPORT_SYMBOL vmlinux 0xe6c59879 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xe6c9e7ef __block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe6dd236d clear_pages +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6f15214 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe71587f5 request_firmware +EXPORT_SYMBOL vmlinux 0xe72991e1 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xe739df9a uart_get_divisor +EXPORT_SYMBOL vmlinux 0xe7466266 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xe754da78 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xe7609b0d generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe798bdbe posix_test_lock +EXPORT_SYMBOL vmlinux 0xe7a28183 inet_frags_init +EXPORT_SYMBOL vmlinux 0xe7a3a923 tcf_register_action +EXPORT_SYMBOL vmlinux 0xe7a664c4 nf_hooks +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7bf317d fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0xe7c66815 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e5264c rfkill_alloc +EXPORT_SYMBOL vmlinux 0xe80ce219 sysctl_tcp_dma_copybreak +EXPORT_SYMBOL vmlinux 0xe82340d6 vfs_read +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe83602f7 tty_port_open +EXPORT_SYMBOL vmlinux 0xe8442be9 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xe858008b tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0xe86ac7e6 ip_cmsg_recv +EXPORT_SYMBOL vmlinux 0xe8747910 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xe899e062 proto_unregister +EXPORT_SYMBOL vmlinux 0xe8a9ddc6 vfs_symlink +EXPORT_SYMBOL vmlinux 0xe8b63ace radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xe8b81643 rtas +EXPORT_SYMBOL vmlinux 0xe8e3df6f nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xe8ebf346 ab8500_gpadc_ad_to_voltage +EXPORT_SYMBOL vmlinux 0xe9032052 sock_release +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91bb58b ppp_channel_index +EXPORT_SYMBOL vmlinux 0xe92319e1 sk_common_release +EXPORT_SYMBOL vmlinux 0xe93a6a40 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe955e330 pci_scan_bus_parented +EXPORT_SYMBOL vmlinux 0xe9828d10 ethtool_op_get_sg +EXPORT_SYMBOL vmlinux 0xe9884c85 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xe9be19ca scsi_finish_command +EXPORT_SYMBOL vmlinux 0xe9c5445e find_vma +EXPORT_SYMBOL vmlinux 0xe9d0861e tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xea0173df pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0dbe42 dev_activate +EXPORT_SYMBOL vmlinux 0xea10212a int_to_scsilun +EXPORT_SYMBOL vmlinux 0xea10655a __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xea341314 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea81d43a tty_register_device +EXPORT_SYMBOL vmlinux 0xea8a6c75 param_ops_long +EXPORT_SYMBOL vmlinux 0xea8d9e4f bio_copy_kern +EXPORT_SYMBOL vmlinux 0xea9597f7 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xea9855ae blk_limits_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xeab7088d journal_check_used_features +EXPORT_SYMBOL vmlinux 0xeab7c0be __quota_error +EXPORT_SYMBOL vmlinux 0xead145f3 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xead4d0f6 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xead756ef flush_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xeaf16558 ida_init +EXPORT_SYMBOL vmlinux 0xeaf1a00a generic_make_request +EXPORT_SYMBOL vmlinux 0xeb0ecbd4 d_move +EXPORT_SYMBOL vmlinux 0xeb1dc0b8 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xeb23115d md_check_recovery +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb419dcc agp_put_bridge +EXPORT_SYMBOL vmlinux 0xeb55d37d elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xeb565ff9 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xeb5b607a genl_register_mc_group +EXPORT_SYMBOL vmlinux 0xeb673eb1 set_disk_ro +EXPORT_SYMBOL vmlinux 0xeb7711c3 sk_receive_skb +EXPORT_SYMBOL vmlinux 0xeb84de5a skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xeba677bd posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xebd5c6ce scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xebdbe48c radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xebe3c34b simple_rename +EXPORT_SYMBOL vmlinux 0xebe4e3a8 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xec15f00a tcp_cookie_generator +EXPORT_SYMBOL vmlinux 0xec4e50df free_user_ns +EXPORT_SYMBOL vmlinux 0xec683a0e tc_classify_compat +EXPORT_SYMBOL vmlinux 0xec6e3538 macio_release_resource +EXPORT_SYMBOL vmlinux 0xec793383 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xecada8ab inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xecd785cd __sock_create +EXPORT_SYMBOL vmlinux 0xed0a33ed __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xed0eb904 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xed23e290 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xed302f0f tty_lock +EXPORT_SYMBOL vmlinux 0xed452410 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xed4c4c28 __bio_clone +EXPORT_SYMBOL vmlinux 0xed587957 blk_start_request +EXPORT_SYMBOL vmlinux 0xed72980b xfrm_state_add +EXPORT_SYMBOL vmlinux 0xed769bbe blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xed919054 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed99eb47 clear_user_page +EXPORT_SYMBOL vmlinux 0xeda0d76e gen_estimator_active +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbb04e9 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc31ddc blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xedcd4a95 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xede92212 journal_create +EXPORT_SYMBOL vmlinux 0xedf47acf scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee3fa879 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xee48f18f tcp_splice_read +EXPORT_SYMBOL vmlinux 0xee4b0924 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xee55a005 dump_write +EXPORT_SYMBOL vmlinux 0xee59412f adb_try_handler_change +EXPORT_SYMBOL vmlinux 0xee7e83c8 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeead130f page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xeeb8f078 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xeeb941f9 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xeebda7dd ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xeec95ef3 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xeed11273 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xeedddc45 nobh_write_end +EXPORT_SYMBOL vmlinux 0xeeee69ed get_unmapped_area_prot +EXPORT_SYMBOL vmlinux 0xef109449 interruptible_sleep_on +EXPORT_SYMBOL vmlinux 0xef12356b tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xef14d190 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xef1a42c9 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xef1cd640 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0xef1d0f44 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xef24d675 kern_path_create +EXPORT_SYMBOL vmlinux 0xef2a5e9e of_match_node +EXPORT_SYMBOL vmlinux 0xef410c2f sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xef4c84c8 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xef5bdad9 pipe_lock +EXPORT_SYMBOL vmlinux 0xef7288de sock_no_listen +EXPORT_SYMBOL vmlinux 0xef99da05 md_integrity_register +EXPORT_SYMBOL vmlinux 0xefa37224 block_write_end +EXPORT_SYMBOL vmlinux 0xefadb6d4 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xefaddfd5 security_path_rename +EXPORT_SYMBOL vmlinux 0xefaf951b sock_kmalloc +EXPORT_SYMBOL vmlinux 0xefc05632 locks_free_lock +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefe9ea95 blk_get_request +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf02d76da dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xf0387d14 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xf04898f9 flush_signals +EXPORT_SYMBOL vmlinux 0xf04ad0cd block_read_full_page +EXPORT_SYMBOL vmlinux 0xf04ae1ba idr_remove_all +EXPORT_SYMBOL vmlinux 0xf05d3743 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf0672a56 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xf06e8e6a security_path_mkdir +EXPORT_SYMBOL vmlinux 0xf073742b dm_unregister_target +EXPORT_SYMBOL vmlinux 0xf078d816 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xf0e73554 dump_seek +EXPORT_SYMBOL vmlinux 0xf0eebf3d prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f1246c kvasprintf +EXPORT_SYMBOL vmlinux 0xf0f83b47 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xf0fd4e8f rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11b4979 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf11e4921 filemap_flush +EXPORT_SYMBOL vmlinux 0xf1216c75 prandom32 +EXPORT_SYMBOL vmlinux 0xf140ca42 do_truncate +EXPORT_SYMBOL vmlinux 0xf146e3f6 __skb_get_rxhash +EXPORT_SYMBOL vmlinux 0xf1542b3a inet_accept +EXPORT_SYMBOL vmlinux 0xf1805ac9 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf199ae66 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf1a1c4c4 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xf1bc4be7 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xf1c391b6 journal_init_inode +EXPORT_SYMBOL vmlinux 0xf1cf3036 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ebb320 dquot_alloc +EXPORT_SYMBOL vmlinux 0xf1eecd79 thermal_zone_bind_cooling_device +EXPORT_SYMBOL vmlinux 0xf202c5cb radix_tree_insert +EXPORT_SYMBOL vmlinux 0xf206ace4 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf20e2389 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xf2211e4d blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xf2334557 kobject_set_name +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2908000 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xf2a5d901 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xf2a65419 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xf2a852c4 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xf2b14f2e tcp_v4_get_peer +EXPORT_SYMBOL vmlinux 0xf2b3131b tcf_action_exec +EXPORT_SYMBOL vmlinux 0xf2c4c474 should_remove_suid +EXPORT_SYMBOL vmlinux 0xf2d3d858 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf2e9b466 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xf2eb3ab7 inet_put_port +EXPORT_SYMBOL vmlinux 0xf2ebd7c3 ndisc_build_skb +EXPORT_SYMBOL vmlinux 0xf30ab45f sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf338d4c3 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf358ed2f mntget +EXPORT_SYMBOL vmlinux 0xf3706b4b filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xf371cea7 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xf3772e6f agp_enable +EXPORT_SYMBOL vmlinux 0xf37d3b3f ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf39bf4d9 put_cmsg +EXPORT_SYMBOL vmlinux 0xf3b590a4 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xf3bf0bce __bitmap_complement +EXPORT_SYMBOL vmlinux 0xf41b7627 of_device_register +EXPORT_SYMBOL vmlinux 0xf4287953 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xf4294c6c xfrm_register_km +EXPORT_SYMBOL vmlinux 0xf42aef81 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt +EXPORT_SYMBOL vmlinux 0xf45c1434 ida_simple_get +EXPORT_SYMBOL vmlinux 0xf4662867 new_inode +EXPORT_SYMBOL vmlinux 0xf4897552 ethtool_op_set_tx_csum +EXPORT_SYMBOL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL vmlinux 0xf4bf0ec5 simple_getattr +EXPORT_SYMBOL vmlinux 0xf4d22859 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xf4d3e978 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf508926c simple_pin_fs +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5b51c4e mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xf5b5ba20 scsi_cmd_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xf5c05914 generic_segment_checks +EXPORT_SYMBOL vmlinux 0xf5c11bde vfs_open +EXPORT_SYMBOL vmlinux 0xf5c15656 proc_net_netfilter +EXPORT_SYMBOL vmlinux 0xf5c9012e timespec_trunc +EXPORT_SYMBOL vmlinux 0xf5cf326a param_ops_short +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5e67ef1 dquot_acquire +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf612809a param_get_int +EXPORT_SYMBOL vmlinux 0xf616eac9 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xf6235fc2 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf642af2e generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xf670eacb input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xf6898b09 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xf69ac6cb d_clear_need_lookup +EXPORT_SYMBOL vmlinux 0xf6a4f0ce vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6d88774 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return +EXPORT_SYMBOL vmlinux 0xf742db63 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xf747dd44 kstat +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf758b5fa __scm_destroy +EXPORT_SYMBOL vmlinux 0xf76f43b9 cdrom_release +EXPORT_SYMBOL vmlinux 0xf77be4cd dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xf78d04ab netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xf79d0e26 splice_from_pipe_next +EXPORT_SYMBOL vmlinux 0xf7b12aee __next_cpu +EXPORT_SYMBOL vmlinux 0xf7d42322 __dev_printk +EXPORT_SYMBOL vmlinux 0xf7d9c9d0 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xf7dff3ee md_error +EXPORT_SYMBOL vmlinux 0xf803fe39 bitmap_set +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8237a06 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf83f44ab max8998_update_reg +EXPORT_SYMBOL vmlinux 0xf86ad9ac bio_map_kern +EXPORT_SYMBOL vmlinux 0xf8c73be3 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xf8e08142 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xf8e087b4 set_bh_page +EXPORT_SYMBOL vmlinux 0xf8e8cf77 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xf92fc818 register_cdrom +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf941d46e get_write_access +EXPORT_SYMBOL vmlinux 0xf9443b7f xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xf94f7aa2 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xf9514ee4 setattr_copy +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9bd8e55 ping_prot +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9e93226 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf9f2fefa sock_map_fd +EXPORT_SYMBOL vmlinux 0xfa024211 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xfa0c9900 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xfa0cc040 prepare_creds +EXPORT_SYMBOL vmlinux 0xfa22df0b seq_path +EXPORT_SYMBOL vmlinux 0xfa40c657 nf_afinfo +EXPORT_SYMBOL vmlinux 0xfa9035eb mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock +EXPORT_SYMBOL vmlinux 0xfaf98462 bitrev32 +EXPORT_SYMBOL vmlinux 0xfb1e62d4 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xfb534a9a seq_open +EXPORT_SYMBOL vmlinux 0xfb58669a sock_update_classid +EXPORT_SYMBOL vmlinux 0xfb5e0f28 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7d26f4 files_lglock_lock_init +EXPORT_SYMBOL vmlinux 0xfb950629 netlink_unicast +EXPORT_SYMBOL vmlinux 0xfb9e9ea0 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbbae063 vga_put +EXPORT_SYMBOL vmlinux 0xfbe15809 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xfbe27a1c rb_first +EXPORT_SYMBOL vmlinux 0xfbf8e3a1 pci_get_class +EXPORT_SYMBOL vmlinux 0xfbfbcccc get_agp_version +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc1f2e3c ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc5226f0 bdi_unregister +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc6b9ea1 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xfc6fd55c tty_mutex +EXPORT_SYMBOL vmlinux 0xfc830d72 bio_integrity_tag_size +EXPORT_SYMBOL vmlinux 0xfc8345de inet_sendpage +EXPORT_SYMBOL vmlinux 0xfc9b4a10 genphy_suspend +EXPORT_SYMBOL vmlinux 0xfcaa04a0 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xfcafe081 commit_creds +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcd0d70c xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xfcd35070 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf8aa15 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd0c5038 adb_unregister +EXPORT_SYMBOL vmlinux 0xfd194d40 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xfd5fb453 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xfd6293c2 boot_tvec_bases +EXPORT_SYMBOL vmlinux 0xfd6b3d0c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xfd9794df bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xfdaed985 mmc_do_release_host +EXPORT_SYMBOL vmlinux 0xfdb16bf8 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfde04d32 ethtool_op_get_tso +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdf8bcec scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe11e54e neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xfe1b55ba mmc_release_host +EXPORT_SYMBOL vmlinux 0xfe355d13 load_nls +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6864fe agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xfe769456 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe95120a genphy_update_link +EXPORT_SYMBOL vmlinux 0xfec3c2f2 bcd2bin +EXPORT_SYMBOL vmlinux 0xfedd35fc console_suspend_enabled +EXPORT_SYMBOL vmlinux 0xfef96e23 __scsi_print_command +EXPORT_SYMBOL vmlinux 0xff01d426 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff21b198 fail_migrate_page +EXPORT_SYMBOL vmlinux 0xff2c3263 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xff39636c key_reject_and_link +EXPORT_SYMBOL vmlinux 0xff4695d1 journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xff4ba708 skb_recycle +EXPORT_SYMBOL vmlinux 0xff53ba1e skb_gro_reset_offset +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index +EXPORT_SYMBOL vmlinux 0xff896923 d_splice_alias +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffb1afec km_state_expired +EXPORT_SYMBOL vmlinux 0xffb6cd84 inet_frag_find +EXPORT_SYMBOL vmlinux 0xffca9552 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table +EXPORT_SYMBOL vmlinux 0xfff82e16 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xffff47ac tcf_em_tree_destroy +EXPORT_SYMBOL_GPL crypto/af_alg 0x53246e01 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x724926c7 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x73f414e8 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x889cfe2c af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xac4d9ee2 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xe1b9f219 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xe4649fde af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xe80780c5 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x0612dd4a async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x515f233f async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xc5aa03da async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x7da97201 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe8cd9cb9 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x302e68a2 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8336c483 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x988d8c57 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbaa0c60d __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x43637af8 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd7a388c6 async_xor_val +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x6ef4c2c9 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x20a60fb6 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x5f19f5c4 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x6004c4b8 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x75ae95b3 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7ad664b3 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x9e39f1a3 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x9f58d721 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb95e69c7 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xe6d2e8fe cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xefe07a74 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x054ecbbe twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x0a36f56b __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x8fc370a6 __pata_platform_remove +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xba4cdba3 sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x16e72148 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x27edb5e1 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x36e59f3a bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x45416293 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x594becbb bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7011d3a4 bcma_core_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x782ed562 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9263e283 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9d7807ec bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaf916389 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbbb4f0e6 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbe11543c bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf744e26e bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2cf8ffb5 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2f226da6 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x40f1fc86 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x78e9b3c4 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa480c73e btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa6a2875a btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdaaa5480 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe2901361 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x01319d9c edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0e0b3ff5 edac_mc_handle_ce_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x14fa329a edac_mc_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4d70a9b3 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x50089c09 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5e5a232f edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6332d71b edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x69030194 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x69259f22 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6c0e57b4 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x873b4f60 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8a6b0a8c edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x97e6321d edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa38657ea edac_mc_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaa05129f edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb087111c edac_mc_add_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb67e876c edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc8447587 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc9fc4660 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd70a9867 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdd8db20c edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe1830741 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe62d820a edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe88cf26c edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf06be757 edac_mc_handle_ue_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf5e7e618 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x8288c6a7 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xdbe2bb95 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x4b7b87ca __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x5e9c8ccd __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x09d51fb5 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdd1a2154 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/hid/hid 0x032831c5 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1b04b2fb hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x23c67c04 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b3cfb00 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d032f1c hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x585c1b93 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e198a10 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x622ccf69 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x666c7037 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6706ef6d hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6740fea1 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x735550f1 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x760beb82 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x778d08fa hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x85872c28 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x98ab050e hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e22b4ef hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9efe73b4 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb0dccd80 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf987944 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc76b19f2 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc7d265c4 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xda46bc81 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe057d64f hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf2e1c0c5 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd9c4aeb hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8e72218b roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6509b0ec roccat_common_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x75b74102 roccat_common_send +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x4fdf7afd usbhid_set_leds +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x80899491 usbhid_wait_io +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xe1b5172c hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf19c1d42 usbhid_submit_report +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x435764d2 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x4665b674 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x7e67d086 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8d5b8e45 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xa2fa313b input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe9ec4dbd adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x296c2545 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x66a38105 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x67783883 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x89f4c2c7 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x97b52f59 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaa09819b wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xae34849b wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb7b79cc1 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc18b94b4 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdd27679c wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe02815ac wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf054b560 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x4de7b2d0 unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xb17b7c77 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x02541dda gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0f9bd547 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x169276f3 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x29148d93 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x317fafa6 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3857f1be gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4f7cf8e2 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5a3dd8a5 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5d1ae4ac gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x71e1bacc gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x79375f04 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x90c1ad90 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xabea6294 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb3864aba gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc0ad129c gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcafe72cc gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe9edafea gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x0a1ea88a wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x4ede4cfd wf_find_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x5f439318 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x60bebe05 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x94765fac wf_critical_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa2f19a49 wf_is_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xaf15726f wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb97006cb wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc9f84175 wf_find_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xd5b2b2ea wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdb7e8499 wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xeff57d17 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xf2ba9dd3 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xfb746893 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x1764385e dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x53549a05 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8741058d dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3ea88b37 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x46235180 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x647dfcf8 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x85177a4b dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd0261536 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd481fd0d dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x03ced457 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x08a936ca dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x3726756b dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x61c7c085 dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b2ff62 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80c89b3d dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa6aae3ea dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb7bad799 dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb967690a dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbaa513b0 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbc5fe7c1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca2bde4d dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xccaeb9ae dm_sm_checker_create_fresh +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd32479bc dm_sm_checker_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdb562135 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf99dc2cf dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/raid1 0xd443c032 md_raid1_congested +EXPORT_SYMBOL_GPL drivers/md/raid456 0x6deb8c1b md_raid5_congested +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x1a40d9c3 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x1a9e5715 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x45ef632b saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x4fa4a7eb saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x50932b30 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x56c5eae8 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x82db1728 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x852ae4ad saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x8e2ebc76 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xb3b0ea2c saa7146_devices_lock +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xc99a43ea saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xcf683cf2 saa7146_devices +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x084bb0d8 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x0874b5dd saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x293572ef saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x2943a6a8 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x6f677a30 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x74af6274 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xa25f1d2a saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mt20xx 0xd53d3ff3 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mxl5007t 0x1c3f06be mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda18271 0xd8c7c8d1 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda827x 0xae849bf4 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0x33974a8c tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0xca3b1ded tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda9887 0x31cf282c tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0xa3b9b1ea tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0xb3f1c781 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x26b76fac tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x3d92d362 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tuner-simple 0xab0fe708 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-demod 0x53bdbf01 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-tuner 0x2b744c4b mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/frontends/tda18271c2dd 0x4f83636b tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x0093603e mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x0d765a9b mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x1485eaa4 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x26f54491 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x2ac8c8c4 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x2e3aa04b mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x37c91074 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x75c95f53 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x842dce46 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x941f3cba mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xb41200dc mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xbe9284a9 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xc9d9bcc5 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xe08a722b mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xe524b794 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xecd8eb7b mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xf1f7d9a8 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x02a71057 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x0341ab08 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x066a44fd smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x19efc890 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x241547a3 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x2c25f866 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x38e14b2d smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x480eb104 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x51433e5d smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x76222253 sms_get_board +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7893759d sms_board_event +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x80225083 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x8a3f50f6 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x909ef2e2 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xb3bd3c67 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xc4475e4f smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xcff82b1a smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xef3662d0 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x1ffc0d71 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x30a01ae3 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x3ce5022f ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x79d18644 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xa8ab4475 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xb0af2083 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xe79883f0 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x06349761 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0f8ea4dd ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x107bf409 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x19b00628 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x25fd7765 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x44c545fe rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4fcdfde2 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6924b30b rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x735b3c84 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b9783c0 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x995bff54 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9c85eba2 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb1deda83 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbe1c28db rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc8f7eb28 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeb699f7f rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf9ce7828 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x0a43c428 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x165c91de cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x1715ce7d cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x22166ee1 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x4add80be cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x5268562d cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x69166662 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x8693a1b7 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x8db91c50 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x9a48725a cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x9f586398 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xa835033e cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xaeb796ca cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xc0df1be2 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xd41f4480 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xe8b1a7a5 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xf0614ed5 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xf7069f26 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xfd0f0d8a cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/video/cx88/cx88xx 0x91e4b0fe cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x2c4e06cb em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x2d8f3638 em28xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x4aafc783 em28xx_isoc_dvb_max_packetsize +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x4dad7695 em28xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x6d00f80d em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xa3b6c66a em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xb27ad1e1 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xe405485f em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xe4ac327c em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xf9b6e1d0 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x0061c836 saa7134_g_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x3b11e8eb saa7134_s_std_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x550d7a5f saa7134_s_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x72bb1d07 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0xe4a1b189 saa7134_queryctrl +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x542a4502 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x689178f6 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x86fc7d05 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xfcb0b7a1 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x08726a2e v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x315ea411 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x94632f90 v4l_fill_dv_preset_info +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xd1021329 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xde6679cb v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xe2da4b2c v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf3b23fe3 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x0ded4c19 v4l2_int_ioctl_0 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x5b58a922 v4l2_int_device_register +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa28a613c v4l2_int_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa5228b24 v4l2_int_device_try_attach_all +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xfb520e41 v4l2_int_ioctl_1 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x00501be8 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x0b1615be v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x2c8a4b03 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x3982b319 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x4d872b1f v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x5f12504d v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x8f511bdd v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x9270137b v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xb07a05c2 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xbf9fe0cd v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc9bc4234 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xec629f85 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xfc7e9414 v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x016c0130 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x190408c2 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x3a325be6 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x3c0fa98f videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x41e82888 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x4248eb98 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x42713e82 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x57f11076 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x657fa6ba videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6fe348f2 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7036ffbb videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7c8fea0d videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8ce65666 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x92a8e6f0 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xad1063ad videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xb3106ea5 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xbea45df1 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xc673e565 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xc735b8dc videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xcb8f4e55 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xdc78a76f videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xdd6e8d65 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xf3f18d0b __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xfe7ea7e1 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x4df0751d videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0xb6f34d9b videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0xb82a294f videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x61020ce1 videobuf_dma_init_overlay +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x8844b790 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x8bbf5d1d videobuf_dma_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xc3f1dd79 videobuf_dma_init_user +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xc5a85f71 videobuf_dma_map +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xcb0a3ef4 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xd1f98ac8 videobuf_dma_init_kernel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xe0dd9023 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xf2b40bcd videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x2cb6a1e1 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0xabdfb174 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0xe1fcfdfd videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x087180ef vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x3d8869ee vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x3fcd4e37 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x412aa01e vb2_read +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x638c8648 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x6c03c85b vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x71aa888d vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x78006eaf vb2_write +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x839fc1c2 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x8ab00f1c vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x90195154 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x9f1c69fc vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xad3a0b46 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xaead6ff4 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xb5f10afc vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xbcfdd851 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xf8776033 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0x274687b5 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xb0091f26 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x081192c3 vb2_mmap_pfn_range +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x22e7c8c3 vb2_get_contig_userptr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x39ac0304 vb2_put_vma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x7d62873b vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-vmalloc 0x750f7ab4 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0383754e v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x198b1ad6 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x323ff5ed v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x3d6b9c65 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x499fbf0a v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x62637505 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x6b567984 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x6e899733 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x71f60f36 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x868cd096 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x8c5f6032 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xa2c3f399 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xa657338a v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xb71da951 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xc4b347a4 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xc62b80eb v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xd5089210 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xdd0ae441 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xeaf226e2 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xec31c64c v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xf37f39f0 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xf43bf67d v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x4c81f58e i2o_dma_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x5f1b41c0 i2o_pool_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x71753894 i2o_dma_map_sg +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x7815069c i2o_pool_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xa6bc1f95 i2o_dma_map_single +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xaa238bca i2o_dma_realloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xf1dbd667 i2o_dma_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xf4c6857d i2o_sg_tablesize +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29d1d107 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0b6dd265 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x12ad200b pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x28bd09a9 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2a39bb1b pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5b88c97c pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8554724a pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa71b7c75 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc6693443 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd3ab9b00 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdf5de84f pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xee7b9ce8 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x76f5bd29 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xf1e8dd04 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x05e143b2 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1d1f198c pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x633f8753 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd436864f pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe471a76e pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x3d3aa87e sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6f6e1108 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7e2e950d sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe9f39121 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xef3b5ac1 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/twl4030-madc 0x08b8dd2e twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/mfd/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x7e007d14 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x2ef5a5d0 wm8400_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x5e554f09 wm8400_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x90660b06 wm8400_block_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x9540a483 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x78ed3a4e cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9e68aa79 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb6455daf cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf40d77f4 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x2df115d4 eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d14d2f eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9d1ab046 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb20ce228 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb49e15af enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbdfd74cb enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc60e990d enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcf2d38db enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdba391d1 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x001dc3c1 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0f1e5e59 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1f370998 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9f1c9dd2 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd927095c lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe64f5655 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfaeb6ce6 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x01e801e4 st_unregister +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x1940e460 st_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6b332f0b sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6d1f524d sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7d2b45f2 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9489a582 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9af9671c sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa3fc2ab8 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa651ec20 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb8d5b4c0 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd3f23d2 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x248459f3 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2f69e7d3 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8d62ed10 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa9e40a68 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdfcddd25 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe2287c05 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x03fc1be4 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x558c08b1 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7c96f312 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2891cece cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x85a30de3 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd796faa5 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xe34f1ee9 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1b10cda4 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb30ab49f cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf6850177 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2000 0x00bdf038 DoC2k_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001 0xff765e96 DoCMil_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001plus 0x31d962a1 DoCMilPlus_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/docecc 0x45937659 doc_decode_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x08112d63 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e1fa4cc mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1925c3d2 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1acd29bc register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x355e18e2 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x355fbc10 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39f6b910 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42ff06d7 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4717b0b8 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x54bc98a1 default_mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ae0e689 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x64900a15 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80f2039c __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x906ff58e mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x90d14ec4 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaccb43c1 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb1bd8d3 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc8373967 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7f0c18c put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2f77564 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfb0a7323 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1ffa45a6 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5608592b register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x951ec113 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9ddb1936 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb55a7ff2 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x09b8406d nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x8caef117 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xc151de05 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5ea3fa8f onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x99ea57cd onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1068643e ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1a95ba58 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4b4cc94e ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6d1a5b96 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f09ba8a ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x727e631f ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x77a26ee5 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7f4125e4 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9ec284b6 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc8b11967 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdd6f0998 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe943468e ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeec88b84 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf1645924 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd6f0ef9 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1beeacd3 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3190616c free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb5b49fcb unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb740ca48 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x111f846d can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x254b470e close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2977c198 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x33747c99 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x681654ce can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x71defefa register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7b9700ba can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8dff0014 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9dbaf06a open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb3228fea alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc4638f59 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xff228dca unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x9000469f register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xac8572e5 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe4b36050 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf7a5c5d2 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06059a7c mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x073178d8 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x083beb48 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x090ded72 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09d4c579 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c771a1f mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d38fd91 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11110d6b mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12250cfd mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x140778e9 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1575cef7 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1877e8bb mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ae3f920 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x254c20d6 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ae0094b mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b2f0cac mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ba72ace mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c674af9 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31822e90 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37537910 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b71a58c mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cfef820 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e0c9f43 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x402ae300 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x405bee1a mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40e1cfb5 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43630a39 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45169e4f mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x460fc057 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x48531b49 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51ca8967 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x525bdf18 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53e7b7c4 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56e303b9 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61141c4d mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x633e9f16 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63d29e27 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x654af8ad mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6886dca1 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b27223c mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73bee319 mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76971450 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83c51c30 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8417fd19 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8861aa9f mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x904347ed mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x967b1907 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x975a735d mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0c97aa0 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2172bec mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa546a374 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2dbd26e mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb3f6d8b mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc090ac91 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4043285 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9eab77c mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb8247f4 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccb2f054 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf30b179 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3a553c7 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe42ec33e mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe87e7e50 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeef9076b mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf40377cc mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf58384c6 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6ba4757 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf95c93c7 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd3ef83 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x21a4a964 macvlan_start_xmit +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x53fbcaab macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x554410be macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x84e9cd6c macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb1356985 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xf66d8431 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x221e8061 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x358224dd usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6103521e usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf7a09550 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2cf20c7d rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x66e1aeaa rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6a4fc797 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x82fd9081 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x9b9cba87 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa3f17788 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x02575d6a usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0e6b5622 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0ea88b9c usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1285a3b2 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14143928 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1feafee7 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x312a9d9c usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x32db6694 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4bd55185 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x60006c74 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x627fc3af usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7ecc3c15 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83a2388f usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x954deca3 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9ab2d14a usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc60aecdb usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc6112c38 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcdc8784f usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd7dd3bd usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdf5648a3 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2dcc3d5 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe619ef74 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xebc17fbf usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf0006628 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2c7e08dc i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x32269f56 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6bb283bc i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7c3ba0cf i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7e9e9e73 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8f39e757 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x96f1420d i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9d52796b i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa82802b9 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc2ecedcb i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc993fb64 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd741bf76 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xda0414ae i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdd113aaf i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe13074d3 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe79dc188 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x426cb40a libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x27c769d6 iwl_legacy_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x60a1e533 iwl_legacy_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x82af6609 iwl_legacy_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x909e259f iwl_legacy_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x134cd51f __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x20d444fc lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x26799a22 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2eed852d lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x460f8bc4 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x47c65346 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x69d172d2 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x75f066a0 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x94b4514d lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa5c5ef47 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xba7bc24e lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbe8d5231 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf6dcb7e3 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfad8a770 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfae558c1 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x03e6de8f lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x248c9657 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2536b135 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3812c517 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3a2b29cd lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x965156ed lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9702b44b lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xcf04a1b7 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0x239f3ac9 if_usb_prog_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0x434ccbd2 if_usb_reset_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x03e8d1e0 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x08e40f4b mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x218249f5 mwifiex_deauthenticate +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2bc006e6 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3823d0c8 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x48c36dca mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4d7fd8b3 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7c2af41b mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x82ff5ee8 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd81cab79 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe02fb4ed mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x10742b48 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2a7d92e7 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x48be1476 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x65b0b9aa p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x70a4ff3b p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x82d63c94 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb07d54e5 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd4ced356 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf0f3fac8 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x05bb3c0d rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x09ed4def rt2800_validate_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b6aeb65 rt2800_get_tkip_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0beec45c rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1e7766c4 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x37122404 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c75e51a rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x57c7c0f8 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x705d95ca rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77ee5bde rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x796e01e5 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x812c7f14 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x82643bc8 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x86f76842 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x877c62bb rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x88a1b8f9 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8adcc297 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9a5b099e rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa0247c6d rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa5e2a23a rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaccb3734 rt2800_init_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb00f98c9 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb038729c rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb86fdc77 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb9666133 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbdea59e4 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc0e5066e rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc42e0a43 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcace3b79 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd5565eac rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xda965de4 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe5cea628 rt2800_probe_hw_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeeae656f rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf0bd49c2 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfd30a47c rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfde51a7b rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xff199f45 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x00116046 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0c376b26 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0e107b9c rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x12446e4f rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x13548a8f rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x14c868f1 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15b4ddff rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1a873301 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x311a1e89 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36a79e5f rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36b59148 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x386a24c7 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3891d787 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3e86b77f rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x446f5dfe rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x453cc002 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x48a247b7 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4b385a0b rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c4949e9 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x56203a9f rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x56426999 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x62e83588 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x67d5abb0 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a203d12 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6b0e63cd rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e73c6e0 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x744db1fc rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x797bcfdf rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7e9259e8 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8e8cc946 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x933ec151 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa1ab817f rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xad122e69 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb66dfd3f rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb7f73da4 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc54b80d5 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc613f04c rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xce269ce1 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda54e8b8 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdb3c6f93 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe613db00 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe689bda3 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xea870a0f rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed456711 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xedcb1625 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf836daaa rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x1c3ae6b7 rt2x00pci_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x36f0c85d rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x5a8df3ee rt2x00pci_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x98ec2eb9 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xa070e27b rt2x00pci_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xb73ff052 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xcbf13b8c rt2x00pci_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd16b9a10 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe2d0d32e rt2x00pci_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x10f8d32d rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1ff69c10 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x375e6c10 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x395f2cf2 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4b81500d rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x54ac05f1 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x62cfdb15 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6527fba7 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x654033b2 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x92a4dd43 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x97b10149 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9e269772 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb7073c72 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xca613a80 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd18cc302 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd9a11084 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x6212dd63 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xa9462c87 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xe83042ba wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x503a2ee3 wl1271_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x7940ee94 wl1271_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x90289e76 wl1271_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x94fd2f37 wl1271_unregister_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x9b0dd75a wl1271_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xbdcca045 wl1271_register_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xc156f583 wl1271_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xe795ba26 wl1271_irq +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x1abc9bf7 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xcec7f5eb pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xf35067a5 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x1515656f mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4a5dd406 mc13xxx_fixed_regulator_get_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9557be9d mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xcf7a3eae mc13xxx_regulator_list_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd04e435d mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xee690bf7 mc13xxx_sw_regulator_is_enabled +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xfd6931e3 mc13xxx_get_best_voltage_index +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x272b9cd6 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5d10baaa wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x746d6cdf wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb807ac26 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb8c00bde wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xccb46453 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x2418cbcd wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05992536 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x092ae259 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09c845df cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a9f4c54 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10fa4848 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22677008 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d645e80 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x30d85c0b cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37952c70 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f83da2e cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f9f292b cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41d9dbaf cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44011126 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4727f517 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x483bb9ea cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67836814 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74255a0c cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x799bfc10 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a1f6735 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b659b34 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7bbd7943 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f2fe137 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8776d1f7 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b67aa74 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d1677a3 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ed4c73f cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa27769c6 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa3535d9f cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa94b1e56 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb28decbf cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb42fdc5c cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb579657c cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb594f137 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb2a5f17 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0fa143d cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc77aba02 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd66afa5 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdfb046f8 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe632e7ce cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7257b2f cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe800b770 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe86d4efc cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xefcf8d8f cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf2dfb228 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb0cd355 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0x4f53b5cd scsi_dh_activate +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0x592e7def scsi_dh_detach +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0x593a36c2 scsi_dh_handler_exist +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0xa0e9f7a4 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0xc839031d scsi_dh_set_params +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0xdb45df23 scsi_register_device_handler +EXPORT_SYMBOL_GPL drivers/scsi/device_handler/scsi_dh 0xeb6b9fa4 scsi_dh_attach +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x143e0762 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x68b222e2 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x91199239 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9a428066 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9f37e189 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc42d0bb6 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd6a0d397 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe9f216d3 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfa79b0a3 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x1704201a iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x26476cec iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x88106488 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xaf6af708 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc27de3f2 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xddc7ce13 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x007d342e iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x02d2bd11 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0461c7d0 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08fcff04 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11857311 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12dccb68 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12e393c2 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x175c44fd iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23630365 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x25422d1e iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29bf555d iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eb88f8b iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x319e4a13 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b72e0e8 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4594f1c8 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2709b0 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fd39d2a iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50307c5d iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53c85928 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x656f4ee8 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x665211c4 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a680f88 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78a6229f iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ccfd3fe iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x813ff4f5 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x830af8ae iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86894bdb iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8caab240 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8dcbff10 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x977d205b iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x98d2187b iscsi_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x999101e0 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4832cf0 iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa65b4a12 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7389356 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa839e34e iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa88cf0b3 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5071f74 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbd9de1a1 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc088222a __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc458fae6 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb80dd47 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4922da4 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe7d30f3d iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf4467fdc iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf82db40f iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0d8093a3 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f5f0045 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0fdb5997 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10508210 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x19344e09 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x25139c35 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x35b97b42 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x63e7caae iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65753796 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7a226e59 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x927eda19 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xad4d2827 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb1081f1c iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc0563186 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcbb8a934 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd10b2502 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x15d56118 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1f239a8d sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a085e6a sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ae1e6f7 sas_slave_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2af15e9b __sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c6acfbd sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3d585d28 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x40be43f4 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c13ef18 sas_find_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d762d9b sas_change_queue_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5a3cb19d sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7d948aff sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e690790 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x89a7c028 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x90c73197 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x974f1046 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xab09e0ff sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8945112 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd01b7acd sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2ebd079 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd674023b sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe90959d6 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xedc2d8dd sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf3612ef8 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf45cec54 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x3d6e5121 srp_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x4fbf3545 srp_iu_put +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x820ba1a0 srp_iu_get +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x918ea812 srp_cmd_queue +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x952631af srp_target_free +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xe9c864f2 srp_transfer_data +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x397b96fc scsi_tgt_cmd_to_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x3a1dc92b scsi_tgt_tsk_mgmt_request +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x83482ecf scsi_tgt_it_nexus_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x8aa1c2c3 scsi_tgt_queue_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xab95bf05 scsi_tgt_alloc_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xb3976b82 scsi_tgt_free_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xe2b45223 scsi_host_put_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xf5bc8f84 scsi_host_get_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xf83216fe scsi_tgt_it_nexus_create +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x01321fd2 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08d9b726 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x301fe66a iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34158acf iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41069a7d iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x433a921c iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c3b6e35 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c6adba0 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c57578a iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x74719e90 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75b2366b iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x75f74599 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x790d545a iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7aa63038 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d81ca59 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e51fe18 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x818bbc3a iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a9ca29f iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8bf790e9 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e154e0e iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x904b22d9 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x97e586a3 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e332569 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa11fe205 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1e90be0 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc239f7b iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xda84cdb9 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x44bc7bc8 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7fef39df sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x95190bde sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe78b8f65 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x10821999 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2983ef86 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4058e2fa srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x572aead6 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8d24ede9 srp_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0d369caf spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3af001cd spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x71267ba7 spi_bitbang_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8e3a647b spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xec491fd2 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf69b4be4 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x2468ed34 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x579d2806 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x587711de oslec_create +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x882d5f27 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf828c15b oslec_flush +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf923a5b1 oslec_free +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xfabc3747 oslec_update +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x463ac45c iio_scan_mask_set +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x8531805c iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x8cace692 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xbf22d86a iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/staging/rts5139/rts5139 0x35b85807 rts5139_usb_ids +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0bef4dc2 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0ef1d765 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x20d5f86d spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3827b587 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6f6768e8 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x95f5ab4c spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x96cdc780 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a009306 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb35aaab9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb73a5748 get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc054e814 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc08961c0 serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7550f5d spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x4a713da5 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x581ffd1c usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x748382dc usbip_xmit +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x86f554a4 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x9cc258bd usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xa2e4eb09 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xbaa6589d sockfd_to_socket +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xc16b6a66 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd3539562 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd9c1cfad usbip_event_add +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe132e4f4 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe3950975 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xefa1f7b5 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/tty/serial/8250 0xf41fbfec serial8250_handle_irq +EXPORT_SYMBOL_GPL drivers/tty/serial/8250_pci 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL drivers/tty/serial/8250_pci 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL drivers/tty/serial/8250_pci 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL drivers/tty/serial/8250_pci 0xeae59d43 pciserial_init_ports +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x370b3127 max3107_remove +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x460156ba max3107_rw +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xa39d2198 max3107_suspend +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xa4c1d40a max3107_resume +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xc09df3a0 max3107_hw_susp +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xf6c781bb max3107_probe +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3ac5345d uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x3ffed113 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc406986d __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x471187ce usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5f4aa329 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x2e8065e1 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x5b94f69d usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xc32ab00d usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xf7f7657f usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0e5836a0 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1e129d33 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x255095ef usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3cf158be usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x42eb065e usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5175eac9 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8ec07c39 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb0ab55a1 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd34046de usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x006e9409 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x16ae039e ezusb_writememory +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x17f45de9 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x22a60917 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x25e853fd usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x310b9d95 usb_serial_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x584cb391 usb_serial_deregister +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x601dc261 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x63e3acf1 usb_serial_generic_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b6e10c5 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8375d3e5 usb_serial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa0a1e214 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa226f768 ezusb_set_reset +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb7a5017e usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc897e9c6 usb_serial_register +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xca831d66 usb_serial_generic_submit_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcc30a195 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd700a165 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd80824c4 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf3a0506b usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf41dbe96 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0505423a usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x19fc3841 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1fcacf57 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x20d40098 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2ab88a72 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x31a730b2 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x42210fa5 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4c03d9ae usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5a401ced usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5f7a913f fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x64972efc usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x777f7336 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x852b8bd7 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x88f39621 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8a8e4f48 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x92a94e96 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb13266b6 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc497b506 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc65eb8ac usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc6f16ef1 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe0cf4788 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfa80c4a4 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x228430bc rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x26880477 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x28521807 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb075184b wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe81e8ee1 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x08137b64 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3f860218 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x46122af9 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x51f4c819 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x52bc8537 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x548bdf85 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5eb5940e wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x68411515 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x71df043c wusbhc_rh_suspend +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x73c00a74 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8a99e920 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x921ad553 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb41b5748 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd0253fec wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf3284aac wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfbb00297 wusbhc_rh_resume +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x3a95f1c9 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x8b9d31c3 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xfef6b3de i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2302d8ec __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x467d6433 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb1f59e35 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbe821e0b umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbf2e5a99 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe4b7b9ad umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe73def2b umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf5cecb91 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x066f5484 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x07a433db uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x08af0b91 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d185af4 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1137cf4c uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x128a6821 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x14365cb4 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x15df5301 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1638ab38 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x17800a55 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1dc0b0d4 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x24a52596 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3030123a uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x489dbb43 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x48d28e5a uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4981f14d uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5732f29e uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x596b0c01 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5f150d95 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x66ab6b61 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6e6044dd uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x714add5d uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7b086c62 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x823d5a10 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8396b749 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x885e59fc uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x90373794 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb13fe0c4 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb1d42222 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc44a601b uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcc9e25dc uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd4317c98 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd6a26d0c uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdac39d94 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe44682a6 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed7f91bb uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfe9bc31c uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xd44d4eeb whci_wait_for +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3456ac8b ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x80b98812 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9abfdddc ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa13833e7 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa29e9104 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc0a4c1f4 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe4333c7e ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0x948ba624 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0xbd66cc7f fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0xc61a6021 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0xdbd78c1a sis_free_new +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xae37ddeb unregister_virtio_device +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xc84aa6a2 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xc987729a register_virtio_device +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xcc974574 register_virtio_driver +EXPORT_SYMBOL_GPL drivers/virtio/virtio 0xde3dbc44 unregister_virtio_driver +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x0b06bcf5 vring_new_virtqueue +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x10bccc8d vring_transport_features +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x1fc30789 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x2a9375e4 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x324d6b74 virtqueue_enable_cb +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x529dab96 virtqueue_get_buf +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x6d0f34e3 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x94d6c969 virtqueue_disable_cb +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x9c912e6b virtqueue_kick +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0x9e5d6202 vring_del_virtqueue +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xcb31d3be virtqueue_add_buf_gfp +EXPORT_SYMBOL_GPL drivers/virtio/virtio_ring 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL drivers/w1/wire 0x59c82ab6 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5f4652e2 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7ce009e9 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x96aed4e7 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbff0686b w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd0380c68 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe74f2269 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xeb64ab45 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf2c2f4cf w1_write_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0864c4a4 dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5de68285 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8a7424f9 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf7110eaf dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/fat/fat 0x03525aba __fat_fs_error +EXPORT_SYMBOL_GPL fs/fat/fat 0x0cfc44d6 fat_free_clusters +EXPORT_SYMBOL_GPL fs/fat/fat 0x0d88c328 fat_time_unix2fat +EXPORT_SYMBOL_GPL fs/fat/fat 0x1021dc61 fat_dir_empty +EXPORT_SYMBOL_GPL fs/fat/fat 0x217a990c fat_get_dotdot_entry +EXPORT_SYMBOL_GPL fs/fat/fat 0x2df8ba25 fat_add_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0x2fed17a4 fat_sync_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0x39c9bdaa fat_scan +EXPORT_SYMBOL_GPL fs/fat/fat 0x3d81e7a7 fat_detach +EXPORT_SYMBOL_GPL fs/fat/fat 0x47f9393b fat_remove_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0x5f7053b3 fat_build_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0x90887293 fat_flush_inodes +EXPORT_SYMBOL_GPL fs/fat/fat 0x914d9e9d fat_attach +EXPORT_SYMBOL_GPL fs/fat/fat 0xbe2e144f fat_fill_super +EXPORT_SYMBOL_GPL fs/fat/fat 0xc13f4e3f fat_search_long +EXPORT_SYMBOL_GPL fs/fat/fat 0xc699a57b fat_setattr +EXPORT_SYMBOL_GPL fs/fat/fat 0xe14e32b9 fat_alloc_new_dir +EXPORT_SYMBOL_GPL fs/fat/fat 0xe79a843d fat_getattr +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x17ce645d locks_end_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x33ec6ad7 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3d1cf861 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f959b35 locks_in_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96877ac4 locks_start_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa15d8595 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa7b91a7b lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe5cbf585 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xeebecd34 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6933c48 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x004ba051 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0744fcba nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x166bd895 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x184281b7 nfs4_reset_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a4047b2 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8073241f nfs4_reset_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8432c310 nfs_commit_release_pages +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87a8ad19 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3fbe7b6 nfs_commit_clear_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaeaf0650 nfs_initiate_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf1edd75 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbfd8c5d0 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf73ee12 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1238d09 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1946962 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe2b1daa7 nfs_initiate_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5a87370 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x627b8060 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x704aa2ff nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x49cc1630 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7c776311 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x953c0709 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa91b385f o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa95dae16 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xba3845dc o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe9d5785e o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0c9c2f4d dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2020a587 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x288bb5db dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x99b52447 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xe6557b2a dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xefe0f1b3 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x025e2d69 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0562c415 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x16b2e575 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x43e3f9d9 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5469ce31 ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7083dbd5 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89502fe7 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xad17ec72 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb4bd060c ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdc823ea4 ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe2bd47db ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe417d940 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xee0d6211 ocfs2_plock +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x05513b71 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0b8ef590 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x4a48d81c raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL net/802/garp 0x026e3d97 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x253a91f4 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x34362e74 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x9f918ba3 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xbe98fef5 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xe29c9b45 garp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x27f4dbce stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x83aa5d21 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x28d5c8b9 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x94ffce39 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0x50754510 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xe2c6bb26 unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xb7911c82 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x65a704dd bt_debugfs +EXPORT_SYMBOL_GPL net/dccp/dccp 0x15a3178d dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e6a5574 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x25563ddf dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2cd85d6b dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x344dfcf2 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec0aca0 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a50d34c dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5cb0d203 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5e9d2159 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x671ee972 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x678855b0 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x72f87617 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x832dfb76 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b2f1e0c dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9683c8ed dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x98c12ac1 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c0ec9d3 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9cf48899 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f0b3078 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4e2da82 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa4f1f998 dccp_insert_option_elapsed_time +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7da467f dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae09936f dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc910c9d4 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc433c3d dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd986024 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd650509d dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7949b77 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7ab8434 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb3b807f dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeba06d31 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xed0d84dd dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3017e21 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf46d9220 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe0d1c35 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x52517597 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6e5c77ae dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9b09b001 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xac4927c2 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe4e89e79 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf1557519 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4aca9793 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x62b07dd5 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x3d881da8 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4879d262 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xd0beff76 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x1b0e2b43 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x6d40a921 need_ipv4_conntrack +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0xfb15bb13 nf_nat_seq_adjust_hook +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x07ae60b6 nf_nat_proto_in_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x202896c1 nf_nat_proto_range_to_nlattr +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x7854f3ec nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x87407d58 nf_nat_packet +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x94a08134 nf_nat_proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xc9f33cd6 nf_nat_set_seq_adjust +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xd532bc38 nf_nat_proto_unique_tuple +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xeec10a49 nf_nat_get_offset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x28faf7d1 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa8a7110b tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbbf05f87 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdfe97832 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xec7c2b0d tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xf55b1d90 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x12e68552 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x19b7dd6d l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ca44bea l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x460e4168 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5641ecb4 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaca594aa l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcca9d09e l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd064ac50 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd476d27f l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd691f2fa l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xee9e7ada l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xef2b9d6d l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0fdb77dd ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3fc22fa2 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xac4c82b8 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb6bc51d6 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc5ae5ad8 ieee80211_iterate_active_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebde69a8 ieee80211_key_removed +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec6dc70a ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee2333a9 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfb5f6064 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x077d4ce3 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2834b5e6 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bd82539 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x578e9895 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x58424a38 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8aafdef9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ca6d85d ip_set_nfnl_get +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7eb42a4 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7f5c049 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb47914a7 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbae8c089 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5f9b62f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf0f6b6b5 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfd1ffab0 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0a965b31 net_vs_ctl_path +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x29f67608 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x2d3185c7 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3764a77f ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc52914f1 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0510dc3e nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x110647a0 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20f9ee7e nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x227a3602 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x22a0edbe __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x286b6fa8 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28df7b8d nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b603cc7 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c2e1e12 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32bbac2d nf_ct_delete_from_lists +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33f5f581 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b8ea617 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c867406 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41193eeb nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4593dcd5 __nf_conntrack_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45ae2ec0 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47e53618 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ebfd1aa nf_conntrack_flush_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f133945 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5672add2 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5be7d9a3 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60388855 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x617f5aa5 nf_conntrack_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63eb987e nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66f17521 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6865e52a nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6fff8279 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x712267da nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x738d1c04 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74a76fe2 nf_conntrack_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d468d19 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ed83deb nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81d775e6 print_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x822bba42 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87f5d829 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89d7fb20 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a579ce9 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ca2775a nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cc01ac4 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d2d7b9a __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d913c29 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa17874dd nf_ct_remove_userspace_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa48dbc4e nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa81ebbe4 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xada3eb6b nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3aa419f nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5c3baab nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2e10cd0 nf_conntrack_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5500070 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd84d3697 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdad57622 nf_conntrack_hash_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb78671f nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde82cd84 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4bc148d nf_ct_nat_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8cf5119 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeaeffd41 nf_conntrack_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeecf4d55 nf_ct_insert_dying_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef3b9749 nf_ct_l3proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3810e19 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf76662f2 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe126702 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x422d2e9e nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc488e6e5 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xb165cee1 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1ad26d60 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2c36287f nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3810edf3 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6cee4ccb set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x759ef027 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8e18d17c nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x90856c73 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xaabed5c4 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcef5cbc1 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfc2f01f3 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x72d0352f nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1e0dc882 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x807e82f8 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc51d641e nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xed8992b3 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x53d2cf81 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x67ca18c8 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x00bc84d6 nf_nat_sip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3ad32303 nf_nat_sdp_session_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x41bc32d2 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6ec1a831 nf_nat_sdp_port_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x848ae7c2 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x91574b2a ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa5512fc5 nf_nat_sip_seq_adjust_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa6ac2938 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa872d49b nf_nat_sdp_media_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcc37afb6 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd17a1e29 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe70d4136 nf_nat_sdp_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xec3f2f0a nf_nat_sip_expect_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x2b260f77 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x00723104 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tproxy_core 0xaf1a3941 nf_tproxy_assign_sock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f58e71b nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3895cd7a nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3907fcb5 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x482fec12 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x59522a76 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x874850f8 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa39dfe8d nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xb308a1d5 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x1266dcd1 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2b645fa6 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x39075cb0 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40bbd1c5 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x466bd4c1 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46883fcc xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5910a6bf xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x67081c9e xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x71e50ed0 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x77264205 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x802fa3ff xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9983308e xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb74b24ff xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea8a152d xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x3e1dd4ab xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x9a303feb xt_rateest_lookup +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x04e0d47a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x0c56e84d rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x1cb88ee8 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x1e0dc5b3 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x35125188 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x35f5c555 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x511cf82e rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x55aa737e rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x5f4f494a rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x64a57af1 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x70a2f5ba rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x885b5fbb rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xae4b2521 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb61416b5 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xb9647da8 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xbc34da40 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xccda38a2 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xcf3f8dea rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xdbff93fd rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xe2d7119b rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xeaf56239 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xf08bbc25 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf2a7c06f rds_message_unmapped +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x926c7514 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xd2c9a0fa rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x10755fa2 gss_mech_get +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1cd1ecad gss_mech_get_by_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x36bc9a29 gss_mech_list_pseudoflavors +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x45de324d gss_mech_put +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4a4aa85e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4e95382f gss_mech_get_by_OID +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6317049d gss_pseudoflavor_to_service +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x69299f7b gss_svc_to_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x79e12091 gss_mech_get_by_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x98899cb3 svc_gss_principal +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa9667d47 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd03ed513 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfd5e3663 gss_service_to_auth_domain_name +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02087335 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x029088f8 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0482f008 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08ae4a13 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x093f8c0e xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b8c917b xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c6c835d svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d5e81d1 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d739bbe rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f2ce3a1 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1026ad16 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11225570 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1222e6c1 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e280e3 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1827665b svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x196bf7bf xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f43a3fb rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x216091f2 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x224b3602 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22db2749 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ed4078 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23b3b636 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24b9b464 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26401c70 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28e041a8 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x297d6b80 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b6acb06 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d6a113a rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3138e917 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x323113d4 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32b8aa67 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32ef4335 svc_sock_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33265269 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35448c65 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37398ae7 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37c060ff unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39f6a9ff rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a9a4ad9 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ed046c rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x478c83ca _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47adcca4 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48aad534 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4974fafe svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b3b7192 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e815e5f rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53072540 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5852d541 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x595d9058 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b14ec1a rpc_put_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ba70ab4 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd26000 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5be9940c svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c833434 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cc0fc1f xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cde8d05 cache_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d67233a svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66b8b04d xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6828e9bf put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a823ecf xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb60d59 rpc_queue_empty +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ddbe20b rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ed0ce7d svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eea229d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7012aa05 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70cbfcc4 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73756d8e rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73bece15 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x747f5006 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75250aac rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x770c51b2 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x783aaa15 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x786288cf rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78abcb11 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a1074d7 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b84161d svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cde8e78 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e5c2ac3 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e668ca5 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x814db7a9 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x821d55cf rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x831296b6 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86b17cc1 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x873cd458 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87a0753b rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89839684 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a8185c3 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ab536bd xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b666506 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8efbb4f8 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ffcbbe0 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x915a3ddd xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95d1c135 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96d7f35e rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96f61087 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98260276 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9851b496 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98575bc6 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99f5dfea xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c4c3df1 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f6de92b rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa0c24209 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa35e3ead __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa66d3ba1 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7648415 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8c547f1 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa970a28a xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa97d3ff5 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa3d0173 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaf25a30 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab753686 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabc12802 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabd1e30c svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacab4449 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1f45c39 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2cd089b sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7a4d5cf xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8e658e4 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb91a410d read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbadbe3c8 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc091ab4 xdr_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbeeff198 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1852dfe rpc_get_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc18ee362 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc31b61b7 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc582795b xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc739abb7 cache_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc84ee374 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0811b2b rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1620ef0 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2de07f0 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4d28d30 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5329fa1 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd693adf9 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8e13ac5 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb27a88b rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddb6590c svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4b1e6d2 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6ffad3a rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb25d42d xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed7af104 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeda321f2 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee112df6 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2a53902 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3f3eef5 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf453a436 rpc_mkpipe +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ee7c1f xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf840628c xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf886afb4 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf93a1ce4 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbc3347e xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea52a36 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfecbe93e xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/wimax/wimax 0x076af5f1 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x16d0c2f5 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x231bac74 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x41db9a56 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x452a0aeb wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x759f1bb2 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7fef018a wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x826f8f7c wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8a82d545 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa2746a4f wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa4ac372a wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc1ae1095 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc58d3f64 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x24348eb1 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x280bb8c8 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2df8cea6 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x63c3494d cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9337bc87 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x97a9712b cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x998b3443 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa14a076c cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa2d8cca9 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe24ac1b9 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe4c8eb2d cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0deb7b78 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x41b37560 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x60ad3892 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfbbd7672 ipcomp_init_state +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x0ae86ad1 aoa_codec_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x3be51335 aoa_snd_ctl_add +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x59b8002b aoa_fabric_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x6a21cd6c pmf_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x6de54bbd aoa_snd_device_new +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x7c3a4307 aoa_codec_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x8c28b58e aoa_get_card +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xa3b1af50 ftr_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xb01431e6 aoa_fabric_unlink_codec +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xff7ca1fe aoa_fabric_unregister +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x1fcc7855 soundbus_remove_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x64eb61d9 soundbus_register_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x9b7661c1 soundbus_add_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x9be3f2a7 soundbus_unregister_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xd6019f3f soundbus_dev_get +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xf84f3c3e soundbus_dev_put +EXPORT_SYMBOL_GPL sound/core/snd 0x41251854 snd_kctl_jack_new +EXPORT_SYMBOL_GPL sound/core/snd 0xa722534f snd_kctl_jack_report +EXPORT_SYMBOL_GPL sound/core/snd 0xe7bf4ba1 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x91fede7a snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3742e275 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7aae95f0 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x82052917 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8eacf525 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa1d5f86c snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xca4b0d82 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x019042b4 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x037ab101 snd_hda_codec_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0513602d snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05d2cddd snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0943d34f snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09941970 snd_hda_query_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a861cf2 snd_hda_codec_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bdb5720 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c7eb4a0 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cbf34a1 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0deb13e4 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e8d4b83 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ff01e60 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11225342 snd_hda_sequence_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11225f8a snd_hda_add_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1292a11d snd_hda_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19368070 snd_hda_power_up +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d2bf0a1 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x220ba07b snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x258a24d2 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ab21e56 snd_hda_codec_resume_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30a56c41 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3173d8dd snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34b5e968 snd_hda_ch_mode_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x353e9ce1 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35909b00 snd_hda_ch_mode_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3dd7cafe snd_hda_codec_amp_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3df4227f snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e7ebd3e snd_hda_ch_mode_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x409412ee snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4190417b snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x421c4c18 snd_hda_check_board_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44fed9e8 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x469110ea snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bc9793a snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d8a6bb0 snd_hda_power_down +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dab1f60 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dc0f219 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54a6470a snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x581aa4cf snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58a8d14b snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d4ff956 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ef19f16 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x631abce8 snd_hda_is_supported_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x688de781 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68f8f599 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68f9ca3d snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d340358 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f8d51ad snd_hda_resume +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71bdbdb7 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74002358 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74415a59 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74638e61 snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x751e0aa2 snd_hda_check_board_codec_sid_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7532b388 snd_hda_codec_update_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76a6261f snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7811e93b snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79072173 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cf07f7a snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e98bf61 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87f6aa6b snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c38a70e snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4c6826 snd_hda_calc_stream_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98e10733 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e336245 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e40fb50 snd_hda_codec_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2827d76 snd_hda_get_jack_location +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa541b299 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa98c694 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabfa89db snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac11e818 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf8f5341 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafa347a9 snd_hda_jack_tbl_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb16e8182 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb61f4268 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7002ea7 snd_hda_create_spdif_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7e24982 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8921800 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba4ff10a snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1093b0f __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc652fd69 snd_hda_get_jack_connectivity +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb301b6e snd_hda_get_jack_type +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd354f4e snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0205c06 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd2abee74 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd496080b snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8654a8e snd_hda_codec_resume_amp +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd91d4630 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb0f37a4 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb38c16f snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc282095 snd_hda_queue_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc65315c snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf6b1fe7 snd_hda_override_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0d468fa snd_hda_suspend +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2b4f181 snd_hda_delete_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe467577a snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea4e58d3 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecb004e0 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeec3c9b7 snd_hda_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf096da5c snd_hda_bus_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1bfd80f snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf290a12d snd_hda_query_supported_pcm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3672a6d snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3e04622 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4061379 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5527a3c query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5aa68da snd_hda_bus_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf68f61c4 snd_hda_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf79b9d14 snd_hda_get_sub_nodes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x57c31192 pm860x_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x84559de4 pm860x_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cx20442 0x38b3aee1 v253_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-l3 0x78c84c7e l3_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max9877 0x297e1cdd max9877_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x171aa1a3 aic3x_set_headset_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x226bf65c aic3x_get_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x2c36e73e aic3x_set_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x34158a7a aic3x_headset_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xc7d3f2f9 aic3x_button_pressed +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x4fd3ceda tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x8e0f1c21 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x11ae7dc8 twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x2c1f81a2 twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xbc3be019 twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wl1273 0x8b9fff9d wl1273_get_format +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x358ba27b wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa3053b6b wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xb850bdbf wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm2000 0x6a668fe7 wm2000_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x1e9e6b10 wm8350_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0xabde26de wm8350_hp_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xae9fed10 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x4ec5c4a4 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x0d78df14 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x6a056817 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8996 0x80f222d6 wm8996_detect +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01977830 snd_soc_codec_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01ed7d38 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02af84cd snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06c2f8fb snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09350254 snd_soc_put_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c6ef86f snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10cf7fb3 dapm_mark_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x134689c3 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13b8a327 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13d68c35 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14afb79e snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1980c21f snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a2f6a3f snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1afbf9fc snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ce64d37 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ffa24ab snd_soc_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20f6f073 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21b177f9 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x238b4075 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2522c1b8 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x279a372a snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x281f6542 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c8b6691 snd_soc_cache_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d6bb0f3 snd_soc_get_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3861d4ac snd_soc_dapm_get_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39d2c283 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a803e0a snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e804f6b dapm_reg_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x406db95a snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40a3ee00 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4190f208 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x444db6bf snd_soc_cache_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44ba941c snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44e5cafb snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cea5f5d snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52707a45 snd_soc_info_volsw_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58c4539e snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cde6f4a snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6572c824 snd_soc_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65ce40af snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66517553 snd_soc_dapm_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x676c65fe snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68e92c5a snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b0380cf snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c14334c snd_soc_dapm_put_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72d1c524 snd_soc_bulk_write_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74bf67dc snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7951ce24 snd_soc_default_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f5acee8 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f5fe99b snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x803e7e21 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8955dd1c snd_soc_put_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a81c4c3 snd_soc_codec_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d76aaaa snd_soc_default_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d7e7398 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d977714 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dd0cb0a snd_soc_update_bits_locked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91b17aeb snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93a222e7 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x991239e2 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a09ae4f snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b85318a snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ba64b9b snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1cffbd4 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5565079 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5e32faa snd_soc_info_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7af4525 snd_soc_cache_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8f3d7fa snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9b17307 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacc489c4 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaed5e1e5 snd_soc_get_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf76874d snd_soc_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb253f734 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3881baa snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5fa3dd2 snd_soc_dapm_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8e62c17 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb9d72a7 snd_soc_codec_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdfe9642 snd_soc_default_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc113b62f snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc430e222 snd_soc_info_enum_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5d0205d snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca61b834 snd_soc_info_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1dfcb5e snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5da1de3 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdda7af93 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf28df8e snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5dfcf19 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe82aba37 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe90ea0cc snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee249b89 snd_soc_codec_set_cache_io +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf15760a7 snd_soc_unregister_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf43c190a snd_soc_add_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5371179 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf72cfa0f snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf83cb11f snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf87dfad5 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfa01a1d1 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb6c16ba snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfcd1187a snd_soc_register_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfda55545 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff9ead42 snd_soc_register_codec +EXPORT_SYMBOL_GPL vmlinux 0x000d3b40 pmf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x001066a4 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x001c8e8e inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x001d1913 blkiocg_update_completion_stats +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0067df75 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x0088a193 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x00c4dc87 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010bb05e i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0174dc3e rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x017543f0 net_ipv6_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0x01921db7 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x01a4ea6d unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0270549e __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x02b3b9d5 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x02df0ca8 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x02e8503a dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x02fa2606 d_materialise_unique +EXPORT_SYMBOL_GPL vmlinux 0x03352faf proc_net_remove +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034eb3b2 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x036d5220 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x038cbf57 pmf_find_function +EXPORT_SYMBOL_GPL vmlinux 0x03917926 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x039c3498 pmf_call_one +EXPORT_SYMBOL_GPL vmlinux 0x03e32c1d sysdev_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0439ad8c __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x04486e88 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a441ae sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x04c12f3e usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x04df5494 ftrace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x05252437 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0531dcb8 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x05342272 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0556530a rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x057db84b ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x05ae262e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05d68a30 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x05f47e4f bsg_goose_queue +EXPORT_SYMBOL_GPL vmlinux 0x05f8c59d rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x0605040c regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x060900cf lock_media_bay +EXPORT_SYMBOL_GPL vmlinux 0x0619ca8a getboottime +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x064dff33 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x066fc8e7 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x067770de netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x0681e5de ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x06a4b286 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x06b8b394 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x06eebf53 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x071c0e04 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x072e6a6f da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x0759d6ea cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x07907c91 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x07a5cc7f pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07db0681 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x07e53b6d fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x07fb44af tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x086bfe5a class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x087ee4e3 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x08be5f10 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x08d88d65 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x08dba642 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x08f24c7e tpm_dev_vendor_release +EXPORT_SYMBOL_GPL vmlinux 0x090a3fc8 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x0913a784 generic_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09436958 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x0944f9e9 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x0a07d047 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a57b859 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x0a8a2eca ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x0ad63e94 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x0aed8460 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b28defb kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b2dc9db simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x0bd3a40b irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0bd41020 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x0bdaaedd crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x0bde07fc usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0be13004 usb_storage_usb_ids +EXPORT_SYMBOL_GPL vmlinux 0x0bed3dcd blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x0bf97451 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c311f1c register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0c622f97 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x0c7b08ff dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cd59200 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x0ceb72a8 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x0cf5646d usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x0cf81981 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x0cfa088f tpm_show_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x0cfe7942 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x0d0c109d of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0d2e41b1 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x0d385349 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0d3cc82c of_irq_map_one +EXPORT_SYMBOL_GPL vmlinux 0x0d489ea6 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x0d5b063c atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0d699de9 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x0d9b72d3 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0e1c186f __ip_route_output_key +EXPORT_SYMBOL_GPL vmlinux 0x0e504e11 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0e9d5dbf md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x0ef024c3 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x0f04a470 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x0f68c8cb ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0f788db6 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x0f8cc896 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x0f96fb61 get_device +EXPORT_SYMBOL_GPL vmlinux 0x0fb417ad tpm_release +EXPORT_SYMBOL_GPL vmlinux 0x0fde06b5 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x0fdfcd7d tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0fe55905 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1000540f crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1051e8e0 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x107e0acc stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x10825fc9 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x10a16d71 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x10a4da3c ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x10b5145b tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f3b811 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x10f86621 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x11084f7d __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x11263596 inet6_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x1130addb register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x116738dc raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x11be1540 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x11f447ce __gpio_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x121292fa rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x121e3d01 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x121ed3f3 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x1226cbef raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1258d9d9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x127ad866 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x12adf201 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13354608 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x133684e6 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x13574bbf nf_net_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0x135e4b35 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x13883df5 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x13b2a946 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13c0b297 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13ca218e usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13f00f65 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x142510ee crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x144ebd01 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x14583b20 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x1462d490 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x14679757 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x14806c4b sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x149375f1 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x14d5945d of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x14daa0ae scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x1556756b usermodehelper_is_disabled +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15933d44 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x1598dc9d unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x159abb63 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x159cdb29 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x15c64759 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x15fadeab crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x160604bd usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x16299c0f ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1655bb05 queue_work_on +EXPORT_SYMBOL_GPL vmlinux 0x167375f5 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x167e65e7 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x168c8926 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x16b4317d register_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x16c19447 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x16c409b3 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x16d24ad1 blkiocg_del_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x16d3449c ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x1719a456 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x17573dbc dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17ac5cf9 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x17d31f14 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x17dbe267 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x17fd43b4 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x188aec2a sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x1897cbc5 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x18ae30fa spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x18d37b0f bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x18e2c347 dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x18e6737d devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x18e9bae9 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x18f843a3 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x190b861c wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x190c6790 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x192cef22 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x193d48e0 trace_current_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x1944e169 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x194fa5a5 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x1965cd5c cgroup_add_files +EXPORT_SYMBOL_GPL vmlinux 0x199f3e01 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19ab4eb3 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x19e0f66e wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19fc7f60 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1a013e20 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x1a02ca02 blkio_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a323362 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x1aa0d3a0 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ac6b047 xv_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0x1ae0e135 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x1b238357 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x1b419c50 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b8912bd rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x1b8fcceb tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bab249b rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x1bafc0e0 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x1bb13947 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x1bb23cf5 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x1c052cdc drop_file_write_access +EXPORT_SYMBOL_GPL vmlinux 0x1c0d210c skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x1c195615 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c69da4b bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x1c6a53d9 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x1c852e7c xfrm_calg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ce6e40d input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d5f787e ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1d664919 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1d9496fc of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x1dbce57b perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x1dcf80e7 class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1ddeb853 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x1df19ab9 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x1df6b93d platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1dffcf51 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1e194e7d usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1e314b21 regulator_use_dummy_regulator +EXPORT_SYMBOL_GPL vmlinux 0x1e60a12d scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1eba928f ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec24b6e fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x1ee9814e irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x1eeeaaf1 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1eef79b2 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1efb0996 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1f72edc8 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fa674da input_class +EXPORT_SYMBOL_GPL vmlinux 0x1fae57e3 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x1fb579dd dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x1fce0cb3 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x1fcece42 inet_twdr_twcal_tick +EXPORT_SYMBOL_GPL vmlinux 0x2040e271 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x2042f035 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x204638d5 trace_nowake_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x2049bab8 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x20945aff pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x20972a8d cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x20a017cb rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x20a86413 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x20bc3470 orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x20c49296 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x20d95f8d ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x2118322c relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x21282368 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x2151fde5 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x218973fe platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x21a8d264 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x21d36a03 kvm_hypercall +EXPORT_SYMBOL_GPL vmlinux 0x2274fcba usb_usual_ignore_device +EXPORT_SYMBOL_GPL vmlinux 0x2285200f usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22b3a977 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x230e0698 __clocksource_updatefreq_scale +EXPORT_SYMBOL_GPL vmlinux 0x233fb504 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x23679939 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23a903b7 do_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x23cc32aa usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x2406dae3 pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0x2407fe82 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x2425b46e dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2426a187 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x244e2c87 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2479e4a8 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x24a55b0e crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24e1307e flush_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24fc46b6 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x25093672 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x2513f117 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x252e43b4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x253463a0 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x25480f68 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x255f8142 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x256d1c4b power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x25c57155 cpu_remove_sysdev_attr +EXPORT_SYMBOL_GPL vmlinux 0x25c7a390 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x25daef6a ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x25dd9684 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x25f2600b xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x25f7a0f2 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x25fab8a7 pmf_unregister_irq_client +EXPORT_SYMBOL_GPL vmlinux 0x2621c275 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x262da47b ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys +EXPORT_SYMBOL_GPL vmlinux 0x26a03936 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26eb85da tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x270062f6 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x2729d755 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x27443418 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x2747c050 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x27a4568b check_media_bay +EXPORT_SYMBOL_GPL vmlinux 0x27ad36fe sysfs_get +EXPORT_SYMBOL_GPL vmlinux 0x27b06fc0 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f52a07 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2827400e sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x2827a195 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x282ecbca dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x2830e89f blkiocg_update_io_merged_stats +EXPORT_SYMBOL_GPL vmlinux 0x2843ae28 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x284a83e3 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2859e8a6 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28a82da4 snmp_mib_init +EXPORT_SYMBOL_GPL vmlinux 0x28d664ff __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x28dde0a5 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL vmlinux 0x2901a718 queue_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x2939c77b bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x29436d86 register_net_sysctl_rotable +EXPORT_SYMBOL_GPL vmlinux 0x29ad2f97 usb_is_intel_switchable_xhci +EXPORT_SYMBOL_GPL vmlinux 0x29d46ee7 of_property_count_strings +EXPORT_SYMBOL_GPL vmlinux 0x29e7a418 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x2a1d7bbd bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7e9839 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2a882ca4 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x2aed3047 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x2af7e0a8 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x2afbe2a5 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2b2c428c platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b607170 ktime_sub_ns +EXPORT_SYMBOL_GPL vmlinux 0x2b78f211 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2b92c55d xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x2ba77900 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x2bb3cba6 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2bb554fd usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x2bb83fd4 generic_subsys_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x2be6c720 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2c0dc18b filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c28cbe0 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x2c46fcdf usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2ca18ec5 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x2ca4ebcd regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2caa9cd2 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x2cc3e675 pmac_i2c_close +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2ce9eb3b crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d88479b xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x2dcd0ccd rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2ddee4bb usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x2dedf378 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x2df6e8d4 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x2e041cec __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e45e488 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x2e47f677 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x2e5b5a71 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x2e79ce75 dw_spi_add_host +EXPORT_SYMBOL_GPL vmlinux 0x2e8e2944 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2eb91dfe scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x2ecee7fb sysdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ee82089 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2f0a4c06 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x2f14d588 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x2f2aa116 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x2f2c9199 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f47d8c7 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2f60246f yield_to +EXPORT_SYMBOL_GPL vmlinux 0x2f631f35 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x2f67c417 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x2f683d9f edac_put_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0x2f708acf invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x2f7388dd ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f79f791 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x2f96468d cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x2fbae887 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x2fc3d485 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2fc62110 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x2fccefb3 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x2fcd9e17 dpm_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3017d634 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x30301151 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3050ec18 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30d8c298 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x3108ea46 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31228e71 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x316db187 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x3170ffcb fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x31795b01 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x3195a88f dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x31b6fa2c console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x3202b2a3 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x327bd02b pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d5e7fc xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x32df4c79 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x32f08411 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x330dd37e tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x3350f4c4 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x33543801 queue_work +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33b7eb47 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x33d833a1 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x340d6683 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x3441c3d6 gpio_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3506bdf2 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x3507a5bc elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35257069 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x3534e2a3 system_nrt_wq +EXPORT_SYMBOL_GPL vmlinux 0x355cb0d3 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x3560e739 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x3581377b crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x35a08a45 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x35e52fe1 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x35f04e67 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x36075ff9 platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362e23ec call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x363eb88d mddev_check_plugged +EXPORT_SYMBOL_GPL vmlinux 0x3648527a usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x368ce7b6 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x36983788 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x36dd6e1d free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x370f0d23 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x37283837 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x374dcd92 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x3783c387 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x3791d747 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x37b15db8 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x38069872 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x380acd97 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x381daf0d crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x385b4b27 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x387164f1 regcache_write +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38c3120b ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x38f8a251 event_storage_mutex +EXPORT_SYMBOL_GPL vmlinux 0x39233253 user_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x39324519 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x393b0c39 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x397ef9ad crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x39842155 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x39d7bb0a usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x39e15e5f trace_nowake_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x39f6c054 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x3a062213 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x3a23ed87 dm_kill_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a4c84be pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a8b2c23 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x3a8e03cb i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x3a9d83eb __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3bcc02e3 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x3be2587d usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x3be89d3c usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x3be9eabc shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x3c1bcd9f led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x3c41413b __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x3c67f0f0 dm_requeue_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x3c73b903 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x3c806f0e ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c942368 profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ca4e53d __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x3ca534dd sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3cac21b9 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3cc5ba2b relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ce573a5 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3cf97c42 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x3cfedb3f register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d955d22 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x3da8bc3a spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x3dc864da edac_get_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3edad223 usb_usual_clear_present +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f183645 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3f3b2720 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3f43fa0e debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x3f629ad2 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3f7e7949 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x3faa0f72 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3fdf8e8f ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x40248d21 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x409a28ce bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x40a1e553 devres_alloc +EXPORT_SYMBOL_GPL vmlinux 0x40ac8735 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e97609 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x40fe3079 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x41067222 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x413e141f i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x416bad3d ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x41bcdfeb tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x41c474a9 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41d2225a wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x41df93b3 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420a2f53 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x423d69b5 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x42510883 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x4253c044 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x42568029 unregister_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x425c1c0b ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428be0b1 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x42a584e2 cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x42a5d980 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42b364ef scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42ba8c9e __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x42d00cec generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x42e28e00 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x42fa2af9 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x432fd7f6 __gpio_set_value +EXPORT_SYMBOL_GPL vmlinux 0x43558115 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x4355c845 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x43707842 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x4378be7c crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x43ae37fc crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x43c1e020 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x43d647da rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43fdd0de gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x441257b7 sysdev_store_int +EXPORT_SYMBOL_GPL vmlinux 0x4455e1b3 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4459b263 inode_dio_done +EXPORT_SYMBOL_GPL vmlinux 0x44649441 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x446eede6 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4488aff4 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x44bcfa6d system_nrt_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x44efae75 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x44f41dc2 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x45392e61 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x4557ccf6 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45873646 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45ed573e crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x46074c17 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4644281d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x4644b1c1 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4661606c pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x4672e88b __crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x46b93bf0 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x46e22b1d blkcg_get_weight +EXPORT_SYMBOL_GPL vmlinux 0x46e260dc user_describe +EXPORT_SYMBOL_GPL vmlinux 0x47087ec8 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472474a5 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x474359b6 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x475f3a6b usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x479aec31 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x47c149ab queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x47f2c35d root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x48560400 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x4865f9b3 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x486dab9a stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x48a488a0 sysctl_tcp_cookie_size +EXPORT_SYMBOL_GPL vmlinux 0x48ac8240 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x48d25661 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x48d7b4f7 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x48efddb1 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4943a338 __init_new_context +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499be9e0 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x49b2be0e xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x49da8703 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x49e743a9 blkio_alloc_blkg_stats +EXPORT_SYMBOL_GPL vmlinux 0x4a08790a disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4a16f583 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x4a215d4c ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x4a2547c2 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a8456bc debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4aa1943b wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x4aa39515 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ac13d70 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x4b24ce27 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x4b599af8 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x4bb01a43 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x4bc62a81 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4c3866c0 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c76c374 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x4c8bb853 md_trim_bio +EXPORT_SYMBOL_GPL vmlinux 0x4cac660e skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x4cb1b784 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x4cc06cbf inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x4cc294a6 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x4cd98c31 tpm_show_pcrs +EXPORT_SYMBOL_GPL vmlinux 0x4cfd9f78 put_device +EXPORT_SYMBOL_GPL vmlinux 0x4d172ccb ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x4d2469ff __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d4fd5f1 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4d7dab51 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x4da6e1f5 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x4daeea4c anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x4db4ea0c pmac_low_i2c_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e161107 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x4e2e6800 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x4e4ddec6 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x4e5f4c4b regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x4e7df11b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4e815b2c sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x4e8e165d usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ebf144b swiotlb_bounce +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef72081 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x4f049dd4 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x4f1ccf7d dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f48cc44 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x4f526bf5 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x4f679026 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x4f685e07 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x4f6ed0ff regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x4f881b16 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x4fbcaee7 pmf_register_irq_client +EXPORT_SYMBOL_GPL vmlinux 0x4fc911cf skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x4fd4e89d ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4ffe95ea class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5013e6de pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x502b4330 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5099f950 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x50aa01d4 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50cb909d md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x50db3c28 device_create +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f5e532 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5127613b __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x516c02a5 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x51846493 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x519d2a36 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x51a27162 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x51af7f83 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51c96f7d srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x51e1fd0c pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x52050f34 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x520dd7e6 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x522efd7f fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x52343a42 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x5265dae3 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x526a517f md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x5284dfb9 tpm_show_enabled +EXPORT_SYMBOL_GPL vmlinux 0x52a9181d posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x52b0b2a3 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x53026352 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x53208b7a proc_net_fops_create +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5362b288 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x5367ec69 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x537a0200 usb_enable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x53841e39 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x53986488 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x53a3e486 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x53bd420e platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x53c70c09 css_lookup +EXPORT_SYMBOL_GPL vmlinux 0x53f25f2e wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x53f81a20 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x5419c8ca ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54369ffd fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5499938c pci_pri_stopped +EXPORT_SYMBOL_GPL vmlinux 0x54c55732 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x552567c0 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x5550d7d2 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x5564bfe8 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x5567a81b swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x55da0153 sysdev_register +EXPORT_SYMBOL_GPL vmlinux 0x55e74041 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x564f1dca klist_add_after +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x568d2cf9 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x5699d1df get_cpu_sysdev +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56bb2feb register_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f27020 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x57042f1f sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x571d34e8 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x57298ce1 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x575df55c __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x5760dd3b usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x5778cd7e unlock_media_bay +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b1e5e9 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x57cb3cb1 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5817f281 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x5920908d pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x592da05d bdi_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x593220de sysfs_put +EXPORT_SYMBOL_GPL vmlinux 0x594fe85c alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5969e90f ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x596c8dd3 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x59863419 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f09641 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5a20ed51 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x5a286325 tcp_init_congestion_ops +EXPORT_SYMBOL_GPL vmlinux 0x5a48534a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5a6b1604 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a9811bf pmf_do_functions +EXPORT_SYMBOL_GPL vmlinux 0x5ab9a955 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5aec7249 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x5b0d97e2 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x5b0f2a91 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5b323547 sysdev_show_int +EXPORT_SYMBOL_GPL vmlinux 0x5b90c6c8 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x5bb906a7 wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bcd4d32 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x5bde8f03 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5bfc03c3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c11b822 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x5c40f270 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5c4260ae kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x5cef4a98 pmf_put_function +EXPORT_SYMBOL_GPL vmlinux 0x5d13d21b blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x5d492a0a class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x5d5cba0b usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x5d730e7b raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d77f4a1 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5da7c835 sysdev_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x5dcccf8b sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x5dd67618 register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5ddb022c usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x5df2ebf6 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x5e0120a8 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x5e6fbb77 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x5e92d168 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x5eacba1f ahci_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5ef05f5a adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5f141e50 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x5f177dcc sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x5f248f72 set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0x5f46d244 of_irq_map_raw +EXPORT_SYMBOL_GPL vmlinux 0x5f47228e sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5f567ec7 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x5f93cc48 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x5f9cddfb scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x5fb6dbad regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5fcdec5d xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x5fe53f5f fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x5ffb3c00 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x6011d54e srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6050b57e dm_dispatch_request +EXPORT_SYMBOL_GPL vmlinux 0x609bdcaf ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60df6b07 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x60e2722e pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x6114d8a4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x611d7c45 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x612bd02f __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x613ced04 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x61634f05 lock_flocks +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61ceeb89 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x621895f2 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x624a6406 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6254c9ee hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x6293cfdf crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x62e63a6e xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x62f59a48 crypto_nivaead_type +EXPORT_SYMBOL_GPL vmlinux 0x63016118 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x630a61df of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x6316381c ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x63205de1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x63268234 edac_class +EXPORT_SYMBOL_GPL vmlinux 0x632d29d7 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x6347ee72 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x634b9d52 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x637b813e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x6382ca33 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x639a87d7 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x63b15fad skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x63b51c1c tpm_remove_hardware +EXPORT_SYMBOL_GPL vmlinux 0x642b8a4e aead_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x6432b505 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x6453f77c pmac_has_backlight_type +EXPORT_SYMBOL_GPL vmlinux 0x64ac465c stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x65019b44 proc_net_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x6526a998 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x657eae07 cpu_remove_sysdev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x658e0e61 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x65ab305b get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d6d0f0 gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x65fff23d usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662860db sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x663445fb sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x6647a77a device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6660a988 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x667253dc n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66a2cf38 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x66b2a859 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x66c02762 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dc2b24 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x66dcdc34 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x66e94d44 filter_current_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x670144be blkiocg_update_timeslice_used +EXPORT_SYMBOL_GPL vmlinux 0x6731f9e1 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6737649f inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x674c07b8 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6803806c init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x686c703f xfrm_count_auth_supported +EXPORT_SYMBOL_GPL vmlinux 0x6884dbc6 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6892088c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68e314e8 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x68eaac73 xv_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x691350c7 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6927a446 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x6929d296 dw_spi_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x697cbbb4 threads_per_core +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698be398 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x69a4ad37 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x69e9a2cb ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x6a034864 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x6a3e5cfb driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6a522487 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6ab922b2 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6aba167a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6ad8be68 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x6aee03b7 platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6b116607 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x6b1690b3 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x6b28ec38 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b448ecc inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x6b583057 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x6bfd947b cred_to_ucred +EXPORT_SYMBOL_GPL vmlinux 0x6c01034e ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x6c49c4f2 clockevents_notify +EXPORT_SYMBOL_GPL vmlinux 0x6c5274d3 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x6c600ff9 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x6c6a83ef regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6c7883fe xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x6c7e12d6 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x6c8d5ae8 __gpio_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6cb479b3 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x6cb59988 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x6cbb9114 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6cf21f7a usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x6d236b2a ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x6d25d14f usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d5a8504 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x6d7c45e5 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x6d803e9e sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x6dba19b7 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x6dc23ca4 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x6dc2584b device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x6e000ea5 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x6e339dbb led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6e46cf0d usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x6e7474fc xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x6e86e489 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x6e942590 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x6e9bde4a ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6ec793ec cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x6f05c28d devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x6f1a5e1d debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x6f2f813f tps65910_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x6f45acb0 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x6f556d62 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x6f608203 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x6f691232 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x6f9bf57b crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6fbc719c pmf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6fc2a39b pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6feb013d bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffd8fb9 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x70119099 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x70276142 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x703189d7 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x704f7932 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x706b3a33 cpufreq_frequency_table_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7087f987 sysfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d6d841 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x70d90758 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7111be4e platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x71269098 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x7130af63 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x715083fe ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x7267db00 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x729763b2 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x72b212ff regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x72d8cdc3 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x7318a13d usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x7322af0c nf_unregister_queue_handlers +EXPORT_SYMBOL_GPL vmlinux 0x7324cfae led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x732e9483 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x73564277 __timecompare_update +EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73bfaaf4 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73f66651 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x740bdc1d ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x742193b0 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74825671 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x749448eb tpm_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x74954462 timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x74abdafa task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x74ad8524 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x750844a8 blkiocg_update_io_add_stats +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7554eb2a __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x755ba2ee irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x755be46b task_current_syscall +EXPORT_SYMBOL_GPL vmlinux 0x7577a832 wm8994_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x75987cc0 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x75a0168f pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x75ab3b8f get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x75b20f59 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x75b7fafb usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x75c2bb3b securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x75c8a11c inet_twdr_twkill_work +EXPORT_SYMBOL_GPL vmlinux 0x75d17d0b pmac_i2c_open +EXPORT_SYMBOL_GPL vmlinux 0x75d83176 regcache_read +EXPORT_SYMBOL_GPL vmlinux 0x75e8f3c3 crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x761188fd dpm_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7622098d spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x7626b273 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x763c1558 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x765ce6a5 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x766f1ef5 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x76785ad0 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x767f9b9a spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x76d262e4 hrtimer_start +EXPORT_SYMBOL_GPL vmlinux 0x76db3f37 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x76e95fd4 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x770bbea3 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7725a52e ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x7764cfc5 tracepoint_iter_start +EXPORT_SYMBOL_GPL vmlinux 0x776ac6c0 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x77747da3 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x77749704 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x779ef429 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x77c96c4e usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x780a9d4c locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x7815a1c6 dm_set_device_limits +EXPORT_SYMBOL_GPL vmlinux 0x78671fd3 tracepoint_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x786c174b sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x7882b184 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x7918da00 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x79203694 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x7928e70e raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x793ddf07 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x7998f733 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x79ba7a0e attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x79ce0e95 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79d19006 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7a310ed2 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x7a45c137 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7a7d5b64 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x7a7fbab0 of_property_read_string_index +EXPORT_SYMBOL_GPL vmlinux 0x7a900700 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ae1ae8e cpufreq_frequency_table_put_attr +EXPORT_SYMBOL_GPL vmlinux 0x7ae257f7 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ae3240d pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7af5183b device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b00b2d5 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b159219 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b64b321 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x7b64d3f9 cgroup_lock_live_group +EXPORT_SYMBOL_GPL vmlinux 0x7b6997c5 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x7b891082 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x7ba506a3 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7bea0cae disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7beca82c device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x7c22ce58 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x7c2b7fc9 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x7c464d48 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7c60f477 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x7c618265 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x7c6b8d30 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7c7ade97 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x7c8ca6f1 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x7caf8c4f inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7cd7dc1d bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cec1a36 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7cee0296 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x7cee5ffe device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x7d3009c3 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x7d336a79 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x7d3793d7 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d9161f9 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x7d94a81d tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc4935e transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7dc5d0b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7dd6e686 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7de79abf ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x7e1183c9 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e275ea8 scsi_complete_async_scans +EXPORT_SYMBOL_GPL vmlinux 0x7e427b59 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e79ee02 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x7e83f373 xv_get_total_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7ebdb628 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x7ecd783c tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x7f21a91c rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f8675e0 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x7f9105ab scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7fdf3256 sysdev_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7ff10ccf raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7ffc8718 gpio_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x7ffecd5e inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8014b6af input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x802f7e19 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80aa84af flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x80e32448 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x811c15c2 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8226642f __gpio_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x82582749 __rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x82939ebd rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x82a48f9e pmac_low_i2c_lock +EXPORT_SYMBOL_GPL vmlinux 0x82d1e1de rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82ea5333 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x83020b4c shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x8337f602 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x837c9e39 tpm_show_pubek +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83b99229 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x83ce82eb get_monotonic_boottime +EXPORT_SYMBOL_GPL vmlinux 0x83f1c9d8 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x84759308 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x849194fc blk_abort_queue +EXPORT_SYMBOL_GPL vmlinux 0x849be8df blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x84aecfed aead_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x84c6475f __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x84cc1a19 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x84ecb7cb timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x84f6e838 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x852260f4 pci_sriov_migration +EXPORT_SYMBOL_GPL vmlinux 0x85292928 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x8534ac0d srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x853fbdc3 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x85478a0b inet6_hash_frag +EXPORT_SYMBOL_GPL vmlinux 0x856b7509 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x85c10896 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cdb0b2 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x861f3ef4 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x866340a8 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86aee1e2 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x86e264be fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x871477d5 sysdev_class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x874a0682 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x87754115 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x87b986fe sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x880ca957 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x8818a3de pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x884ae4b9 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x88639cdf tty_prepare_flip_string_flags +EXPORT_SYMBOL_GPL vmlinux 0x88d08878 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x88ee1c96 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x89141870 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892c6fcd rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x892d080c ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x89b66539 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x89d4dbaf usb_usual_check_type +EXPORT_SYMBOL_GPL vmlinux 0x89e480c4 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x89f9b3a7 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x89ff43f6 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a16b797 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x8a5c7a80 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a5ee952 regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x8a6a0032 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x8a6a95f6 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x8a783dff fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8b566ab3 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b752ac1 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x8b941ecf crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x8bce1f4e pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x8bd051c8 user_update +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c4ca076 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x8c58586b tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8c69c29d unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x8c9e45f2 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x8cbd5f66 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ce57537 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x8d14f8ca pmac_i2c_get_controller +EXPORT_SYMBOL_GPL vmlinux 0x8d32a407 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8d375e3c wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x8d607fda usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x8d6ae1ba pci_stop_bus_device +EXPORT_SYMBOL_GPL vmlinux 0x8d6bd6ab devm_kzalloc +EXPORT_SYMBOL_GPL vmlinux 0x8d80529b virq_is_host +EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x8dad55e8 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x8dc113f0 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x8dc190e9 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x8dd2ab5c ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e4b5c78 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x8e5cad70 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x8e628f55 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x8e877423 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x8ea4dce7 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8ec2d945 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8f37eec3 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x8f58c157 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f877889 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x8f9c091d pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x8fa6db6f platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x8fb409a1 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x8fba6f9c pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x8fcfa10a pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x901060ad __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9018b7f7 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x90354141 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9069a4bf tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x9083267d driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a1363f sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x90af0d27 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90b15a8e crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x90c0a16c __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x90d20440 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x90d41094 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x90d7a983 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x90ff430e xv_malloc +EXPORT_SYMBOL_GPL vmlinux 0x9115fc92 task_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0x91426b2b bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x9159b9d6 profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0x91787612 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91aa5be4 cgroup_to_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0x91d88ca4 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x9219384e hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x921f4843 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9245bf9f ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x92713455 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x9274eb15 __cpufreq_driver_getavg +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92b6d770 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x931c0b24 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x931ed024 tpm_write +EXPORT_SYMBOL_GPL vmlinux 0x932f9a0b usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x93524893 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x9354aab2 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x937dde6d usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x93a7f0ac posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x93b2d68b sysfs_rename_link +EXPORT_SYMBOL_GPL vmlinux 0x93d2422d snmp_mib_free +EXPORT_SYMBOL_GPL vmlinux 0x93d7a4bf __inet_hash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x93fc9776 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x940ec1cb css_id +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9427015d pci_block_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x947e7af6 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9499a23b task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x94a68723 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x94bb634b __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x94bdb5b6 dw_spi_xfer_done +EXPORT_SYMBOL_GPL vmlinux 0x94c3a607 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x94df95b6 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952fb2bd rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956a91ba gpio_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x95814fdc wm8994_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x95e99431 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x96089c80 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x964fad60 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x96a19c07 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x96cbcf31 pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96f961f6 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x978f24b1 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x9790b640 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x97b13dad __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x98078098 sk_clone +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98c7cee9 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x98c7d68e scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x98cc564a regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x98d4637c sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x98f277c4 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9953f8f3 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99a0c51c fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x9a006932 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a174911 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x9a4302ab mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a90eb9b wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ac16117 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x9ace66ea find_module +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af408c4 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x9b0d53c8 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x9b0f741e crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x9b2d93c4 cgroup_unload_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9b2e2947 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x9b4720bb pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x9b67016f hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x9b7f01a6 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x9ba0501e unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ba427bd usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x9ba9b6ea devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9bca672f ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x9bccc24e tpm_show_owned +EXPORT_SYMBOL_GPL vmlinux 0x9c07fd28 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x9c1681d5 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9c18ebd4 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x9c1b4571 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x9c7787de gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x9c7bf4ea input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x9cb8037b xfrm_count_enc_supported +EXPORT_SYMBOL_GPL vmlinux 0x9cd25850 tpm_register_hardware +EXPORT_SYMBOL_GPL vmlinux 0x9d5ffadb cpu_add_sysdev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d90ede0 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x9d992c32 user_read +EXPORT_SYMBOL_GPL vmlinux 0x9da8160b blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x9dbdbd92 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x9dc11d07 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9ddc3601 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e05dfb6 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x9e082c02 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x9e4f1cfb ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x9ea865cf blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x9eb9801d page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9ec12a4c rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9ef7b018 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x9f2260bd sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x9f2a2503 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9f40a6d6 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x9f40ed48 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x9f50131d rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x9f50414a power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x9f648e9d udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9f7a1d64 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x9f85e88c wm8994_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9f9933e1 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x9fb6b291 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9fb9a5fb raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x9fbebf8d of_irq_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe8bf4e pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9fedb268 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xa0222181 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xa024fcc8 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xa0645ba9 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa0787bbf usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa0a031f7 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xa0d1a668 sysdev_class_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa0dd0b75 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa13b4030 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa15651f7 blkio_root_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xa1bd1a37 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xa1c3f722 scsi_nl_add_driver +EXPORT_SYMBOL_GPL vmlinux 0xa1cbb557 blkiocg_lookup_group +EXPORT_SYMBOL_GPL vmlinux 0xa1ccf742 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa2143ea7 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa2294134 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xa234ca5a tcp_reno_min_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xa2ae61a3 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xa2aeed64 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2b97579 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa2c2e7df platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xa2e190b4 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa357d56e ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xa3628b00 blk_rq_check_limits +EXPORT_SYMBOL_GPL vmlinux 0xa36db9e9 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa373d330 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xa3845351 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa39d9220 unregister_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3e17e07 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3fa5025 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xa40a8590 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa44b8d7d adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa46505b7 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xa4994b25 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4ba9e16 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xa597d230 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xa59dc565 blkdev_aio_write +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5c82cd6 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa62e1686 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xa63946ed crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xa642d226 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xa644501d sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xa649dfbf pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa67f7487 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xa6ec35e2 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xa6f63bca rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xa718d5f9 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xa72bae75 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa75a8729 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xa7623700 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xa764882f kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xa76b6bd8 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa76d4767 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa774be6c __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xa794f7bc sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xa7d24976 blkio_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xa7f92105 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0xa87b2ae4 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xa8e9b95b usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa8f59416 gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xa90cf4b0 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xa9414a5e platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa945a176 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xa94e2e71 pmac_i2c_adapter_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xa951c8a2 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xa9c530b8 unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9f3f261 net_ipv4_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0xa9f51f39 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa310d50 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xaa852c93 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaaf0aea4 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xab666933 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xaba7ca6a rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xabd0346d md_run +EXPORT_SYMBOL_GPL vmlinux 0xabfacf3b pci_renumber_slot +EXPORT_SYMBOL_GPL vmlinux 0xabfbc63f irq_find_host +EXPORT_SYMBOL_GPL vmlinux 0xac2d9590 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xac2eb9f2 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xac3665b8 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xac48f14b power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xac498f10 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xaca4c8f2 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xacc5478a pmf_do_irq +EXPORT_SYMBOL_GPL vmlinux 0xacca19bc vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfd81f6 work_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad19ddd0 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xad5f1b39 nf_net_ipv4_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0xad629d34 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xada38534 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xadbeb5a1 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xaddad0f6 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae0c87ee pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae827ad2 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xae8ea300 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xaea34d54 dw_spi_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xaeccfb0f crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xaed237e6 pci_unblock_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0xaeea3073 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xaef2c83c fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xaefc912f usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xaefe0a4d fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xaf111f49 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xaf574e79 crypto_rng_type +EXPORT_SYMBOL_GPL vmlinux 0xaf69699e xv_get_object_size +EXPORT_SYMBOL_GPL vmlinux 0xaf6bd2a4 device_move +EXPORT_SYMBOL_GPL vmlinux 0xaf74dcc7 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xaf8efe07 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xafef4468 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xb063b39f tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb064eda6 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xb099c856 inet_csk_clone +EXPORT_SYMBOL_GPL vmlinux 0xb0ae5977 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xb0aeef97 tcp_is_cwnd_limited +EXPORT_SYMBOL_GPL vmlinux 0xb0aef16f ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb10d55bc cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xb10ff9f6 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xb11b4eca crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb12c5033 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xb12d16d9 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1609f1d ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xb169dc6e tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18d1d6b usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xb19f910a xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b9529c __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1bc949e ref_module +EXPORT_SYMBOL_GPL vmlinux 0xb1c7ca7a devres_find +EXPORT_SYMBOL_GPL vmlinux 0xb24413ac ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xb2a1cac4 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f5f9e1 sysdev_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb2fa8dd5 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xb333f969 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xb34cf4fb usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xb361b256 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb367c39b kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xb39e9844 net_cls_subsys_id +EXPORT_SYMBOL_GPL vmlinux 0xb3c306aa rtc_set_mmss +EXPORT_SYMBOL_GPL vmlinux 0xb3fa0778 sysfs_get_dirent +EXPORT_SYMBOL_GPL vmlinux 0xb45060c7 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb48699a8 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xb4b4feaa pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xb4c1a5f9 device_add +EXPORT_SYMBOL_GPL vmlinux 0xb4c8bddb securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xb4cdead0 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a34832 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xb5b8c738 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xb5bf3d6d pmac_i2c_get_adapter +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60603ef bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6381ea6 driver_add_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb64ea395 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xb6580604 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xb66037e6 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb67a106b __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xb688b77f ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xb6ad7800 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6d008bc pm_generic_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xb6dd6f41 inet_csk_reqsk_queue_prune +EXPORT_SYMBOL_GPL vmlinux 0xb723b641 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb768accb tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xb78a624d replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xb7e0da05 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb85629b3 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb8824e22 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8b2efd3 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xb8c5f079 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xb8f0dd23 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xb8f50316 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xb906dee5 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xb907d946 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xb925c57c device_register +EXPORT_SYMBOL_GPL vmlinux 0xb93672bb sysdev_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb953210d usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb96463a0 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xb9840e09 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xb9875917 mmput +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d73fcd bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb9da2997 snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0xba76c74c cgroup_load_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbab7eae6 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xbad26090 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbae34c27 scsi_nl_remove_transport +EXPORT_SYMBOL_GPL vmlinux 0xbae84a47 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb195c4b transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xbb5e5acb __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbb6c8205 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xbb73e980 sysfs_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xbb80a2f4 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbb824312 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xbb885753 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xbbb6b058 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xbbc6e9ee ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xbc1a1ddc srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbc28818b of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xbc456407 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xbc5a2369 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xbc6f3c06 cpu_add_sysdev_attr +EXPORT_SYMBOL_GPL vmlinux 0xbc6f931b workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xbc871d1a rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xbc97b730 pci_pri_status +EXPORT_SYMBOL_GPL vmlinux 0xbcb0e466 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xbcbd2aa2 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcc65c27 pmac_i2c_find_bus +EXPORT_SYMBOL_GPL vmlinux 0xbd4b9285 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xbd5d96b0 inode_dio_wait +EXPORT_SYMBOL_GPL vmlinux 0xbd6bc216 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xbd763857 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd7c1fb7 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xbd890887 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbd94626b ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbd9d6d07 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xbdab0323 pmac_backlight_mutex +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdec6e42 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe49192e watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xbe98ea9b tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xbec44def sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xbedc5f1a tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf35a93a single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xbf73bac5 hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xbfdd61ae tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xc037b1f4 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xc03ab504 setup_deferrable_timer_on_stack_key +EXPORT_SYMBOL_GPL vmlinux 0xc050064e simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc065fe79 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0bf6ead timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xc10f2b8e cgroup_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc11bd00f tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1289a89 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xc154f8f2 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xc15999df key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1904808 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc1abbb95 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc1c24606 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xc1cafa88 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xc1d0d9b3 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xc1e02fb4 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2604784 blk_queue_bio +EXPORT_SYMBOL_GPL vmlinux 0xc2e3bdac swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xc34efe27 snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0xc3593c97 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xc3639601 tpm_show_temp_deactivated +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc377c65f max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xc3921e6a ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xc39611e2 tpm_read +EXPORT_SYMBOL_GPL vmlinux 0xc399468f scsi_nl_remove_driver +EXPORT_SYMBOL_GPL vmlinux 0xc41eb0ec da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc447a3f2 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46d877e schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47933f9 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc4874f32 user_match +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4b0fd7d __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xc4bdad2f fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc4d44a4a pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xc5612531 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xc58fae9a sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xc594fe1e inet_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0xc59dd627 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xc5a4059f unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xc5a79fab unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xc5ca0b43 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xc5e9d355 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xc5ee8bed ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc60f75ec __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc624a801 dw_spi_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc69650c6 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xc6f874d9 tpm_show_active +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc741885f tpm_show_caps +EXPORT_SYMBOL_GPL vmlinux 0xc74a0c83 sysdev_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc7590816 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xc780b43a debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7aba888 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc7b7db56 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xc7e2d41c usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xc80f6b69 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc824ed41 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xc82a5e11 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xc83890c7 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xc8470db5 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc86520e2 xv_free +EXPORT_SYMBOL_GPL vmlinux 0xc89e91fb irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b2f3f2 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xc8cbf215 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xc9179a3a tracepoint_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xc922fd45 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xc94392f3 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95a83dc sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xc9b31c2b bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc9eb5209 pci_msi_off +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca4ab75b ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xca85d8cf tracepoint_probe_update_all +EXPORT_SYMBOL_GPL vmlinux 0xca994afd max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xca9c1880 fb_ddc_read +EXPORT_SYMBOL_GPL vmlinux 0xcaba7ce0 tps65910_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcb5b1453 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xcb748d1a cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xcb80d6a9 default_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xcba2fc13 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xcbc2c8dd atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc16b97d rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xcc1f1c3d inet_twdr_hangman +EXPORT_SYMBOL_GPL vmlinux 0xcc28d8f4 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcc340053 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xcc35047c pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xcc81fdac crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xcca9423d ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xccb571b6 dm_underlying_device_busy +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccdb60d8 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xccdd0cba crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcd399de8 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd4fe27e fuse_conn_kill +EXPORT_SYMBOL_GPL vmlinux 0xcd9991a9 usb_usual_set_present +EXPORT_SYMBOL_GPL vmlinux 0xcdb01877 ktime_add_ns +EXPORT_SYMBOL_GPL vmlinux 0xcdc56c3e crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd9cdbb sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xcdf8600c hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xce07e621 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xce1c1214 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xce3077b5 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xce4d6762 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce9130f9 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xce91ad84 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xceb73745 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xcebd97e5 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xced0d84e flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xceecbed0 pmac_i2c_get_bus_node +EXPORT_SYMBOL_GPL vmlinux 0xcef06b7b usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xcf0da8ab sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xcf18107c spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xcf2384ad pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcf32e1b5 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xcf40accf rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbb79e9 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcc83ad register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcfd25c6a ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xcfe8bb69 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd00004b9 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xd00652f3 timecompare_offset +EXPORT_SYMBOL_GPL vmlinux 0xd0069ddf pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd05dc2a3 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd0692f67 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c26322 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xd0dc0a66 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd0f92e6a inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xd0fa7603 blkiocg_add_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0xd103bfca transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd1045ef2 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xd12cdf5a ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xd13fce51 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xd154641f tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16b9ed7 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xd17248e8 device_schedule_callback_owner +EXPORT_SYMBOL_GPL vmlinux 0xd191bcc3 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xd1b2db37 tracepoint_probe_register_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd26ebd96 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27a73cc usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xd2966dd4 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xd29888c3 blkiocg_update_io_remove_stats +EXPORT_SYMBOL_GPL vmlinux 0xd2a8caf0 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd2bca975 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xd32fe193 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd37e13b4 regulator_set_optimum_mode +EXPORT_SYMBOL_GPL vmlinux 0xd389006d inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd42f58e2 tpm_show_caps_1_2 +EXPORT_SYMBOL_GPL vmlinux 0xd43faf5e input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd46a5165 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd483e708 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4dd294a tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd4e06c91 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd4ec9dff tpm_store_cancel +EXPORT_SYMBOL_GPL vmlinux 0xd4f47893 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xd506beb9 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xd578edea crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xd582227a leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xd59668e6 unlock_flocks +EXPORT_SYMBOL_GPL vmlinux 0xd599b06f scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5d0f56e spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd70aeef8 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xd71654bb __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774c406 irqd_to_hwirq +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd795edbf max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xd797a65d ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xd797c0da cgroup_add_file +EXPORT_SYMBOL_GPL vmlinux 0xd79e7756 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd7b2871a usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xd7c3a0ce rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e23d6a ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd7f7988f usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xd805da88 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd822748f blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xd8525ea7 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xd85ac634 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd8c0acb4 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xd9018d8b usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xd908f6b2 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xd916fb79 device_del +EXPORT_SYMBOL_GPL vmlinux 0xd93e76a6 kbd_table +EXPORT_SYMBOL_GPL vmlinux 0xd944d8f9 ktime_get_boottime +EXPORT_SYMBOL_GPL vmlinux 0xd95b83bd rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xd9666d24 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xd9796dd3 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd997e969 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd99f2e42 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xd9aba3bc agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd9cc3ce1 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xd9ce9a4c blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xd9d8552d scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f938ca ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xda045cc5 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xda0a7ad4 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xda1be8e1 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xda3a7ca9 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xda5fa207 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xda942e12 tpm_open +EXPORT_SYMBOL_GPL vmlinux 0xdac8c671 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xdad6ab0a ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xdae1937e usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb04cacc tracepoint_probe_unregister_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xdb274e52 monotonic_to_bootbased +EXPORT_SYMBOL_GPL vmlinux 0xdb7cbcf1 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdba94607 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xdbbc9695 macio_find +EXPORT_SYMBOL_GPL vmlinux 0xdc227797 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc58b3e2 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xdc69d267 pmac_backlight +EXPORT_SYMBOL_GPL vmlinux 0xdc7953e0 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdccc9cb0 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xdcf62601 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xdd0e39b1 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd814a47 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdd88719d agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xddb47db7 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde173635 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xde253758 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xde417b81 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xde686870 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde6be186 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xde7422c5 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xdecb4b73 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xdf0b6d45 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xdf27877b register_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0xdf42b4fb ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xdf718fd7 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe009ce1f __scsi_get_command +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe073a2f1 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xe07a21d1 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe08f6485 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe09d5e6b __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xe0ae20b6 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xe0b2ef82 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe0daae89 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe1184b48 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xe16591ab stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xe19e1f45 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe1c60586 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xe1e50ea8 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xe1f2eea9 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xe1fd4b87 __css_put +EXPORT_SYMBOL_GPL vmlinux 0xe2217979 dma_mmap_coherent +EXPORT_SYMBOL_GPL vmlinux 0xe2457ef0 sysdev_class_register +EXPORT_SYMBOL_GPL vmlinux 0xe2569407 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xe2809072 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xe28bdba1 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xe299fb21 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xe2b674d5 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xe2dd67e5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31b5268 free_css_id +EXPORT_SYMBOL_GPL vmlinux 0xe31c339b power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xe3456215 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe34ac45b ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe37ab4df ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xe3844fba transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe384a102 usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xe38992d1 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xe3a73fdb sysdev_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe3e784aa pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xe3eefd4f dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xe4082b4e wm8994_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe4188c6b gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe42d4c6d perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe43786d1 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xe44458b8 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xe45374e5 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xe46d9894 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xe4e2de4a lookup_instantiate_filp +EXPORT_SYMBOL_GPL vmlinux 0xe4f37d71 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xe4f817c2 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xe524ca20 sysfs_notify_dirent +EXPORT_SYMBOL_GPL vmlinux 0xe52b341d tracepoint_iter_stop +EXPORT_SYMBOL_GPL vmlinux 0xe551edda inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xe553fcb6 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5686076 get_driver +EXPORT_SYMBOL_GPL vmlinux 0xe56e0ad5 pmf_call_function +EXPORT_SYMBOL_GPL vmlinux 0xe58400e4 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe591a683 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xe5c8e969 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xe60c885b vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xe6488b47 cpufreq_notify_transition +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe66e2d61 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel +EXPORT_SYMBOL_GPL vmlinux 0xe6979ad9 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6fd88ab page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xe7015c70 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xe709cb3f rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xe72d7f98 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xe751692a spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xe752032d i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xe758beb2 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe7ec800a crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xe7f10ca0 pci_pri_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe804cc6a rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe824d954 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xe848984b uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe87579b0 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xe8cdac9f usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9587909 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0xe9c339ef spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xe9c476f7 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xea04ea3e pmac_i2c_get_dev_addr +EXPORT_SYMBOL_GPL vmlinux 0xea065e01 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea9018f3 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xeacf08c0 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xeae74760 scsi_nl_send_transport_msg +EXPORT_SYMBOL_GPL vmlinux 0xeae9aa96 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xeb0f8e50 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeb1154be usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xeb4ddb17 pmf_get_function +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb8f84a1 put_driver +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebeb7f5c rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xebf131f9 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec31f264 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xec38d5b9 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xec4ce17d crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xec5dac68 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xec735db0 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xec9d6c4f led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xecb7b8e8 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xecea75d0 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xecef130a wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xed1cd1c9 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xed2d164c blkiocg_update_dispatch_stats +EXPORT_SYMBOL_GPL vmlinux 0xed530bfd led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xedad62d9 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xedb5ad12 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xedc2994d ktime_get_real +EXPORT_SYMBOL_GPL vmlinux 0xedd5a312 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xedd9e9d4 pci_configure_slot +EXPORT_SYMBOL_GPL vmlinux 0xeead713a pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xeeca4e14 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xeee5e969 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xeee60c65 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xef604751 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xef6bf364 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xef6c2e75 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d8fd0 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xef83310a __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xefa147c9 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xefb72398 pstore_write +EXPORT_SYMBOL_GPL vmlinux 0xefdd5a63 ktime_get_ts +EXPORT_SYMBOL_GPL vmlinux 0xefe208f1 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xeffcc3e3 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xf008203f pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xf02fedbd ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xf039d5dc nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xf05b2f9c sysfs_schedule_callback +EXPORT_SYMBOL_GPL vmlinux 0xf0d5036b xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xf0f0e6bb i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf12e9958 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf191f73e ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1da94c1 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xf242e15c fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xf2624afd device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf28eb296 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xf28ee974 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf2c8c43b scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf34806ec hrtimer_get_res +EXPORT_SYMBOL_GPL vmlinux 0xf367fea3 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xf392fb54 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xf3b93a97 cgroup_lock_is_held +EXPORT_SYMBOL_GPL vmlinux 0xf3d8159a scsi_nl_add_transport +EXPORT_SYMBOL_GPL vmlinux 0xf3dd036d regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xf3e6e937 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xf448d2e0 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf48aaaaa crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xf498d65b regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5c8185c regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xf5c9d288 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xf5ef693a ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xf6464980 ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf6c14898 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xf6c5e132 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xf6e04730 event_storage +EXPORT_SYMBOL_GPL vmlinux 0xf6e2283b anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf721db07 tpm_continue_selftest +EXPORT_SYMBOL_GPL vmlinux 0xf7304611 css_depth +EXPORT_SYMBOL_GPL vmlinux 0xf732314d vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xf7373e05 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xf77e9a65 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xf7813cde pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xf79bd84b usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf7c6af8e pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xf7f133d6 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f4bb4 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8979bb6 crypto_aead_type +EXPORT_SYMBOL_GPL vmlinux 0xf8b60714 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf9091ce7 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xf90cfc5a skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf93311ea pmac_i2c_match_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf98792b3 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xfa012fe7 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa36e1f5 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xfa4f0037 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xfa87f69e spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xfa9a8067 inet6_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0xfa9dd504 timecompare_transform +EXPORT_SYMBOL_GPL vmlinux 0xfa9f7784 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfae7ecbd __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xfaf7fad5 tpm_show_durations +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7ca540 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfb93bf2d cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfbdc2ee8 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xfbf9be5d register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfc5fc871 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xfcd7bc0b ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0xfcd7ddfa class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd0d3221 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd0ffc6f pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xfd255686 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xfd405dbb user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfd67fb00 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xfd8ec219 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xfdc4e342 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfde0b92c crypto_larval_error +EXPORT_SYMBOL_GPL vmlinux 0xfe032d8e blkio_subsys +EXPORT_SYMBOL_GPL vmlinux 0xfe141615 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xfe40ab40 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xfe426d49 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xfe56903e debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xfe5a15aa ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xfe5bef79 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xfe5c0b73 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xfe6514bc xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xfe7c5a40 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xfe8459d2 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb72d5c bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xfecdaa7a simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfeff9087 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xff1f493d usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xff36976a pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5b8361 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xff7098f9 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xff76cef3 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xffa4c4ec cgroup_lock +EXPORT_SYMBOL_GPL vmlinux 0xffb21749 i2c_adapter_type --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/armhf/highbank.ignore.modules +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/armhf/highbank.ignore.modules @@ -0,0 +1 @@ +1 --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/armhf/omap.modules +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/armhf/omap.modules @@ -0,0 +1,2290 @@ +6lowpan +6pack +8021q +8250_dw +88pm860x_bl +88pm860x_onkey +88pm860x-ts +9p +9pnet +a3d +a8293 +aat2870_bl +aat2870-regulator +ab3100 +ab3100-otp +ab8500-ponkey +ab8500-usb +ac97_bus +acecad +act200l-sir +act_csum +act_gact +act_ipt +actisys-sir +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5398 +ad5446 +ad5504 +ad5624r_spi +ad5686 +ad5791 +ad5930 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7280a +ad7291 +ad7298 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad799x +ad9832 +ad9834 +ad9850 +ad9852 +ad9910 +ad9951 +adcxx +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adfs +adi +adis16060 +adis16080 +adis16130 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm9240 +adp5520_bl +adp5520-keys +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7343 +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af_802154 +af9013 +af_alg +affs +af_key +af-rxrpc +afs +ah4 +ah6 +ahci_platform +aiptek +aircable +ak881x +ak8975 +alauda +algif_hash +algif_skcipher +alphatrack +altera_jtaguart +altera_ps2 +altera-stapl +altera_uart +amba-clcd +ambakmi +amba-pl010 +amba-pl011 +amc6821 +ams369fg06 +analog +ansi_cprng +anubis +aoe +apds9802als +apds990x +appledisplay +appletalk +appletouch +ar7part +arc4 +ark3116 +arptable_filter +arp_tables +arpt_mangle +as5011 +asc7621 +asix +asus_oled +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +atbm8830 +ath +ath3k +ath6kl +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atm +atmel_mxt_ts +atmel_pwm +atmel-pwm-bl +atmtcp +atxp1 +au0828 +au8522 +aufs +authenc +authencesn +auth_rpcgss +autofs4 +ax25 +ax88796 +b2c2-flexcop +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcm203x +bcm3510 +bcm5974 +bcma +bcm_wimax +befs +belkin_sa +bfs +bfusb +bh1770glc +bh1780gli +binfmt_aout +binfmt_misc +block2mtd +blowfish_common +blowfish_generic +bluetooth +bma150 +bmp085 +bnep +bonding +bpa10x +bpqether +bq20z75 +bq24022 +bq27x00_battery +br2684 +brcmfmac +brcmutil +bridge +broadsheetfb +bsd_comp +bt819 +bt856 +bt866 +btmrvl +btmrvl_sdio +btrfs +btsdio +btusb +btwilink +bu21013_ts +bw-qcam +c67x00 +cachefiles +caif +caif_hsi +caif_serial +caif_socket +camellia +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +carl9170 +cast5 +cast6 +catc +c_can +c_can_platform +ccm +cdc-acm +cdc_eem +cdc_ether +cdc_ncm +cdc-phonet +cdc_subset +cdc-wdm +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +chnl_net +cifs +clearpad_tm1217 +clip +cls_basic +cls_cgroup +cls_flow +cls_fw +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cma3000_d0x +cma3000_d0x_i2c +cmtp +cobra +coda +configfs +cordic +core +cp210x +cpia2 +c-qcam +cramfs +crc7 +crc8 +crc-ccitt +crc-itu-t +cryptd +cryptoloop +crypto_null +crypto_user +cs5345 +cs53l32a +ctr +cts +cuse +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx24110 +cx24113 +cx24116 +cx24123 +cx25840 +cx82310_eth +cxacru +cxd2820r +cy8ctmg110_ts +cyberjack +cypress_cy7c63 +cypress_m8 +cytherm +da9030_battery +da9034-ts +da903x +da903x_bl +davinci_cpdma +davinci_mdio +db9 +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +de600 +de620 +decnet +deflate +des_generic +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +diskonchip +display +dlci +dlm +dm644x_ccdc +dm9000 +dm9601 +dm-bufio +dm-crypt +dme1737 +dm-log +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-thin-pool +dm-zero +dnet +dn_rtmsg +doc2000 +doc2001 +doc2001plus +docecc +docg3 +docprobe +drbd +drm +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dss1_divert +dummy +dvb-as102 +dvb-core +dvb-pll +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-it913x +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dwc3 +dwc3-omap +dw_dmac +dw_mmc +dw_wdt +dynapro +easycap +ebt_802_3 +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_ulog +ebt_vlan +ec100 +echo +econet +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +elo +em28xx +em28xx-alsa +em28xx-dvb +emc1403 +emc2103 +emc6w201 +em_cmp +emi26 +emi62 +em_meta +em_nbyte +empeg +ems_usb +em_text +em_u32 +enc28j60 +enclosure +eql +esd_usb2 +esi-sir +esp4 +esp6 +ethoc +evbug +ext2 +f71805f +f71882fg +f75375s +faulty +fb_sys_fops +fcrypt +ff-memless +fm_drv +freevxfs +fsa9480 +fscache +ft1000 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +funsoft +g760a +g_acm_ms +gadgetfs +gamecon +gameport +garmin_gps +garp +g_audio +g_cdc +gcm +g_dbgp +generic +generic_bl +gen_probe +g_ether +gf128mul +gf2k +g_ffs +gfs2 +ghash-generic +g_hid +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +g_mass_storage +g_midi +g_multi +g_ncm +g_nokia +gpio +gpio-74x164 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-charger +gpio-fan +gpio-generic +gpio-i2cmux +gpio-it8761e +gpio_keys +gpio_keys_polled +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio_mouse +gpio-pca953x +gpio-pcf857x +gpio-regulator +gpio-tps65912 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +g_printer +gre +grip +grip_mp +g_serial +gspca_benq +gspca_conex +gspca_cpia1 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +g_webcam +g_zero +hampshire +hanwang +hci_uart +hci_vhci +hdlc +hdlc_cisco +hdlcdrv +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdpvr +hfc4s8s_l1 +hfcsusb +hfc_usb +hfs +hfsplus +hid +hid-a4tech +hid-apple +hid-axff +hid-belkin +hid-cherry +hid-chicony +hid-cypress +hid-dr +hid-elecom +hid-emsff +hid-ezkey +hid-gaff +hid-gyration +hid-holtekff +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-logitech +hid-logitech-dj +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hidp +hid-petalynx +hid-picolcd +hid-pl +hid-primax +hid-prodikeys +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-kovaplus +hid-roccat-pyra +hid-samsung +hid-sjoy +hid-sony +hid-speedlink +hid-sunplus +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-wacom +hid-waltop +hid-wiimote +hid-zpff +hid-zydacron +hisax +hisax_st5481 +hmc5843 +hmc6352 +hostap +hp4x +hpfs +hso +htc-pasic3 +hwa-hc +hwa-rc +hwmon-vid +i1480-dfu-usb +i1480-est +i2c-algo-bit +i2c-algo-pca +i2c-algo-pcf +i2c-designware-platform +i2c-dev +i2c-diolan-u2c +i2c-gpio +i2c-mux +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-simtec +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-xiic +ibmaem +ibmpex +ics932s401 +idmouse +ieee802154 +ifb +iforce +iio_dummy +iio-trig-gpio +iio-trig-periodic-rtc +iio-trig-sysfs +ili9320 +imon +impa7 +imx074 +industrialio +inet_diag +inexio +inftl +input-polldev +int51x1 +interact +io_edgeport +io_ti +iowarrior +ip6_queue +ip6table_filter +ip6table_mangle +ip6table_raw +ip6_tables +ip6table_security +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_LOG +ip6t_mh +ip6t_REJECT +ip6t_rt +ip6_tunnel +ipaq +ipcomp +ipcomp6 +ipddp +ip_gre +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_watchdog +ip_queue +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netport +ip_set_list_set +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +ip_tables +iptable_security +ipt_ah +ipt_CLUSTERIP +ipt_ecn +ipt_ECN +ipt_LOG +ipt_MASQUERADE +ipt_NETMAP +ipt_REDIRECT +ipt_REJECT +ipt_ULOG +ip_vs +ip_vs_dh +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ipw +ipx +ircomm +ircomm-tty +irda +irda-usb +ir-jvc-decoder +ir-kbd-i2c +irlan +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +irnet +ir-rc5-decoder +ir-rc5-sz-decoder +ir-rc6-decoder +ir-sony-decoder +irtty-sir +ir-usb +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isdnloop +isight_firmware +isl29003 +isl29018 +isl29020 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isofs +isp116x-hcd +isp1301_omap +isp1704_charger +isp1760 +it87 +it913x-fe +itd1000 +iuu_phoenix +iwmc3200top +iwmc3200wifi +ix2505v +jc42 +jedec_probe +jffs2 +jfs +joydev +joydump +kafs +kalmia +kaweth +kbtab +kernelcapi +keucr +keyspan +keyspan_pda +keyspan_remote +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kobil_sct +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +kxsd9 +kxtj9 +l1oip +l2tp_core +l2tp_debugfs +l2tp_ppp +l4f00242t03 +l64781 +lapb +lapbether +latch-addr-flash +lcd +ld9040 +ldusb +lec +leds-88pm860x +leds-adp5520 +leds-atmel-pwm +leds-bd2802 +leds-da903x +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lt3593 +leds-mc13783 +leds-pca9532 +leds-pca955x +leds-pwm +leds-regulator +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-timer +legousbtower +lgdt3305 +lgdt330x +lgs8gl5 +lgs8gxx +lg-vl600 +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libceph +libcrc32c +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libiscsi +libiscsi_tcp +libsas +lightning +line6usb +lineage-pem +linear +lirc_dev +lirc_igorplugusb +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_ttusbir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +llc +llc2 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95241 +lm95245 +lms283gf05 +lnbp21 +lnbp22 +lockd +lp +lp3971 +lp3972 +lpddr_cmds +lru_cache +lrw +ltc4151 +ltc4215 +ltc4245 +ltc4261 +ltv350qv +lzo +m25p80 +m52790 +ma600-sir +mac80211 +mac80211_hwsim +macvlan +macvtap +magellan +mailbox +mailbox_mach +map_absent +map_ram +map_rom +matrix_keypad +max1111 +max11801_ts +max1363 +max1586 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max2165 +max3100 +max3107 +max63xx_wdt +max6639 +max6642 +max6650 +max6875 +max7359_keypad +max8649 +max8660 +max8903_charger +max8925_bl +max8925_onkey +max8925_power +max8925-regulator +max8952 +max8997 +max8997_charger +max8998 +max8998_charger +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-regulator-core +mc44s803 +mceusb +mcp2120-sir +mcp251x +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md4 +mdc800 +mdio-bitbang +mdio-gpio +mem2mem_testdev +memstick +metronomefb +mg_disk +michael_mic +micrel +microtek +minix +mip6 +mISDN_core +mISDN_dsp +mk712 +mkiss +mma8450 +mmci +mmc_spi +mos7720 +mos7840 +moto_modem +mpoa +mpr121_touchkey +mpu3050 +msdos +msp3400 +mspro_block +mt2060 +mt20xx +mt2266 +mt312 +mt352 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtouch +multipath +mwifiex +mwifiex_sdio +mxl111sf-demod +mxl111sf-tuner +mxl5005s +mxl5007t +nandsim +navman +nbd +nci +ncpfs +net1080 +netconsole +netrom +newtonkbd +nfc +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nfcwilink +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nfnetlink +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfsd +nftl +nf_tproxy_core +n_hdlc +nilfs2 +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +ns558 +ntc_thermistor +ntfs +n_tracerouter +n_tracesink +nvram +nxt200x +nxt6000 +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stackglue +ocfs2_stack_o2cb +ocfs2_stack_user +of_mmc_spi +of_serial +old_belkin-sir +omap +omap2 +omap-aes +omap_hdq +omap-iommu-debug +omap-iovmm +omap-sham +omap-vout +omap_wdt +omfs +omninet +onenand +onenand_sim +opencores-kbd +oprofile +opticon +option +or51132 +or51211 +osst +oti6858 +output +ov2640 +ov5642 +ov6650 +ov7670 +ov772x +ov9640 +ov9740 +overlayfs +oxu210hp-hcd +p54common +p54spi +p54usb +p8022 +p8023 +panel +panel-acx565akm +panel-lgphilips-lb035q02 +panel-nec-nl8048hl11-01b +panel-picodlp +parkbd +parport +parport_ax88796 +pata_arasan_cf +pata_of_platform +pata_platform +pc87360 +pc87427 +pca9541 +pca954x +pcap_keys +pcap_ts +pcbc +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pcwd_usb +pda_power +pegasus +penmount +phonedev +phonet +phram +physmap +physmap_of +pktcdvd +pktgen +pl2303 +pl330 +platform_lcd +plat_nand +plat-ram +plip +plusb +pn533 +pn544 +pn_pep +pohmelfs +poseidon +powermate +ppdev +ppp_async +ppp_deflate +ppp_mppe +pppoatm +pppoe +pppox +ppp_synctty +pps_core +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pvrusb2 +pwc +pwm-beeper +pwm_bl +qcaux +qcserial +qinfo_probe +qnx4 +qt1010 +qt1070 +quatech_usb2 +quota_tree +quota_v1 +quota_v2 +r8712u +r8a66597-hcd +radio-i2c-si470x +radio-mr800 +radio-si4713 +radio-tea5764 +radio-usb-si470x +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-em-terratec +rc-encore-enltv +rc-encore-enltv2 +rc-encore-enltv-fm53 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-kaiomy +rc-kworld-315u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-snapstream-firefly +rc-streamzap +rc-tbs-nec +rc-technisat-usb2 +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-trekstor +rc-tt-1500 +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rds +rds_tcp +redboot +redrat3 +reed_solomon +reiserfs +renesas_usbhs +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +ring_sw +rio500 +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rndis_host +rndis_wlan +romfs +rose +rotary_encoder +rpcsec_gss_krb5 +rt2500usb +rt2800lib +rt2800usb +rt2x00lib +rt2x00usb +rt73usb +rtc-88pm860x +rtc-ab3100 +rtc-ab8500 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1742 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-isl12022 +rtc-isl1208 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8925 +rtc-max8998 +rtc-mc13xxx +rtc-msm6242 +rtc-pcap +rtc-pcf2123 +rtc-pcf50633 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pl031 +rtc-r9701 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-stk17ta8 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtl8150 +rtl8187 +rtl8192c-common +rtl8192cu +rtlwifi +rts5139 +rxkad +s1d13xxxfb +s2255drv +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s6e63m0 +s921 +saa6588 +saa7110 +saa7115 +saa7127 +saa717x +saa7185 +saa7191 +saa7706h +safe_serial +salsa20_generic +sata_mv +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_drr +sch_dsmark +sch_gred +sch_hfsc +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_tgt +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_srp +scsi_wait_scan +sctp +sctp_probe +sdhci-pltfm +sdhci-pxav2 +sdhci-pxav3 +sdio_uart +seed +seeq8005 +seqiv +ser_gigaset +serio_raw +sermouse +serpent +serport +serqt_usb2 +ses +sha512_generic +sh_mobile_ceu_camera +sh_mobile_csi2 +sht15 +sht21 +si21xx +si4713-i2c +sidewinder +siemens_mpi +sierra +sierra_net +sir-dev +sisusbvga +sit +sja1000 +sja1000_platform +sl811-hcd +slcan +slip +slram +sm501 +sm501fb +sm7xx +smc911x +smc91x +sm_ftl +smm665 +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-aaci +snd-ac97-codec +snd-aloop +snd-dummy +snd-hrtimer +snd-hwdep +snd-mixer-oss +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-page-alloc +snd-pcm +snd-pcm-oss +snd-portman2x4 +snd-rawmidi +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-88pm860x +snd-soc-ad1836 +snd-soc-ad193x +snd-soc-ad73311 +snd-soc-adau1373 +snd-soc-adav80x +snd-soc-ads117x +snd-soc-ak4104 +snd-soc-ak4535 +snd-soc-ak4641 +snd-soc-ak4642 +snd-soc-ak4671 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs42l51 +snd-soc-cx20442 +snd-soc-da7210 +snd-soc-dfbmcs320 +snd-soc-igep0020 +snd-soc-jz4740-codec +snd-soc-l3 +snd-soc-lm4857 +snd-soc-max98088 +snd-soc-max98095 +snd-soc-max9850 +snd-soc-max9877 +snd-soc-omap +snd-soc-omap3beagle +snd-soc-omap3evm +snd-soc-omap3pandora +snd-soc-omap-mcbsp +snd-soc-overo +snd-soc-pcm3008 +snd-soc-rt5631 +snd-soc-rx51 +snd-soc-sdp3430 +snd-soc-sgtl5000 +snd-soc-spdif +snd-soc-ssm2602 +snd-soc-sta32x +snd-soc-tlv320aic23 +snd-soc-tlv320aic26 +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic3x +snd-soc-tlv320dac33 +snd-soc-tpa6130a2 +snd-soc-twl4030 +snd-soc-twl6040 +snd-soc-uda134x +snd-soc-uda1380 +snd-soc-wl1273 +snd-soc-wm1250-ev1 +snd-soc-wm2000 +snd-soc-wm5100 +snd-soc-wm8350 +snd-soc-wm8400 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8727 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8900 +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8940 +snd-soc-wm8955 +snd-soc-wm8960 +snd-soc-wm8961 +snd-soc-wm8962 +snd-soc-wm8971 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8983 +snd-soc-wm8985 +snd-soc-wm8988 +snd-soc-wm8990 +snd-soc-wm8991 +snd-soc-wm8993 +snd-soc-wm8994 +snd-soc-wm8995 +snd-soc-wm8996 +snd-soc-wm9081 +snd-soc-wm9090 +snd-soc-wm-hubs +snd-soc-zoom2 +snd-timer +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usbmidi-lib +snd-virmidi +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +soundcore +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-dw +spi-gpio +spi-lm70llp +spi-oc-tiny +spi-omap2-mcspi +spi-pl022 +spi-tle62x0 +squashfs +sr030pc30 +ssb +ssfdc +sst25l +ssu100 +st +st1232 +stb0899 +stb6000 +stb6100 +st_drv +stinger +stir4200 +stkwebcam +stmmac +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sunkbd +sunrpc +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +syscopyarea +sysfillrect +sysimgblt +sysv +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +tc3589x-keypad +tca6416-keypad +tcm825x +tcm_fc +tcm_loop +tcp_bic +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tdo24m +tea +tea5761 +tea5767 +tea6415c +tea6420 +tef6862 +tekram-sir +test-kprobes +test-kstrtox +test_power +tgr192 +thmc50 +ths7303 +ti_dac7512 +ti_hecc +timb_dma +timblogiw +timbuart +timeriomem-rng +tipc +ti_usb_3410_5052 +tlv320aic23b +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmiofb +tmio_mmc +tmio_mmc_core +tmio_nand +tmp102 +tmp401 +tmp421 +toim3232-sir +touchit213 +touchright +touchwin +tps6105x +tps6105x-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +trancevibrator +tranzport +ts_bm +tsc2005 +tsc2007 +tsc40 +ts_fsm +ts_kmp +tsl2550 +tsl2563 +tsl2583 +ttpci-eeprom +tua6100 +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw9910 +twidjoy +twl4030_charger +twl4030_keypad +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_wdt +twl6030-pwm +twl6030-usb +twl6040-vibra +twofish_common +twofish_generic +u132-hcd +uas +ub +ubi +ubifs +ucb1400_core +ucb1400_ts +udf +udlfb +ueagle-atm +ufs +uio +uio_pdrv +uio_pdrv_genirq +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +upd64031a +upd64083 +usb8xxx +usbatm +usb_debug +usb_gigaset +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usb-storage +usbtest +usbtmc +usbtouchscreen +usbvision +usb_wwan +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-int-device +v4l2-mem2mem +vcan +ves1820 +ves1x93 +veth +vgg2432a4 +vhci-hcd +videobuf2-core +videobuf2-dma-contig +videobuf2-memops +videobuf2-vmalloc +videobuf-core +videobuf-dma-contig +videobuf-dvb +videobuf-vmalloc +videodev +virtual +visor +vivi +vivopay-serial +vmac +vp27smpx +vpfe_capture +vpss +vpx3220 +vsxxxaa +vt1211 +vub300 +w1_bq27000 +w1_ds2408 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1-gpio +w1_smem +w1_therm +w35und +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +w90p910_ts +w9966 +wacom +wacom_w8001 +walkera0701 +wanrouter +warrior +whiteheat +wimax +wire +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl12xx_sdio +wl12xx_spi +wm831x_backup +wm831x_bl +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x_power +wm831x-ts +wm831x_wdt +wm8350-hwmon +wm8350_power +wm8350-regulator +wm8400-core +wm8400-regulator +wm8739 +wm8775 +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusbcore +wusb-wa +x25 +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_ipcomp +xfrm_user +xfs +xilinx_uartps +xor +xpad +x_tables +xt_addrtype +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_cluster +xt_comment +xt_connbytes +xt_connlimit +xt_connmark +xt_CONNSECMARK +xt_conntrack +xt_cpu +xt_CT +xt_dccp +xt_devgroup +xt_dscp +xt_DSCP +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_HL +xt_IDLETIMER +xt_iprange +xt_ipvs +xtkbd +xt_LED +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_NFLOG +xt_NFQUEUE +xt_NOTRACK +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_RATEEST +xt_realm +xt_recent +xts +xt_sctp +xt_SECMARK +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_TCPMSS +xt_TCPOPTSTRIP +xt_tcpudp +xt_TEE +xt_time +xt_TPROXY +xt_TRACE +xt_u32 +xusbatm +xz_dec_test +yam +yealink +yurex +zaurus +zcache +zd1201 +zd1211rw +zhenhua +zio +zl10036 +zl10039 +zl10353 +zlib +zlib_deflate +zr364xx +zram --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/armhf/highbank.modules +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/armhf/highbank.modules @@ -0,0 +1,181 @@ +8021q +act200l-sir +actisys-sir +aes_generic +ansi_cprng +aoe +arc4 +asix +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +auth_rpcgss +bonding +brd +bsd_comp +btrfs +catc +cdc-acm +cdc_eem +cdc_ether +cdc_ncm +cdc_subset +cfg80211 +cramfs +crc32c +crc-ccitt +crc-itu-t +cryptoloop +cx82310_eth +dm9601 +dm-crypt +dm-log +dm-mirror +dm-raid +dm-raid45 +dm-region-hash +dm-snapshot +dummy +eql +esi-sir +exportfs +faulty +fuse +gfs2 +girbil-sir +gl620a +hfs +hfsplus +hid-a4tech +hid-apple +hid-belkin +hid-cherry +hid-chicony +hid-cypress +hid-ezkey +hid-kensington +hid-kye +hid-logitech +hid-logitech-dj +hid-microsoft +hid-monterey +int51x1 +ipheth +ircomm +ircomm-tty +irda +irda-usb +irlan +irnet +irtty-sir +isofs +isp116x-hcd +isp1760 +jfs +kalmia +kaweth +kingsun-sir +ks959-sir +ksdazzle-sir +lg-vl600 +libcrc32c +linear +litelink-sir +lockd +loop +lzo_compress +ma600-sir +mac80211 +mcp2120-sir +mcs7780 +mcs7830 +md-mod +mii +msdos +multipath +nbd +net1080 +nfs +nfs_acl +nls_ascii +nls_cp437 +nls_iso8859-1 +nls_utf8 +old_belkin-sir +parport +pegasus +plip +plusb +ppp_async +ppp_deflate +ppp_generic +pppoe +pppox +ppp_synctty +psmouse +raid0 +raid1 +raid10 +raid456 +raid6_pq +reiserfs +rndis_host +rtl8150 +scsi_wait_scan +sierra_net +sir-dev +sit +sl811-hcd +slhc +smsc75xx +smsc95xx +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +squashfs +stir4200 +sunrpc +tekram-sir +toim3232-sir +tun +tunnel4 +udf +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +usb-common +usbcore +usbhid +usbnet +usb-storage +xfrm6_mode_beet +xfrm6_mode_transport +xfrm6_mode_tunnel +xfs +xor +zaurus +zlib_deflate --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/armhf/omap +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/armhf/omap @@ -0,0 +1,9719 @@ +EXPORT_SYMBOL arch/arm/plat-omap/mailbox 0x0e6c4531 omap_mbox_get +EXPORT_SYMBOL arch/arm/plat-omap/mailbox 0x154a75b0 omap_mbox_msg_send +EXPORT_SYMBOL arch/arm/plat-omap/mailbox 0x4c9ab456 omap_mbox_register +EXPORT_SYMBOL arch/arm/plat-omap/mailbox 0xbce67e37 omap_mbox_put +EXPORT_SYMBOL arch/arm/plat-omap/mailbox 0xdbc75fe3 omap_mbox_unregister +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/bcma/bcma 0x6df2d63d bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x5c165453 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4a7b27cf ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c659cac ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9555c7cb ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa28a2ace ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa32de92d ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xed2ad4a6 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/dma/dw_dmac 0x0db6d1f3 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw_dmac 0x295918f5 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw_dmac 0x489fbb29 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw_dmac 0x64af6276 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw_dmac 0x95f9231f dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw_dmac 0xa2022d7d dw_dma_get_src_addr +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00826c72 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02c08883 drm_mode_detachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e9df3f drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a3af60 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04bb1800 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06cc544c drm_mode_create_dithering_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08e15c30 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bd0e418 drm_mm_get_block_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f199466 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f8dc681 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11073671 drm_mm_search_free_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c6276a drm_buffer_read_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e7dfdf drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e89332 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x133e10fe drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a3b414 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13e8ddfa drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142b8b35 drm_buffer_copy_from_user +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f072c59 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x215b5678 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21c08dad drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24b8c7c7 drm_core_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x288cee33 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f6368e drm_fasync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x299626b6 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b4d03e4 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bde1a48 drm_get_connector_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d807df8 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f21db1a drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30675976 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3074f033 drm_order +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31389d0a drm_mm_get_block_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e154ba drm_sman_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3afcd6a3 drm_platform_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b8e0f4d drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ee76e27 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f1c5baa drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fad7cf2 drm_sysfs_connector_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fcb9723 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43384bd9 drm_buffer_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c9a91c drm_sman_set_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4679a299 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x470e704e drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f156bd drm_core_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x481f7a1c drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48f8631e drm_usb_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4945a3ca drm_mm_search_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498dcb5e drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b2aa04f drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d7468e7 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d85b8e6 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4daa579d drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f5de301 drm_mm_put_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5165455b drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53152180 drm_usb_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53390c08 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x553fef00 drm_connector_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x575cd9b8 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57673884 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580830f0 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x593cde51 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6cbc33 drm_find_cea_extension +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62ffeb2a drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64439bfc drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x650c0d04 drm_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x652251a4 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65e3c282 drm_core_reclaim_buffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d7375 drm_timestamp_precision +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d23dcbb drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dafac3f drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e52c9c4 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7211daf0 drm_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x729ee523 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72df123c drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x733105fb drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7430f73a drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74748e20 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7496b437 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75e73c90 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79cd5664 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1fd6c8 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d25c83d drm_connector_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4cfa5d drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x854a2b35 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85de09f5 drm_mode_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e9fe78 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x885b4fa9 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a41328e drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfb019d drm_buffer_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x901ca111 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f2d102 drm_sman_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932df43d drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94d691e4 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94f80adb drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95132a14 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95b685e2 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96944579 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9745d638 drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x990b27e6 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b104d0f drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6bbbbd drm_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc25a34 drm_sman_owner_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0bf13f7 drm_get_encoder_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1eabd87 drm_mode_list_concat +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa237e931 drm_sman_set_manager +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4edb20a drm_mm_pre_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a09d50 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b0550f drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7179c31 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7dda82b drm_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7e5dd11 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9ad0e11 drm_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9bfc80a drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab366949 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacbe2969 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xace200bd drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1875cfd drm_mode_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5ad5daa drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a467b1 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b31e6b drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc4a51ea drm_mode_connector_detach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc78f201 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd39b273 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe714b0d drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3086946 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc414c422 drm_vblank_offdelay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9534a85 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca42ff83 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca7af23e drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb6e44cc drm_get_last_vbltimestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0bcfe4 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf2eff4 drm_mode_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08fa3f0 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0baf166 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1e266c6 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2721d6d drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f1ab84 drm_sman_owner_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd80c8165 drm_connector_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88db039 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd923c659 drm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbad1279 drm_mode_validate_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd6e4ffa drm_get_platform_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0f3455e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe256edfd drm_sman_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3553657 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe532ac34 drm_mm_insert_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5bdce7e drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6f42529 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe998a636 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea041924 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeac21077 drm_core_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccc9f7d drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed256cae drm_sman_free_key +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda8bb86 drm_mode_attachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee531694 drm_sysfs_connector_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeede83d2 drm_gem_object_handle_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef952dbc drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a0bf79 drm_sman_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1a3c9e0 drm_gem_object_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf33fecc5 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf49a82ca drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf69fabdf drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6babeb8 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8bd4687 drm_get_usb_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8c41e47 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8db0c61 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8fc5403 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf988b19e drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc2b95b5 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4f8599 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff7ec5ef drm_global_mutex +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd10678fa i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe7110b5e i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x44391fed i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x8005286b i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pcf 0x4a955778 i2c_pcf_add_bus +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0879b097 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1b5d6645 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1c406782 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x51c692d6 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5b3c3fe1 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6545a391 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x92ec8d93 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xcdd938c8 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xeb8d59a3 gameport_set_phys +EXPORT_SYMBOL drivers/input/input-polldev 0x04b13a6e input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x0d3d08a7 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6e375c7b input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa35fc6db input_unregister_polled_device +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3713029a ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x5c815835 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xac95b7f4 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf4ab68fa ad714x_remove +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x4bffada6 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1f7cbd5c sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9a8c4481 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9bf699c6 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc732c198 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xdac026c0 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe1ff6c87 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4b7f7c7a ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbc9dc160 ad7879_suspend +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf3bd1692 ad7879_resume +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x207a2ac8 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b45b47b capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2cba2e64 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x393b3331 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x438544b4 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47d3fc51 capi_info2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa5f7116e capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa6e66681 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaca82440 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd8f40d15 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xeca5b5cb capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed061606 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7f29ce36 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x88bf70a5 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe227344e FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xff2db2cf FsmDelTimer +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x124a56c2 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x428745a4 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x91d2986a register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1bcda37d mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1c73558c mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x288aaa6b recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x31ccddee recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x32183119 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x32b5bb93 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54451388 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dc7400a mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x614ede30 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x68983bb6 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x848f23e6 confirm_Bsend +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8cd17c33 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96309324 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96b7352c mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x97d83521 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb81a3b39 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc4bda17a mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xca274699 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcf57640a recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcf94b836 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd210e7af mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd74ffca0 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe2ce3d40 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe70d0c84 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe7f2ac6d dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe87943cf mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/dm-log 0x305a66f0 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xc21db45a dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xc418430a dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xcefcef9d dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x040a0a31 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1ffbdcc4 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xabe97290 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd26a9721 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd9e5e680 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf6825127 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0x6aac0ac7 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/tuners/max2165 0xbc94a641 max2165_attach +EXPORT_SYMBOL drivers/media/common/tuners/mc44s803 0x132f43d6 mc44s803_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2060 0xbf56abb7 mt2060_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2266 0xe9749672 mt2266_attach +EXPORT_SYMBOL drivers/media/common/tuners/mxl5005s 0xb617c28a mxl5005s_attach +EXPORT_SYMBOL drivers/media/common/tuners/qt1010 0x15d1b3f2 qt1010_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18212 0x54438870 tda18212_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18218 0x0f54292e tda18218_attach +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/common/tuners/tuner-xc2028 0xcbddddfc xc2028_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc4000 0x45a69305 xc4000_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc5000 0x4d174513 xc5000_attach +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x13b12dd9 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x19c77265 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x2a2b3159 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x429c0690 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x7b69db3a flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x8966fa51 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x99aa1166 flexcop_device_exit +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x9e0b9b7c flexcop_device_initialize +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x9fec1854 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xac09bcdd flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc13f9882 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xde336900 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xfe144d6c flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x00aa2378 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x07b6a762 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0c4d4a14 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x192dbd13 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x202ad94d dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x260fc2c9 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x2f110e87 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x31e93eb1 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x3239fa9f dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6225816a dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x687066ad dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6ac76775 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7431ad2b dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x746b02ad dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x78b253d1 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7dfb567e dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x83a2ef94 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x857b93e7 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x86d9f791 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x87289101 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x87b161ca dvb_net_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x883c17c6 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8c086b54 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x90b3c91f dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x97248e30 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x9d77023b dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xa0d7d969 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbc0d91e1 timeval_usec_diff +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc1fc18ad dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc3f50f32 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe9eb6e01 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xed9e5ee7 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf2e4ff61 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf487376d dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf585d222 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xfb25f454 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x04988e4b dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x382b365f dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x38b331dc dvb_usb_device_init +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x7e4ce713 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x94a7950a dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xc7142080 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xe95d9887 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x92eb1758 af9005_rc_decode +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x04bd82fe dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x0a227715 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x89c5dc5a dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x94a490f0 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x94ec80b5 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xa9d52fe2 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xd5d4d768 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xe5564cdd dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xf52eaf3d dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xf95c6b8e dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xffcab9c5 dibusb_rc_query +EXPORT_SYMBOL drivers/media/dvb/frontends/a8293 0x1538e1c0 a8293_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/af9013 0xe39b8a41 af9013_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/atbm8830 0x691d3626 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/au8522 0x34cd0037 au8522_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/bcm3510 0xa1455f19 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22700 0x4dbf054d cx22700_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22702 0x2980567a cx22702_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24110 0x021068d3 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x0198d3a9 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0xa965fec3 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24116 0xe36012e4 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0xe694f65b cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0xfd00ed95 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cxd2820r 0x980dac59 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x091158e0 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x0d7734ea dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x5741e0ec dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x84846d97 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xe0e6e500 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x027a7be9 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x0ef56519 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x2f81b365 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x46d382e8 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x661488b7 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x8bff32a5 dib0090_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x94e6f686 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xa7c08ab8 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xbb8ca701 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mb 0xda050ad0 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x08f96687 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x3b2e8479 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x7a366a8b dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xa795f440 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xeeaea3ac dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xfe14c207 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x085c3586 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x476ab928 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xc5f53e20 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xc6bce550 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x0cefac26 dib7000p_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x2ea6a831 dib7090_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x3df37e1b dib7090_tuner_sleep +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x47df2e8b dib7000p_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x7e3648c7 dib7090_get_i2c_tuner +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x99678e61 dib7090_agc_restart +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x9aceaa68 dib7090_slave_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xa7f95c3a dib7000p_update_pll +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xab58c7a7 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xb3fc9b7d dib7000p_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xdc5e8ec1 dib7000pc_detection +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xdf911b21 dib7000p_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xe8ed9336 dib7000p_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xee7886ae dib7000p_ctrl_timf +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xfbce1fbb dib7000p_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x2ca42541 dib8000_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x405afdea dib8000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x47b950ea dib8000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x5a1fefca dib8000_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x70eb9df3 dib8000_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x846ebc24 dib8000_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x8d9e1910 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x95e32f2d dib8000_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb09aa5d9 dib8000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb1fa93d4 dib8000_remove_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb2043672 dib8000_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xc1ba03ce dib8000_pwm_agc_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xda479f39 dib8000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xf7f50572 dib8000_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0x24a1853e dib9000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0x5a2c433d dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0x8e84820f dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0x91d8879d dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xacb7ce62 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xb4ff9fc2 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xbc85db6e dib9000_remove_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xbd5d824e dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xc9360892 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xc969288c dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xda78a87e dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xe683f52d dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xfb60990a dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xffea89f2 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x7a0d7ba7 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x7beb46c9 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x8b946eab dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xe11b27a2 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xed0ab737 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x3b9f6ae5 drxd_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x61a203e4 drxd_config_i2c +EXPORT_SYMBOL drivers/media/dvb/frontends/drxk 0xa0ea25b1 drxk_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ds3000 0x2b1a7933 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dvb-pll 0xafabca1a dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ec100 0x23b5947c ec100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6405 0x007a52ec isl6405_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6421 0xf6c7262e isl6421_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6423 0x0d08fbd2 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/it913x-fe 0x3bf00f7c it913x_fe_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/itd1000 0x776f0f84 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ix2505v 0x3e2c2b34 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/l64781 0x8263f895 l64781_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt3305 0x11270de1 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt330x 0x98ee8331 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgs8gl5 0x6d659651 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgs8gxx 0x8c7789e7 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0x94ceab48 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0xa15a6c0f lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp22 0x18dc1d07 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a16 0x5a94370d mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a20s 0x8be82921 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt312 0x00574e82 mt312_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt352 0x75a35d84 mt352_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt200x 0x52bb041a nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt6000 0x98a529cc nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51132 0xcefc818f or51132_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51211 0x6cccc30b or51211_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1409 0x3e01748c s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1411 0x474490d4 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x45858a42 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0xc0f182e9 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1432 0xd58cfe05 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s921 0x7463932a s921_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/si21xx 0x0b7557c2 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp8870 0xd7f5d0c0 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp887x 0x70557975 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb0899 0xe3030f29 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6000 0xa122b4dd stb6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6100 0x8ac5dc04 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0288 0xa8cef836 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0297 0x0e8f630a stv0297_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0299 0x34cadc74 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0x37060378 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0xadcc9b57 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0900 0xca7aee27 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0x1dbafd52 stv090x_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0xfc102e6d stv090x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110 0x8efc0ece stv6110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110x 0xe68e5eed stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10021 0xd2e010d0 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10023 0xda1e7695 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10048 0x62a01447 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x3a0e3248 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x5a377bc7 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10071 0xe5bfdc59 tda10071_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10086 0xba11e681 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda665x 0x749cb878 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8083 0xc247b809 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8261 0x03bbe584 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda826x 0x0be40a78 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tua6100 0xe9eea518 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1820 0xf2112ebe ves1820_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1x93 0xc46bd07a ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10036 0x3d90f63e zl10036_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10039 0x845edc88 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10353 0x15f6d520 zl10353_attach +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xc537cba5 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x086ee1c1 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5942b1a8 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x71341317 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9a2752b8 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa31c3780 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb828e3b4 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbc6eea9a lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xcfc53b37 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x07d58544 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x402cf205 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0x58f34039 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0xeb3dcd65 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/video/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/video/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/video/cx2341x 0x59bdeb70 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5a7bdc98 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5b88faf6 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0x676ed443 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0xda6c62f8 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/video/cx2341x 0xe821436e cx2341x_handler_init +EXPORT_SYMBOL drivers/media/video/davinci/vpfe_capture 0x18e2ddfc vpfe_register_ccdc_device +EXPORT_SYMBOL drivers/media/video/davinci/vpfe_capture 0xdf2c4199 vpfe_unregister_ccdc_device +EXPORT_SYMBOL drivers/media/video/davinci/vpss 0x088ccec9 vpss_select_ccdc_source +EXPORT_SYMBOL drivers/media/video/davinci/vpss 0x319709a6 vpss_clear_wbl_overflow +EXPORT_SYMBOL drivers/media/video/davinci/vpss 0x54146824 dm365_vpss_set_sync_pol +EXPORT_SYMBOL drivers/media/video/davinci/vpss 0x6e5b5413 vpss_enable_clock +EXPORT_SYMBOL drivers/media/video/davinci/vpss 0x749bf2c9 dm365_vpss_set_pg_frame_size +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0x057f95b5 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0x88d4364b em28xx_register_extension +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x03ad1ce3 gspca_dev_probe +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x11859b73 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x1c2615be gspca_suspend +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x64279000 gspca_auto_gain_n_exposure +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x9b6d408f gspca_resume +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xd654b32d gspca_frame_add +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xf88b3f72 gspca_disconnect +EXPORT_SYMBOL drivers/media/video/soc_camera 0x3167fd41 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/video/soc_camera 0x74b76625 soc_camera_lock +EXPORT_SYMBOL drivers/media/video/soc_camera 0x95536ce2 soc_camera_host_register +EXPORT_SYMBOL drivers/media/video/soc_camera 0x962efe00 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/video/soc_camera 0xd8b8f593 soc_camera_unlock +EXPORT_SYMBOL drivers/media/video/soc_camera 0xe80e568f soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x433952ab soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x6951757b soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x85d52182 soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xcb4b96ae soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x1f54eb08 tm6000_register_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x2ae6f3b4 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x4c9ce8e3 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/video/tveeprom 0x6400fe7f tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/video/tveeprom 0xbdca8e56 tveeprom_read +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x229b1b79 v4l2_chip_ident_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x42c8e001 v4l2_ctrl_next +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x4ed5e0d7 v4l2_chip_match_host +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x50766d69 v4l2_ctrl_query_menu_valid_items +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x5d5b1111 v4l2_chip_match_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x791ab099 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xc0699aac v4l2_ctrl_check +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xf052e6db v4l2_ctrl_query_menu +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x23de77db v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x58fe1d7a v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0xc8562f6b v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x22fe49b5 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x3788c692 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x53a15e76 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x6b4acbbf videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x87fb4bf0 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xf13288fd videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/video/videobuf2-core 0x6618078a vb2_querybuf +EXPORT_SYMBOL drivers/media/video/videodev 0x02360ca7 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/video/videodev 0x045603df v4l2_ctrl_del_event +EXPORT_SYMBOL drivers/media/video/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/video/videodev 0x0f8020d8 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/video/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/video/videodev 0x186b9ea6 video_usercopy +EXPORT_SYMBOL drivers/media/video/videodev 0x1d49ad8d v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/video/videodev 0x269673f3 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x2711e6fe v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/video/videodev 0x2ead73ed video_unregister_device +EXPORT_SYMBOL drivers/media/video/videodev 0x2ebb2498 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x2f36a770 v4l2_ctrl_add_event +EXPORT_SYMBOL drivers/media/video/videodev 0x2fa89104 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x3592362d v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/video/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/video/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/video/videodev 0x3f4e25ea v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/video/videodev 0x3fb16bc4 v4l2_ctrl_handler_init +EXPORT_SYMBOL drivers/media/video/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/video/videodev 0x5ebefe4b v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/video/videodev 0x6451f31f video_device_release +EXPORT_SYMBOL drivers/media/video/videodev 0x69e84655 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/video/videodev 0x6af1e16b v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x6ea25dd3 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x75ae8edb v4l2_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x7771e92f v4l2_subdev_init +EXPORT_SYMBOL drivers/media/video/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x7df3d048 v4l2_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/video/videodev 0x8ead415f video_device_release_empty +EXPORT_SYMBOL drivers/media/video/videodev 0x90c3d6c8 video_devdata +EXPORT_SYMBOL drivers/media/video/videodev 0x94ae6b07 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xa2c7f163 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xad95ef8b v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/video/videodev 0xae8d826b v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/video/videodev 0xb58e79eb v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xb5c42b86 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/video/videodev 0xc46a8e4d video_device_alloc +EXPORT_SYMBOL drivers/media/video/videodev 0xc5f595b2 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/video/videodev 0xd2bc601f video_ioctl2 +EXPORT_SYMBOL drivers/media/video/videodev 0xdbfd8b6c v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/video/videodev 0xe3719f5c v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/video/videodev 0xe7cac722 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/video/videodev 0xe880200f v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xe921321f v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xe97910f2 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/video/videodev 0xea42716f __video_register_device +EXPORT_SYMBOL drivers/media/video/videodev 0xed0809f3 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xedbfdbf0 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/video/videodev 0xf9bede3b v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/memstick/core/memstick 0x04933afc memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1207cc02 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x184e9a80 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1b7c50bd memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x424c8f67 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6bad9301 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x740d2b3d memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7d17fd42 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa75f8b55 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc0f32693 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc4b1376c memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd27aa58a memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc2853f9 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf0413f3b memstick_alloc_host +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3b872bd5 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x419837d8 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0a0f0fa1 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19f1f7a8 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x304d2b09 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x648f3e82 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c8289a3 mc13xxx_irq_request_nounmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x81e0f888 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x908760bc mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9bc42b70 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa83c26ee mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad06449f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb3dae053 mc13xxx_irq_ack +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc60a9247 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdc5799c mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/tps6105x 0x2c218089 tps6105x_get +EXPORT_SYMBOL drivers/mfd/tps6105x 0x86fc6d4b tps6105x_mask_and_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0xfcce794f tps6105x_set +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0x015ee601 pwm_free +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xa4ee3c79 pwm_disable +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xaee34e3d pwm_request +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xd83c7949 pwm_enable +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xdeebfb06 pwm_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x5dd92b9c ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xae22afc6 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x51ea2fb0 altera_init +EXPORT_SYMBOL drivers/misc/atmel_pwm 0x0e9755b9 pwm_channel_free +EXPORT_SYMBOL drivers/misc/atmel_pwm 0x5a8b82f9 pwm_channel_handler +EXPORT_SYMBOL drivers/misc/atmel_pwm 0x5d5c2951 pwm_clk_free +EXPORT_SYMBOL drivers/misc/atmel_pwm 0x6a5e1f70 pwm_channel_alloc +EXPORT_SYMBOL drivers/misc/atmel_pwm 0x73330c97 pwm_clk_alloc +EXPORT_SYMBOL drivers/misc/atmel_pwm 0xeb7f2c6f __pwm_channel_onoff +EXPORT_SYMBOL drivers/misc/c2port/core 0x36dc5248 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x75124ad8 c2port_device_register +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x45241859 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf9d79c9a mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x173ea2f5 tmio_mmc_host_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x1bcee3af tmio_mmc_host_probe +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x51cdcd6e tmio_mmc_host_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x69b59605 tmio_mmc_host_remove +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x6d3deee9 tmio_mmc_sdcard_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xd23a7a98 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xef2e1ed6 tmio_mmc_host_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0b7e9d07 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x39d08a1c cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd831a82a cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x11fa36b4 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xaba1e168 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x5a52e275 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x97f4d88e onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xb6fe47a8 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xecad3f26 flexonenand_region +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2cbfb459 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3da50fc1 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x91f9c3a7 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa5802bc8 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xddd7ad2b hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x119044c7 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x289f22f2 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6628ff43 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6e8ad5e4 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x747147f0 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7a0a1f4e sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa5b57378 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc6db9ac7 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd4c1f726 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xeb0f3fcd sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x07e46eb9 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xd4877ddd alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x19717993 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xf7893567 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfa26f7e2 register_pppox_proto +EXPORT_SYMBOL drivers/net/wan/hdlc 0x012dd33f attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x137248a5 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1a4dbe84 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x36587a92 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3ad14c10 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x56e98105 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb80ea486 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb8ab73b3 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbfa35b5c hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xccafc512 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcd766e65 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1e7933a7 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e2481d5 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4f876b2c ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x80c4f3fd ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x900d9db9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1a9f65b ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xab625bf0 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaec11b23 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb731d4a9 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc1cad2b4 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe0f1186c ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xebbf985a ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x037407ac ath9k_cmn_get_curchannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x05e80af5 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40d3a2e4 ath9k_cmn_update_ichannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba91aafc ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xefcbb4a8 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf59eadf3 ath9k_cmn_padpos +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x055252df ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a697f31 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a9b0dae ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10c36537 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x132061c7 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1676689a ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17fd6e2b ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x195c905d ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2766222b ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29189064 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29766663 ath9k_hw_proc_mib_event +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35d7fda3 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x387b0adf ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3aa91615 ath9k_hw_getdefantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4048b1fd ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x408ac235 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41601119 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44919ab3 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4516df69 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x458d962f ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46c42b5d ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b36ab18 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bc61696 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ef68ef3 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x538464ad ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b8e976e ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c8ff89e ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cb75468 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d4c9f47 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6436302a ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66283d8a ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x669637c7 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x699893a1 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e8aeeb0 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70ea37ab ath9k_hw_gettxintrtxqs +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7154d2ba ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x716bb3c5 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7765e4d5 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8361d395 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86a95c27 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86fde9a0 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e65daa1 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91758c06 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95c9c66e ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97971873 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97c4f3d6 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97d29d51 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98705f61 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x994713bc ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99505f84 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99eeb00c ath9k_hw_htc_resetinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b32f412 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b7b8881 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d13fc6a ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3512f12 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5b46764 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa66b8008 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9177b11 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaac14beb ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaaef7b02 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab422f95 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad972154 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae5c82e0 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaffd6cfa ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb179ad7c ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb70eb251 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd5752ae ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4943149 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7cb07b1 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce5e792d ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcea4c46b ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd17694a0 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2b9256b ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd57c1ab8 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd693b0e4 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6e3989f ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7377292 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdccc7f9a ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdea5c8c4 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0df3461 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1d5474a ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8e33e4f ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebab1f40 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee54dc8a ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeedad9b5 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0ce5059 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3e360b9 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd5de81 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x7d960f3b brcmf_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0xee51b32f brcmf_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1b29e03d brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x36fbe133 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x43199dfd brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5dc9bd95 brcmu_pktfrombuf +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x60d092ad brcmu_pkttotlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x69476b40 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6c261652 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6e484587 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x80a7c52e brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8824c2a9 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x89b61ac7 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x99aee3bb brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xea492d34 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf0523186 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0f913e13 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x127f0da2 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1902150a hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1af4aca5 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2b41f913 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2e93ed3b hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x562e8121 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6f777fb8 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x75e1a1ce hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7903225e hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x808b332b hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8d42c5ab hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9a82ecef hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xac8847ee hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb154dede hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb31ce3ca hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc37c4a65 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc79fb179 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc9a20e6b prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd38edefa hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd7b4e147 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdb5ea73c hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe707f261 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xebd1a956 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xec5b4e76 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x0425bc26 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x0c74bc84 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x17a4a79f rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1a972237 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x249f1338 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x28f1e150 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x29b16930 rtl92c_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2e343129 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2e62f281 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3193d12c rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3384e71b rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x46302659 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5e652937 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6033f3c9 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x64e9facb rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x669feb31 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6732445e rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x73bd5aa2 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x79247493 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7cd26487 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x90f6a4c7 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x91d62f5c rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x96dab460 _rtl92c_phy_dbm_to_txpwr_Idx +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x9960da3f _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa1e703be rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa3c0fa3f rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa63dd06e rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xae80f139 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb1b42a9c rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb7e55749 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xba6830cc rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbce71d36 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc6978236 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xcb056237 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd76439d1 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xda8f0710 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe1a1eca6 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe3679332 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xed14b14d _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf1a69340 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xfcbb9299 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xfeb52bfc _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x0c55f3f8 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2724cac8 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2b7aa5b8 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x316a27ad rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x33877fd4 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x351d28b9 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x4094ac94 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x47a15171 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x4d92b6c6 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x592682de rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x7682339b rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x7ba7d79b rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x897c8597 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x91f72117 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x93a62067 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xab3a2b2d rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xb72b2870 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xfdc7caa2 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/parport/parport 0x03e1ff15 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x0f2f80cc parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x2286470d parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x23df8513 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x29d99d60 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x3ddda8ca parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x3e3dc1b7 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x457fad27 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x556d8a78 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x66716902 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x7de439fd parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x7fa7b056 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x8d5917c0 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8ddfcd6e parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x8e9b6a79 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x8fbdb9a3 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x907fcb23 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x94831a84 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x9d254884 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xb1fbc810 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xc037a28a parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xc3de8a5d parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xc85107b3 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc8d7dd1d parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xd2cc1e8d parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xdc12468e parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xdedf429a parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xef9bcea6 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xfa99807e parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xfb9669b4 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/pps/pps_core 0x3b924556 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x770aaa3b pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xba4637ed pps_unregister_source +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x19bc4312 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1c315b40 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x42382bc1 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5fbe4609 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8cf76052 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb02a26ef fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb5c9a600 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd7703948 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdc699f9c fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00271e22 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x084baa3e fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b2b4a65 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c071547 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c6a7855 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fa55fbe fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x178fdfc2 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c492fa7 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c7cfb46 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1cc3202f fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22a9edce fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2366dbc3 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26da240c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fd0f0f1 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d47ea1a fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e0973c5 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45fcdd73 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ca3ec53 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53c8ce2b fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5514898f fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5817b47a fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e284d38 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60d366d7 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67ad9bab fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b5e7f06 fc_change_queue_depth +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73ecb97f fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x778a0e55 fc_change_queue_type +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86656367 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87382f0f fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f7082d6 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9055f847 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9806614c fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98eee24e fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c4c43dc fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5180641 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5b6ac05 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa70cf79e fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7c1f678 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab257416 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1ec219b fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb821d6d4 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb84f69e3 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd74d902 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdb4c64d fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3f6180b fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcff73186 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2779d57 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe638e995 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea186a8c _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedf1682b fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/raid_class 0x2b279b19 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x91c35e42 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x9614acc2 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x33883c59 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3745cb8a fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3b7d457a scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3c994544 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4475e770 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4e4868e8 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5f3e70fd fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x90658160 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x945349e9 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb38217ae fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbe7eef56 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc6431696 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcad3b1cd fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x146a2294 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d9ccf91 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x31e087d5 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32674e6d scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x51841cb6 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x541bbcd2 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58a9d255 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58acee9b sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58b1b986 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5af0b6bd sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60a62d69 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x671bd7e5 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68fba516 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f1c124b sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74b3ad95 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9762b08a sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab46ded4 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xba6ae3e7 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1d0b276 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdebefdfa sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe20029e4 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4b9f54e sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe8196ef6 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf42c489c sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc559715 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfcfa4a27 sas_remove_host +EXPORT_SYMBOL drivers/ssb/ssb 0x0191de43 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x133871c1 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x1b5f9067 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x44fcdc3b ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x46e2f3a6 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x59feb743 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x5a8efb75 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6558ad12 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x78796706 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x78d74456 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x80e39819 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x980fb928 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc21bc76b ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xc910ce5c ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xda3bd0af ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xec318274 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xf7dbb7ce ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xfa5ce7bf ssb_dma_translation +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x8bb13ceb adt7316_remove +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xa174645a adt7316_disable +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xc46e7117 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf90e5236 adt7316_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x031a2be7 iio_device_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x08e187e9 iio_trigger_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x0a01515e iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x24674184 iio_buffer_show_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2e24a6bf iio_allocate_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x317e3305 iio_read_const_attr +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4266c435 iio_bus_type +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x43bf1b17 iio_buffer_store_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x62fc842d iio_trigger_poll_chained +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x66d1fc83 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x6b82675d iio_free_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x9b1b4367 iio_buffer_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x9ed433cc iio_buffer_read_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xa12a2b96 iio_allocate_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xaa1bba51 iio_device_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb197aff2 iio_buffer_write_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb1dc81c6 iio_buffer_init +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb28a118f iio_push_event +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb3b73253 iio_free_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd573708e iio_buffer_read_bytes_per_datum +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd626e7be iio_trigger_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd628e1bf iio_trigger_notify_done +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xe7c69e71 iio_sw_buffer_preenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xeba0a5c3 iio_trigger_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xff754c3c iio_buffer_unregister +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x2bf012b2 kfifo_access_funcs +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xe1c58b79 iio_kfifo_allocate +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xe1da1c07 iio_kfifo_free +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8dd39f20 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb87c01a4 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x4a77d649 ring_sw_access_funcs +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x50b956f1 iio_sw_rb_free +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x7fe1e1a6 iio_sw_rb_allocate +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x05156aaf transport_subsystem_release +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ca351e0 iscsi_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e4f766d transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f67f70e transport_generic_allocate_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x129e133e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x14297d86 fc_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a472b16 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b4d4b26 transport_generic_map_mem_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x210dd19d transport_do_task_sg_chain +EXPORT_SYMBOL drivers/target/target_core_mod 0x2601b3aa transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x2766a6ce iscsi_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x2aa41368 core_tpg_add_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c0a75c5 transport_generic_handle_data +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ccc3547 target_fabric_configfs_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x31a61efa core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x36302a10 core_tpg_del_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x37ef4953 transport_add_device_to_core_hba +EXPORT_SYMBOL drivers/target/target_core_mod 0x393f4d62 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b9f8056 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cfbe0a6 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d73de41 sas_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d783406 transport_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x47f3b198 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x480f648d target_fabric_configfs_free +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f350f6a sas_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x53b3a77a transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5df3fa40 iscsi_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f2e83f3 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x61c8716b transport_complete_task +EXPORT_SYMBOL drivers/target/target_core_mod 0x63129134 target_fabric_configfs_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x68f29d8d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7026e867 fc_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c2449b8 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ccadafa transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x8266add7 sas_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x899f6e4c core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e59cdeb core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x98b9918a transport_init_queue_obj +EXPORT_SYMBOL drivers/target/target_core_mod 0xa34c6b79 core_tpg_clear_object_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xa434f99c target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4406726 transport_complete_sync_cache +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4cda123 iscsi_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xa729429d target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa23c0bd transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa77c692 target_splice_sess_cmd_list +EXPORT_SYMBOL drivers/target/target_core_mod 0xac33dfcb fc_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xac5a6b41 transport_generic_handle_cdb_map +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0141ee3 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xb273634b transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb71f035c fc_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xb75bf036 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xba190e10 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc031b75e transport_subsystem_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xc83e2a49 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf228c19 target_fabric_configfs_init +EXPORT_SYMBOL drivers/target/target_core_mod 0xdfcbd5c0 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe26ca72d transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2cffbda target_get_task_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2f490c5 sas_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfad0c902 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xff545a80 transport_generic_process_write +EXPORT_SYMBOL drivers/telephony/phonedev 0x56cfd83e phone_register_device +EXPORT_SYMBOL drivers/telephony/phonedev 0xc27b10d7 phone_unregister_device +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x26ff666f sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x074f3c12 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0cdbeea3 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x101907b8 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4c425a1b usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x73ea9192 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x799b1326 usb_wwan_release +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x80388fca usb_wwan_set_termios +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb36b4726 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb5f6a73f usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb8fe23d4 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbb1f3708 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcfe357c3 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xde494f22 usb_wwan_disconnect +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdfa80a6f usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfd9003fb usb_wwan_startup +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7d0efe14 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xa7626e1a usb_serial_suspend +EXPORT_SYMBOL drivers/video/backlight/generic_bl 0x366d19ef genericbl_limit_intensity +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb5b35ff4 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xbca829cb lcd_device_unregister +EXPORT_SYMBOL drivers/video/display/display 0x8cc573d6 display_device_unregister +EXPORT_SYMBOL drivers/video/display/display 0x9857e8ce display_device_register +EXPORT_SYMBOL drivers/video/output 0x558bc5cc video_output_unregister +EXPORT_SYMBOL drivers/video/output 0x6d3ae2a1 video_output_register +EXPORT_SYMBOL drivers/video/syscopyarea 0x8e7415c2 sys_copyarea +EXPORT_SYMBOL drivers/video/sysfillrect 0x3f3979ce sys_fillrect +EXPORT_SYMBOL drivers/video/sysimgblt 0xbc10d44a sys_imageblit +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x09f32f6b w1_bq27000_read +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x42092955 w1_bq27000_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6a575998 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x706827d9 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x769e7745 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xcacc1c5b w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x20248f8a w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x71d44b20 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xca116e81 w1_ds2780_io_nolock +EXPORT_SYMBOL drivers/w1/wire 0xa298d8ee w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xd3567f51 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xd780c767 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xdb396c8b w1_unregister_family +EXPORT_SYMBOL fs/configfs/configfs 0x015d33de config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x125324e2 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x31cbfc8a config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x32297357 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x7759b550 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x7daa7bf7 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x837af811 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x8f3afd5e config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x9e8d895b config_item_init +EXPORT_SYMBOL fs/configfs/configfs 0xa8897bbb config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xe2ee797c configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xec03ac76 configfs_unregister_subsystem +EXPORT_SYMBOL fs/fscache/fscache 0x046df944 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x07a75bf2 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x07d9b576 fscache_wait_bit_interruptible +EXPORT_SYMBOL fs/fscache/fscache 0x0b9c7afa __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1c5960c8 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x394c16e9 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x3a816141 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x3b197170 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x3fc23318 fscache_wait_bit +EXPORT_SYMBOL fs/fscache/fscache 0x4b00e381 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4d42f710 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x5e005630 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5e61771b fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x6ecc2e70 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x75743734 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x75fbaeff __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x853a15ca __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x86f8894f fscache_object_states +EXPORT_SYMBOL fs/fscache/fscache 0x94142f6d __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x98368adb __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa2b5854b fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xa5e64523 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xadee4bd4 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc06f5119 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xc4477203 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd229eed5 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xdaaba3db fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xdbb4c10d fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xde4fc950 fscache_object_work_func +EXPORT_SYMBOL fs/fscache/fscache 0xf5221aa2 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xf72ed615 __fscache_attr_changed +EXPORT_SYMBOL fs/nfsd/nfsd 0x0c8d6829 nfs4_acl_nfsv4_to_posix +EXPORT_SYMBOL fs/nfsd/nfsd 0x2095976a nfs4_acl_new +EXPORT_SYMBOL fs/nfsd/nfsd 0x35e33c1e nfs4_acl_write_who +EXPORT_SYMBOL fs/nfsd/nfsd 0x5a157ae4 nfs4_acl_get_whotype +EXPORT_SYMBOL fs/nfsd/nfsd 0xcbb738be nfs4_acl_posix_to_nfsv4 +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x17a3781f qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1a312aae qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x59a434f6 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa877cf14 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf4a4b460 qtree_delete_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0xa7587646 crc7 +EXPORT_SYMBOL lib/crc7 0xd80c3603 crc7_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0a13a100 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x14ab83ce lc_reset +EXPORT_SYMBOL lib/lru_cache 0x3cf9a304 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x41d8811d lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x50f43c5b lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x552f83c9 lc_get +EXPORT_SYMBOL lib/lru_cache 0xa14e0771 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xa9161176 lc_find +EXPORT_SYMBOL lib/lru_cache 0xc653ff61 lc_put +EXPORT_SYMBOL lib/lru_cache 0xcd9df73d lc_set +EXPORT_SYMBOL lib/lru_cache 0xce7aaa77 lc_changed +EXPORT_SYMBOL lib/lru_cache 0xd0c23606 lc_create +EXPORT_SYMBOL lib/lru_cache 0xda24a86b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xfdd584e2 lc_del +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x315c65fd zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x48034724 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xaf64ad0d zlib_deflate +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf741c793 zlib_deflateEnd +EXPORT_SYMBOL net/802/p8022 0x54482c7f register_8022_client +EXPORT_SYMBOL net/802/p8022 0xbc425d7b unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0xcd628211 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xe7be9ec0 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x918b6c37 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xd6961d7b unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0a0f7fbe p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x0bdaae6c p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x15f5e839 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x171bb1a5 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1afc1716 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x21144909 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x22b90756 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x2efcdd23 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x30a567f6 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x3332e6a5 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x34e3f61f p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x38ed1b61 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41e95e49 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x4484666f p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x46afb222 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x48c0e0a8 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4ad324af p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4ef3a819 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5bb4a87e p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x670eedce v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x83af7773 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x89ea3e63 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x8cb267d4 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x950fed12 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x977a0030 p9_nr_pages +EXPORT_SYMBOL net/9p/9pnet 0x99616c83 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x9a1e8ec2 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x9c964743 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x9e2f7593 p9_payload_gup +EXPORT_SYMBOL net/9p/9pnet 0xa2a57cc3 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xa6e1fc45 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xa805a940 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xad1b2978 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xad7f4afe p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb2da105a p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xb31e93ce p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xbe93db33 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc6a19694 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xdb478d17 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xdd965fd1 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xe0127cfc p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe982fd7b p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf7ed2c2d p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfa1712f5 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x2aef5ac6 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x50ef30d0 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x563c335f atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xc5228b8a alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x11cad052 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x24cf36e6 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x345bc309 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x6f884dcf vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x787eab89 atm_charge +EXPORT_SYMBOL net/atm/atm 0x86bb0a8c atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x8dcbb002 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x8f92c0ca atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x95cf9060 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb367aeea atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xb3b2ffb7 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xc7daf56d deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xcd876b4c atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf5eab1ab vcc_sklist_lock +EXPORT_SYMBOL net/ax25/ax25 0x026c1368 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x365e64de ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x49ab5314 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x506bf072 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x5196a855 ax25_rebuild_header +EXPORT_SYMBOL net/ax25/ax25 0x531c8094 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x61225712 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x8a83360f ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc4d97fa7 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd593e2a5 ax25_hard_header +EXPORT_SYMBOL net/ax25/ax25 0xdbb855db ax25_find_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02023227 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a9baec9 hci_le_ltk_reply +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ee23730 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12c9721e hci_connect +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21c36827 hci_recv_stream_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2412af79 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x29218a3c hci_conn_change_link_key +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c1a88ff hci_find_link_key_type +EXPORT_SYMBOL net/bluetooth/bluetooth 0x31760686 hci_recv_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3cdfc1d8 hci_unregister_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b599289 bt_printk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x521e9383 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x565a7600 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x57e61502 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x594ac8bd bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a93486d bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x630a625a hci_conn_put_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x65e33fa8 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x689f8ec7 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6dd3695e hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x72c11b3c hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x74ef376a hci_send_sco +EXPORT_SYMBOL net/bluetooth/bluetooth 0x786223b5 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f4ff57e hci_find_ltk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fd18d85 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8747cddf bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c6ef5ed bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91367d36 hci_conn_hold_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95b4890c hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c2c3266 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f18a208 hci_send_acl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0e30f7d bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa11d41d4 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4d7e48a bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xad47d03e hci_le_start_enc +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf3e7cc9 hci_conn_check_link_mode +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2066af0 batostr +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf0b8012 hci_le_conn_update +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeec1c2de bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf19294db bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf43d736c bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7a60945 hci_register_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb7cedec bt_sock_link +EXPORT_SYMBOL net/bridge/bridge 0x259a1be8 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0deff0fb ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x61639280 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xae5b22b8 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x1bfd7632 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x35b49017 caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x504da5e8 cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x5807d88d caif_free_client +EXPORT_SYMBOL net/caif/caif 0x61dc55f6 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x63e9812a cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x81558848 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xd0cd3be3 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x56b742f7 can_send +EXPORT_SYMBOL net/can/can 0x9a0a91a2 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xbe0d9cd7 can_rx_register +EXPORT_SYMBOL net/can/can 0xcdbeb2b5 can_ioctl +EXPORT_SYMBOL net/can/can 0xdf4ae8ba can_proto_register +EXPORT_SYMBOL net/can/can 0xf7ae81d5 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x007a6c93 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x00ed865e ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x023507b7 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x085a4a29 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0e3d0216 ceph_calc_object_layout +EXPORT_SYMBOL net/ceph/libceph 0x10940306 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x13a4f7b8 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x197effcb ceph_osdc_release_request +EXPORT_SYMBOL net/ceph/libceph 0x1a5ffaa5 ceph_messenger_create +EXPORT_SYMBOL net/ceph/libceph 0x1dacac3f ceph_messenger_destroy +EXPORT_SYMBOL net/ceph/libceph 0x1e6537a3 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x23977e0d ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x261afbd1 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x2c72fd38 ceph_osdc_init +EXPORT_SYMBOL net/ceph/libceph 0x3158173e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x33f2d647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x34e6bc5a ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x38ff53cc ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3e1f462a ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x40f988a6 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x43c8d341 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x4a7213f9 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x4c933ece ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x50aba825 ceph_osdc_stop +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x564f5b64 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x58859fef ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x5dce51c7 ceph_osdc_unregister_linger_request +EXPORT_SYMBOL net/ceph/libceph 0x5fe4b2fa ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6435c08a ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x666ccd09 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x67351be9 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x6d2d06a1 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x6e395f02 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x6ed41be2 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x74daee66 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x74e232fa ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x77692acb ceph_msg_last_put +EXPORT_SYMBOL net/ceph/libceph 0x7d4e2493 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x814988b0 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x8308b27b ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x83e9084d ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x8a46663b ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8d9adcae ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8f076a55 ceph_calc_raw_layout +EXPORT_SYMBOL net/ceph/libceph 0x92a3b6ef ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x94c5338c ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x9ad397bd ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x9e40d007 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa40bd703 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xa51c35e1 ceph_monc_create_snapid +EXPORT_SYMBOL net/ceph/libceph 0xa7a20c95 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb02e2a27 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb84b4e04 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xba95d3cb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xc2beea0c ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca3858bd ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd01b645a ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd45b93bf ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd54ece7e ceph_osdc_wait_event +EXPORT_SYMBOL net/ceph/libceph 0xdc0e99b0 ceph_copy_page_vector_to_user +EXPORT_SYMBOL net/ceph/libceph 0xe0520e3c ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xf18562c2 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xf5a60b7c ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xfa494309 ceph_msg_dump +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0ccf575c wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1b49f6b9 ieee802154_nl_disassoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1d9eb7e2 ieee802154_nl_scan_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2063633f ieee802154_nl_disassoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3d29b251 ieee802154_nl_beacon_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x41add5c1 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6563a513 ieee802154_nl_start_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x66d85131 ieee802154_nl_assoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7ced46a4 ieee802154_nl_assoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8188a8e4 wpan_phy_alloc +EXPORT_SYMBOL net/ieee802154/ieee802154 0x86c4ad08 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe3981565 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf213c234 wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x41a5d46d arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8785021e arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf80475cb arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x388063c3 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd392c561 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xedb1cc4a ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x01a0058b nf_nat_protocol_register +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x10942b5a nf_nat_used_tuple +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x10faa615 nf_nat_follow_master +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x387f12d6 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x3effd542 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xdc0171a6 nf_nat_protocol_unregister +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xe861612c nf_nat_setup_info +EXPORT_SYMBOL net/ipv4/tunnel4 0x6262e5a6 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xa0528c84 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x14af6a11 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x17d0d5f6 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4bb4256d ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x67e65684 ipv6_find_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8bddf33 ip6t_ext_hdr +EXPORT_SYMBOL net/ipv6/tunnel6 0xe9ea06db xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xf2f25a12 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x30898416 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf256e700 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0eebdb99 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x26549333 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3d5721bf ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x446a39ea ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa57ce4a7 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xac098656 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe5d8fecf ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xeca543b6 ircomm_data_request +EXPORT_SYMBOL net/irda/irda 0x053e8b1b irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x114bd92c irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x132be70e alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x1b14e2be iriap_close +EXPORT_SYMBOL net/irda/irda 0x2036ad06 irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x22caf86e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x2c293954 irlap_close +EXPORT_SYMBOL net/irda/irda 0x2d3765bc hashbin_find +EXPORT_SYMBOL net/irda/irda 0x2ea3cf1c irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x3442a7c7 proc_irda +EXPORT_SYMBOL net/irda/irda 0x38a20e5b irda_debug +EXPORT_SYMBOL net/irda/irda 0x3973c74d irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x3a29eca2 iriap_open +EXPORT_SYMBOL net/irda/irda 0x3ac585ba irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x4479ef51 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x47b7c8f4 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x538d5d22 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x572583cf irias_new_object +EXPORT_SYMBOL net/irda/irda 0x5b84b002 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x5f55c3a2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6f173aea irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x71391c7b irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x7225f201 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x74c6eb16 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x76a86fae irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7aa1ddbc irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x7de04a81 irias_find_object +EXPORT_SYMBOL net/irda/irda 0x80da7829 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x825729c7 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94fcc75a irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x96787b71 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x993ad14b irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0xb5c93e6b irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0xb710786e hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xb78896a1 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xbf285a4c hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0xc27479d4 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xc3a512dd hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xd6a3f8a5 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xd6ee5809 irlap_open +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xedf805a9 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0xef16660b hashbin_new +EXPORT_SYMBOL net/irda/irda 0xf5b8cc14 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xfa3c0df6 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xfbf611b3 irlmp_connect_response +EXPORT_SYMBOL net/l2tp/l2tp_core 0xbf76a5b2 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x0766fcb1 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x0af81821 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x2f555c43 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x3d622913 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x57d461b9 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x6bbc80b5 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xbd55949c lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xf432d5e8 lapb_register +EXPORT_SYMBOL net/llc/llc 0x30c7b58f llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x31ef32a5 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52c41dde llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x62f755c6 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x9656f8a0 llc_sap_list_lock +EXPORT_SYMBOL net/llc/llc 0xb703462d llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xc44e3d7a llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xf6c2fad0 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x01b40bf2 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x055e208d ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x084adaa8 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x17217a33 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1a1f5dde ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x1c9992ab ieee80211_get_operstate +EXPORT_SYMBOL net/mac80211/mac80211 0x1d2a0315 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2d183b8f __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2ec66c42 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x30485a3d ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x30568f1f __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x397cd8ae ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3b79fa3b ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x3b998d97 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x3c4bdf89 ieee80211_enable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x427dace9 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x4fb39646 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5060d247 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x50e404e1 ieee80211_napi_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x5286f200 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5c28cca5 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x5d64ede4 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5eaed908 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x605e1342 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x63caa554 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x6503ef71 ieee80211_sta_eosp_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x694cc281 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6a131db0 ieee80211_disable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x6d5bb361 ieee80211_rx +EXPORT_SYMBOL net/mac80211/mac80211 0x6f1d6e29 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x719b2813 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x75379bef ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x82297f2f ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x840ea900 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8b332e82 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x8cac9226 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8f2e57ee ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x900f246f ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9b4a59b3 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x9c9af13c ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x9d973a2c ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xa4241970 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xaa157485 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xaa2ab377 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xaeea4e31 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb02ccbb2 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xb70383d0 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb74f9967 ieee80211_napi_schedule +EXPORT_SYMBOL net/mac80211/mac80211 0xb7da619a ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xbb618557 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xbe426e36 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xbfbe301d ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xc06602ac ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xc2ebfc98 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc5cf0c36 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xc7e9782e ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xc984d0e6 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xcefa639e ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xd67a5481 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xdcacc105 ieee80211_alloc_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xddb47d52 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe09462b9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe1797f8f ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xe55dea1e ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xe7a0eb02 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xeba14d72 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xf96f92e6 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfb3e00e4 ieee80211_send_bar +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2fe29a9b ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x35ddc1e0 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x390d74c9 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4381c7a0 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x48cc5613 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6472b3e6 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x701ba732 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x772ac150 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8040a7e1 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa1dbc2d8 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa22158bd ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbc6ee42a ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc12e49c4 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcb000935 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe9868a33 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x26d1d840 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x27216619 __nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x59397dc8 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_proto_gre 0x86cea524 nf_ct_gre_keymap_flush +EXPORT_SYMBOL net/netfilter/x_tables 0x08c473b7 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x0a729ce8 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x157f8d2a xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1a242112 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x549ae98a xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x61bb0b4b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x74478217 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xac34dda0 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xb28f5ef1 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xb5cc981d xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xb8e8b4fe xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd704794b xt_register_targets +EXPORT_SYMBOL net/nfc/nci/nci 0x0be5d7a8 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x460f6322 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x78fafc91 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7b1dd304 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8d3dc8a1 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nfc 0x2cf1913e nfc_printk +EXPORT_SYMBOL net/nfc/nfc 0x4360bf8c nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x87302db4 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xad72edfc nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xc0ef1e65 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xd6002fdc nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xec50cdba nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xeed5d8f1 nfc_alloc_skb +EXPORT_SYMBOL net/nfc/nfc 0xfffe153f nfc_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x476e6e0a phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x4e44e060 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x5b4cbf4f phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x8eb02a90 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x8f17dde3 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xb1ce85e4 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xcf0df714 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xf6c981aa phonet_stream_ops +EXPORT_SYMBOL net/rds/rds 0x5031b8c5 rds_str_array +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1ddf1f67 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x34204822 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4a3e6119 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5aa4d42d rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x77530428 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x882a58c9 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x956a924c rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa1f9448f rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaac43fc1 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbcab6496 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbd287aee rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdaafa71c rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdfc305b8 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3caec1a rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3ea8067 key_type_rxrpc +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf525e975 svc_pool_stats_open +EXPORT_SYMBOL net/wanrouter/wanrouter 0x0ebe03d1 unregister_wan_device +EXPORT_SYMBOL net/wanrouter/wanrouter 0x77d51cdd register_wan_device +EXPORT_SYMBOL net/wimax/wimax 0x1c351ffc wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xc0ee6298 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x10411a86 ieee802_11_parse_elems_crc +EXPORT_SYMBOL net/wireless/cfg80211 0x14cd2d49 cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x165622a1 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x16ad3603 cfg80211_inform_bss_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19ecc7ec ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x1a2bb497 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x1be3c0a6 cfg80211_send_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x1eb5a9ea wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x22082eb6 cfg80211_send_unprot_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x2227c496 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x2edf7d69 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x4ae3b806 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x4b53ec91 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x559794ee cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x57141a2d __cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x5ae46dd9 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x5b1f91ed wiphy_new +EXPORT_SYMBOL net/wireless/cfg80211 0x5c22d0ae cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x5f282c83 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x60c0c117 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x69a68256 cfg80211_inform_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d1864d3 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6d9713ee wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x6e391882 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x7513e94e ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x7a699482 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8b36dd90 cfg80211_send_rx_auth +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9fe2f3fb cfg80211_send_unprot_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0xa45a41e3 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xa660f631 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa87643aa __cfg80211_auth_canceled +EXPORT_SYMBOL net/wireless/cfg80211 0xb44f0e1b cfg80211_send_rx_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xb4f5e134 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xb755e96d cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb792d603 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb9354bc8 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xc56bfd55 cfg80211_send_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xd3074e66 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xd4a4a1bb __cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0xd53f6555 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd7136746 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xd7779230 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd96f89f0 cfg80211_del_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xda32ebc1 cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0xdb40f204 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xde67c48c cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xdf41b1a9 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xe2cd0f3a cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xe2d402d7 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xe320e537 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xe8be7ef0 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xecdae6e5 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf109f2f5 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xf375121a cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf393ae4e wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xf8bfcf52 cfg80211_get_mesh +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x0ff9ed14 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2d0f99e5 print_ssid +EXPORT_SYMBOL net/wireless/lib80211 0x4bea2590 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6c935f84 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x7ce2b2be lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xb67b4ac1 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xc2a53e89 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x00d1fe28 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x04c3c5aa snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x22c58b0e snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x593e5f4d snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5a2a83c4 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe946ac9c snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3a57f235 snd_seq_autoload_unlock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x5e1cc4dc snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xb90668b2 snd_seq_autoload_lock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xc622fb29 snd_seq_device_unregister_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xfc58ed06 snd_seq_device_register_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x0df2e317 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x26885c56 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7ab3ab98 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7ddf2a2e snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x85c27c7a snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x85e4ac82 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd4945484 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xfcf964a7 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xc57be0be snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x049ea089 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x0574f5e9 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x08deebf5 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x0fe57f56 snd_register_device_for_dev +EXPORT_SYMBOL sound/core/snd 0x120a3bb2 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1c81a3cb snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x1d43b444 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x2105fa56 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x24bc6542 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x25bb8883 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x297f7eff snd_add_device_sysfs_file +EXPORT_SYMBOL sound/core/snd 0x2aed3b35 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x2ce6aa5c snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x2dd6950a snd_cards +EXPORT_SYMBOL sound/core/snd 0x3709678a snd_device_register +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3b51efb4 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x3fe3c1d1 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b015768 snd_iprintf +EXPORT_SYMBOL sound/core/snd 0x4c73896d _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x5994d688 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x5b4e8278 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x616b63d6 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x637fc482 snd_card_proc_new +EXPORT_SYMBOL sound/core/snd 0x6e384bb5 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x6f0c04d5 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x7567fec9 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x7689a74a snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x770efedf snd_device_new +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8ff23137 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x91280a1c snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x99ab6af7 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x9b9bc20b snd_device_free +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa62e2cf3 snd_card_create +EXPORT_SYMBOL sound/core/snd 0xa6e0e1f2 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xa90da160 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xaa00d3c1 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xc6529faf snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xc8b9d73a snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xc987b220 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd1157735 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xd78073fe snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xd9f09d76 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xdb0ea0b2 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xe287152f snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xe7aa3883 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xec9dbf1f snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xf4b13b28 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xfd98e062 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd-hwdep 0xd5d0d9b2 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-page-alloc 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x4403f436 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-page-alloc 0x48fe5827 snd_dma_reserve_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0xac58963a snd_dma_get_reserved_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0xc3958a19 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0xf7a0fcd7 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x081f3f47 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0821331e snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x0e032f4d snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x0f1d2c08 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x0f5ed36a snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x0f8336ea snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x24e94e70 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x25440b3f snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x256b69db snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x28955e1a snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x2a69180b snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x35097ab0 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3a41adff snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x4ae47166 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x4bb23e66 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x56a37be4 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x620d2141 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6da394b9 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x6f241ffd _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x75af67ce snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x7d6e0d05 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x7d80938c snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x94372879 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x9e2c1f3e snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x9fb85b26 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xa2d54f3f snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xaf4991d1 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xafe505b2 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbb71ca99 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xc5062add snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xc5bb3025 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xccd95da6 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xcdf68031 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b9b8b8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd1415670 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xecf10388 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xf16292a8 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xf3797152 snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xf57c963f snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xf6d7e5d6 snd_pcm_link_rwlock +EXPORT_SYMBOL sound/core/snd-pcm 0xfc59c71c snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xfd26076a snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xfe6ef914 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0ad40cd5 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0bcc9dcf snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x13fe71d0 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2bcc4d64 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f089780 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x38cd97f5 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c2676e6 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x613be3c3 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7ab1412e snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x81203fc5 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9cd2f68b snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb3877701 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbdfa2991 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe8339007 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf11687e1 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf31e2f94 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf57ef1af snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-timer 0x0722ed25 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x1289bcb6 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x43ed0898 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x5a5f381d snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x6c4b0b58 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x6cf81388 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x9ef580d0 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xa3f7e028 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xc2b08a1a snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xc52867a7 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xe3faa8c2 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xfdf365c2 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xfe828265 snd_timer_start +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x81808e1b snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x07d2fe70 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x08cb25f9 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0f9515e8 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e59a118 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e5d861e snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2134e2b2 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2b84c6fc snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x39752e1a snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4ba44d76 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6c825796 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8f0fef38 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9449e40f snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xac55265e snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad4a5b3d snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc62aa04c snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfe9febfe snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xff9293ad snd_ac97_pcm_close +EXPORT_SYMBOL sound/soundcore 0x1ce4f990 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x2296d694 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7bb3c229 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x8fc5a4c2 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xaa735703 sound_class +EXPORT_SYMBOL sound/soundcore 0xb834e2ad register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xc163874f snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00000000 softirq_work_list +EXPORT_SYMBOL vmlinux 0x0001e4c2 vmap +EXPORT_SYMBOL vmlinux 0x00054f21 __block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x00259ce3 md_error +EXPORT_SYMBOL vmlinux 0x0026075a tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x002de09c vfsmount_lock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x00801678 flush_scheduled_work +EXPORT_SYMBOL vmlinux 0x0081030e omap_vram_reserve +EXPORT_SYMBOL vmlinux 0x0084e86d unregister_shrinker +EXPORT_SYMBOL vmlinux 0x008f1e24 amba_release_regions +EXPORT_SYMBOL vmlinux 0x008feda0 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x00a17be3 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x00b845c1 balance_dirty_pages_ratelimited_nr +EXPORT_SYMBOL vmlinux 0x00d57419 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x00e18861 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x00e8097b csum_partial_copy_fromiovecend +EXPORT_SYMBOL vmlinux 0x00eef49e __strnlen_user +EXPORT_SYMBOL vmlinux 0x00f42699 files_lglock_global_unlock +EXPORT_SYMBOL vmlinux 0x00ffb051 generic_writepages +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x01424f59 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x01902adf netpoll_trap +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x02015fc7 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x02054e8b mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x0209effc generic_fillattr +EXPORT_SYMBOL vmlinux 0x020d2987 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x020ec2b9 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x023a50ab proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x023c6330 touch_atime +EXPORT_SYMBOL vmlinux 0x0240b17d phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x0240b9b3 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x024bf88f omap_modify_dma_chain_params +EXPORT_SYMBOL vmlinux 0x024fe8d5 udp_table +EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274e08d install_exec_creds +EXPORT_SYMBOL vmlinux 0x0278796e generic_write_end +EXPORT_SYMBOL vmlinux 0x0296674c mtd_concat_create +EXPORT_SYMBOL vmlinux 0x02a0d156 gpmc_prefetch_reset +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ae3fc6 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x0302c48b idr_destroy +EXPORT_SYMBOL vmlinux 0x0304408d write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x03073b97 omap_writel +EXPORT_SYMBOL vmlinux 0x031ba9bf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x03263abf fb_set_suspend +EXPORT_SYMBOL vmlinux 0x0329226b fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034f9e73 param_ops_byte +EXPORT_SYMBOL vmlinux 0x035117e4 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x0355b2f1 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0367691d remove_arg_zero +EXPORT_SYMBOL vmlinux 0x0377e07f inet_frag_kill +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03c06156 bitmap_fold +EXPORT_SYMBOL vmlinux 0x03c0de24 writeback_inodes_sb_nr_if_idle +EXPORT_SYMBOL vmlinux 0x03ccdbbf blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x03de46ed md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x03e990c1 ethtool_op_get_sg +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04141f80 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x04148464 __break_lease +EXPORT_SYMBOL vmlinux 0x0420d60d scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x046a7046 arp_xmit +EXPORT_SYMBOL vmlinux 0x046a9fe1 mddev_congested +EXPORT_SYMBOL vmlinux 0x0474484b scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x04750e2d user_revoke +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x0499010c mntput +EXPORT_SYMBOL vmlinux 0x04b1e09c input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x04d128bb blk_recount_segments +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f4b8fc simple_transaction_release +EXPORT_SYMBOL vmlinux 0x05029061 mem_map +EXPORT_SYMBOL vmlinux 0x0512f71a xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x0521b2ee set_current_groups +EXPORT_SYMBOL vmlinux 0x054434d6 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x05701972 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x057ce975 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x058db3f5 up_read +EXPORT_SYMBOL vmlinux 0x05baaba0 wait_for_completion +EXPORT_SYMBOL vmlinux 0x05bffa87 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x05e01dbe scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x05f981a6 call_usermodehelper_freeinfo +EXPORT_SYMBOL vmlinux 0x06082a3d tcp_valid_rtt_meas +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061a769f bio_phys_segments +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0642c6d3 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x06469ab2 __kfree_skb +EXPORT_SYMBOL vmlinux 0x0662e9e4 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x06755dd9 inet_shutdown +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06b141ac free_task +EXPORT_SYMBOL vmlinux 0x06c3f55b generic_pipe_buf_map +EXPORT_SYMBOL vmlinux 0x06e466fb blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x06fbd580 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x06fe636f of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x07545c8c load_nls_default +EXPORT_SYMBOL vmlinux 0x075dfff1 get_phy_device +EXPORT_SYMBOL vmlinux 0x0790a4cb jbd2_journal_update_format +EXPORT_SYMBOL vmlinux 0x0799aca4 local_bh_enable +EXPORT_SYMBOL vmlinux 0x07a5f503 omap_readw +EXPORT_SYMBOL vmlinux 0x07a84b1b pm860x_page_set_bits +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c120fb alloc_disk +EXPORT_SYMBOL vmlinux 0x07c88c6b udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cea63a blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x07d9b783 scsi_nl_send_vendor_msg +EXPORT_SYMBOL vmlinux 0x07fdc37c blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0800f1f6 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x082d8067 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x0839e561 nla_put +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x087bb42c bio_integrity_alloc_bioset +EXPORT_SYMBOL vmlinux 0x088a5c07 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x088be06b __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x08a22296 netif_napi_add +EXPORT_SYMBOL vmlinux 0x08a4c534 omap_mcbsp_get_rx_delay +EXPORT_SYMBOL vmlinux 0x08ccfa90 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x08ded414 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x0918ba6b blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x0948cde9 num_physpages +EXPORT_SYMBOL vmlinux 0x09494d8b blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x0957de2f __serio_register_port +EXPORT_SYMBOL vmlinux 0x09775cdc kref_get +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09916270 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x09ab7f37 mount_ns +EXPORT_SYMBOL vmlinux 0x09b0cdfa mntget +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d3ecbf get_super +EXPORT_SYMBOL vmlinux 0x09d56a6a get_write_access +EXPORT_SYMBOL vmlinux 0x09f4dd08 __brelse +EXPORT_SYMBOL vmlinux 0x0a1e7a21 is_container_init +EXPORT_SYMBOL vmlinux 0x0a2487e0 unblock_all_signals +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a8ec7e9 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x0aa13d05 __raw_readsw +EXPORT_SYMBOL vmlinux 0x0aba58c1 journal_set_features +EXPORT_SYMBOL vmlinux 0x0acb1a3c __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad5fb6f down_write_trylock +EXPORT_SYMBOL vmlinux 0x0afca0cc dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b31eed5 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x0b351ada mempool_resize +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b496a3a inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x0b69a29f down_trylock +EXPORT_SYMBOL vmlinux 0x0b7086d9 param_get_short +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b788544 iget_failed +EXPORT_SYMBOL vmlinux 0x0b7f20d4 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x0b90178e blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x0bc3fc07 log_wait_commit +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd362af ps2_end_command +EXPORT_SYMBOL vmlinux 0x0be67928 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x0c1ab1e1 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x0c35f2c6 sleep_on_timeout +EXPORT_SYMBOL vmlinux 0x0c65e73c scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x0c8c2263 blk_free_tags +EXPORT_SYMBOL vmlinux 0x0c8c9e99 scsi_show_extd_sense +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc4e253 netdev_class_remove_file +EXPORT_SYMBOL vmlinux 0x0cd7842a kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x0cdb98ca inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x0cdd158d sg_alloc_table +EXPORT_SYMBOL vmlinux 0x0cff3d65 nand_lock +EXPORT_SYMBOL vmlinux 0x0d04258b elevator_exit +EXPORT_SYMBOL vmlinux 0x0d0a71d4 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x0d16b7e5 omap_dss_get_overlay_manager +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d524a8d thermal_zone_unbind_cooling_device +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5a89e9 lookup_bdev +EXPORT_SYMBOL vmlinux 0x0d642bba free_netdev +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da8ad3d bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x0db3877d ___dma_single_dev_to_cpu +EXPORT_SYMBOL vmlinux 0x0dd2aa90 kobject_init +EXPORT_SYMBOL vmlinux 0x0df46cd8 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x0e07f307 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x0e17e9dd netdev_err +EXPORT_SYMBOL vmlinux 0x0e3ee105 dm_register_target +EXPORT_SYMBOL vmlinux 0x0e4ee760 names_cachep +EXPORT_SYMBOL vmlinux 0x0e52592a panic +EXPORT_SYMBOL vmlinux 0x0e62e9ee seq_bitmap_list +EXPORT_SYMBOL vmlinux 0x0eaf1502 sock_release +EXPORT_SYMBOL vmlinux 0x0ec503c0 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x0ec98808 ida_init +EXPORT_SYMBOL vmlinux 0x0efa0c67 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x0f159ee5 input_inject_event +EXPORT_SYMBOL vmlinux 0x0f2544b2 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0f31425c clk_add_alias +EXPORT_SYMBOL vmlinux 0x0f59f197 param_array_ops +EXPORT_SYMBOL vmlinux 0x0f67b9cb phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x0f74a50d datagram_poll +EXPORT_SYMBOL vmlinux 0x0f964df4 udp_seq_open +EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb080ab textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x0fb0e29f init_timer_key +EXPORT_SYMBOL vmlinux 0x0fc95f2e unlock_rename +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ffa8302 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x1000c7de block_write_begin +EXPORT_SYMBOL vmlinux 0x104af7f5 dump_seek +EXPORT_SYMBOL vmlinux 0x105b0534 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x1074c970 clk_disable +EXPORT_SYMBOL vmlinux 0x1078b12b kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x107d701e uart_get_divisor +EXPORT_SYMBOL vmlinux 0x109a00e9 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x10a12fae kernel_accept +EXPORT_SYMBOL vmlinux 0x10b5da89 register_key_type +EXPORT_SYMBOL vmlinux 0x10b941c4 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x10d9d048 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10ff2de4 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11267875 scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x112748bd omap_vrfb_adjust_size +EXPORT_SYMBOL vmlinux 0x112b333c inet_frags_fini +EXPORT_SYMBOL vmlinux 0x11491bf6 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x1155c8d4 netlink_unicast +EXPORT_SYMBOL vmlinux 0x11633870 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116ccd8c vfs_fstatat +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117cd865 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x118b6333 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x118c58c9 netdev_warn +EXPORT_SYMBOL vmlinux 0x1198190d do_splice_to +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11df585e phy_connect +EXPORT_SYMBOL vmlinux 0x11e2ec12 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x121067a2 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x12530356 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL vmlinux 0x125504dc __nla_put +EXPORT_SYMBOL vmlinux 0x125ee0b5 d_alloc_root +EXPORT_SYMBOL vmlinux 0x126c937c kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x127f1cf8 vfs_lstat +EXPORT_SYMBOL vmlinux 0x128fde83 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e49a76 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x12f99022 inet_frags_init_net +EXPORT_SYMBOL vmlinux 0x12fac018 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x1325cabf serio_close +EXPORT_SYMBOL vmlinux 0x1331d7b1 vmtruncate +EXPORT_SYMBOL vmlinux 0x134524b6 ppp_input +EXPORT_SYMBOL vmlinux 0x136e6d2d dquot_commit_info +EXPORT_SYMBOL vmlinux 0x138c4b29 __getblk +EXPORT_SYMBOL vmlinux 0x1393078a i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13ec80f3 param_set_short +EXPORT_SYMBOL vmlinux 0x14075c93 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x141c4c10 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x143b58ed skb_queue_tail +EXPORT_SYMBOL vmlinux 0x144d8916 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x145b29f9 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x14821b06 __devm_request_region +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x15331242 omap_iounmap +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154d3c43 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x154f6028 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x1551dc51 bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x15834574 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x159581ab key_put +EXPORT_SYMBOL vmlinux 0x15ad7a88 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x15e2c22f bio_free +EXPORT_SYMBOL vmlinux 0x15ec353b register_md_personality +EXPORT_SYMBOL vmlinux 0x15fd4285 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x161ea29e mdio_bus_type +EXPORT_SYMBOL vmlinux 0x161eafe3 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x1627ed72 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1632ffa5 __scm_destroy +EXPORT_SYMBOL vmlinux 0x1664fdd4 scsi_device_get +EXPORT_SYMBOL vmlinux 0x166c600d simple_unlink +EXPORT_SYMBOL vmlinux 0x167b4642 uart_match_port +EXPORT_SYMBOL vmlinux 0x16b6c00f task_ns_capable +EXPORT_SYMBOL vmlinux 0x16bd6046 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x16c42197 init_timer_deferrable_key +EXPORT_SYMBOL vmlinux 0x16c63768 splice_from_pipe_feed +EXPORT_SYMBOL vmlinux 0x16d0ba7a inet_twsk_deschedule +EXPORT_SYMBOL vmlinux 0x16f2a504 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x16f38302 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x170ea9aa netlink_ack +EXPORT_SYMBOL vmlinux 0x1723a2da init_buffer +EXPORT_SYMBOL vmlinux 0x173ca64b of_device_unregister +EXPORT_SYMBOL vmlinux 0x17407a07 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x175236f4 omap_mcbsp_start +EXPORT_SYMBOL vmlinux 0x175a3394 skb_clone +EXPORT_SYMBOL vmlinux 0x175ba748 napi_skb_finish +EXPORT_SYMBOL vmlinux 0x176f1208 bdput +EXPORT_SYMBOL vmlinux 0x1772717c ethtool_op_set_sg +EXPORT_SYMBOL vmlinux 0x1789e741 netif_napi_del +EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user +EXPORT_SYMBOL vmlinux 0x17c69a0d sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x17c73b2b pl330_chan_ctrl +EXPORT_SYMBOL vmlinux 0x17d10d61 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x17df17bc sysctl_tcp_ecn +EXPORT_SYMBOL vmlinux 0x17e719fa jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x17fbcce2 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x1803242c inet_addr_type +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1848845d ethtool_invalid_flags +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184e6c85 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x187515a0 should_remove_suid +EXPORT_SYMBOL vmlinux 0x188a7479 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x18c0ea37 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x191ad4f3 address_space_init_once +EXPORT_SYMBOL vmlinux 0x194040d9 __locks_copy_lock +EXPORT_SYMBOL vmlinux 0x194128c3 omap_mcbsp_get_fifo_size +EXPORT_SYMBOL vmlinux 0x1942c5db input_set_abs_params +EXPORT_SYMBOL vmlinux 0x1951f18d jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x1953336e security_task_getsecid +EXPORT_SYMBOL vmlinux 0x196aff3e dev_base_lock +EXPORT_SYMBOL vmlinux 0x1979799b gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x198f3fda security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19f1cf31 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1a006eaf netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x1a098c95 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x1a25f23c pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x1a47a2ab devm_free_irq +EXPORT_SYMBOL vmlinux 0x1a4a2438 vfs_readdir +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a662a67 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1a7e444d dev_get_by_flags_rcu +EXPORT_SYMBOL vmlinux 0x1ac3ecd2 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x1ace138d bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ad59dac dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x1ad5a2d0 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x1ae11834 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x1af2eec7 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x1afdb714 fb_pan_display +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b114dce xfrm_input +EXPORT_SYMBOL vmlinux 0x1b297ae0 __seq_open_private +EXPORT_SYMBOL vmlinux 0x1b310ac3 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x1b5bec39 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x1b5beeca blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b64affd sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x1b859c46 d_add_ci +EXPORT_SYMBOL vmlinux 0x1b936b23 fb_blank +EXPORT_SYMBOL vmlinux 0x1b9cfe36 __napi_complete +EXPORT_SYMBOL vmlinux 0x1b9e0ff1 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x1ba7cf09 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x1babe60e omap_st_set_chgain +EXPORT_SYMBOL vmlinux 0x1bbc6dc6 __bio_clone +EXPORT_SYMBOL vmlinux 0x1bbf1f9e register_exec_domain +EXPORT_SYMBOL vmlinux 0x1bd538dc generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x1bd72663 kobject_get +EXPORT_SYMBOL vmlinux 0x1bdfc625 bio_init +EXPORT_SYMBOL vmlinux 0x1c1af916 set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x1c2df251 skb_put +EXPORT_SYMBOL vmlinux 0x1c6c64d0 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x1c758a17 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x1caef8eb journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x1cc6719a register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x1cd0f6c0 mempool_alloc +EXPORT_SYMBOL vmlinux 0x1cde1474 tty_name +EXPORT_SYMBOL vmlinux 0x1cfe3c50 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x1d0f92e0 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x1d2e87c6 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x1d3865da param_get_invbool +EXPORT_SYMBOL vmlinux 0x1d43d57c seq_putc +EXPORT_SYMBOL vmlinux 0x1d4e7808 km_query +EXPORT_SYMBOL vmlinux 0x1d5206b8 read_dev_sector +EXPORT_SYMBOL vmlinux 0x1d70640a qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x1db6ec41 sk_dst_check +EXPORT_SYMBOL vmlinux 0x1db7dc40 pgprot_kernel +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd866a1 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x1de0cf87 d_clear_need_lookup +EXPORT_SYMBOL vmlinux 0x1dfae5a0 get_phy_id +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e11ed1a pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x1e160e83 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x1e18a07f tcp_prot +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3c0067 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x1e62ae07 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e96e84f dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb032dd pskb_expand_head +EXPORT_SYMBOL vmlinux 0x1ec07c96 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x1ec4eb34 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x1ece7cfe follow_pfn +EXPORT_SYMBOL vmlinux 0x1ef1f75f posix_acl_valid +EXPORT_SYMBOL vmlinux 0x1f1931ba dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x1f31ec73 scsi_unregister +EXPORT_SYMBOL vmlinux 0x1f425e79 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x1f5bea49 set_anon_super +EXPORT_SYMBOL vmlinux 0x1f704784 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd9c7ab rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x1fdd5bd7 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x1fe77135 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2001053d dquot_quota_on +EXPORT_SYMBOL vmlinux 0x20094b33 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x20161a48 tty_port_close +EXPORT_SYMBOL vmlinux 0x20424706 ___dma_page_dev_to_cpu +EXPORT_SYMBOL vmlinux 0x2047dd5a pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x205ec8de omap_dispc_register_isr +EXPORT_SYMBOL vmlinux 0x2066fdab vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x20671858 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2077e1f6 posix_lock_file +EXPORT_SYMBOL vmlinux 0x207907d6 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x2096a988 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x20986633 consume_skb +EXPORT_SYMBOL vmlinux 0x20a5f748 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ad4aee xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x20b2c2e2 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x20d86032 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x20dc9139 md_integrity_register +EXPORT_SYMBOL vmlinux 0x20e17b40 tty_register_driver +EXPORT_SYMBOL vmlinux 0x20e289ab devm_ioport_map +EXPORT_SYMBOL vmlinux 0x20ee614e vm_map_ram +EXPORT_SYMBOL vmlinux 0x2102713a create_proc_entry +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x215ebd78 bitrev16 +EXPORT_SYMBOL vmlinux 0x21685419 netdev_alert +EXPORT_SYMBOL vmlinux 0x216c4c44 journal_check_available_features +EXPORT_SYMBOL vmlinux 0x217dda13 flex_array_get +EXPORT_SYMBOL vmlinux 0x2196adca netdev_state_change +EXPORT_SYMBOL vmlinux 0x21ad4fb0 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x21bda0fd block_write_full_page_endio +EXPORT_SYMBOL vmlinux 0x21e422cc con_copy_unimap +EXPORT_SYMBOL vmlinux 0x21f678b9 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x220c43d8 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x22152aea dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x221dfde0 idr_pre_get +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ed0c2 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x223cc898 omap_vrfb_max_height +EXPORT_SYMBOL vmlinux 0x224ce473 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x225e909e schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x22687912 md_done_sync +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278822a sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x2288378f system_state +EXPORT_SYMBOL vmlinux 0x22966fdf __inet6_hash +EXPORT_SYMBOL vmlinux 0x229da012 omapfb_update_window +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22cdd887 omap_dss_unregister_driver +EXPORT_SYMBOL vmlinux 0x22faf035 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231f9382 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x234961ca ip_check_defrag +EXPORT_SYMBOL vmlinux 0x2352f9f0 napi_complete +EXPORT_SYMBOL vmlinux 0x23532c4d ftrace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x238f0186 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x238ffcae filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x239cbc90 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23bb3ed7 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23e479bb generic_listxattr +EXPORT_SYMBOL vmlinux 0x23f7e3ef qdisc_tree_decrease_qlen +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246f375d nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24a8c6d3 flock_lock_file_wait +EXPORT_SYMBOL vmlinux 0x24adea99 mmc_regulator_set_ocr +EXPORT_SYMBOL vmlinux 0x24b5e1bc blk_start_request +EXPORT_SYMBOL vmlinux 0x24c27508 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x24c3bdfa led_brightness_set +EXPORT_SYMBOL vmlinux 0x24d1a922 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x24e47361 vm_insert_page +EXPORT_SYMBOL vmlinux 0x24ea9a2c inet_accept +EXPORT_SYMBOL vmlinux 0x24ebc45c ether_setup +EXPORT_SYMBOL vmlinux 0x24ee8884 security_inode_permission +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2510c07a brioctl_set +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252d7640 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x2534e723 inet_ioctl +EXPORT_SYMBOL vmlinux 0x25393104 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x253ba6bc xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x253fa495 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x256b0e9f input_get_keycode +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258355b4 fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x2593b95a blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x2594843d do_sync_read +EXPORT_SYMBOL vmlinux 0x2596183b ppp_input_error +EXPORT_SYMBOL vmlinux 0x25a2c548 clk_get_parent +EXPORT_SYMBOL vmlinux 0x25c677c4 mac_pton +EXPORT_SYMBOL vmlinux 0x25ce2100 neigh_compat_output +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x265c21d3 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x267dcf29 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x26911e4d gen_new_estimator +EXPORT_SYMBOL vmlinux 0x26af5875 netlink_set_err +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26cc854e blkdev_get +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x2700b38a mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x272cfb1a nand_bch_init +EXPORT_SYMBOL vmlinux 0x2731598c kdb_current_task +EXPORT_SYMBOL vmlinux 0x2733a065 skb_recycle_check +EXPORT_SYMBOL vmlinux 0x2738e9a9 mem_cgroup_update_page_stat +EXPORT_SYMBOL vmlinux 0x2749cac4 misc_register +EXPORT_SYMBOL vmlinux 0x275f2520 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278afe8a default_llseek +EXPORT_SYMBOL vmlinux 0x279644c0 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c90fd7 mount_nodev +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e59444 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28255c52 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x2830fee2 idr_get_next +EXPORT_SYMBOL vmlinux 0x2837e98f devm_ioremap +EXPORT_SYMBOL vmlinux 0x28448d4c end_page_writeback +EXPORT_SYMBOL vmlinux 0x2849057d inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x2864a688 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x288dba6b serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x2897fc48 omap_cfg_reg +EXPORT_SYMBOL vmlinux 0x289eb3c0 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28b21c0d tcp_child_process +EXPORT_SYMBOL vmlinux 0x28b8b764 take_over_console +EXPORT_SYMBOL vmlinux 0x28c86f60 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x28c9b96c twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x28d15abe md_unregister_thread +EXPORT_SYMBOL vmlinux 0x28d6861d __vmalloc +EXPORT_SYMBOL vmlinux 0x28d6b381 directly_mappable_cdev_bdi +EXPORT_SYMBOL vmlinux 0x28f969d9 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x2914eb9b xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x29422416 mii_link_ok +EXPORT_SYMBOL vmlinux 0x2943b292 blk_insert_request +EXPORT_SYMBOL vmlinux 0x29440350 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29716ced ethtool_op_get_ufo +EXPORT_SYMBOL vmlinux 0x29b96a8a inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x29ef186e netdev_bonding_change +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a0b130e lease_modify +EXPORT_SYMBOL vmlinux 0x2a287699 mmc_do_release_host +EXPORT_SYMBOL vmlinux 0x2a33f071 create_mnt_ns +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a472e5d follow_down_one +EXPORT_SYMBOL vmlinux 0x2a4b1386 read_cache_page_async +EXPORT_SYMBOL vmlinux 0x2a6e9db6 irq_set_chip +EXPORT_SYMBOL vmlinux 0x2a79ac13 clkdev_add +EXPORT_SYMBOL vmlinux 0x2a7d7e74 prepare_binprm +EXPORT_SYMBOL vmlinux 0x2a7f263c netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x2a931e2d d_splice_alias +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2ac6193b __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x2ad31074 fb_find_mode +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b19ea6d vfs_mkdir +EXPORT_SYMBOL vmlinux 0x2b226372 uart_resume_port +EXPORT_SYMBOL vmlinux 0x2b27042c twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b67686d pipe_to_file +EXPORT_SYMBOL vmlinux 0x2b688622 complete_and_exit +EXPORT_SYMBOL vmlinux 0x2b90cdaa mempool_create +EXPORT_SYMBOL vmlinux 0x2b939f11 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x2b956c84 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba776fb dquot_enable +EXPORT_SYMBOL vmlinux 0x2bab65b4 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x2bc12001 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x2bdd6e28 node_states +EXPORT_SYMBOL vmlinux 0x2bfedcc3 register_nls +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c19a9d7 wake_up_process +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c34cf48 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x2c5e4887 phy_scan_fixups +EXPORT_SYMBOL vmlinux 0x2c7c754c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x2c84361e register_framebuffer +EXPORT_SYMBOL vmlinux 0x2c85925c netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x2c905eb7 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x2cd4dc0d dquot_resume +EXPORT_SYMBOL vmlinux 0x2cf5ea3b dma_async_memcpy_buf_to_buf +EXPORT_SYMBOL vmlinux 0x2d0ca137 scsi_init_io +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d34a1b4 dq_data_lock +EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x2d7f44cc pl330_chan_status +EXPORT_SYMBOL vmlinux 0x2d89342a scsi_show_sense_hdr +EXPORT_SYMBOL vmlinux 0x2d9756d3 bioset_create +EXPORT_SYMBOL vmlinux 0x2dad7332 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x2db02804 ihold +EXPORT_SYMBOL vmlinux 0x2dd25f52 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x2df16dbd of_get_property +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2599aa blk_init_tags +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x2e59fc7a ab8500_gpadc_get +EXPORT_SYMBOL vmlinux 0x2e5ba275 tty_write_room +EXPORT_SYMBOL vmlinux 0x2e83d5ac generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x2e90c53e dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x2e91bf8c generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x2ea663d5 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2ea891e8 igrab +EXPORT_SYMBOL vmlinux 0x2eb9bb21 proc_dostring +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ecfa2ca dev_notice +EXPORT_SYMBOL vmlinux 0x2ee88ac5 netdev_crit +EXPORT_SYMBOL vmlinux 0x2eeceb42 sk_chk_filter +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f4a9f74 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x2f724d4e dev_activate +EXPORT_SYMBOL vmlinux 0x2fa33906 d_rehash +EXPORT_SYMBOL vmlinux 0x2fb4e323 dma_alloc_writecombine +EXPORT_SYMBOL vmlinux 0x2fc5f230 otg_set_transceiver +EXPORT_SYMBOL vmlinux 0x2fd85baf ___ratelimit +EXPORT_SYMBOL vmlinux 0x2ff69cc5 of_get_next_child +EXPORT_SYMBOL vmlinux 0x3006e61a inode_sb_list_lock +EXPORT_SYMBOL vmlinux 0x303034c5 htc_egpio_get_wakeup_irq +EXPORT_SYMBOL vmlinux 0x303b61c5 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x30605eb6 send_sig +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3089c5af genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x308aad56 omap_vrfb_min_phys_size +EXPORT_SYMBOL vmlinux 0x3092d85e omap2_mcbsp1_mux_fsr_src +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b3a90e of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x30cada8f radix_tree_next_hole +EXPORT_SYMBOL vmlinux 0x30dc6e1c sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30ef2764 __scsi_put_command +EXPORT_SYMBOL vmlinux 0x30fdef95 dentry_unhash +EXPORT_SYMBOL vmlinux 0x310206ab netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x3105f60d km_new_mapping +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x312e4056 da903x_query_status +EXPORT_SYMBOL vmlinux 0x31322739 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x3133a14b scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x314647de simple_readpage +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x316dd1cd __wait_on_bit +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31a28a1d led_blink_set +EXPORT_SYMBOL vmlinux 0x31a341e1 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31d66001 skb_recycle +EXPORT_SYMBOL vmlinux 0x32201435 simple_statfs +EXPORT_SYMBOL vmlinux 0x3240c65b files_lglock_global_lock_online +EXPORT_SYMBOL vmlinux 0x32512ece __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x32717b10 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32976034 udp_poll +EXPORT_SYMBOL vmlinux 0x32a5a3a6 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0x32a8f152 bio_map_kern +EXPORT_SYMBOL vmlinux 0x32d5eb64 dpi_check_timings +EXPORT_SYMBOL vmlinux 0x33091d9e of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x33294be5 backlight_device_register +EXPORT_SYMBOL vmlinux 0x332a6ae8 module_refcount +EXPORT_SYMBOL vmlinux 0x334d087f udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x335abbb4 nf_reinject +EXPORT_SYMBOL vmlinux 0x336923a5 request_key_async +EXPORT_SYMBOL vmlinux 0x3372d375 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x337e116e ab3100_event_register +EXPORT_SYMBOL vmlinux 0x33867a6e phy_connect_direct +EXPORT_SYMBOL vmlinux 0x3397c3f9 inode_init_owner +EXPORT_SYMBOL vmlinux 0x33a4ce4f mmc_host_disable +EXPORT_SYMBOL vmlinux 0x33adb0e6 dm_get_mapinfo +EXPORT_SYMBOL vmlinux 0x33c8edfb blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33ff1ba9 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x342e51a9 lro_flush_all +EXPORT_SYMBOL vmlinux 0x344e0fe5 seq_write +EXPORT_SYMBOL vmlinux 0x3455daba generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x3467040f simple_transaction_set +EXPORT_SYMBOL vmlinux 0x346aecb7 locks_free_lock +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347b0677 kthread_stop +EXPORT_SYMBOL vmlinux 0x347ca1e6 console_stop +EXPORT_SYMBOL vmlinux 0x34908c14 print_hex_dump_bytes +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34c8efbe of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x35064329 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x3511b38a max8925_reg_read +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x3548c277 file_remove_suid +EXPORT_SYMBOL vmlinux 0x357c90d2 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0x35a153c9 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x35a16e51 pl330_release_channel +EXPORT_SYMBOL vmlinux 0x35a42857 d_invalidate +EXPORT_SYMBOL vmlinux 0x35baf007 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x35c2ba9e refrigerator +EXPORT_SYMBOL vmlinux 0x35ca8cfa dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x35da67f4 omap_writew +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x361bce60 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x364b3fff up +EXPORT_SYMBOL vmlinux 0x365ccc07 ps2_drain +EXPORT_SYMBOL vmlinux 0x3698c09a blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x36b1f701 ethtool_op_set_tx_hw_csum +EXPORT_SYMBOL vmlinux 0x36c6694c nand_scan_tail +EXPORT_SYMBOL vmlinux 0x36e0e22c inet_add_protocol +EXPORT_SYMBOL vmlinux 0x36e360e3 __hw_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x371f6176 inet_release +EXPORT_SYMBOL vmlinux 0x37278da1 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x37439989 mii_check_link +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x376362d0 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x3773501b dquot_release +EXPORT_SYMBOL vmlinux 0x377a1885 omap_mcbsp_get_tx_delay +EXPORT_SYMBOL vmlinux 0x379f53a6 journal_dirty_data +EXPORT_SYMBOL vmlinux 0x379f5837 param_set_invbool +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c07b4c vfs_statfs +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37ea921e vfsmount_lock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x37f4626c init_task +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x380ddf83 tcf_em_register +EXPORT_SYMBOL vmlinux 0x3810cade ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x38184c68 omapdss_sdi_display_enable +EXPORT_SYMBOL vmlinux 0x382a8d5a request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x3831bd20 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x386d294d __vlan_find_dev_deep +EXPORT_SYMBOL vmlinux 0x387401a8 km_policy_expired +EXPORT_SYMBOL vmlinux 0x388f9128 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x3897222b pskb_copy +EXPORT_SYMBOL vmlinux 0x38b3bd64 bd_set_size +EXPORT_SYMBOL vmlinux 0x38bbd9db sync_blockdev +EXPORT_SYMBOL vmlinux 0x38c7f03c tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x38e2211f genphy_read_status +EXPORT_SYMBOL vmlinux 0x38f64f9e sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x38fab970 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x39001537 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x390b04d8 phy_device_free +EXPORT_SYMBOL vmlinux 0x3915d49e posix_test_lock +EXPORT_SYMBOL vmlinux 0x391bdd48 write_inode_now +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x394f19e0 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3980aac1 unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x399c87e4 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x39b00734 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x39c77bce jbd2_journal_release_buffer +EXPORT_SYMBOL vmlinux 0x39ccaa31 tcp_v4_md5_do_add +EXPORT_SYMBOL vmlinux 0x3a0a3a5b cpu_user +EXPORT_SYMBOL vmlinux 0x3a0c8911 scsi_prep_fn +EXPORT_SYMBOL vmlinux 0x3a0d7a1c kobject_set_name +EXPORT_SYMBOL vmlinux 0x3a2204c6 security_netlink_recv +EXPORT_SYMBOL vmlinux 0x3a22b910 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x3a60a589 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3a8788df __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x3a911f27 pl330_request_channel +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa2eb19 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x3abe3e3e dev_uc_flush +EXPORT_SYMBOL vmlinux 0x3ad27463 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x3afd8d8a kern_path_create +EXPORT_SYMBOL vmlinux 0x3b0160f0 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x3b048e5a abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x3b3016d3 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3b3e35e5 netdev_set_bond_master +EXPORT_SYMBOL vmlinux 0x3b5cafa3 make_EII_client +EXPORT_SYMBOL vmlinux 0x3b6e2703 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x3bafd6be jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc325cc shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x3bd1b1f6 msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x3c1ef7c7 down_read_trylock +EXPORT_SYMBOL vmlinux 0x3c35a167 generic_file_aio_read +EXPORT_SYMBOL vmlinux 0x3c390a2b netif_carrier_off +EXPORT_SYMBOL vmlinux 0x3c6747cc netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x3c6d9f3b dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c953503 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x3c9d1211 string_get_size +EXPORT_SYMBOL vmlinux 0x3c9d5e8d omap_mcbsp_dma_ch_params +EXPORT_SYMBOL vmlinux 0x3ca3e999 kick_iocb +EXPORT_SYMBOL vmlinux 0x3ca5894f i2c_master_send +EXPORT_SYMBOL vmlinux 0x3cc578b6 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf63f19 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x3cf92bbc dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x3d17d905 phy_attach +EXPORT_SYMBOL vmlinux 0x3d31c155 dquot_acquire +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d5788b3 bio_alloc +EXPORT_SYMBOL vmlinux 0x3d79391c ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x3d91d077 notify_change +EXPORT_SYMBOL vmlinux 0x3d93ee61 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x3dc8a8e3 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x3dca8c76 bio_add_page +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd015eb block_read_full_page +EXPORT_SYMBOL vmlinux 0x3dd106a8 __netdev_printk +EXPORT_SYMBOL vmlinux 0x3dd66828 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x3ddf2d9b kmem_cache_free +EXPORT_SYMBOL vmlinux 0x3defa995 fb_class +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0e9023 param_set_long +EXPORT_SYMBOL vmlinux 0x3e1f8fad km_policy_notify +EXPORT_SYMBOL vmlinux 0x3e2648a2 omap_device_get_by_hwmod_name +EXPORT_SYMBOL vmlinux 0x3e2dcc20 kernel_connect +EXPORT_SYMBOL vmlinux 0x3e3eb3cb i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x3e44e8c7 scsi_reset_provider +EXPORT_SYMBOL vmlinux 0x3e45e9ff register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x3e884f4b vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3e8e81e3 current_fs_time +EXPORT_SYMBOL vmlinux 0x3e8eeaff single_open +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e968420 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x3ec8886f param_ops_int +EXPORT_SYMBOL vmlinux 0x3ed63055 zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x3f0ece72 vfs_link +EXPORT_SYMBOL vmlinux 0x3f137fec inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x3f375a6b request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f67000e mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x3f6b97c9 tty_set_operations +EXPORT_SYMBOL vmlinux 0x3f848e54 netdev_notice +EXPORT_SYMBOL vmlinux 0x3f916323 pl330_update +EXPORT_SYMBOL vmlinux 0x3fcb4294 serio_interrupt +EXPORT_SYMBOL vmlinux 0x3fd768ca tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x3fdef987 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x3ff62317 local_bh_disable +EXPORT_SYMBOL vmlinux 0x4023e88f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x4029d238 param_set_copystring +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x403bbe2d rtnl_notify +EXPORT_SYMBOL vmlinux 0x404495a3 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4049a020 dma_unmap_sg +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x40762056 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409ecc50 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a6f522 __arm_ioremap +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40aecf2c jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x40b645a9 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40e4f549 km_state_expired +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40f6ee6f journal_get_write_access +EXPORT_SYMBOL vmlinux 0x4108e69a fb_match_mode +EXPORT_SYMBOL vmlinux 0x4128c13c security_path_link +EXPORT_SYMBOL vmlinux 0x412e2b2d kill_pid +EXPORT_SYMBOL vmlinux 0x41352dfe blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x415e2703 d_genocide +EXPORT_SYMBOL vmlinux 0x4183fe70 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x41854abe ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41b21be9 dcache_readdir +EXPORT_SYMBOL vmlinux 0x41b3a2da journal_clear_err +EXPORT_SYMBOL vmlinux 0x41bfc910 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x41cb58d6 put_disk +EXPORT_SYMBOL vmlinux 0x41ede441 ip_mc_rejoin_groups +EXPORT_SYMBOL vmlinux 0x41f2d779 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x42051653 mmc_free_host +EXPORT_SYMBOL vmlinux 0x4211c3c1 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x42224298 sscanf +EXPORT_SYMBOL vmlinux 0x4230a91d dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x423e829e __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x425456c9 cpu_cache +EXPORT_SYMBOL vmlinux 0x4265903f ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x428e7fcb dquot_scan_active +EXPORT_SYMBOL vmlinux 0x42977ad4 __hw_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x42aa785d sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x42b61416 elv_register_queue +EXPORT_SYMBOL vmlinux 0x42b7e2ee dev_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x42beac74 file_open_root +EXPORT_SYMBOL vmlinux 0x42d54694 would_dump +EXPORT_SYMBOL vmlinux 0x42e4cada tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x42ec3144 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x42f8c514 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4319f528 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x431e632a block_commit_write +EXPORT_SYMBOL vmlinux 0x432cce61 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x4347b971 idr_init +EXPORT_SYMBOL vmlinux 0x43a0458b blk_start_plug +EXPORT_SYMBOL vmlinux 0x43a1602d i2c_master_recv +EXPORT_SYMBOL vmlinux 0x43aab608 nf_afinfo +EXPORT_SYMBOL vmlinux 0x43b45a39 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x43e4b9f7 blk_get_request +EXPORT_SYMBOL vmlinux 0x43e6723f of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x43e687b6 blk_integrity_is_initialized +EXPORT_SYMBOL vmlinux 0x43eb1942 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43fd31cb vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x441ed159 omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443f9e9e blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x44402b6f param_get_ulong +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x444a68cd kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4459bb36 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x44697713 proto_unregister +EXPORT_SYMBOL vmlinux 0x44acecec tc_classify +EXPORT_SYMBOL vmlinux 0x44b911c3 rb_replace_node +EXPORT_SYMBOL vmlinux 0x44c20050 request_firmware +EXPORT_SYMBOL vmlinux 0x44c7790c d_lookup +EXPORT_SYMBOL vmlinux 0x44c92dc0 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x44c9ca7d phy_register_fixup +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x450efe85 sk_common_release +EXPORT_SYMBOL vmlinux 0x451dbf5d prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x452a009d mmc_add_host +EXPORT_SYMBOL vmlinux 0x4564fe50 dquot_disable +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4581a3e9 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a64dd3 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x45a8fbaa down_timeout +EXPORT_SYMBOL vmlinux 0x45b10bdf dma_async_memcpy_pg_to_pg +EXPORT_SYMBOL vmlinux 0x45bd9efd dm_table_put +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45c4ab32 security_path_chown +EXPORT_SYMBOL vmlinux 0x45ca648a set_bh_page +EXPORT_SYMBOL vmlinux 0x45d216b9 tcp_put_md5sig_pool +EXPORT_SYMBOL vmlinux 0x45f78335 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x46041d3b of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x460dd565 bdget_disk +EXPORT_SYMBOL vmlinux 0x460ea1c5 udplite_table +EXPORT_SYMBOL vmlinux 0x46214106 files_lglock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x46219344 pipe_lock +EXPORT_SYMBOL vmlinux 0x4628dc33 omap_vram_alloc +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x463602b6 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x46446595 genl_register_mc_group +EXPORT_SYMBOL vmlinux 0x465b2cba sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x465d6fa2 read_cache_page +EXPORT_SYMBOL vmlinux 0x467fac72 d_find_alias +EXPORT_SYMBOL vmlinux 0x4682f45f blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x46900e8a skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x46bee24b __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x46c4b962 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x46ca9a19 do_splice_direct +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46d5a913 uart_register_driver +EXPORT_SYMBOL vmlinux 0x46e226d7 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x46f33065 dst_discard +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470b18c3 scsi_nonblockable_ioctl +EXPORT_SYMBOL vmlinux 0x471cb5ea dst_alloc +EXPORT_SYMBOL vmlinux 0x475100c2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47a2387b __pagevec_release +EXPORT_SYMBOL vmlinux 0x47b3f862 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x47b6a10f ftrace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x47ee83ff seq_release +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x48045a11 dm_put_device +EXPORT_SYMBOL vmlinux 0x4816d258 sock_register +EXPORT_SYMBOL vmlinux 0x48284556 contig_page_data +EXPORT_SYMBOL vmlinux 0x483ec199 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x484b080b mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x4852a0f7 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48650d50 set_device_ro +EXPORT_SYMBOL vmlinux 0x4870874e kstat +EXPORT_SYMBOL vmlinux 0x487ac528 serio_reconnect +EXPORT_SYMBOL vmlinux 0x48a4083b cap_file_mmap +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a6cda8 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x48c49d34 proc_mkdir +EXPORT_SYMBOL vmlinux 0x48cf17af key_payload_reserve +EXPORT_SYMBOL vmlinux 0x48cf79e5 netif_skb_features +EXPORT_SYMBOL vmlinux 0x48e9d397 ps2_init +EXPORT_SYMBOL vmlinux 0x491beb48 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x491e09cb bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x49239e48 vc_cons +EXPORT_SYMBOL vmlinux 0x493408af sock_create +EXPORT_SYMBOL vmlinux 0x494d666c path_put +EXPORT_SYMBOL vmlinux 0x49508d0a proc_net_netfilter +EXPORT_SYMBOL vmlinux 0x4953ccbe dev_mc_add +EXPORT_SYMBOL vmlinux 0x495eded2 blk_start_queue +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x497a4992 have_submounts +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49c05c3d module_put +EXPORT_SYMBOL vmlinux 0x49c8aee7 of_phy_connect_fixed_link +EXPORT_SYMBOL vmlinux 0x49cd4cf9 i2c_smbus_process_call +EXPORT_SYMBOL vmlinux 0x49e71c5d ip6_xmit +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f8750d dcache_dir_close +EXPORT_SYMBOL vmlinux 0x4a028788 console_start +EXPORT_SYMBOL vmlinux 0x4a17ab57 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x4a2d1931 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x4a358252 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x4a37af33 ___dma_single_cpu_to_dev +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a5f001f lookup_hash +EXPORT_SYMBOL vmlinux 0x4a6179ea netif_notify_peers +EXPORT_SYMBOL vmlinux 0x4a6bccbf generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x4a895aae scsi_prep_return +EXPORT_SYMBOL vmlinux 0x4aa09d20 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x4aaab2b1 groups_alloc +EXPORT_SYMBOL vmlinux 0x4aaf99b4 arp_find +EXPORT_SYMBOL vmlinux 0x4ab44a27 ll_rw_block +EXPORT_SYMBOL vmlinux 0x4ab952b3 __get_page_tail +EXPORT_SYMBOL vmlinux 0x4abdb61c seq_printf +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b0f18bc kfree_skb +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b20cbd2 ida_remove +EXPORT_SYMBOL vmlinux 0x4b34fbf5 block_all_signals +EXPORT_SYMBOL vmlinux 0x4b46c610 netdev_features_change +EXPORT_SYMBOL vmlinux 0x4b4d5854 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b60ed03 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x4bc96635 ifla_policy +EXPORT_SYMBOL vmlinux 0x4bcda527 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x4c1182cb bitmap_scnprintf +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c317dc0 register_console +EXPORT_SYMBOL vmlinux 0x4c33f10a omap_dss_get_overlay +EXPORT_SYMBOL vmlinux 0x4c367a6c km_report +EXPORT_SYMBOL vmlinux 0x4c36a4ad remap_pfn_range +EXPORT_SYMBOL vmlinux 0x4c716c1d check_disk_change +EXPORT_SYMBOL vmlinux 0x4cbbd171 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x4ce75007 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x4d025d04 vfs_stat +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d10f97e jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x4d333b67 ip_defrag +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d538a62 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x4d75cb19 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4d8538a5 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4da78837 bh_submit_read +EXPORT_SYMBOL vmlinux 0x4dbe8960 dqget +EXPORT_SYMBOL vmlinux 0x4dbf0961 blk_complete_request +EXPORT_SYMBOL vmlinux 0x4dc31126 grab_cache_page_nowait +EXPORT_SYMBOL vmlinux 0x4dc45be9 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df7eba7 input_register_handler +EXPORT_SYMBOL vmlinux 0x4e055e36 mmc_release_host +EXPORT_SYMBOL vmlinux 0x4e069249 security_tun_dev_post_create +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3808f4 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x4e4ce12f kill_pgrp +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e748dcd down_read +EXPORT_SYMBOL vmlinux 0x4e79ccfb clk_round_rate +EXPORT_SYMBOL vmlinux 0x4e7dc8be scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x4e830a3e strnicmp +EXPORT_SYMBOL vmlinux 0x4e9245f8 iget_locked +EXPORT_SYMBOL vmlinux 0x4e98439b blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x4ea008ff vfs_readlink +EXPORT_SYMBOL vmlinux 0x4edb343a mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x4f049842 unlock_page +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2089e1 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f4a62c1 lookup_one_len +EXPORT_SYMBOL vmlinux 0x4f5caf07 setup_new_exec +EXPORT_SYMBOL vmlinux 0x4f6618ca follow_up +EXPORT_SYMBOL vmlinux 0x4f6aeda7 invalidate_partition +EXPORT_SYMBOL vmlinux 0x4f7bae0c scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x4f7d0677 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x4f898d65 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f9364b7 i2c_transfer +EXPORT_SYMBOL vmlinux 0x4f9e5056 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x4fa5954d scsi_adjust_queue_depth +EXPORT_SYMBOL vmlinux 0x4fab7b49 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x4fba3c9d submit_bh +EXPORT_SYMBOL vmlinux 0x4fd17eaa genphy_resume +EXPORT_SYMBOL vmlinux 0x4ff1c9bc populate_rootfs_wait +EXPORT_SYMBOL vmlinux 0x4ffdc3b8 secpath_dup +EXPORT_SYMBOL vmlinux 0x5014c7f5 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x50211ee3 tcp_free_md5sig_pool +EXPORT_SYMBOL vmlinux 0x50359fc0 destroy_EII_client +EXPORT_SYMBOL vmlinux 0x5037a7e3 mmc_try_claim_host +EXPORT_SYMBOL vmlinux 0x50390190 journal_release_buffer +EXPORT_SYMBOL vmlinux 0x506746b6 getrawmonotonic +EXPORT_SYMBOL vmlinux 0x506d97f5 omap_readl +EXPORT_SYMBOL vmlinux 0x506ed1b4 filp_close +EXPORT_SYMBOL vmlinux 0x50aa4d74 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x50ab4c6d files_lglock_global_lock +EXPORT_SYMBOL vmlinux 0x50c71330 idr_get_new +EXPORT_SYMBOL vmlinux 0x50ccff03 omap_dma_set_prio_lch +EXPORT_SYMBOL vmlinux 0x50e0eb52 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x510ab276 thermal_zone_bind_cooling_device +EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu +EXPORT_SYMBOL vmlinux 0x511828db tty_check_change +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51190daa scsi_setup_fs_cmnd +EXPORT_SYMBOL vmlinux 0x514d18d9 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x515ce579 elv_add_request +EXPORT_SYMBOL vmlinux 0x5169161d omap_free_dma_chain +EXPORT_SYMBOL vmlinux 0x5179dd50 kset_unregister +EXPORT_SYMBOL vmlinux 0x51908eb8 __raw_writesl +EXPORT_SYMBOL vmlinux 0x519cfb95 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x51abe1f1 netif_device_attach +EXPORT_SYMBOL vmlinux 0x51af0093 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x51ce5ad3 files_lglock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x51da7da4 bdevname +EXPORT_SYMBOL vmlinux 0x51dce73b xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f91f86 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x522c4f25 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x523d06ed tty_port_open +EXPORT_SYMBOL vmlinux 0x52760ca9 getnstimeofday +EXPORT_SYMBOL vmlinux 0x528545af mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52a3e3da elv_rb_del +EXPORT_SYMBOL vmlinux 0x52acb8ae find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x52c65831 skb_dequeue +EXPORT_SYMBOL vmlinux 0x52dacdc3 bio_sector_offset +EXPORT_SYMBOL vmlinux 0x52ebf701 cap_netlink_recv +EXPORT_SYMBOL vmlinux 0x52efd766 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x5331eabb ida_simple_get +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53399833 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x5358d95d security_path_rename +EXPORT_SYMBOL vmlinux 0x537234b8 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x538383c0 unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x53921e73 mem_cgroup_count_vm_event +EXPORT_SYMBOL vmlinux 0x5397f2d3 posix_acl_init +EXPORT_SYMBOL vmlinux 0x539fc6cc tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x53a3eb6c security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x53ae0f38 omap_st_enable +EXPORT_SYMBOL vmlinux 0x53b1657b md_check_recovery +EXPORT_SYMBOL vmlinux 0x53b209c5 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x53ba4e7c up_write +EXPORT_SYMBOL vmlinux 0x53e44239 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x53ead02e do_splice_from +EXPORT_SYMBOL vmlinux 0x542bab02 __nla_reserve +EXPORT_SYMBOL vmlinux 0x542c2a07 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544007fd __cleancache_flush_fs +EXPORT_SYMBOL vmlinux 0x5461a80e udp_sendmsg +EXPORT_SYMBOL vmlinux 0x54787d2b dquot_initialize +EXPORT_SYMBOL vmlinux 0x54800352 write_one_page +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b04430 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e76a99 ata_port_printk +EXPORT_SYMBOL vmlinux 0x552925f2 tcp_v4_get_peer +EXPORT_SYMBOL vmlinux 0x5538a53b sock_kfree_s +EXPORT_SYMBOL vmlinux 0x5544eeaf __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x55475501 skb_gso_segment +EXPORT_SYMBOL vmlinux 0x555c35c1 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x55777d22 of_node_get +EXPORT_SYMBOL vmlinux 0x5594be03 bitmap_remap +EXPORT_SYMBOL vmlinux 0x55ad8a12 unregister_nls +EXPORT_SYMBOL vmlinux 0x55bb2f98 thermal_zone_device_unregister +EXPORT_SYMBOL vmlinux 0x55caf04e netdev_update_features +EXPORT_SYMBOL vmlinux 0x55d4138c blk_rq_init +EXPORT_SYMBOL vmlinux 0x55d9ea31 dcb_getapp +EXPORT_SYMBOL vmlinux 0x55eca41c blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x55f97c7d ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x5600904f fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x56079fe4 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x560afe44 prepare_creds +EXPORT_SYMBOL vmlinux 0x560d1158 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x5614b010 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x562151d3 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x562610ee i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x562ad513 interruptible_sleep_on +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5642793a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x5669ec47 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x56789ac5 omap_set_dma_color_mode +EXPORT_SYMBOL vmlinux 0x569484a9 path_get +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d056eb scsi_remove_device +EXPORT_SYMBOL vmlinux 0x56da5205 sk_stream_error +EXPORT_SYMBOL vmlinux 0x56da7742 journal_check_used_features +EXPORT_SYMBOL vmlinux 0x57253d13 keyring_clear +EXPORT_SYMBOL vmlinux 0x5725b749 __register_binfmt +EXPORT_SYMBOL vmlinux 0x57284bc6 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5730a8b2 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x573e6569 journal_create +EXPORT_SYMBOL vmlinux 0x5745e809 journal_abort +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5790f11b iterate_mounts +EXPORT_SYMBOL vmlinux 0x57b57ebe jiffies_to_timespec +EXPORT_SYMBOL vmlinux 0x57d1796f journal_get_create_access +EXPORT_SYMBOL vmlinux 0x57da876b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x57db7242 mangle_path +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583fedcd i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x5843f76c pl330_add +EXPORT_SYMBOL vmlinux 0x584f9dc0 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x5851e42d generic_ro_fops +EXPORT_SYMBOL vmlinux 0x587ca8f1 generic_make_request +EXPORT_SYMBOL vmlinux 0x589895aa dquot_destroy +EXPORT_SYMBOL vmlinux 0x58bddc29 inode_permission +EXPORT_SYMBOL vmlinux 0x58f127ae inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x58ff98e1 journal_force_commit +EXPORT_SYMBOL vmlinux 0x59016bd0 tty_throttle +EXPORT_SYMBOL vmlinux 0x5907ef33 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x592f4013 seq_read +EXPORT_SYMBOL vmlinux 0x5934392b fb_register_client +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x594fd546 omap_prcm_get_reset_sources +EXPORT_SYMBOL vmlinux 0x595fe606 is_bad_inode +EXPORT_SYMBOL vmlinux 0x599854c4 cont_write_begin +EXPORT_SYMBOL vmlinux 0x59a4adc1 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x59c65d3c scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x59cd2023 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x59d696b6 register_module_notifier +EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource +EXPORT_SYMBOL vmlinux 0x59da0d45 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59e70f93 __send_remote_softirq +EXPORT_SYMBOL vmlinux 0x5a0114d6 journal_destroy +EXPORT_SYMBOL vmlinux 0x5a0ff06f __d_drop +EXPORT_SYMBOL vmlinux 0x5a3f64bf cdev_alloc +EXPORT_SYMBOL vmlinux 0x5a46b6e5 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x5a54d12d arp_invalidate +EXPORT_SYMBOL vmlinux 0x5a6b7db3 __destroy_inode +EXPORT_SYMBOL vmlinux 0x5a71e728 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x5a744b86 netlink_set_nonroot +EXPORT_SYMBOL vmlinux 0x5a746d0d of_dev_get +EXPORT_SYMBOL vmlinux 0x5a7dd0f3 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x5a98358d kill_litter_super +EXPORT_SYMBOL vmlinux 0x5a98e193 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x5ab12523 noop_llseek +EXPORT_SYMBOL vmlinux 0x5ab24da6 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x5acdc5a1 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x5ad2c81c blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x5af11b96 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x5b0c0d3f __get_user_pages +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b23b72c try_to_release_page +EXPORT_SYMBOL vmlinux 0x5b334156 down_killable +EXPORT_SYMBOL vmlinux 0x5b39f539 of_match_device +EXPORT_SYMBOL vmlinux 0x5b679ea4 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x5b91ccfe fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x5bd373cb genl_unregister_family +EXPORT_SYMBOL vmlinux 0x5be7be74 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5bf4a1eb sg_last +EXPORT_SYMBOL vmlinux 0x5c1b3db6 tty_shutdown +EXPORT_SYMBOL vmlinux 0x5c3a393c tty_kref_put +EXPORT_SYMBOL vmlinux 0x5c5d12e2 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x5c920441 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c9b36f1 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x5cce7c6e sock_map_fd +EXPORT_SYMBOL vmlinux 0x5d597f19 __lock_buffer +EXPORT_SYMBOL vmlinux 0x5d5b5a16 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x5d636486 kern_path +EXPORT_SYMBOL vmlinux 0x5d668295 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x5d73cf7b tcp_poll +EXPORT_SYMBOL vmlinux 0x5d7ad37e omap_mcbsp_set_rx_threshold +EXPORT_SYMBOL vmlinux 0x5db68931 __dev_printk +EXPORT_SYMBOL vmlinux 0x5dbb8d6a elv_abort_queue +EXPORT_SYMBOL vmlinux 0x5e28e316 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5e29a312 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x5e36b68a sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x5e4abadf generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x5e60eb27 omap_dma_unlink_lch +EXPORT_SYMBOL vmlinux 0x5e6947f7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea2ffba dquot_commit +EXPORT_SYMBOL vmlinux 0x5ea52ddb scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb9f7a8 ethtool_op_set_flags +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5edd0762 bin2bcd +EXPORT_SYMBOL vmlinux 0x5edfd266 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x5ef40da6 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x5ef4d861 seq_bitmap +EXPORT_SYMBOL vmlinux 0x5effa3b8 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f0a7a9f filemap_fault +EXPORT_SYMBOL vmlinux 0x5f54ff66 thermal_zone_device_update +EXPORT_SYMBOL vmlinux 0x5f58f676 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x5f6ae12e bio_split +EXPORT_SYMBOL vmlinux 0x5f6e42ef tcf_hash_lookup +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f99be1f __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x5fa17c73 sk_filter_release_rcu +EXPORT_SYMBOL vmlinux 0x5faeb40e of_device_is_available +EXPORT_SYMBOL vmlinux 0x5fb29f15 bio_integrity_tag_size +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60324511 input_event +EXPORT_SYMBOL vmlinux 0x6032d149 redraw_screen +EXPORT_SYMBOL vmlinux 0x60481995 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x6048eb7b dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x60654c98 mmc_card_sleep +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6076537b crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60a36d36 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x60c72b34 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x60ed5f43 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x60f71cfa complete +EXPORT_SYMBOL vmlinux 0x612390ad netpoll_set_trap +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61363a07 sk_free +EXPORT_SYMBOL vmlinux 0x6155391f kernel_read +EXPORT_SYMBOL vmlinux 0x61a79f08 __irq_regs +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bd88a9 file_update_time +EXPORT_SYMBOL vmlinux 0x61c65573 tty_hangup +EXPORT_SYMBOL vmlinux 0x61f1879b xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x61f1df4c invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x61f33f41 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x621c6bd7 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622b0d08 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x6234c618 bio_clone +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62b4b85c account_page_dirtied +EXPORT_SYMBOL vmlinux 0x62b72b0d mutex_unlock +EXPORT_SYMBOL vmlinux 0x62c4944c ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x62cc569e cpu_present_mask +EXPORT_SYMBOL vmlinux 0x62d17433 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x62f906ae jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x6301b06c simple_getattr +EXPORT_SYMBOL vmlinux 0x6305bd63 skb_pad +EXPORT_SYMBOL vmlinux 0x632cb0eb qdisc_destroy +EXPORT_SYMBOL vmlinux 0x63326843 md_write_start +EXPORT_SYMBOL vmlinux 0x6332cc1a audit_log_start +EXPORT_SYMBOL vmlinux 0x6334ffdb security_path_truncate +EXPORT_SYMBOL vmlinux 0x6337dfce ab8500_gpadc_convert +EXPORT_SYMBOL vmlinux 0x63683e39 sk_filter +EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL vmlinux 0x63a908dd inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x63ab2604 irq_stat +EXPORT_SYMBOL vmlinux 0x63c27bd1 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x63d1d5f6 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x63d8cf83 inode_change_ok +EXPORT_SYMBOL vmlinux 0x63de7f3c tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x63dfeddd unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ec98f5 revalidate_disk +EXPORT_SYMBOL vmlinux 0x63ecad53 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64293cc6 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x6435507c xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x643eaec8 param_get_string +EXPORT_SYMBOL vmlinux 0x645c4a3e del_gendisk +EXPORT_SYMBOL vmlinux 0x647fa9f0 bdget +EXPORT_SYMBOL vmlinux 0x6485cc92 scsi_host_put +EXPORT_SYMBOL vmlinux 0x648a9d1f unregister_netdev +EXPORT_SYMBOL vmlinux 0x64975178 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649f67d5 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x64c337a0 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x64c6bddb set_user_nice +EXPORT_SYMBOL vmlinux 0x64d233c8 ioremap_page +EXPORT_SYMBOL vmlinux 0x64f3ebaa dm_unregister_target +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65291cff timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0x652d9a20 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65414e67 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6585e310 alloc_pages_exact_nid +EXPORT_SYMBOL vmlinux 0x659de40e rt6_lookup +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x6605f97f flex_array_clear +EXPORT_SYMBOL vmlinux 0x6609b110 tcf_hash_release +EXPORT_SYMBOL vmlinux 0x662ba15d cfb_imageblit +EXPORT_SYMBOL vmlinux 0x6633392f ip6_frag_match +EXPORT_SYMBOL vmlinux 0x663c8386 drop_super +EXPORT_SYMBOL vmlinux 0x66859174 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x668da8d5 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x668fbbd4 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x66955802 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x669cde87 blk_put_request +EXPORT_SYMBOL vmlinux 0x669dd28a posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x66a67dab flex_array_shrink +EXPORT_SYMBOL vmlinux 0x66b1a2e4 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x66d0ee54 vfsmount_lock_global_unlock +EXPORT_SYMBOL vmlinux 0x66d16cd0 blk_make_request +EXPORT_SYMBOL vmlinux 0x66e0cb8c bio_integrity_set_tag +EXPORT_SYMBOL vmlinux 0x67053080 current_kernel_time +EXPORT_SYMBOL vmlinux 0x6707087f of_n_size_cells +EXPORT_SYMBOL vmlinux 0x6717ef27 cad_pid +EXPORT_SYMBOL vmlinux 0x6744b844 mmc_host_enable +EXPORT_SYMBOL vmlinux 0x6754444f mmc_request_done +EXPORT_SYMBOL vmlinux 0x675dc831 user_path_at +EXPORT_SYMBOL vmlinux 0x67636ba8 may_umount_tree +EXPORT_SYMBOL vmlinux 0x67652f94 inet6_getname +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67728d29 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x6772d25a amba_device_register +EXPORT_SYMBOL vmlinux 0x678ba972 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x67946506 __netif_schedule +EXPORT_SYMBOL vmlinux 0x67af6aff generic_write_sync +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67be1d3d cpu_active_mask +EXPORT_SYMBOL vmlinux 0x67dcbcba sock_kmalloc +EXPORT_SYMBOL vmlinux 0x67fb15ef journal_update_format +EXPORT_SYMBOL vmlinux 0x682fdabd neigh_table_clear +EXPORT_SYMBOL vmlinux 0x6853a5f5 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x686cd471 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x6876a3c4 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x687740d3 call_usermodehelper_setfns +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68809975 bio_copy_user +EXPORT_SYMBOL vmlinux 0x6892fe01 nand_correct_data +EXPORT_SYMBOL vmlinux 0x689ce94a ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x68bb48c5 dev_uc_add +EXPORT_SYMBOL vmlinux 0x68bba7aa qdisc_list_del +EXPORT_SYMBOL vmlinux 0x69131aca simple_empty +EXPORT_SYMBOL vmlinux 0x691774c4 cpu_sysdev_class +EXPORT_SYMBOL vmlinux 0x691e6132 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x6934cce5 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x693d2e2a blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6973606c omap_st_get_chgain +EXPORT_SYMBOL vmlinux 0x69838c06 __block_write_begin +EXPORT_SYMBOL vmlinux 0x6995a798 dev_set_group +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b1d6fb seq_lseek +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69c75b89 bdi_destroy +EXPORT_SYMBOL vmlinux 0x69d38ed9 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x69d7300a blk_end_request +EXPORT_SYMBOL vmlinux 0x69e27c7a bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x69eb5a0e iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x6a0177ad tty_pair_get_pty +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a30d8b8 sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x6a41d3ad wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x6a484d98 ilookup5 +EXPORT_SYMBOL vmlinux 0x6a559116 rtc_lock +EXPORT_SYMBOL vmlinux 0x6a6ccfc1 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x6a7426ba register_filesystem +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a8ff06f dev_addr_add +EXPORT_SYMBOL vmlinux 0x6a8ff6b8 log_start_commit +EXPORT_SYMBOL vmlinux 0x6a94aa14 cdev_del +EXPORT_SYMBOL vmlinux 0x6a95e504 otg_get_transceiver +EXPORT_SYMBOL vmlinux 0x6af6c348 netdev_set_master +EXPORT_SYMBOL vmlinux 0x6aff2ac2 of_register_spi_devices +EXPORT_SYMBOL vmlinux 0x6b03eb70 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b5772cf scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x6b5a7057 ida_destroy +EXPORT_SYMBOL vmlinux 0x6b5fce35 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x6b7908bb jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x6baae653 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c139734 iunique +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c29d9e4 set_create_files_as +EXPORT_SYMBOL vmlinux 0x6c345ab4 tcp_syn_flood_action +EXPORT_SYMBOL vmlinux 0x6c4106cc blk_queue_merge_bvec +EXPORT_SYMBOL vmlinux 0x6c48893b tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6ccf7bd7 __pv_phys_offset +EXPORT_SYMBOL vmlinux 0x6cd683d9 tty_pair_get_tty +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cef462f phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x6cf9f443 elevator_init +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d175c6d sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x6d27ef64 __bitmap_empty +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d58972c inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x6d5e2e4a __napi_schedule +EXPORT_SYMBOL vmlinux 0x6d5fd516 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d6a5439 ____pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x6d6cbadc rb_last +EXPORT_SYMBOL vmlinux 0x6d776769 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x6d9e0ef7 dev_emerg +EXPORT_SYMBOL vmlinux 0x6dad6bb0 otg_put_transceiver +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df9ee17 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x6e3c0892 bio_pair_release +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ee0f71b scsi_setup_blk_pc_cmnd +EXPORT_SYMBOL vmlinux 0x6f13ff99 __f_setown +EXPORT_SYMBOL vmlinux 0x6f670da9 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x6f73a4fb proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x6f7eed28 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x6f9bb376 get_gendisk +EXPORT_SYMBOL vmlinux 0x6f9f983f tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x6fc5d6df ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fed65c9 submit_bio +EXPORT_SYMBOL vmlinux 0x6ff910ce genphy_suspend +EXPORT_SYMBOL vmlinux 0x6fff393f time_to_tm +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x70157711 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x70217799 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x70331c1c nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x70543618 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x705a271f blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x70824fe9 vfs_create +EXPORT_SYMBOL vmlinux 0x708f242a netif_rx_ni +EXPORT_SYMBOL vmlinux 0x70bc17d7 inode_wait +EXPORT_SYMBOL vmlinux 0x70d053fd try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x70dd1a12 gpmc_cs_configure +EXPORT_SYMBOL vmlinux 0x70e283cd tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x70eb531e cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x71003efd devm_iounmap +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x71522333 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x715dac52 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x716f93e6 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717b4887 dst_release +EXPORT_SYMBOL vmlinux 0x718de063 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x719160ed textsearch_register +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71bbe00e dquot_file_open +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71d1d4cf __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x71d768e4 nand_unlock +EXPORT_SYMBOL vmlinux 0x721ddb37 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x72326028 cdev_add +EXPORT_SYMBOL vmlinux 0x7234eafb otg_state_string +EXPORT_SYMBOL vmlinux 0x72570e0b tcf_action_exec +EXPORT_SYMBOL vmlinux 0x7258431b kobject_del +EXPORT_SYMBOL vmlinux 0x7277dc80 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x72aa82c6 param_ops_charp +EXPORT_SYMBOL vmlinux 0x72baeed0 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x72bb6892 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x72c07871 kernel_listen +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72e50086 vm_stat +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f7f14e page_put_link +EXPORT_SYMBOL vmlinux 0x730ff363 param_set_uint +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73303c40 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x73453c21 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x734c8283 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x7362dd1e vfs_fstat +EXPORT_SYMBOL vmlinux 0x736c79dc param_get_byte +EXPORT_SYMBOL vmlinux 0x737de5e9 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x73864a3b unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x73a7cdcd find_vma +EXPORT_SYMBOL vmlinux 0x73a903c4 vfsmount_lock_local_lock +EXPORT_SYMBOL vmlinux 0x73a98714 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x73cee276 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73eb9308 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x73ed43a6 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x73ef8f2b neigh_table_init_no_netlink +EXPORT_SYMBOL vmlinux 0x740bd35a xfrm_register_type +EXPORT_SYMBOL vmlinux 0x7444a46e blk_get_queue +EXPORT_SYMBOL vmlinux 0x7469fcfe radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x746d4ad9 key_task_permission +EXPORT_SYMBOL vmlinux 0x7483a5a9 kobject_add +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d327dd mnt_pin +EXPORT_SYMBOL vmlinux 0x74f1b55c twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x74f2cafb __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75148ee1 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x7518d062 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x751b2247 param_get_bool +EXPORT_SYMBOL vmlinux 0x753cc50d generic_write_checks +EXPORT_SYMBOL vmlinux 0x753d1fb9 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x753d64a7 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x7561092c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x757a08f8 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75a17bed prepare_to_wait +EXPORT_SYMBOL vmlinux 0x75a49237 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x75bd0d19 mount_single +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75ddac15 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x75f0e04c complete_request_key +EXPORT_SYMBOL vmlinux 0x75fbd90d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x75fee7fd __raw_writesb +EXPORT_SYMBOL vmlinux 0x7601a211 nobh_write_end +EXPORT_SYMBOL vmlinux 0x7602fc6b twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760b437a unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x760d6dc1 generic_removexattr +EXPORT_SYMBOL vmlinux 0x761ac6d8 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x7634e6b5 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7650873a thaw_super +EXPORT_SYMBOL vmlinux 0x765b8bd1 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x765c770a security_inode_readlink +EXPORT_SYMBOL vmlinux 0x76694591 omap_mcbsp_get_max_tx_threshold +EXPORT_SYMBOL vmlinux 0x76881360 leds_event +EXPORT_SYMBOL vmlinux 0x7698be8f netpoll_print_options +EXPORT_SYMBOL vmlinux 0x76b5a25a __ip_select_ident +EXPORT_SYMBOL vmlinux 0x76bf656d __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x76ca0495 journal_errno +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d9737c kernel_getpeername +EXPORT_SYMBOL vmlinux 0x76ed3235 thermal_zone_device_register +EXPORT_SYMBOL vmlinux 0x771e1934 do_SAK +EXPORT_SYMBOL vmlinux 0x77338684 of_i2c_register_devices +EXPORT_SYMBOL vmlinux 0x773a9c94 blk_iopoll_enabled +EXPORT_SYMBOL vmlinux 0x7769ee07 fb_set_var +EXPORT_SYMBOL vmlinux 0x776c0fc9 input_register_device +EXPORT_SYMBOL vmlinux 0x7770a576 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x77762416 input_open_device +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a6000b page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x77a70817 cdrom_release +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77df0847 __set_personality +EXPORT_SYMBOL vmlinux 0x77df7466 set_binfmt +EXPORT_SYMBOL vmlinux 0x77ecac9f zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x77ece177 nand_scan +EXPORT_SYMBOL vmlinux 0x77edf722 schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x77fa5d1f ns_to_timespec +EXPORT_SYMBOL vmlinux 0x77fbcb1e mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x78347e17 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7885e2b3 wait_on_sync_kiocb +EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource +EXPORT_SYMBOL vmlinux 0x78a6f168 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x7906cd83 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x790ee81c md_flush_request +EXPORT_SYMBOL vmlinux 0x794487ee disable_hlt +EXPORT_SYMBOL vmlinux 0x7948a3bd sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x796626cb generic_file_splice_write +EXPORT_SYMBOL vmlinux 0x796d56bd __init_rwsem +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x798462f8 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x798b2491 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x79a0b08b neigh_direct_output +EXPORT_SYMBOL vmlinux 0x79a3ae7d stop_tty +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79eb9ff3 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x79f04ebc tcp_v4_tw_get_peer +EXPORT_SYMBOL vmlinux 0x79f5f6e3 of_node_put +EXPORT_SYMBOL vmlinux 0x7a1390f7 param_set_bool +EXPORT_SYMBOL vmlinux 0x7a1e4fc4 pl330_del +EXPORT_SYMBOL vmlinux 0x7a27c184 ewma_init +EXPORT_SYMBOL vmlinux 0x7a326c51 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x7a42b408 phy_detach +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a50a315 files_lglock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x7a91726b clkdev_alloc +EXPORT_SYMBOL vmlinux 0x7ab77312 misc_deregister +EXPORT_SYMBOL vmlinux 0x7aca9077 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x7ad88abe omap_dss_stop_device +EXPORT_SYMBOL vmlinux 0x7ae7f8d5 mmc_erase +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b03848a verify_mem_not_deleted +EXPORT_SYMBOL vmlinux 0x7b152fd7 locks_delete_block +EXPORT_SYMBOL vmlinux 0x7b235296 ethtool_op_set_tx_csum +EXPORT_SYMBOL vmlinux 0x7b2352e4 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x7b7910f3 scsi_execute +EXPORT_SYMBOL vmlinux 0x7b87dbf7 bio_integrity_split +EXPORT_SYMBOL vmlinux 0x7ba09d67 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x7bb4eca2 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7bba2a6f vfs_fsync +EXPORT_SYMBOL vmlinux 0x7bd96a2c gpmc_prefetch_enable +EXPORT_SYMBOL vmlinux 0x7bf30fdc down_write +EXPORT_SYMBOL vmlinux 0x7c017027 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x7c053dd2 sk_alloc +EXPORT_SYMBOL vmlinux 0x7c09ead9 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x7c42c892 ip_xfrm_me_harder +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c60d66e getname +EXPORT_SYMBOL vmlinux 0x7c6654c2 blkdev_put +EXPORT_SYMBOL vmlinux 0x7c904ded unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cd02b00 generic_file_buffered_write +EXPORT_SYMBOL vmlinux 0x7cd219de _dev_info +EXPORT_SYMBOL vmlinux 0x7ce0ae7c param_get_long +EXPORT_SYMBOL vmlinux 0x7ce7e115 of_match_node +EXPORT_SYMBOL vmlinux 0x7cfa8db6 aio_complete +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1b1216 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x7d264b57 phy_device_register +EXPORT_SYMBOL vmlinux 0x7d62aec8 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x7d7b96dc scsi_scan_host +EXPORT_SYMBOL vmlinux 0x7d9a7c7b input_free_device +EXPORT_SYMBOL vmlinux 0x7d9bb3ae scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x7db76a0e dev_driver_string +EXPORT_SYMBOL vmlinux 0x7dd5ffbe filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x7de0a78b tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x7dedc7bb unregister_binfmt +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e051691 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x7e08dae3 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x7e0e32b4 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x7e394c4e sysctl_local_reserved_ports +EXPORT_SYMBOL vmlinux 0x7e3d826a elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x7e9af50b bio_endio +EXPORT_SYMBOL vmlinux 0x7e9ebb05 kernel_thread +EXPORT_SYMBOL vmlinux 0x7ec1577d scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x7ed49deb module_layout +EXPORT_SYMBOL vmlinux 0x7f0d0a2c remove_proc_entry +EXPORT_SYMBOL vmlinux 0x7f124cca arp_create +EXPORT_SYMBOL vmlinux 0x7f1f6a84 inet_listen +EXPORT_SYMBOL vmlinux 0x7f201b61 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2e1275 __invalidate_device +EXPORT_SYMBOL vmlinux 0x7f33a63b omap_get_dma_chain_dst_pos +EXPORT_SYMBOL vmlinux 0x7f447ac3 inet6_bind +EXPORT_SYMBOL vmlinux 0x7f5ce9cd xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f775bd4 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7f8ee656 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x7f9537fe posix_lock_file_wait +EXPORT_SYMBOL vmlinux 0x7fb51652 eth_header_cache +EXPORT_SYMBOL vmlinux 0x7fc4ba4a jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x7fc8e148 vfs_unlink +EXPORT_SYMBOL vmlinux 0x7fc9daf2 __breadahead +EXPORT_SYMBOL vmlinux 0x7fee2723 bio_get_nr_vecs +EXPORT_SYMBOL vmlinux 0x7ff45502 blk_register_region +EXPORT_SYMBOL vmlinux 0x800df1d7 groups_free +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x8034558a gpmc_nand_write +EXPORT_SYMBOL vmlinux 0x80389e6f neigh_connected_output +EXPORT_SYMBOL vmlinux 0x803e7f00 filemap_flush +EXPORT_SYMBOL vmlinux 0x804fc9ca omap_mcbsp_free +EXPORT_SYMBOL vmlinux 0x805c7bea mb_cache_create +EXPORT_SYMBOL vmlinux 0x80644878 keyring_search +EXPORT_SYMBOL vmlinux 0x808a98f9 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x80c4c345 scsi_execute_req +EXPORT_SYMBOL vmlinux 0x80d3fe2b __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x80d81308 omap_vrfb_release_ctx +EXPORT_SYMBOL vmlinux 0x80d817ab wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x80de231a idr_remove +EXPORT_SYMBOL vmlinux 0x81003ee2 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x810b3618 param_ops_string +EXPORT_SYMBOL vmlinux 0x813547c4 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x813ed040 idr_remove_all +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815131ba mempool_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8164adb3 omap2_mcbsp_set_clks_src +EXPORT_SYMBOL vmlinux 0x8180a2db mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x81985597 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x81a88bff jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x81a8d7cc insert_inode_locked +EXPORT_SYMBOL vmlinux 0x81b04bfc completion_done +EXPORT_SYMBOL vmlinux 0x81b0b3a4 sock_wfree +EXPORT_SYMBOL vmlinux 0x81b3c299 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x81c0c33f simple_fill_super +EXPORT_SYMBOL vmlinux 0x81d10f5f trace_seq_putc +EXPORT_SYMBOL vmlinux 0x81d5be16 register_cdrom +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81f97592 abort_creds +EXPORT_SYMBOL vmlinux 0x81fbcdd1 fd_install +EXPORT_SYMBOL vmlinux 0x82034bdc posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8204e852 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x821e8d91 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x8229e109 replace_mount_options +EXPORT_SYMBOL vmlinux 0x8234e6e2 of_find_node_by_path +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x8251bcc3 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x82524e60 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x8256df72 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x8260686f bitmap_find_next_zero_area +EXPORT_SYMBOL vmlinux 0x8262f64b tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x826bd484 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x82714783 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82bd63d5 do_munmap +EXPORT_SYMBOL vmlinux 0x82d43c23 do_map_probe +EXPORT_SYMBOL vmlinux 0x83141628 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x8330e981 dpi_set_timings +EXPORT_SYMBOL vmlinux 0x835330e1 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x8364cfe1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x836bdb72 nand_flash_ids +EXPORT_SYMBOL vmlinux 0x8371daff sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x83800bfa kref_init +EXPORT_SYMBOL vmlinux 0x8384a2c5 tty_unlock +EXPORT_SYMBOL vmlinux 0x838f70b0 twl_i2c_write_u8 +EXPORT_SYMBOL vmlinux 0x83a137a5 inet_frag_evictor +EXPORT_SYMBOL vmlinux 0x83a476ce bitmap_scnlistprintf +EXPORT_SYMBOL vmlinux 0x83c7efc8 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x83d25c38 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x83f86f07 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x83ffe579 dev_add_pack +EXPORT_SYMBOL vmlinux 0x840f9cb0 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x84221ad6 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x8436f8e3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x846bcc01 dm_table_get +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84b93cec omap_dss_put_device +EXPORT_SYMBOL vmlinux 0x84db4b6e wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x84e552df ps2_command +EXPORT_SYMBOL vmlinux 0x8537361f mdiobus_scan +EXPORT_SYMBOL vmlinux 0x853e658e ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8572f6cc __neigh_event_send +EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x858ea90e __blk_run_queue +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85cd7c8c mapping_tagged +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e7deb2 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865b043d tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86ace763 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x86ca9747 vfs_open +EXPORT_SYMBOL vmlinux 0x86cbec0d tcp_make_synack +EXPORT_SYMBOL vmlinux 0x86e3cb5d tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870bf928 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x870deb2c dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x871314b6 journal_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87510ba5 simple_setattr +EXPORT_SYMBOL vmlinux 0x8788eaa2 journal_init_inode +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87c27ad2 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x87d3e5be scsi_cmd_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x87dbba14 ida_get_new +EXPORT_SYMBOL vmlinux 0x87e2373d end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x87fd7352 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x8807e4b5 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x881039d0 zlib_inflate +EXPORT_SYMBOL vmlinux 0x8834396c mod_timer +EXPORT_SYMBOL vmlinux 0x883b3507 load_nls +EXPORT_SYMBOL vmlinux 0x8840f359 proc_create_data +EXPORT_SYMBOL vmlinux 0x8844b875 ip_options_compile +EXPORT_SYMBOL vmlinux 0x8851e303 I_BDEV +EXPORT_SYMBOL vmlinux 0x8869f62e key_validate +EXPORT_SYMBOL vmlinux 0x888978d1 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x8893fa5d finish_wait +EXPORT_SYMBOL vmlinux 0x88a2b393 follow_down +EXPORT_SYMBOL vmlinux 0x88abe888 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x88b85f6d abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x88bc289b register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x88c3df08 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x88d01eee inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x88d34c16 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x88d96ae4 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x88dc5da2 lock_may_write +EXPORT_SYMBOL vmlinux 0x88eb8e18 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x88f33286 generic_readlink +EXPORT_SYMBOL vmlinux 0x8908e89f jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x89199a42 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x8949858b schedule_work +EXPORT_SYMBOL vmlinux 0x896261d4 md_write_end +EXPORT_SYMBOL vmlinux 0x8967506e uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x897473df mktime +EXPORT_SYMBOL vmlinux 0x897e74d2 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x89805dda dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x899aa4ad tty_port_close_start +EXPORT_SYMBOL vmlinux 0x899d3f1d request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x89a3c4f4 omap_get_dma_chain_index +EXPORT_SYMBOL vmlinux 0x89b95107 __quota_error +EXPORT_SYMBOL vmlinux 0x89c0fbcd jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d65de8 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x89d66811 build_ehash_secret +EXPORT_SYMBOL vmlinux 0x89da4432 of_iomap +EXPORT_SYMBOL vmlinux 0x8a0df650 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x8a375cd6 iput +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a5485c0 inode_init_once +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ac7f6bd mount_pseudo +EXPORT_SYMBOL vmlinux 0x8adab72b serial8250_register_port +EXPORT_SYMBOL vmlinux 0x8b073928 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x8b16e800 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x8b1cc102 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x8b209f51 generic_setxattr +EXPORT_SYMBOL vmlinux 0x8b20c6ed register_con_driver +EXPORT_SYMBOL vmlinux 0x8b4c5948 security_file_permission +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7094d3 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x8b7a5b9e sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x8bc2401d textsearch_destroy +EXPORT_SYMBOL vmlinux 0x8bc89a7c linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x8bcd5bdf tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x8bf29f97 dev_crit +EXPORT_SYMBOL vmlinux 0x8c01cd30 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x8c0b4e8f sock_create_lite +EXPORT_SYMBOL vmlinux 0x8c4d6523 omap_dma_chain_a_transfer +EXPORT_SYMBOL vmlinux 0x8c7a3757 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x8ca836b2 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x8ca8d886 key_revoke +EXPORT_SYMBOL vmlinux 0x8cb5357d gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8ce7848f sock_init_data +EXPORT_SYMBOL vmlinux 0x8ceb0e8d pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x8d23c255 mmc_cache_ctrl +EXPORT_SYMBOL vmlinux 0x8d532cfc nf_register_hooks +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d770f24 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x8d8b3832 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x8d93dbe0 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x8de69ce9 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x8e01334c sock_no_connect +EXPORT_SYMBOL vmlinux 0x8e0b7743 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x8e171dc2 vfs_llseek +EXPORT_SYMBOL vmlinux 0x8e22d90a page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x8e311ecd dev_alloc_name +EXPORT_SYMBOL vmlinux 0x8e3382ab __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x8e41af03 __page_symlink +EXPORT_SYMBOL vmlinux 0x8e4952aa amba_find_device +EXPORT_SYMBOL vmlinux 0x8e50b76e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x8e51d18a journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x8e555738 param_get_uint +EXPORT_SYMBOL vmlinux 0x8ee69235 timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8f085f21 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x8f218be0 dma_alloc_coherent +EXPORT_SYMBOL vmlinux 0x8f2a4fda unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x8f2eb0c4 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x8f48679a rb_prev +EXPORT_SYMBOL vmlinux 0x8f4b010d lock_rename +EXPORT_SYMBOL vmlinux 0x8f53b98e sock_no_listen +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f7fa357 dev_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x8f991e71 nf_log_packet +EXPORT_SYMBOL vmlinux 0x8f9d9a99 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x8fbdd58c cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x8fc7f839 param_set_charp +EXPORT_SYMBOL vmlinux 0x8ff3f6f6 kern_unmount +EXPORT_SYMBOL vmlinux 0x8ff66782 param_get_ushort +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x90023503 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x901d9ae8 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x906ee6aa skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x908a2792 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x90adf907 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x90ae4ada input_register_handle +EXPORT_SYMBOL vmlinux 0x90c58207 freeze_super +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90cfe784 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x90e83954 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x90f7ed14 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x9104cef3 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91470a3f dma_free_coherent +EXPORT_SYMBOL vmlinux 0x91486c01 generic_permission +EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9177d1a5 register_gifconf +EXPORT_SYMBOL vmlinux 0x91886873 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x91ba3054 generic_read_dir +EXPORT_SYMBOL vmlinux 0x91bd16be omap_dss_get_device +EXPORT_SYMBOL vmlinux 0x91bead60 filp_open +EXPORT_SYMBOL vmlinux 0x91c73b0e default_file_splice_read +EXPORT_SYMBOL vmlinux 0x91cc546b scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x91cea070 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x920664c8 mempool_free +EXPORT_SYMBOL vmlinux 0x9211e197 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x922a6dbd mmc_resume_host +EXPORT_SYMBOL vmlinux 0x922c6e1d skb_queue_head +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x926ea9a0 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x929eecac __strncpy_from_user +EXPORT_SYMBOL vmlinux 0x929fc007 serio_rescan +EXPORT_SYMBOL vmlinux 0x92d272ce vm_event_states +EXPORT_SYMBOL vmlinux 0x92d31249 flush_old_exec +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9311310a scsi_finish_command +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9333e39d of_dev_put +EXPORT_SYMBOL vmlinux 0x933a2839 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x933f8a8a scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x9348e6eb xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x934e8e2e gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x9353174e inet_select_addr +EXPORT_SYMBOL vmlinux 0x9363484a xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x9371bd81 scsi_allocate_command +EXPORT_SYMBOL vmlinux 0x93794f13 phy_start +EXPORT_SYMBOL vmlinux 0x9382d457 inode_init_always +EXPORT_SYMBOL vmlinux 0x93a29d64 dev_mc_init +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b1f050 bio_put +EXPORT_SYMBOL vmlinux 0x93cf29a4 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x93f437d5 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9400bbab omap_mcbsp_dma_reg_params +EXPORT_SYMBOL vmlinux 0x941ab990 release_firmware +EXPORT_SYMBOL vmlinux 0x941b4319 dquot_get_dqinfo +EXPORT_SYMBOL vmlinux 0x942e1c86 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x943742e0 mmc_hw_reset_check +EXPORT_SYMBOL vmlinux 0x943c56d3 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x94460819 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x9448bfb8 d_validate +EXPORT_SYMBOL vmlinux 0x94577e2f seq_open +EXPORT_SYMBOL vmlinux 0x946e2c58 tty_mutex +EXPORT_SYMBOL vmlinux 0x947c056a generic_show_options +EXPORT_SYMBOL vmlinux 0x947efcc4 scsi_calculate_bounce_limit +EXPORT_SYMBOL vmlinux 0x94864c7a wl12xx_get_platform_data +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a09efb d_delete +EXPORT_SYMBOL vmlinux 0x94af632e complete_all +EXPORT_SYMBOL vmlinux 0x94afc9f1 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x94bb2f5f security_path_unlink +EXPORT_SYMBOL vmlinux 0x94d4ebfd genl_register_family +EXPORT_SYMBOL vmlinux 0x94f28698 tty_vhangup +EXPORT_SYMBOL vmlinux 0x95163374 ip_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x952520de nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x953da179 f_setown +EXPORT_SYMBOL vmlinux 0x954488a4 syncookie_secret +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954ec2c5 new_inode +EXPORT_SYMBOL vmlinux 0x9553b41e __scm_send +EXPORT_SYMBOL vmlinux 0x957e3b5a dquot_transfer +EXPORT_SYMBOL vmlinux 0x958474ea skb_gro_reset_offset +EXPORT_SYMBOL vmlinux 0x95a6a106 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x95cee70f skb_find_text +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95f97c24 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x961bd2b6 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x9642012c tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x96444a27 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x9690cb7a __elv_add_request +EXPORT_SYMBOL vmlinux 0x969106e4 clk_set_rate +EXPORT_SYMBOL vmlinux 0x96b39b6e omap_start_dma_chain_transfers +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d1f2a7 mmc_assume_removable +EXPORT_SYMBOL vmlinux 0x96d5b542 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x96ef65bd max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x96fdcf7d scm_detach_fds +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x97526654 tcp_v4_md5_do_del +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976aa343 vfs_rename +EXPORT_SYMBOL vmlinux 0x977367f0 km_state_notify +EXPORT_SYMBOL vmlinux 0x9781ce4b write_cache_pages +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97ae30a0 unregister_con_driver +EXPORT_SYMBOL vmlinux 0x97bb9c5b eth_rebuild_header +EXPORT_SYMBOL vmlinux 0x97d8c18c make_bad_inode +EXPORT_SYMBOL vmlinux 0x97e9ff03 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x97ec6945 scsi_free_command +EXPORT_SYMBOL vmlinux 0x97f75181 lock_fb_info +EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x983aa50e netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x986201ce bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x988b8d76 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x98e0998d mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x98eae89d vc_resize +EXPORT_SYMBOL vmlinux 0x98fa21b0 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x98fbaac5 register_quota_format +EXPORT_SYMBOL vmlinux 0x990467b7 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x99440656 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x99485acc __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x994d3136 dst_destroy +EXPORT_SYMBOL vmlinux 0x99525e3a vfsmount_lock_local_unlock +EXPORT_SYMBOL vmlinux 0x995a613f bio_kmalloc +EXPORT_SYMBOL vmlinux 0x99717d89 dev_deactivate +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999c3148 __raw_readsb +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99bfbe39 get_unused_fd +EXPORT_SYMBOL vmlinux 0x99c85d3c udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d923b2 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x99dff51a of_parse_phandle +EXPORT_SYMBOL vmlinux 0x99e19ef6 __skb_get_rxhash +EXPORT_SYMBOL vmlinux 0x99ef6226 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x9a03ce4d ethtool_op_get_tx_csum +EXPORT_SYMBOL vmlinux 0x9a0824bb input_set_keycode +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a63f60a key_type_keyring +EXPORT_SYMBOL vmlinux 0x9a8e6025 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x9aa703bb page_symlink +EXPORT_SYMBOL vmlinux 0x9aadafc5 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x9ab721ef revert_creds +EXPORT_SYMBOL vmlinux 0x9ab8808c param_get_charp +EXPORT_SYMBOL vmlinux 0x9b117bb8 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x9b1b6b91 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x9b2869fd tty_port_init +EXPORT_SYMBOL vmlinux 0x9b2f1e9d locks_init_lock +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b53e568 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x9b60d834 dm_get_device +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b8caa7b phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x9ba44a83 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9baa9adf nla_reserve +EXPORT_SYMBOL vmlinux 0x9bce482f __release_region +EXPORT_SYMBOL vmlinux 0x9be55cc5 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x9c012508 fb_parse_edid +EXPORT_SYMBOL vmlinux 0x9c293b3c udp_disconnect +EXPORT_SYMBOL vmlinux 0x9c45589f lock_super +EXPORT_SYMBOL vmlinux 0x9c5b17a5 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9c5bc279 icmp_send +EXPORT_SYMBOL vmlinux 0x9c61039e journal_flush +EXPORT_SYMBOL vmlinux 0x9c6ab62a dev_mc_del +EXPORT_SYMBOL vmlinux 0x9c7077bd enable_hlt +EXPORT_SYMBOL vmlinux 0x9c873104 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x9c888c0c scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x9ca04207 clk_set_parent +EXPORT_SYMBOL vmlinux 0x9cb96e92 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x9cc4a9a4 journal_start +EXPORT_SYMBOL vmlinux 0x9cd2e7d0 gpmc_nand_read +EXPORT_SYMBOL vmlinux 0x9cd4f04e vfs_readv +EXPORT_SYMBOL vmlinux 0x9cd60539 sg_free_table +EXPORT_SYMBOL vmlinux 0x9cd74019 amba_request_regions +EXPORT_SYMBOL vmlinux 0x9cdf0ec5 vfsmount_lock_global_lock_online +EXPORT_SYMBOL vmlinux 0x9ce95067 find_get_page +EXPORT_SYMBOL vmlinux 0x9ceb163c memcpy_toiovec +EXPORT_SYMBOL vmlinux 0x9cfd56c5 scsi_print_status +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d7dc589 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x9dc9e3ea set_security_override +EXPORT_SYMBOL vmlinux 0x9dd7bc88 blk_put_queue +EXPORT_SYMBOL vmlinux 0x9dd81477 iov_iter_copy_from_user +EXPORT_SYMBOL vmlinux 0x9de71e5f simple_release_fs +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2000a7 memcpy_toiovecend +EXPORT_SYMBOL vmlinux 0x9e270d9b mmc_card_can_sleep +EXPORT_SYMBOL vmlinux 0x9e3118b9 __free_pages +EXPORT_SYMBOL vmlinux 0x9e468545 sock_no_bind +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e607910 audit_log +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9f1714 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x9ebac9c5 skb_trim +EXPORT_SYMBOL vmlinux 0x9ec2cc8c clk_enable +EXPORT_SYMBOL vmlinux 0x9ed1298f dev_trans_start +EXPORT_SYMBOL vmlinux 0x9ed685ee iov_iter_advance +EXPORT_SYMBOL vmlinux 0x9ed70a4f tty_unregister_device +EXPORT_SYMBOL vmlinux 0x9ee45bb2 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x9eecde16 do_brk +EXPORT_SYMBOL vmlinux 0x9f0cf046 fasync_helper +EXPORT_SYMBOL vmlinux 0x9f194b85 dev_alert +EXPORT_SYMBOL vmlinux 0x9f1f2bb5 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x9f293fdc generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x9f2bdaac __bitmap_or +EXPORT_SYMBOL vmlinux 0x9f3ec45d journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x9f4281f4 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f491e5d ftrace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x9f69ee48 scsi_print_result +EXPORT_SYMBOL vmlinux 0x9f8c6647 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f99d9bf ida_pre_get +EXPORT_SYMBOL vmlinux 0x9fb3dd30 memcpy_fromiovec +EXPORT_SYMBOL vmlinux 0x9fb6d1f1 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x9fbeed20 scsi_print_command +EXPORT_SYMBOL vmlinux 0x9fc3a0ea cdev_init +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe53316 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x9fea9232 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xa0025f67 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xa0058c7e jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xa01eb8d8 tty_free_termios +EXPORT_SYMBOL vmlinux 0xa04773d7 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa08a02d0 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xa0917db2 skb_store_bits +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0badad6 netif_device_detach +EXPORT_SYMBOL vmlinux 0xa0bf1e25 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xa0c888eb key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xa0ceef51 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xa0d658e6 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa106b5ba xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa114e6e2 nand_default_bbt +EXPORT_SYMBOL vmlinux 0xa11e6a36 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa13641a9 put_tty_driver +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa144d46e jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xa14ce5ee dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xa14f3d8c ewma_add +EXPORT_SYMBOL vmlinux 0xa17ee298 dma_find_channel +EXPORT_SYMBOL vmlinux 0xa19b1e42 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xa1b1ea3a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1ba2fdb vfsmount_lock_global_lock +EXPORT_SYMBOL vmlinux 0xa1c4b6d2 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xa1c5a3b3 cleancache_enabled +EXPORT_SYMBOL vmlinux 0xa1c704ff __alloc_skb +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1cdf45e rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa1ded8b2 fget_raw +EXPORT_SYMBOL vmlinux 0xa20ce1b8 net_msg_warn +EXPORT_SYMBOL vmlinux 0xa21f9976 dev_get_flags +EXPORT_SYMBOL vmlinux 0xa2321bb8 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xa24c38b7 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xa24fe410 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xa25ce832 ata_print_version +EXPORT_SYMBOL vmlinux 0xa2752c12 input_unregister_device +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa29effce tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xa2a5fd77 inet_ehash_secret +EXPORT_SYMBOL vmlinux 0xa2b3ca17 sg_miter_start +EXPORT_SYMBOL vmlinux 0xa2c56c31 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa2c61eee soft_cursor +EXPORT_SYMBOL vmlinux 0xa2cc632f end_writeback +EXPORT_SYMBOL vmlinux 0xa2d0abec tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xa2dbd21e phy_stop +EXPORT_SYMBOL vmlinux 0xa303ee49 vfs_mknod +EXPORT_SYMBOL vmlinux 0xa304e271 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xa30e049b skb_copy_datagram_from_iovec +EXPORT_SYMBOL vmlinux 0xa32629f6 dns_query +EXPORT_SYMBOL vmlinux 0xa332cdd1 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL vmlinux 0xa34f1ef5 crc32_le +EXPORT_SYMBOL vmlinux 0xa35de80f ipv4_config +EXPORT_SYMBOL vmlinux 0xa37e68af sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xa38e9568 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xa3a2665e xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xa3b3703e __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xa3beac45 simple_rename +EXPORT_SYMBOL vmlinux 0xa3c058f2 mpage_writepages +EXPORT_SYMBOL vmlinux 0xa3c52d06 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xa3d49a1e starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa3d6fbb9 proto_register +EXPORT_SYMBOL vmlinux 0xa3f5e9e0 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xa407e99b __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xa429f74b __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa43b9539 memcpy_fromiovecend +EXPORT_SYMBOL vmlinux 0xa440b2d1 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xa446d5ae nonseekable_open +EXPORT_SYMBOL vmlinux 0xa459700c skb_split +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa494178f set_disk_ro +EXPORT_SYMBOL vmlinux 0xa4aea3ff dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4be6bf0 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa4c29461 omap_st_is_enabled +EXPORT_SYMBOL vmlinux 0xa4c49678 neigh_create +EXPORT_SYMBOL vmlinux 0xa4d5c95a inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa4e1341f kernel_bind +EXPORT_SYMBOL vmlinux 0xa4f0ea63 genl_unregister_ops +EXPORT_SYMBOL vmlinux 0xa50858e8 omapdss_dpi_display_enable +EXPORT_SYMBOL vmlinux 0xa50d86b9 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xa528d6de dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa545f3f4 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xa572d0f0 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa5841ef4 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xa598d425 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59b85a9 netdev_change_features +EXPORT_SYMBOL vmlinux 0xa5a29032 ilookup +EXPORT_SYMBOL vmlinux 0xa5b87e23 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource +EXPORT_SYMBOL vmlinux 0xa5fdfc12 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa61378f4 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa64a4cea usb_nop_xceiv_unregister +EXPORT_SYMBOL vmlinux 0xa6545a51 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xa66247a5 skb_pull +EXPORT_SYMBOL vmlinux 0xa66aafa8 twl6040_irq_exit +EXPORT_SYMBOL vmlinux 0xa672a8ed ip_nat_decode_session +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6ad7eac pm860x_page_bulk_write +EXPORT_SYMBOL vmlinux 0xa6ae2a53 put_mnt_ns +EXPORT_SYMBOL vmlinux 0xa6c39a0e scsi_prep_state_check +EXPORT_SYMBOL vmlinux 0xa6dcc773 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa6e22a7b ip_getsockopt +EXPORT_SYMBOL vmlinux 0xa714217e vfs_getattr +EXPORT_SYMBOL vmlinux 0xa71f9994 tc_classify_compat +EXPORT_SYMBOL vmlinux 0xa72f9e7c scsi_release_buffers +EXPORT_SYMBOL vmlinux 0xa7368042 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xa742dd69 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xa7cdd783 ethtool_op_get_tso +EXPORT_SYMBOL vmlinux 0xa7cec6bb jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xa7db6843 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xa800e1e6 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0xa814442b dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xa81d8ab6 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xa8223905 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa8232c78 strtobool +EXPORT_SYMBOL vmlinux 0xa83772a6 map_destroy +EXPORT_SYMBOL vmlinux 0xa8380d34 kernel_execve +EXPORT_SYMBOL vmlinux 0xa86eb739 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xa87bb6d8 kset_register +EXPORT_SYMBOL vmlinux 0xa888181d jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xa8bee0ea copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xa8cde9a7 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xa8d0578d mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xa8fd075d set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa943beca cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xa94d705a seq_release_private +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa9831c83 ipv4_specific +EXPORT_SYMBOL vmlinux 0xa999297a release_sock +EXPORT_SYMBOL vmlinux 0xa99a08b4 arp_send +EXPORT_SYMBOL vmlinux 0xa9a027b0 dev_gro_receive +EXPORT_SYMBOL vmlinux 0xa9b64af6 __ps2_command +EXPORT_SYMBOL vmlinux 0xa9b74e3d __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xa9bd8fb3 netdev_class_create_file +EXPORT_SYMBOL vmlinux 0xa9d8c513 __find_get_block +EXPORT_SYMBOL vmlinux 0xa9e5ff71 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xaa4307b7 framebuffer_release +EXPORT_SYMBOL vmlinux 0xaa4cc367 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xaa5927f9 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6b4fee clip_tbl_hook +EXPORT_SYMBOL vmlinux 0xaa7295c7 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xaa7c1109 search_binary_handler +EXPORT_SYMBOL vmlinux 0xaa91ce79 dev_alloc_skb +EXPORT_SYMBOL vmlinux 0xaaab57be tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadcfc4e security_path_symlink +EXPORT_SYMBOL vmlinux 0xaaded7f0 udp_prot +EXPORT_SYMBOL vmlinux 0xaaeda79e page_follow_link_light +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab143ed5 unload_nls +EXPORT_SYMBOL vmlinux 0xab18561a xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab83b3b2 skb_dst_set_noref +EXPORT_SYMBOL vmlinux 0xab98cedc cfb_copyarea +EXPORT_SYMBOL vmlinux 0xaba6cd7f dqput +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd0c91c rtc_time_to_tm +EXPORT_SYMBOL vmlinux 0xabd41fe1 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xabe4422d amba_driver_register +EXPORT_SYMBOL vmlinux 0xabf36d57 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xabfcfac5 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xac015ba2 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac351cf8 splice_from_pipe_begin +EXPORT_SYMBOL vmlinux 0xac435a25 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xac4721a2 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xac5f113d cpu_all_bits +EXPORT_SYMBOL vmlinux 0xac5fded4 sock_no_accept +EXPORT_SYMBOL vmlinux 0xac5feffc fget +EXPORT_SYMBOL vmlinux 0xac6855b0 gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xac7c4594 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xacc643e8 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd0a895 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xacd6b35f i2c_register_driver +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad2a4d3d neigh_lookup +EXPORT_SYMBOL vmlinux 0xad2c2d92 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xad3e45d0 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xad466018 quota_send_warning +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xadaa2657 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0xadb070e4 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xadcac4a3 vfsmount_lock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xadd25cc8 tcp_close +EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region +EXPORT_SYMBOL vmlinux 0xae0882f2 omap_mcbsp_request +EXPORT_SYMBOL vmlinux 0xae318aaa neigh_for_each +EXPORT_SYMBOL vmlinux 0xae3381d1 put_page +EXPORT_SYMBOL vmlinux 0xae52f5dd __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xae889361 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xae9b7941 seq_escape +EXPORT_SYMBOL vmlinux 0xaeb33467 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaeeef0d2 ___dma_page_cpu_to_dev +EXPORT_SYMBOL vmlinux 0xaeef9a37 skb_copy_datagram_const_iovec +EXPORT_SYMBOL vmlinux 0xaef39ba7 qdisc_reset +EXPORT_SYMBOL vmlinux 0xaf04fb7f tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf409935 inet_bind +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf52da8d tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf5f7994 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xaf71630f serio_unregister_port +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf91d89f __kernel_param_lock +EXPORT_SYMBOL vmlinux 0xafcd3fa9 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xafe3a620 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xafee93d3 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xb0146c3a param_set_byte +EXPORT_SYMBOL vmlinux 0xb0390d86 ip_fragment +EXPORT_SYMBOL vmlinux 0xb08c7ab9 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xb091ebc2 mnt_unpin +EXPORT_SYMBOL vmlinux 0xb0b4a932 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xb0b847ac __bitmap_full +EXPORT_SYMBOL vmlinux 0xb0c9705a dm_io +EXPORT_SYMBOL vmlinux 0xb0cacd62 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xb0cd0f99 thaw_process +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb1125052 bdi_register +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb1479f99 mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0xb14decd3 journal_init_dev +EXPORT_SYMBOL vmlinux 0xb16fe7b3 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xb18e6948 omap_dss_pal_timings +EXPORT_SYMBOL vmlinux 0xb19760c3 bitmap_onto +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ef24e3 simple_write_begin +EXPORT_SYMBOL vmlinux 0xb1fce87d netpoll_setup +EXPORT_SYMBOL vmlinux 0xb21e6533 journal_forget +EXPORT_SYMBOL vmlinux 0xb25661e6 tcp_gro_receive +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb276599e setup_arg_pages +EXPORT_SYMBOL vmlinux 0xb288736c sock_rfree +EXPORT_SYMBOL vmlinux 0xb28f1c92 omap_mcbsp_stop +EXPORT_SYMBOL vmlinux 0xb28f8eff iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xb2daa877 phy_disconnect +EXPORT_SYMBOL vmlinux 0xb3305d52 send_remote_softirq +EXPORT_SYMBOL vmlinux 0xb3393164 skb_make_writable +EXPORT_SYMBOL vmlinux 0xb3415778 netdev_emerg +EXPORT_SYMBOL vmlinux 0xb374beac alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xb389b032 generic_file_open +EXPORT_SYMBOL vmlinux 0xb3a307c6 si_meminfo +EXPORT_SYMBOL vmlinux 0xb3a93a31 ping_prot +EXPORT_SYMBOL vmlinux 0xb3f51548 of_device_alloc +EXPORT_SYMBOL vmlinux 0xb3f6bec8 ip_cmsg_recv +EXPORT_SYMBOL vmlinux 0xb401039d inet6_ioctl +EXPORT_SYMBOL vmlinux 0xb4041254 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xb40e1bac __blk_end_request +EXPORT_SYMBOL vmlinux 0xb412edcd ab8500_gpadc_read_raw +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42f1c05 vfs_writev +EXPORT_SYMBOL vmlinux 0xb4410e62 dev_change_flags +EXPORT_SYMBOL vmlinux 0xb45a151a set_groups +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb49471e4 dev_get_drvdata +EXPORT_SYMBOL vmlinux 0xb49f1e5e d_drop +EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xb4c62d7f xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xb4c8f38a omap_dma_chain_status +EXPORT_SYMBOL vmlinux 0xb4d019b0 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xb4d879dc thaw_bdev +EXPORT_SYMBOL vmlinux 0xb4f889ab input_release_device +EXPORT_SYMBOL vmlinux 0xb5044271 vsscanf +EXPORT_SYMBOL vmlinux 0xb54533f7 usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xb558a2d7 thermal_cooling_device_register +EXPORT_SYMBOL vmlinux 0xb587b534 simple_lookup +EXPORT_SYMBOL vmlinux 0xb59f5103 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d49f03 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xb61ad36e mdiobus_register +EXPORT_SYMBOL vmlinux 0xb628f715 files_lglock_local_lock +EXPORT_SYMBOL vmlinux 0xb629c360 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xb641fb80 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xb64f05a9 dev_printk +EXPORT_SYMBOL vmlinux 0xb667069f pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xb66bcf0d ethtool_op_set_ufo +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67eec47 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xb6822a33 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6a61a86 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6add1db serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xb6b1c18e uart_update_timeout +EXPORT_SYMBOL vmlinux 0xb6c1fe8a add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xb6c5a973 scsi_show_result +EXPORT_SYMBOL vmlinux 0xb70b87bb __register_chrdev +EXPORT_SYMBOL vmlinux 0xb71a6985 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xb72c663a input_reset_device +EXPORT_SYMBOL vmlinux 0xb74849b8 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xb7701d99 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xb77a7c47 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xb78b3626 interruptible_sleep_on_timeout +EXPORT_SYMBOL vmlinux 0xb78c61e8 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb7b61546 crc32_be +EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0xb7d858e6 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xb808b90b ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb81fd3be idr_find +EXPORT_SYMBOL vmlinux 0xb82b7d2f vfs_read +EXPORT_SYMBOL vmlinux 0xb835b3e4 radix_tree_prev_hole +EXPORT_SYMBOL vmlinux 0xb83c9044 unregister_exec_domain +EXPORT_SYMBOL vmlinux 0xb8622771 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xb86e4ab9 random32 +EXPORT_SYMBOL vmlinux 0xb87278ca __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xb8912418 napi_frags_finish +EXPORT_SYMBOL vmlinux 0xb894926d schedule_work_on +EXPORT_SYMBOL vmlinux 0xb89af9bf srandom32 +EXPORT_SYMBOL vmlinux 0xb8aa2342 __check_region +EXPORT_SYMBOL vmlinux 0xb8b3c2cd mdiobus_free +EXPORT_SYMBOL vmlinux 0xb8bb7151 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xb8bb957c journal_wipe +EXPORT_SYMBOL vmlinux 0xb8c18fbb journal_restart +EXPORT_SYMBOL vmlinux 0xb8c8659a ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xb8dc1749 neigh_destroy +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8fc86e2 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xb917901c register_netdev +EXPORT_SYMBOL vmlinux 0xb920361e nf_register_hook +EXPORT_SYMBOL vmlinux 0xb9209535 of_find_property +EXPORT_SYMBOL vmlinux 0xb948edb2 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9746e39 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xb98983e5 omapdss_sdi_display_disable +EXPORT_SYMBOL vmlinux 0xb98a0185 rtc_tm_to_time +EXPORT_SYMBOL vmlinux 0xb997e172 sock_no_poll +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9e52429 __wake_up +EXPORT_SYMBOL vmlinux 0xb9e8b319 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xb9f3e588 input_grab_device +EXPORT_SYMBOL vmlinux 0xba028f4c omap_dss_get_next_device +EXPORT_SYMBOL vmlinux 0xba097a17 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xba423ec4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba9c63fb bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xbaaa5342 registered_fb +EXPORT_SYMBOL vmlinux 0xbaaab8ae timespec_to_jiffies +EXPORT_SYMBOL vmlinux 0xbaac427c get_mem_type +EXPORT_SYMBOL vmlinux 0xbab320f5 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xbb167766 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xbb189cad disallow_signal +EXPORT_SYMBOL vmlinux 0xbb2858e8 pl330_submit_req +EXPORT_SYMBOL vmlinux 0xbb29f992 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xbb2b4612 rwsem_is_locked +EXPORT_SYMBOL vmlinux 0xbb36a905 napi_frags_skb +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba159e0 files_lglock_local_unlock +EXPORT_SYMBOL vmlinux 0xbbb371ae dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xbbe014ef neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xbbea40bc ethtool_op_set_tso +EXPORT_SYMBOL vmlinux 0xbbef1b6b mmc_can_reset +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc5027bc fib_default_rule_pref +EXPORT_SYMBOL vmlinux 0xbc549d2e clk_get_rate +EXPORT_SYMBOL vmlinux 0xbc860222 gpmc_read_status +EXPORT_SYMBOL vmlinux 0xbc8c5e19 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xbc95358d dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xbc98ef97 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xbc9e28e4 __devm_release_region +EXPORT_SYMBOL vmlinux 0xbca2efd7 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xbcb8014d clk_unregister +EXPORT_SYMBOL vmlinux 0xbd078aa7 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xbd3c9a03 splice_from_pipe_end +EXPORT_SYMBOL vmlinux 0xbd593ecf poll_freewait +EXPORT_SYMBOL vmlinux 0xbd5988d9 genl_register_family_with_ops +EXPORT_SYMBOL vmlinux 0xbd59d8fc bdi_unregister +EXPORT_SYMBOL vmlinux 0xbd614bc5 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xbd64c9af udplite_prot +EXPORT_SYMBOL vmlinux 0xbd7c818c inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xbd7cd4d5 ip6_route_output +EXPORT_SYMBOL vmlinux 0xbd823251 dev_uc_del +EXPORT_SYMBOL vmlinux 0xbda3d172 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xbdbe7378 cookie_check_timestamp +EXPORT_SYMBOL vmlinux 0xbdc1139b mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xbde2367b tcp_proc_register +EXPORT_SYMBOL vmlinux 0xbdec0db2 omap_readb +EXPORT_SYMBOL vmlinux 0xbdf0dfca scsi_register +EXPORT_SYMBOL vmlinux 0xbdf2580d __raw_readsl +EXPORT_SYMBOL vmlinux 0xbdf5c25c rb_next +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1673af tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xbe17ee3e dquot_alloc +EXPORT_SYMBOL vmlinux 0xbe2c0274 add_timer +EXPORT_SYMBOL vmlinux 0xbe36668c udp_proc_register +EXPORT_SYMBOL vmlinux 0xbe397369 dev_close +EXPORT_SYMBOL vmlinux 0xbe46ebdf tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xbe505d04 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource +EXPORT_SYMBOL vmlinux 0xbe6efa45 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xbea549f2 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xbeaef59a force_sig +EXPORT_SYMBOL vmlinux 0xbeb62ada deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xbedffbac ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef045b8 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xbef3e55f n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf08f63b tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xbf16ed49 bio_copy_kern +EXPORT_SYMBOL vmlinux 0xbf1faebe mutex_trylock +EXPORT_SYMBOL vmlinux 0xbf3ede76 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xbf45d042 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xbf4f02de nand_scan_bbt +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa78cd6 dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xbfd59d4c input_allocate_device +EXPORT_SYMBOL vmlinux 0xbfdff814 of_get_address +EXPORT_SYMBOL vmlinux 0xbfe1007b blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc00d1f27 inet_sendpage +EXPORT_SYMBOL vmlinux 0xc022b772 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc02cf69b clkdev_drop +EXPORT_SYMBOL vmlinux 0xc0580937 rb_erase +EXPORT_SYMBOL vmlinux 0xc05d2dbd uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xc0626de2 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc06ec2c8 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0b2494c vfsmount_lock_lock_init +EXPORT_SYMBOL vmlinux 0xc0cf95f9 omap_vrfb_request_ctx +EXPORT_SYMBOL vmlinux 0xc0d1d03e dev_err +EXPORT_SYMBOL vmlinux 0xc0f67b6b dma_async_memcpy_buf_to_pg +EXPORT_SYMBOL vmlinux 0xc10404c3 start_tty +EXPORT_SYMBOL vmlinux 0xc112ae59 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc158d5c5 inet_frags_init +EXPORT_SYMBOL vmlinux 0xc15ef41f dma_mmap_coherent +EXPORT_SYMBOL vmlinux 0xc171456c dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc17b6a0e try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xc181c756 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xc19f9eae bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xc1b0645f journal_extend +EXPORT_SYMBOL vmlinux 0xc1b407b7 netif_rx +EXPORT_SYMBOL vmlinux 0xc1c2dd09 __hw_addr_flush +EXPORT_SYMBOL vmlinux 0xc1fed87d cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xc20d04ba proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xc2203eb0 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xc2298a5a mark_page_accessed +EXPORT_SYMBOL vmlinux 0xc233d5ba uart_suspend_port +EXPORT_SYMBOL vmlinux 0xc256e762 __bitmap_equal +EXPORT_SYMBOL vmlinux 0xc2850049 seq_open_private +EXPORT_SYMBOL vmlinux 0xc28b9c52 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xc2a4608b splice_from_pipe_next +EXPORT_SYMBOL vmlinux 0xc2cf0301 omapdss_default_get_resolution +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e058a4 idr_get_new_above +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f1bf3d lock_may_read +EXPORT_SYMBOL vmlinux 0xc2f83069 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xc30bab1a scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xc316b98c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0xc31cdbd2 tcp_check_req +EXPORT_SYMBOL vmlinux 0xc33b0064 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xc348cd59 pm860x_page_reg_read +EXPORT_SYMBOL vmlinux 0xc34ff0bb clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc365837b noop_fsync +EXPORT_SYMBOL vmlinux 0xc36a9a5b update_region +EXPORT_SYMBOL vmlinux 0xc37c36e1 omap_writeb +EXPORT_SYMBOL vmlinux 0xc3a9d059 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xc3abbb3b tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xc3b3b47e flush_signals +EXPORT_SYMBOL vmlinux 0xc3ce6991 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xc3cf1128 in_group_p +EXPORT_SYMBOL vmlinux 0xc3fe87c8 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc418677b dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xc43eda7b ppp_register_channel +EXPORT_SYMBOL vmlinux 0xc45ef616 idr_for_each +EXPORT_SYMBOL vmlinux 0xc46a6f04 dput +EXPORT_SYMBOL vmlinux 0xc478e606 find_or_create_page +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4bbb54f register_netdevice +EXPORT_SYMBOL vmlinux 0xc4d82104 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xc4e40df4 __dst_free +EXPORT_SYMBOL vmlinux 0xc4e7d0f9 omap_mcbsp_get_dma_op_mode +EXPORT_SYMBOL vmlinux 0xc4eedae0 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xc4f7127d block_write_end +EXPORT_SYMBOL vmlinux 0xc51079c7 open_exec +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc52f5714 fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0xc53f5f26 journal_stop +EXPORT_SYMBOL vmlinux 0xc54bc3c9 dqstats +EXPORT_SYMBOL vmlinux 0xc54faa25 dentry_open +EXPORT_SYMBOL vmlinux 0xc55d5a97 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xc57282ae ns_capable +EXPORT_SYMBOL vmlinux 0xc59c300d mmc_host_lazy_disable +EXPORT_SYMBOL vmlinux 0xc5a356b5 commit_creds +EXPORT_SYMBOL vmlinux 0xc5a37aa8 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xc5b45463 __generic_file_aio_write +EXPORT_SYMBOL vmlinux 0xc5c59e55 nobh_writepage +EXPORT_SYMBOL vmlinux 0xc5e8dca4 eth_header_parse +EXPORT_SYMBOL vmlinux 0xc5f46566 rb_augment_insert +EXPORT_SYMBOL vmlinux 0xc606d647 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xc6184045 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63d71a4 read_cache_pages +EXPORT_SYMBOL vmlinux 0xc63dffd8 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xc64d1981 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xc6576bb2 sock_i_ino +EXPORT_SYMBOL vmlinux 0xc670cee7 nand_scan_ident +EXPORT_SYMBOL vmlinux 0xc6789050 kill_anon_super +EXPORT_SYMBOL vmlinux 0xc68150d7 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xc6a05313 security_file_mmap +EXPORT_SYMBOL vmlinux 0xc6b13cc6 dma_pool_create +EXPORT_SYMBOL vmlinux 0xc6c55dda xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6f7e321 writeback_inodes_sb_if_idle +EXPORT_SYMBOL vmlinux 0xc6fdfe48 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xc6fe344c i2c_use_client +EXPORT_SYMBOL vmlinux 0xc7069aa3 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc73c8f02 vfs_follow_link +EXPORT_SYMBOL vmlinux 0xc7426ad1 block_write_full_page +EXPORT_SYMBOL vmlinux 0xc74aef8c tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc7519351 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc78bdb6a journal_lock_updates +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4c7a8 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b28a75 truncate_setsize +EXPORT_SYMBOL vmlinux 0xc7c494b3 mii_check_media +EXPORT_SYMBOL vmlinux 0xc7d1b5ad blk_end_request_all +EXPORT_SYMBOL vmlinux 0xc7e1f76e scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc8114ece blk_delay_queue +EXPORT_SYMBOL vmlinux 0xc83f468f cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc856dae2 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xc87823bf twl_i2c_read_u8 +EXPORT_SYMBOL vmlinux 0xc88a3ef7 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xc8a7e2bb get_user_pages +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8d66461 udp_ioctl +EXPORT_SYMBOL vmlinux 0xc9142293 omap_dss_ntsc_timings +EXPORT_SYMBOL vmlinux 0xc9159b2d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xc9203a5f simple_pin_fs +EXPORT_SYMBOL vmlinux 0xc931e772 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xc93eb594 skb_checksum +EXPORT_SYMBOL vmlinux 0xc99092c2 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xc996d097 del_timer +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9d85c2d sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xc9e19034 twl6040_irq_init +EXPORT_SYMBOL vmlinux 0xc9e56b44 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xc9f72f20 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xc9facab2 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xca18ef41 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xca5dbc50 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xca72e90d init_special_inode +EXPORT_SYMBOL vmlinux 0xca84635f elevator_change +EXPORT_SYMBOL vmlinux 0xca8b34b5 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xca9f9c0b generic_pipe_buf_unmap +EXPORT_SYMBOL vmlinux 0xcab17e69 xfrm_cfg_mutex +EXPORT_SYMBOL vmlinux 0xcad023a7 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xcaf6f7a7 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xcb04dd9c ethtool_op_set_tx_ipv6_csum +EXPORT_SYMBOL vmlinux 0xcb0f9cc1 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xcb1b27ac simple_write_end +EXPORT_SYMBOL vmlinux 0xcb1b5610 iget5_locked +EXPORT_SYMBOL vmlinux 0xcb264612 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xcb275c86 inet_frag_find +EXPORT_SYMBOL vmlinux 0xcb4b023d generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xcb54f83c abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xcb7131fb fb_get_options +EXPORT_SYMBOL vmlinux 0xcb7e2683 skb_push +EXPORT_SYMBOL vmlinux 0xcb7f0041 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xcb8d9474 generic_getxattr +EXPORT_SYMBOL vmlinux 0xcb98cd65 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcb99edb0 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0xcb9c82d9 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xcba5fc7d mfd_add_devices +EXPORT_SYMBOL vmlinux 0xcbabb274 clk_get +EXPORT_SYMBOL vmlinux 0xcbb04f7f input_unregister_handle +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcc1584b2 tcp_tso_segment +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc36f32e fb_unregister_client +EXPORT_SYMBOL vmlinux 0xcc43a12b bioset_free +EXPORT_SYMBOL vmlinux 0xcc48c82c register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5ae168 freeze_bdev +EXPORT_SYMBOL vmlinux 0xcc607787 path_is_under +EXPORT_SYMBOL vmlinux 0xcc6979bd neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xcc7fa952 local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0xcc93e922 __put_cred +EXPORT_SYMBOL vmlinux 0xcc97c3a7 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xccac1748 __bforget +EXPORT_SYMBOL vmlinux 0xccbb8352 mdiobus_read +EXPORT_SYMBOL vmlinux 0xccd8aa38 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xcd09d4ea security_path_chmod +EXPORT_SYMBOL vmlinux 0xcd14d36b tcp_connect +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd4122ef md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xcd416cda filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xcd4249e1 sock_update_classid +EXPORT_SYMBOL vmlinux 0xcd4b732f bit_waitqueue +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd644990 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xcd7f87ac tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xcd827ad6 blk_init_queue +EXPORT_SYMBOL vmlinux 0xcd91710f generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xcdb65e99 inet6_release +EXPORT_SYMBOL vmlinux 0xcde172ac radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xce046f4d mii_nway_restart +EXPORT_SYMBOL vmlinux 0xce07c3aa blkdev_fsync +EXPORT_SYMBOL vmlinux 0xce0f95f1 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xce19bac5 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0xce22bd12 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xce255dd0 account_page_writeback +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2937e7 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xce2d7a6c nf_ct_attach +EXPORT_SYMBOL vmlinux 0xce3e55d4 set_page_dirty +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5d861b devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xce7ce037 of_translate_address +EXPORT_SYMBOL vmlinux 0xce9c4a37 dev_addr_init +EXPORT_SYMBOL vmlinux 0xce9c5a61 put_io_context +EXPORT_SYMBOL vmlinux 0xcea899ea down +EXPORT_SYMBOL vmlinux 0xcebecb3c xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xcede3a10 skb_copy +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefad74a d_set_d_op +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf015f7b do_settimeofday +EXPORT_SYMBOL vmlinux 0xcf0680fc tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xcf0cd017 of_parse_phandles_with_args +EXPORT_SYMBOL vmlinux 0xcf3dcaf1 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xcf94479c iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xcfb9006e jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0xcfc048c7 qdisc_watchdog_schedule +EXPORT_SYMBOL vmlinux 0xcfeb0be9 rb_augment_erase_begin +EXPORT_SYMBOL vmlinux 0xd0181f4f __bitmap_xor +EXPORT_SYMBOL vmlinux 0xd03f80b5 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xd0904095 mpage_readpages +EXPORT_SYMBOL vmlinux 0xd0a14228 mmc_start_req +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0d42c42 mod_timer_pending +EXPORT_SYMBOL vmlinux 0xd0e43207 usb_nop_xceiv_register +EXPORT_SYMBOL vmlinux 0xd0ed0cb3 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd11c0dc1 __kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xd142e11a locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xd14f10a9 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xd172cb8d netdev_increment_features +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1d834be send_sig_info +EXPORT_SYMBOL vmlinux 0xd1e02867 kobject_put +EXPORT_SYMBOL vmlinux 0xd1e48f02 nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0xd1f1e551 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd1f9572b deactivate_super +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd276f795 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd2965f6f kthread_should_stop +EXPORT_SYMBOL vmlinux 0xd2b626c2 sock_i_uid +EXPORT_SYMBOL vmlinux 0xd2c3ac79 dev_set_drvdata +EXPORT_SYMBOL vmlinux 0xd2d51180 of_gpio_count +EXPORT_SYMBOL vmlinux 0xd30dd0a0 dev_warn +EXPORT_SYMBOL vmlinux 0xd312a4a8 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3301545 neigh_update +EXPORT_SYMBOL vmlinux 0xd3434c3f kref_sub +EXPORT_SYMBOL vmlinux 0xd34d6bb0 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xd37a91c2 tty_get_baud_rate +EXPORT_SYMBOL vmlinux 0xd38480a0 rb_augment_erase_end +EXPORT_SYMBOL vmlinux 0xd3a60b75 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xd3cff5b6 omap2_mcbsp1_mux_clkr_src +EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xd3dcab0b flex_array_alloc +EXPORT_SYMBOL vmlinux 0xd3ee88cd proc_symlink +EXPORT_SYMBOL vmlinux 0xd4183419 dev_uc_init +EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource +EXPORT_SYMBOL vmlinux 0xd41b20cd task_nice +EXPORT_SYMBOL vmlinux 0xd45c9856 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xd46f023c sk_reset_txq +EXPORT_SYMBOL vmlinux 0xd476b370 fb_show_logo +EXPORT_SYMBOL vmlinux 0xd478d2b9 dev_addr_del +EXPORT_SYMBOL vmlinux 0xd498ea7d genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xd4a95a26 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xd4ba5ae2 pipe_unlock +EXPORT_SYMBOL vmlinux 0xd4e5f1d3 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xd4e78bd8 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xd5152710 sg_next +EXPORT_SYMBOL vmlinux 0xd536af01 free_buffer_head +EXPORT_SYMBOL vmlinux 0xd54e458c find_inode_number +EXPORT_SYMBOL vmlinux 0xd55c50f5 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xd56e9485 omap_set_dma_dest_index +EXPORT_SYMBOL vmlinux 0xd586c026 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xd59c6090 tty_devnum +EXPORT_SYMBOL vmlinux 0xd5ab27b8 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xd5b037e1 kref_put +EXPORT_SYMBOL vmlinux 0xd5b1376d register_shrinker +EXPORT_SYMBOL vmlinux 0xd5cd0742 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xd5f37b82 test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xd5f5259d wireless_send_event +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61c64b3 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd64d667e inet_recvmsg +EXPORT_SYMBOL vmlinux 0xd679bc0e mmc_card_awake +EXPORT_SYMBOL vmlinux 0xd68500bb eth_type_trans +EXPORT_SYMBOL vmlinux 0xd69a840d inode_needs_sync +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd733f955 sget +EXPORT_SYMBOL vmlinux 0xd7484599 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xd77a5aa5 __bitmap_and +EXPORT_SYMBOL vmlinux 0xd7836f3d d_alloc +EXPORT_SYMBOL vmlinux 0xd79b5a02 allow_signal +EXPORT_SYMBOL vmlinux 0xd7abde7c blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xd7dad82c tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7fc19d7 omap_dss_register_driver +EXPORT_SYMBOL vmlinux 0xd807b3c6 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xd823b7b4 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xd842648f fput +EXPORT_SYMBOL vmlinux 0xd89e8345 journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xd8a2ab95 in_egroup_p +EXPORT_SYMBOL vmlinux 0xd8ce3094 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xd8ce7e67 clocksource_register +EXPORT_SYMBOL vmlinux 0xd8d12a58 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f040f1 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xd92afabe bitmap_clear +EXPORT_SYMBOL vmlinux 0xd93d4139 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xd951160a journal_revoke +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd957bb07 __rta_fill +EXPORT_SYMBOL vmlinux 0xd95fbad8 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xd96af00f thermal_cooling_device_unregister +EXPORT_SYMBOL vmlinux 0xd96d1f02 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9930ad6 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xd9a4bce9 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xd9aa27a2 mempool_create_node +EXPORT_SYMBOL vmlinux 0xd9cc48e3 napi_get_frags +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9e4932d dev_get_stats +EXPORT_SYMBOL vmlinux 0xda023745 journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xda13970e udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xda2deda1 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xda3cf2c4 proc_dointvec +EXPORT_SYMBOL vmlinux 0xda5b4a0b generic_file_aio_write +EXPORT_SYMBOL vmlinux 0xda6f6f54 dma_map_sg +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda96b863 elv_rb_find +EXPORT_SYMBOL vmlinux 0xdaaa128b kthread_bind +EXPORT_SYMBOL vmlinux 0xdabe8fbf ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xdac0db61 mdiobus_alloc +EXPORT_SYMBOL vmlinux 0xdb0507e2 get_fs_type +EXPORT_SYMBOL vmlinux 0xdb2178c7 __sg_free_table +EXPORT_SYMBOL vmlinux 0xdb2746b6 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb864d65 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xdb8a165f bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xdb9e2c22 posix_acl_create +EXPORT_SYMBOL vmlinux 0xdbaadaba dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0xdbcd416e sysctl_ip_nonlocal_bind +EXPORT_SYMBOL vmlinux 0xdbd4cb4a of_device_register +EXPORT_SYMBOL vmlinux 0xdbdbee86 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xdbeb1211 journal_ack_err +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc2519e0 param_set_ulong +EXPORT_SYMBOL vmlinux 0xdc2a9f97 get_io_context +EXPORT_SYMBOL vmlinux 0xdc2adb35 add_taint +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc43a9c8 daemonize +EXPORT_SYMBOL vmlinux 0xdc641aa2 of_find_matching_node +EXPORT_SYMBOL vmlinux 0xdc68edec tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xdc798d37 __mutex_init +EXPORT_SYMBOL vmlinux 0xdca7a472 unregister_key_type +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcbad87a max8998_update_reg +EXPORT_SYMBOL vmlinux 0xdcf20f92 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xdcf803f2 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd0bf330 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xdd0e1663 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xdd1c65f6 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2f284a dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xdd5f24cc elv_rb_add +EXPORT_SYMBOL vmlinux 0xdd771d81 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xdd81df8b devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xdd8dbe63 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xdd9c7259 softnet_data +EXPORT_SYMBOL vmlinux 0xddc1ec68 input_flush_device +EXPORT_SYMBOL vmlinux 0xddffd33d nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0xde15c042 omap_set_dma_src_index +EXPORT_SYMBOL vmlinux 0xde214379 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xde2774c5 __lru_cache_add +EXPORT_SYMBOL vmlinux 0xde3555dc vsc824x_add_skew +EXPORT_SYMBOL vmlinux 0xde378c34 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xde3c68a6 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xde3f51dd i2c_verify_client +EXPORT_SYMBOL vmlinux 0xde56e195 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xde692d94 omap_get_dma_chain_src_pos +EXPORT_SYMBOL vmlinux 0xde6c07af ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xde7c832e scsi_host_get +EXPORT_SYMBOL vmlinux 0xde7d3b59 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xde8c763d cpu_v7_set_pte_ext +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xdea9b828 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xdec555d9 skb_seq_read +EXPORT_SYMBOL vmlinux 0xded1bb26 scsi_get_command +EXPORT_SYMBOL vmlinux 0xdf070a93 key_alloc +EXPORT_SYMBOL vmlinux 0xdf1b634e pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xdf1ef69f wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xdf25bbfb d_prune_aliases +EXPORT_SYMBOL vmlinux 0xdf2a5cc6 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xdf4306ff mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xdf48a0eb flex_array_put +EXPORT_SYMBOL vmlinux 0xdf4c7a07 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xdf4c8767 ns_to_timeval +EXPORT_SYMBOL vmlinux 0xdf57cfcd netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xdf5d870f blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf670eca generic_delete_inode +EXPORT_SYMBOL vmlinux 0xdf74a9ae dev_load +EXPORT_SYMBOL vmlinux 0xdf758bb4 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf9ca160 cdrom_open +EXPORT_SYMBOL vmlinux 0xdfb01a80 cpu_v7_dcache_clean_area +EXPORT_SYMBOL vmlinux 0xdfb8b06f netlink_dump_start +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfd96c2e scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xe045bb1c mount_subtree +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05399a3 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07c5b0c input_close_device +EXPORT_SYMBOL vmlinux 0xe0a81819 neigh_table_init +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c12089 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe0dfe46d ethtool_op_get_flags +EXPORT_SYMBOL vmlinux 0xe0fc24aa param_set_int +EXPORT_SYMBOL vmlinux 0xe106154f omap_vram_get_info +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11df92e journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xe13bd301 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xe14e05e8 eth_header +EXPORT_SYMBOL vmlinux 0xe16b893b mutex_lock +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17f469e file_sb_list_del +EXPORT_SYMBOL vmlinux 0xe1ccece7 block_truncate_page +EXPORT_SYMBOL vmlinux 0xe1de06d9 __cleancache_flush_page +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2098024 icmpv6_send +EXPORT_SYMBOL vmlinux 0xe22abb33 mount_bdev +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe23c6f92 release_pages +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe273c247 bmap +EXPORT_SYMBOL vmlinux 0xe2a0f20b mmc_register_driver +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2df3a05 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe319e837 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xe327b0b6 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xe352156d sk_reset_timer +EXPORT_SYMBOL vmlinux 0xe36a35b7 journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe376fbeb tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr +EXPORT_SYMBOL vmlinux 0xe38fff12 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3deed23 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xe3f75c87 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xe49775f9 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xe4abe026 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4ebf7af page_readlink +EXPORT_SYMBOL vmlinux 0xe4ef2a6e aio_put_req +EXPORT_SYMBOL vmlinux 0xe5122890 flow_cache_genid +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5250c84 key_unlink +EXPORT_SYMBOL vmlinux 0xe5445af6 omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xe5608864 single_release +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe592143f dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0xe596c32e ppp_channel_index +EXPORT_SYMBOL vmlinux 0xe5a15784 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xe5a31e0d dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xe5b12399 d_move +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5dab8ee d_instantiate +EXPORT_SYMBOL vmlinux 0xe5e8c921 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xe5eb1427 d_alloc_name +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe62249a8 mpage_readpage +EXPORT_SYMBOL vmlinux 0xe66dd1a3 ip_route_input_common +EXPORT_SYMBOL vmlinux 0xe6744a89 omap_clear_dma +EXPORT_SYMBOL vmlinux 0xe6780947 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69e6511 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xe6a40ba1 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xe6c3ebb0 __raw_writesw +EXPORT_SYMBOL vmlinux 0xe6d94c7b mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xe6e86ef8 dcb_setapp +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7077916 dquot_operations +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe718a391 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xe73d0fde sleep_on +EXPORT_SYMBOL vmlinux 0xe7609b0d generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe7722171 flex_array_free +EXPORT_SYMBOL vmlinux 0xe79a116f tcp_ioctl +EXPORT_SYMBOL vmlinux 0xe7a28bf2 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xe7a664c4 nf_hooks +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe80ce219 sysctl_tcp_dma_copybreak +EXPORT_SYMBOL vmlinux 0xe8158adb tcf_register_action +EXPORT_SYMBOL vmlinux 0xe835c4e8 fb_get_mode +EXPORT_SYMBOL vmlinux 0xe85e7e0e set_blocksize +EXPORT_SYMBOL vmlinux 0xe8690ff1 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87ed1ce idr_replace +EXPORT_SYMBOL vmlinux 0xe8b63ace radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xe8bc04f3 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xe8c1a051 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xe8c46934 poll_initwait +EXPORT_SYMBOL vmlinux 0xe8da2818 nla_append +EXPORT_SYMBOL vmlinux 0xe8e97ec4 i2c_release_client +EXPORT_SYMBOL vmlinux 0xe8ebf346 ab8500_gpadc_ad_to_voltage +EXPORT_SYMBOL vmlinux 0xe90db173 do_mmap_pgoff +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe93d0ed4 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe977585b scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xe97ed621 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xe9c3f1c4 phy_print_status +EXPORT_SYMBOL vmlinux 0xe9ce8b95 omap_ioremap +EXPORT_SYMBOL vmlinux 0xe9d6011a phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xe9e12a39 init_net +EXPORT_SYMBOL vmlinux 0xe9e96f2d skb_copy_and_csum_datagram_iovec +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea10212a int_to_scsilun +EXPORT_SYMBOL vmlinux 0xea10655a __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xea3749b3 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xea3c0111 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea8a6c75 param_ops_long +EXPORT_SYMBOL vmlinux 0xea9855ae blk_limits_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xea9fb9df rename_lock +EXPORT_SYMBOL vmlinux 0xead756ef flush_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaecc4a5 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xeaee5ada blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb1e6088 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb5fb656 empty_aops +EXPORT_SYMBOL vmlinux 0xeb66cb94 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xeb8eaeac scsi_put_command +EXPORT_SYMBOL vmlinux 0xeba677bd posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xebad6c92 lro_receive_frags +EXPORT_SYMBOL vmlinux 0xebb692e0 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xebc2423d nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xebdbe48c radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec0ec588 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xec15f00a tcp_cookie_generator +EXPORT_SYMBOL vmlinux 0xec45bf15 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4e50df free_user_ns +EXPORT_SYMBOL vmlinux 0xec55fe02 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xec697d76 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xec6a4d04 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xec7f3ea8 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xecc4b623 genphy_update_link +EXPORT_SYMBOL vmlinux 0xeceef448 unlock_super +EXPORT_SYMBOL vmlinux 0xed2b91bd find_lock_page +EXPORT_SYMBOL vmlinux 0xed302f0f tty_lock +EXPORT_SYMBOL vmlinux 0xed47dcc9 tty_port_put +EXPORT_SYMBOL vmlinux 0xed61cb5a unlock_buffer +EXPORT_SYMBOL vmlinux 0xed6e1c16 __bread +EXPORT_SYMBOL vmlinux 0xed854dac omap_stop_dma_chain_transfers +EXPORT_SYMBOL vmlinux 0xed92f523 blk_run_queue +EXPORT_SYMBOL vmlinux 0xeda0d76e gen_estimator_active +EXPORT_SYMBOL vmlinux 0xedaa2a6a vfs_write +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xede98f52 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xedeb22bb no_llseek +EXPORT_SYMBOL vmlinux 0xedf302c2 nf_log_register +EXPORT_SYMBOL vmlinux 0xee00333b dev_disable_lro +EXPORT_SYMBOL vmlinux 0xee01fc14 vfs_symlink +EXPORT_SYMBOL vmlinux 0xee108f30 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xee296a3e __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xee2c9178 dma_mmap_writecombine +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee6f00c5 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xee997103 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeed0c9a input_unregister_handler +EXPORT_SYMBOL vmlinux 0xef291087 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xef43db0f sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xef5a9afa empty_zero_page +EXPORT_SYMBOL vmlinux 0xef83a172 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xef93c3af skb_copy_datagram_iovec +EXPORT_SYMBOL vmlinux 0xef974e8f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xefadb6c1 mpage_writepage +EXPORT_SYMBOL vmlinux 0xefb61f49 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xefb66a95 omap_request_dma_chain +EXPORT_SYMBOL vmlinux 0xefc4889a eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 +EXPORT_SYMBOL vmlinux 0xefd78a74 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xefdbd0e5 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xefdd2345 sg_init_one +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xefefad63 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xeff8b6ef xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00c6e10 netdev_printk +EXPORT_SYMBOL vmlinux 0xf016fb78 do_truncate +EXPORT_SYMBOL vmlinux 0xf017aa16 tty_register_device +EXPORT_SYMBOL vmlinux 0xf01db99f sk_release_kernel +EXPORT_SYMBOL vmlinux 0xf029ea77 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xf0373511 kill_block_super +EXPORT_SYMBOL vmlinux 0xf04311a8 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xf051e63c tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xf09a2d23 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xf09b45fb seq_puts +EXPORT_SYMBOL vmlinux 0xf0c8b27a sock_create_kern +EXPORT_SYMBOL vmlinux 0xf0c8d078 twl6040_power +EXPORT_SYMBOL vmlinux 0xf0d19276 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f1246c kvasprintf +EXPORT_SYMBOL vmlinux 0xf0f28ddd mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xf1216c75 prandom32 +EXPORT_SYMBOL vmlinux 0xf154b923 ndisc_build_skb +EXPORT_SYMBOL vmlinux 0xf1595671 get_unmapped_area_prot +EXPORT_SYMBOL vmlinux 0xf1852467 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1a3c919 omap_mcbsp_set_tx_threshold +EXPORT_SYMBOL vmlinux 0xf1bd43b7 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xf1cf3036 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1eabd48 sg_miter_next +EXPORT_SYMBOL vmlinux 0xf1ebb0c5 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xf1f98301 dquot_drop +EXPORT_SYMBOL vmlinux 0xf202c5cb radix_tree_insert +EXPORT_SYMBOL vmlinux 0xf206151c security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2130e73 phy_driver_register +EXPORT_SYMBOL vmlinux 0xf21c5ee0 noop_qdisc +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2470a9d dump_write +EXPORT_SYMBOL vmlinux 0xf2584e09 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xf258729c sync_inode +EXPORT_SYMBOL vmlinux 0xf26df746 omap_vram_free +EXPORT_SYMBOL vmlinux 0xf273fc3d cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xf28e1e3e omap_st_disable +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2cb49e0 do_sync_write +EXPORT_SYMBOL vmlinux 0xf2d79a1f abx500_register_ops +EXPORT_SYMBOL vmlinux 0xf2e5a880 tcf_hash_destroy +EXPORT_SYMBOL vmlinux 0xf2f157f9 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf338d4c3 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3470fc2 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xf3652bda register_qdisc +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf39bf4d9 put_cmsg +EXPORT_SYMBOL vmlinux 0xf3a85cff ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xf3bf0bce __bitmap_complement +EXPORT_SYMBOL vmlinux 0xf3de83e8 security_path_mknod +EXPORT_SYMBOL vmlinux 0xf3f4657a genl_unregister_mc_group +EXPORT_SYMBOL vmlinux 0xf42934cc jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xf42a0fef bdi_init +EXPORT_SYMBOL vmlinux 0xf44129f2 con_is_bound +EXPORT_SYMBOL vmlinux 0xf45344ae netdev_info +EXPORT_SYMBOL vmlinux 0xf4696169 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xf47763db unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL vmlinux 0xf4be3e9b register_sysctl_table +EXPORT_SYMBOL vmlinux 0xf4d02802 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf4d1364a rfkill_alloc +EXPORT_SYMBOL vmlinux 0xf4e7c8ff kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf51460bd bio_map_user +EXPORT_SYMBOL vmlinux 0xf51c7abb scsi_device_put +EXPORT_SYMBOL vmlinux 0xf51e5297 md_register_thread +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54ba601 omap_mcbsp_config +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf54efa12 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf5a65d34 skb_set_dev +EXPORT_SYMBOL vmlinux 0xf5bf9334 dget_parent +EXPORT_SYMBOL vmlinux 0xf5c05914 generic_segment_checks +EXPORT_SYMBOL vmlinux 0xf5c9012e timespec_trunc +EXPORT_SYMBOL vmlinux 0xf5cf326a param_ops_short +EXPORT_SYMBOL vmlinux 0xf5e4a9be of_get_parent +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf612809a param_get_int +EXPORT_SYMBOL vmlinux 0xf61ed089 netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xf6288e02 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf65c9518 user_path_create +EXPORT_SYMBOL vmlinux 0xf684ab9b __lock_page +EXPORT_SYMBOL vmlinux 0xf68601db phy_find_first +EXPORT_SYMBOL vmlinux 0xf68e8c13 input_set_capability +EXPORT_SYMBOL vmlinux 0xf6b8567d downgrade_write +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c18c9a fsync_bdev +EXPORT_SYMBOL vmlinux 0xf6d49898 omapdss_dpi_display_disable +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f3cef6 omap_vrfb_setup +EXPORT_SYMBOL vmlinux 0xf6f63683 ata_link_printk +EXPORT_SYMBOL vmlinux 0xf6fb117c bio_integrity_get_tag +EXPORT_SYMBOL vmlinux 0xf707a0db mmc_suspend_host +EXPORT_SYMBOL vmlinux 0xf70a7177 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xf721d51c nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0xf755281d dma_supported +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf76c5a4f dma_set_mask +EXPORT_SYMBOL vmlinux 0xf7739e9d get_disk +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf78d04ab netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xf7b1c825 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xf7b1e116 blk_peek_request +EXPORT_SYMBOL vmlinux 0xf7c61815 get_omap3_evm_rev +EXPORT_SYMBOL vmlinux 0xf7e7778d request_key +EXPORT_SYMBOL vmlinux 0xf803fe39 bitmap_set +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf821ba63 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xf841e5e7 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xf84b3fa8 tcp_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xf84eb693 seq_path +EXPORT_SYMBOL vmlinux 0xf853bbca omap_vrfb_map_angle +EXPORT_SYMBOL vmlinux 0xf86af23b tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf8802498 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xf88c3301 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88dc6fb tcp_seq_open +EXPORT_SYMBOL vmlinux 0xf890fe7f pm_idle +EXPORT_SYMBOL vmlinux 0xf8aa6205 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xf8ca5084 mdiobus_write +EXPORT_SYMBOL vmlinux 0xf8ce0b68 override_creds +EXPORT_SYMBOL vmlinux 0xf8fbb4f0 __bad_xchg +EXPORT_SYMBOL vmlinux 0xf9022d68 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xf911d01e security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xf91b1c8c delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xf92322ba ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf96bb903 skb_append +EXPORT_SYMBOL vmlinux 0xf97e73b9 save_mount_options +EXPORT_SYMBOL vmlinux 0xf9987fb5 sock_no_getname +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b48e62 journal_load +EXPORT_SYMBOL vmlinux 0xf9d79469 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xf9df01da __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9fdccc5 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xfa082128 down_interruptible +EXPORT_SYMBOL vmlinux 0xfa0981a5 give_up_console +EXPORT_SYMBOL vmlinux 0xfa2121ea unregister_console +EXPORT_SYMBOL vmlinux 0xfa2395e6 inet_getname +EXPORT_SYMBOL vmlinux 0xfa431974 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xfa5cdbe7 alloc_tty_driver +EXPORT_SYMBOL vmlinux 0xfa6a7e47 omap_dss_start_device +EXPORT_SYMBOL vmlinux 0xfa7b9f7f alloc_file +EXPORT_SYMBOL vmlinux 0xfa82582d tcp_parse_options +EXPORT_SYMBOL vmlinux 0xfa84c3f4 d_path +EXPORT_SYMBOL vmlinux 0xfaaaae84 skb_unlink +EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xfac856bf neigh_event_ns +EXPORT_SYMBOL vmlinux 0xfac9bd36 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xfaca91f0 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xfacd2e14 pgprot_user +EXPORT_SYMBOL vmlinux 0xfada2093 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xfae1565c skb_insert +EXPORT_SYMBOL vmlinux 0xfaf98462 bitrev32 +EXPORT_SYMBOL vmlinux 0xfb1b63fe simple_rmdir +EXPORT_SYMBOL vmlinux 0xfb210206 inet_put_port +EXPORT_SYMBOL vmlinux 0xfb21cf23 backlight_force_update +EXPORT_SYMBOL vmlinux 0xfb275b38 bdev_read_only +EXPORT_SYMBOL vmlinux 0xfb3e6c4d simple_map_init +EXPORT_SYMBOL vmlinux 0xfb53c648 of_phy_connect +EXPORT_SYMBOL vmlinux 0xfb5bdb9d key_link +EXPORT_SYMBOL vmlinux 0xfb5f8933 kill_fasync +EXPORT_SYMBOL vmlinux 0xfb658396 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7d26f4 files_lglock_lock_init +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfba40579 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb5b35c dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xfbe27a1c rb_first +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0fc2b4 pid_task +EXPORT_SYMBOL vmlinux 0xfc1443e5 scsi_add_device +EXPORT_SYMBOL vmlinux 0xfc358bc6 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc6c191d blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xfc9cbe1d __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xfca01936 genl_register_ops +EXPORT_SYMBOL vmlinux 0xfca8d26f mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xfcaa04a0 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xfcb992da __sock_create +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcd35070 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xfcdb187a sk_wait_data +EXPORT_SYMBOL vmlinux 0xfce9fb84 omap_dss_find_device +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcef6481 may_umount +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd6293c2 boot_tvec_bases +EXPORT_SYMBOL vmlinux 0xfd649195 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xfd6b3d0c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xfd985441 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xfda0dbe8 ftrace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xfdcc1023 sock_wake_async +EXPORT_SYMBOL vmlinux 0xfdce6df3 dev_open +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe09aed8 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xfe4c4d64 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe634f58 add_wait_queue +EXPORT_SYMBOL vmlinux 0xfe769456 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xfe78b6ab sk_run_filter +EXPORT_SYMBOL vmlinux 0xfec3c2f2 bcd2bin +EXPORT_SYMBOL vmlinux 0xfecd1e7e nf_getsockopt +EXPORT_SYMBOL vmlinux 0xfed0cb7d __cleancache_flush_inode +EXPORT_SYMBOL vmlinux 0xfedd35fc console_suspend_enabled +EXPORT_SYMBOL vmlinux 0xfeee83c1 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xfef96e23 __scsi_print_command +EXPORT_SYMBOL vmlinux 0xff1132df arp_tbl +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2b0fa1 omap_mcbsp_get_max_rx_threshold +EXPORT_SYMBOL vmlinux 0xff6084e2 clk_register +EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff830a40 simple_link +EXPORT_SYMBOL vmlinux 0xff9a7521 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa63087 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffc0c58c add_disk +EXPORT_SYMBOL vmlinux 0xffc38a0d sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xffc41b2e set_bdi_congested +EXPORT_SYMBOL vmlinux 0xffce1b3d generic_setlease +EXPORT_SYMBOL vmlinux 0xffcf0278 serio_open +EXPORT_SYMBOL vmlinux 0xffd2cf99 omap_dss_get_num_overlay_managers +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xfff1bc96 setattr_copy +EXPORT_SYMBOL vmlinux 0xfff6d129 lro_flush_pkt +EXPORT_SYMBOL vmlinux 0xfffc9b5e journal_start_commit +EXPORT_SYMBOL_GPL crypto/af_alg 0x010600e2 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x24cdc6b9 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x8dd02fa8 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb257fe1e af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xbe6a9a67 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xca5ac445 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xdf623e43 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xdfab0bcb af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xe4649fde af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb1826638 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x56a98519 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa13db805 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x0cc1ad22 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb61df0bf async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5eb120a9 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x70c0ba79 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8c343b8e async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xeedfccf3 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x30e83d10 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x50374b90 async_xor +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xf3be5fcd blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x1e640988 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4935be36 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x569f7495 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x58956f69 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x67113a86 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x6c19ddca cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xced283f9 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xd28b8f44 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xd6cf237c cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xedddd49b cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xa97b5f0f twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x036b6638 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x074bef1f ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x37c105e2 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4e55a5cd ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x51f4a0a7 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5eacba1f ahci_interrupt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x60677d32 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6981d51e ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x754b20f8 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x82558bad ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb61bb2e6 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb84fa165 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc603bc84 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdad850d7 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe3aa2e81 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe62399b9 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe6e07407 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf6464980 ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfa185b52 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x086d3b08 __pata_platform_remove +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xb019ff5e __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0c919e2f __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x20fc5771 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x404ed307 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5922241f bcma_core_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68c87256 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6cdaca27 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x724ac5d2 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa197fd68 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa789409f bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbeae6565 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf746d9f bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc84350d7 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd9f39a2d bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x321bfda9 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7f3395f9 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc94f9446 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd6b5c7b6 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdac56766 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe8d820f0 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xec217237 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xecb755ba btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xd8dc3093 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xed0aad4b bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x0fb27f96 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x12ab17aa __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x03497de1 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc2cd41a9 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x077a5c38 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b67a8e9 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14db5b8c hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19643ee8 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c740ca2 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x221fb1e2 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c7f591b hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3049c9e0 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x456d17dc hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x475f67b0 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5bb7f9ba hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6837168d hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7be70a72 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fc6bd2a hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b303e56 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a2b8fa5 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7a7fa09 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1b28e2d hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdf009fc hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd64b10e8 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9f0e215 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe56b900f hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xea11082d hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xebb1ccb0 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf44a8571 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf807bcd1 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xb84d8986 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x194fad2e roccat_common_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5c9c8c23 roccat_common_receive +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x375fcef4 usbhid_wait_io +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x5917cd2e usbhid_submit_report +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x727988f0 usbhid_set_leds +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa85827fe hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x144bb994 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf44e5e32 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x73df7d2e i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd207d70c i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x7d519a35 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xd8ca127b adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x14cb22d3 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x293f7605 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x34816b5f wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x55611c73 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5cd27e89 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x853cb63a wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8a54e3c4 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbe59f41d wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc01475c6 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xde57d7c4 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe6bba846 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf82b6bc1 wm9713_codec +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0x0ef221ba omap_iommu_vmap +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0x9b3cf087 omap_iommu_vfree +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0xa0f04fbb omap_da_to_va +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0xb6418220 omap_find_iovm_area +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0xc41919a3 omap_iommu_vmalloc +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0xd13af003 omap_iommu_vunmap +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x4de7b2d0 unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xb17b7c77 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x07148662 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0a92bf0a gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x32bdd2e4 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7fcf21e3 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x85edace4 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x86c95bac gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8f3891f5 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x915ea62f gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaae33d7f gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc2b7e9e8 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc3222bea gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcaf26346 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd186f387 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xde3cc37a gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe8f15230 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf7a5bdf6 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfd92adf6 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x773c6ad9 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x89813dbe dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8f5224ab dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3b444aae dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x65fc86b8 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7e48a9f5 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd6a84fda dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf08181d5 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92e190d dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x03ced457 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x08a936ca dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x61c7c085 dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b2ff62 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80c89b3d dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x998ca9c4 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa6aae3ea dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb7bad799 dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb967690a dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbaa513b0 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbc5fe7c1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca2bde4d dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xccaeb9ae dm_sm_checker_create_fresh +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd32479bc dm_sm_checker_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdb562135 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf99dc2cf dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/raid1 0xf90f6ada md_raid1_congested +EXPORT_SYMBOL_GPL drivers/md/raid456 0xaa686291 md_raid5_congested +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mt20xx 0x50fbb2c3 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mxl5007t 0xed1a3e42 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda18271 0x7b1c73db tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda827x 0xa51b11ee tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0x2618980f tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0xa1db7f3b tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda9887 0xb2525b57 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x8a390ec7 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0xa2519788 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x3c7af500 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0xe5315f75 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tuner-simple 0x1752e5c9 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-demod 0xd7287ae7 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-tuner 0xbf36fcf6 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/frontends/tda18271c2dd 0x97c207fd tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x22b7c65b smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x33c592a3 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x373dfb45 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x3ee5ec3c smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x482591fb smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x6a373b38 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x74d9ed13 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x76222253 sms_get_board +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x8644573f smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x945d5171 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x954b4725 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x957dec9b sms_board_event +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa0132b61 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa42d2998 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xab522958 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xc7f40050 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xe705593c smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xea4d4437 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x05fb336e rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x15a3a881 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x49070840 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4c3dc428 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x53889243 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6261e3aa rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x647773b6 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7d7836c6 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x816172bf rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x84fc67ee rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa6d03085 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf6d3ded rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb00c2406 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdd3af299 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe0e762ff ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeb7d8b1b rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf33e8986 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x0df292fb cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x10a39479 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x1fa53bb5 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x24bd4c7a cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x3d376fe6 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x4ee0c47c cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x557556c3 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x5cc5b2f9 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x7e859cea cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x87ae6d0a cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x94df695e cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x95e8c3cc is_fw_load +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x9727b979 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xa6980b5d cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xaa53fd9f cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xcfb33bbd cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xdd5e6bdb cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xdf08920e cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xf5c20655 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x01bcb098 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x210ef9a0 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x24c7e2da em28xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x3a8f349f em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x5666f834 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xa13d91e2 em28xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xc6a459c8 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xe6c53735 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xe8779c0b em28xx_isoc_dvb_max_packetsize +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xf3c8dd92 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/video/omap/omap-vout 0x149c627c omap_vout_new_format +EXPORT_SYMBOL_GPL drivers/media/video/omap/omap-vout 0x6e8f579f omap_vout_try_window +EXPORT_SYMBOL_GPL drivers/media/video/omap/omap-vout 0x9dea2c48 omap_vout_new_crop +EXPORT_SYMBOL_GPL drivers/media/video/omap/omap-vout 0xd49da048 omap_vout_new_window +EXPORT_SYMBOL_GPL drivers/media/video/omap/omap-vout 0xfada383c omap_vout_default_crop +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x3284641e tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x69789901 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x9889af51 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xc708f3fc tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x2d38ac1b v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x3ddce747 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x82620963 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x94632f90 v4l_fill_dv_preset_info +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xbcb31d68 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xcaaa2b00 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xdc2192a1 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x268b2c1e v4l2_int_ioctl_0 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x3d5965db v4l2_int_ioctl_1 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa5228b24 v4l2_int_device_try_attach_all +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xb1a94a1b v4l2_int_device_register +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xba851363 v4l2_int_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x3ab0c154 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x4633cccc v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x5bfd09bf v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x8b99c7fd v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x9556f324 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x96c46546 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x98d225d9 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xa58c421f v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xa89981b2 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xb97b818a v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc7c5f5a5 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xdfa61d20 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xfc7e9414 v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x0a57522c videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x0b6e1a64 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x1331b78a videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x1d2b85ea videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x2d6dd809 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x57f9a5e0 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x58739576 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x5e9d5c94 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6b4b175e videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6f9e44af videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x74bced06 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7633a732 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7c1bfbee videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7de5cb29 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x888809ef videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8ece8ff1 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8eec7aaf videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x9a90291b videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xb974d66f videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xbae063ec __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xc8897616 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xea68cf0e videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xeff2db33 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xf720fbdc videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x244d1129 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x3c8cac49 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0xd841db0c videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x98eee274 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x9fe56fd1 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0xdf2d1ab7 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x0c454e8c vb2_write +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x100f0e56 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x10c30bb5 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x122f5f51 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x4b75c973 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x51b5eaa9 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x593d3ff2 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x66f7a5c7 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x8a3ae4e8 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x99c4a945 vb2_read +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xa2bbb180 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xb462c6f0 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xbad21924 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xca4db702 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xe1581a2c vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xfc8ea40a vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xfeb5cbf2 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0x3c98cf00 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xb6dcd632 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x0f4ff707 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x2f349c55 vb2_get_contig_userptr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xa996331b vb2_put_vma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xe1aaf8a4 vb2_mmap_pfn_range +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-vmalloc 0x78c9cf3f vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0083977b v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0462e8b3 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x206b57be v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x2d3d5510 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x3735e6d8 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x3afc6fba v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x45e22b85 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x5b50472c v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x67a0cc45 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x6d4fb385 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x72b7a0d2 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x8193397a v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x83e8e024 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x8d539884 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x93d7c4ae v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x97a61479 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xa6ed099d v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xac225aa0 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xc43bdcaa v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xc6b58390 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xdde2b960 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xe105f960 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29d1d107 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x04d92b70 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x49ae673a pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x591c6198 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7e28d728 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7f013724 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x80f4f268 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x97305a50 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab285716 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb51382a4 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdd057e09 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf4919344 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x725d9ac1 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb5acee6b pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x480548ea pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6c3ba19a pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa132f457 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb927abd7 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xff9f9b8e pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4c885fe2 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6b7b2f13 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8c04acab sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9e4010d3 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa3fde6e9 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/twl4030-madc 0x08b8dd2e twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/mfd/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xb22c5e01 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x306c40a3 wm8400_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x3cbdabf6 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x4074c371 wm8400_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xbc679d0d wm8400_block_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x2df115d4 eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d14d2f eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x08f8ea28 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x09320d3e enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x16e733b9 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3abaf370 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x42ff1602 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x518e92a4 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfda9d879 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x08ac94d6 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1dca177e lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2ff4a11c lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x31eae0dc lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a6e0d7e lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9f4aea38 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa9297e78 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x5e7cb021 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xfdc926f6 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0bae163f sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0cbad832 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x15f82733 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1d965b02 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x61c03e38 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x83946ad3 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x059ec9a3 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2c843200 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7af42155 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5199f47f cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xae9ec014 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xfcab3752 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x9a472458 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x466f3736 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7f288c1d cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc7790d87 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2000 0x32c17c93 DoC2k_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001 0xe924923c DoCMil_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001plus 0xe5ae52fa DoCMilPlus_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/docecc 0x45937659 doc_decode_ecc +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x0e4d2eaf onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x78785679 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0041fa10 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0e8cc068 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6080cc2f ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f09ba8a ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8ee83bb7 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa6122f3b ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa835e1f9 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xba28feac ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbe78111a ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc864bf88 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcfc06cd7 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd2a7cf0f ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd528fc2a ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeaa23902 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd6f0ef9 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1b9fdc71 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4c260f4b free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc59d5ca6 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe8c4994c register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x00371481 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x197bdb20 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x38bc2a06 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4121e184 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x604a9634 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x634886da open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x69b04ca5 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x85df41a3 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9a7f44d8 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbfe7ecef can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd980b2ae alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfd9cc273 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x17361f8c alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x81b52e12 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbf7a39c5 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcdaa2fa0 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x02bf95e5 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4752f87a macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7b34b78e macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7d9c178a macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc03dab4a macvlan_start_xmit +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x8094fa58 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x12bb0ec4 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6327232c usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9b4b289a usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbd5b1905 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1527a84e rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1690e08f rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6e46a984 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7eb8b935 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xab522508 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xeab915cd rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x047ac540 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x245161c7 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36833c02 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e1bb4a5 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3ea92c55 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f005b52 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46f967b3 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a73ee3c usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c6d1ad6 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x51ba3a0e usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x587daf46 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d2d6525 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a298057 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x85f1af09 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87b46ece usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89b94519 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x953f58c9 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xabc10965 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbb2636c usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5de542f usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcadbc370 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd7de2325 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb6231e9 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfcbc1007 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x32f908b0 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x38b35bff lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5940c37e lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x61ce7df8 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7642b25c lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x76c634ec lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x78d6f66b lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x83f25d67 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8f100bca lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9b732b84 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbbe82029 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbbfa7d4a lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc18bcfb4 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xca99cb31 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdc86df55 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3455c209 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x55dab6f0 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7d85ec6b lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x80c76430 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x926cc07f lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xab392ddb lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf5bf8813 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf5e5219b lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0xbfb2c06e if_usb_reset_device +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0xf7e96a72 if_usb_prog_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x08aa5865 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2b705968 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3e412297 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6759bd82 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7ca3308d mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8b040f29 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa1ca66f4 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa747c7c5 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbaedc56e mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdf8274b9 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe85eaa11 mwifiex_deauthenticate +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0083fdeb p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0d97565a p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3ef571de p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x43670303 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x63789e42 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6c3f31af p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x79ba412e p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9d067cba p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xae23ac94 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x033b34b0 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x07b0e949 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0e36f8d7 rt2800_get_tkip_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1f98bfab rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c71933a rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x36ffafaa rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c3c5f73 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3f05f7bc rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3f378754 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x470d122c rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5ccbe4dd rt2800_rt2x00debug +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6548282e rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x654ce2ab rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x674ea112 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6870642b rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6cfc4d9d rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6e5259bc rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e28fc05 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x819eca75 rt2800_probe_hw_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8353cd62 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9188c973 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x941c91df rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9c29e1d9 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa085847c rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xab19c821 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xacbc630c rt2800_init_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb702a180 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbea46c26 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc3ae6fff rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc50c2648 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd3b01b31 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdab9195e rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe1621f83 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeac47dc0 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeb6ee751 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf4939f97 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf956bd9f rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf97ccb96 rt2800_validate_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x07a6421a rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a14f930 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0c009aca rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0c23cf1f rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0fd0d393 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15c44fd0 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1abdeb0e rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x260dee8d rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x29e0c8e2 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2cfaf92c rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x303dda9c rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3eec8d5b rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x43bc64ea rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4a9c7792 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c02be46 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4fc44557 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4fd94f0b rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4ffa730a rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c77cd1b rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c7b7aaf rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e809e91 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6992101b rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x78d19671 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x799da9d6 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7d6c07e3 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8151838c rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8a320482 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x932698d5 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x93949c43 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x93b534e0 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x952ab5cf rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9ebb77d9 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa55c88b3 rt2x00debug_dump_frame +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaaa5e0b8 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xab85bbb3 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xae2c28e2 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb01b2ce4 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb3629270 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb735557b rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb87e7a5f rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb8ec31d4 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbdd06634 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc14c0ffb rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1e4c759 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd045a11f rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf779d8e7 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf94f4123 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x079c4678 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x09d8af99 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2446fd0f rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6744bbf3 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x697c42ca rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6d533d38 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7f2f9586 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8423834a rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa077025a rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb23ee87c rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb76c2f13 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc0ad6e11 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc47a68ce rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc48d3070 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd80688c0 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdc7ed784 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x282978a4 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x9fdf4d02 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xe36401d7 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x34a595ad wl1271_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x58790112 wl1271_unregister_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x6004c37b wl1271_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x7857d30f wl1271_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xbac12c7f wl1271_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xe3b3be7b wl1271_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xe795ba26 wl1271_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xee27193b wl1271_register_hw +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x464344ba pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x738fcd50 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x7a4e02af pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3175dd4d mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x35de0c8b mc13xxx_sw_regulator_is_enabled +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5e8e4613 mc13xxx_get_best_voltage_index +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x67f0ae35 mc13xxx_regulator_list_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x70dfdd43 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc9075f84 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xcf7d3dfb mc13xxx_fixed_regulator_get_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x09a79cee wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3d934388 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4a8023cc wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6394aa8e wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6c8c53b9 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf88e8c95 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x8959ddd9 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2c459b8b fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x40b87b7b fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5c63d041 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7d8c6c5d fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8feab427 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x939fbc93 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa14dcfbf fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xae37edb9 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaec52751 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x821fdbc1 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x952ea946 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa39c0b95 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb447e1c7 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd3463e8a iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd3ab2672 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0386250d iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10d35de6 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19925a61 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19e0fd25 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b2d1ed7 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c81e5a5 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2111ce9b iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eb88f8b iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x311fe0c5 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3729db3a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37b53ee7 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38ed4903 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39a2c39d iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ea76541 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f521dbe iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40f35a43 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4774039c iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2709b0 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4dd87f1c __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b2624e4 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x682f3db9 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x700ff1f0 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d8c4820 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e6d8d20 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83cb4392 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x893c6731 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cf522d4 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x902a1b5d iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9137b5d3 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93920a1d iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99ed1b9f iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa41c8ce6 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4832cf0 iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1b34d33 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb31f1c01 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb47f8e04 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5a14aeb iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7fa797c iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd88edf9d iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd0e5c5f iscsi_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe215e96e iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe440cd6d iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4ebcce5 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe892d005 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfcfa78fe iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff5a38fe iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x00a8d830 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x12cc99c2 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18dfc91e iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x27fe134d iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x319c0eef iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x34cc91f4 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x46d0a48f iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x50e92d67 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6e28fbe8 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7374da21 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x760f446a iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x957dedc1 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd32b89c5 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe9792a9f iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf748a18a iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfe971655 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04c2ad31 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0c36b7ca sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0cef4f73 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x128aa4f9 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14002995 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x172f59ba sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x265e32c3 sas_find_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ac82f9a sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3950df38 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49374217 sas_slave_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f96f806 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52f2ef6a sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53b23f44 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x716bc368 sas_change_queue_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x732efcfe sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7cb88bd2 __sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa33c5c7c sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae56ade6 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc7b1bf4 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xddd52c01 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2c955d4 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe3f2675d sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeeb6f65c sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6ffdfea sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff6633d4 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x41b653c3 scsi_tgt_cmd_to_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x42cfe1c7 scsi_tgt_queue_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x44622a94 scsi_tgt_it_nexus_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x4ba55eb5 scsi_host_put_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x76a707bb scsi_host_get_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x8914ade7 scsi_tgt_alloc_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x911ed869 scsi_tgt_tsk_mgmt_request +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xbebde559 scsi_tgt_free_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xe2912556 scsi_tgt_it_nexus_create +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0014a449 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x022a2c6b iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03dc97cb iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d13bf10 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14f2d376 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x188fd06c iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b54d7b8 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2366ede5 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3495073c iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49cd57d3 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55b8da27 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7788144e iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x800c5507 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x840d0d89 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8fbfadcb iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92067f91 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93a25836 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4c3229a iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8bc8e83 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb03baba iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf67f6db iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf7f1dbf iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca0763b1 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd49ac668 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6ec0d8b iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6d0c7dc iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf74bb1b8 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2de0f21f sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb2c1e6d6 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc2907d61 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xecec23ff sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x37b6078b srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4456e501 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7cc9c9a0 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9f44ce7f srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd07975a2 srp_release_transport +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x05b3e7a9 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9efb66e0 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xaa80df8f spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe48bf429 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe8baf416 spi_bitbang_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf7447548 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0d40fec9 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2c299b74 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4b93ae62 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4e56f947 dw_spi_xfer_done +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb372a067 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x2468ed34 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x579d2806 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x587711de oslec_create +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x882d5f27 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf828c15b oslec_flush +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf923a5b1 oslec_free +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xfabc3747 oslec_update +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x115a496b iio_scan_mask_set +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x71a77dc0 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x7d72eea7 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xd560fbdd iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/rts5139/rts5139 0x35b85807 rts5139_usb_ids +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x372e6776 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41b6bc80 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x465de46f spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5b6ac139 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6071ea08 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x62f7cea3 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6ae751f5 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8040d91a spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8905e8b3 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9ff94a7b synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb73a5748 get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcab58526 serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd2af1d00 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x187862d4 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x1dd4c3b4 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x2eebf4d7 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x3736a03e usbip_event_happened +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x4902996b usbip_xmit +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x56b767c1 sockfd_to_socket +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x5a89cf3f usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x639e8d34 usbip_event_add +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x6e04133b usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x6f9d7330 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x8147264f dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xa0b04042 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe90275ea usbip_start_eh +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x4dd7c006 max3107_suspend +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x4f223ccf max3107_resume +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x5828e690 max3107_hw_susp +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xa9193c2e max3107_probe +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xc2a52d4c max3107_remove +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xe4a3df10 max3107_rw +EXPORT_SYMBOL_GPL drivers/uio/uio 0x44c7214f __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5183f580 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd363b30d uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x427cde05 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xebdc430a usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0a53a065 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x22fb9031 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x368c1b6f usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4b1c27b6 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x54877c86 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6464ccd9 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x72c0b7aa usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaee91cf8 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc7881d0f ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1047e02a usb_serial_register +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x17696c1d usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x34a222d9 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5a48052a usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5adc8184 usb_serial_generic_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5f833c39 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b464acc ezusb_set_reset +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b92b133 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x86709a2f usb_serial_deregister +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x89a2c737 usb_serial_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x948cc91e usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x97a0cbfa usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9fe0edc8 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0f605da usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb52230df usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb6c49cc4 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb7c75d21 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb855b29d usb_serial_generic_submit_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc8954e14 ezusb_writememory +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc9aa11c2 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd0676527 usb_serial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x04d02e8f usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0779aea1 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0e73416c usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0ec77a0d usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x185c0e96 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2861d099 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2d68627f usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3690ae5e usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3de46d45 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4e11067c usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x74143fb1 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7df8f8c5 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7ef73236 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x97e94b09 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa5363cd1 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbb277442 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc087ac06 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcbbc6939 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd44b77ed usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe57be34f usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe8ba5bc6 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xebf1a281 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x281c2fb3 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x911d3895 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x95f9a980 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe58f3987 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfc89b8e1 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0723c972 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2b0fb135 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2efa22a0 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x30f17888 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x37def746 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x481cda2a wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x495dc292 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4ce01654 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4ddf3b9a wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5c8e319d wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x635830a7 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7a02e5bc wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9e6db6d4 wusbhc_rh_suspend +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbb501ea1 wusbhc_rh_resume +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd2326795 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf3bd660a __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6ee6f731 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x907d05b2 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa270bee6 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x06c35f5a uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x126b8694 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x131f3f04 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1f088c12 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2895fc66 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2e1bf0c8 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x38bd1f02 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f4f0f52 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4345579f uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x52fa9304 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x58271ec9 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x607a2991 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x65189598 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7289db68 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x73827e47 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x73919931 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a5bf1b3 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8d034935 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa05001b0 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa75bc5d2 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb10ec880 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb53eef58 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb84e7387 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb8d53c89 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc558122c uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcc5d1048 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcfd7f161 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd0635d3f uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd1f7cffb uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xda59d083 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdbf5f08b uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde8df0be uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf48409c7 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5b2d8e1 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5c10abe uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf9ebb927 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xffc1637c uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x17878b20 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4cf7bbeb ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5567e62b ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x92510086 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9346d942 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x93e30a84 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdf82e1e4 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0x3a3bcf88 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0xac5c49f7 fb_sys_write +EXPORT_SYMBOL_GPL drivers/w1/wire 0x50c9cc9c w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x50f3c80b w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x65cc9e17 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x84c94eaa w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa6f777e5 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc4fe072d w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdc9e03ed w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xee07c8db w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xffec2c2d w1_touch_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0864c4a4 dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x88a810f5 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb3ac2c93 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb4d9ad51 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x047491c8 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x17ce645d locks_end_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6c27924a nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f959b35 locks_in_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96877ac4 locks_start_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa7b91a7b lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xac26e237 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb7fcddbf nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf4e3c815 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6933c48 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x010c4545 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07f96671 nfs_initiate_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x226ac89a nfs_commit_clear_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24fc163c nfs4_reset_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31092eb1 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41b9f26c nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x462e1f3b nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87a8ad19 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaab6e5ed nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb24fe384 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb63a5ae6 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbae9c9ff nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc207dd05 nfs_commit_release_pages +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5918661 nfs4_reset_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6a08810 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8322670 nfs_initiate_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5a87370 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3e9e7827 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x75242b83 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x030d8f9b o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x12ced0c2 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x144e657c o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x43073819 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4de94b47 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x79b5fcbb o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf5ee5792 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x08b41ce1 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x128623b4 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x17c297f9 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3d1fa65d dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4e47811e dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa7780b9b dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x025e2d69 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0562c415 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x16b2e575 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5469ce31 ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7083dbd5 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89502fe7 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb4bd060c ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc3ccb38d ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd13462e6 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdc823ea4 ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe2b69de4 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe2bd47db ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe417d940 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x05513b71 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0b8ef590 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x4a48d81c raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL net/802/garp 0x45a5b59b garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x56334300 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xa13a8802 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xcc89c16d garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xdbe99b90 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xeebf5c6a garp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x21ff58a2 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x38ca6bb8 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x787b4b31 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xdb0b6eec p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0x50754510 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xe2c6bb26 unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x48b16fab ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x32055378 bt_debugfs +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06cbfb48 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0dba25af dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bba54f4 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28843ade dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2df68aa5 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3590ccc4 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x377ca903 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3db53bb4 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x40e19261 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x433441f4 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b2ff74c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f434f2e dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a6f29a4 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ae9ea4f dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d32b5c1 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5dbe398d dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x64084228 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a4107b1 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c470ba2 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ec82c11 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f4f4062 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71018b72 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b1b5e7d inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cadb1f7 dccp_insert_option_elapsed_time +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b05a401 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9bf43acc dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9dcff9e6 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaebbbb85 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc634fcdb dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7fd7147 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3a0ad66 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdaee52e0 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2d49e50 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3017e21 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf98a9d24 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc058fe7 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1c7e257d dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3f331def dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x60305988 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc0ea6503 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd12b4d9a dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd3eabcea dccp_v4_connect +EXPORT_SYMBOL_GPL net/ipv4/gre 0x723c129b gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc0e6ec00 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x65a50e54 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf35ac161 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xba3121e7 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x40351c4c ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x0f8e8eaa nf_nat_seq_adjust_hook +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x6d40a921 need_ipv4_conntrack +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x07ae60b6 nf_nat_proto_in_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x240b5d9f nf_nat_packet +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x4654c1dc nf_nat_proto_unique_tuple +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x606fc66f nf_nat_set_seq_adjust +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x91236d3d nf_nat_proto_range_to_nlattr +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x94a08134 nf_nat_proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xc2569758 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xcd098919 nf_nat_get_offset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x510f1e7d tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x87edf7a9 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbf31aee8 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd1600552 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xed5d8f9c tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x67f885bd ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x196803f5 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1a8efe3d l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x455fb611 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4fc837d5 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x551d78ff l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x678a1258 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8ad047cd l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc123d67d l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6d0b9c7 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcaac5cd3 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd0aca4d0 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4765ea7 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1cc82bb6 ieee80211_iterate_active_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x364e4935 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7a1421a1 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe2c7064f ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebde69a8 ieee80211_key_removed +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec6dc70a ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee2333a9 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeeccc893 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfb5f6064 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x368bf3e9 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bd82539 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x47a43d15 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7b0acd8b ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8aafdef9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ca6d85d ip_set_nfnl_get +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f6f9aa8 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7f5c049 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4b924c4 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5f9b62f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc70f7d80 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd3e31c4a ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xebe4dabf ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xef946d16 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0a965b31 net_vs_ctl_path +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x52c2ed60 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7aca1cd6 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb89d498d ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe3b7449b unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04f6de83 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0597c2d9 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0747d86f nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ff2841d nf_conntrack_hash_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x101ad4cc nf_ct_delete_from_lists +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1368779f nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1535fe9a __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15f1a2a1 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x162e45a2 print_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16b79544 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c3343c8 nf_conntrack_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e0c4a67 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23d172ac nf_conntrack_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25fe6185 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2638c858 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c578433 nf_ct_insert_dying_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ff18995 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3af12e34 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3af7522e nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3efc4aaf nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x402f342d __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40333ddb nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x426cf114 nf_ct_l3proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x451388a9 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b70348e nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x528624f8 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5672add2 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a4af4ec seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c0ee34c nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60a1fea3 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60b0467a nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63580b34 nf_ct_nat_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x680826b6 nf_conntrack_flush_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c98b305 nf_conntrack_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f88a53f __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7946560c nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79faadb0 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ed73c1f __nf_conntrack_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8108d2d6 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8815fcb9 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8848938a nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8af13f8e __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91f63e6e nf_conntrack_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b4f4232 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d79611d nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1617884 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa17874dd nf_ct_remove_userspace_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5ab8dbd nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4aae752 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaca25ee nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb00260c nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc05da34b nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9ea5982 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceb48372 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2e956ba nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd431d327 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5160cde nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe49ac3f1 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1e02cae nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4594073 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf66a200b nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0f6b9e88 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb9727064 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x80ef9e41 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x55404a9d set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5adf01e8 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x836aa10d nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8f59180b set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x95c3f20e nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb0e71974 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbd725153 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xce331146 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd1b6148e nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe99c6788 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x53a2f99a nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x34b42657 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x81572144 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd7db9778 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe37b18ba nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x79f7021b nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xe81755de nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x12aa5600 nf_nat_sip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1f3280c2 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4a207837 nf_nat_sdp_media_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5fd3a675 nf_nat_sip_expect_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x72d0e3c8 nf_nat_sdp_session_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbc59593f ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xccfcb6ee nf_nat_sdp_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcf079ac4 nf_nat_sip_seq_adjust_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd93a299a ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe214a61b ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xef063896 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf65ae2cc ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf7ced326 nf_nat_sdp_port_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x613ec19c nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5a0f6d8f nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tproxy_core 0x20380f01 nf_tproxy_assign_sock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x18591475 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1dea01ed nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f58e71b nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3895cd7a nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x497bb6c4 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9ecc9d26 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xabcb75ba nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc5515988 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x5761d5d1 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x107faffc xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1b3e1f08 xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46e62031 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x470e2d51 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6b0bfa20 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c9aa1ba xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f5a376f xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x862b676a xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ef8be73 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x92616406 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc303511e xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcbcc800d xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe25dbe2e xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef49545d xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x563d999b xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf6afa81c xt_rateest_lookup +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x12ef80ae rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x13841b73 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x1dfe9b5f rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x20543224 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2aa1ad98 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2afe6c46 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3f6f9189 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x48fcea4a rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x4ede79a5 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x59d308dd rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x629062f4 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x6c241117 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x6e610bf7 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x75bc505e rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x98631a03 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xa0fc6d11 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xb2e93b04 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xb8da6a66 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcf6f7dc2 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xd09714d0 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xdb5cfbb7 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xddfd52f1 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xeb4f20a3 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf81a73a8 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xfe2ca88a rds_message_addref +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x9b22a19a rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xa985c942 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0d42839c gss_service_to_auth_domain_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x22dd8ffd gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2a59d00a svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x36bc9a29 gss_mech_list_pseudoflavors +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3bb19e63 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3e8d0329 gss_svc_to_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4563da3b gss_mech_get +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4990a26d gss_pseudoflavor_to_service +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6a429626 gss_mech_get_by_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7002cdeb gss_mech_put +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x97634d94 gss_mech_get_by_OID +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa275ad78 svc_gss_principal +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd3ff0db5 gss_mech_get_by_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00abb97c svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0100d239 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05f1dbf6 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08f9b54b rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bbde192 xdr_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d995be7 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fc9f25e sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fdbfab6 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1035bb91 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10a0d204 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11949f3b svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e280e3 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14958d38 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1589d57d rpc_queue_empty +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1874cc9a svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ba5188d xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce072fd xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dcfa292 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e53ff06 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2185b40f svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21b3e47f rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22066168 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24738c9d rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x256a1a82 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2593be49 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28534885 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x297d6b80 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f3df0a8 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32367a5b rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32b19d04 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x336b5ab0 cache_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3776f1de rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x377cdce0 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9d240b svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4115d89c __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42d22e52 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42e994a6 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43cc2f06 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ed046c rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45556adc svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4634e1d2 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ee3ede svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46eebbcb put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bf2003f svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d3d7c07 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f6aec7f xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x508e973b rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54e88366 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a83aaa8 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b07ee45 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b14ec1a rpc_put_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd26000 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dc077b4 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5de1f35a svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec7f524 svc_sock_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60c5a14f xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61a21f9a rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62e6d96d xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6560a35d rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65cead4c rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67681663 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x690ac893 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eea229d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ef06684 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7195f44a svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71d51d2b xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72da94f1 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x769559fe rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76cd1229 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77e62bde rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aa9a7fe xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d69b9c4 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e341458 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80b355f5 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81188790 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x813ec199 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e014f00 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9052bfc0 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x906a24b2 rpc_mkpipe +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x928353d8 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x936f218c xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96dfb36e svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x988391d2 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x998e2226 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cfbfff4 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d8a84d0 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff28ac8 rpc_get_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa09e8732 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa157a84d rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1f968b1 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa342a327 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5ec2661 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76d38b3 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7a32487 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d52029 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab3e44f3 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac14c8d0 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad7d1f4b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf27a192 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf714542 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaffb5308 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb343f3b6 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb95018bc auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9b595ca xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbca0d231 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd41157d svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd57d341 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf3d64da svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf8d91fc xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9b6c5e xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc054149f rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3adc7d7 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4132d70 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc794ad44 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc88a15d7 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8dca780 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9bf5912 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf7a0152 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd184d4a5 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd503b02e xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6548b7f rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6a9738f rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd81543d2 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88a9bc5 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd925441b xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b2ccb9 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfeabf09 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0855c88 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1353e73 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2846b38 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2d114ce svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3b88b89 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40e1e09 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe52f79cc xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5979c6f xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe71b7b01 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8f505df sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe943fed4 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9b3eb0a svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb9ab3bb rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebdd1807 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec18d176 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed0185cf svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed24d036 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3143ee9 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3bb3d64 cache_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3defd91 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c8e846 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9855b6a xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe62c1af xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff9e1e54 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffa75b1f svc_proc_register +EXPORT_SYMBOL_GPL net/wimax/wimax 0x17fe563a wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x39a9f7fb wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x48588ec8 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x55662d3a wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5a8b13c6 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x63048707 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x66c6ea8d wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x82d49a2c wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x837a0393 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x99fd6e08 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa0fa7f4f wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbfec06b5 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd673663c wimax_msg_send +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x083b6172 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1f052050 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x49a50903 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5577cfe8 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x563ac029 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x667b2097 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x673112ca cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6ad312dc cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x989c20a9 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9f6ce22b cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe43a0ea1 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x491cc087 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4e428efe ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9cb6e254 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe063a58a ipcomp_output +EXPORT_SYMBOL_GPL sound/core/snd 0x6f20fa74 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x304ad47a snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x6fd4cd93 pm860x_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x7ed23f2b pm860x_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cx20442 0x7d073327 v253_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-l3 0x78c84c7e l3_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max9877 0x23fc128f max9877_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x18a0410e aic3x_headset_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x4fccd0c2 aic3x_button_pressed +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x909179b8 aic3x_set_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x933fc0a5 aic3x_set_headset_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xa9d31975 aic3x_get_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5f618b43 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa356e214 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x63d9def7 twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xd4586e38 twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xe007b2c7 twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wl1273 0xae55a491 wl1273_get_format +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc32c4017 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xec214023 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf7a7843b wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm2000 0x935bdfb1 wm2000_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x45ea0348 wm8350_hp_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x8d13b6eb wm8350_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xedf14c87 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xe3523487 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x58ff84e6 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xc86ea8e7 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8996 0x8ac10730 wm8996_detect +EXPORT_SYMBOL_GPL sound/soc/omap/snd-soc-omap-mcbsp 0x3fdd2b5f omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0699291a snd_soc_put_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06d5025c snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x076a056f snd_soc_register_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d3d203a snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10c6a76d snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14a34bde snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15d491a2 snd_soc_dapm_get_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1641bc83 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16de723c snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x170ab752 snd_soc_info_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ce1ecdb snd_soc_cache_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ff6ff8d snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20e08be3 snd_soc_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x211b65ca snd_soc_dapm_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23b3a6db snd_soc_info_enum_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27616d57 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ab17e20 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2adb7ef9 snd_soc_unregister_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c3aa331 snd_soc_add_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x324ce1c8 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36497fb8 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x392d6ee6 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d5b1840 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dd424e9 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43ab3632 snd_soc_default_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x458b8661 snd_soc_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46f9880a snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4830c62d snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49dca308 snd_soc_update_bits_locked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ac2cd9e snd_soc_get_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e8c3852 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f2035da snd_soc_codec_set_cache_io +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50530cbb snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51f40159 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5357f409 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57551121 snd_soc_codec_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58039a66 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a8f633d snd_soc_default_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x606f84d0 snd_soc_dapm_put_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x614cbc44 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61937dd7 snd_soc_cache_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63f07ead snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6477c1fa snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6588ae10 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7053d085 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70aa5833 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73438cae snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74972685 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76e0f974 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x796a23f6 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x808bbb6e snd_soc_info_volsw_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x822688b4 snd_soc_get_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82fdb29e snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84c511e8 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x883e4162 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a012316 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8add6d09 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b5b55f0 snd_soc_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93613a5d snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9588b75c snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96b86e3c snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98f49fe0 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b003ea9 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c895f05 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa18f68ed snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa21a5cc6 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2b18530 snd_soc_put_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4016cdb snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4457f5f snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4e3475a snd_soc_codec_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7b70e39 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa82778e8 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa924fbf0 dapm_reg_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa416d88 snd_soc_default_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabeae1bc snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaddc1b24 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb10252cb snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb21de3ff snd_soc_cache_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb79d6c23 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb823fcd1 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb912bda8 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbb7cc47 snd_soc_dapm_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc81b5bf snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc11be226 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2b5d883 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5c557b9 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc87c176f snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd32c4d6 dapm_mark_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6e906b9 snd_soc_bulk_write_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd786bf4f snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd8ed5a8 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1e64d5b snd_soc_codec_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2d7e68e snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe790d4de snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe848b5c0 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecedc8e8 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0e28fb5 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf29d2f04 snd_soc_info_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5437a1c snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5c76630 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdde6e67 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x0050b9f1 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0067df75 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x008273ce sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x0088a193 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x008e18cc device_schedule_callback_owner +EXPORT_SYMBOL_GPL vmlinux 0x00a4dc7d usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x00a88b3d dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x00c4dc87 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01181467 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01370cb1 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x013a129b omap_dump_tlb_entries +EXPORT_SYMBOL_GPL vmlinux 0x0148adb6 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x017543f0 net_ipv6_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0x019da829 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x01a4ea6d unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x01ab7072 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x01b1d8ad wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x01c27fbf inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02559300 register_net_sysctl_rotable +EXPORT_SYMBOL_GPL vmlinux 0x025ad7f4 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x026ce8f6 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x0277e39f spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0403c937 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x0430b406 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x0437015e spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x044dae08 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x044e4c7e i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x0454dc6e rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04c00a25 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x0531dcb8 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x053c6256 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x0547d8e3 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05716663 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x05979abd relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x05a669ee ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x05a6a3c7 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x05ab82f7 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x05ae262e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05be795c blkcg_get_weight +EXPORT_SYMBOL_GPL vmlinux 0x05c0e372 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x0619ca8a getboottime +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065c761d debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x06692756 regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x0672cdd2 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x06b0585b register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x06bf6cd9 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x07054216 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07072657 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x07145cd7 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x07398426 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x076808bd sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x0795932d wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07f127dc posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x0843bde5 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x0855822e del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x086fe052 sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x087cd1fd pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x087ee4e3 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x08874a0c cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x08897277 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x0899e39a ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x08ab2959 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x08ad6e6f cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x08dc5d59 xv_get_total_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09245d1f tracepoint_iter_start +EXPORT_SYMBOL_GPL vmlinux 0x09535e81 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x09983714 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09ba1ccc rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0a59d1a6 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0a673ef7 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0a6fa376 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x0a732270 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x0a761e84 register_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x0aaffc51 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b28defb kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b2b71a1 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0b2db08a ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0b44c55f tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x0ba8c9fa cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x0be13004 usb_storage_usb_ids +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c80c497 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x0c97d400 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0d0c109d of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0d1ddd87 crypto_rng_type +EXPORT_SYMBOL_GPL vmlinux 0x0d30ea61 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0d3cc82c of_irq_map_one +EXPORT_SYMBOL_GPL vmlinux 0x0d768156 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x0d78106b invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x0d78a205 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x0d7f3af5 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d833191 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x0d8eb97a rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0da5f144 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x0dbcd741 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0dbf8785 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0e1c55f3 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x0e205dc1 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x0e38e132 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x0e695489 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x0e7cec54 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x0ed24c0d scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x0ee28b32 get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x0f1ba0af rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0f22cc48 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x0f24d3e8 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x0f4f2dee class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f587e70 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x0fdbdbab irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0feba737 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1019a1d6 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x10541c37 mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x105ce618 omap_dm_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x10bc1d02 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x10bdfa17 devres_alloc +EXPORT_SYMBOL_GPL vmlinux 0x110a093c klist_init +EXPORT_SYMBOL_GPL vmlinux 0x112c2091 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x115db5d7 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11f447ce __gpio_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x121ed3f3 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1255996f regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x1258d9d9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1288945b ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x12a30954 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x12aba35a simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1355c47b attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13574bbf nf_net_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0x13695a78 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x137328f1 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x139d482f flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x13b2a946 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13e5278a kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x14d5945d of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x14d7b3f4 default_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x15187452 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x152effc2 blkiocg_update_timeslice_used +EXPORT_SYMBOL_GPL vmlinux 0x1545f4de register_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0x1556756b usermodehelper_is_disabled +EXPORT_SYMBOL_GPL vmlinux 0x158922ee crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1598dc9d unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x15ae9a4f usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x161b8cd6 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x16283af9 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1652bd3b pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x1655bb05 queue_work_on +EXPORT_SYMBOL_GPL vmlinux 0x167a0a81 put_device +EXPORT_SYMBOL_GPL vmlinux 0x16d4ce1f crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x16e13cc2 blkio_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1733c1e1 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17b9185d da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x17cde3e6 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x181361a9 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x1828801a blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x1858f531 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x18796351 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x1892f25a ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x18a25c1e sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x18e2c347 dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x193d48e0 trace_current_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x196a9c5a ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x19705e30 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x199232b0 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19be1ec0 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x19fc7f60 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1a0d6663 class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1a323362 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x1a65920b omap_iommu_arch_version +EXPORT_SYMBOL_GPL vmlinux 0x1ab517e0 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x1abb7393 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1ad83009 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x1ae0e135 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x1afc1d08 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x1b2223de wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x1b34a97a crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x1b3f0f71 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x1b41cb06 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b68de25 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1b913e2b sysdev_class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1baaa2e3 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x1be2f564 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x1be9adce securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1c110856 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x1c119219 filter_current_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x1c18e76b regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c852e7c xfrm_calg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c9f887b bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x1cbee961 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x1cccd077 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1cdefda4 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x1cea62d8 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x1d0bb33e vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x1d12267b hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x1d1d48bd input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1d20e5ad sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x1d38c727 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x1d8f2b91 devm_kzalloc +EXPORT_SYMBOL_GPL vmlinux 0x1dbc1f3c get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x1df253de sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x1df544b0 sysdev_register +EXPORT_SYMBOL_GPL vmlinux 0x1e314b21 regulator_use_dummy_regulator +EXPORT_SYMBOL_GPL vmlinux 0x1e3a88fb trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x1e46525a generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x1e4cce46 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x1e4dae3f devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1e6c406a register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x1e73ec24 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8403d8 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x1e926de0 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e9966de iommu_domain_has_cap +EXPORT_SYMBOL_GPL vmlinux 0x1ea9a691 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1eba928f ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x1ee9814e irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x1ef53943 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x1f153fba scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x1f180be7 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1f37286e register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x1f556392 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8f8d7b cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1f951aaf dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x1fcece42 inet_twdr_twcal_tick +EXPORT_SYMBOL_GPL vmlinux 0x1fd699aa tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1fe6cd62 omap_dm_timer_set_int_enable +EXPORT_SYMBOL_GPL vmlinux 0x201a0f26 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2027bdef ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x2048cbb9 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x204fe31f find_module +EXPORT_SYMBOL_GPL vmlinux 0x20bc3470 orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x20e3a24c ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x2174b3a1 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x218eba2d inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x21ac587e __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x21bc5e2a ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x21e00555 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x22015c1a gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x22060ea6 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x221e4f4d sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x2253248e get_device +EXPORT_SYMBOL_GPL vmlinux 0x226150ea usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22edf198 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x230e0698 __clocksource_updatefreq_scale +EXPORT_SYMBOL_GPL vmlinux 0x2311007e replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x233e8033 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x23538515 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x23679939 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x2367aa03 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23b90f16 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x23e8fabb xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x23f86065 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x24408556 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x2447533c ktime_get_real +EXPORT_SYMBOL_GPL vmlinux 0x244e82a5 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248738e2 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248efe3b fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c05560 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x24e1307e flush_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f464d0 unregister_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x24fc46b6 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x252e43b4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x257e6d1a usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x25aab853 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x25b8ace1 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x25b8b8d3 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x25df9b73 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26449ab6 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x264a8ab3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x266ca2ed ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x266cf4c9 tcp_is_cwnd_limited +EXPORT_SYMBOL_GPL vmlinux 0x2684f16d i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x268f53d8 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x26abff41 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26dc20ba omap_dm_timer_write_counter +EXPORT_SYMBOL_GPL vmlinux 0x26ef26a4 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x2737277f rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x284efa37 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x286b4baa ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x288c5d01 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x28a82da4 snmp_mib_init +EXPORT_SYMBOL_GPL vmlinux 0x28bb5383 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x28d664ff __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL vmlinux 0x28e349ab single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x28ef3ef7 bdi_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x2901a718 queue_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x291b75d4 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x291d2894 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x29204021 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x292094e5 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x296bb77c blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x298bc121 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x29cd5878 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x29f65cc2 sysdev_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29f8c2ef dm_underlying_device_busy +EXPORT_SYMBOL_GPL vmlinux 0x2a0d2d73 sysfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2a5748c9 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6ae49d ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2a6c3ac9 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x2a878bbf ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x2b70493a class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2bf52225 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x2c0dc18b filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2ca4ebcd regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2cab8ab1 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x2cc5383e __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x2cdd0f56 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf5a588 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2cf65c85 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2d148df6 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2d2a904d usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL_GPL vmlinux 0x2dbe771b blk_rq_check_limits +EXPORT_SYMBOL_GPL vmlinux 0x2dc142ee omap_dm_timer_disable +EXPORT_SYMBOL_GPL vmlinux 0x2ded1f0f scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x2ded3043 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x2e085463 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x2e1c2e07 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e47f677 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x2e51ffe7 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x2e6ec3c9 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2e999dbd fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x2ed9efbd usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2f3892f6 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f47d8c7 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2f4b82fe get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x2f7934e8 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2fcd9e17 dpm_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2ffc8107 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x30740a39 default_mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x307f7776 timecompare_offset +EXPORT_SYMBOL_GPL vmlinux 0x308ff9a9 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30e4c4ef sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x30e9daa9 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3108ea46 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313cbbbf debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3145ed7a udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3167d1b7 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x31a820ed register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31d67e77 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x31f350c8 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x323d82ba crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x324dbf2b inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x32623974 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x32b31a8c ktime_get_boottime +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d01f06 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x32d5e7fc xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x334d0680 generic_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x33543801 queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3358d20e clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x3363c23c unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x33a5c896 driver_add_kobj +EXPORT_SYMBOL_GPL vmlinux 0x33c6f364 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x33dba8e1 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x33ece267 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x33f9c8c7 md_run +EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask +EXPORT_SYMBOL_GPL vmlinux 0x3441c3d6 gpio_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x344593d0 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x3448cfa3 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34865c27 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x34942bb7 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x34d490c0 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x34f97f22 return_address +EXPORT_SYMBOL_GPL vmlinux 0x3534e2a3 system_nrt_wq +EXPORT_SYMBOL_GPL vmlinux 0x3554cc03 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x355f8ba6 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x357bed0e driver_register +EXPORT_SYMBOL_GPL vmlinux 0x35d911fc crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x3600d091 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x360ed364 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362c752b irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x362e23ec call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x3637b7ba device_move +EXPORT_SYMBOL_GPL vmlinux 0x3648ed64 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x36875389 __timecompare_update +EXPORT_SYMBOL_GPL vmlinux 0x36dc918c dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x3705e8ec cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x3708d588 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x3769ab0c klist_next +EXPORT_SYMBOL_GPL vmlinux 0x376c2691 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x379c8754 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x38461707 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x38968910 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x389d77a1 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38e34998 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x38ef2ca5 inode_dio_done +EXPORT_SYMBOL_GPL vmlinux 0x393b5421 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x3969bf31 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x39b9707a wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x39e15e5f trace_nowake_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3d2217 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a523ee8 sysdev_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a741591 omap_foreach_iommu_device +EXPORT_SYMBOL_GPL vmlinux 0x3a7f187e scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x3aa0e5ed sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3b38db38 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x3b562900 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x3b9e584c inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x3be89d3c usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x3bf46368 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3c0aff50 nand_release +EXPORT_SYMBOL_GPL vmlinux 0x3c25c74a trace_nowake_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x3c304309 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3c590a91 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x3c77f631 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x3c819493 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x3c942368 profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cac21b9 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3ccd5d9f crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cfedb3f register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d6b91e1 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3db91586 scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3dd8a83e fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x3de9b7d8 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e2f4ff6 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e86312b blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x3e94be35 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x3edad223 usb_usual_clear_present +EXPORT_SYMBOL_GPL vmlinux 0x3efab129 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x3efd6914 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x3f02ca87 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x3f210e75 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x3f447ab9 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x3f4f822e usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x3f50ed53 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x3f620a84 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x3f69c73a unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3f772394 tps65910_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x40232aa5 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x402fc93c mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40940875 device_register +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40ba3104 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x40c61d95 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x41832d5c fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x41ac4664 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x41af18ee deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x41d6feb6 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x421469bd relay_close +EXPORT_SYMBOL_GPL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x425dd3fa rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4275fdf8 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x42882367 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x42aed2dd spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x42bfbf5a debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x432fd7f6 __gpio_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4345ffe7 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4353bb49 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x43567af3 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x438e22c0 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x43c77fce irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x43e871dc md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x44404f11 kdb_register_repeat +EXPORT_SYMBOL_GPL vmlinux 0x4455e1b3 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4461d7a5 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bcfa6d system_nrt_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x44db823b stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x44e17fc8 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x44e69afe spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x44f54d78 omap_dm_timer_set_pwm +EXPORT_SYMBOL_GPL vmlinux 0x45011423 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x452f3c85 sk_clone +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c2254d __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x45c2d160 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x46074c17 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4624a7a7 omap_find_iommu_device +EXPORT_SYMBOL_GPL vmlinux 0x4672e88b __crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x46912e69 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x46b9b512 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x46daf5d9 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x46fb6128 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x474359b6 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x476dbd2e xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x47ae9bce usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x47bcd4c1 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x47c149ab queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x47e55e4e blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x480f864d ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4865f9b3 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x48a488a0 sysctl_tcp_cookie_size +EXPORT_SYMBOL_GPL vmlinux 0x492c0dc4 device_del +EXPORT_SYMBOL_GPL vmlinux 0x492e151f blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x4934f458 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x4946da71 omap_iotlb_cr_to_e +EXPORT_SYMBOL_GPL vmlinux 0x497b3590 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x497bf197 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a2e1b7 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x49ada42a ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x49b212e5 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x49b2737a regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x49d7a43c __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x49e2fddd mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x49e3598d bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x49e64e26 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x49e6fb30 unregister_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0x4a0736a6 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x4a35b4d2 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4a56815a cgroup_to_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0x4a64a95a usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0x4a92c6e4 tps65910_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x4a9dd17d omap_usbhs_disable +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab2eaaa usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4addf5f7 gpio_export_link +EXPORT_SYMBOL_GPL vmlinux 0x4ae9262c task_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0x4b0d4e95 blk_abort_queue +EXPORT_SYMBOL_GPL vmlinux 0x4b2d343f handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b7e8939 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x4bc62a81 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4bd2a04e dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x4beb1047 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x4c3866c0 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x4c38ef2c __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x4c5dc34d serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c848371 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x4c8690b8 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x4ca4a8e7 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x4cb06f91 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x4ccd6318 omap_dm_timer_set_source +EXPORT_SYMBOL_GPL vmlinux 0x4d4fd5f1 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4d73e658 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4d809767 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x4d9974ef crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e234c64 mtd_erase_callback +EXPORT_SYMBOL_GPL vmlinux 0x4e398d8f usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4e3e09cf usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x4e7df11b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4e860695 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4eac8af5 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4ef5a025 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcec76 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x4eff50de cgroup_add_file +EXPORT_SYMBOL_GPL vmlinux 0x4f063093 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x4f1cc6f5 tracepoint_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0x4f1ccf7d dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f8f82c0 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x4f988e5f led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x4fa01236 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x4fa5b766 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x4fb10af4 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x4fd4e89d ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdce05b tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x4ff5ae9f __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x5013e6de pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x501402c6 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x501b9f4e fuse_conn_kill +EXPORT_SYMBOL_GPL vmlinux 0x50276af2 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50bc047d tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d7ce54 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f5e532 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51421c0c __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5144b91c crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x515cb16b wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5181257f file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x518bb3da usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x51d5de0b usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x51e0c28b security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x51f12192 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x521d97a2 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x524a7826 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x526b497a rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x52f6e14c blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x530c939c fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x532bd761 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x532f250b crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x536f265e watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x5372f6a5 omap_dm_timer_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x538a3f8e tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x53986488 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5399ee60 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x53a3e486 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x53f260d5 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53fe3b8c usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5473c8ea br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x54853294 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54bfc409 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x54ce169a aead_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x54d020e9 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x54fd98e2 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5513b476 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x552567c0 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x5542b913 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x554d67f5 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x55a70330 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x55a8d84f ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x55e9465d crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x55fcd849 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564f1dca klist_add_after +EXPORT_SYMBOL_GPL vmlinux 0x565695e8 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56ab9f53 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56c86214 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x56e547f2 mount_mtd +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56fc9785 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57418544 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x574214af cgroup_load_subsys +EXPORT_SYMBOL_GPL vmlinux 0x576bb274 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5776820a omap_dm_timer_set_match +EXPORT_SYMBOL_GPL vmlinux 0x578fe4dd cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b0bc24 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x57b38e6d ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x58211ed1 __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x5854974e wm8994_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x58c0cde3 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x58ebecec xv_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x58f08949 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x591a30e6 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x593a36c2 scsi_dh_handler_exist +EXPORT_SYMBOL_GPL vmlinux 0x59533789 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x5977484b bus_register +EXPORT_SYMBOL_GPL vmlinux 0x597eda45 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x599d0cb6 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x599e6fa5 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x59a0f3de pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x59ab8d0e leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x59b412e3 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59ffaee7 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5a48534a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5a6455a1 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5aa31237 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5aae84c7 sysdev_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x5ade4bba ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ae9c3f4 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x5af34900 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5afaadf0 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x5b0e27dc device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b216266 cred_to_ucred +EXPORT_SYMBOL_GPL vmlinux 0x5bb27ae6 inet6_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x5bb906a7 wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bc7b171 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5bcefde5 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x5bf168f7 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x5bfc03c3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c42ff09 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x5c506bd8 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5c976a10 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x5cebe73b deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x5d4544e8 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x5d730e7b raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d7a891b blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x5d91bdcd led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x5da549c6 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5dd67618 register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5df4ce94 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x5df80f90 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5e0120a8 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x5e33d01e blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x5e5296dd input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x5e5a5f27 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5e5eca9a relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x5e8bb6a6 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x5ee15a6d ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x5f248f72 set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0x5f46d244 of_irq_map_raw +EXPORT_SYMBOL_GPL vmlinux 0x5f5258e9 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x5fccf28f __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5fcdec5d xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x5fe8f865 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x60062545 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x600e1c97 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x602a2ec3 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x609350d0 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x60ab55fb user_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x60ca59a1 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x60e2722e pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x6114d8a4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x61289591 scsi_nl_add_transport +EXPORT_SYMBOL_GPL vmlinux 0x615ff4c8 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x61634f05 lock_flocks +EXPORT_SYMBOL_GPL vmlinux 0x6200c4ae ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x624a6406 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x62990a88 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x62bcf259 blkiocg_update_completion_stats +EXPORT_SYMBOL_GPL vmlinux 0x62c19bbb page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x62ea44f1 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x63008aa3 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x63107345 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x63205de1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x632ee304 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x6372a384 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x63a8e2fe __scsi_get_command +EXPORT_SYMBOL_GPL vmlinux 0x63af45ec hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x63c3ffd5 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x640fd77a map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x648964ee fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x64897a07 sysfs_schedule_callback +EXPORT_SYMBOL_GPL vmlinux 0x648f66fe sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x64bd4ef0 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x64c2f1e1 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x64e8387f pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x64fd67f9 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x652be58c spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x65338464 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x65707dfa gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x658b74f3 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x65af798b sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d33e29 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x65d6d0f0 gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x65efc7eb hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x660ebed7 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661a08cc crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x667187bc usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6689ae76 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x668ef5be device_rename +EXPORT_SYMBOL_GPL vmlinux 0x6694317a cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x66b2a859 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x66cfd942 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x671e102e register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x676d97b5 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a67c75 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x67be528f wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x67c7d8a6 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x67c7e90b sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x67e5af10 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x67ebb99a inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x681732f6 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x681eec02 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x6838d8cd crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x6857a91a raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x6868bfb8 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x686c703f xfrm_count_auth_supported +EXPORT_SYMBOL_GPL vmlinux 0x6892088c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68f1ebf2 platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x68fb4a09 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x690e71f7 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698be398 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x69922673 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x69e9a2cb ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x6a088939 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x6a115e81 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x6a224e61 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x6a289a4f free_css_id +EXPORT_SYMBOL_GPL vmlinux 0x6a2bfe61 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x6a560f92 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x6a67412c fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6a9917d8 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x6aad80c0 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x6ab922b2 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6aba167a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6afc064e hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x6b16371a dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b468684 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0x6b7a54c7 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x6b807a5f gpio_sysfs_set_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6b93605e usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x6c03c784 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x6c1ae7da crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x6c327437 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6c4061b5 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x6c49c4f2 clockevents_notify +EXPORT_SYMBOL_GPL vmlinux 0x6c71c334 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x6c8d5ae8 __gpio_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6ced0844 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x6d09df48 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x6d1269c2 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d32a65d synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x6da7652c cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x6e0850a7 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6e7474fc xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x6e838e32 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x6eafecd3 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6ed440ba sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x6eea1da1 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ef1820e release_pmu +EXPORT_SYMBOL_GPL vmlinux 0x6f049860 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f3fb0b6 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6fd6077b usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffe1550 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x70077535 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x701612a2 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x70308856 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x703189d7 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x703c64cb ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x706a59d7 blkiocg_del_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x706b3a33 cpufreq_frequency_table_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7083a608 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x70b1d89a vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x70c55b1b sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e1f840 sysdev_class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x71220307 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71d0d35d usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71eeb9ec omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x722e7e9a wm8994_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x725b2b7b blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7267db00 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72a1a812 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x72b212ff regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x72ccd2fb scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x72ced21a pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x72fe883e __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x73043690 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x73079ddc crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x7319936f rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x73400a18 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7342b6a8 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7383bb67 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x738beb03 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73fad6e7 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x74118a6c locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x741609e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7449dade pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74954462 timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x74aa81fc stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x74abdafa task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74dca3ec usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x74effa39 tracepoint_iter_stop +EXPORT_SYMBOL_GPL vmlinux 0x74fc6f98 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x75027edd crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7505b12c sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x7510d87e ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75467b50 do_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7550c360 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x756b81b6 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x756bb92c __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x75b20f59 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x75c8a11c inet_twdr_twkill_work +EXPORT_SYMBOL_GPL vmlinux 0x75e8f3c3 crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x75fd8afa cgroup_unload_subsys +EXPORT_SYMBOL_GPL vmlinux 0x760d2544 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x761188fd dpm_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x763d3943 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x76e73b8b cgroup_add_files +EXPORT_SYMBOL_GPL vmlinux 0x76eeafcb sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x7785ef8f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x78703710 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x78781ad3 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x78f5986e fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x78fb7c21 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79a3de94 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x79bf9fc1 of_property_read_string_index +EXPORT_SYMBOL_GPL vmlinux 0x79d3913a sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x79fea0b3 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a99f14a platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ac04e5b omap_dm_timer_trigger +EXPORT_SYMBOL_GPL vmlinux 0x7ae1ae8e cpufreq_frequency_table_put_attr +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b18e4b1 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7b6d94b8 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7b79f686 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x7bb661e7 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x7c8ce73b led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d082495 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x7d398fdd led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7d4ed520 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc5d0b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7dca2c31 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x7de49eab __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x7df688b3 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x7e1183c9 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7e21e584 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7e275ea8 scsi_complete_async_scans +EXPORT_SYMBOL_GPL vmlinux 0x7e3ea677 __rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x7e49ed92 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x7e55888c fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e67d00a devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x7e8eff8c ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x7e96b389 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7ef4795e __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x7ef67178 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7f2a7814 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x7f55eafc stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7f6817dd tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x7fd38778 armpmu_get_max_events +EXPORT_SYMBOL_GPL vmlinux 0x7ff10ccf raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7ff3d989 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ffc8718 gpio_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8014b6af input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x80734253 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a216ba console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x80c31335 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x80e9d637 omap_install_iommu_arch +EXPORT_SYMBOL_GPL vmlinux 0x80ed2226 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f4dbd8 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x8103ce48 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x81332189 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x8135b42e debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8142fcc2 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x81ba5a59 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x81e0bfde crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x81ff4561 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x821e9364 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8226642f __gpio_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8236ab92 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x8236c93a led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x825f0828 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x82796b49 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x8284933d ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x82c681ae usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82f46fe9 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x82f776b7 gpio_export +EXPORT_SYMBOL_GPL vmlinux 0x833d95ed usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x8340d869 dm_dispatch_request +EXPORT_SYMBOL_GPL vmlinux 0x836dae71 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x836e4fee find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x837c9d5e bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83ce82eb get_monotonic_boottime +EXPORT_SYMBOL_GPL vmlinux 0x83ffef4d wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x842a5d46 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8445c32b sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x845deaab pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x84befff0 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x84f53842 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85410e2c wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x85478a0b inet6_hash_frag +EXPORT_SYMBOL_GPL vmlinux 0x85562691 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x855d5a2c scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x85a32f67 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x85b79781 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85c9918b usb_bus_start_enum +EXPORT_SYMBOL_GPL vmlinux 0x85d8109b sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x85e3db5b firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x860a1193 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x860c608e ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x863e515f crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x86483135 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x864fefd9 inet_csk_reqsk_queue_prune +EXPORT_SYMBOL_GPL vmlinux 0x86580e31 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x86612b9c blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x8665af9a crypto_nivaead_type +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86e99d7e sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x870d9f23 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8767fb0e cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x87708509 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x87754115 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x877b9fa3 sysdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x879880f8 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x87e79674 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x890eb2d8 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x89451c64 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x895d1d8b wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x89a82ccb crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x89cfccce vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x89d4dbaf usb_usual_check_type +EXPORT_SYMBOL_GPL vmlinux 0x89ff43f6 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a0117ac spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x8a0139b8 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8a1881ec posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x8a1dc8d0 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a45c634 sysfs_rename_link +EXPORT_SYMBOL_GPL vmlinux 0x8a5c7a80 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a8988e5 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x8a8f02b8 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x8a8f4a94 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad888f5 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x8ae664ba fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x8b752ac1 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x8bebca96 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x8bf1925a tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8bf2e98b zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c671a64 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x8c76e849 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x8c976d14 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x8c98eea8 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x8cbd8d34 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x8d0f9f0c pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d9101e8 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x8dad55e8 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x8dcb84c5 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x8e288b14 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8e2ad1d0 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x8e93e94d relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x8e9b3272 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x8e9f1b83 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x8ed57053 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x8ed6899c of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x8ef998cd get_cpu_sysdev +EXPORT_SYMBOL_GPL vmlinux 0x8f07264a wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8f263dc6 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8f3ba2f6 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8f4bd766 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x8f6335de ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8fae240b __cpufreq_driver_getavg +EXPORT_SYMBOL_GPL vmlinux 0x8fbd30c5 generic_subsys_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x8fd94cdc tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x8fe1b83e sysdev_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x90311bbd pm_generic_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x904ef62f device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x90567e30 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9063b5f1 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x906c0714 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9082d068 kprobe_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x908ed8d2 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90ebd835 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9159b9d6 profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91dda801 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x9230cbbf find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x9290698e platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x92a9e25b usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x92abcc91 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d73cca __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x92eff8c3 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x93321851 put_driver +EXPORT_SYMBOL_GPL vmlinux 0x93347585 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x934934da sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x939cb724 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x93d2422d snmp_mib_free +EXPORT_SYMBOL_GPL vmlinux 0x93fd3247 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x940b4a78 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL vmlinux 0x947b28f7 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9488798b __ip_route_output_key +EXPORT_SYMBOL_GPL vmlinux 0x94954faf usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x94a68723 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x95041577 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952b363b skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x95366595 omap_dm_timer_stop +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95668c11 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x956a91ba gpio_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x957a1722 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x958207cf klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x95acbc63 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x95b43a17 register_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x95c1260b unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x95c578a0 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x95d611b2 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x95f6ee15 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x95fa4942 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9636f010 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x965546a6 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x96694a6c relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x96a06d17 irq_domain_generate_simple +EXPORT_SYMBOL_GPL vmlinux 0x96a7d0d4 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x96cbcf31 pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96d60df9 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x97893266 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x97b13dad __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x98179781 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98651918 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x98a15448 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x98cc564a regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9931dc23 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x994327cb device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x994ac515 nf_unregister_queue_handlers +EXPORT_SYMBOL_GPL vmlinux 0x995b38b2 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995eb40e omap_dm_timer_read_status +EXPORT_SYMBOL_GPL vmlinux 0x9968fdef fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x998b6fde usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x998c4657 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x99a09ccf shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x99a6a91a class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x99dfa101 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a4a92e2 blkiocg_lookup_group +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9aea0143 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9afb2952 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x9b72ac69 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x9b775a43 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x9b819c25 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x9ba0501e unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9bb0604c scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x9bea3c71 hrtimer_start +EXPORT_SYMBOL_GPL vmlinux 0x9c28b2ce debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9c2d257f driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9c4b469d user_read +EXPORT_SYMBOL_GPL vmlinux 0x9ca7b588 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x9cb8037b xfrm_count_enc_supported +EXPORT_SYMBOL_GPL vmlinux 0x9cb9348a drop_file_write_access +EXPORT_SYMBOL_GPL vmlinux 0x9cd8d090 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x9cde1c1c ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x9ce4416b yield_to +EXPORT_SYMBOL_GPL vmlinux 0x9cffaa2e md_trim_bio +EXPORT_SYMBOL_GPL vmlinux 0x9d024a37 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x9d0dbc0e unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d86e32e class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x9ddd939c of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x9df74ff4 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e2a3922 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9e4b27c6 dm_requeue_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x9e4f1cfb ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x9e52aa22 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9eb2a4c2 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x9ee38b20 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ee9ca86 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9f20a979 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x9f3f8c68 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x9f40a6d6 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x9f70cc3a __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x9f845529 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa0128b97 device_add +EXPORT_SYMBOL_GPL vmlinux 0xa026dd12 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa03ab2ea ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa06de9b0 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xa0d7848b regcache_write +EXPORT_SYMBOL_GPL vmlinux 0xa0fc1078 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xa1068427 css_depth +EXPORT_SYMBOL_GPL vmlinux 0xa178d3ea proc_net_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xa17992e5 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xa19a2a2f key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xa1b2cbc1 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xa1b8f531 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa1cbecf6 sysdev_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa2663744 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xa2d9b28c inet_csk_clone +EXPORT_SYMBOL_GPL vmlinux 0xa2eefca4 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa3357bda find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa37cccdb md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f6e76c crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xa40a8590 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa4161734 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xa45f1a05 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xa463a7a4 scsi_nl_add_driver +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa496e54f ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4ab9eb9 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa4cc2a77 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa503242f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa51ab6b0 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xa51af14a dm_set_device_limits +EXPORT_SYMBOL_GPL vmlinux 0xa532f4d6 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xa53c6c79 xv_free +EXPORT_SYMBOL_GPL vmlinux 0xa54ee23b fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xa56bad36 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa58c3307 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa5dd6fae arm_pm_restart +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f75747 sysdev_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6369692 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xa64ce539 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xa69baf01 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa6a5d897 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xa6a9028f register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xa6d4f2e8 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xa6d778e5 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xa7032ad9 user_update +EXPORT_SYMBOL_GPL vmlinux 0xa767d03a get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xa7adbb6a disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xa7ce7d74 proc_net_remove +EXPORT_SYMBOL_GPL vmlinux 0xa7f92105 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0xa81ce8fa mddev_check_plugged +EXPORT_SYMBOL_GPL vmlinux 0xa8334953 omap_usbhs_enable +EXPORT_SYMBOL_GPL vmlinux 0xa8432519 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xa858d4cb put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xa8a0311a fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xa8da9a3d spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xa8dae62b blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xa8e1fe26 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa8f59416 gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xa94d0d4c shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xa95b7404 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa991c65c mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xa999fd3c device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xa99fa6c9 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xa9a5c01a set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xa9c530b8 unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9c6eaaf spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xa9ee7f1b stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa9f3f261 net_ipv4_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0xa9fa7d0d ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa51d355 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xaa84f270 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xaa852c93 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa8818aa power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xaae8a26f sysfs_get_dirent +EXPORT_SYMBOL_GPL vmlinux 0xab1494a6 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xab1807c0 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab9a3e7e usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xabc84d1c da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xabdc752d musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xabf26566 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xabf69898 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xac04e68c adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xac309358 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xac424856 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xac530dd6 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xacac44d7 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xaccbc776 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfd81f6 work_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad0f5ef0 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xad124da4 omap_dm_timer_start +EXPORT_SYMBOL_GPL vmlinux 0xad2be8e5 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xad3ea409 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xad54c517 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xad5f1b39 nf_net_ipv4_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0xad9bf7ce sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xada38534 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xada3badd dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xadbbad51 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xadbcea57 omap_iommu_dump_ctx +EXPORT_SYMBOL_GPL vmlinux 0xadbe2f03 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd3ac72 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xadee08c4 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xadfe7b85 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xae0c87ee pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae6ed870 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xae9dc730 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xaedb8a33 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xaee53292 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xaeea3073 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xaf01176e hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xaf1067f0 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf4235c6 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xaf6099c4 omap_dm_timer_write_status +EXPORT_SYMBOL_GPL vmlinux 0xaf69699e xv_get_object_size +EXPORT_SYMBOL_GPL vmlinux 0xaf7372a5 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xaf89893a rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xafb9384f posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xafbbed49 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb02a6057 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c39cd9 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb0c3ae33 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb10d55bc cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xb115eb90 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb1382c47 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1694c0c uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xb1725612 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xb17e0383 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb189feea add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xb18bf8ef get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xb19e83f1 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb1d70e6c sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xb1dbe41e ftrace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xb1dc8beb mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb20339f3 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xb2428097 omap_dm_timer_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xb26bfec2 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xb2714ad1 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb28a15fd omap_dm_timer_free +EXPORT_SYMBOL_GPL vmlinux 0xb2a5d692 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb2ba0a32 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xb2c7b3e8 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xb2d3e89e css_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb32e9f53 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb33375d5 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xb350da87 sysdev_store_int +EXPORT_SYMBOL_GPL vmlinux 0xb39e9844 net_cls_subsys_id +EXPORT_SYMBOL_GPL vmlinux 0xb3c09046 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xb3c8ede7 blkio_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xb4131092 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb419e574 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xb49e3462 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xb4db25a5 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f281f0 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xb53ae573 cpu_idle_wait +EXPORT_SYMBOL_GPL vmlinux 0xb55756d9 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xb570d3c7 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xb589f3f8 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xb5ab9cf9 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xb5d60876 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5fbd920 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xb62ebd31 omap_dm_timer_set_load_start +EXPORT_SYMBOL_GPL vmlinux 0xb659458f usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xb69f4a93 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6ba2905 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6c900f1 event_storage_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb6f15945 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xb70b87c0 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xb74df59b devres_find +EXPORT_SYMBOL_GPL vmlinux 0xb772645a tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xb7916646 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xb7e46645 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xb7f6498c perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb813ce5a timecompare_transform +EXPORT_SYMBOL_GPL vmlinux 0xb82ba89d blkiocg_update_io_add_stats +EXPORT_SYMBOL_GPL vmlinux 0xb84558cc show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xb845f970 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xb84ec558 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xb8a5ccfb trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xb91291b8 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xb9796092 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xb997dda8 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xb9a6a8f5 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9da2997 snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0xb9e5b5c8 omap_dm_timer_get_fclk +EXPORT_SYMBOL_GPL vmlinux 0xba45f51f max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xba7e519f sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xba91bb87 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xbab69775 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xbae34c27 scsi_nl_remove_transport +EXPORT_SYMBOL_GPL vmlinux 0xbaf1bfe8 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xbb0355d7 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0f8fee crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xbb4e9e42 xv_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xbb579017 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xbb80be97 blkio_root_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xbbdc9eb1 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xbbdd358a fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xbbeb3d13 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xbbfda9f2 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xbc38db58 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xbc456407 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xbc6f931b workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xbc7a97c7 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xbc90269f sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcffde94 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbd0f44a8 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbd35bdc1 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xbd474fe8 omap_iopgtable_store_entry +EXPORT_SYMBOL_GPL vmlinux 0xbd4a3028 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xbd57181b tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xbd7ca331 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbdc5dd8d debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch +EXPORT_SYMBOL_GPL vmlinux 0xbdfec355 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbe03c617 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0xbe079bac led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe176397 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe202a63 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xbe3734b5 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xbe4c8e41 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xbea1537a usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbeccb3c2 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xbf04e172 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xbf971584 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xbfa0f507 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc0107791 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xc02d498d blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc03ab504 setup_deferrable_timer_on_stack_key +EXPORT_SYMBOL_GPL vmlinux 0xc041c35e wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xc04a304b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc073b7c2 device_create +EXPORT_SYMBOL_GPL vmlinux 0xc07de0d9 aead_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0b5bc37 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xc0bf6ead timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xc1039375 blkiocg_add_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0xc10f2b8e cgroup_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc11bd00f tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc11be988 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xc16eaaa6 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1b43c3e attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xc1beed35 cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc1c19e8b kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xc1c202c8 regcache_read +EXPORT_SYMBOL_GPL vmlinux 0xc1ecc531 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xc1ffc0db rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xc2014ed1 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc253f682 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xc259073b devres_get +EXPORT_SYMBOL_GPL vmlinux 0xc2698295 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc286be97 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xc3160135 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc3240e27 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc333beac __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xc34efe27 snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0xc372d139 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc399468f scsi_nl_remove_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3ea7f9b ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc3ffb907 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4153805 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc430c2d3 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xc440376a power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc481fc13 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc4820d28 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4978ffa crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc4984b3b evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xc4c6d93f inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc4ce8c73 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xc4d594aa key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xc50a6f06 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc50d348f tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xc52505fe stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xc52c8dbf md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc52cffef user_match +EXPORT_SYMBOL_GPL vmlinux 0xc5635c76 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xc56f8be8 inet6_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0xc57a9fcf platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc57e3b23 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc5864bc9 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5b2141a root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5d6aa93 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xc5e37c84 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xc5f671f4 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc60a730b klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc60c1f19 scsi_dh_detach +EXPORT_SYMBOL_GPL vmlinux 0xc60f75ec __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc61f13ea usb_string +EXPORT_SYMBOL_GPL vmlinux 0xc62b1706 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xc6363695 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc68a13d1 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xc691099a sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xc69e4fc3 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6a9d3d5 omap_uninstall_iommu_arch +EXPORT_SYMBOL_GPL vmlinux 0xc6dd9ffc pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7d03efe otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xc7e43b89 d_materialise_unique +EXPORT_SYMBOL_GPL vmlinux 0xc7eefb27 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xc7f9a395 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xc834317a inet_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0xc868a932 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8c72eab ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc8db737f sysdev_show_int +EXPORT_SYMBOL_GPL vmlinux 0xc8e24284 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc8fe2882 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc8ffedc5 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xc909ba05 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xc90f4881 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc92aeb66 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc92c475b led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9582d78 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9b2447e scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xc9b449a2 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc9bcb032 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca0bdf81 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xca1a3397 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xca308b99 tty_prepare_flip_string_flags +EXPORT_SYMBOL_GPL vmlinux 0xca3d22a5 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xca585430 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xca85d8cf tracepoint_probe_update_all +EXPORT_SYMBOL_GPL vmlinux 0xca997a84 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcb273676 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xcb347877 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xcb5f6e99 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbfb1492 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xcc1f1c3d inet_twdr_hangman +EXPORT_SYMBOL_GPL vmlinux 0xcc5f7b7b gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xccc04190 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcce90638 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xcd02854b usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xcd13fa3a fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xcd239306 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xcd263e74 blkio_alloc_blkg_stats +EXPORT_SYMBOL_GPL vmlinux 0xcd8cb00b omap_dm_timer_set_load +EXPORT_SYMBOL_GPL vmlinux 0xcd9991a9 usb_usual_set_present +EXPORT_SYMBOL_GPL vmlinux 0xcda4184f blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce7e1c52 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xce91546f regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xce9b1dc6 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xcf008bc1 armpmu_get_pmu_id +EXPORT_SYMBOL_GPL vmlinux 0xcf14787f inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcf1600ff usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xcf1e921b input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xcfaa21dd omap_dm_timer_request +EXPORT_SYMBOL_GPL vmlinux 0xcfb0f684 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfcc83ad register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcffdd750 bsg_goose_queue +EXPORT_SYMBOL_GPL vmlinux 0xd0135c96 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xd02d3fb1 crypto_aead_type +EXPORT_SYMBOL_GPL vmlinux 0xd02fc120 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd03f124b __css_put +EXPORT_SYMBOL_GPL vmlinux 0xd05dc2a3 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd07d186f __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd07f00d7 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd0ab519a dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d00f8b usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xd0f2894f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xd1010417 __inet_hash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xd106ff1c dm_kill_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0xd10b9bd9 of_property_count_strings +EXPORT_SYMBOL_GPL vmlinux 0xd11ebb95 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xd14f34d1 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1b2db37 tracepoint_probe_register_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xd1cedbff inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd20bbc2a init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd24bf4de ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd29e4748 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xd2b7da51 sysdev_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd2fe3df1 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xd31c5556 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xd32fe193 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd33c4fca __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xd34f32c0 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xd37e13b4 regulator_set_optimum_mode +EXPORT_SYMBOL_GPL vmlinux 0xd3e61495 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd3ef152b blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40c533a dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xd40f3a30 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xd41e835a srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd4728648 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd474cfb3 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d44ccd device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xd4d857ec cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd4d960b6 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xd538c0d3 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active +EXPORT_SYMBOL_GPL vmlinux 0xd59668e6 unlock_flocks +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5d8edb1 get_driver +EXPORT_SYMBOL_GPL vmlinux 0xd649e506 proc_net_fops_create +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6a07802 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd788742d perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd828d319 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xd8463f38 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xd8525ea7 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xd85ac634 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd898cd9c enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xd8b9b407 omap_dm_timer_set_prescaler +EXPORT_SYMBOL_GPL vmlinux 0xd9200a99 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xd92b233c tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xd93e76a6 kbd_table +EXPORT_SYMBOL_GPL vmlinux 0xd93fecf2 blkio_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd94ade67 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9506549 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xd9514172 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xd956cdf6 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd989e4cd spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xd9a21dfc mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9eef782 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd9f73f8d usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd9fca96d hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda1be8e1 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xda27f6c0 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xda3a7ca9 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xda4002f3 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xda833b98 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xda83854e mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xdab4cd66 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xdab9e182 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xdadbf4a0 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xdadf3f2d tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdafed4cd skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xdb04cacc tracepoint_probe_unregister_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xdb1aa39a usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xdb1e9caa tracepoint_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xdb274e52 monotonic_to_bootbased +EXPORT_SYMBOL_GPL vmlinux 0xdb6d78e9 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xdba95fd5 reserve_pmu +EXPORT_SYMBOL_GPL vmlinux 0xdc671148 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdccbad4c blkiocg_update_io_merged_stats +EXPORT_SYMBOL_GPL vmlinux 0xdd06b91e rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd3cf228 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xdd75ee5c power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xdd962468 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xdd9fba6c irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde1fba32 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xde3abdbc ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde417b81 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xde4d4502 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xde8bb29c device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xdea59655 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xdeeadbe5 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdf5270a0 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xdff36a4d class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0476be2 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0f39078 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe18dff30 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xe1aadceb sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xe1cc39f6 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1cd6eb5 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe20d2695 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe2375a31 css_id +EXPORT_SYMBOL_GPL vmlinux 0xe26c11bc __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xe278bf30 xv_malloc +EXPORT_SYMBOL_GPL vmlinux 0xe2bbb3d9 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe2dd67e5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe2fa044d tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3092b0d blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xe3498725 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xe34f02b6 lookup_instantiate_filp +EXPORT_SYMBOL_GPL vmlinux 0xe384a102 usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xe3bcf9eb raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xe3c62dc7 wm8994_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xe3e75a53 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xe4077118 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe41382d9 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xe41b61b7 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4674c69 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xe493abc2 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xe4add839 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe4d298b0 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xe4da226d platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xe5395236 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xe5668c22 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5ddddcf platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xe609b588 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe6185005 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe61a6d2f gpio_unexport +EXPORT_SYMBOL_GPL vmlinux 0xe6488b47 cpufreq_notify_transition +EXPORT_SYMBOL_GPL vmlinux 0xe64deefc device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6f73341 sysdev_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe738a885 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xe73c91b4 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xe780ca73 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe78a9181 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xe78ecdbd cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe791614e transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xe7c2875e crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xe7d86d6c crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xe7e01b89 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80b43da ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8552426 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe8611953 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe871e747 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xe87fbb59 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xe8894a66 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xe8acf5e5 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xe8d9b095 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xe90fe971 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xe930f18c wm8994_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9587909 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0xe9795012 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xe98076df max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe9d0cd6f usb_usual_ignore_device +EXPORT_SYMBOL_GPL vmlinux 0xe9d0e4f2 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xea040c4f nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xea065e01 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea492dd3 omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0xea6410c8 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xea7cc833 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xeac508cf ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xeae74760 scsi_nl_send_transport_msg +EXPORT_SYMBOL_GPL vmlinux 0xeb31b5fc sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xeb51bb53 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba0a798 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xebba2adf inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xec08967c device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec237bd5 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec32e025 mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0xec544272 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xeccf18f2 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xecda4a95 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xed695a2d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xed77fd4b device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xed98787e rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xeda63db3 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0xee315eb0 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xee408b75 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xee40e9c2 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xee57a893 sysfs_put +EXPORT_SYMBOL_GPL vmlinux 0xee604002 cgroup_lock_live_group +EXPORT_SYMBOL_GPL vmlinux 0xee6446bd usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef7c7c20 sysfs_get +EXPORT_SYMBOL_GPL vmlinux 0xef81c9e1 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefb53b7e iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xefb72398 pstore_write +EXPORT_SYMBOL_GPL vmlinux 0xefdd5a63 ktime_get_ts +EXPORT_SYMBOL_GPL vmlinux 0xefebeb7e regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xeff40792 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xeff9157c kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xf0316dc9 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xf03b9de8 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xf05a206f regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xf08a341c sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xf095da7f fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xf0a1e0fd inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xf0e7af21 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xf118c21d add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xf1377ddb blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xf1549d8d pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xf17b802d sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1bf6daa da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf1cbf02e sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xf1d7469d sysfs_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf1dab087 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xf1f2d723 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xf1f8c945 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xf1ffba76 blkdev_aio_write +EXPORT_SYMBOL_GPL vmlinux 0xf229277c __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf28741e1 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xf2935e8a eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xf2b06587 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xf2d49fb3 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf2db6788 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xf2f7df02 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30317c7 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf30676f8 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3254c35 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xf34806ec hrtimer_get_res +EXPORT_SYMBOL_GPL vmlinux 0xf37a29bf sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xf390f75d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b93a97 cgroup_lock_is_held +EXPORT_SYMBOL_GPL vmlinux 0xf3c5194e __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf3dd036d regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xf3eb92e0 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf44336bf md_stop +EXPORT_SYMBOL_GPL vmlinux 0xf465c862 sysfs_notify_dirent +EXPORT_SYMBOL_GPL vmlinux 0xf4da3260 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5651fb0 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf569cfc1 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xf58040ef fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xf5862928 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf61e30f6 blkiocg_update_dispatch_stats +EXPORT_SYMBOL_GPL vmlinux 0xf63296eb tcp_reno_min_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xf6347706 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xf6360dca seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xf648006e mmput +EXPORT_SYMBOL_GPL vmlinux 0xf6cb7851 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xf6d81b2f platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf6dc755d dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xf6e04730 event_storage +EXPORT_SYMBOL_GPL vmlinux 0xf6e39ae0 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ebb423 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf72ee27e __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xf73e1e24 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf7526011 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xf754944d sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf756ca61 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xf7713218 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf78cfb76 blk_queue_bio +EXPORT_SYMBOL_GPL vmlinux 0xf78d29ad tcp_init_congestion_ops +EXPORT_SYMBOL_GPL vmlinux 0xf7c45ed2 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xf7d8f7cc dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xf7e19dbc register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xf7f85d02 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xf7f9fb0e blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf8797314 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8a03e1d tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xf8e4a743 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf8ecffe5 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xf8f28a1b skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf913c393 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xf92c3cca device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf934ddf8 rtc_set_mmss +EXPORT_SYMBOL_GPL vmlinux 0xf94a2852 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0xf95871e0 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d046f0 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xf9de974a blkiocg_update_io_remove_stats +EXPORT_SYMBOL_GPL vmlinux 0xf9e90eaf input_class +EXPORT_SYMBOL_GPL vmlinux 0xfa012fe7 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa500200 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xfa850e77 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xfab3c6b1 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xfae557d7 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xfb07bce5 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfb0b8da1 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xfb217ca0 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb41e8de pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb9eaa88 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xfbdf412e class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xfbe41973 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xfbf9be5d register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfc59a929 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xfc5a8a65 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfc815da8 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfcafed3a put_pid +EXPORT_SYMBOL_GPL vmlinux 0xfcc669c1 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfcd7bc0b ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0xfcde939a tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xfd2fb2f7 omap_dm_timer_enable +EXPORT_SYMBOL_GPL vmlinux 0xfde0b92c crypto_larval_error +EXPORT_SYMBOL_GPL vmlinux 0xfe01c404 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xfe2839b3 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9a4fb6 inode_dio_wait +EXPORT_SYMBOL_GPL vmlinux 0xfea9b847 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfebfccdf usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed3dff2 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff41151f platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff640e80 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xff6a9b76 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xff747600 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xff86ac51 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xff9fb229 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xffa4c4ec cgroup_lock +EXPORT_SYMBOL_GPL vmlinux 0xffd7fc3f sysfs_notify --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/armhf/highbank.compiler +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/armhf/highbank.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/armhf/highbank +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/armhf/highbank @@ -0,0 +1,5310 @@ +EXPORT_SYMBOL crypto/xor 0x00000000 xor_blocks +EXPORT_SYMBOL drivers/block/loop 0x00000000 loop_register_transfer +EXPORT_SYMBOL drivers/block/loop 0x00000000 loop_unregister_transfer +EXPORT_SYMBOL drivers/md/dm-log 0x00000000 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x00000000 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x00000000 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x00000000 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x00000000 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x00000000 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x00000000 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x00000000 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x00000000 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x00000000 dm_snap_origin +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_close_sync +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_cond_end_sync +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_end_sync +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_endwrite +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_start_sync +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_startwrite +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_unplug +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_check_no_bitmap +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_check_recovery +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_done_sync +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_error +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_flush_request +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_integrity_add_rdev +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_integrity_register +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_register_thread +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_set_array_sectors +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_unregister_thread +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_wait_for_blocked_rdev +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_wakeup_thread +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_write_end +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_write_start +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 mddev_congested +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 register_md_personality +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 unregister_md_personality +EXPORT_SYMBOL drivers/md/raid456 0x00000000 raid5_set_cache_size +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x00000000 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x00000000 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x00000000 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x00000000 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x00000000 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x00000000 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x00000000 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x00000000 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x00000000 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x00000000 sirdev_write_complete +EXPORT_SYMBOL drivers/net/mii 0x00000000 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x00000000 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x00000000 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x00000000 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x00000000 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x00000000 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x00000000 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x00000000 mii_nway_restart +EXPORT_SYMBOL drivers/net/ppp/ppp_generic 0x00000000 ppp_channel_index +EXPORT_SYMBOL drivers/net/ppp/ppp_generic 0x00000000 ppp_dev_name +EXPORT_SYMBOL drivers/net/ppp/ppp_generic 0x00000000 ppp_input +EXPORT_SYMBOL drivers/net/ppp/ppp_generic 0x00000000 ppp_input_error +EXPORT_SYMBOL drivers/net/ppp/ppp_generic 0x00000000 ppp_output_wakeup +EXPORT_SYMBOL drivers/net/ppp/ppp_generic 0x00000000 ppp_register_channel +EXPORT_SYMBOL drivers/net/ppp/ppp_generic 0x00000000 ppp_register_compressor +EXPORT_SYMBOL drivers/net/ppp/ppp_generic 0x00000000 ppp_register_net_channel +EXPORT_SYMBOL drivers/net/ppp/ppp_generic 0x00000000 ppp_unit_number +EXPORT_SYMBOL drivers/net/ppp/ppp_generic 0x00000000 ppp_unregister_channel +EXPORT_SYMBOL drivers/net/ppp/ppp_generic 0x00000000 ppp_unregister_compressor +EXPORT_SYMBOL drivers/net/ppp/pppox 0x00000000 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x00000000 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x00000000 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x00000000 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/slip/slhc 0x00000000 slhc_compress +EXPORT_SYMBOL drivers/net/slip/slhc 0x00000000 slhc_free +EXPORT_SYMBOL drivers/net/slip/slhc 0x00000000 slhc_init +EXPORT_SYMBOL drivers/net/slip/slhc 0x00000000 slhc_remember +EXPORT_SYMBOL drivers/net/slip/slhc 0x00000000 slhc_toss +EXPORT_SYMBOL drivers/net/slip/slhc 0x00000000 slhc_uncompress +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x00000000 parport_write +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x00000000 sl811h_driver +EXPORT_SYMBOL lib/crc-ccitt 0x00000000 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x00000000 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x00000000 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0x00000000 crc_itu_t_table +EXPORT_SYMBOL lib/libcrc32c 0x00000000 crc32c +EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfmul +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x00000000 zlib_deflate +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x00000000 zlib_deflateEnd +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x00000000 zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x00000000 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x00000000 zlib_deflate_workspacesize +EXPORT_SYMBOL net/ipv4/tunnel4 0x00000000 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x00000000 xfrm4_tunnel_register +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x00000000 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x00000000 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x00000000 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x00000000 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x00000000 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x00000000 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x00000000 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x00000000 ircomm_open +EXPORT_SYMBOL net/irda/irda 0x00000000 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x00000000 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x00000000 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x00000000 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x00000000 hashbin_find +EXPORT_SYMBOL net/irda/irda 0x00000000 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x00000000 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x00000000 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x00000000 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x00000000 hashbin_new +EXPORT_SYMBOL net/irda/irda 0x00000000 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x00000000 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x00000000 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x00000000 irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x00000000 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x00000000 irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x00000000 irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x00000000 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x00000000 irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x00000000 iriap_close +EXPORT_SYMBOL net/irda/irda 0x00000000 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x00000000 iriap_open +EXPORT_SYMBOL net/irda/irda 0x00000000 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x00000000 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x00000000 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x00000000 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x00000000 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0x00000000 irias_find_object +EXPORT_SYMBOL net/irda/irda 0x00000000 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x00000000 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x00000000 irias_new_object +EXPORT_SYMBOL net/irda/irda 0x00000000 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0x00000000 irlap_close +EXPORT_SYMBOL net/irda/irda 0x00000000 irlap_open +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x00000000 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x00000000 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x00000000 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x00000000 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x00000000 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x00000000 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x00000000 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x00000000 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x00000000 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x00000000 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x00000000 proc_irda +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_alloc_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_disable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_enable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_get_operstate +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_napi_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_napi_schedule +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_rx +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_sta_eosp_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x00000000 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/sunrpc/sunrpc 0x00000000 svc_pool_stats_open +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 __cfg80211_auth_canceled +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 __cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 __cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_del_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_get_mesh +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_inform_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_inform_bss_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_send_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_send_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_send_rx_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_send_rx_auth +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_send_unprot_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_send_unprot_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 ieee802_11_parse_elems_crc +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 wiphy_new +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x00000000 wiphy_unregister +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x00000000 dm_mem_cache_alloc +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x00000000 dm_mem_cache_client_create +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x00000000 dm_mem_cache_client_destroy +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x00000000 dm_mem_cache_free +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x00000000 dm_mem_cache_grow +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x00000000 dm_mem_cache_shrink +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x00000000 dm_message_parse +EXPORT_SYMBOL vmlinux 0x00000000 I_BDEV +EXPORT_SYMBOL vmlinux 0x00000000 ____pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x00000000 ___dma_page_cpu_to_dev +EXPORT_SYMBOL vmlinux 0x00000000 ___dma_page_dev_to_cpu +EXPORT_SYMBOL vmlinux 0x00000000 ___dma_single_cpu_to_dev +EXPORT_SYMBOL vmlinux 0x00000000 ___dma_single_dev_to_cpu +EXPORT_SYMBOL vmlinux 0x00000000 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x00000000 ___ratelimit +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_unwind_cpp_pr0 +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x00000000 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0x00000000 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x00000000 __alloc_skb +EXPORT_SYMBOL vmlinux 0x00000000 __any_online_cpu +EXPORT_SYMBOL vmlinux 0x00000000 __arm_ioremap +EXPORT_SYMBOL vmlinux 0x00000000 __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x00000000 __ashldi3 +EXPORT_SYMBOL vmlinux 0x00000000 __ashrdi3 +EXPORT_SYMBOL vmlinux 0x00000000 __bad_xchg +EXPORT_SYMBOL vmlinux 0x00000000 __bdevname +EXPORT_SYMBOL vmlinux 0x00000000 __bforget +EXPORT_SYMBOL vmlinux 0x00000000 __bio_clone +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_and +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_empty +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_full +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_or +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_parse +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_xor +EXPORT_SYMBOL vmlinux 0x00000000 __blk_end_request +EXPORT_SYMBOL vmlinux 0x00000000 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x00000000 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x00000000 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0x00000000 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x00000000 __block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x00000000 __block_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x00000000 __bread +EXPORT_SYMBOL vmlinux 0x00000000 __breadahead +EXPORT_SYMBOL vmlinux 0x00000000 __break_lease +EXPORT_SYMBOL vmlinux 0x00000000 __brelse +EXPORT_SYMBOL vmlinux 0x00000000 __cap_empty_set +EXPORT_SYMBOL vmlinux 0x00000000 __check_region +EXPORT_SYMBOL vmlinux 0x00000000 __clear_user +EXPORT_SYMBOL vmlinux 0x00000000 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x00000000 __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x00000000 __const_udelay +EXPORT_SYMBOL vmlinux 0x00000000 __copy_from_user +EXPORT_SYMBOL vmlinux 0x00000000 __copy_to_user +EXPORT_SYMBOL vmlinux 0x00000000 __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x00000000 __d_drop +EXPORT_SYMBOL vmlinux 0x00000000 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 __destroy_inode +EXPORT_SYMBOL vmlinux 0x00000000 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x00000000 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x00000000 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x00000000 __dev_printk +EXPORT_SYMBOL vmlinux 0x00000000 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x00000000 __devm_release_region +EXPORT_SYMBOL vmlinux 0x00000000 __devm_request_region +EXPORT_SYMBOL vmlinux 0x00000000 __div0 +EXPORT_SYMBOL vmlinux 0x00000000 __div64_32 +EXPORT_SYMBOL vmlinux 0x00000000 __divsi3 +EXPORT_SYMBOL vmlinux 0x00000000 __do_div64 +EXPORT_SYMBOL vmlinux 0x00000000 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x00000000 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x00000000 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x00000000 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x00000000 __dst_free +EXPORT_SYMBOL vmlinux 0x00000000 __elv_add_request +EXPORT_SYMBOL vmlinux 0x00000000 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x00000000 __f_setown +EXPORT_SYMBOL vmlinux 0x00000000 __find_get_block +EXPORT_SYMBOL vmlinux 0x00000000 __first_cpu +EXPORT_SYMBOL vmlinux 0x00000000 __free_pages +EXPORT_SYMBOL vmlinux 0x00000000 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x00000000 __generic_file_aio_write +EXPORT_SYMBOL vmlinux 0x00000000 __get_free_pages +EXPORT_SYMBOL vmlinux 0x00000000 __get_page_tail +EXPORT_SYMBOL vmlinux 0x00000000 __get_user_1 +EXPORT_SYMBOL vmlinux 0x00000000 __get_user_2 +EXPORT_SYMBOL vmlinux 0x00000000 __get_user_4 +EXPORT_SYMBOL vmlinux 0x00000000 __get_user_pages +EXPORT_SYMBOL vmlinux 0x00000000 __getblk +EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_flush +EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_init +EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x00000000 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 __inet6_hash +EXPORT_SYMBOL vmlinux 0x00000000 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x00000000 __init_rwsem +EXPORT_SYMBOL vmlinux 0x00000000 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x00000000 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x00000000 __invalidate_device +EXPORT_SYMBOL vmlinux 0x00000000 __iounmap +EXPORT_SYMBOL vmlinux 0x00000000 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x00000000 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x00000000 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x00000000 __irq_regs +EXPORT_SYMBOL vmlinux 0x00000000 __kernel_param_lock +EXPORT_SYMBOL vmlinux 0x00000000 __kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_free +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_in +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_init +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfree_skb +EXPORT_SYMBOL vmlinux 0x00000000 __kmalloc +EXPORT_SYMBOL vmlinux 0x00000000 __kmap_atomic +EXPORT_SYMBOL vmlinux 0x00000000 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x00000000 __krealloc +EXPORT_SYMBOL vmlinux 0x00000000 __kunmap_atomic +EXPORT_SYMBOL vmlinux 0x00000000 __lock_buffer +EXPORT_SYMBOL vmlinux 0x00000000 __lock_page +EXPORT_SYMBOL vmlinux 0x00000000 __locks_copy_lock +EXPORT_SYMBOL vmlinux 0x00000000 __lru_cache_add +EXPORT_SYMBOL vmlinux 0x00000000 __lshrdi3 +EXPORT_SYMBOL vmlinux 0x00000000 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x00000000 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x00000000 __memzero +EXPORT_SYMBOL vmlinux 0x00000000 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x00000000 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 __modsi3 +EXPORT_SYMBOL vmlinux 0x00000000 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x00000000 __muldi3 +EXPORT_SYMBOL vmlinux 0x00000000 __mutex_init +EXPORT_SYMBOL vmlinux 0x00000000 __napi_complete +EXPORT_SYMBOL vmlinux 0x00000000 __napi_schedule +EXPORT_SYMBOL vmlinux 0x00000000 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x00000000 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x00000000 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x00000000 __netdev_printk +EXPORT_SYMBOL vmlinux 0x00000000 __netif_schedule +EXPORT_SYMBOL vmlinux 0x00000000 __next_cpu +EXPORT_SYMBOL vmlinux 0x00000000 __nla_put +EXPORT_SYMBOL vmlinux 0x00000000 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x00000000 __nla_reserve +EXPORT_SYMBOL vmlinux 0x00000000 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x00000000 __page_symlink +EXPORT_SYMBOL vmlinux 0x00000000 __pagevec_release +EXPORT_SYMBOL vmlinux 0x00000000 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x00000000 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x00000000 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x00000000 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x00000000 __print_symbol +EXPORT_SYMBOL vmlinux 0x00000000 __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x00000000 __ps2_command +EXPORT_SYMBOL vmlinux 0x00000000 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x00000000 __put_cred +EXPORT_SYMBOL vmlinux 0x00000000 __put_user_1 +EXPORT_SYMBOL vmlinux 0x00000000 __put_user_2 +EXPORT_SYMBOL vmlinux 0x00000000 __put_user_4 +EXPORT_SYMBOL vmlinux 0x00000000 __put_user_8 +EXPORT_SYMBOL vmlinux 0x00000000 __pv_phys_offset +EXPORT_SYMBOL vmlinux 0x00000000 __quota_error +EXPORT_SYMBOL vmlinux 0x00000000 __raw_readsb +EXPORT_SYMBOL vmlinux 0x00000000 __raw_readsl +EXPORT_SYMBOL vmlinux 0x00000000 __raw_readsw +EXPORT_SYMBOL vmlinux 0x00000000 __raw_writesb +EXPORT_SYMBOL vmlinux 0x00000000 __raw_writesl +EXPORT_SYMBOL vmlinux 0x00000000 __raw_writesw +EXPORT_SYMBOL vmlinux 0x00000000 __readwrite_bug +EXPORT_SYMBOL vmlinux 0x00000000 __register_binfmt +EXPORT_SYMBOL vmlinux 0x00000000 __register_chrdev +EXPORT_SYMBOL vmlinux 0x00000000 __release_region +EXPORT_SYMBOL vmlinux 0x00000000 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x00000000 __request_module +EXPORT_SYMBOL vmlinux 0x00000000 __request_region +EXPORT_SYMBOL vmlinux 0x00000000 __rta_fill +EXPORT_SYMBOL vmlinux 0x00000000 __scm_destroy +EXPORT_SYMBOL vmlinux 0x00000000 __scm_send +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_print_command +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_put_command +EXPORT_SYMBOL vmlinux 0x00000000 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x00000000 __send_remote_softirq +EXPORT_SYMBOL vmlinux 0x00000000 __seq_open_private +EXPORT_SYMBOL vmlinux 0x00000000 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 __serio_register_port +EXPORT_SYMBOL vmlinux 0x00000000 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x00000000 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x00000000 __set_personality +EXPORT_SYMBOL vmlinux 0x00000000 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x00000000 __sg_free_table +EXPORT_SYMBOL vmlinux 0x00000000 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x00000000 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x00000000 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x00000000 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x00000000 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x00000000 __skb_get_rxhash +EXPORT_SYMBOL vmlinux 0x00000000 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x00000000 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x00000000 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x00000000 __sock_create +EXPORT_SYMBOL vmlinux 0x00000000 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x00000000 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0x00000000 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x00000000 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x00000000 __strncpy_from_user +EXPORT_SYMBOL vmlinux 0x00000000 __strnlen_user +EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0x00000000 __symbol_put +EXPORT_SYMBOL vmlinux 0x00000000 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x00000000 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x00000000 __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x00000000 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0x00000000 __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x00000000 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x00000000 __udelay +EXPORT_SYMBOL vmlinux 0x00000000 __udivsi3 +EXPORT_SYMBOL vmlinux 0x00000000 __umodsi3 +EXPORT_SYMBOL vmlinux 0x00000000 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x00000000 __vlan_find_dev_deep +EXPORT_SYMBOL vmlinux 0x00000000 __vmalloc +EXPORT_SYMBOL vmlinux 0x00000000 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x00000000 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x00000000 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x00000000 __wake_up +EXPORT_SYMBOL vmlinux 0x00000000 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x00000000 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x00000000 _change_bit +EXPORT_SYMBOL vmlinux 0x00000000 _clear_bit +EXPORT_SYMBOL vmlinux 0x00000000 _cond_resched +EXPORT_SYMBOL vmlinux 0x00000000 _ctype +EXPORT_SYMBOL vmlinux 0x00000000 _dev_info +EXPORT_SYMBOL vmlinux 0x00000000 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x00000000 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0x00000000 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x00000000 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x00000000 _kstrtol +EXPORT_SYMBOL vmlinux 0x00000000 _kstrtoul +EXPORT_SYMBOL vmlinux 0x00000000 _local_bh_enable +EXPORT_SYMBOL vmlinux 0x00000000 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x00000000 _memcpy_toio +EXPORT_SYMBOL vmlinux 0x00000000 _memset_io +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x00000000 _set_bit +EXPORT_SYMBOL vmlinux 0x00000000 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0x00000000 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x00000000 _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x00000000 abort +EXPORT_SYMBOL vmlinux 0x00000000 abort_creds +EXPORT_SYMBOL vmlinux 0x00000000 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0x00000000 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x00000000 account_page_writeback +EXPORT_SYMBOL vmlinux 0x00000000 add_disk +EXPORT_SYMBOL vmlinux 0x00000000 add_taint +EXPORT_SYMBOL vmlinux 0x00000000 add_timer +EXPORT_SYMBOL vmlinux 0x00000000 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x00000000 add_wait_queue +EXPORT_SYMBOL vmlinux 0x00000000 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x00000000 address_space_init_once +EXPORT_SYMBOL vmlinux 0x00000000 adjust_resource +EXPORT_SYMBOL vmlinux 0x00000000 aio_complete +EXPORT_SYMBOL vmlinux 0x00000000 aio_put_req +EXPORT_SYMBOL vmlinux 0x00000000 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x00000000 alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x00000000 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x00000000 alloc_disk +EXPORT_SYMBOL vmlinux 0x00000000 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x00000000 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x00000000 alloc_file +EXPORT_SYMBOL vmlinux 0x00000000 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x00000000 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x00000000 alloc_pages_exact_nid +EXPORT_SYMBOL vmlinux 0x00000000 alloc_tty_driver +EXPORT_SYMBOL vmlinux 0x00000000 allocate_resource +EXPORT_SYMBOL vmlinux 0x00000000 allow_signal +EXPORT_SYMBOL vmlinux 0x00000000 amba_device_register +EXPORT_SYMBOL vmlinux 0x00000000 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x00000000 amba_driver_register +EXPORT_SYMBOL vmlinux 0x00000000 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x00000000 amba_find_device +EXPORT_SYMBOL vmlinux 0x00000000 amba_release_regions +EXPORT_SYMBOL vmlinux 0x00000000 amba_request_regions +EXPORT_SYMBOL vmlinux 0x00000000 argv_free +EXPORT_SYMBOL vmlinux 0x00000000 argv_split +EXPORT_SYMBOL vmlinux 0x00000000 arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0x00000000 arp_create +EXPORT_SYMBOL vmlinux 0x00000000 arp_find +EXPORT_SYMBOL vmlinux 0x00000000 arp_invalidate +EXPORT_SYMBOL vmlinux 0x00000000 arp_send +EXPORT_SYMBOL vmlinux 0x00000000 arp_tbl +EXPORT_SYMBOL vmlinux 0x00000000 arp_xmit +EXPORT_SYMBOL vmlinux 0x00000000 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x00000000 ata_link_printk +EXPORT_SYMBOL vmlinux 0x00000000 ata_port_printk +EXPORT_SYMBOL vmlinux 0x00000000 ata_print_version +EXPORT_SYMBOL vmlinux 0x00000000 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x00000000 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x00000000 audit_log +EXPORT_SYMBOL vmlinux 0x00000000 audit_log_end +EXPORT_SYMBOL vmlinux 0x00000000 audit_log_format +EXPORT_SYMBOL vmlinux 0x00000000 audit_log_secctx +EXPORT_SYMBOL vmlinux 0x00000000 audit_log_start +EXPORT_SYMBOL vmlinux 0x00000000 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0x00000000 avenrun +EXPORT_SYMBOL vmlinux 0x00000000 balance_dirty_pages_ratelimited_nr +EXPORT_SYMBOL vmlinux 0x00000000 bcd2bin +EXPORT_SYMBOL vmlinux 0x00000000 bd_set_size +EXPORT_SYMBOL vmlinux 0x00000000 bdev_read_only +EXPORT_SYMBOL vmlinux 0x00000000 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x00000000 bdevname +EXPORT_SYMBOL vmlinux 0x00000000 bdget +EXPORT_SYMBOL vmlinux 0x00000000 bdget_disk +EXPORT_SYMBOL vmlinux 0x00000000 bdi_destroy +EXPORT_SYMBOL vmlinux 0x00000000 bdi_init +EXPORT_SYMBOL vmlinux 0x00000000 bdi_register +EXPORT_SYMBOL vmlinux 0x00000000 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x00000000 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x00000000 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x00000000 bdi_unregister +EXPORT_SYMBOL vmlinux 0x00000000 bdput +EXPORT_SYMBOL vmlinux 0x00000000 bh_submit_read +EXPORT_SYMBOL vmlinux 0x00000000 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x00000000 bin2bcd +EXPORT_SYMBOL vmlinux 0x00000000 bio_add_page +EXPORT_SYMBOL vmlinux 0x00000000 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x00000000 bio_alloc +EXPORT_SYMBOL vmlinux 0x00000000 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x00000000 bio_clone +EXPORT_SYMBOL vmlinux 0x00000000 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x00000000 bio_copy_user +EXPORT_SYMBOL vmlinux 0x00000000 bio_endio +EXPORT_SYMBOL vmlinux 0x00000000 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x00000000 bio_free +EXPORT_SYMBOL vmlinux 0x00000000 bio_get_nr_vecs +EXPORT_SYMBOL vmlinux 0x00000000 bio_init +EXPORT_SYMBOL vmlinux 0x00000000 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x00000000 bio_map_kern +EXPORT_SYMBOL vmlinux 0x00000000 bio_map_user +EXPORT_SYMBOL vmlinux 0x00000000 bio_pair_release +EXPORT_SYMBOL vmlinux 0x00000000 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x00000000 bio_put +EXPORT_SYMBOL vmlinux 0x00000000 bio_sector_offset +EXPORT_SYMBOL vmlinux 0x00000000 bio_split +EXPORT_SYMBOL vmlinux 0x00000000 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x00000000 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x00000000 bioset_create +EXPORT_SYMBOL vmlinux 0x00000000 bioset_free +EXPORT_SYMBOL vmlinux 0x00000000 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_bitremap +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_clear +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_find_next_zero_area +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_fold +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_onto +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_remap +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_scnlistprintf +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_scnprintf +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_set +EXPORT_SYMBOL vmlinux 0x00000000 bitrev16 +EXPORT_SYMBOL vmlinux 0x00000000 bitrev32 +EXPORT_SYMBOL vmlinux 0x00000000 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x00000000 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_complete_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x00000000 blk_end_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x00000000 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x00000000 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x00000000 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x00000000 blk_free_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x00000000 blk_get_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_get_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_init_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x00000000 blk_init_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_insert_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_enabled +EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x00000000 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x00000000 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x00000000 blk_limits_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x00000000 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x00000000 blk_make_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x00000000 blk_peek_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_put_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_put_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_merge_bvec +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x00000000 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x00000000 blk_register_region +EXPORT_SYMBOL vmlinux 0x00000000 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_init +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x00000000 blk_run_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x00000000 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x00000000 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x00000000 blk_start_plug +EXPORT_SYMBOL vmlinux 0x00000000 blk_start_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_start_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x00000000 blk_verify_command +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_get +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_put +EXPORT_SYMBOL vmlinux 0x00000000 block_all_signals +EXPORT_SYMBOL vmlinux 0x00000000 block_commit_write +EXPORT_SYMBOL vmlinux 0x00000000 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x00000000 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x00000000 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x00000000 block_read_full_page +EXPORT_SYMBOL vmlinux 0x00000000 block_truncate_page +EXPORT_SYMBOL vmlinux 0x00000000 block_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 block_write_end +EXPORT_SYMBOL vmlinux 0x00000000 block_write_full_page +EXPORT_SYMBOL vmlinux 0x00000000 block_write_full_page_endio +EXPORT_SYMBOL vmlinux 0x00000000 bmap +EXPORT_SYMBOL vmlinux 0x00000000 boot_tvec_bases +EXPORT_SYMBOL vmlinux 0x00000000 brioctl_set +EXPORT_SYMBOL vmlinux 0x00000000 bsearch +EXPORT_SYMBOL vmlinux 0x00000000 build_ehash_secret +EXPORT_SYMBOL vmlinux 0x00000000 cacheid +EXPORT_SYMBOL vmlinux 0x00000000 cad_pid +EXPORT_SYMBOL vmlinux 0x00000000 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x00000000 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x00000000 call_usermodehelper_freeinfo +EXPORT_SYMBOL vmlinux 0x00000000 call_usermodehelper_setfns +EXPORT_SYMBOL vmlinux 0x00000000 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x00000000 can_do_mlock +EXPORT_SYMBOL vmlinux 0x00000000 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x00000000 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x00000000 cap_file_mmap +EXPORT_SYMBOL vmlinux 0x00000000 cap_netlink_recv +EXPORT_SYMBOL vmlinux 0x00000000 capable +EXPORT_SYMBOL vmlinux 0x00000000 cdev_add +EXPORT_SYMBOL vmlinux 0x00000000 cdev_alloc +EXPORT_SYMBOL vmlinux 0x00000000 cdev_del +EXPORT_SYMBOL vmlinux 0x00000000 cdev_init +EXPORT_SYMBOL vmlinux 0x00000000 check_disk_change +EXPORT_SYMBOL vmlinux 0x00000000 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x00000000 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x00000000 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x00000000 clk_add_alias +EXPORT_SYMBOL vmlinux 0x00000000 clk_get +EXPORT_SYMBOL vmlinux 0x00000000 clk_get_sys +EXPORT_SYMBOL vmlinux 0x00000000 clk_put +EXPORT_SYMBOL vmlinux 0x00000000 clkdev_add +EXPORT_SYMBOL vmlinux 0x00000000 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x00000000 clkdev_drop +EXPORT_SYMBOL vmlinux 0x00000000 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x00000000 clocksource_register +EXPORT_SYMBOL vmlinux 0x00000000 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x00000000 color_table +EXPORT_SYMBOL vmlinux 0x00000000 commit_creds +EXPORT_SYMBOL vmlinux 0x00000000 complete +EXPORT_SYMBOL vmlinux 0x00000000 complete_all +EXPORT_SYMBOL vmlinux 0x00000000 complete_and_exit +EXPORT_SYMBOL vmlinux 0x00000000 complete_request_key +EXPORT_SYMBOL vmlinux 0x00000000 completion_done +EXPORT_SYMBOL vmlinux 0x00000000 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x00000000 con_is_bound +EXPORT_SYMBOL vmlinux 0x00000000 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x00000000 congestion_wait +EXPORT_SYMBOL vmlinux 0x00000000 console_blank_hook +EXPORT_SYMBOL vmlinux 0x00000000 console_blanked +EXPORT_SYMBOL vmlinux 0x00000000 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0x00000000 console_lock +EXPORT_SYMBOL vmlinux 0x00000000 console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x00000000 console_start +EXPORT_SYMBOL vmlinux 0x00000000 console_stop +EXPORT_SYMBOL vmlinux 0x00000000 console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x00000000 console_trylock +EXPORT_SYMBOL vmlinux 0x00000000 console_unlock +EXPORT_SYMBOL vmlinux 0x00000000 consume_skb +EXPORT_SYMBOL vmlinux 0x00000000 cont_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 contig_page_data +EXPORT_SYMBOL vmlinux 0x00000000 cookie_check_timestamp +EXPORT_SYMBOL vmlinux 0x00000000 copy_page +EXPORT_SYMBOL vmlinux 0x00000000 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x00000000 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x00000000 cpu_all_bits +EXPORT_SYMBOL vmlinux 0x00000000 cpu_cache +EXPORT_SYMBOL vmlinux 0x00000000 cpu_down +EXPORT_SYMBOL vmlinux 0x00000000 cpu_online_mask +EXPORT_SYMBOL vmlinux 0x00000000 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x00000000 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x00000000 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x00000000 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x00000000 cpu_sysdev_class +EXPORT_SYMBOL vmlinux 0x00000000 cpu_tlb +EXPORT_SYMBOL vmlinux 0x00000000 cpu_user +EXPORT_SYMBOL vmlinux 0x00000000 cpu_v7_dcache_clean_area +EXPORT_SYMBOL vmlinux 0x00000000 cpu_v7_set_pte_ext +EXPORT_SYMBOL vmlinux 0x00000000 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x00000000 crc16 +EXPORT_SYMBOL vmlinux 0x00000000 crc16_table +EXPORT_SYMBOL vmlinux 0x00000000 crc32_be +EXPORT_SYMBOL vmlinux 0x00000000 crc32_le +EXPORT_SYMBOL vmlinux 0x00000000 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x00000000 create_mnt_ns +EXPORT_SYMBOL vmlinux 0x00000000 create_proc_entry +EXPORT_SYMBOL vmlinux 0x00000000 csum_partial +EXPORT_SYMBOL vmlinux 0x00000000 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x00000000 csum_partial_copy_fromiovecend +EXPORT_SYMBOL vmlinux 0x00000000 csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x00000000 current_fs_time +EXPORT_SYMBOL vmlinux 0x00000000 current_kernel_time +EXPORT_SYMBOL vmlinux 0x00000000 current_umask +EXPORT_SYMBOL vmlinux 0x00000000 d_add_ci +EXPORT_SYMBOL vmlinux 0x00000000 d_alloc +EXPORT_SYMBOL vmlinux 0x00000000 d_alloc_name +EXPORT_SYMBOL vmlinux 0x00000000 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x00000000 d_alloc_root +EXPORT_SYMBOL vmlinux 0x00000000 d_clear_need_lookup +EXPORT_SYMBOL vmlinux 0x00000000 d_delete +EXPORT_SYMBOL vmlinux 0x00000000 d_drop +EXPORT_SYMBOL vmlinux 0x00000000 d_find_alias +EXPORT_SYMBOL vmlinux 0x00000000 d_genocide +EXPORT_SYMBOL vmlinux 0x00000000 d_instantiate +EXPORT_SYMBOL vmlinux 0x00000000 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x00000000 d_invalidate +EXPORT_SYMBOL vmlinux 0x00000000 d_lookup +EXPORT_SYMBOL vmlinux 0x00000000 d_move +EXPORT_SYMBOL vmlinux 0x00000000 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x00000000 d_path +EXPORT_SYMBOL vmlinux 0x00000000 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x00000000 d_rehash +EXPORT_SYMBOL vmlinux 0x00000000 d_set_d_op +EXPORT_SYMBOL vmlinux 0x00000000 d_splice_alias +EXPORT_SYMBOL vmlinux 0x00000000 d_validate +EXPORT_SYMBOL vmlinux 0x00000000 daemonize +EXPORT_SYMBOL vmlinux 0x00000000 datagram_poll +EXPORT_SYMBOL vmlinux 0x00000000 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x00000000 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x00000000 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x00000000 dcache_readdir +EXPORT_SYMBOL vmlinux 0x00000000 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x00000000 deactivate_super +EXPORT_SYMBOL vmlinux 0x00000000 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 default_blu +EXPORT_SYMBOL vmlinux 0x00000000 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x00000000 default_grn +EXPORT_SYMBOL vmlinux 0x00000000 default_llseek +EXPORT_SYMBOL vmlinux 0x00000000 default_red +EXPORT_SYMBOL vmlinux 0x00000000 default_wake_function +EXPORT_SYMBOL vmlinux 0x00000000 del_gendisk +EXPORT_SYMBOL vmlinux 0x00000000 del_timer +EXPORT_SYMBOL vmlinux 0x00000000 del_timer_sync +EXPORT_SYMBOL vmlinux 0x00000000 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x00000000 dentry_open +EXPORT_SYMBOL vmlinux 0x00000000 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x00000000 dentry_unhash +EXPORT_SYMBOL vmlinux 0x00000000 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x00000000 dev_activate +EXPORT_SYMBOL vmlinux 0x00000000 dev_add_pack +EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_add +EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_del +EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_init +EXPORT_SYMBOL vmlinux 0x00000000 dev_alert +EXPORT_SYMBOL vmlinux 0x00000000 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x00000000 dev_alloc_skb +EXPORT_SYMBOL vmlinux 0x00000000 dev_base_lock +EXPORT_SYMBOL vmlinux 0x00000000 dev_change_flags +EXPORT_SYMBOL vmlinux 0x00000000 dev_close +EXPORT_SYMBOL vmlinux 0x00000000 dev_crit +EXPORT_SYMBOL vmlinux 0x00000000 dev_deactivate +EXPORT_SYMBOL vmlinux 0x00000000 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x00000000 dev_driver_string +EXPORT_SYMBOL vmlinux 0x00000000 dev_emerg +EXPORT_SYMBOL vmlinux 0x00000000 dev_err +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_flags_rcu +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_drvdata +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_flags +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_stats +EXPORT_SYMBOL vmlinux 0x00000000 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x00000000 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x00000000 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x00000000 dev_gro_receive +EXPORT_SYMBOL vmlinux 0x00000000 dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x00000000 dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x00000000 dev_load +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_add +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_del +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_init +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x00000000 dev_notice +EXPORT_SYMBOL vmlinux 0x00000000 dev_open +EXPORT_SYMBOL vmlinux 0x00000000 dev_printk +EXPORT_SYMBOL vmlinux 0x00000000 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x00000000 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x00000000 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x00000000 dev_set_drvdata +EXPORT_SYMBOL vmlinux 0x00000000 dev_set_group +EXPORT_SYMBOL vmlinux 0x00000000 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x00000000 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x00000000 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x00000000 dev_trans_start +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_add +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_del +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_init +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x00000000 dev_valid_name +EXPORT_SYMBOL vmlinux 0x00000000 dev_warn +EXPORT_SYMBOL vmlinux 0x00000000 devm_free_irq +EXPORT_SYMBOL vmlinux 0x00000000 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x00000000 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x00000000 devm_ioremap +EXPORT_SYMBOL vmlinux 0x00000000 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x00000000 devm_iounmap +EXPORT_SYMBOL vmlinux 0x00000000 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x00000000 dget_parent +EXPORT_SYMBOL vmlinux 0x00000000 directly_mappable_cdev_bdi +EXPORT_SYMBOL vmlinux 0x00000000 disable_hlt +EXPORT_SYMBOL vmlinux 0x00000000 disable_irq +EXPORT_SYMBOL vmlinux 0x00000000 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x00000000 disallow_signal +EXPORT_SYMBOL vmlinux 0x00000000 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x00000000 div64_s64 +EXPORT_SYMBOL vmlinux 0x00000000 div64_u64 +EXPORT_SYMBOL vmlinux 0x00000000 div_s64_rem +EXPORT_SYMBOL vmlinux 0x00000000 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0x00000000 dm_consume_args +EXPORT_SYMBOL vmlinux 0x00000000 dm_get_device +EXPORT_SYMBOL vmlinux 0x00000000 dm_get_mapinfo +EXPORT_SYMBOL vmlinux 0x00000000 dm_io +EXPORT_SYMBOL vmlinux 0x00000000 dm_io_client_create +EXPORT_SYMBOL vmlinux 0x00000000 dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x00000000 dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x00000000 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x00000000 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x00000000 dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x00000000 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x00000000 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x00000000 dm_put_device +EXPORT_SYMBOL vmlinux 0x00000000 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x00000000 dm_read_arg +EXPORT_SYMBOL vmlinux 0x00000000 dm_read_arg_group +EXPORT_SYMBOL vmlinux 0x00000000 dm_register_target +EXPORT_SYMBOL vmlinux 0x00000000 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x00000000 dm_table_event +EXPORT_SYMBOL vmlinux 0x00000000 dm_table_get +EXPORT_SYMBOL vmlinux 0x00000000 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x00000000 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x00000000 dm_table_get_size +EXPORT_SYMBOL vmlinux 0x00000000 dm_table_put +EXPORT_SYMBOL vmlinux 0x00000000 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x00000000 dm_vcalloc +EXPORT_SYMBOL vmlinux 0x00000000 dma_alloc_coherent +EXPORT_SYMBOL vmlinux 0x00000000 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x00000000 dma_alloc_writecombine +EXPORT_SYMBOL vmlinux 0x00000000 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x00000000 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x00000000 dma_async_memcpy_buf_to_buf +EXPORT_SYMBOL vmlinux 0x00000000 dma_async_memcpy_buf_to_pg +EXPORT_SYMBOL vmlinux 0x00000000 dma_async_memcpy_pg_to_pg +EXPORT_SYMBOL vmlinux 0x00000000 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x00000000 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x00000000 dma_find_channel +EXPORT_SYMBOL vmlinux 0x00000000 dma_free_coherent +EXPORT_SYMBOL vmlinux 0x00000000 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x00000000 dma_map_sg +EXPORT_SYMBOL vmlinux 0x00000000 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x00000000 dma_mmap_coherent +EXPORT_SYMBOL vmlinux 0x00000000 dma_mmap_writecombine +EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_create +EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_free +EXPORT_SYMBOL vmlinux 0x00000000 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x00000000 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x00000000 dma_set_mask +EXPORT_SYMBOL vmlinux 0x00000000 dma_supported +EXPORT_SYMBOL vmlinux 0x00000000 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x00000000 dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x00000000 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x00000000 dma_unmap_sg +EXPORT_SYMBOL vmlinux 0x00000000 dmaengine_get +EXPORT_SYMBOL vmlinux 0x00000000 dmaengine_put +EXPORT_SYMBOL vmlinux 0x00000000 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x00000000 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x00000000 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x00000000 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x00000000 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x00000000 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x00000000 dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x00000000 dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x00000000 dns_query +EXPORT_SYMBOL vmlinux 0x00000000 do_SAK +EXPORT_SYMBOL vmlinux 0x00000000 do_blank_screen +EXPORT_SYMBOL vmlinux 0x00000000 do_brk +EXPORT_SYMBOL vmlinux 0x00000000 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x00000000 do_mmap_pgoff +EXPORT_SYMBOL vmlinux 0x00000000 do_munmap +EXPORT_SYMBOL vmlinux 0x00000000 do_settimeofday +EXPORT_SYMBOL vmlinux 0x00000000 do_splice_direct +EXPORT_SYMBOL vmlinux 0x00000000 do_splice_from +EXPORT_SYMBOL vmlinux 0x00000000 do_splice_to +EXPORT_SYMBOL vmlinux 0x00000000 do_sync_read +EXPORT_SYMBOL vmlinux 0x00000000 do_sync_write +EXPORT_SYMBOL vmlinux 0x00000000 do_truncate +EXPORT_SYMBOL vmlinux 0x00000000 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x00000000 down +EXPORT_SYMBOL vmlinux 0x00000000 down_interruptible +EXPORT_SYMBOL vmlinux 0x00000000 down_killable +EXPORT_SYMBOL vmlinux 0x00000000 down_read +EXPORT_SYMBOL vmlinux 0x00000000 down_read_trylock +EXPORT_SYMBOL vmlinux 0x00000000 down_timeout +EXPORT_SYMBOL vmlinux 0x00000000 down_trylock +EXPORT_SYMBOL vmlinux 0x00000000 down_write +EXPORT_SYMBOL vmlinux 0x00000000 down_write_trylock +EXPORT_SYMBOL vmlinux 0x00000000 downgrade_write +EXPORT_SYMBOL vmlinux 0x00000000 dput +EXPORT_SYMBOL vmlinux 0x00000000 dq_data_lock +EXPORT_SYMBOL vmlinux 0x00000000 dqget +EXPORT_SYMBOL vmlinux 0x00000000 dqput +EXPORT_SYMBOL vmlinux 0x00000000 dqstats +EXPORT_SYMBOL vmlinux 0x00000000 dquot_acquire +EXPORT_SYMBOL vmlinux 0x00000000 dquot_alloc +EXPORT_SYMBOL vmlinux 0x00000000 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x00000000 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x00000000 dquot_commit +EXPORT_SYMBOL vmlinux 0x00000000 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x00000000 dquot_destroy +EXPORT_SYMBOL vmlinux 0x00000000 dquot_disable +EXPORT_SYMBOL vmlinux 0x00000000 dquot_drop +EXPORT_SYMBOL vmlinux 0x00000000 dquot_enable +EXPORT_SYMBOL vmlinux 0x00000000 dquot_file_open +EXPORT_SYMBOL vmlinux 0x00000000 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x00000000 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x00000000 dquot_get_dqinfo +EXPORT_SYMBOL vmlinux 0x00000000 dquot_initialize +EXPORT_SYMBOL vmlinux 0x00000000 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x00000000 dquot_operations +EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x00000000 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x00000000 dquot_release +EXPORT_SYMBOL vmlinux 0x00000000 dquot_resume +EXPORT_SYMBOL vmlinux 0x00000000 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x00000000 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x00000000 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x00000000 dquot_transfer +EXPORT_SYMBOL vmlinux 0x00000000 drop_super +EXPORT_SYMBOL vmlinux 0x00000000 dst_alloc +EXPORT_SYMBOL vmlinux 0x00000000 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x00000000 dst_destroy +EXPORT_SYMBOL vmlinux 0x00000000 dst_discard +EXPORT_SYMBOL vmlinux 0x00000000 dst_release +EXPORT_SYMBOL vmlinux 0x00000000 dump_fpu +EXPORT_SYMBOL vmlinux 0x00000000 dump_seek +EXPORT_SYMBOL vmlinux 0x00000000 dump_stack +EXPORT_SYMBOL vmlinux 0x00000000 dump_write +EXPORT_SYMBOL vmlinux 0x00000000 elevator_change +EXPORT_SYMBOL vmlinux 0x00000000 elevator_exit +EXPORT_SYMBOL vmlinux 0x00000000 elevator_init +EXPORT_SYMBOL vmlinux 0x00000000 elf_check_arch +EXPORT_SYMBOL vmlinux 0x00000000 elf_hwcap +EXPORT_SYMBOL vmlinux 0x00000000 elf_platform +EXPORT_SYMBOL vmlinux 0x00000000 elf_set_personality +EXPORT_SYMBOL vmlinux 0x00000000 elv_abort_queue +EXPORT_SYMBOL vmlinux 0x00000000 elv_add_request +EXPORT_SYMBOL vmlinux 0x00000000 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x00000000 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_add +EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_del +EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_find +EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x00000000 elv_register_queue +EXPORT_SYMBOL vmlinux 0x00000000 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x00000000 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x00000000 empty_aops +EXPORT_SYMBOL vmlinux 0x00000000 empty_zero_page +EXPORT_SYMBOL vmlinux 0x00000000 enable_hlt +EXPORT_SYMBOL vmlinux 0x00000000 enable_irq +EXPORT_SYMBOL vmlinux 0x00000000 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x00000000 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x00000000 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x00000000 end_page_writeback +EXPORT_SYMBOL vmlinux 0x00000000 end_writeback +EXPORT_SYMBOL vmlinux 0x00000000 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x00000000 eth_header +EXPORT_SYMBOL vmlinux 0x00000000 eth_header_cache +EXPORT_SYMBOL vmlinux 0x00000000 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x00000000 eth_header_parse +EXPORT_SYMBOL vmlinux 0x00000000 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x00000000 eth_rebuild_header +EXPORT_SYMBOL vmlinux 0x00000000 eth_type_trans +EXPORT_SYMBOL vmlinux 0x00000000 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x00000000 ether_setup +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_invalid_flags +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_get_flags +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_get_sg +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_get_tso +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_get_tx_csum +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_get_ufo +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_set_flags +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_set_sg +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_set_tso +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_set_tx_csum +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_set_tx_hw_csum +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_set_tx_ipv6_csum +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_set_ufo +EXPORT_SYMBOL vmlinux 0x00000000 ewma_add +EXPORT_SYMBOL vmlinux 0x00000000 ewma_init +EXPORT_SYMBOL vmlinux 0x00000000 f_setown +EXPORT_SYMBOL vmlinux 0x00000000 fasync_helper +EXPORT_SYMBOL vmlinux 0x00000000 fb_add_videomode +EXPORT_SYMBOL vmlinux 0x00000000 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x00000000 fb_blank +EXPORT_SYMBOL vmlinux 0x00000000 fb_class +EXPORT_SYMBOL vmlinux 0x00000000 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x00000000 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x00000000 fb_default_cmap +EXPORT_SYMBOL vmlinux 0x00000000 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x00000000 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x00000000 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0x00000000 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x00000000 fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x00000000 fb_find_mode +EXPORT_SYMBOL vmlinux 0x00000000 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0x00000000 fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0x00000000 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x00000000 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x00000000 fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x00000000 fb_get_mode +EXPORT_SYMBOL vmlinux 0x00000000 fb_get_options +EXPORT_SYMBOL vmlinux 0x00000000 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0x00000000 fb_match_mode +EXPORT_SYMBOL vmlinux 0x00000000 fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0x00000000 fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x00000000 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x00000000 fb_pan_display +EXPORT_SYMBOL vmlinux 0x00000000 fb_parse_edid +EXPORT_SYMBOL vmlinux 0x00000000 fb_register_client +EXPORT_SYMBOL vmlinux 0x00000000 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x00000000 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x00000000 fb_set_var +EXPORT_SYMBOL vmlinux 0x00000000 fb_show_logo +EXPORT_SYMBOL vmlinux 0x00000000 fb_unregister_client +EXPORT_SYMBOL vmlinux 0x00000000 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x00000000 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0x00000000 fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0x00000000 fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x00000000 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x00000000 fd_install +EXPORT_SYMBOL vmlinux 0x00000000 fg_console +EXPORT_SYMBOL vmlinux 0x00000000 fget +EXPORT_SYMBOL vmlinux 0x00000000 fget_raw +EXPORT_SYMBOL vmlinux 0x00000000 fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x00000000 fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x00000000 file_open_root +EXPORT_SYMBOL vmlinux 0x00000000 file_remove_suid +EXPORT_SYMBOL vmlinux 0x00000000 file_sb_list_del +EXPORT_SYMBOL vmlinux 0x00000000 file_update_time +EXPORT_SYMBOL vmlinux 0x00000000 filemap_fault +EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x00000000 filemap_flush +EXPORT_SYMBOL vmlinux 0x00000000 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x00000000 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x00000000 files_lglock_global_lock +EXPORT_SYMBOL vmlinux 0x00000000 files_lglock_global_lock_online +EXPORT_SYMBOL vmlinux 0x00000000 files_lglock_global_unlock +EXPORT_SYMBOL vmlinux 0x00000000 files_lglock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x00000000 files_lglock_local_lock +EXPORT_SYMBOL vmlinux 0x00000000 files_lglock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x00000000 files_lglock_local_unlock +EXPORT_SYMBOL vmlinux 0x00000000 files_lglock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x00000000 files_lglock_lock_init +EXPORT_SYMBOL vmlinux 0x00000000 filp_close +EXPORT_SYMBOL vmlinux 0x00000000 filp_open +EXPORT_SYMBOL vmlinux 0x00000000 find_font +EXPORT_SYMBOL vmlinux 0x00000000 find_get_page +EXPORT_SYMBOL vmlinux 0x00000000 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x00000000 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x00000000 find_inode_number +EXPORT_SYMBOL vmlinux 0x00000000 find_last_bit +EXPORT_SYMBOL vmlinux 0x00000000 find_lock_page +EXPORT_SYMBOL vmlinux 0x00000000 find_or_create_page +EXPORT_SYMBOL vmlinux 0x00000000 find_vma +EXPORT_SYMBOL vmlinux 0x00000000 finish_wait +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_clear +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_free +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_get +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_put +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_shrink +EXPORT_SYMBOL vmlinux 0x00000000 flock_lock_file_wait +EXPORT_SYMBOL vmlinux 0x00000000 flow_cache_genid +EXPORT_SYMBOL vmlinux 0x00000000 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x00000000 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x00000000 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x00000000 flush_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x00000000 flush_old_exec +EXPORT_SYMBOL vmlinux 0x00000000 flush_scheduled_work +EXPORT_SYMBOL vmlinux 0x00000000 flush_signals +EXPORT_SYMBOL vmlinux 0x00000000 follow_down +EXPORT_SYMBOL vmlinux 0x00000000 follow_down_one +EXPORT_SYMBOL vmlinux 0x00000000 follow_pfn +EXPORT_SYMBOL vmlinux 0x00000000 follow_up +EXPORT_SYMBOL vmlinux 0x00000000 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x00000000 force_sig +EXPORT_SYMBOL vmlinux 0x00000000 fput +EXPORT_SYMBOL vmlinux 0x00000000 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x00000000 framebuffer_release +EXPORT_SYMBOL vmlinux 0x00000000 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x00000000 free_buffer_head +EXPORT_SYMBOL vmlinux 0x00000000 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x00000000 free_irq +EXPORT_SYMBOL vmlinux 0x00000000 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x00000000 free_netdev +EXPORT_SYMBOL vmlinux 0x00000000 free_pages +EXPORT_SYMBOL vmlinux 0x00000000 free_pages_exact +EXPORT_SYMBOL vmlinux 0x00000000 free_task +EXPORT_SYMBOL vmlinux 0x00000000 free_user_ns +EXPORT_SYMBOL vmlinux 0x00000000 freeze_bdev +EXPORT_SYMBOL vmlinux 0x00000000 freeze_super +EXPORT_SYMBOL vmlinux 0x00000000 fs_overflowgid +EXPORT_SYMBOL vmlinux 0x00000000 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x00000000 fsync_bdev +EXPORT_SYMBOL vmlinux 0x00000000 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x00000000 gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x00000000 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x00000000 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x00000000 generate_random_uuid +EXPORT_SYMBOL vmlinux 0x00000000 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x00000000 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x00000000 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x00000000 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x00000000 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x00000000 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_aio_read +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_aio_write +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_buffered_write +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_open +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_splice_write +EXPORT_SYMBOL vmlinux 0x00000000 generic_fillattr +EXPORT_SYMBOL vmlinux 0x00000000 generic_getxattr +EXPORT_SYMBOL vmlinux 0x00000000 generic_listxattr +EXPORT_SYMBOL vmlinux 0x00000000 generic_make_request +EXPORT_SYMBOL vmlinux 0x00000000 generic_permission +EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_map +EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_unmap +EXPORT_SYMBOL vmlinux 0x00000000 generic_read_dir +EXPORT_SYMBOL vmlinux 0x00000000 generic_readlink +EXPORT_SYMBOL vmlinux 0x00000000 generic_removexattr +EXPORT_SYMBOL vmlinux 0x00000000 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x00000000 generic_segment_checks +EXPORT_SYMBOL vmlinux 0x00000000 generic_setlease +EXPORT_SYMBOL vmlinux 0x00000000 generic_setxattr +EXPORT_SYMBOL vmlinux 0x00000000 generic_show_options +EXPORT_SYMBOL vmlinux 0x00000000 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x00000000 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x00000000 generic_write_checks +EXPORT_SYMBOL vmlinux 0x00000000 generic_write_end +EXPORT_SYMBOL vmlinux 0x00000000 generic_write_sync +EXPORT_SYMBOL vmlinux 0x00000000 generic_writepages +EXPORT_SYMBOL vmlinux 0x00000000 genl_lock +EXPORT_SYMBOL vmlinux 0x00000000 genl_register_family +EXPORT_SYMBOL vmlinux 0x00000000 genl_register_family_with_ops +EXPORT_SYMBOL vmlinux 0x00000000 genl_register_mc_group +EXPORT_SYMBOL vmlinux 0x00000000 genl_register_ops +EXPORT_SYMBOL vmlinux 0x00000000 genl_unlock +EXPORT_SYMBOL vmlinux 0x00000000 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x00000000 genl_unregister_mc_group +EXPORT_SYMBOL vmlinux 0x00000000 genl_unregister_ops +EXPORT_SYMBOL vmlinux 0x00000000 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x00000000 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x00000000 get_default_font +EXPORT_SYMBOL vmlinux 0x00000000 get_disk +EXPORT_SYMBOL vmlinux 0x00000000 get_fs_type +EXPORT_SYMBOL vmlinux 0x00000000 get_gendisk +EXPORT_SYMBOL vmlinux 0x00000000 get_io_context +EXPORT_SYMBOL vmlinux 0x00000000 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x00000000 get_mem_type +EXPORT_SYMBOL vmlinux 0x00000000 get_next_ino +EXPORT_SYMBOL vmlinux 0x00000000 get_option +EXPORT_SYMBOL vmlinux 0x00000000 get_options +EXPORT_SYMBOL vmlinux 0x00000000 get_random_bytes +EXPORT_SYMBOL vmlinux 0x00000000 get_seconds +EXPORT_SYMBOL vmlinux 0x00000000 get_super +EXPORT_SYMBOL vmlinux 0x00000000 get_unmapped_area_prot +EXPORT_SYMBOL vmlinux 0x00000000 get_unused_fd +EXPORT_SYMBOL vmlinux 0x00000000 get_user_pages +EXPORT_SYMBOL vmlinux 0x00000000 get_write_access +EXPORT_SYMBOL vmlinux 0x00000000 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x00000000 getname +EXPORT_SYMBOL vmlinux 0x00000000 getnstimeofday +EXPORT_SYMBOL vmlinux 0x00000000 getrawmonotonic +EXPORT_SYMBOL vmlinux 0x00000000 give_up_console +EXPORT_SYMBOL vmlinux 0x00000000 global_cursor_default +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x00000000 grab_cache_page_nowait +EXPORT_SYMBOL vmlinux 0x00000000 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 groups_alloc +EXPORT_SYMBOL vmlinux 0x00000000 groups_free +EXPORT_SYMBOL vmlinux 0x00000000 half_md4_transform +EXPORT_SYMBOL vmlinux 0x00000000 have_submounts +EXPORT_SYMBOL vmlinux 0x00000000 hex2bin +EXPORT_SYMBOL vmlinux 0x00000000 hex_asc +EXPORT_SYMBOL vmlinux 0x00000000 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x00000000 hex_to_bin +EXPORT_SYMBOL vmlinux 0x00000000 high_memory +EXPORT_SYMBOL vmlinux 0x00000000 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x00000000 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x00000000 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x00000000 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x00000000 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x00000000 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x00000000 i2c_master_send +EXPORT_SYMBOL vmlinux 0x00000000 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x00000000 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 i2c_release_client +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_process_call +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x00000000 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x00000000 i2c_transfer +EXPORT_SYMBOL vmlinux 0x00000000 i2c_use_client +EXPORT_SYMBOL vmlinux 0x00000000 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x00000000 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x00000000 icmp_send +EXPORT_SYMBOL vmlinux 0x00000000 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x00000000 icmpv6_send +EXPORT_SYMBOL vmlinux 0x00000000 ida_destroy +EXPORT_SYMBOL vmlinux 0x00000000 ida_get_new +EXPORT_SYMBOL vmlinux 0x00000000 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x00000000 ida_init +EXPORT_SYMBOL vmlinux 0x00000000 ida_pre_get +EXPORT_SYMBOL vmlinux 0x00000000 ida_remove +EXPORT_SYMBOL vmlinux 0x00000000 ida_simple_get +EXPORT_SYMBOL vmlinux 0x00000000 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x00000000 idr_destroy +EXPORT_SYMBOL vmlinux 0x00000000 idr_find +EXPORT_SYMBOL vmlinux 0x00000000 idr_for_each +EXPORT_SYMBOL vmlinux 0x00000000 idr_get_new +EXPORT_SYMBOL vmlinux 0x00000000 idr_get_new_above +EXPORT_SYMBOL vmlinux 0x00000000 idr_get_next +EXPORT_SYMBOL vmlinux 0x00000000 idr_init +EXPORT_SYMBOL vmlinux 0x00000000 idr_pre_get +EXPORT_SYMBOL vmlinux 0x00000000 idr_remove +EXPORT_SYMBOL vmlinux 0x00000000 idr_remove_all +EXPORT_SYMBOL vmlinux 0x00000000 idr_replace +EXPORT_SYMBOL vmlinux 0x00000000 ifla_policy +EXPORT_SYMBOL vmlinux 0x00000000 iget5_locked +EXPORT_SYMBOL vmlinux 0x00000000 iget_failed +EXPORT_SYMBOL vmlinux 0x00000000 iget_locked +EXPORT_SYMBOL vmlinux 0x00000000 igrab +EXPORT_SYMBOL vmlinux 0x00000000 ihold +EXPORT_SYMBOL vmlinux 0x00000000 ilookup +EXPORT_SYMBOL vmlinux 0x00000000 ilookup5 +EXPORT_SYMBOL vmlinux 0x00000000 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x00000000 in4_pton +EXPORT_SYMBOL vmlinux 0x00000000 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x00000000 in6_pton +EXPORT_SYMBOL vmlinux 0x00000000 in_aton +EXPORT_SYMBOL vmlinux 0x00000000 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x00000000 in_egroup_p +EXPORT_SYMBOL vmlinux 0x00000000 in_group_p +EXPORT_SYMBOL vmlinux 0x00000000 in_lock_functions +EXPORT_SYMBOL vmlinux 0x00000000 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x00000000 inet6_bind +EXPORT_SYMBOL vmlinux 0x00000000 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x00000000 inet6_getname +EXPORT_SYMBOL vmlinux 0x00000000 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x00000000 inet6_release +EXPORT_SYMBOL vmlinux 0x00000000 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x00000000 inet_accept +EXPORT_SYMBOL vmlinux 0x00000000 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x00000000 inet_addr_type +EXPORT_SYMBOL vmlinux 0x00000000 inet_bind +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x00000000 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x00000000 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x00000000 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x00000000 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x00000000 inet_ehash_secret +EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_evictor +EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_find +EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x00000000 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x00000000 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x00000000 inet_frags_init +EXPORT_SYMBOL vmlinux 0x00000000 inet_frags_init_net +EXPORT_SYMBOL vmlinux 0x00000000 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x00000000 inet_getname +EXPORT_SYMBOL vmlinux 0x00000000 inet_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 inet_listen +EXPORT_SYMBOL vmlinux 0x00000000 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x00000000 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x00000000 inet_put_port +EXPORT_SYMBOL vmlinux 0x00000000 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x00000000 inet_release +EXPORT_SYMBOL vmlinux 0x00000000 inet_select_addr +EXPORT_SYMBOL vmlinux 0x00000000 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 inet_sendpage +EXPORT_SYMBOL vmlinux 0x00000000 inet_shutdown +EXPORT_SYMBOL vmlinux 0x00000000 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x00000000 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x00000000 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x00000000 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x00000000 inet_twsk_deschedule +EXPORT_SYMBOL vmlinux 0x00000000 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x00000000 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x00000000 init_buffer +EXPORT_SYMBOL vmlinux 0x00000000 init_net +EXPORT_SYMBOL vmlinux 0x00000000 init_special_inode +EXPORT_SYMBOL vmlinux 0x00000000 init_task +EXPORT_SYMBOL vmlinux 0x00000000 init_timer_deferrable_key +EXPORT_SYMBOL vmlinux 0x00000000 init_timer_key +EXPORT_SYMBOL vmlinux 0x00000000 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x00000000 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x00000000 inode_change_ok +EXPORT_SYMBOL vmlinux 0x00000000 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x00000000 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x00000000 inode_init_always +EXPORT_SYMBOL vmlinux 0x00000000 inode_init_once +EXPORT_SYMBOL vmlinux 0x00000000 inode_init_owner +EXPORT_SYMBOL vmlinux 0x00000000 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x00000000 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x00000000 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x00000000 inode_permission +EXPORT_SYMBOL vmlinux 0x00000000 inode_sb_list_lock +EXPORT_SYMBOL vmlinux 0x00000000 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x00000000 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x00000000 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x00000000 inode_wait +EXPORT_SYMBOL vmlinux 0x00000000 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x00000000 input_allocate_device +EXPORT_SYMBOL vmlinux 0x00000000 input_close_device +EXPORT_SYMBOL vmlinux 0x00000000 input_event +EXPORT_SYMBOL vmlinux 0x00000000 input_flush_device +EXPORT_SYMBOL vmlinux 0x00000000 input_free_device +EXPORT_SYMBOL vmlinux 0x00000000 input_get_keycode +EXPORT_SYMBOL vmlinux 0x00000000 input_grab_device +EXPORT_SYMBOL vmlinux 0x00000000 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x00000000 input_inject_event +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x00000000 input_open_device +EXPORT_SYMBOL vmlinux 0x00000000 input_register_device +EXPORT_SYMBOL vmlinux 0x00000000 input_register_handle +EXPORT_SYMBOL vmlinux 0x00000000 input_register_handler +EXPORT_SYMBOL vmlinux 0x00000000 input_release_device +EXPORT_SYMBOL vmlinux 0x00000000 input_reset_device +EXPORT_SYMBOL vmlinux 0x00000000 input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x00000000 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x00000000 input_set_capability +EXPORT_SYMBOL vmlinux 0x00000000 input_set_keycode +EXPORT_SYMBOL vmlinux 0x00000000 input_unregister_device +EXPORT_SYMBOL vmlinux 0x00000000 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x00000000 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x00000000 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x00000000 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x00000000 install_exec_creds +EXPORT_SYMBOL vmlinux 0x00000000 int_sqrt +EXPORT_SYMBOL vmlinux 0x00000000 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x00000000 interruptible_sleep_on +EXPORT_SYMBOL vmlinux 0x00000000 interruptible_sleep_on_timeout +EXPORT_SYMBOL vmlinux 0x00000000 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x00000000 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x00000000 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x00000000 invalidate_partition +EXPORT_SYMBOL vmlinux 0x00000000 io_schedule +EXPORT_SYMBOL vmlinux 0x00000000 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x00000000 iomem_resource +EXPORT_SYMBOL vmlinux 0x00000000 ioport_map +EXPORT_SYMBOL vmlinux 0x00000000 ioport_resource +EXPORT_SYMBOL vmlinux 0x00000000 ioport_unmap +EXPORT_SYMBOL vmlinux 0x00000000 ioremap_page +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_copy_from_user +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x00000000 iov_shorten +EXPORT_SYMBOL vmlinux 0x00000000 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x00000000 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x00000000 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x00000000 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x00000000 ip6_route_output +EXPORT_SYMBOL vmlinux 0x00000000 ip6_xmit +EXPORT_SYMBOL vmlinux 0x00000000 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x00000000 ip_cmsg_recv +EXPORT_SYMBOL vmlinux 0x00000000 ip_defrag +EXPORT_SYMBOL vmlinux 0x00000000 ip_fragment +EXPORT_SYMBOL vmlinux 0x00000000 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x00000000 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_rejoin_groups +EXPORT_SYMBOL vmlinux 0x00000000 ip_options_compile +EXPORT_SYMBOL vmlinux 0x00000000 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x00000000 ip_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x00000000 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x00000000 ip_route_input_common +EXPORT_SYMBOL vmlinux 0x00000000 ip_send_check +EXPORT_SYMBOL vmlinux 0x00000000 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 ipc_call_fast +EXPORT_SYMBOL vmlinux 0x00000000 ipc_call_slow +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_addr_length +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_alloc_smi_msg +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_create_user +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_destroy_user +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_free_recv_msg +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_get_maintenance_mode +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_get_my_LUN +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_get_my_address +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_get_smi_info +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_get_version +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_poll_interface +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_register_for_cmd +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_register_smi +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_request_settime +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_request_supply_msgs +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_set_gets_events +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_set_maintenance_mode +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_set_my_LUN +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_set_my_address +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_smi_add_proc_entry +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_smi_msg_received +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_smi_watcher_register +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_smi_watcher_unregister +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_unregister_for_cmd +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_unregister_smi +EXPORT_SYMBOL vmlinux 0x00000000 ipmi_validate_addr +EXPORT_SYMBOL vmlinux 0x00000000 iput +EXPORT_SYMBOL vmlinux 0x00000000 ipv4_config +EXPORT_SYMBOL vmlinux 0x00000000 ipv4_specific +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x00000000 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x00000000 irq_set_chip +EXPORT_SYMBOL vmlinux 0x00000000 irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x00000000 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x00000000 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x00000000 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0x00000000 irq_stat +EXPORT_SYMBOL vmlinux 0x00000000 is_bad_inode +EXPORT_SYMBOL vmlinux 0x00000000 is_container_init +EXPORT_SYMBOL vmlinux 0x00000000 iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0x00000000 iterate_mounts +EXPORT_SYMBOL vmlinux 0x00000000 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x00000000 iunique +EXPORT_SYMBOL vmlinux 0x00000000 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x00000000 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_release_buffer +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_update_format +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x00000000 jiffies +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_64 +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_timespec +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x00000000 journal_abort +EXPORT_SYMBOL vmlinux 0x00000000 journal_ack_err +EXPORT_SYMBOL vmlinux 0x00000000 journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x00000000 journal_check_available_features +EXPORT_SYMBOL vmlinux 0x00000000 journal_check_used_features +EXPORT_SYMBOL vmlinux 0x00000000 journal_clear_err +EXPORT_SYMBOL vmlinux 0x00000000 journal_create +EXPORT_SYMBOL vmlinux 0x00000000 journal_destroy +EXPORT_SYMBOL vmlinux 0x00000000 journal_dirty_data +EXPORT_SYMBOL vmlinux 0x00000000 journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x00000000 journal_errno +EXPORT_SYMBOL vmlinux 0x00000000 journal_extend +EXPORT_SYMBOL vmlinux 0x00000000 journal_flush +EXPORT_SYMBOL vmlinux 0x00000000 journal_force_commit +EXPORT_SYMBOL vmlinux 0x00000000 journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x00000000 journal_forget +EXPORT_SYMBOL vmlinux 0x00000000 journal_get_create_access +EXPORT_SYMBOL vmlinux 0x00000000 journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x00000000 journal_get_write_access +EXPORT_SYMBOL vmlinux 0x00000000 journal_init_dev +EXPORT_SYMBOL vmlinux 0x00000000 journal_init_inode +EXPORT_SYMBOL vmlinux 0x00000000 journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x00000000 journal_load +EXPORT_SYMBOL vmlinux 0x00000000 journal_lock_updates +EXPORT_SYMBOL vmlinux 0x00000000 journal_release_buffer +EXPORT_SYMBOL vmlinux 0x00000000 journal_restart +EXPORT_SYMBOL vmlinux 0x00000000 journal_revoke +EXPORT_SYMBOL vmlinux 0x00000000 journal_set_features +EXPORT_SYMBOL vmlinux 0x00000000 journal_start +EXPORT_SYMBOL vmlinux 0x00000000 journal_start_commit +EXPORT_SYMBOL vmlinux 0x00000000 journal_stop +EXPORT_SYMBOL vmlinux 0x00000000 journal_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x00000000 journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x00000000 journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x00000000 journal_update_format +EXPORT_SYMBOL vmlinux 0x00000000 journal_wipe +EXPORT_SYMBOL vmlinux 0x00000000 kasprintf +EXPORT_SYMBOL vmlinux 0x00000000 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x00000000 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x00000000 kd_mksound +EXPORT_SYMBOL vmlinux 0x00000000 kern_path +EXPORT_SYMBOL vmlinux 0x00000000 kern_path_create +EXPORT_SYMBOL vmlinux 0x00000000 kern_unmount +EXPORT_SYMBOL vmlinux 0x00000000 kernel_accept +EXPORT_SYMBOL vmlinux 0x00000000 kernel_bind +EXPORT_SYMBOL vmlinux 0x00000000 kernel_connect +EXPORT_SYMBOL vmlinux 0x00000000 kernel_execve +EXPORT_SYMBOL vmlinux 0x00000000 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x00000000 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x00000000 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 kernel_listen +EXPORT_SYMBOL vmlinux 0x00000000 kernel_read +EXPORT_SYMBOL vmlinux 0x00000000 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x00000000 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x00000000 kernel_thread +EXPORT_SYMBOL vmlinux 0x00000000 key_alloc +EXPORT_SYMBOL vmlinux 0x00000000 key_create_or_update +EXPORT_SYMBOL vmlinux 0x00000000 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x00000000 key_link +EXPORT_SYMBOL vmlinux 0x00000000 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x00000000 key_put +EXPORT_SYMBOL vmlinux 0x00000000 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x00000000 key_revoke +EXPORT_SYMBOL vmlinux 0x00000000 key_task_permission +EXPORT_SYMBOL vmlinux 0x00000000 key_type_keyring +EXPORT_SYMBOL vmlinux 0x00000000 key_unlink +EXPORT_SYMBOL vmlinux 0x00000000 key_update +EXPORT_SYMBOL vmlinux 0x00000000 key_validate +EXPORT_SYMBOL vmlinux 0x00000000 keyring_clear +EXPORT_SYMBOL vmlinux 0x00000000 keyring_search +EXPORT_SYMBOL vmlinux 0x00000000 kfree +EXPORT_SYMBOL vmlinux 0x00000000 kfree_skb +EXPORT_SYMBOL vmlinux 0x00000000 kick_iocb +EXPORT_SYMBOL vmlinux 0x00000000 kill_anon_super +EXPORT_SYMBOL vmlinux 0x00000000 kill_block_super +EXPORT_SYMBOL vmlinux 0x00000000 kill_fasync +EXPORT_SYMBOL vmlinux 0x00000000 kill_litter_super +EXPORT_SYMBOL vmlinux 0x00000000 kill_pgrp +EXPORT_SYMBOL vmlinux 0x00000000 kill_pid +EXPORT_SYMBOL vmlinux 0x00000000 km_new_mapping +EXPORT_SYMBOL vmlinux 0x00000000 km_policy_expired +EXPORT_SYMBOL vmlinux 0x00000000 km_policy_notify +EXPORT_SYMBOL vmlinux 0x00000000 km_query +EXPORT_SYMBOL vmlinux 0x00000000 km_report +EXPORT_SYMBOL vmlinux 0x00000000 km_state_expired +EXPORT_SYMBOL vmlinux 0x00000000 km_state_notify +EXPORT_SYMBOL vmlinux 0x00000000 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x00000000 kmap +EXPORT_SYMBOL vmlinux 0x00000000 kmap_high +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x00000000 kmemdup +EXPORT_SYMBOL vmlinux 0x00000000 kobject_add +EXPORT_SYMBOL vmlinux 0x00000000 kobject_del +EXPORT_SYMBOL vmlinux 0x00000000 kobject_get +EXPORT_SYMBOL vmlinux 0x00000000 kobject_init +EXPORT_SYMBOL vmlinux 0x00000000 kobject_put +EXPORT_SYMBOL vmlinux 0x00000000 kobject_set_name +EXPORT_SYMBOL vmlinux 0x00000000 krealloc +EXPORT_SYMBOL vmlinux 0x00000000 kref_get +EXPORT_SYMBOL vmlinux 0x00000000 kref_init +EXPORT_SYMBOL vmlinux 0x00000000 kref_put +EXPORT_SYMBOL vmlinux 0x00000000 kref_sub +EXPORT_SYMBOL vmlinux 0x00000000 kset_register +EXPORT_SYMBOL vmlinux 0x00000000 kset_unregister +EXPORT_SYMBOL vmlinux 0x00000000 ksize +EXPORT_SYMBOL vmlinux 0x00000000 kstat +EXPORT_SYMBOL vmlinux 0x00000000 kstrdup +EXPORT_SYMBOL vmlinux 0x00000000 kstrndup +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoint +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoll +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtos16 +EXPORT_SYMBOL vmlinux 0x00000000 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtos8 +EXPORT_SYMBOL vmlinux 0x00000000 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtou16 +EXPORT_SYMBOL vmlinux 0x00000000 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtou8 +EXPORT_SYMBOL vmlinux 0x00000000 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtouint +EXPORT_SYMBOL vmlinux 0x00000000 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoull +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kthread_bind +EXPORT_SYMBOL vmlinux 0x00000000 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x00000000 kthread_should_stop +EXPORT_SYMBOL vmlinux 0x00000000 kthread_stop +EXPORT_SYMBOL vmlinux 0x00000000 kunmap +EXPORT_SYMBOL vmlinux 0x00000000 kunmap_high +EXPORT_SYMBOL vmlinux 0x00000000 kvasprintf +EXPORT_SYMBOL vmlinux 0x00000000 kzfree +EXPORT_SYMBOL vmlinux 0x00000000 laptop_mode +EXPORT_SYMBOL vmlinux 0x00000000 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x00000000 lease_modify +EXPORT_SYMBOL vmlinux 0x00000000 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x00000000 list_sort +EXPORT_SYMBOL vmlinux 0x00000000 ll_rw_block +EXPORT_SYMBOL vmlinux 0x00000000 load_nls +EXPORT_SYMBOL vmlinux 0x00000000 load_nls_default +EXPORT_SYMBOL vmlinux 0x00000000 local_bh_disable +EXPORT_SYMBOL vmlinux 0x00000000 local_bh_enable +EXPORT_SYMBOL vmlinux 0x00000000 local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x00000000 lock_fb_info +EXPORT_SYMBOL vmlinux 0x00000000 lock_may_read +EXPORT_SYMBOL vmlinux 0x00000000 lock_may_write +EXPORT_SYMBOL vmlinux 0x00000000 lock_rename +EXPORT_SYMBOL vmlinux 0x00000000 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x00000000 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x00000000 lock_super +EXPORT_SYMBOL vmlinux 0x00000000 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x00000000 locks_delete_block +EXPORT_SYMBOL vmlinux 0x00000000 locks_free_lock +EXPORT_SYMBOL vmlinux 0x00000000 locks_init_lock +EXPORT_SYMBOL vmlinux 0x00000000 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x00000000 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x00000000 log_start_commit +EXPORT_SYMBOL vmlinux 0x00000000 log_wait_commit +EXPORT_SYMBOL vmlinux 0x00000000 lookup_bdev +EXPORT_SYMBOL vmlinux 0x00000000 lookup_hash +EXPORT_SYMBOL vmlinux 0x00000000 lookup_one_len +EXPORT_SYMBOL vmlinux 0x00000000 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0x00000000 lro_flush_all +EXPORT_SYMBOL vmlinux 0x00000000 lro_flush_pkt +EXPORT_SYMBOL vmlinux 0x00000000 lro_receive_frags +EXPORT_SYMBOL vmlinux 0x00000000 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x00000000 mac_pton +EXPORT_SYMBOL vmlinux 0x00000000 make_bad_inode +EXPORT_SYMBOL vmlinux 0x00000000 mangle_path +EXPORT_SYMBOL vmlinux 0x00000000 mapping_tagged +EXPORT_SYMBOL vmlinux 0x00000000 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x00000000 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x00000000 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x00000000 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x00000000 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x00000000 match_hex +EXPORT_SYMBOL vmlinux 0x00000000 match_int +EXPORT_SYMBOL vmlinux 0x00000000 match_octal +EXPORT_SYMBOL vmlinux 0x00000000 match_strdup +EXPORT_SYMBOL vmlinux 0x00000000 match_strlcpy +EXPORT_SYMBOL vmlinux 0x00000000 match_token +EXPORT_SYMBOL vmlinux 0x00000000 max_mapnr +EXPORT_SYMBOL vmlinux 0x00000000 may_umount +EXPORT_SYMBOL vmlinux 0x00000000 may_umount_tree +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_create +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x00000000 md5_transform +EXPORT_SYMBOL vmlinux 0x00000000 mem_map +EXPORT_SYMBOL vmlinux 0x00000000 memchr +EXPORT_SYMBOL vmlinux 0x00000000 memchr_inv +EXPORT_SYMBOL vmlinux 0x00000000 memcmp +EXPORT_SYMBOL vmlinux 0x00000000 memcpy +EXPORT_SYMBOL vmlinux 0x00000000 memcpy_fromiovec +EXPORT_SYMBOL vmlinux 0x00000000 memcpy_fromiovecend +EXPORT_SYMBOL vmlinux 0x00000000 memcpy_toiovec +EXPORT_SYMBOL vmlinux 0x00000000 memcpy_toiovecend +EXPORT_SYMBOL vmlinux 0x00000000 memdup_user +EXPORT_SYMBOL vmlinux 0x00000000 memmove +EXPORT_SYMBOL vmlinux 0x00000000 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x00000000 memparse +EXPORT_SYMBOL vmlinux 0x00000000 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00000000 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x00000000 mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x00000000 mempool_create +EXPORT_SYMBOL vmlinux 0x00000000 mempool_create_node +EXPORT_SYMBOL vmlinux 0x00000000 mempool_destroy +EXPORT_SYMBOL vmlinux 0x00000000 mempool_free +EXPORT_SYMBOL vmlinux 0x00000000 mempool_free_pages +EXPORT_SYMBOL vmlinux 0x00000000 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x00000000 mempool_kfree +EXPORT_SYMBOL vmlinux 0x00000000 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0x00000000 mempool_resize +EXPORT_SYMBOL vmlinux 0x00000000 memscan +EXPORT_SYMBOL vmlinux 0x00000000 memset +EXPORT_SYMBOL vmlinux 0x00000000 misc_deregister +EXPORT_SYMBOL vmlinux 0x00000000 misc_register +EXPORT_SYMBOL vmlinux 0x00000000 mktime +EXPORT_SYMBOL vmlinux 0x00000000 mmc_add_host +EXPORT_SYMBOL vmlinux 0x00000000 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x00000000 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x00000000 mmc_assume_removable +EXPORT_SYMBOL vmlinux 0x00000000 mmc_cache_ctrl +EXPORT_SYMBOL vmlinux 0x00000000 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x00000000 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x00000000 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x00000000 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x00000000 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x00000000 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x00000000 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x00000000 mmc_card_awake +EXPORT_SYMBOL vmlinux 0x00000000 mmc_card_can_sleep +EXPORT_SYMBOL vmlinux 0x00000000 mmc_card_sleep +EXPORT_SYMBOL vmlinux 0x00000000 mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0x00000000 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x00000000 mmc_do_release_host +EXPORT_SYMBOL vmlinux 0x00000000 mmc_erase +EXPORT_SYMBOL vmlinux 0x00000000 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x00000000 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x00000000 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x00000000 mmc_free_host +EXPORT_SYMBOL vmlinux 0x00000000 mmc_host_disable +EXPORT_SYMBOL vmlinux 0x00000000 mmc_host_enable +EXPORT_SYMBOL vmlinux 0x00000000 mmc_host_lazy_disable +EXPORT_SYMBOL vmlinux 0x00000000 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x00000000 mmc_hw_reset_check +EXPORT_SYMBOL vmlinux 0x00000000 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x00000000 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x00000000 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x00000000 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 mmc_release_host +EXPORT_SYMBOL vmlinux 0x00000000 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x00000000 mmc_request_done +EXPORT_SYMBOL vmlinux 0x00000000 mmc_resume_host +EXPORT_SYMBOL vmlinux 0x00000000 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x00000000 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x00000000 mmc_start_req +EXPORT_SYMBOL vmlinux 0x00000000 mmc_suspend_host +EXPORT_SYMBOL vmlinux 0x00000000 mmc_try_claim_host +EXPORT_SYMBOL vmlinux 0x00000000 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x00000000 mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x00000000 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x00000000 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x00000000 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x00000000 mnt_pin +EXPORT_SYMBOL vmlinux 0x00000000 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x00000000 mnt_unpin +EXPORT_SYMBOL vmlinux 0x00000000 mntget +EXPORT_SYMBOL vmlinux 0x00000000 mntput +EXPORT_SYMBOL vmlinux 0x00000000 mod_timer +EXPORT_SYMBOL vmlinux 0x00000000 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x00000000 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x00000000 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 module_put +EXPORT_SYMBOL vmlinux 0x00000000 module_refcount +EXPORT_SYMBOL vmlinux 0x00000000 mount_bdev +EXPORT_SYMBOL vmlinux 0x00000000 mount_nodev +EXPORT_SYMBOL vmlinux 0x00000000 mount_ns +EXPORT_SYMBOL vmlinux 0x00000000 mount_pseudo +EXPORT_SYMBOL vmlinux 0x00000000 mount_single +EXPORT_SYMBOL vmlinux 0x00000000 mount_subtree +EXPORT_SYMBOL vmlinux 0x00000000 mpage_readpage +EXPORT_SYMBOL vmlinux 0x00000000 mpage_readpages +EXPORT_SYMBOL vmlinux 0x00000000 mpage_writepage +EXPORT_SYMBOL vmlinux 0x00000000 mpage_writepages +EXPORT_SYMBOL vmlinux 0x00000000 msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 msleep +EXPORT_SYMBOL vmlinux 0x00000000 msleep_interruptible +EXPORT_SYMBOL vmlinux 0x00000000 mutex_lock +EXPORT_SYMBOL vmlinux 0x00000000 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x00000000 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x00000000 mutex_trylock +EXPORT_SYMBOL vmlinux 0x00000000 mutex_unlock +EXPORT_SYMBOL vmlinux 0x00000000 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x00000000 names_cachep +EXPORT_SYMBOL vmlinux 0x00000000 napi_complete +EXPORT_SYMBOL vmlinux 0x00000000 napi_frags_finish +EXPORT_SYMBOL vmlinux 0x00000000 napi_frags_skb +EXPORT_SYMBOL vmlinux 0x00000000 napi_get_frags +EXPORT_SYMBOL vmlinux 0x00000000 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x00000000 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x00000000 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x00000000 napi_skb_finish +EXPORT_SYMBOL vmlinux 0x00000000 ndisc_build_skb +EXPORT_SYMBOL vmlinux 0x00000000 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x00000000 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x00000000 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x00000000 neigh_compat_output +EXPORT_SYMBOL vmlinux 0x00000000 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x00000000 neigh_create +EXPORT_SYMBOL vmlinux 0x00000000 neigh_destroy +EXPORT_SYMBOL vmlinux 0x00000000 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x00000000 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x00000000 neigh_for_each +EXPORT_SYMBOL vmlinux 0x00000000 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x00000000 neigh_lookup +EXPORT_SYMBOL vmlinux 0x00000000 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x00000000 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x00000000 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x00000000 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x00000000 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x00000000 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x00000000 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x00000000 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x00000000 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x00000000 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x00000000 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x00000000 neigh_table_init +EXPORT_SYMBOL vmlinux 0x00000000 neigh_table_init_no_netlink +EXPORT_SYMBOL vmlinux 0x00000000 neigh_update +EXPORT_SYMBOL vmlinux 0x00000000 net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x00000000 net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x00000000 net_msg_warn +EXPORT_SYMBOL vmlinux 0x00000000 net_ratelimit +EXPORT_SYMBOL vmlinux 0x00000000 netdev_alert +EXPORT_SYMBOL vmlinux 0x00000000 netdev_bonding_change +EXPORT_SYMBOL vmlinux 0x00000000 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x00000000 netdev_change_features +EXPORT_SYMBOL vmlinux 0x00000000 netdev_class_create_file +EXPORT_SYMBOL vmlinux 0x00000000 netdev_class_remove_file +EXPORT_SYMBOL vmlinux 0x00000000 netdev_crit +EXPORT_SYMBOL vmlinux 0x00000000 netdev_emerg +EXPORT_SYMBOL vmlinux 0x00000000 netdev_err +EXPORT_SYMBOL vmlinux 0x00000000 netdev_features_change +EXPORT_SYMBOL vmlinux 0x00000000 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x00000000 netdev_info +EXPORT_SYMBOL vmlinux 0x00000000 netdev_notice +EXPORT_SYMBOL vmlinux 0x00000000 netdev_printk +EXPORT_SYMBOL vmlinux 0x00000000 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x00000000 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x00000000 netdev_set_bond_master +EXPORT_SYMBOL vmlinux 0x00000000 netdev_set_master +EXPORT_SYMBOL vmlinux 0x00000000 netdev_state_change +EXPORT_SYMBOL vmlinux 0x00000000 netdev_update_features +EXPORT_SYMBOL vmlinux 0x00000000 netdev_warn +EXPORT_SYMBOL vmlinux 0x00000000 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x00000000 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x00000000 netif_device_attach +EXPORT_SYMBOL vmlinux 0x00000000 netif_device_detach +EXPORT_SYMBOL vmlinux 0x00000000 netif_napi_add +EXPORT_SYMBOL vmlinux 0x00000000 netif_napi_del +EXPORT_SYMBOL vmlinux 0x00000000 netif_notify_peers +EXPORT_SYMBOL vmlinux 0x00000000 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x00000000 netif_rx +EXPORT_SYMBOL vmlinux 0x00000000 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x00000000 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x00000000 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x00000000 netif_skb_features +EXPORT_SYMBOL vmlinux 0x00000000 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x00000000 netlink_ack +EXPORT_SYMBOL vmlinux 0x00000000 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x00000000 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x00000000 netlink_dump_start +EXPORT_SYMBOL vmlinux 0x00000000 netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x00000000 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x00000000 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x00000000 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0x00000000 netlink_set_err +EXPORT_SYMBOL vmlinux 0x00000000 netlink_set_nonroot +EXPORT_SYMBOL vmlinux 0x00000000 netlink_unicast +EXPORT_SYMBOL vmlinux 0x00000000 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0x00000000 new_inode +EXPORT_SYMBOL vmlinux 0x00000000 nla_append +EXPORT_SYMBOL vmlinux 0x00000000 nla_find +EXPORT_SYMBOL vmlinux 0x00000000 nla_memcmp +EXPORT_SYMBOL vmlinux 0x00000000 nla_memcpy +EXPORT_SYMBOL vmlinux 0x00000000 nla_parse +EXPORT_SYMBOL vmlinux 0x00000000 nla_policy_len +EXPORT_SYMBOL vmlinux 0x00000000 nla_put +EXPORT_SYMBOL vmlinux 0x00000000 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x00000000 nla_reserve +EXPORT_SYMBOL vmlinux 0x00000000 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x00000000 nla_strcmp +EXPORT_SYMBOL vmlinux 0x00000000 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x00000000 nla_validate +EXPORT_SYMBOL vmlinux 0x00000000 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x00000000 no_llseek +EXPORT_SYMBOL vmlinux 0x00000000 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x00000000 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 nobh_write_end +EXPORT_SYMBOL vmlinux 0x00000000 nobh_writepage +EXPORT_SYMBOL vmlinux 0x00000000 node_states +EXPORT_SYMBOL vmlinux 0x00000000 nonseekable_open +EXPORT_SYMBOL vmlinux 0x00000000 noop_fsync +EXPORT_SYMBOL vmlinux 0x00000000 noop_llseek +EXPORT_SYMBOL vmlinux 0x00000000 noop_qdisc +EXPORT_SYMBOL vmlinux 0x00000000 notify_change +EXPORT_SYMBOL vmlinux 0x00000000 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x00000000 ns_capable +EXPORT_SYMBOL vmlinux 0x00000000 ns_to_timespec +EXPORT_SYMBOL vmlinux 0x00000000 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x00000000 num_physpages +EXPORT_SYMBOL vmlinux 0x00000000 num_registered_fb +EXPORT_SYMBOL vmlinux 0x00000000 of_dev_get +EXPORT_SYMBOL vmlinux 0x00000000 of_dev_put +EXPORT_SYMBOL vmlinux 0x00000000 of_device_alloc +EXPORT_SYMBOL vmlinux 0x00000000 of_device_is_available +EXPORT_SYMBOL vmlinux 0x00000000 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x00000000 of_device_register +EXPORT_SYMBOL vmlinux 0x00000000 of_device_unregister +EXPORT_SYMBOL vmlinux 0x00000000 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x00000000 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x00000000 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x00000000 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x00000000 of_find_matching_node +EXPORT_SYMBOL vmlinux 0x00000000 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x00000000 of_find_node_by_path +EXPORT_SYMBOL vmlinux 0x00000000 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x00000000 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x00000000 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x00000000 of_find_property +EXPORT_SYMBOL vmlinux 0x00000000 of_get_address +EXPORT_SYMBOL vmlinux 0x00000000 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x00000000 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x00000000 of_get_next_child +EXPORT_SYMBOL vmlinux 0x00000000 of_get_parent +EXPORT_SYMBOL vmlinux 0x00000000 of_get_property +EXPORT_SYMBOL vmlinux 0x00000000 of_gpio_count +EXPORT_SYMBOL vmlinux 0x00000000 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x00000000 of_i2c_register_devices +EXPORT_SYMBOL vmlinux 0x00000000 of_iomap +EXPORT_SYMBOL vmlinux 0x00000000 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0x00000000 of_match_device +EXPORT_SYMBOL vmlinux 0x00000000 of_match_node +EXPORT_SYMBOL vmlinux 0x00000000 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x00000000 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x00000000 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x00000000 of_node_get +EXPORT_SYMBOL vmlinux 0x00000000 of_node_put +EXPORT_SYMBOL vmlinux 0x00000000 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x00000000 of_parse_phandles_with_args +EXPORT_SYMBOL vmlinux 0x00000000 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x00000000 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x00000000 of_register_spi_devices +EXPORT_SYMBOL vmlinux 0x00000000 of_translate_address +EXPORT_SYMBOL vmlinux 0x00000000 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x00000000 on_each_cpu +EXPORT_SYMBOL vmlinux 0x00000000 oops_in_progress +EXPORT_SYMBOL vmlinux 0x00000000 open_exec +EXPORT_SYMBOL vmlinux 0x00000000 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x00000000 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x00000000 outer_cache +EXPORT_SYMBOL vmlinux 0x00000000 overflowgid +EXPORT_SYMBOL vmlinux 0x00000000 overflowuid +EXPORT_SYMBOL vmlinux 0x00000000 override_creds +EXPORT_SYMBOL vmlinux 0x00000000 page_address +EXPORT_SYMBOL vmlinux 0x00000000 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x00000000 page_put_link +EXPORT_SYMBOL vmlinux 0x00000000 page_readlink +EXPORT_SYMBOL vmlinux 0x00000000 page_symlink +EXPORT_SYMBOL vmlinux 0x00000000 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x00000000 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x00000000 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x00000000 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x00000000 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x00000000 panic +EXPORT_SYMBOL vmlinux 0x00000000 panic_blink +EXPORT_SYMBOL vmlinux 0x00000000 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x00000000 param_array_ops +EXPORT_SYMBOL vmlinux 0x00000000 param_get_bool +EXPORT_SYMBOL vmlinux 0x00000000 param_get_byte +EXPORT_SYMBOL vmlinux 0x00000000 param_get_charp +EXPORT_SYMBOL vmlinux 0x00000000 param_get_int +EXPORT_SYMBOL vmlinux 0x00000000 param_get_invbool +EXPORT_SYMBOL vmlinux 0x00000000 param_get_long +EXPORT_SYMBOL vmlinux 0x00000000 param_get_short +EXPORT_SYMBOL vmlinux 0x00000000 param_get_string +EXPORT_SYMBOL vmlinux 0x00000000 param_get_uint +EXPORT_SYMBOL vmlinux 0x00000000 param_get_ulong +EXPORT_SYMBOL vmlinux 0x00000000 param_get_ushort +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_bool +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_byte +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_charp +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_int +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_long +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_short +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_string +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_uint +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x00000000 param_set_bool +EXPORT_SYMBOL vmlinux 0x00000000 param_set_byte +EXPORT_SYMBOL vmlinux 0x00000000 param_set_charp +EXPORT_SYMBOL vmlinux 0x00000000 param_set_copystring +EXPORT_SYMBOL vmlinux 0x00000000 param_set_int +EXPORT_SYMBOL vmlinux 0x00000000 param_set_invbool +EXPORT_SYMBOL vmlinux 0x00000000 param_set_long +EXPORT_SYMBOL vmlinux 0x00000000 param_set_short +EXPORT_SYMBOL vmlinux 0x00000000 param_set_uint +EXPORT_SYMBOL vmlinux 0x00000000 param_set_ulong +EXPORT_SYMBOL vmlinux 0x00000000 param_set_ushort +EXPORT_SYMBOL vmlinux 0x00000000 path_get +EXPORT_SYMBOL vmlinux 0x00000000 path_is_under +EXPORT_SYMBOL vmlinux 0x00000000 path_put +EXPORT_SYMBOL vmlinux 0x00000000 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x00000000 percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x00000000 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x00000000 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x00000000 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x00000000 pfn_valid +EXPORT_SYMBOL vmlinux 0x00000000 pgprot_kernel +EXPORT_SYMBOL vmlinux 0x00000000 pgprot_user +EXPORT_SYMBOL vmlinux 0x00000000 pid_task +EXPORT_SYMBOL vmlinux 0x00000000 ping_prot +EXPORT_SYMBOL vmlinux 0x00000000 pipe_lock +EXPORT_SYMBOL vmlinux 0x00000000 pipe_to_file +EXPORT_SYMBOL vmlinux 0x00000000 pipe_unlock +EXPORT_SYMBOL vmlinux 0x00000000 pl330_add +EXPORT_SYMBOL vmlinux 0x00000000 pl330_chan_ctrl +EXPORT_SYMBOL vmlinux 0x00000000 pl330_chan_status +EXPORT_SYMBOL vmlinux 0x00000000 pl330_del +EXPORT_SYMBOL vmlinux 0x00000000 pl330_release_channel +EXPORT_SYMBOL vmlinux 0x00000000 pl330_request_channel +EXPORT_SYMBOL vmlinux 0x00000000 pl330_submit_req +EXPORT_SYMBOL vmlinux 0x00000000 pl330_update +EXPORT_SYMBOL vmlinux 0x00000000 pm_idle +EXPORT_SYMBOL vmlinux 0x00000000 pm_power_off +EXPORT_SYMBOL vmlinux 0x00000000 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x00000000 pm_suspend +EXPORT_SYMBOL vmlinux 0x00000000 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x00000000 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x00000000 poll_freewait +EXPORT_SYMBOL vmlinux 0x00000000 poll_initwait +EXPORT_SYMBOL vmlinux 0x00000000 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x00000000 populate_rootfs_wait +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_create +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_init +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x00000000 posix_lock_file +EXPORT_SYMBOL vmlinux 0x00000000 posix_lock_file_wait +EXPORT_SYMBOL vmlinux 0x00000000 posix_test_lock +EXPORT_SYMBOL vmlinux 0x00000000 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x00000000 prandom32 +EXPORT_SYMBOL vmlinux 0x00000000 preempt_schedule +EXPORT_SYMBOL vmlinux 0x00000000 prepare_binprm +EXPORT_SYMBOL vmlinux 0x00000000 prepare_creds +EXPORT_SYMBOL vmlinux 0x00000000 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x00000000 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x00000000 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x00000000 print_hex_dump +EXPORT_SYMBOL vmlinux 0x00000000 print_hex_dump_bytes +EXPORT_SYMBOL vmlinux 0x00000000 printk +EXPORT_SYMBOL vmlinux 0x00000000 printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x00000000 probe_irq_mask +EXPORT_SYMBOL vmlinux 0x00000000 probe_irq_off +EXPORT_SYMBOL vmlinux 0x00000000 probe_irq_on +EXPORT_SYMBOL vmlinux 0x00000000 proc_create_data +EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec +EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 proc_dostring +EXPORT_SYMBOL vmlinux 0x00000000 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x00000000 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x00000000 proc_mkdir +EXPORT_SYMBOL vmlinux 0x00000000 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x00000000 proc_symlink +EXPORT_SYMBOL vmlinux 0x00000000 processor_id +EXPORT_SYMBOL vmlinux 0x00000000 profile_pc +EXPORT_SYMBOL vmlinux 0x00000000 proto_register +EXPORT_SYMBOL vmlinux 0x00000000 proto_unregister +EXPORT_SYMBOL vmlinux 0x00000000 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x00000000 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x00000000 ps2_command +EXPORT_SYMBOL vmlinux 0x00000000 ps2_drain +EXPORT_SYMBOL vmlinux 0x00000000 ps2_end_command +EXPORT_SYMBOL vmlinux 0x00000000 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x00000000 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x00000000 ps2_init +EXPORT_SYMBOL vmlinux 0x00000000 ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x00000000 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x00000000 pskb_copy +EXPORT_SYMBOL vmlinux 0x00000000 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x00000000 put_cmsg +EXPORT_SYMBOL vmlinux 0x00000000 put_disk +EXPORT_SYMBOL vmlinux 0x00000000 put_io_context +EXPORT_SYMBOL vmlinux 0x00000000 put_mnt_ns +EXPORT_SYMBOL vmlinux 0x00000000 put_page +EXPORT_SYMBOL vmlinux 0x00000000 put_pages_list +EXPORT_SYMBOL vmlinux 0x00000000 put_tty_driver +EXPORT_SYMBOL vmlinux 0x00000000 put_unused_fd +EXPORT_SYMBOL vmlinux 0x00000000 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x00000000 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x00000000 qdisc_reset +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_next_hole +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_prev_hole +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x00000000 random32 +EXPORT_SYMBOL vmlinux 0x00000000 rb_augment_erase_begin +EXPORT_SYMBOL vmlinux 0x00000000 rb_augment_erase_end +EXPORT_SYMBOL vmlinux 0x00000000 rb_augment_insert +EXPORT_SYMBOL vmlinux 0x00000000 rb_erase +EXPORT_SYMBOL vmlinux 0x00000000 rb_first +EXPORT_SYMBOL vmlinux 0x00000000 rb_insert_color +EXPORT_SYMBOL vmlinux 0x00000000 rb_last +EXPORT_SYMBOL vmlinux 0x00000000 rb_next +EXPORT_SYMBOL vmlinux 0x00000000 rb_prev +EXPORT_SYMBOL vmlinux 0x00000000 rb_replace_node +EXPORT_SYMBOL vmlinux 0x00000000 read_cache_page +EXPORT_SYMBOL vmlinux 0x00000000 read_cache_page_async +EXPORT_SYMBOL vmlinux 0x00000000 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x00000000 read_cache_pages +EXPORT_SYMBOL vmlinux 0x00000000 read_dev_sector +EXPORT_SYMBOL vmlinux 0x00000000 recalc_sigpending +EXPORT_SYMBOL vmlinux 0x00000000 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x00000000 redraw_screen +EXPORT_SYMBOL vmlinux 0x00000000 refrigerator +EXPORT_SYMBOL vmlinux 0x00000000 register_blkdev +EXPORT_SYMBOL vmlinux 0x00000000 register_chrdev_region +EXPORT_SYMBOL vmlinux 0x00000000 register_con_driver +EXPORT_SYMBOL vmlinux 0x00000000 register_console +EXPORT_SYMBOL vmlinux 0x00000000 register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_exec_domain +EXPORT_SYMBOL vmlinux 0x00000000 register_filesystem +EXPORT_SYMBOL vmlinux 0x00000000 register_framebuffer +EXPORT_SYMBOL vmlinux 0x00000000 register_gifconf +EXPORT_SYMBOL vmlinux 0x00000000 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_key_type +EXPORT_SYMBOL vmlinux 0x00000000 register_module_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_netdev +EXPORT_SYMBOL vmlinux 0x00000000 register_netdevice +EXPORT_SYMBOL vmlinux 0x00000000 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_nls +EXPORT_SYMBOL vmlinux 0x00000000 register_quota_format +EXPORT_SYMBOL vmlinux 0x00000000 register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_shrinker +EXPORT_SYMBOL vmlinux 0x00000000 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x00000000 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x00000000 registered_fb +EXPORT_SYMBOL vmlinux 0x00000000 release_firmware +EXPORT_SYMBOL vmlinux 0x00000000 release_pages +EXPORT_SYMBOL vmlinux 0x00000000 release_resource +EXPORT_SYMBOL vmlinux 0x00000000 release_sock +EXPORT_SYMBOL vmlinux 0x00000000 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x00000000 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x00000000 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x00000000 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x00000000 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x00000000 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x00000000 rename_lock +EXPORT_SYMBOL vmlinux 0x00000000 replace_mount_options +EXPORT_SYMBOL vmlinux 0x00000000 request_firmware +EXPORT_SYMBOL vmlinux 0x00000000 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x00000000 request_key +EXPORT_SYMBOL vmlinux 0x00000000 request_key_async +EXPORT_SYMBOL vmlinux 0x00000000 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x00000000 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x00000000 request_resource +EXPORT_SYMBOL vmlinux 0x00000000 request_threaded_irq +EXPORT_SYMBOL vmlinux 0x00000000 reset_devices +EXPORT_SYMBOL vmlinux 0x00000000 revalidate_disk +EXPORT_SYMBOL vmlinux 0x00000000 revert_creds +EXPORT_SYMBOL vmlinux 0x00000000 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x00000000 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x00000000 rt6_lookup +EXPORT_SYMBOL vmlinux 0x00000000 rtc_month_days +EXPORT_SYMBOL vmlinux 0x00000000 rtc_time_to_tm +EXPORT_SYMBOL vmlinux 0x00000000 rtc_tm_to_time +EXPORT_SYMBOL vmlinux 0x00000000 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x00000000 rtc_year_days +EXPORT_SYMBOL vmlinux 0x00000000 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_lock +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_notify +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_trylock +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x00000000 rwsem_is_locked +EXPORT_SYMBOL vmlinux 0x00000000 save_mount_options +EXPORT_SYMBOL vmlinux 0x00000000 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x00000000 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x00000000 schedule +EXPORT_SYMBOL vmlinux 0x00000000 schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x00000000 schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout +EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x00000000 schedule_work +EXPORT_SYMBOL vmlinux 0x00000000 schedule_work_on +EXPORT_SYMBOL vmlinux 0x00000000 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x00000000 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x00000000 scnprintf +EXPORT_SYMBOL vmlinux 0x00000000 scsi_add_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x00000000 scsi_adjust_queue_depth +EXPORT_SYMBOL vmlinux 0x00000000 scsi_allocate_command +EXPORT_SYMBOL vmlinux 0x00000000 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x00000000 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x00000000 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x00000000 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x00000000 scsi_calculate_bounce_limit +EXPORT_SYMBOL vmlinux 0x00000000 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x00000000 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 scsi_cmd_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x00000000 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x00000000 scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_get +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_put +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_type +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x00000000 scsi_execute +EXPORT_SYMBOL vmlinux 0x00000000 scsi_execute_req +EXPORT_SYMBOL vmlinux 0x00000000 scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x00000000 scsi_finish_command +EXPORT_SYMBOL vmlinux 0x00000000 scsi_free_command +EXPORT_SYMBOL vmlinux 0x00000000 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x00000000 scsi_get_command +EXPORT_SYMBOL vmlinux 0x00000000 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x00000000 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x00000000 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_get +EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_put +EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x00000000 scsi_init_io +EXPORT_SYMBOL vmlinux 0x00000000 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x00000000 scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x00000000 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x00000000 scsi_nonblockable_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x00000000 scsi_partsize +EXPORT_SYMBOL vmlinux 0x00000000 scsi_prep_fn +EXPORT_SYMBOL vmlinux 0x00000000 scsi_prep_return +EXPORT_SYMBOL vmlinux 0x00000000 scsi_prep_state_check +EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_command +EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_result +EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_status +EXPORT_SYMBOL vmlinux 0x00000000 scsi_put_command +EXPORT_SYMBOL vmlinux 0x00000000 scsi_register +EXPORT_SYMBOL vmlinux 0x00000000 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x00000000 scsi_release_buffers +EXPORT_SYMBOL vmlinux 0x00000000 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x00000000 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x00000000 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x00000000 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x00000000 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_reset_provider +EXPORT_SYMBOL vmlinux 0x00000000 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x00000000 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x00000000 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x00000000 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x00000000 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x00000000 scsi_setup_blk_pc_cmnd +EXPORT_SYMBOL vmlinux 0x00000000 scsi_setup_fs_cmnd +EXPORT_SYMBOL vmlinux 0x00000000 scsi_show_extd_sense +EXPORT_SYMBOL vmlinux 0x00000000 scsi_show_result +EXPORT_SYMBOL vmlinux 0x00000000 scsi_show_sense_hdr +EXPORT_SYMBOL vmlinux 0x00000000 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x00000000 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x00000000 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x00000000 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x00000000 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x00000000 scsi_unregister +EXPORT_SYMBOL vmlinux 0x00000000 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x00000000 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x00000000 search_binary_handler +EXPORT_SYMBOL vmlinux 0x00000000 secpath_dup +EXPORT_SYMBOL vmlinux 0x00000000 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x00000000 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x00000000 security_file_mmap +EXPORT_SYMBOL vmlinux 0x00000000 security_file_permission +EXPORT_SYMBOL vmlinux 0x00000000 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0x00000000 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x00000000 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x00000000 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x00000000 security_inode_permission +EXPORT_SYMBOL vmlinux 0x00000000 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x00000000 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x00000000 security_netlink_recv +EXPORT_SYMBOL vmlinux 0x00000000 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x00000000 security_path_chmod +EXPORT_SYMBOL vmlinux 0x00000000 security_path_chown +EXPORT_SYMBOL vmlinux 0x00000000 security_path_link +EXPORT_SYMBOL vmlinux 0x00000000 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x00000000 security_path_mknod +EXPORT_SYMBOL vmlinux 0x00000000 security_path_rename +EXPORT_SYMBOL vmlinux 0x00000000 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x00000000 security_path_symlink +EXPORT_SYMBOL vmlinux 0x00000000 security_path_truncate +EXPORT_SYMBOL vmlinux 0x00000000 security_path_unlink +EXPORT_SYMBOL vmlinux 0x00000000 security_release_secctx +EXPORT_SYMBOL vmlinux 0x00000000 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x00000000 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x00000000 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x00000000 security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x00000000 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x00000000 security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x00000000 security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0x00000000 security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x00000000 security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x00000000 security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x00000000 security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0x00000000 security_sk_clone +EXPORT_SYMBOL vmlinux 0x00000000 security_sock_graft +EXPORT_SYMBOL vmlinux 0x00000000 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x00000000 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0x00000000 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x00000000 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x00000000 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x00000000 security_tun_dev_post_create +EXPORT_SYMBOL vmlinux 0x00000000 security_unix_may_send +EXPORT_SYMBOL vmlinux 0x00000000 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x00000000 send_remote_softirq +EXPORT_SYMBOL vmlinux 0x00000000 send_sig +EXPORT_SYMBOL vmlinux 0x00000000 send_sig_info +EXPORT_SYMBOL vmlinux 0x00000000 seq_bitmap +EXPORT_SYMBOL vmlinux 0x00000000 seq_bitmap_list +EXPORT_SYMBOL vmlinux 0x00000000 seq_escape +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_next +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0x00000000 seq_list_next +EXPORT_SYMBOL vmlinux 0x00000000 seq_list_start +EXPORT_SYMBOL vmlinux 0x00000000 seq_list_start_head +EXPORT_SYMBOL vmlinux 0x00000000 seq_lseek +EXPORT_SYMBOL vmlinux 0x00000000 seq_open +EXPORT_SYMBOL vmlinux 0x00000000 seq_open_private +EXPORT_SYMBOL vmlinux 0x00000000 seq_path +EXPORT_SYMBOL vmlinux 0x00000000 seq_printf +EXPORT_SYMBOL vmlinux 0x00000000 seq_putc +EXPORT_SYMBOL vmlinux 0x00000000 seq_puts +EXPORT_SYMBOL vmlinux 0x00000000 seq_read +EXPORT_SYMBOL vmlinux 0x00000000 seq_release +EXPORT_SYMBOL vmlinux 0x00000000 seq_release_private +EXPORT_SYMBOL vmlinux 0x00000000 seq_write +EXPORT_SYMBOL vmlinux 0x00000000 serio_close +EXPORT_SYMBOL vmlinux 0x00000000 serio_interrupt +EXPORT_SYMBOL vmlinux 0x00000000 serio_open +EXPORT_SYMBOL vmlinux 0x00000000 serio_reconnect +EXPORT_SYMBOL vmlinux 0x00000000 serio_rescan +EXPORT_SYMBOL vmlinux 0x00000000 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x00000000 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x00000000 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x00000000 set_anon_super +EXPORT_SYMBOL vmlinux 0x00000000 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x00000000 set_bh_page +EXPORT_SYMBOL vmlinux 0x00000000 set_binfmt +EXPORT_SYMBOL vmlinux 0x00000000 set_blocksize +EXPORT_SYMBOL vmlinux 0x00000000 set_create_files_as +EXPORT_SYMBOL vmlinux 0x00000000 set_current_groups +EXPORT_SYMBOL vmlinux 0x00000000 set_device_ro +EXPORT_SYMBOL vmlinux 0x00000000 set_disk_ro +EXPORT_SYMBOL vmlinux 0x00000000 set_groups +EXPORT_SYMBOL vmlinux 0x00000000 set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x00000000 set_page_dirty +EXPORT_SYMBOL vmlinux 0x00000000 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x00000000 set_security_override +EXPORT_SYMBOL vmlinux 0x00000000 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x00000000 set_user_nice +EXPORT_SYMBOL vmlinux 0x00000000 setattr_copy +EXPORT_SYMBOL vmlinux 0x00000000 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x00000000 setup_max_cpus +EXPORT_SYMBOL vmlinux 0x00000000 setup_new_exec +EXPORT_SYMBOL vmlinux 0x00000000 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x00000000 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x00000000 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x00000000 sg_free_table +EXPORT_SYMBOL vmlinux 0x00000000 sg_init_one +EXPORT_SYMBOL vmlinux 0x00000000 sg_init_table +EXPORT_SYMBOL vmlinux 0x00000000 sg_last +EXPORT_SYMBOL vmlinux 0x00000000 sg_miter_next +EXPORT_SYMBOL vmlinux 0x00000000 sg_miter_start +EXPORT_SYMBOL vmlinux 0x00000000 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x00000000 sg_next +EXPORT_SYMBOL vmlinux 0x00000000 sget +EXPORT_SYMBOL vmlinux 0x00000000 sha_transform +EXPORT_SYMBOL vmlinux 0x00000000 should_remove_suid +EXPORT_SYMBOL vmlinux 0x00000000 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x00000000 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x00000000 si_meminfo +EXPORT_SYMBOL vmlinux 0x00000000 sigprocmask +EXPORT_SYMBOL vmlinux 0x00000000 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x00000000 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x00000000 simple_empty +EXPORT_SYMBOL vmlinux 0x00000000 simple_fill_super +EXPORT_SYMBOL vmlinux 0x00000000 simple_getattr +EXPORT_SYMBOL vmlinux 0x00000000 simple_link +EXPORT_SYMBOL vmlinux 0x00000000 simple_lookup +EXPORT_SYMBOL vmlinux 0x00000000 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x00000000 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x00000000 simple_readpage +EXPORT_SYMBOL vmlinux 0x00000000 simple_release_fs +EXPORT_SYMBOL vmlinux 0x00000000 simple_rename +EXPORT_SYMBOL vmlinux 0x00000000 simple_rmdir +EXPORT_SYMBOL vmlinux 0x00000000 simple_setattr +EXPORT_SYMBOL vmlinux 0x00000000 simple_statfs +EXPORT_SYMBOL vmlinux 0x00000000 simple_strtol +EXPORT_SYMBOL vmlinux 0x00000000 simple_strtoll +EXPORT_SYMBOL vmlinux 0x00000000 simple_strtoul +EXPORT_SYMBOL vmlinux 0x00000000 simple_strtoull +EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x00000000 simple_unlink +EXPORT_SYMBOL vmlinux 0x00000000 simple_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 simple_write_end +EXPORT_SYMBOL vmlinux 0x00000000 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x00000000 single_open +EXPORT_SYMBOL vmlinux 0x00000000 single_release +EXPORT_SYMBOL vmlinux 0x00000000 sk_alloc +EXPORT_SYMBOL vmlinux 0x00000000 sk_chk_filter +EXPORT_SYMBOL vmlinux 0x00000000 sk_common_release +EXPORT_SYMBOL vmlinux 0x00000000 sk_dst_check +EXPORT_SYMBOL vmlinux 0x00000000 sk_filter +EXPORT_SYMBOL vmlinux 0x00000000 sk_filter_release_rcu +EXPORT_SYMBOL vmlinux 0x00000000 sk_free +EXPORT_SYMBOL vmlinux 0x00000000 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x00000000 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x00000000 sk_release_kernel +EXPORT_SYMBOL vmlinux 0x00000000 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x00000000 sk_reset_txq +EXPORT_SYMBOL vmlinux 0x00000000 sk_run_filter +EXPORT_SYMBOL vmlinux 0x00000000 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x00000000 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_error +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x00000000 sk_wait_data +EXPORT_SYMBOL vmlinux 0x00000000 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x00000000 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x00000000 skb_append +EXPORT_SYMBOL vmlinux 0x00000000 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x00000000 skb_checksum +EXPORT_SYMBOL vmlinux 0x00000000 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x00000000 skb_clone +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_and_csum_datagram_iovec +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_datagram_const_iovec +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_datagram_from_iovec +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_datagram_iovec +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x00000000 skb_dequeue +EXPORT_SYMBOL vmlinux 0x00000000 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x00000000 skb_dst_set_noref +EXPORT_SYMBOL vmlinux 0x00000000 skb_find_text +EXPORT_SYMBOL vmlinux 0x00000000 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x00000000 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x00000000 skb_gro_reset_offset +EXPORT_SYMBOL vmlinux 0x00000000 skb_gso_segment +EXPORT_SYMBOL vmlinux 0x00000000 skb_insert +EXPORT_SYMBOL vmlinux 0x00000000 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x00000000 skb_pad +EXPORT_SYMBOL vmlinux 0x00000000 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x00000000 skb_pull +EXPORT_SYMBOL vmlinux 0x00000000 skb_push +EXPORT_SYMBOL vmlinux 0x00000000 skb_put +EXPORT_SYMBOL vmlinux 0x00000000 skb_queue_head +EXPORT_SYMBOL vmlinux 0x00000000 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x00000000 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x00000000 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x00000000 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x00000000 skb_recycle +EXPORT_SYMBOL vmlinux 0x00000000 skb_recycle_check +EXPORT_SYMBOL vmlinux 0x00000000 skb_seq_read +EXPORT_SYMBOL vmlinux 0x00000000 skb_set_dev +EXPORT_SYMBOL vmlinux 0x00000000 skb_split +EXPORT_SYMBOL vmlinux 0x00000000 skb_store_bits +EXPORT_SYMBOL vmlinux 0x00000000 skb_trim +EXPORT_SYMBOL vmlinux 0x00000000 skb_unlink +EXPORT_SYMBOL vmlinux 0x00000000 skip_spaces +EXPORT_SYMBOL vmlinux 0x00000000 sleep_on +EXPORT_SYMBOL vmlinux 0x00000000 sleep_on_timeout +EXPORT_SYMBOL vmlinux 0x00000000 smp_call_function +EXPORT_SYMBOL vmlinux 0x00000000 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x00000000 smp_call_function_single +EXPORT_SYMBOL vmlinux 0x00000000 snprintf +EXPORT_SYMBOL vmlinux 0x00000000 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x00000000 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x00000000 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 sock_create +EXPORT_SYMBOL vmlinux 0x00000000 sock_create_kern +EXPORT_SYMBOL vmlinux 0x00000000 sock_create_lite +EXPORT_SYMBOL vmlinux 0x00000000 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x00000000 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x00000000 sock_i_ino +EXPORT_SYMBOL vmlinux 0x00000000 sock_i_uid +EXPORT_SYMBOL vmlinux 0x00000000 sock_init_data +EXPORT_SYMBOL vmlinux 0x00000000 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x00000000 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x00000000 sock_map_fd +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_accept +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_bind +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_connect +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_getname +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_listen +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_poll +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x00000000 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x00000000 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x00000000 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 sock_register +EXPORT_SYMBOL vmlinux 0x00000000 sock_release +EXPORT_SYMBOL vmlinux 0x00000000 sock_rfree +EXPORT_SYMBOL vmlinux 0x00000000 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x00000000 sock_unregister +EXPORT_SYMBOL vmlinux 0x00000000 sock_wake_async +EXPORT_SYMBOL vmlinux 0x00000000 sock_wfree +EXPORT_SYMBOL vmlinux 0x00000000 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x00000000 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x00000000 soft_cursor +EXPORT_SYMBOL vmlinux 0x00000000 softirq_work_list +EXPORT_SYMBOL vmlinux 0x00000000 softnet_data +EXPORT_SYMBOL vmlinux 0x00000000 sort +EXPORT_SYMBOL vmlinux 0x00000000 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x00000000 splice_from_pipe_begin +EXPORT_SYMBOL vmlinux 0x00000000 splice_from_pipe_end +EXPORT_SYMBOL vmlinux 0x00000000 splice_from_pipe_feed +EXPORT_SYMBOL vmlinux 0x00000000 splice_from_pipe_next +EXPORT_SYMBOL vmlinux 0x00000000 sprintf +EXPORT_SYMBOL vmlinux 0x00000000 srandom32 +EXPORT_SYMBOL vmlinux 0x00000000 sscanf +EXPORT_SYMBOL vmlinux 0x00000000 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x00000000 start_tty +EXPORT_SYMBOL vmlinux 0x00000000 stop_tty +EXPORT_SYMBOL vmlinux 0x00000000 strcasecmp +EXPORT_SYMBOL vmlinux 0x00000000 strcat +EXPORT_SYMBOL vmlinux 0x00000000 strchr +EXPORT_SYMBOL vmlinux 0x00000000 strcmp +EXPORT_SYMBOL vmlinux 0x00000000 strcpy +EXPORT_SYMBOL vmlinux 0x00000000 strcspn +EXPORT_SYMBOL vmlinux 0x00000000 strim +EXPORT_SYMBOL vmlinux 0x00000000 string_get_size +EXPORT_SYMBOL vmlinux 0x00000000 strlcat +EXPORT_SYMBOL vmlinux 0x00000000 strlcpy +EXPORT_SYMBOL vmlinux 0x00000000 strlen +EXPORT_SYMBOL vmlinux 0x00000000 strncasecmp +EXPORT_SYMBOL vmlinux 0x00000000 strncat +EXPORT_SYMBOL vmlinux 0x00000000 strnchr +EXPORT_SYMBOL vmlinux 0x00000000 strncmp +EXPORT_SYMBOL vmlinux 0x00000000 strncpy +EXPORT_SYMBOL vmlinux 0x00000000 strndup_user +EXPORT_SYMBOL vmlinux 0x00000000 strnicmp +EXPORT_SYMBOL vmlinux 0x00000000 strnlen +EXPORT_SYMBOL vmlinux 0x00000000 strnstr +EXPORT_SYMBOL vmlinux 0x00000000 strpbrk +EXPORT_SYMBOL vmlinux 0x00000000 strrchr +EXPORT_SYMBOL vmlinux 0x00000000 strsep +EXPORT_SYMBOL vmlinux 0x00000000 strspn +EXPORT_SYMBOL vmlinux 0x00000000 strstr +EXPORT_SYMBOL vmlinux 0x00000000 strtobool +EXPORT_SYMBOL vmlinux 0x00000000 submit_bh +EXPORT_SYMBOL vmlinux 0x00000000 submit_bio +EXPORT_SYMBOL vmlinux 0x00000000 sync_blockdev +EXPORT_SYMBOL vmlinux 0x00000000 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x00000000 sync_inode +EXPORT_SYMBOL vmlinux 0x00000000 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x00000000 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x00000000 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x00000000 synchronize_irq +EXPORT_SYMBOL vmlinux 0x00000000 synchronize_net +EXPORT_SYMBOL vmlinux 0x00000000 syncookie_secret +EXPORT_SYMBOL vmlinux 0x00000000 sys_close +EXPORT_SYMBOL vmlinux 0x00000000 sys_tz +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_ip_nonlocal_bind +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_local_reserved_ports +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_ecn +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x00000000 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x00000000 sysfs_streq +EXPORT_SYMBOL vmlinux 0x00000000 system_rev +EXPORT_SYMBOL vmlinux 0x00000000 system_serial_high +EXPORT_SYMBOL vmlinux 0x00000000 system_serial_low +EXPORT_SYMBOL vmlinux 0x00000000 system_state +EXPORT_SYMBOL vmlinux 0x00000000 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x00000000 take_over_console +EXPORT_SYMBOL vmlinux 0x00000000 task_nice +EXPORT_SYMBOL vmlinux 0x00000000 task_ns_capable +EXPORT_SYMBOL vmlinux 0x00000000 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x00000000 tasklet_init +EXPORT_SYMBOL vmlinux 0x00000000 tasklet_kill +EXPORT_SYMBOL vmlinux 0x00000000 tcp_check_req +EXPORT_SYMBOL vmlinux 0x00000000 tcp_child_process +EXPORT_SYMBOL vmlinux 0x00000000 tcp_close +EXPORT_SYMBOL vmlinux 0x00000000 tcp_connect +EXPORT_SYMBOL vmlinux 0x00000000 tcp_cookie_generator +EXPORT_SYMBOL vmlinux 0x00000000 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x00000000 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x00000000 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x00000000 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x00000000 tcp_gro_receive +EXPORT_SYMBOL vmlinux 0x00000000 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x00000000 tcp_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x00000000 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x00000000 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x00000000 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x00000000 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x00000000 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x00000000 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x00000000 tcp_poll +EXPORT_SYMBOL vmlinux 0x00000000 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x00000000 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x00000000 tcp_prot +EXPORT_SYMBOL vmlinux 0x00000000 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x00000000 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x00000000 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x00000000 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x00000000 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x00000000 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x00000000 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x00000000 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x00000000 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x00000000 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x00000000 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x00000000 tcp_syn_flood_action +EXPORT_SYMBOL vmlinux 0x00000000 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x00000000 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x00000000 tcp_tso_segment +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_get_peer +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_tw_get_peer +EXPORT_SYMBOL vmlinux 0x00000000 tcp_valid_rtt_meas +EXPORT_SYMBOL vmlinux 0x00000000 test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x00000000 test_taint +EXPORT_SYMBOL vmlinux 0x00000000 thaw_bdev +EXPORT_SYMBOL vmlinux 0x00000000 thaw_process +EXPORT_SYMBOL vmlinux 0x00000000 thaw_super +EXPORT_SYMBOL vmlinux 0x00000000 time_to_tm +EXPORT_SYMBOL vmlinux 0x00000000 timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0x00000000 timespec_to_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 timespec_trunc +EXPORT_SYMBOL vmlinux 0x00000000 timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 totalhigh_pages +EXPORT_SYMBOL vmlinux 0x00000000 totalram_pages +EXPORT_SYMBOL vmlinux 0x00000000 touch_atime +EXPORT_SYMBOL vmlinux 0x00000000 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x00000000 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x00000000 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x00000000 truncate_setsize +EXPORT_SYMBOL vmlinux 0x00000000 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x00000000 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x00000000 try_to_release_page +EXPORT_SYMBOL vmlinux 0x00000000 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x00000000 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x00000000 tty_check_change +EXPORT_SYMBOL vmlinux 0x00000000 tty_devnum +EXPORT_SYMBOL vmlinux 0x00000000 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x00000000 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x00000000 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x00000000 tty_free_termios +EXPORT_SYMBOL vmlinux 0x00000000 tty_get_baud_rate +EXPORT_SYMBOL vmlinux 0x00000000 tty_hangup +EXPORT_SYMBOL vmlinux 0x00000000 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x00000000 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x00000000 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x00000000 tty_kref_put +EXPORT_SYMBOL vmlinux 0x00000000 tty_lock +EXPORT_SYMBOL vmlinux 0x00000000 tty_mutex +EXPORT_SYMBOL vmlinux 0x00000000 tty_name +EXPORT_SYMBOL vmlinux 0x00000000 tty_pair_get_pty +EXPORT_SYMBOL vmlinux 0x00000000 tty_pair_get_tty +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_close +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_init +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_open +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_put +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x00000000 tty_register_device +EXPORT_SYMBOL vmlinux 0x00000000 tty_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x00000000 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x00000000 tty_set_operations +EXPORT_SYMBOL vmlinux 0x00000000 tty_shutdown +EXPORT_SYMBOL vmlinux 0x00000000 tty_std_termios +EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x00000000 tty_throttle +EXPORT_SYMBOL vmlinux 0x00000000 tty_unlock +EXPORT_SYMBOL vmlinux 0x00000000 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x00000000 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x00000000 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x00000000 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x00000000 tty_vhangup +EXPORT_SYMBOL vmlinux 0x00000000 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x00000000 tty_write_room +EXPORT_SYMBOL vmlinux 0x00000000 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x00000000 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0x00000000 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x00000000 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x00000000 twl_i2c_read +EXPORT_SYMBOL vmlinux 0x00000000 twl_i2c_read_u8 +EXPORT_SYMBOL vmlinux 0x00000000 twl_i2c_write +EXPORT_SYMBOL vmlinux 0x00000000 twl_i2c_write_u8 +EXPORT_SYMBOL vmlinux 0x00000000 twl_rev +EXPORT_SYMBOL vmlinux 0x00000000 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x00000000 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x00000000 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x00000000 uart_match_port +EXPORT_SYMBOL vmlinux 0x00000000 uart_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x00000000 uart_resume_port +EXPORT_SYMBOL vmlinux 0x00000000 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x00000000 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x00000000 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x00000000 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x00000000 udp_disconnect +EXPORT_SYMBOL vmlinux 0x00000000 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x00000000 udp_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x00000000 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x00000000 udp_poll +EXPORT_SYMBOL vmlinux 0x00000000 udp_proc_register +EXPORT_SYMBOL vmlinux 0x00000000 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x00000000 udp_prot +EXPORT_SYMBOL vmlinux 0x00000000 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 udp_seq_open +EXPORT_SYMBOL vmlinux 0x00000000 udp_table +EXPORT_SYMBOL vmlinux 0x00000000 udplite_prot +EXPORT_SYMBOL vmlinux 0x00000000 udplite_table +EXPORT_SYMBOL vmlinux 0x00000000 unblock_all_signals +EXPORT_SYMBOL vmlinux 0x00000000 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x00000000 unload_nls +EXPORT_SYMBOL vmlinux 0x00000000 unlock_buffer +EXPORT_SYMBOL vmlinux 0x00000000 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x00000000 unlock_page +EXPORT_SYMBOL vmlinux 0x00000000 unlock_rename +EXPORT_SYMBOL vmlinux 0x00000000 unlock_super +EXPORT_SYMBOL vmlinux 0x00000000 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x00000000 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x00000000 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x00000000 unregister_blkdev +EXPORT_SYMBOL vmlinux 0x00000000 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x00000000 unregister_con_driver +EXPORT_SYMBOL vmlinux 0x00000000 unregister_console +EXPORT_SYMBOL vmlinux 0x00000000 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_exec_domain +EXPORT_SYMBOL vmlinux 0x00000000 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x00000000 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x00000000 unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_key_type +EXPORT_SYMBOL vmlinux 0x00000000 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdev +EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x00000000 unregister_nls +EXPORT_SYMBOL vmlinux 0x00000000 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x00000000 unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x00000000 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x00000000 up +EXPORT_SYMBOL vmlinux 0x00000000 up_read +EXPORT_SYMBOL vmlinux 0x00000000 up_write +EXPORT_SYMBOL vmlinux 0x00000000 update_region +EXPORT_SYMBOL vmlinux 0x00000000 usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 user_path_at +EXPORT_SYMBOL vmlinux 0x00000000 user_path_create +EXPORT_SYMBOL vmlinux 0x00000000 user_revoke +EXPORT_SYMBOL vmlinux 0x00000000 usleep_range +EXPORT_SYMBOL vmlinux 0x00000000 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x00000000 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x00000000 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x00000000 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x00000000 vc_cons +EXPORT_SYMBOL vmlinux 0x00000000 vc_resize +EXPORT_SYMBOL vmlinux 0x00000000 verify_mem_not_deleted +EXPORT_SYMBOL vmlinux 0x00000000 vfree +EXPORT_SYMBOL vmlinux 0x00000000 vfs_create +EXPORT_SYMBOL vmlinux 0x00000000 vfs_follow_link +EXPORT_SYMBOL vmlinux 0x00000000 vfs_fstat +EXPORT_SYMBOL vmlinux 0x00000000 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x00000000 vfs_fsync +EXPORT_SYMBOL vmlinux 0x00000000 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x00000000 vfs_getattr +EXPORT_SYMBOL vmlinux 0x00000000 vfs_link +EXPORT_SYMBOL vmlinux 0x00000000 vfs_llseek +EXPORT_SYMBOL vmlinux 0x00000000 vfs_lstat +EXPORT_SYMBOL vmlinux 0x00000000 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x00000000 vfs_mknod +EXPORT_SYMBOL vmlinux 0x00000000 vfs_open +EXPORT_SYMBOL vmlinux 0x00000000 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x00000000 vfs_read +EXPORT_SYMBOL vmlinux 0x00000000 vfs_readdir +EXPORT_SYMBOL vmlinux 0x00000000 vfs_readlink +EXPORT_SYMBOL vmlinux 0x00000000 vfs_readv +EXPORT_SYMBOL vmlinux 0x00000000 vfs_rename +EXPORT_SYMBOL vmlinux 0x00000000 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x00000000 vfs_stat +EXPORT_SYMBOL vmlinux 0x00000000 vfs_statfs +EXPORT_SYMBOL vmlinux 0x00000000 vfs_symlink +EXPORT_SYMBOL vmlinux 0x00000000 vfs_unlink +EXPORT_SYMBOL vmlinux 0x00000000 vfs_write +EXPORT_SYMBOL vmlinux 0x00000000 vfs_writev +EXPORT_SYMBOL vmlinux 0x00000000 vfsmount_lock_global_lock +EXPORT_SYMBOL vmlinux 0x00000000 vfsmount_lock_global_lock_online +EXPORT_SYMBOL vmlinux 0x00000000 vfsmount_lock_global_unlock +EXPORT_SYMBOL vmlinux 0x00000000 vfsmount_lock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x00000000 vfsmount_lock_local_lock +EXPORT_SYMBOL vmlinux 0x00000000 vfsmount_lock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x00000000 vfsmount_lock_local_unlock +EXPORT_SYMBOL vmlinux 0x00000000 vfsmount_lock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x00000000 vfsmount_lock_lock_init +EXPORT_SYMBOL vmlinux 0x00000000 vga_base +EXPORT_SYMBOL vmlinux 0x00000000 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x00000000 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x00000000 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x00000000 vm_event_states +EXPORT_SYMBOL vmlinux 0x00000000 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x00000000 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x00000000 vm_insert_page +EXPORT_SYMBOL vmlinux 0x00000000 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x00000000 vm_map_ram +EXPORT_SYMBOL vmlinux 0x00000000 vm_stat +EXPORT_SYMBOL vmlinux 0x00000000 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_32 +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_node +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_user +EXPORT_SYMBOL vmlinux 0x00000000 vmap +EXPORT_SYMBOL vmlinux 0x00000000 vmtruncate +EXPORT_SYMBOL vmlinux 0x00000000 vprintk +EXPORT_SYMBOL vmlinux 0x00000000 vscnprintf +EXPORT_SYMBOL vmlinux 0x00000000 vsnprintf +EXPORT_SYMBOL vmlinux 0x00000000 vsprintf +EXPORT_SYMBOL vmlinux 0x00000000 vsscanf +EXPORT_SYMBOL vmlinux 0x00000000 vunmap +EXPORT_SYMBOL vmlinux 0x00000000 vzalloc +EXPORT_SYMBOL vmlinux 0x00000000 vzalloc_node +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x00000000 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x00000000 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x00000000 wait_on_sync_kiocb +EXPORT_SYMBOL vmlinux 0x00000000 wake_bit_function +EXPORT_SYMBOL vmlinux 0x00000000 wake_up_bit +EXPORT_SYMBOL vmlinux 0x00000000 wake_up_process +EXPORT_SYMBOL vmlinux 0x00000000 walk_stackframe +EXPORT_SYMBOL vmlinux 0x00000000 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x00000000 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x00000000 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x00000000 wireless_send_event +EXPORT_SYMBOL vmlinux 0x00000000 would_dump +EXPORT_SYMBOL vmlinux 0x00000000 write_cache_pages +EXPORT_SYMBOL vmlinux 0x00000000 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x00000000 write_inode_now +EXPORT_SYMBOL vmlinux 0x00000000 write_one_page +EXPORT_SYMBOL vmlinux 0x00000000 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x00000000 writeback_inodes_sb_if_idle +EXPORT_SYMBOL vmlinux 0x00000000 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x00000000 writeback_inodes_sb_nr_if_idle +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_cfg_mutex +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_input +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x00000000 xz_dec_end +EXPORT_SYMBOL vmlinux 0x00000000 xz_dec_init +EXPORT_SYMBOL vmlinux 0x00000000 xz_dec_reset +EXPORT_SYMBOL vmlinux 0x00000000 xz_dec_run +EXPORT_SYMBOL vmlinux 0x00000000 yield +EXPORT_SYMBOL vmlinux 0x00000000 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflate +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflate_workspacesize +EXPORT_SYMBOL_GPL crypto/aes_generic 0x00000000 crypto_aes_expand_key +EXPORT_SYMBOL_GPL crypto/aes_generic 0x00000000 crypto_aes_set_key +EXPORT_SYMBOL_GPL crypto/aes_generic 0x00000000 crypto_fl_tab +EXPORT_SYMBOL_GPL crypto/aes_generic 0x00000000 crypto_ft_tab +EXPORT_SYMBOL_GPL crypto/aes_generic 0x00000000 crypto_il_tab +EXPORT_SYMBOL_GPL crypto/aes_generic 0x00000000 crypto_it_tab +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x00000000 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x00000000 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x00000000 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x00000000 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x00000000 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x00000000 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x00000000 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x00000000 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x00000000 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x00000000 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x00000000 async_xor_val +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x00000000 usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x00000000 usbhid_set_leds +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x00000000 usbhid_submit_report +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x00000000 usbhid_wait_io +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x00000000 dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bio_alloc_mddev +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bio_clone_mddev +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bitmap_load +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_ack_all_badblocks +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_allow_write +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_do_sync +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_is_badblock +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_new_event +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_rdev_init +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_run +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_stop +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_stop_writes +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_trim_bio +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_check_plugged +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_init +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_resume +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_suspend +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 rdev_clear_badblocks +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 rdev_set_badblocks +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 sync_page_io +EXPORT_SYMBOL_GPL drivers/md/raid1 0x00000000 md_raid1_congested +EXPORT_SYMBOL_GPL drivers/md/raid456 0x00000000 md_raid5_congested +EXPORT_SYMBOL_GPL drivers/net/tun 0x00000000 tun_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x00000000 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x00000000 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x00000000 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x00000000 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x00000000 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x00000000 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x00000000 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x00000000 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x00000000 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x00000000 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00000000 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x00000000 synth_request_region +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_add_hcd +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_alloc_coherent +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_alloc_streams +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_alloc_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_anchor_empty +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_anchor_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_bulk_msg +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_bus_list +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_bus_list_lock +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_calc_bus_time +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_control_msg +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_create_hcd +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_create_shared_hcd +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_debug_root +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_deregister +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_deregister_dev +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_deregister_device_driver +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_disabled +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_driver_claim_interface +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_driver_release_interface +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_driver_set_configuration +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_ep0_reinit +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_find_alt_setting +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_find_interface +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_free_coherent +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_free_streams +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_free_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_get_current_frame_number +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_get_descriptor +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_get_dev +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_get_from_anchor +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_get_hcd +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_get_intf +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_get_status +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_get_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hc_died +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcd_irq +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hcds_loaded +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_ifnum_to_if +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_init_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_interrupt_msg +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_kill_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_match_id +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_match_one_id +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_poison_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_put_dev +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_put_hcd +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_put_intf +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_queue_reset_device +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_register_dev +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_register_device_driver +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_register_driver +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_register_notify +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_remove_hcd +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_reset_configuration +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_reset_device +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_reset_endpoint +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_set_device_state +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_set_interface +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_sg_cancel +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_sg_init +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_sg_wait +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_store_new_id +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_string +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_submit_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_unanchor_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_unlink_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_unpoison_urb +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_unregister_notify +EXPORT_SYMBOL_GPL drivers/usb/core/usbcore 0x00000000 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_storage_usb_ids +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00000000 usb_usual_ignore_device +EXPORT_SYMBOL_GPL drivers/usb/usb-common 0x00000000 usb_speed_string +EXPORT_SYMBOL_GPL fs/exportfs/exportfs 0x00000000 exportfs_decode_fh +EXPORT_SYMBOL_GPL fs/exportfs/exportfs 0x00000000 exportfs_encode_fh +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_abort_conn +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_conn_get +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_conn_init +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_conn_kill +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_conn_put +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_dev_operations +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_dev_release +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_direct_io +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_do_ioctl +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_do_open +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_file_poll +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_get_req +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_put_request +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_request_alloc +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_request_send +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_request_send_background +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_sync_release +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 locks_end_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 locks_in_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 locks_start_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs4_reset_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs4_reset_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_commit_clear_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_commit_release_pages +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_initiate_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_initiate_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x00000000 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x00000000 nfsacl_encode +EXPORT_SYMBOL_GPL lib/lzo/lzo_compress 0x00000000 lzo1x_1_compress +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x00000000 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x00000000 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x00000000 raid6_datap_recov +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00000000 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00000000 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00000000 ieee80211_iterate_active_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00000000 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00000000 ieee80211_key_removed +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00000000 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00000000 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00000000 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00000000 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 gss_mech_get +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 gss_mech_get_by_OID +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 gss_mech_get_by_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 gss_mech_get_by_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 gss_mech_list_pseudoflavors +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 gss_mech_put +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 gss_pseudoflavor_to_service +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 gss_service_to_auth_domain_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 gss_svc_to_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 svc_gss_principal +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00000000 svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_get_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_mkpipe +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_put_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_queue_empty +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_sock_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_write_space +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00000000 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00000000 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00000000 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00000000 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00000000 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00000000 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00000000 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00000000 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00000000 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00000000 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x00000000 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __clocksource_updatefreq_scale +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __gpio_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __gpio_get_value +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __gpio_set_value +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __gpio_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __hid_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_hash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ip_route_output_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __scsi_get_command +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __timecompare_update +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x00000000 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 arm_pm_restart +EXPORT_SYMBOL_GPL vmlinux 0x00000000 armpmu_get_max_events +EXPORT_SYMBOL_GPL vmlinux 0x00000000 armpmu_get_pmu_id +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x00000000 atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bdi_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_abort_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_bio +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_rq_check_limits +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkdev_aio_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x00000000 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 clockevents_notify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x00000000 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x00000000 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_idle_wait +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cred_to_ucred +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_aead_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_larval_error +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_nivaead_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_rng_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x00000000 d_materialise_unique +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debug_locks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 default_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x00000000 destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_move +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_schedule_callback_owner +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kzalloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_dispatch_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_kill_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_requeue_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_set_device_limits +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dm_underlying_device_busy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x00000000 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 do_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dpm_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dpm_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_add_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 drop_file_write_access +EXPORT_SYMBOL_GPL vmlinux 0x00000000 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x00000000 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0x00000000 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0x00000000 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x00000000 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x00000000 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x00000000 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_module +EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x00000000 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x00000000 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 flush_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x00000000 flush_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gcd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_subsys_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_cpu_sysdev +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_monotonic_boottime +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x00000000 getboottime +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpio_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpio_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpio_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_add_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_allocate_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_check_keys_pressed +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_connect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_debug +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_input_report +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_output_report +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_parse_report +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_register_report +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_report_raw_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_set_field +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hid_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hidinput_connect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hidinput_disconnect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hidinput_find_field +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hidinput_report_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_get_res +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x00000000 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_hash_frag +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_clone +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_reqsk_queue_prune +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twdr_hangman +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twdr_twcal_tick +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twdr_twkill_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inode_dio_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inode_dio_wait +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_class +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x00000000 invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_generate_simple +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kbd_table +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x00000000 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_after +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_boottime +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_real +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_ts +EXPORT_SYMBOL_GPL vmlinux 0x00000000 lcm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0x00000000 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0x00000000 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 lock_flocks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x00000000 lookup_instantiate_filp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mmput +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x00000000 monotonic_to_bootbased +EXPORT_SYMBOL_GPL vmlinux 0x00000000 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 net_ipv4_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0x00000000 net_ipv6_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0x00000000 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x00000000 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x00000000 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x00000000 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x00000000 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x00000000 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_irq_map_one +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_irq_map_raw +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_property_count_strings +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_property_read_string_index +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x00000000 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 proc_net_fops_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 proc_net_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x00000000 proc_net_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x00000000 profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x00000000 put_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 put_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 queue_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x00000000 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 queue_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 queue_work_on +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_completed_preempt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_net_sysctl_rotable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 release_pmu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 reserve_pmu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 return_address +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_set_mmss +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_complete_async_scans +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_get_of_property +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x00000000 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x00000000 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x00000000 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x00000000 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x00000000 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0x00000000 setup_deferrable_timer_on_stack_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_clone +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x00000000 snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x00000000 snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 snmp_mib_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 snmp_mib_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x00000000 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x00000000 suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0x00000000 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x00000000 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0x00000000 syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysctl_tcp_cookie_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_class_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_show_int +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_store_int +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_get_dirent +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_notify_dirent +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_rename_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_schedule_callback +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_nrt_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_nrt_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_init_congestion_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_is_cwnd_limited +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_reno_min_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x00000000 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timecompare_offset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timecompare_transform +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_prepare_flip_string_flags +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x00000000 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unlock_flocks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_match +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_update +EXPORT_SYMBOL_GPL vmlinux 0x00000000 usermodehelper_is_disabled +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 work_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0x00000000 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_calg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_count_auth_supported +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_count_enc_supported +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_probe_algs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x00000000 zap_vma_ptes --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/armhf/omap.compiler +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/armhf/omap.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/amd64/virtual.compiler +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/amd64/virtual.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/amd64/generic.compiler +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/amd64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/amd64/generic +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/amd64/generic @@ -0,0 +1,12477 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x311e336e kvm_read_guest_atomic +EXPORT_SYMBOL arch/x86/kvm/kvm 0x68ac86fd kvm_cpu_has_pending_timer +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/video 0x3106bb15 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/atm/suni 0x63a8e97b suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x2405ba83 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0xf3dc83d8 bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x5c165453 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x01625dae pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x182cda8d pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x2f812b21 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4cf1010c pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x713e7fb7 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x92006d3f paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xcd46a34b pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xd3df273f pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xddcb5d17 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xe795cd63 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xedce8ef5 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xf5dfacc0 pi_read_regr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1d363d6a ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4b7e576b ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5ffc59aa ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x973d599c ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa28a2ace ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc54081ff ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/edac/edac_core 0x037a8c71 edac_mc_handle_fbd_ue +EXPORT_SYMBOL drivers/edac/edac_core 0x7a50055e edac_mc_handle_fbd_ce +EXPORT_SYMBOL drivers/edac/edac_core 0xfe1b6d66 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b51454c fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x214ce0e6 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2ff0bb91 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3215823d fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x402649bd fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x453a940f fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49a29946 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a5e345f fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4e86dd83 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5945be89 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x64be9b3f fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x68e4d196 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6a8342ef fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e0d1a58 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6e2b7d07 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x78f479c3 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x861289d2 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb64e9c06 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc22c81d4 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xced746d9 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1aa3759 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd3d483b6 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe4707df5 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe7cde01f fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xece1cdce fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf9422bc0 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfb276a52 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xffa574d1 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0014d9de drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x013f263a drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x042f8816 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f6040d drm_mode_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bb1c19b drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cb9d531 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c6276a drm_buffer_read_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142b8b35 drm_buffer_copy_from_user +EXPORT_SYMBOL drivers/gpu/drm/drm 0x169c380f drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16d0a23f drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c6e21a drm_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x188fe96e drm_sysfs_connector_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ad2feab drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b886826 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c7eb935 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ede84be drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f072c59 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f679536 drm_unbind_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20a8fee6 drm_get_last_vbltimestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2335d085 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24607d3c drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a9c2d9 drm_core_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x274f7159 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x290bb97a drm_mm_pre_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c2698af drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3074f033 drm_order +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e154ba drm_sman_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34a096ad drm_connector_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b06e3a0 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ceefa72 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fbc8c81 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x410e1abc drm_core_reclaim_buffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43384bd9 drm_buffer_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c9a91c drm_sman_set_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4424a5f8 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x445ed9d0 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x447c4fb3 drm_core_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x451496e4 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x461f6a4e drm_free_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48b16393 drm_mode_connector_detach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49601b94 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x497902d8 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498dcb5e drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a3afd3c drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b1267f7 drm_usb_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb352c4 drm_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc09a98 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x516f4c91 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x524b2580 drm_mode_validate_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52c35346 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x540bcefa drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55a574d7 drm_get_encoder_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x563278c5 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x568f1d59 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57851124 drm_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580830f0 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f08219 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f1f828 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59814e85 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f02411 drm_mm_get_block_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5eba7232 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6cbc33 drm_find_cea_extension +EXPORT_SYMBOL drivers/gpu/drm/drm 0x610c0143 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x637a3dbc drm_connector_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65172590 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6746fec6 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a2e5129 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b3450eb drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d7375 drm_timestamp_precision +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c8a98a9 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f65d4b4 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ff1106e drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ff4b393 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70e3d610 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70f0d4ed drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7229c812 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7603c921 drm_mm_insert_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x766c3744 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7972e731 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79eb3e95 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a66fd05 drm_mm_search_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1fd6c8 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c514cdd drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ccb573f drm_usb_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4cfa5d drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c38af7 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x810eced6 drm_mm_search_free_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x829827c6 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x831dcc6e drm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8394f3e0 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85cdd5c1 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85de09f5 drm_mode_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871a661e drm_get_connector_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89c1a5f8 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b8bf0df drm_sysfs_connector_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfb019d drm_buffer_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e8129e9 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eb06674 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x909e3ff6 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91783246 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x923c76e3 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f2d102 drm_sman_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932df43d drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94c0eb90 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x973f7638 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9745d638 drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a2eae8 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc25a34 drm_sman_owner_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ea0283f drm_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f8fde86 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0f0c173 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1eabd87 drm_mode_list_concat +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa237e931 drm_sman_set_manager +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa42fdf6e drm_core_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7a39bdf drm_get_usb_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa87cba82 drm_mode_detachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8d1fe3d drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa7b2902 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab8b86ef drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad3c5f69 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xade56288 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3372131 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4becba5 drm_gem_object_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a467b1 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb872b793 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb93af8c9 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb8d2330 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcd221a6 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd6812f4 drm_fasync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf2f8241 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfcf0718 drm_mm_get_block_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0f0af81 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc15f759a drm_get_platform_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1ab16e3 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2a11df0 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc36f1bfe drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc414c422 drm_vblank_offdelay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e44a9a drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6440aaa drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc982b0b0 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9baae81 drm_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca8b7fce drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbf0da36 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccbab7d6 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdc5ef80 drm_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf2eff4 drm_mode_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff371b4 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08fa3f0 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd42aed82 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd523c274 drm_gem_object_handle_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd524a5f0 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd68d40a7 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f1ab84 drm_sman_owner_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96faf37 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9bf9773 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcec8730 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde11ec63 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde28d63e drm_platform_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf120790 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0d3c3c1 drm_global_mutex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1c52f38 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe200ef32 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe256edfd drm_sman_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3553657 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe46702ad drm_connector_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5bdce7e drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe63879d2 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe66f0b18 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe779983b drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8479518 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe994814a drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccc9f7d drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed256cae drm_sman_free_key +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedd7c85c drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0980c21 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf09c3e1d drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a0bf79 drm_sman_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf21cb30f drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2f97e17 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3476d90 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3b2bbb1 drm_mm_put_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7d1925a drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9a2b42c drm_mode_attachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9d91d11 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9dbe8ef drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa6afdb3 drm_mode_create_dithering_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4f8599 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x093bc349 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a367ccf drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b65f26c drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fdee914 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3df49105 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45f7afcf drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4710eb33 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59cbed24 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c2c0b5b drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6171ef81 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6925a147 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69982373 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70e335d0 drm_fb_helper_restore_fbdev_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x729056bf drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x779772ec drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97f1e03e drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a216454 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d251144 drm_fb_helper_panic +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d375510 drm_fb_helper_single_fb_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0492b1a drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa11e0978 i2c_dp_aux_add_bus +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaccf6b0e drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb430f6b6 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9f0c5d9 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb23e0b1 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbee88fb9 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc469c244 drm_fb_helper_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaaca6db drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcacde73a drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0617a8e drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe82376eb drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecbd8a59 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa95e738 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02fe71f0 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0687c11f ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x07d02dfd ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b4e5c53 ttm_bo_wait_unreserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x145e6a73 ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16624261 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16a33fe8 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1740446e ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f4f6d84 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25392771 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x255057f6 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2551fe26 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25f708a0 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27023edb ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31ab40c7 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a0782fe ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3c541419 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x470bce35 ttm_bo_wait_cpu +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47ddd76c ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51e98270 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x567e7b75 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58866c0b ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61108e51 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61bdb34f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6541dd4c ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ce6ec9b ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x708e1ae7 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7586fb3a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7c07993e ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8349936f ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85477881 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86a4066d ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8832162b ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e29981f ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90839ee7 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x997d6e55 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9c193362 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa1c5a0a9 ttm_bo_unreserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab312393 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac0e50d1 ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xafe256b7 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaffa2bd1 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4a78d92 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbe4704b4 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc13b38b4 ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2d849ed ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc326e126 ttm_agp_backend_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf79a03e ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd40871de ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd690ef85 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7859c70 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdbac9694 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd50075c ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xddd3dea5 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8987e5c ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebe15ba2 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc583d9 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf109377e ttm_bo_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd0d3d55 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x2f223272 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xb0f3db66 vmbus_sendpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x1dce5d41 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x7c249ff5 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x487621df i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xca551a05 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pcf 0x8ab117de i2c_pcf_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x70168760 amd756_smbus +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x20f345d6 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x2107de5f rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x37838b44 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x6f6ee97c rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x8ef35bcc rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d1f522d rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0117f23c ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0246a131 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x04224fdb cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x18e069fe ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d197105 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x246a4c3e ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x28893d98 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b501cbb ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b6516c0 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x59df1d3d ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x624260ef ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x63147113 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a0a1bbc ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8b0ff96d ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9d9a10d0 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbda11d19 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc3a2ea28 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02fc512d rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c82fcf mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x078d6dd8 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11731b00 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1180fb86 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f84918 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15913a69 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171f99f1 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ca3d925 ib_alloc_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x223fdf7e ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x252b9b84 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26d34599 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26fd9190 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27a4b18d ib_reg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x301c58e4 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3188a3c4 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35e0a8ee ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35ee7379 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x369906be ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3764c2da ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a4ec394 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c6ea337 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ffea4f7 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x406dbeff ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x473b0530 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x491cbef4 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x524cf319 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54392be8 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54afde8a ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57ca7e77 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58d8753f ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59dfa654 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ab29b01 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5be20215 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x604e8482 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6344c264 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63471373 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6410b653 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75969cdd ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78bfd12b ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79154185 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f5433a9 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82f504d1 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86515b42 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86c5298e ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89a6610e ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89f88535 ib_rereg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8acc0087 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b876c07 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x912e001e ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9350b34c ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96ce6c46 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d338566 ib_free_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f157856 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1050fd2 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa99d9707 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa4672a6 ib_alloc_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaa689a37 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf57a516 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf88fff2 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb34be77a ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8ec2bed ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba4cc056 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcc156c2 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5252424 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca88ca6d ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcad9d791 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd5b45f4 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf708f4b ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd599a2e6 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1f9e69a ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2c7956c ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe35e554f ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec953d1d ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1b72e67 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf374828d ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf994d09a ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0739b7bb ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0933b630 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x09c23d2b ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x469820dd ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5fe5b915 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x65005bef ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x89e7f905 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x946d5d27 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9aa944d1 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb486aa03 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe5586536 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe85a4ddc ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf28d23e9 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x27e80d59 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2fd0e42f ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x56ef6c06 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6ceb6b83 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7b20ee78 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb2e73f12 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc1955a3f ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xeba17780 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf6b6444b ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f847bc ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07cf5a51 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18382f6a ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x184f3575 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ec8e850 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x388addca iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x39be8b75 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5048c6ce iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x628fe6ea iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x805a45ef iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x81c8cc33 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x93d66665 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x149a8d36 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d061233 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x223c9ad6 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x25b0be2a rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2ce4c2bf rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d88e819 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78c0c85c rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x841afb4a rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x90939ec7 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x938c2ef7 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x99533c71 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9a58f0cd rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa073463c rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb362a9e7 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3d96db3 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd827859c rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe685f31a rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe4932b4 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xffec4487 rdma_set_service_type +EXPORT_SYMBOL drivers/input/gameport/gameport 0x021a31cb __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1e2c0ce0 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x286d1319 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x3fe591a8 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7efb6344 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa1aa318c gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbba334ec gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf5af4666 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfb59cd5c gameport_unregister_port +EXPORT_SYMBOL drivers/input/input-polldev 0x22cd1172 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x42e8f12f input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xacd01c9a input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xd6f4d289 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/misc/ad714x 0x320507d6 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x500cf543 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x61205a08 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x71a78c33 ad714x_remove +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x97b09d40 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1007562c sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1d711a12 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4c88120b sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4cc70f80 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb38c7a16 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf5af32bc sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbc9dc160 ad7879_suspend +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe2644603 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf3bd1692 ad7879_resume +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0905992d capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x21257b8a capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x250fe651 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x266d0a8d capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31256672 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47d3fc51 capi_info2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47dbfa0a capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5bd6eb69 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x788d398c capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7f4d43c5 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9c91fb39 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xae202ed0 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbdae5ae0 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe9f62f29 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed061606 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0c01ec8d b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x11feb95b b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x193ad167 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x39c857c2 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x462937a7 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x69e83c06 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7dc3c1ce b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7f7c04f4 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x964adc26 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb7f5d124 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc372e0ea b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd07a2eb1 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd4f26ee2 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe4cdc0d0 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xff7c85dd b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x15671976 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2c08179b b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x363be3a6 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x44ac5a7c b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x652487da b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x84bcf8e6 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x956529af b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa7b6d218 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf7fe4575 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2764629c proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x22f58489 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x23be51e7 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe66cf1f4 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xefe9d2dd mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xc7f79f8b mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xee731af6 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x201663df hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7f29ce36 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe227344e FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xff2db2cf FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0245244e isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0873fbbb isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x2f177ade isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3729029f isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x77668e37 isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x88c9df0e register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xb5378099 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc13e6e83 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0fbc348a mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1186d28f dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x268a0d01 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ea9584f recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x41ab36c0 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x431c9d8c recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x48d36b52 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54451388 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dc7400a mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x614ede30 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6a3a9d24 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x719a4074 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x71a02535 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7263121f mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f9da31d confirm_Bsend +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8d53477a get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96309324 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa4b83bff mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xad7d1f28 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xce7df912 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd1c5cb86 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8252ce0 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdd2233c1 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe87943cf mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf2162bfe recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf7801c33 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/dm-log 0x603430fa dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x8ee68ebc dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xe750fc9f dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xea7288df dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1cdb5074 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2fcb9cca dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x38fa0052 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3d3bb70b dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x42ddfd3c dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x924e3074 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x33a71929 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/tuners/max2165 0x9689a5ed max2165_attach +EXPORT_SYMBOL drivers/media/common/tuners/mc44s803 0x8894cb94 mc44s803_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2060 0x01814c86 mt2060_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2131 0x27a573c0 mt2131_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2266 0x1e86c2ed mt2266_attach +EXPORT_SYMBOL drivers/media/common/tuners/mxl5005s 0xabbbed9e mxl5005s_attach +EXPORT_SYMBOL drivers/media/common/tuners/qt1010 0xe223e76d qt1010_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18212 0x8ee5fa7d tda18212_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18218 0xa3d51f3f tda18218_attach +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/common/tuners/tuner-xc2028 0xeb1bb875 xc2028_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc4000 0x7ee2d743 xc4000_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc5000 0x1b646be5 xc5000_attach +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x11fc9808 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x397ac807 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x3ca18d04 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x4de92f95 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x54a5bf8d flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x6be650d8 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x6fd06cce flexcop_device_initialize +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x77efd89d flexcop_dma_config +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x800db414 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x814398ae flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x8f30e022 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x9d032844 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x9dc9e19d flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xa3fdeeaa flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xa43feefb flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xad036651 flexcop_dma_free +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xb0687da3 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xb676916e flexcop_device_exit +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc5dd89d7 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xef0c7b31 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x051b5eb8 bt878_start +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x325ec097 bt878_stop +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x840d1522 bt878_device_control +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x9693e207 bt878 +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x6014bc05 dst_pio_disable +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x7a8c45f0 read_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x84398148 write_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x8bed707f dst_attach +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x8e16e2f7 dst_comm_init +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xa7865c28 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xb8a51e21 rdc_reset_state +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xcfc1ba50 dst_error_bailout +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xdbdf132b dst_error_recovery +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst_ca 0x4b64f8f7 dst_ca_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x090b04bc dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0c4d4a14 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0dd20f7f dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x17cfa541 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x1bb11af6 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x27f9de3d dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x27fd8e29 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x2f7b9b8a dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x3417cd93 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x3965c258 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x3b57089b dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x3ff241fe dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x40200e17 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x5588f255 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x568ef0cf dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x5834c549 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x58ab8300 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x62ec8a93 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x638aece3 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6b45f74d dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x718eb2c1 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7451274f dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7a54146a dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7cc39002 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7d8a1fef dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8f7e406f dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x93f7b86f dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xad303afd dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbc0d91e1 timeval_usec_diff +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbcf2a1a5 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc7c6ea58 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xd338adc2 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xd7b2849f dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe65af7b3 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe7271e3e dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf4ad884c dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x13edd6dd dvb_usb_device_init +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x1f5068e0 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x47fa4666 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x51d436ab dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x84a8c8c2 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x8625af00 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x88ddb05c dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x648061b5 af9005_rc_decode +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x0ba97159 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x365c6dd9 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x50609244 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x71ece03f dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x899a6838 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x8dea027d dibusb_rc_query +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x99b364a0 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb06e807a dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xbf3420d9 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xd97afb32 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xfb54c908 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/a8293 0x757f9d41 a8293_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/af9013 0x9f534fd0 af9013_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/atbm8830 0x724cc6f4 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/au8522 0x256647d8 au8522_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/bcm3510 0xc5a591d8 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22700 0xf8c425b2 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22702 0x52aba220 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24110 0xb76b482c cx24110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x17b23548 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0xdd6ff2db cx24113_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24116 0x4d5d7fbc cx24116_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x156beaf2 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x24b65c14 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/cxd2820r 0xae945e24 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x1632d224 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x519e91a3 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x8c9ff8eb dib0070_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xa12bb6f6 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xcdf8778f dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x1ed229f6 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x24381a8e dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x351aa374 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x455a1089 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x85ebbcdf dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x8941bd71 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xbbb9dc03 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xddf5e73d dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xe29fbae7 dib0090_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mb 0xf4879ea3 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x54150731 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x56afe988 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x645f2369 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x846c5721 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xbe952f46 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xddb5c6f6 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x09bd99cd dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x12d69062 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x8a134129 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xe633aaeb dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x021f2c78 dib7090_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x27ecefab dib7000p_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x289337a7 dib7000pc_detection +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x2be3d0b1 dib7000p_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x2c9451a8 dib7000p_update_pll +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x37e9d4e5 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x809b5b2a dib7000p_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xa526c9aa dib7090_agc_restart +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xbbb4b532 dib7090_slave_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xbdd862db dib7090_get_i2c_tuner +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xbe281f48 dib7000p_ctrl_timf +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xdaf6153f dib7090_tuner_sleep +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xddccc991 dib7000p_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xe28e8c50 dib7000p_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xee5a8822 dib7000p_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x0e9a7313 dib8000_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x39000fa4 dib8000_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x44ac8f98 dib8000_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x5fe7f77a dib8000_pwm_agc_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x61ae9b0f dib8000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x784ada98 dib8000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x8e59ee0a dib8000_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xa9e24dc8 dib8000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb2073335 dib8000_remove_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb5f6ebfd dib8000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xd02c1f95 dib8000_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xe9f5fd84 dib8000_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xed9c9903 dib8000_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xf3165fca dib8000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x70d12096 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x743c49d7 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x7d62458d dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x94ebb2d9 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x9c101766 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x4841a3ab drxd_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0xe789d275 drxd_config_i2c +EXPORT_SYMBOL drivers/media/dvb/frontends/drxk 0xdc22e020 drxk_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ds3000 0xbc949588 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dvb-pll 0x358bc57e dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ec100 0x6236dcf9 ec100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6405 0x2df7a7a2 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6421 0xdb4ad360 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6423 0x1ac11f67 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/it913x-fe 0x6cef8f76 it913x_fe_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/itd1000 0xedb0fb4e itd1000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ix2505v 0xda50470c ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/l64781 0xbc901cba l64781_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt3305 0xa7139958 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt330x 0x6c7f61da lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgs8gxx 0xf4f2e9d4 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0x2e40aff0 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0x6a25586c lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp22 0x6928f10f lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a16 0xcd1adbb6 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a20s 0x716cd1d1 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt312 0x981ed5b6 mt312_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt352 0xa2310bca mt352_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt200x 0xced81e12 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt6000 0x2f1bfc23 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51132 0x529f9b87 or51132_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51211 0xbcb3a549 or51211_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1409 0x6ebe861d s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1411 0x7c00d492 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x420b0341 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x87a7200d s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/s921 0x4e25eabb s921_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/si21xx 0x705ea398 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp8870 0x0f4c239a sp8870_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp887x 0xa8ec8a2f sp887x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb0899 0x765f8079 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6000 0x9d7c1027 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6100 0x8c5f48b6 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0288 0xb540a3db stv0288_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0297 0x6493c2ce stv0297_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0299 0x74e6a741 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0x06c600d9 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0x9c0c98f6 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0900 0x42d229b6 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0x1569d918 stv090x_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0x62da5fb1 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110 0x227d38df stv6110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110x 0xd19a6dd8 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10021 0x2864e820 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10023 0x04b8660b tda10023_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10048 0xe7dfe3e7 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0xa570ce42 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0xc54987cd tda10045_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10071 0xedbf5463 tda10071_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10086 0x5e6d8ab9 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda665x 0xe74fd1be tda665x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8083 0x773c98f6 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8261 0xd0857a78 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda826x 0x3ce96d34 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tua6100 0xd5b001e2 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1820 0x4ef86dce ves1820_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1x93 0x1b2122ba ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10036 0x9864b8e2 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10039 0xd91ef7ac zl10039_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10353 0xdb2d5b9a zl10353_attach +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xefa912bf ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x476a46f2 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x6cad4738 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x24dd7db8 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3fea0478 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4fce3cf7 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x990c2317 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa2c4f07e lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xaa672d00 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd92dc17d lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf1a8a7e2 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x499524c2 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xe0987417 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x01442c71 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x28152882 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x387a4259 bttv_sub_register +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x495e4b0c btcx_calc_skips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xad2fe38b btcx_sort_clips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xb1c59621 btcx_riscmem_alloc +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xc368f8e6 btcx_align +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xcda0ded2 btcx_screen_clips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xe6d8bb32 btcx_riscmem_free +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x17fb0a07 cx18_ext_init +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2d105795 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x3540835d cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x6beb9d93 cx18_release_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x7d1ecdcf cx18_claim_stream +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0x413c4acf cx231xx_register_extension +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0xec3d8695 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/video/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/video/cx2341x 0x43349462 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5b88faf6 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5e7192e7 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/video/cx2341x 0x676ed443 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx2341x 0x704def77 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/video/cx2341x 0x90928a07 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/video/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x9247b72f altera_hw_filt_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xb7d3e7e2 altera_ci_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xe97c2353 altera_hw_filt_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xf4abbad0 altera_pid_feed_control +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x3a91a435 cx25821_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x46c169be cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x471e1cfb cx25821_devlist +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x67cc5b8b cx25821_sram_channels +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x79539937 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x9e6b4df8 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xb5a028ad cx25821_dev_get +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xb91ef42a cx25821_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xbf222246 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xc4e7fef2 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xf1b2098c cx25821_devlist_mutex +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0x5043d807 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0xa21e2a6a vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x13b7bdfa cx88_set_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x178e5e62 cx88_enum_input +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x6f504fe7 cx88_set_freq +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x7aec61b1 cx88_video_mux +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x8b1d7e07 cx88_get_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xac4e53b9 cx88_user_ctrls +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xfba917c7 cx8800_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x0d12fb0d cx8802_buf_queue +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x18de7bf0 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x886533bf cx8802_get_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xd6609d1c cx8802_register_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xdae2d1c2 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xe04bba33 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x1254b1dd cx88_reset +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x21936c69 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x272181d4 cx88_core_irq +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x29cfabfa cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x35e75e67 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x378a9b75 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x3f6709e4 cx88_core_get +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x40896aa9 cx88_core_put +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4800b0af cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4ef53b62 cx88_shutdown +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4f2c604b cx88_wakeup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x64fecc5b cx88_vdev_init +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x67664b5c cx88_risc_stopper +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x6bf025eb cx88_set_scale +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x75e7095c cx88_ir_start +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xa104b9db cx88_get_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xa94cc771 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xae7963b6 cx88_ir_stop +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb2134c2f cx88_sram_channels +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb3c24873 cx88_newstation +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xd7433c19 cx88_free_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xd814f4f5 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xdd0a8d2b cx88_set_stereo +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0x23318174 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0x668e8e97 em28xx_register_extension +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x5586857c gspca_auto_gain_n_exposure +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x5efaed5c gspca_resume +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x7407e491 gspca_frame_add +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x7636cafe gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x937be192 gspca_disconnect +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xba2a2e1f gspca_dev_probe +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xd6f0460b gspca_suspend +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x1ede0115 ivtv_vapi +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x42200935 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x490805e3 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x60c7407a ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x6221cbb5 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x725f6274 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x874223f7 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x9f75b191 ivtv_api +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xa45d2c09 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xafd03707 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xd5e54404 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xeb1831a9 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x04fbf848 saa_dsp_writel +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x0b593de2 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x14dfecc6 saa7134_boards +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x226e420e saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x2855b431 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x33d6281e saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x545fae58 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x5f94c4eb saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x74a94d03 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xc4ca075f saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xc642b785 saa7134_ts_register +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xde10a4d3 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xe73946cc saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/video/soc_camera 0x3203166d soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/video/soc_camera 0x3aafbf5b soc_camera_host_register +EXPORT_SYMBOL drivers/media/video/soc_camera 0x40893058 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/video/soc_camera 0x958e3755 soc_camera_unlock +EXPORT_SYMBOL drivers/media/video/soc_camera 0xf3d2eedc soc_camera_lock +EXPORT_SYMBOL drivers/media/video/soc_camera 0xf954ac27 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x433952ab soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x6951757b soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x85d52182 soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xcb4b96ae soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x3dd74485 tm6000_register_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x7feb40da tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0xf63ea063 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/video/tveeprom 0x10a935fc tveeprom_read +EXPORT_SYMBOL drivers/media/video/tveeprom 0x83e52cf9 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x42c8e001 v4l2_ctrl_next +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x4ed5e0d7 v4l2_chip_match_host +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x50766d69 v4l2_ctrl_query_menu_valid_items +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x6b4e6c36 v4l2_chip_match_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x791ab099 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xc0699aac v4l2_ctrl_check +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xca3b4311 v4l2_chip_ident_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xf052e6db v4l2_ctrl_query_menu +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x0b07adfd v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x710e01c6 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0xfd619cec v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x3b6af07d videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x6938b490 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x83d95a65 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x909def84 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xac9daf11 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xc297ede6 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/video/videobuf2-core 0xdeccb84c vb2_querybuf +EXPORT_SYMBOL drivers/media/video/videodev 0x03ac0751 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x05a012e9 video_usercopy +EXPORT_SYMBOL drivers/media/video/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/video/videodev 0x06388e6f v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x0bed7a2d video_unregister_device +EXPORT_SYMBOL drivers/media/video/videodev 0x0c476d97 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/video/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/video/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/video/videodev 0x17e64e93 video_device_release +EXPORT_SYMBOL drivers/media/video/videodev 0x180f7f48 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x206b57f0 __video_register_device +EXPORT_SYMBOL drivers/media/video/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/video/videodev 0x2c2395e1 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x2c877cb1 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/video/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/video/videodev 0x3fc42f2b v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x4729e7d4 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x48c44109 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/video/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/video/videodev 0x5804752e v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/video/videodev 0x5cf4f796 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0x5e824c43 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/video/videodev 0x5ebefe4b v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/video/videodev 0x6204754c v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/video/videodev 0x6247454f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/video/videodev 0x6a6a8134 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x71478639 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x7418f4d2 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/video/videodev 0x782e38db video_devdata +EXPORT_SYMBOL drivers/media/video/videodev 0x78a95de3 video_device_release_empty +EXPORT_SYMBOL drivers/media/video/videodev 0x79c77cf3 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/video/videodev 0x8dc01db0 v4l2_ctrl_handler_init +EXPORT_SYMBOL drivers/media/video/videodev 0x926ed670 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x950d2e17 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0x98eb373b v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0xa69a7a8e v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xa81c9f47 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xb03887b3 v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xb5dcdf1c v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/video/videodev 0xb73c7ef7 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/video/videodev 0xc1482aa0 v4l2_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0xc212ac95 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xc6023a6d v4l2_ctrl_del_event +EXPORT_SYMBOL drivers/media/video/videodev 0xc829b6b6 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/video/videodev 0xcc7a06b5 video_device_alloc +EXPORT_SYMBOL drivers/media/video/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/video/videodev 0xcddc7bff v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/video/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/video/videodev 0xe3719f5c v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/video/videodev 0xeb433df8 video_ioctl2 +EXPORT_SYMBOL drivers/media/video/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/video/videodev 0xfa52525d v4l2_ctrl_add_event +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x0144d646 videocodec_unregister +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x53b2d97e videocodec_detach +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x8a3bb2bf videocodec_attach +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0xc395de5a videocodec_register +EXPORT_SYMBOL drivers/memstick/core/memstick 0x09c20e96 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x15abd85a memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1e4f0512 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1ed71840 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x28f16ef0 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x31978053 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3d0fdbee memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x711c3eb7 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x90810e8a memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb8b25d12 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xba0cd1d4 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd0ea7be4 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd67cd122 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x075a862e mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0abf3562 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d858071 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x158f4352 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1a89b2a0 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ad0fa4e mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x202d78b7 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x20ded319 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x27b62df6 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x30a2c69e mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x562507e8 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x574f70a2 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x596cd959 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e1fbe61 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71639235 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8322daba mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x868aeba9 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8b2c8fe0 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb00a8d02 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcc112fdc mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd33f114f mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd54ac3bd mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd72d40f8 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdaf4fefb mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdc202817 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe2b87c97 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb36faca mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xed537d2c mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfe51c8c5 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x002d36eb mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x033e615e mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x14ddef69 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x18a9aa94 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1fa4bb5d mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x231fdf81 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57131fc6 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5a914516 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x60a8dc5b mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a204dd8 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x71d06b35 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x75acef56 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7f349062 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8591c71b mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8915951e mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a53afbe mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x96d5746f mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa87746da mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaa6a24fe mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xab158f51 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xacd98456 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbbd5e03e mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbef4a5ba mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc0a8d172 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc6e568fa mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xec652c89 mptscsih_proc_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf06130e6 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x0a1cfad4 i2o_iop_find_device +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x0eedf659 i2o_device_claim +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x11ecd904 i2o_parm_issue +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x171d9895 i2o_event_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x1ff93b2a i2o_parm_table_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x2a843bef i2o_dump_message +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x3616d2df i2o_cntxt_list_get_ptr +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x38e399bf i2o_cntxt_list_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x4680f1f0 i2o_parm_field_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x4af9b5bf i2o_msg_get_wait +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x514e160b i2o_cntxt_list_remove +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x5666bbb3 i2o_driver_notify_controller_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x64287ded i2o_device_claim_release +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x85e67776 i2o_driver_notify_controller_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x8679bc4b i2o_driver_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x8e37c39c i2o_msg_post_wait_mem +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x982fd946 i2o_find_iop +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb4c00dcf i2o_controllers +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb74d862f i2o_status_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xd8f2797f i2o_driver_notify_device_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xdd7ae19f i2o_driver_notify_device_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xe56e7c91 i2o_exec_lct_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xed9d04d1 i2o_driver_unregister +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xfec03b16 i2o_cntxt_list_add +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x0305d9ab pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x9d9818f2 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0a0f0fa1 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19f1f7a8 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x304d2b09 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x648f3e82 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c8289a3 mc13xxx_irq_request_nounmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x81e0f888 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x908760bc mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9bc42b70 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa83c26ee mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad06449f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb3dae053 mc13xxx_irq_ack +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc60a9247 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdc5799c mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/tps6105x 0x94ea0913 tps6105x_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0x964f5a2b tps6105x_mask_and_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0xe5b0961a tps6105x_get +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x705e58b4 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xf0663f7e ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x918d2319 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x5b5811b2 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xad4f92b4 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x7aea6af2 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xa04a736f ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x4618eab3 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5cccfab9 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x6e6df4d4 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7ec19729 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x81dfa185 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x97c0c325 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa551c543 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xafded938 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xb4cb85ed tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xcfb33d0c tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xd75f5ade tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xf733fd62 tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xd9b41ec3 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x589f6233 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x78b401a5 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xfd133b19 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x12026a0c do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1fc65af7 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x69e89c41 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6e952540 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x3e1aacaf mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x37e14cf7 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x4c9c4c9c simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x5cfbc1e4 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x7f026fde mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/nand 0x18009de1 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x1f1cfad5 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x551d4ad1 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x6779157d nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb488ac26 nand_default_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb88ad8e6 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xfd3bd77c nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x10021e60 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x93042bc5 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xc6a29d2c nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x56370bd0 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x5a43b35a nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x836bdb72 nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1891eda0 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x2028e8ea onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x7a65f5a8 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xbc773a54 flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x0a9192ad arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3a5ee53d arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x44a59e51 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x56e69870 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x590b790c alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x601f334d arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x774c9bac arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x99ed6ff8 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc727aa11 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe42e799c arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1ee4dcc1 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x32780a07 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa30bb54c com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0b21d463 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2e69c6c4 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x35beac93 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4a38d192 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6a0374dd ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x891a8525 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x91103afe ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa603b02b ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xcc86bddb ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xff9bc714 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2 0x511884d9 bnx2_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xc9c9d85c bnx2x_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x6fd8222d cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x11cb6c20 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x33a24b50 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x390de8f3 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x44cd96f6 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d6e62a4 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67a301e7 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x760f9532 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8803112c cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x89147e64 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc41a85c9 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc4a45f9c cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc5e4c273 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd952270a t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3137500 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf4d6127c cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf538fb0e dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10c963dd cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13436f94 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19145063 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ada05d0 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2113f057 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x33681ade cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x38823260 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41ecc1b7 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47cd9bf8 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x59da8554 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x60bb0746 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x618da1b3 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x844e2c36 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x96f3194e cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0efc04a cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb5e7a396 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfae66a38 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dea143a mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eb9f45f mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aa77248 mlx4_release_eq +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0bf90c07 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6bb67bcc hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x89a085a8 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa0cea0df hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xf0ee2221 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0aeef8b0 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x376251e9 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x41969ab4 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6479b4ff sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x66cefa70 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x687e18ac sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7752240f sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8173955a irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8198abe6 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb85fc911 sirdev_raw_write +EXPORT_SYMBOL drivers/net/mdio 0x0f934475 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xb34a7575 mdio45_ethtool_spauseparam_an +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x7b2a6ebc alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xc5abe105 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x2ccc3cad pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x70ba2abf register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xcb7f18d1 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x5ec6960d sungem_phy_probe +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x0d9fe47e tms380tr_close +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x1a19bfdc tmsdev_init +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x273b5f32 tmsdev_term +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x71ac3c31 tms380tr_netdev_ops +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xbcd23793 tms380tr_interrupt +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xd2328794 tms380tr_wait +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xe95434c0 tms380tr_open +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x38da4725 cycx_intr +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x62be23ea cycx_setup +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x66a4c4e6 cycx_down +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x968458a6 cycx_peek +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xb6f383de cycx_poke +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xfe7cd576 cycx_exec +EXPORT_SYMBOL drivers/net/wan/hdlc 0x146160dd alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x329a97a7 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x548ba78e hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5fb5b630 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x647689da hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9b709853 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc6f36cdf detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd1f07049 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf2052810 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf5ce7c00 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfbb30d11 hdlc_close +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xc4e51715 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x5f453615 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xb88c6162 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xd44475d9 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e2481d5 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x513e94c4 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x623a053b ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x72c7b2c8 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x75a9b2e1 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8d1fc07b ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x900d9db9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9144d922 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1a9f65b ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbc4d9a09 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xed5e7de1 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfda5a3d0 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0f821691 ath9k_cmn_get_curchannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x19ae26c3 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40d3a2e4 ath9k_cmn_update_ichannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x53618927 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x95eff5ce ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf59eadf3 ath9k_cmn_padpos +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05162448 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08d7e570 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0aefe8b9 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c851104 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cfe9866 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1940ebf7 ath9k_hw_htc_resetinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f020aec ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2441299c ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x252df717 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x258d7ad6 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28b2f559 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28dd6381 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bdc7bc5 ath9k_hw_getdefantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x325605c6 ath9k_hw_gettxintrtxqs +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32b5a7e4 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37cae45d ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d1b2c3b ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48694a95 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48759905 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e066d36 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4eea8ebe ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f0557e6 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51eb2635 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x561958fb ath9k_hw_proc_mib_event +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58f82083 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b4a1616 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cac2a4d ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5dc186bf ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6144f24c ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x620ae583 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x622eec26 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x647cfc4b ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69e90445 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a151564 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6aa4bc15 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bae3eec ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cd55f4a ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76eb0b9e ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7822855b ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x791fa97d ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d8388c8 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f12640f ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x860e6be2 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8728e74d ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c18fded ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fa7667a ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98cd2c6e ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b4fb1ce ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c49deda ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c4dbfda ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d034bbf ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d123c1d ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0ab1f63 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1d66b36 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa550ba88 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa83b8124 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaaec5139 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad86a587 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb321c95b ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb67e0579 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6b0ffb9 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb937176b ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc04fcda ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe83ca1e ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf39f7e5 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca709eab ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaa56c9f ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaefd014 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcc8f761a ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd872fc6 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce1700ba ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd021ea24 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0ce73dc ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1bc1c38 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd3c5d74a ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5e37538 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdab2b3d9 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe18399fd ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3d79712 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe43cf8fb ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe445f086 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7556200 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0581d20 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf352fdfd ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6cd7b47 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb77976c ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfcfb711e ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd6ca654 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/atmel 0x3f724f16 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x7926fef5 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xcb10acd3 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x5713f83d brcmf_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x7fc10a0d brcmf_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2af7241c brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x31226882 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5ce869bc brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x74b7a9a4 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x80c8d3f6 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8b3ac66c brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9dcb7fa5 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa9af6cf3 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb0a7fe6f brcmu_pktfrombuf +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc2f2c8b4 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd031e8ab brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xddc92541 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf09c1ff7 brcmu_pkttotlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfcb713e5 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0175f074 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0509fd89 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x194be6a8 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2aa67ebb hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x30283d8c hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x34e16179 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x36594823 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3c5c6e36 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x48d46e09 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x57a4af9f hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7acb9568 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7fa48556 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x869541c7 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x88e4dfe8 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x967b3f90 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa38a2dff hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb1b26be7 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb9561e07 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbf08e712 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcfb2873d hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd40f1f8d hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xedcc4936 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf298be80 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf500a4f8 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfb65c18d hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x01e8353d libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0a81fce1 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1d2d260f libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1dd9757f libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x25d4d766 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3a18c943 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x42e8846a libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x53d9bf7f libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7a2078e5 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x81cc132d libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x85046138 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x90fa40d9 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa86256fd libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa8f5c640 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb8ec7fe7 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc483df90 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xca854498 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf8752a57 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf9130339 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfd2d224d libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfd39b1c6 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x010e8973 iwl_legacy_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0806d98a iwl_legacy_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0b35a420 iwl_legacy_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0e972505 iwl_legacy_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x126aa52b iwl_legacy_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1b43a863 iwl_legacy_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1c98b520 iwl_legacy_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x21045db5 iwl_legacy_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x21ec26ba iwl_legacy_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x246f9d78 iwl_legacy_rx_reply_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x26391dbe iwl_legacy_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x266f7609 iwl_legacy_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x26b1d9bc iwl_legacy_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x26cc76ba iwl_legacy_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x27573136 iwl_legacy_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2b9445a7 iwl_legacy_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2d327f49 iwl_legacy_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3004a53f iwl_legacy_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x34011dd8 iwl_legacy_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x39cc6ac1 iwl_legacy_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3e417845 iwl_legacy_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3e77060f iwl_legacy_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3e9aebaf iwl_legacy_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x40b6219a iwl_legacy_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x45262539 iwl_legacy_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4bbfc18f iwl_legacy_get_free_ucode_key_index +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x53603b57 iwl_legacy_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x56e49b87 iwl_legacy_alloc_all +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x57d43df5 iwl_legacy_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x57f5de96 iwl_legacy_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5aa07c56 iwl_legacy_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5cea2089 iwl_legacy_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5da26058 iwl_legacy_rx_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5e8b5989 iwl_legacy_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x60b1bf8c iwl_legacy_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6244dd16 iwl_legacy_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x656f67e0 iwlegacy_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6b2cf758 iwl_legacy_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6c549d10 iwl_legacy_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6e607c12 iwl_legacy_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6e9f1bd5 iwl_legacy_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6f48d0fd iwl_legacy_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6f8bc13d iwl_legacy_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7b4eb5cc iwl_legacy_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7c193825 iwl_legacy_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7f15c7de iwl_legacy_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7f38d574 iwl_legacy_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x851a1a88 iwl_legacy_pci_resume +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x86a2f031 iwl_legacy_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8a15a592 iwl_legacy_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x947e8c9a iwl_legacy_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x94bee8ba iwl_legacy_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x99dd95d2 iwl_legacy_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9d645b34 iwl_legacy_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9e53e161 iwl_legacy_send_statistics_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa39643da iwl_legacy_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa618c0c2 iwl_legacy_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xabd56fe2 iwl_legacy_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xabe48768 iwl_legacy_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xae019207 iwlegacy_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb5d6bfe0 iwl_legacy_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb8d36d88 iwl_legacy_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xba25d538 iwl_legacy_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xbbebd1ba iwl_legacy_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xbfd72d94 iwl_legacy_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc27c0af6 iwl_legacy_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc3dfe8d5 iwl_legacy_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc7065522 iwl_legacy_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc7d14fcb iwl_legacy_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd0f8c54f iwl_legacy_rx_pm_debug_statistics_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd4dd232e iwl_legacy_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd4e5e78e iwl_legacy_rx_spectrum_measure_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd56f1e91 iwl_legacy_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd6805ec9 iwl_legacy_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd74ca5a8 iwl_legacy_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd7feeb2a iwl_legacy_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd8e247b7 iwl_legacy_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd972999c iwl_legacy_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd9806123 iwl_legacy_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xda1f3fed iwl_legacy_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xde5217aa iwl_legacy_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xde74889d iwl_legacy_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xdf0e22b0 iwl_legacy_rx_pm_sleep_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe35ad11f iwl_legacy_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe666de47 iwl_legacy_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe9af3c1f iwl_legacy_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe9b02920 iwl_legacy_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xeeb3dab4 iwl_legacy_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xef6a9bd9 iwl_legacy_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf04bc3fa iwl_legacy_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf7eda530 iwl_legacy_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfb5eb907 iwl_legacy_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfd79470a iwl_legacy_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x07849596 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1a260580 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x373f37dd __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x482aecd3 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x58e9338a __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8daa79ba __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xbb7e5c47 __tracepoint_iwlwifi_dev_rx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xbff320f5 __tracepoint_iwlwifi_dev_tx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xf6765781 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x05d50ff5 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1bdc23c5 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2ce092a5 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2dec53d8 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x70492356 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9c5c91ff orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa1875048 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa36e9252 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa901c042 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb26a513b orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb90492c0 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb9ba49e3 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xba61f2bd orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc1c28a8c alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdb0cbd65 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf016171c orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfff7eae6 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x13cfd488 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x203ab0af rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2578418d rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x28c6c72f rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2925c9cf _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2a71d2e9 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2bd72f12 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x329f7cb8 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3a130f2b _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3d66b77e rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x42b66980 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x482579f3 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x4d4a9aca rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5429966a rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5fa106ce rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x741fb360 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x781d66c6 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7fe278bd rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x80341f17 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x805e5e90 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x8d0ce077 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x94a68555 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x98fba2d3 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa753e155 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xaa708904 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xadfc9cc8 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb0ced965 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb79ad631 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xba0b8446 rtl92c_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc00b7379 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc14cc6cb rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc3811c6c _rtl92c_phy_dbm_to_txpwr_Idx +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc530175c rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xdc6135b4 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xdc650b94 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xde981e25 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe424967a rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xedb16d86 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xef22d7df rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf19624c5 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf5ee77af rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xfb71d678 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x0abfdaa5 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x12139333 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x15713092 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x1826823a rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x29ba7e10 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2b50352e rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x5f02fde1 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x68a23fd9 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x798450f0 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x7d95de24 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x8212e00a rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x83b683f2 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x895da07c rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x8ac555e1 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x95e1fa1d rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x989ee57b rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xac007d94 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xb1a51c7b rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xb412d9f0 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xbd6c6f77 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xcbba8502 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd508e540 rtl_pci_resume +EXPORT_SYMBOL drivers/parport/parport 0x02d53fbc parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x07bd0dc3 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x080b9f16 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x0b3ceb8e parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x1530cd05 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x1d0cf9d3 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x1d61b47a parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x34347f48 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x3722bdb7 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4150f802 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x42e7ccd6 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x4cc8fda4 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x50608450 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x51bd08f6 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x55196b30 parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6aab75a3 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x792d7a34 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x845a5205 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x88d7a06b parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x8f6ca7aa parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x94980f00 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xa87e842c parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xaf79fd17 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xb1345500 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xb580ce4e parport_release +EXPORT_SYMBOL drivers/parport/parport 0xcb5e990c parport_read +EXPORT_SYMBOL drivers/parport/parport 0xce7eca50 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xd157139c parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xeb03b7a6 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xffdfd9a3 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport_pc 0xbfcd2a98 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xd3db2dd4 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0944efb2 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1c6100ad pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2ef57fbe pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3524073f pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x491e7a7f pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4db0473f pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6080e378 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6808b199 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6ccca90d pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7044d9d5 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x82973f99 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8efdf97c pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb6668fba pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbca73267 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbd8a66f8 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc59035cf pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe66e2b51 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf1d9b69c pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf92e1b48 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x13535799 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x19c1c5bc pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1d5be9e4 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2992362f pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3000036b pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x40d25ad5 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x47073617 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x523cf17f pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6c6fc300 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x92bf2ff7 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9494a30e pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x1f813824 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x2e58b11f pccard_static_ops +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x47dbea4c pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x56929133 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xf03c1c92 pps_event +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0d34f596 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ad4c59a fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2cbc6161 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3c981a93 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x467f5f3e fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4bf1254b fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7ae4870d fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaf86f005 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb41a750f fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01848f6e fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ab60eb4 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c5d52b4 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x10119756 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x156184a2 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17e5e961 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18295c96 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1dc076c4 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x253a8c5a libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31be8f52 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x379d5a46 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4024eb48 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42875469 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44490aec fc_change_queue_depth +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f11ec42 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f9a89db fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x568e10df fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x577dfafe fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x59a0c52a fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b13460c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x628e147f fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64bc649d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6eed772f fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74ecb3c4 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75cb68b5 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8272d479 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85b715c8 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x89a059b7 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8af243d2 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b822070 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c20bb56 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d269ce2 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9403b438 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x961c1620 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa25cbaac fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa29309c3 fc_change_queue_type +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa64bc08f fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb193396a fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb637d550 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb68bf09c fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb703985d fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcecfd240 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd965e15c fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdae57f8d fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe81aa68d fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeb139bc7 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf82f31bc fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf89edcb2 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8b1e84b fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf8c45033 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xf6b75dc9 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x18f44749 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f80d95c osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3c67db8b osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x48d8f385 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5053828f osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x53c6ddca osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5641357b osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x580ae376 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x59a6dbe9 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5ea56747 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5feeb616 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x61f7bc7f osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63fc061a osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6a6f3b90 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6af9b429 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x74e1a538 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x78e61fa9 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7b547bd9 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7d708760 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7ff401b9 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x87891670 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x887e7872 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8b6b95f5 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d06938c osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x93a6b69a osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x950eb726 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x95ee95dc osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x96fd5940 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa9687d2d osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb0a3f8be osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc2c569d9 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc468059e osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd8375001 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe1033918 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe5686bce osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfcba6109 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0b4f5a9a osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2b7c9293 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x39263d08 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x397beac8 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7009e759 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa913b663 osduld_put_device +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x377e65b8 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x387fbddc qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x57f32aeb qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x6faa1f2c qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa6372777 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf77f40cb qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/raid_class 0x6e034121 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xe0ca1bfe raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xe7bf2345 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1967f668 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x22440a96 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x44dda6a1 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4ebcb8e7 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x509b2244 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x51cf1e5b fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5c1c6b87 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6647289c fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6b2bbb1f scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x72b13d2d scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x732f4cdb fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcbd4ba32 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd71e9350 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x10853f8a sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x130cc87d sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1a2c28d0 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e3d2ac7 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x28889321 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x34d38b77 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3cd03a2b sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41b841df sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4262f3d3 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x43c03c83 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x512cfec6 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x614203ac sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x676be9bd sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b524f09 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x855581c1 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9b1e98b8 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa5b29cd1 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab968bba sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xacdad4d5 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc8f16bc6 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf55df84 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7cffff8 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdff083ed sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe16457d6 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfa8093f2 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xffe0885d sas_expander_alloc +EXPORT_SYMBOL drivers/ssb/ssb 0x07698ba7 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x0f28d576 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x18bcc962 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x3dab3c7d ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x3dc9c20d ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x5dfc4c6d ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x605ad780 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x70a5bedc ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x89090dee ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x8b761ad2 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xa22b4340 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xb488997b ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc0777410 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc7ca37ac ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xd2ecf9b1 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd76eb89d ssb_bus_pcibus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xeaa09f22 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xee2918bc ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xf19db6ae ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xf642e186 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xf8317ade ssb_dma_translation +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x0d4f3829 comedi_buf_put +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x117c86ac comedi_buf_memcpy_from +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x12dfd930 comedi_driver_unregister +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x16f67986 comedi_buf_write_alloc +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x1b82d9fc comedi_buf_read_free +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x37a9dad5 comedi_buf_get +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x41be3c78 comedi_buf_read_n_available +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x44456ff9 comedi_check_chanlist +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x7ecd6df2 comedi_buf_write_free +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x81442404 comedi_buf_read_alloc +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x8536bf35 comedi_driver_register +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xa148a9ee comedi_buf_memcpy_to +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xb077d48e comedi_get_subdevice_runflags +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xded98330 comedi_event +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xf3a24c9b comedi_error +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x23ee61d7 subdev_8255_cleanup +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x808d90ba subdev_8255_init +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0xe5017059 subdev_8255_init_irq +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0xfedae288 subdev_8255_interrupt +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0x3cd07792 cfc_handle_events +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0x3edd70cd cfc_write_array_to_buffer +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0x433bef72 cfc_read_array_from_buffer +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x02cd87f2 mite_sync_input_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x0a015c2e mite_unsetup +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x146a58d0 mite_sync_output_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x24417ea5 mite_dma_arm +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x3f190321 mite_dma_tcr +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x45028021 mite_devices +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x5a1e7626 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x6dbfeaab mite_bytes_read_from_memory_lb +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x6ec8f6c7 mite_get_status +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x71ffd6f8 mite_dma_disarm +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x7db73ec6 mite_bytes_in_transit +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x8f5b747b mite_bytes_written_to_memory_ub +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xa36b5a9d mite_setup +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xa54a60f7 mite_done +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xaea20fde mite_buf_change +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xb3e586fa mite_request_channel_in_range +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xb8fae8f6 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xc2574ef2 mite_release_channel +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xcac2bb39 mite_prep_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xeb235697 mite_setup2 +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xfb3ba025 mite_list_devices +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0x2e022e83 subdev_700_init +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0xb330913d subdev_700_interrupt +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0xcf3127cc subdev_700_init_irq +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0xf8855e8f subdev_700_cleanup +EXPORT_SYMBOL drivers/staging/comedi/drivers/pcm_common 0xffb6cde4 comedi_pcm_cmdtest +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x00d55c80 comedi_open +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x021b6f9c comedi_get_n_channels +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x473b6899 comedi_close +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x574dea25 comedi_dio_bitfield +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x9d6090e6 comedi_find_subdevice_by_type +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xde6c1355 comedi_dio_config +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x0c24c653 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x127e39d9 adt7316_disable +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x66151db5 adt7316_remove +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xbf181f1c adt7316_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x003d0948 iio_buffer_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x0cef2319 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x127d1fea iio_trigger_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x15a30aa2 iio_buffer_write_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x25a5c659 iio_buffer_read_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x316f9abc iio_trigger_poll_chained +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x393ded74 iio_allocate_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4263ab6b iio_free_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x5303a159 iio_bus_type +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x5c3052a0 iio_read_const_attr +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x9189b056 iio_push_event +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x95aeba98 iio_trigger_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x9b9220d2 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x9c734ca8 iio_buffer_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xa4ae3c29 iio_trigger_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xa5e6b537 iio_buffer_init +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xa703f49e iio_trigger_notify_done +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb72a5ff0 iio_buffer_read_bytes_per_datum +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb92b4b52 iio_sw_buffer_preenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xc8ff8e4a iio_device_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xca310b4b iio_device_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xce28e1c3 iio_buffer_show_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd966bdc7 iio_buffer_store_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdc679ec1 iio_allocate_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xef8ffd90 iio_free_device +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x75247c6a kfifo_access_funcs +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xb5539932 iio_kfifo_allocate +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xcce2bef5 iio_kfifo_free +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x6e710e85 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe26eccb5 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x3e261c95 iio_sw_rb_allocate +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x47c7d065 ring_sw_access_funcs +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0xcda2a1ea iio_sw_rb_free +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x1f6468e6 cxd2099_attach +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x0e719622 go7007_read_addr +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x0e90f0b8 go7007_read_interrupt +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x2dc24ca0 go7007_alloc +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x5c9fba98 go7007_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x68086de4 go7007_parse_video_stream +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xa19e23ff go7007_boot_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xb83ce7d8 go7007_snd_init +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xdff5b8f9 go7007_snd_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xfde4507f go7007_register_encoder +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x018b1d19 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x026a1b91 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x04e12bde ieee80211_send_probe_requests_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06eaacb9 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0af9b2b1 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c068c67 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ea6038e notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15bb1996 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x192b2171 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ae526d1 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x215116a6 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26897ef2 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b27d75d ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3066641f HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x34e7d1a2 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38584613 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42696dd1 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47ad2c22 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a3694c2 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a7b0217 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b66d64f ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4c5502c9 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5078b26a DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5150a348 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x533abd65 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55a5cbe9 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57ec7b73 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60993878 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60e2e8b1 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x611c5259 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6548e8e7 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69ebeeb7 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c6028ac Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x742f351e ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f660dcf SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f9e23bd ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8ac90894 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96370a8c ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa48a3276 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa80ca113 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8ec81c5 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb34eab11 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9f9795e ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc5a005a ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc217fb13 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc817d0c8 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf7819de ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddae739f ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdf7e9f5c ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe09c7e73 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xec067017 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf4949d94 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5e5f0f0 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf72a38c4 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf750d84b ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfb893e94 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/vme/vme 0x00d7e722 vme_lm_count +EXPORT_SYMBOL drivers/staging/vme/vme 0x072f901c vme_master_rmw +EXPORT_SYMBOL drivers/staging/vme/vme 0x0e10859d vme_lm_get +EXPORT_SYMBOL drivers/staging/vme/vme 0x0ec5babe vme_dma_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x3bca9b06 vme_unregister_bridge +EXPORT_SYMBOL drivers/staging/vme/vme 0x3ed0d7b2 vme_register_driver +EXPORT_SYMBOL drivers/staging/vme/vme 0x3f68d4cf vme_lm_set +EXPORT_SYMBOL drivers/staging/vme/vme 0x418d0b0c vme_unregister_driver +EXPORT_SYMBOL drivers/staging/vme/vme 0x43e2f154 vme_master_read +EXPORT_SYMBOL drivers/staging/vme/vme 0x48b99a13 vme_lm_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x59c6facc vme_register_bridge +EXPORT_SYMBOL drivers/staging/vme/vme 0x6666140f vme_dma_pci_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0x69bf51ca vme_slave_request +EXPORT_SYMBOL drivers/staging/vme/vme 0x7563de88 vme_irq_request +EXPORT_SYMBOL drivers/staging/vme/vme 0x76bab4d4 vme_master_set +EXPORT_SYMBOL drivers/staging/vme/vme 0x7754663b vme_alloc_consistent +EXPORT_SYMBOL drivers/staging/vme/vme 0x7797a741 vme_dma_vme_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0x7cf35220 vme_master_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x825ba85a vme_irq_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x8fdb72be vme_dma_list_add +EXPORT_SYMBOL drivers/staging/vme/vme 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL drivers/staging/vme/vme 0x95bb7102 vme_slot_get +EXPORT_SYMBOL drivers/staging/vme/vme 0x960ececb vme_dma_request +EXPORT_SYMBOL drivers/staging/vme/vme 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL drivers/staging/vme/vme 0x9d279035 vme_master_write +EXPORT_SYMBOL drivers/staging/vme/vme 0x9e4c65b7 vme_irq_generate +EXPORT_SYMBOL drivers/staging/vme/vme 0xa09d045f vme_get_size +EXPORT_SYMBOL drivers/staging/vme/vme 0xae53b938 vme_dma_list_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xc8352002 vme_dma_pattern_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0xcc5b0af0 vme_slave_set +EXPORT_SYMBOL drivers/staging/vme/vme 0xcc70a3b2 vme_irq_handler +EXPORT_SYMBOL drivers/staging/vme/vme 0xd2f155b9 vme_dma_list_exec +EXPORT_SYMBOL drivers/staging/vme/vme 0xd9a6c20f vme_lm_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xddfc1dd8 vme_bus_type +EXPORT_SYMBOL drivers/staging/vme/vme 0xdff905e5 vme_slave_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xe60cbb2f vme_master_get +EXPORT_SYMBOL drivers/staging/vme/vme 0xe61b1e0b vme_slave_get +EXPORT_SYMBOL drivers/staging/vme/vme 0xeb6ead4d vme_new_dma_list +EXPORT_SYMBOL drivers/staging/vme/vme 0xeccbeafc vme_dma_free_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0xf1b1bb11 vme_free_consistent +EXPORT_SYMBOL drivers/staging/vme/vme 0xfa6c98ad vme_master_request +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0524f523 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b82eca3 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e761c69 sas_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x11d21c40 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x1cc3903b fc_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x204f0980 core_tpg_add_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x295addc7 sas_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c44a42a transport_add_device_to_core_hba +EXPORT_SYMBOL drivers/target/target_core_mod 0x3161272a transport_complete_sync_cache +EXPORT_SYMBOL drivers/target/target_core_mod 0x396cdbc7 iscsi_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cfb4db2 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fde2b93 transport_generic_handle_cdb_map +EXPORT_SYMBOL drivers/target/target_core_mod 0x436a5477 target_fabric_configfs_init +EXPORT_SYMBOL drivers/target/target_core_mod 0x5cafe470 transport_generic_map_mem_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x60389885 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x65dc094e transport_init_queue_obj +EXPORT_SYMBOL drivers/target/target_core_mod 0x67867b43 transport_generic_process_write +EXPORT_SYMBOL drivers/target/target_core_mod 0x693d14de core_tpg_clear_object_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a9416f8 target_get_task_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d9e0b77 transport_complete_task +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f586990 iscsi_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x76e64794 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7df6afbc core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e6ec186 target_fabric_configfs_free +EXPORT_SYMBOL drivers/target/target_core_mod 0x7febf95e transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8bed5ffc core_tpg_del_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fe3d30c transport_subsystem_release +EXPORT_SYMBOL drivers/target/target_core_mod 0x944eabc0 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x97732629 target_fabric_configfs_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c2412e6 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa258874d transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3faf3a2 iscsi_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8fe7848 sas_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9a5bee1 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xab8228b0 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf14d2ee transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb10cd217 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2b62e7a target_splice_sess_cmd_list +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9b1562d target_fabric_configfs_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9fcdb11 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbb73915 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2ebedeb __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8b3b0da iscsi_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xca32da3f target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xcdfe91b1 sas_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xcfd66a8d transport_generic_handle_data +EXPORT_SYMBOL drivers/target/target_core_mod 0xd51a4e8e transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe06eebb3 fc_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xe121efb3 transport_do_task_sg_chain +EXPORT_SYMBOL drivers/target/target_core_mod 0xe38b9fc7 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8cf7ee7 transport_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xea207eb2 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xebb46dd2 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xef149634 fc_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xef84af99 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf11e960c transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2dfafcb transport_subsystem_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5b9f091 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5bef3c7 fc_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xf8f7766b transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xff3f9f3d transport_generic_allocate_tasks +EXPORT_SYMBOL drivers/telephony/ixj 0x64ac7749 ixj_pcmcia_probe +EXPORT_SYMBOL drivers/telephony/phonedev 0x06d61b5e phone_register_device +EXPORT_SYMBOL drivers/telephony/phonedev 0x69f58e35 phone_unregister_device +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x3aaad921 sl811h_driver +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xa64a4cea usb_nop_xceiv_unregister +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xd0e43207 usb_nop_xceiv_register +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x02245e7f usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x25bc0582 usb_wwan_startup +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2aabdb8f usb_wwan_release +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x333cdee9 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x488037f1 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x56f3a838 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x73d501c2 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8ca0bd8b usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x95747080 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x973a5885 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa2283069 usb_wwan_disconnect +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa8ad0b4b usb_wwan_set_termios +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbc6a799d usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe1f5ebb3 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xefe989d0 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x73b64722 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x86b62912 usb_serial_resume +EXPORT_SYMBOL drivers/video/backlight/generic_bl 0x366d19ef genericbl_limit_intensity +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1cb845bc lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7e01d40d lcd_device_register +EXPORT_SYMBOL drivers/video/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/cyber2000fb 0x1730d04b cyber2000fb_attach +EXPORT_SYMBOL drivers/video/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/display/display 0x30087aaa display_device_unregister +EXPORT_SYMBOL drivers/video/display/display 0x31b2c06d display_device_register +EXPORT_SYMBOL drivers/video/macmodes 0x08ed0b62 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/macmodes 0x8ef2bf90 mac_find_mode +EXPORT_SYMBOL drivers/video/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x5f3783e3 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x98c5a4dc matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0xefd2a704 g450_mnp2f +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x594b04d6 DAC1064_global_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x59764f1c DAC1064_global_restore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x7567a364 matrox_mystique +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xb6373f94 matrox_G100 +EXPORT_SYMBOL drivers/video/matrox/matroxfb_Ti3026 0x1d9207d7 matrox_millennium +EXPORT_SYMBOL drivers/video/matrox/matroxfb_accel 0x08e028d7 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x00d65f17 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x31d7a34f matroxfb_register_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x7a6d292e matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x86e48bea matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0xe86a3bc6 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0xf6e31939 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x051eaa64 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x08597f81 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x2740dcbd matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x4512f383 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xa5ce891c matroxfb_read_pins +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xabd8e427 matroxfb_var2my +EXPORT_SYMBOL drivers/video/mb862xx/mb862xxfb 0x80aac9bc mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/output 0xc557d9c7 video_output_unregister +EXPORT_SYMBOL drivers/video/output 0xdf431cb7 video_output_register +EXPORT_SYMBOL drivers/video/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/svgalib 0x0352dc2d svga_get_tilemax +EXPORT_SYMBOL drivers/video/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/svgalib 0x1b95c56a svga_check_timings +EXPORT_SYMBOL drivers/video/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/svgalib 0x37e2646f svga_tilecursor +EXPORT_SYMBOL drivers/video/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/svgalib 0x549b03a1 svga_set_timings +EXPORT_SYMBOL drivers/video/svgalib 0x631b1406 svga_get_caps +EXPORT_SYMBOL drivers/video/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/svgalib 0x8b591fe1 svga_tileblit +EXPORT_SYMBOL drivers/video/svgalib 0x8bd6b245 svga_tilecopy +EXPORT_SYMBOL drivers/video/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/svgalib 0xd98beb71 svga_settile +EXPORT_SYMBOL drivers/video/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/svgalib 0xec83c473 svga_match_format +EXPORT_SYMBOL drivers/video/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/svgalib 0xf7069347 svga_tilefill +EXPORT_SYMBOL drivers/video/syscopyarea 0xf42ecf36 sys_copyarea +EXPORT_SYMBOL drivers/video/sysfillrect 0xe3372a15 sys_fillrect +EXPORT_SYMBOL drivers/video/sysimgblt 0xa656585e sys_imageblit +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0xd9869e71 w1_bq27000_read +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0xf789e4a5 w1_bq27000_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x551751c3 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x7dbe1080 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x92644efa w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc095bda5 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x1e9bb172 w1_ds2780_io_nolock +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x50a92e4c w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x53d45b53 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/wire 0x23a0f058 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x5999844c w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x61584988 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xfc50744f w1_add_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x672c9d44 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa8d6daac iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xd0efe320 iTCO_vendor_pre_stop +EXPORT_SYMBOL fs/configfs/configfs 0x00f2bbb6 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x0e2abb74 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x1092da44 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x4484f888 config_item_init +EXPORT_SYMBOL fs/configfs/configfs 0x63a37559 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x87e2e32d config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x9f272899 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xb5654a46 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xd72a1323 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xd786dd53 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xe155c534 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xf449dc1f config_item_set_name +EXPORT_SYMBOL fs/exofs/libore 0x011500ad ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x16d3f291 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x46564f18 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x7c16e365 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x858bab4a ore_write +EXPORT_SYMBOL fs/exofs/libore 0x9790ec38 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xbee5f379 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xc17274e4 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xcc5c19a8 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xea67fa9a extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xfa3ea836 ore_create +EXPORT_SYMBOL fs/fscache/fscache 0x06819ce8 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x07d9b576 fscache_wait_bit_interruptible +EXPORT_SYMBOL fs/fscache/fscache 0x0b536e45 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x14b3e393 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x15913bec __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x22714360 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x3ad8aae7 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3bfd9ba2 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3fc23318 fscache_wait_bit +EXPORT_SYMBOL fs/fscache/fscache 0x5b584e98 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x5fa0e22c __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6787e668 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x6c24a27c __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x6dbec5c0 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x70bfd038 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x77edc923 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x7cc01aad fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x86f8894f fscache_object_states +EXPORT_SYMBOL fs/fscache/fscache 0x9ffbf8c6 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa4205291 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xaa9ac495 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xbdb25fd2 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xc48e414a __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xcceb3c43 fscache_object_work_func +EXPORT_SYMBOL fs/fscache/fscache 0xd7a8cdef __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xe1c2d906 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xe50d0b77 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xe74bdba6 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xf4105282 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf97e0db5 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xfa89cbe6 fscache_object_lookup_negative +EXPORT_SYMBOL fs/nfsd/nfsd 0x01f7fba7 nfs4_acl_nfsv4_to_posix +EXPORT_SYMBOL fs/nfsd/nfsd 0x35e33c1e nfs4_acl_write_who +EXPORT_SYMBOL fs/nfsd/nfsd 0x5a157ae4 nfs4_acl_get_whotype +EXPORT_SYMBOL fs/nfsd/nfsd 0x940bea20 nfs4_acl_posix_to_nfsv4 +EXPORT_SYMBOL fs/nfsd/nfsd 0x96ce9bb4 nfs4_acl_new +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x5c5090eb qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x5d6dc8e2 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x97499d41 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x999c889b qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xc6792d8c qtree_release_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x651c2313 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x276c7e62 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0xc086bfba crc7 +EXPORT_SYMBOL lib/crc7 0xd80c3603 crc7_syndrome_table +EXPORT_SYMBOL lib/crc8 0x3e77b340 crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0a3f82e1 lc_reset +EXPORT_SYMBOL lib/lru_cache 0x31db9d9b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x358c55f7 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x4731dea1 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x5008bdcc lc_put +EXPORT_SYMBOL lib/lru_cache 0x98f0a27d lc_set +EXPORT_SYMBOL lib/lru_cache 0x99356694 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x9cf5f00b lc_changed +EXPORT_SYMBOL lib/lru_cache 0xa5e2f154 lc_del +EXPORT_SYMBOL lib/lru_cache 0xd1ba63bb lc_get +EXPORT_SYMBOL lib/lru_cache 0xd427134f lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xd9d868e5 lc_create +EXPORT_SYMBOL lib/lru_cache 0xeb257046 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xf133cd93 lc_find +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x315c65fd zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x48034724 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xaf64ad0d zlib_deflate +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf741c793 zlib_deflateEnd +EXPORT_SYMBOL net/802/p8023 0x0a9265f7 make_8023_client +EXPORT_SYMBOL net/802/p8023 0x90903ef4 destroy_8023_client +EXPORT_SYMBOL net/9p/9pnet 0x02982fc1 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x0a960daa p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x0e0f1c83 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x0edf20aa v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x2cccbd18 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2db07f24 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x3587fd34 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3841f4e9 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x39228a1c p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4d6491f9 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x4fba078f p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x52fbc512 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x531c1b64 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x5fb39bdb p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x67dd4bdd p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x8939302b p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x977a0030 p9_nr_pages +EXPORT_SYMBOL net/9p/9pnet 0x9a9f4d57 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9c964743 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x9df6e606 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xa4780077 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xa59488e3 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xb4785b8d p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xba59adbd p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xbba49536 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbf535de0 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xbfce8cf8 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc9f5c85f p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xca694988 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xcbd945cf p9_payload_gup +EXPORT_SYMBOL net/9p/9pnet 0xd42403d4 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xd58e7122 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xd65bd90a p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xd702752f p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xdb11e56e p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xdf1ab7b2 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xdf82ba3f p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xe06edf65 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xe0ef5b3f p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe9952f86 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xec913e59 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xf4062a3c p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf7514b61 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf9aae06d p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xfc988b39 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x207a1f0c atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x3fbc7f2f alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x4557a781 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xd2aa02d4 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x01aafd78 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x1a06b246 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x233966ef atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4c8d7517 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x5f46b004 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x644b405a atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x8109f661 atm_charge +EXPORT_SYMBOL net/atm/atm 0x93136f41 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xca91ca28 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xcc13e378 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xd21c3432 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xd7de8915 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xdc1fed6f atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xf04da4a8 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x026c1368 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x02b3dea6 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x0479d44f ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x055d9f45 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x1def743d ax25_rebuild_header +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3ea4d542 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x680b94da ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x7425e4a5 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x854640b6 ax25_hard_header +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xb676f960 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd728fbe8 ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x128e251f hci_conn_change_link_key +EXPORT_SYMBOL net/bluetooth/bluetooth 0x140f23d7 hci_connect +EXPORT_SYMBOL net/bluetooth/bluetooth 0x19d4650e hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f5b1610 hci_recv_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0x216f53ec hci_register_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3980d9ec hci_send_sco +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a09598b bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4322f083 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x453bf4fa hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b599289 bt_printk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4e3257ee hci_conn_hold_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51698381 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x534a341d bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x562d2afb hci_le_ltk_reply +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c5d74d8 hci_send_acl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f459fb4 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6945e56b hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x72f10a6d hci_le_start_enc +EXPORT_SYMBOL net/bluetooth/bluetooth 0x773ed797 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d6c69cb bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x84728bb9 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8894e418 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8901cc38 hci_find_link_key_type +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a6323ae hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b0bcd47 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8e9e7449 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8f304090 hci_find_ltk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fb694a4 hci_recv_stream_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa42323b3 hci_le_conn_update +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9b2d5ac hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf8cb5c6 hci_unregister_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb17aaf03 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf406371 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2066af0 batostr +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc65fbcb8 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7c347d4 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdfa56458 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdfeb1dee hci_conn_check_link_mode +EXPORT_SYMBOL net/bluetooth/bluetooth 0xedf2e513 hci_conn_put_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf19294db bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3512b36 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf38e6ae6 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfbc17271 hci_alloc_dev +EXPORT_SYMBOL net/bridge/bridge 0x30d69084 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0c596ffb ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1eb4e79f ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x49631bc5 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x2f273555 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x35b49017 caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x504da5e8 cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x5807d88d caif_free_client +EXPORT_SYMBOL net/caif/caif 0x63e9812a cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x9dc7460f caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xbac57c7e cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xd7c67f70 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x47d1c215 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x502b3a10 can_rx_register +EXPORT_SYMBOL net/can/can 0x66c71aa2 can_ioctl +EXPORT_SYMBOL net/can/can 0x73f6b791 can_send +EXPORT_SYMBOL net/can/can 0xbdc081cd can_proto_register +EXPORT_SYMBOL net/can/can 0xbf3160bc can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0d495c3e ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x0e3d0216 ceph_calc_object_layout +EXPORT_SYMBOL net/ceph/libceph 0x0e5ae49b ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x1021e402 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x106f43c9 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x1767eb12 ceph_osdc_stop +EXPORT_SYMBOL net/ceph/libceph 0x197effcb ceph_osdc_release_request +EXPORT_SYMBOL net/ceph/libceph 0x1c642dab ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x1d226760 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x227dc68c __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x30982615 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x331cfc02 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x33f2d647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x34876d11 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x3a1d233f ceph_osdc_init +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3bbd9d86 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x3e1f462a ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x422ba26a ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x510ee9d7 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x55e3e9a3 ceph_messenger_create +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x59f73ebf ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x5cd578cf ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x5d7761de ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x626c88ae ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6ab44f78 ceph_calc_raw_layout +EXPORT_SYMBOL net/ceph/libceph 0x6acb7f36 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6e6277b1 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7206a9a3 ceph_messenger_destroy +EXPORT_SYMBOL net/ceph/libceph 0x74daee66 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x76567767 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x77692acb ceph_msg_last_put +EXPORT_SYMBOL net/ceph/libceph 0x7a5523ab ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x83b3c720 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x848e1f22 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x899b3af4 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x8eb7d360 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x8ec61abb ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x8fe7ce10 ceph_monc_create_snapid +EXPORT_SYMBOL net/ceph/libceph 0x91742005 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x92107abd ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x952e7ec5 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9687ff09 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x9ea5d084 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa2bc983e ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xa2cb617b ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xa3d224ed ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb2709cf8 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xba95d3cb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xbe90bbb4 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0xc31f77d3 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc62faa8b ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xc6ea7f47 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca5220f7 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcdf4db8a ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xce05e572 ceph_osdc_wait_event +EXPORT_SYMBOL net/ceph/libceph 0xd01b645a ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xd253289c ceph_osdc_unregister_linger_request +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd64bec4b ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe652c343 ceph_copy_page_vector_to_user +EXPORT_SYMBOL net/ceph/libceph 0xe66da465 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe891b649 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xec7aceeb ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xecd39032 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xfc228943 ceph_put_page_vector +EXPORT_SYMBOL net/ieee802154/ieee802154 0x02a5ecb6 ieee802154_nl_start_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2ae09b46 wpan_phy_alloc +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2e77de81 ieee802154_nl_scan_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x327c98cd wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4c85b0be wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x529432e5 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x540eea20 ieee802154_nl_disassoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x647c9eda ieee802154_nl_beacon_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x86510871 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa2e3b1c2 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb6827620 ieee802154_nl_assoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe434bda7 ieee802154_nl_assoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfe919489 ieee802154_nl_disassoc_indic +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1f17ff45 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x99993264 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xbba985df arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x05bde7ef ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0a8d69ea ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7c176957 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x0d1b6ace nf_nat_protocol_unregister +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x3946580e nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x3d2f4f78 nf_nat_setup_info +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x4a022661 nf_nat_used_tuple +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x78ec5920 nf_nat_follow_master +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x990de696 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xf95aee75 nf_nat_protocol_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x3dc051ad xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x75cc333b xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x65778776 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x932fc4bf ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x9aba1241 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb0db59b4 ipv6_find_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8bddf33 ip6t_ext_hdr +EXPORT_SYMBOL net/ipv6/tunnel6 0x05508b47 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xa8ccab6a xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x5a244986 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x8e1378c6 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0403b166 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4d552d01 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x845421d0 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8c3d5ac4 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9e61c74d ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa7446308 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc22fab98 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xcb89f6b2 ircomm_connect_response +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x09f58a8b hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x0a1b6c34 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x10ac9449 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x2036ad06 irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x22568290 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x23a3cc7b irlap_close +EXPORT_SYMBOL net/irda/irda 0x26e6b539 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x377d10cf async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x38a20e5b irda_debug +EXPORT_SYMBOL net/irda/irda 0x3b6d5f65 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x3d470475 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x42a9904d irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x43202ec5 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x43a9422c iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x446371d1 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x615ee918 irias_new_object +EXPORT_SYMBOL net/irda/irda 0x65323109 irlap_open +EXPORT_SYMBOL net/irda/irda 0x66ef7db3 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x6a149757 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x76ef9f52 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7dabe31e hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x7fb81606 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x85a704ce irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x86b5f4ce hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x88f0644f irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x8b69b459 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x8ff00c35 proc_irda +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x924b52b3 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x9302c4f0 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x993ad14b irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0xa4548c32 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xa47d3da8 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xa671e093 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xad66e1db hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xb71701f0 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbdb4b1dc iriap_close +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc310cf21 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xc7221533 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xd1ae6745 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xd473d96b irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xd57045a8 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xde01a70f irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe2ff56bc irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xe85ba4d2 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xffaaaf88 iriap_open +EXPORT_SYMBOL net/l2tp/l2tp_core 0xaae55e5e l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x05aa155a lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x16152b89 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x2dfd9a85 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x30d80645 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x442bc70c lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x4c76bacd lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xd740340e lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xd9d3d86d lapb_data_request +EXPORT_SYMBOL net/mac80211/mac80211 0x05247095 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x077b0ec0 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x0c2e9a3c ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x0ea08ba0 ieee80211_get_operstate +EXPORT_SYMBOL net/mac80211/mac80211 0x198e8d3c ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x25aa7460 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x27a2010b ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x29e3b884 ieee80211_rx +EXPORT_SYMBOL net/mac80211/mac80211 0x2ab8cdf6 ieee80211_alloc_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3677e620 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x48dbe211 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4e1f8b16 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4fb39646 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5304f0a5 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x5410c9b9 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x5c28cca5 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x5c8cb48e ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x63915eba ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6503ef71 ieee80211_sta_eosp_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x6a6b61d3 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x6d96bbbb ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x6dfbb5f2 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x72906da7 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x75379bef ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x77b5a48c ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8173a67e ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x84b3c8c3 ieee80211_disable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x8a6d5ff0 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x94d0ea36 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9a5f9396 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9c8fa741 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9e70c534 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa4241970 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xa4c4175c __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa7dc5524 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xa9600cfb ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xaa157485 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xab5342f7 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xaf34b1c2 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xb3e1c0c5 ieee80211_napi_schedule +EXPORT_SYMBOL net/mac80211/mac80211 0xb8fe7c4f ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xba0ccd80 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xbe390ed1 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc2759a3d __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc2e9c744 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc7e9782e ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xca51242f ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xd6e96aea ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xd7448e82 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd99d8114 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xd9bcbb93 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xda14c5a4 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xdbe01809 ieee80211_enable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0xddb47d52 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe09462b9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe248b60b __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xe666408e ieee80211_napi_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xe7a0eb02 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xebb9b5a4 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xec307369 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xed48b9b6 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf38e01b9 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf426cf73 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf5a5ee8f ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf792e0eb ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xfb83afc6 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xfe2d68fb ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xffd129f1 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1fe2e9da ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x20489e8e ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x49deb459 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x523897aa ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x62d33c2c unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7a5c7763 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7bd0ebf6 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9c9ca9d3 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa1dbc2d8 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbc704d61 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd0cf9f98 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe6de3ea0 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeae2ec30 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf9b9e6df ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xff64b2fe ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf13caf66 __nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xfb0b554f __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xfeac8081 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_proto_gre 0x8a99ce31 nf_ct_gre_keymap_flush +EXPORT_SYMBOL net/netfilter/x_tables 0x08c473b7 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x1014ed7b xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x1866be3c xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x4cfe75b5 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x587cf396 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x6692b173 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x71e082d8 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x76056906 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x94bd8ba2 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xb28f5ef1 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xc08573ab xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xce287dc5 xt_register_targets +EXPORT_SYMBOL net/nfc/nci/nci 0x0bd85d7f nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3d73a0bf nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x977bd4a1 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb07bd0fd nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xd21e0049 nci_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x04dc9739 nfc_alloc_skb +EXPORT_SYMBOL net/nfc/nfc 0x2cf1913e nfc_printk +EXPORT_SYMBOL net/nfc/nfc 0x375a39da nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x729c92ac nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x7a3a9d29 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x8e9ede30 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xa7e6de3f nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xe774b3d3 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xef33b869 nfc_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x2b0d7e46 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x3bd009f2 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x41c7eccc phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x64e67949 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x7aca40a0 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x9283c286 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xc1109866 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xc6713723 pn_sock_unhash +EXPORT_SYMBOL net/rds/rds 0x1c9be661 rds_str_array +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x108ee750 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x12be37a2 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x30a2c586 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x580d907c rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x61279f9c rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6e0a0346 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6e89cebc rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8347ab3f rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x877dafdd rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9daee12e rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa38cd087 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xadc1f1ec rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb35f0ae0 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc713f7f5 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd8263c42 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/sunrpc/sunrpc 0x95a65546 svc_pool_stats_open +EXPORT_SYMBOL net/wanrouter/wanrouter 0x0ebe03d1 unregister_wan_device +EXPORT_SYMBOL net/wanrouter/wanrouter 0x0fa7eec5 register_wan_device +EXPORT_SYMBOL net/wimax/wimax 0x2080fae3 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xfc7bbb3d wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x0808b773 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0b2a5d62 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x0e17660c cfg80211_testmode_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1cc06147 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x1d765a3b wiphy_new +EXPORT_SYMBOL net/wireless/cfg80211 0x1ebee528 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x2edf7d69 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x332aad34 cfg80211_send_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x3caf8edf ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x40d47ab8 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x42e75677 __cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x45cf2555 ieee802_11_parse_elems_crc +EXPORT_SYMBOL net/wireless/cfg80211 0x489e47ca wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x4d6a868c cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4daed988 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x578fdf22 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x592731cb wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x5c231b14 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x601f0a4b cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x6784470e __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6efd1b5f cfg80211_testmode_event +EXPORT_SYMBOL net/wireless/cfg80211 0x6f6a2e09 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x7238648d ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x73933935 cfg80211_send_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x73cdf0e0 __cfg80211_auth_canceled +EXPORT_SYMBOL net/wireless/cfg80211 0x742ed125 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x7512d136 cfg80211_send_rx_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x7513e94e ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x76007a53 cfg80211_inform_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7e7a2dee cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x805d3711 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x811ce664 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x8786c2dd ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x8b965884 __cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x8be046a7 cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x91cb425e regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x92fb0725 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x962364eb cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x97689d94 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xa0ddeacc cfg80211_inform_bss_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xacd67d65 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xb7fbe7a4 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xb9eaffef cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xba3d71f6 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xc02b3e13 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xca684879 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xcf7f2c4e cfg80211_get_mesh +EXPORT_SYMBOL net/wireless/cfg80211 0xd210c3d3 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xd483c8cb cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd4b63002 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xd6287334 cfg80211_testmode_reply +EXPORT_SYMBOL net/wireless/cfg80211 0xd690642c cfg80211_send_unprot_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0xe341e3f8 cfg80211_testmode_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xed27e86e cfg80211_send_rx_auth +EXPORT_SYMBOL net/wireless/cfg80211 0xeed1879c cfg80211_send_unprot_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0xef97cac1 cfg80211_del_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xf0e20617 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xf18ef0fd ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xf7c07e08 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xf8220858 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x26de83c9 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2d0f99e5 print_ssid +EXPORT_SYMBOL net/wireless/lib80211 0x454fa1fd lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x5e8ca823 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6d0e9130 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xa04a9afd lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xd825c183 lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xe80f9d15 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x38bde3c2 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x00423daa snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x15b2316f snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7758f05d snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x94588185 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3a57f235 snd_seq_autoload_unlock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x47569452 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xa428fd5a snd_seq_device_register_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xb90668b2 snd_seq_autoload_lock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xc622fb29 snd_seq_device_unregister_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x01b82065 snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x0d2b74da snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2ceec35d snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x668570c0 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7f92860c snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xb494afee snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xc7b2b6c2 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xe0a50454 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x77fb4535 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x07d901ab snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x0ba67f0c snd_card_proc_new +EXPORT_SYMBOL sound/core/snd 0x0dbf1bfa snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x0f1e11c8 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x1735e22a snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x17652850 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1b36e933 snd_card_create +EXPORT_SYMBOL sound/core/snd 0x1e7c736a snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3e6e362c snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x3f402753 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b015768 snd_iprintf +EXPORT_SYMBOL sound/core/snd 0x518bb7f8 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0x54256456 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x5e984f42 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x6123cc93 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x61898623 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x64731d23 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x6b63d48e snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x72dd52e1 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x737faecf snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x743df7d9 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x78d0c4b2 snd_add_device_sysfs_file +EXPORT_SYMBOL sound/core/snd 0x7a46de5e snd_card_register +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x86e713ee snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x89e09028 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e24fa2b snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x96f09b56 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x9766a5d8 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x98dc2ae5 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x9947c5ac snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x9be0cb3b snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x9e3bd8cc snd_card_free +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa16deed5 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xac5200af snd_info_register +EXPORT_SYMBOL sound/core/snd 0xacb56596 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xb20f367d snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb78a6d21 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xbe4e3a99 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xc09d23a8 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xc80038e6 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xcad29ab7 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xce26ae62 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xcf0d1309 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xd6bca161 snd_cards +EXPORT_SYMBOL sound/core/snd 0xde73e11d snd_register_device_for_dev +EXPORT_SYMBOL sound/core/snd 0xe0236a87 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xe243dde3 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0xe3ac93e7 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xe9119715 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xe93cdcc5 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xedc5af4d snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xf7263e48 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd-hwdep 0xafa8bd29 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-page-alloc 0x19cc2ce3 snd_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x1d8c38d3 snd_dma_reserve_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0x710b54fc snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x9fd2077b snd_dma_get_reserved_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0xaf7023a7 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-page-alloc 0xc6829020 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0xfa208fbc snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x0471ef3a snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x063a3d71 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x083a0621 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x1cdc57f1 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x23512530 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x23a2f6f1 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x249faad1 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x28520759 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x28d36afe snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x2c103db1 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x43f79806 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x4520d746 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x4736ecca snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x4d8383d6 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x52ea3d14 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x59bddf62 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x654db40b snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x67940bc4 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6a225127 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x6bdffbe5 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x758579e9 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x790e8553 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x7f38608d snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8057fa83 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x82abbefe snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x8614c302 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8627fb86 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x8aac2a07 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x8ec7ae4a snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x93cc99b8 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x94134435 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x9d74d9d7 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa27648c0 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa9adc229 snd_pcm_link_rwlock +EXPORT_SYMBOL sound/core/snd-pcm 0xacc2b8d8 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xb3e309a6 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbb06cc5c _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xc128fb5b snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xcf7df8a8 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xd06cbc9c snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b9b8b8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xe009b5c5 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xe286adc9 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xe51a1c64 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xef2ec52f snd_pcm_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xf3797152 snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xf6babe1a snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0280c6e1 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0ce9c96a snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x43bc9c86 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x55d52b02 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5a5172fd snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5b007399 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7ed4468e snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x821042a9 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x98d7e9b9 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa9669729 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb5f5ae59 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb6ae20ec snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc1f11b4f snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd14fad8b snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xddfb5f05 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe3054c2f snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe56cc8c5 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-timer 0x0d144e1e snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x33737b2b snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x34e8ecf5 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x3e8c1156 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x5fd4aed4 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x6b38c1bd snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x6ffdad45 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x9dab7e18 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xdd36ef48 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xe68f3083 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xed0b2ce5 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xf3663fdf snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xfb2aa68e snd_timer_global_register +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x986a463b snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0748537a snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x109c2c45 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3890266b snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9f29c0b4 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9fbe5d2d snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa88abc05 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xab3c6ac6 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb379f71b snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd691c5fc snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2030aa37 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x64ec2a7b snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x83c0e325 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x88696965 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb94d8fb1 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xba315567 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd2b1b8c6 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe1b406cf snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfb02ae85 snd_vx_suspend +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x01f20178 amdtp_out_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0a1d7b00 amdtp_out_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x157569db cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1bbca918 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x21bffebb fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x28c516d9 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2d0142cf amdtp_out_stream_set_rate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c111b69 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4b6ac5ee cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c70df9d fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x546e7016 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x64011964 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6c466b2e amdtp_out_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9684677d iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa690cc20 amdtp_out_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaa6638eb amdtp_out_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb43e679d amdtp_out_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb77e6677 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbcff9b86 amdtp_out_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd74bc7a rcode_string +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe54c1442 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeba65e7b iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xefc3a74e cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf342d50f amdtp_out_stream_set_pcm_format +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc7b0681 fcp_bus_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0f2e6d60 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x290c5863 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x433bc388 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6b23cc07 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd08f508c snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xef1961a2 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x1434fcf3 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2287e9fb snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x60de48d3 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x98626252 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc982ec98 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd27e59b6 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0b086d7c snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1ce47ab0 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x1d1678e7 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x28e441fa snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xc960ddd0 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xedf8ec42 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0x6abdae5e snd_tea575x_init +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0xaa0d6840 snd_tea575x_exit +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5347cdf4 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x555c2a62 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8e47df70 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xba1e55ba snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe713cc28 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x19fc5d98 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x6fe2c104 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x76b1fcfd snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa7544d6b snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xafb5a8b2 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xb1b7b4c3 snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x100da86c snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x15c5fcaa snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5b13db69 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x877b74b0 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x93954ab6 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x992a2a3f snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa9d9b07c snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd064b74d snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd25e35e4 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd79e8098 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x0be916b6 snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xa7e48b82 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xcc2c4831 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x02a9458b snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x147f34a3 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x155bec32 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1cbcea78 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2032a7b7 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2948d29b snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x35c644fc snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d6f3255 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x693f2410 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x69659d6d snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x710a6123 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa4eac6e9 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa53b4900 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa8c5a97a snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfb4250fc snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfb89cc4e snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfd28f538 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xa817263f hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x191d3d3a snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x44f55e07 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x48297f71 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x624a268d snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x836fa89c snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x98ff17b0 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa8e5120e snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb5d5ebc2 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfccbd359 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/hda/snd-hda-codec 0xb91c9e75 snd_hda_parse_generic_codec +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb2d98821 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd50e3d16 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xee68751d snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0b02651e oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0e108338 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0ed363d7 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x169329b7 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x170e7d1d oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21c65e61 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x23fc4c74 oxygen_pci_resume +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x32d648a0 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3e5a2680 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a186371 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c5fc8e7 oxygen_pci_suspend +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x657845cb oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb22f8c7c oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc4ef94c8 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xce921504 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd354d4ec oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd5fe4f1a oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdf06f589 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe7de7656 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe9a15523 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xff38ead8 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x125d61fa snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x163c495b snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5723b295 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9354b6b0 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc5440aed snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soundcore 0x218817aa register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x3704de1c register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x737ca857 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xbccde9b6 sound_class +EXPORT_SYMBOL sound/soundcore 0xc40e3abd register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xf52810be register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0f74df42 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x42c6f240 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x55a1226a snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x626cd312 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x942f836b snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb822068a snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x06fd0784 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x340147ba snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x340d055e snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x896ffd13 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa3ca0594 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa8759206 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xce7aa99e __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xea4589ea __snd_util_memblk_new +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x9be65c8d snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x35c95b1b dm_mem_cache_client_create +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x433f5f1f dm_mem_cache_alloc +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x604317d9 dm_mem_cache_free +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x86e5acf9 dm_mem_cache_grow +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x920a7a41 dm_message_parse +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xa43471b6 dm_mem_cache_shrink +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xd55b290c dm_mem_cache_client_destroy +EXPORT_SYMBOL vmlinux 0x00000000 softirq_work_list +EXPORT_SYMBOL vmlinux 0x001d8762 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x002de09c vfsmount_lock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x004b7cf8 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x00726cce pci_claim_resource +EXPORT_SYMBOL vmlinux 0x007b513a inet_csk_accept +EXPORT_SYMBOL vmlinux 0x007ca524 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x00801678 flush_scheduled_work +EXPORT_SYMBOL vmlinux 0x0081ac2c inet6_getname +EXPORT_SYMBOL vmlinux 0x008a2ed8 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x008fb3d7 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x00cda8f5 sg_miter_next +EXPORT_SYMBOL vmlinux 0x00f42699 files_lglock_global_unlock +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01093ca5 cpu_info +EXPORT_SYMBOL vmlinux 0x011e39f7 alloc_tty_driver +EXPORT_SYMBOL vmlinux 0x0133f00e tcp_close +EXPORT_SYMBOL vmlinux 0x013dd1a3 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x015bde3e unregister_nls +EXPORT_SYMBOL vmlinux 0x015ddbdc wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x016e2b3e pci_enable_ido +EXPORT_SYMBOL vmlinux 0x01902adf netpoll_trap +EXPORT_SYMBOL vmlinux 0x01944985 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x01cf255b sg_miter_stop +EXPORT_SYMBOL vmlinux 0x01d19038 acpi_enable_subsystem +EXPORT_SYMBOL vmlinux 0x01f04814 scsi_cmd_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x01f6e2e7 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x024e4607 ethtool_op_set_flags +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x029444f0 native_read_tsc +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02b5298d pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x02c0dcc1 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x02d81845 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x02dbf146 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x02ec616e jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x02f35b7c blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x02fada8a dquot_disable +EXPORT_SYMBOL vmlinux 0x02fc1f47 kdb_current_task +EXPORT_SYMBOL vmlinux 0x0303eec3 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034f9e73 param_ops_byte +EXPORT_SYMBOL vmlinux 0x0354eaad inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0361d739 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03ad4d0f dcb_setapp +EXPORT_SYMBOL vmlinux 0x03c06156 bitmap_fold +EXPORT_SYMBOL vmlinux 0x03dc1461 seq_release_private +EXPORT_SYMBOL vmlinux 0x03f512bb mnt_pin +EXPORT_SYMBOL vmlinux 0x03fc7ab7 locks_delete_block +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0456ffbc neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x047c5541 neigh_table_init +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048b2be6 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x04927208 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x04c4c1f2 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ec6022 pci_do_scan_bus +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053c126f ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x054434d6 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x054ff95f misc_deregister +EXPORT_SYMBOL vmlinux 0x0599de2a fb_class +EXPORT_SYMBOL vmlinux 0x05afa726 skb_append +EXPORT_SYMBOL vmlinux 0x05c58de5 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x05cbcd5f dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x05e4c201 ip_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x060b741f pci_scan_bus_parented +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061b339d pipe_to_file +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06382a24 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x06396477 tcp_valid_rtt_meas +EXPORT_SYMBOL vmlinux 0x063b5f80 ethtool_op_set_tx_hw_csum +EXPORT_SYMBOL vmlinux 0x064689df tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x0648d132 ata_port_printk +EXPORT_SYMBOL vmlinux 0x06564e6e kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x0656c3df pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x0676f666 idr_destroy +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x067fe02d ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x0691e56e nf_afinfo +EXPORT_SYMBOL vmlinux 0x06a485f2 __krealloc +EXPORT_SYMBOL vmlinux 0x06e1a7cb blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x06f3be66 __getblk +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x070a16d7 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x073dfa12 generate_resume_trace +EXPORT_SYMBOL vmlinux 0x079480be pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x0799aca4 local_bh_enable +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b5ea25 find_inode_number +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d9b783 scsi_nl_send_vendor_msg +EXPORT_SYMBOL vmlinux 0x07e0293b pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x07f3c659 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x0805e6a4 __dst_free +EXPORT_SYMBOL vmlinux 0x0819f582 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x082aecba gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08328078 inet_frag_evictor +EXPORT_SYMBOL vmlinux 0x083d63ea release_pages +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0868e2bb mutex_lock +EXPORT_SYMBOL vmlinux 0x08761424 ppp_input +EXPORT_SYMBOL vmlinux 0x0888c529 acpi_bus_generate_proc_event +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08c3a73c tcf_hash_release +EXPORT_SYMBOL vmlinux 0x08cc616c jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x08dd966f set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x08e03e24 task_nice +EXPORT_SYMBOL vmlinux 0x08f64aa4 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x08f74ffa simple_write_begin +EXPORT_SYMBOL vmlinux 0x08fe3278 seq_lseek +EXPORT_SYMBOL vmlinux 0x09059e60 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x09308484 idr_get_new +EXPORT_SYMBOL vmlinux 0x0933aae1 efi_enabled +EXPORT_SYMBOL vmlinux 0x0935e36e pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x0948cde9 num_physpages +EXPORT_SYMBOL vmlinux 0x0952d468 bdevname +EXPORT_SYMBOL vmlinux 0x095498f9 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x0964bcb2 boot_cpu_data +EXPORT_SYMBOL vmlinux 0x09768794 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x09775cdc kref_get +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09b45fb3 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x09bf17d5 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x09bf3471 skb_gso_segment +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09fac9af abort_creds +EXPORT_SYMBOL vmlinux 0x09fd43bb tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x0a10657d input_free_device +EXPORT_SYMBOL vmlinux 0x0a2487e0 unblock_all_signals +EXPORT_SYMBOL vmlinux 0x0a552f19 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x0a586001 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x0a7ccac3 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x0aa41534 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0aaf9d88 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x0acb1a3c __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0aed930e names_cachep +EXPORT_SYMBOL vmlinux 0x0af0ff88 llc_sap_find +EXPORT_SYMBOL vmlinux 0x0afd8b31 thaw_super +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b3974c7 napi_get_frags +EXPORT_SYMBOL vmlinux 0x0b7086d9 param_get_short +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8f2de1 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x0b90582e bio_phys_segments +EXPORT_SYMBOL vmlinux 0x0ba0d2ff generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x0bc22005 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0befb438 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x0c2cfbb9 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x0c3bc60b rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x0c65e73c scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x0c748d52 pci_match_id +EXPORT_SYMBOL vmlinux 0x0c835f8b x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x0c8bb224 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x0c8c9e99 scsi_show_extd_sense +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb9eea6 get_fs_type +EXPORT_SYMBOL vmlinux 0x0cc2f35a pcim_iounmap +EXPORT_SYMBOL vmlinux 0x0cf2c6bd __kfree_skb +EXPORT_SYMBOL vmlinux 0x0d0bd878 seq_puts +EXPORT_SYMBOL vmlinux 0x0d0c7a54 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x0d271aab follow_down +EXPORT_SYMBOL vmlinux 0x0d2f459b mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d652bb4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x0d905141 inet6_release +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0db97f17 path_get +EXPORT_SYMBOL vmlinux 0x0dbdf904 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x0dc92be7 bio_map_user +EXPORT_SYMBOL vmlinux 0x0dd2de26 is_container_init +EXPORT_SYMBOL vmlinux 0x0ddd3228 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x0ddd78eb inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x0e0484dd tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x0e0c11c4 sock_no_getname +EXPORT_SYMBOL vmlinux 0x0e167810 scsi_finish_command +EXPORT_SYMBOL vmlinux 0x0e19b943 noop_fsync +EXPORT_SYMBOL vmlinux 0x0e4fb4b0 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x0e52592a panic +EXPORT_SYMBOL vmlinux 0x0e676466 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x0e6bd96d blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x0eaa9a0f tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x0eb36376 input_reset_device +EXPORT_SYMBOL vmlinux 0x0ebdb36e acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x0ebebe14 groups_free +EXPORT_SYMBOL vmlinux 0x0ecd4e68 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0edf0a5e blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x0f1631e4 otg_get_transceiver +EXPORT_SYMBOL vmlinux 0x0f3523e4 dump_write +EXPORT_SYMBOL vmlinux 0x0f59f197 param_array_ops +EXPORT_SYMBOL vmlinux 0x0fa00380 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb0e29f init_timer_key +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fdeca2f __scsi_put_command +EXPORT_SYMBOL vmlinux 0x0fe0f7e3 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x100cdb09 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x10441597 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x104e5163 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x104f8ba0 dquot_get_dqinfo +EXPORT_SYMBOL vmlinux 0x105f9cbf ethtool_op_set_tx_csum +EXPORT_SYMBOL vmlinux 0x10615392 generic_listxattr +EXPORT_SYMBOL vmlinux 0x1061f9ed ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x106f811d skb_insert +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107b0b23 elevator_init +EXPORT_SYMBOL vmlinux 0x1097b2ef nobh_write_begin +EXPORT_SYMBOL vmlinux 0x10c6440f sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x10d9d048 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x10da9fcb __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x10ebd9d0 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f2eb76 vsnprintf +EXPORT_SYMBOL vmlinux 0x10fa2d57 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x110700cb scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1110e9b1 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x1120c60d follow_down_one +EXPORT_SYMBOL vmlinux 0x11267875 scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x115cc113 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x11620f42 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x11633870 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x1168c02e uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x116fbf84 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11803f29 journal_get_write_access +EXPORT_SYMBOL vmlinux 0x118f01ea putname +EXPORT_SYMBOL vmlinux 0x11987d40 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x119b4a80 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x11dd9953 agp_bridge +EXPORT_SYMBOL vmlinux 0x11e2ec12 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x11e64e10 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x12041f43 mdiobus_alloc +EXPORT_SYMBOL vmlinux 0x12088e1e blk_start_request +EXPORT_SYMBOL vmlinux 0x12295d7a mntget +EXPORT_SYMBOL vmlinux 0x12595f27 dev_get_by_flags_rcu +EXPORT_SYMBOL vmlinux 0x127dec61 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x128fffea __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x12998b9a vga_tryget +EXPORT_SYMBOL vmlinux 0x129de341 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12aec930 phy_attach +EXPORT_SYMBOL vmlinux 0x12e53d53 mmc_add_host +EXPORT_SYMBOL vmlinux 0x12f351dd dev_set_mtu +EXPORT_SYMBOL vmlinux 0x12f99022 inet_frags_init_net +EXPORT_SYMBOL vmlinux 0x1308c3f4 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x1348b4a0 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x13970763 lock_may_write +EXPORT_SYMBOL vmlinux 0x13a4d16c dma_find_channel +EXPORT_SYMBOL vmlinux 0x13b65a01 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e549fe __breadahead +EXPORT_SYMBOL vmlinux 0x13ec80f3 param_set_short +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f8e15b mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x13fd20a1 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x1403bd01 skb_store_bits +EXPORT_SYMBOL vmlinux 0x14078629 generic_file_buffered_write +EXPORT_SYMBOL vmlinux 0x140d7218 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x1414a26e journal_get_create_access +EXPORT_SYMBOL vmlinux 0x14290521 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x1430e6e0 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x14330c77 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x143dd173 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x147c832a kthread_bind +EXPORT_SYMBOL vmlinux 0x148b0504 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x14b289e9 kern_path_create +EXPORT_SYMBOL vmlinux 0x14b654d3 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x14c6b770 d_splice_alias +EXPORT_SYMBOL vmlinux 0x14cca311 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x14d8a843 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x14dbfc75 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x14e7ca7c alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x14f7105c tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x1509f2d1 serio_rescan +EXPORT_SYMBOL vmlinux 0x1510eed3 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x153e78cc agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x1540d41b jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x15443c36 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154d152e tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x1551dc51 bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x156eaede mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x15bcec33 scsi_print_result +EXPORT_SYMBOL vmlinux 0x15f7b968 nf_log_packet +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x161e422f md_check_recovery +EXPORT_SYMBOL vmlinux 0x162247e5 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x1627ed72 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1637ff0f _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x163cabbb dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x164465fa tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x164f8144 dma_async_memcpy_buf_to_pg +EXPORT_SYMBOL vmlinux 0x1650f47f register_snap_client +EXPORT_SYMBOL vmlinux 0x16575cd7 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x16666a9f blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x166af70c end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x168f1082 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x16c42197 init_timer_deferrable_key +EXPORT_SYMBOL vmlinux 0x16d64f8d touch_atime +EXPORT_SYMBOL vmlinux 0x16f78634 scsi_calculate_bounce_limit +EXPORT_SYMBOL vmlinux 0x1704e2fc pci_disable_ido +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x17124eae ht_create_irq +EXPORT_SYMBOL vmlinux 0x1719383a unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x171d08cc __napi_schedule +EXPORT_SYMBOL vmlinux 0x174c3d2c tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x176ff470 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x178034d0 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x1790d76b _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x17ad9cdf blkdev_get +EXPORT_SYMBOL vmlinux 0x17b0364d kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x17b64d09 dqstats +EXPORT_SYMBOL vmlinux 0x17b87cfb vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x17c7457a input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x17cfeb21 dma_ops +EXPORT_SYMBOL vmlinux 0x17d237a7 mmc_free_host +EXPORT_SYMBOL vmlinux 0x17d2a342 empty_aops +EXPORT_SYMBOL vmlinux 0x17df17bc sysctl_tcp_ecn +EXPORT_SYMBOL vmlinux 0x17dfb58c cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x17f05375 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f43db8 scsi_setup_blk_pc_cmnd +EXPORT_SYMBOL vmlinux 0x180f705f jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x18435c95 netif_napi_add +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184e6c85 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x1852e4e9 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x1861ee4b ata_dev_printk +EXPORT_SYMBOL vmlinux 0x1869ff72 inet_put_port +EXPORT_SYMBOL vmlinux 0x1873ee84 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x1882a88f skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x19012d79 idr_get_new_above +EXPORT_SYMBOL vmlinux 0x191b0985 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x19245257 register_cdrom +EXPORT_SYMBOL vmlinux 0x19288fcb gen_pool_create +EXPORT_SYMBOL vmlinux 0x19391763 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x1951f4a9 simple_empty +EXPORT_SYMBOL vmlinux 0x196c59f9 ida_remove +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19ac537c bio_kmalloc +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19f00f5a max8925_reg_write +EXPORT_SYMBOL vmlinux 0x1a194a9c fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x1a1b27bd mmc_card_can_sleep +EXPORT_SYMBOL vmlinux 0x1a2af014 tcp_poll +EXPORT_SYMBOL vmlinux 0x1a34eba8 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x1a40aa24 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a748aa2 dev_change_flags +EXPORT_SYMBOL vmlinux 0x1a80ec85 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x1ace138d bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x1ad0998d scsi_register_driver +EXPORT_SYMBOL vmlinux 0x1ad2e814 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x1ae14ef5 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x1b0036d4 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0a1d31 alloc_pci_dev +EXPORT_SYMBOL vmlinux 0x1b13ec30 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x1b307a01 lookup_one_len +EXPORT_SYMBOL vmlinux 0x1b386fbf kobject_init +EXPORT_SYMBOL vmlinux 0x1b56212c acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b67ca4d i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x1b725126 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b8e9367 key_unlink +EXPORT_SYMBOL vmlinux 0x1b987b48 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x1b9e0ff1 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x1b9ecedf __mutex_init +EXPORT_SYMBOL vmlinux 0x1bd6358d xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x1be20961 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x1bf1cbe8 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x1c1af916 set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x1c64ed86 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x1c875177 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c9b9595 scsi_unregister +EXPORT_SYMBOL vmlinux 0x1cc6719a register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x1ccd811e follow_up +EXPORT_SYMBOL vmlinux 0x1cd86cbd dev_get_flags +EXPORT_SYMBOL vmlinux 0x1cdcba7a sk_free +EXPORT_SYMBOL vmlinux 0x1d2e87c6 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x1d30c43a dev_emerg +EXPORT_SYMBOL vmlinux 0x1d3865da param_get_invbool +EXPORT_SYMBOL vmlinux 0x1d7639e1 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x1d7be0ac skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x1d8010f6 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x1d9bc201 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x1da079f9 input_register_handler +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dca4f0f pci_pme_capable +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1df4914f jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e086fc7 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e1c4cfc dev_deactivate +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e4e5fcf abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x1e5a026d sock_release +EXPORT_SYMBOL vmlinux 0x1e5cc766 mmc_resume_host +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e6ead2f phy_device_register +EXPORT_SYMBOL vmlinux 0x1e7d2349 vfs_link +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea87491 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x1ec4eb34 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x1ecac498 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x1ecf7a52 napi_skb_finish +EXPORT_SYMBOL vmlinux 0x1eda08f1 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x1ef1f75f posix_acl_valid +EXPORT_SYMBOL vmlinux 0x1efea4f4 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x1f360cb3 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x1f6ec0b3 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x1f7f134f generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x1f81e583 dev_close +EXPORT_SYMBOL vmlinux 0x1fc1dfdd pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x1fc2b4eb tcp_v4_get_peer +EXPORT_SYMBOL vmlinux 0x1fca24b7 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x1fcde2df pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe61a15 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x20112c99 get_user_pages +EXPORT_SYMBOL vmlinux 0x2026c9ca __pci_register_driver +EXPORT_SYMBOL vmlinux 0x2053cc74 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x20696cde ether_setup +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20abc15b acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0x20af10f7 pci_find_capability +EXPORT_SYMBOL vmlinux 0x20cb672e dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x20da7f39 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ee1e76 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x20f39520 ns_capable +EXPORT_SYMBOL vmlinux 0x210c2fef unload_nls +EXPORT_SYMBOL vmlinux 0x211767c7 ida_destroy +EXPORT_SYMBOL vmlinux 0x2126e123 generic_fillattr +EXPORT_SYMBOL vmlinux 0x21400e09 dm_get_mapinfo +EXPORT_SYMBOL vmlinux 0x215ebd78 bitrev16 +EXPORT_SYMBOL vmlinux 0x2176b2e1 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x217dda13 flex_array_get +EXPORT_SYMBOL vmlinux 0x21886681 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x2196414f scsi_remove_device +EXPORT_SYMBOL vmlinux 0x21a7d814 seq_printf +EXPORT_SYMBOL vmlinux 0x21b9516e journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x21d773f2 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x21e0ea22 acpi_get_id +EXPORT_SYMBOL vmlinux 0x220f0a76 dev_alloc_skb +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ed0c2 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x2233acb6 end_page_writeback +EXPORT_SYMBOL vmlinux 0x223dc609 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x224acc8e page_readlink +EXPORT_SYMBOL vmlinux 0x225904eb compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x22678bf1 vga_get +EXPORT_SYMBOL vmlinux 0x226f283a neigh_table_clear +EXPORT_SYMBOL vmlinux 0x2274f67d scsi_free_command +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2288378f system_state +EXPORT_SYMBOL vmlinux 0x228c980a bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x229b2bd7 vm_map_ram +EXPORT_SYMBOL vmlinux 0x229bd027 alloc_file +EXPORT_SYMBOL vmlinux 0x22a47ce0 tty_register_driver +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22eb79a4 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x22f5f476 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x22fd9ad0 sleep_on_timeout +EXPORT_SYMBOL vmlinux 0x2309f848 kobject_del +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2326a257 skb_make_writable +EXPORT_SYMBOL vmlinux 0x234464ea md_write_start +EXPORT_SYMBOL vmlinux 0x234509f3 strncat +EXPORT_SYMBOL vmlinux 0x2347318a input_flush_device +EXPORT_SYMBOL vmlinux 0x23526128 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x23532c4d ftrace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b521e7 intel_gtt_insert_pages +EXPORT_SYMBOL vmlinux 0x23bc0b71 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x23c5f185 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x23c654fe generic_readlink +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23d6e635 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x23de5bc7 pci_vpd_truncate +EXPORT_SYMBOL vmlinux 0x23ef0167 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2403f247 set_pages_x +EXPORT_SYMBOL vmlinux 0x240ad483 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x24106b99 send_sig +EXPORT_SYMBOL vmlinux 0x241693a5 grab_cache_page_nowait +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244b84f0 should_remove_suid +EXPORT_SYMBOL vmlinux 0x24587f7a try_to_release_page +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24779fc4 clocksource_register +EXPORT_SYMBOL vmlinux 0x2481ec98 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24ded2d5 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x24e229d9 unregister_console +EXPORT_SYMBOL vmlinux 0x24ec4868 inode_init_once +EXPORT_SYMBOL vmlinux 0x24ef281d ppp_channel_index +EXPORT_SYMBOL vmlinux 0x24f934db register_nls +EXPORT_SYMBOL vmlinux 0x24fa07b7 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x251016b9 kthread_stop +EXPORT_SYMBOL vmlinux 0x2511771d x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x251f86f6 input_set_keycode +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2536684f skb_queue_head +EXPORT_SYMBOL vmlinux 0x2549ec6d jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x255c3d21 dst_destroy +EXPORT_SYMBOL vmlinux 0x2578079c load_nls +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258355b4 fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x258779f4 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x25a9ada1 free_buffer_head +EXPORT_SYMBOL vmlinux 0x25b63bb8 dev_gro_receive +EXPORT_SYMBOL vmlinux 0x25b88989 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x25be53ad sock_no_poll +EXPORT_SYMBOL vmlinux 0x25c2c377 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x25c677c4 mac_pton +EXPORT_SYMBOL vmlinux 0x25e0494e crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen +EXPORT_SYMBOL vmlinux 0x2620d9cb vfs_rename +EXPORT_SYMBOL vmlinux 0x263122f8 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26579475 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x267b2c75 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x267c8cfd inet6_bind +EXPORT_SYMBOL vmlinux 0x2685c3d7 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x26b64321 call_usermodehelper_setfns +EXPORT_SYMBOL vmlinux 0x26ba294e invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x26ce4d59 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x26cfe1f6 ethtool_op_set_ufo +EXPORT_SYMBOL vmlinux 0x26e00474 __cleancache_flush_inode +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x2718999f jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27277915 vm_stat +EXPORT_SYMBOL vmlinux 0x272d394e mtrr_del +EXPORT_SYMBOL vmlinux 0x272db4d3 mmc_cache_ctrl +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x276225c8 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x278136d3 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x2796d297 d_invalidate +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27b2f29a sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c33efe csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x282aef50 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x28343bad scnprintf +EXPORT_SYMBOL vmlinux 0x285ccc67 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x285ed100 do_sync_read +EXPORT_SYMBOL vmlinux 0x28632bb1 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x287547d1 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x2876a6d3 memcpy_toiovec +EXPORT_SYMBOL vmlinux 0x287e9004 tty_port_close +EXPORT_SYMBOL vmlinux 0x28883cc5 force_sig +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28d18509 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x28dd70cf dqget +EXPORT_SYMBOL vmlinux 0x292093f4 native_rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x293939ae __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x2942de0f copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x2951a496 migrate_page +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x297e8a4a __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x2996edca max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x29acf011 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x29b96a8a inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x29f01ee1 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x29f776e5 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x29f91b27 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x2a083368 bdi_unregister +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a4c0d55 bdput +EXPORT_SYMBOL vmlinux 0x2a4e8414 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x2a6662d3 mmc_request_done +EXPORT_SYMBOL vmlinux 0x2a6e6109 __init_rwsem +EXPORT_SYMBOL vmlinux 0x2a7da40e save_mount_options +EXPORT_SYMBOL vmlinux 0x2a9a6e21 __get_user_pages +EXPORT_SYMBOL vmlinux 0x2af3e771 log_start_commit +EXPORT_SYMBOL vmlinux 0x2afa9573 dev_addr_add +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b140f5e cdev_add +EXPORT_SYMBOL vmlinux 0x2b202c83 genphy_update_link +EXPORT_SYMBOL vmlinux 0x2b2b03c2 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b6a0992 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x2b9a993c jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bc09cb8 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x2bd24e79 fb_set_var +EXPORT_SYMBOL vmlinux 0x2bd3264c jbd2_journal_update_format +EXPORT_SYMBOL vmlinux 0x2bddfeba __dquot_transfer +EXPORT_SYMBOL vmlinux 0x2bf820c1 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c077a12 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x2c1bee0b cad_pid +EXPORT_SYMBOL vmlinux 0x2c231c04 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x2c247270 elevator_exit +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c294eab netdev_notice +EXPORT_SYMBOL vmlinux 0x2c2a6fd3 netdev_update_features +EXPORT_SYMBOL vmlinux 0x2c465ee9 phy_detach +EXPORT_SYMBOL vmlinux 0x2c60cb08 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x2c63562f __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x2c74db96 input_open_device +EXPORT_SYMBOL vmlinux 0x2c8ad636 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x2c9e5cb3 dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x2cbf8533 __cleancache_flush_page +EXPORT_SYMBOL vmlinux 0x2cc52420 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x2cd2fe3f eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x2d07544c km_report +EXPORT_SYMBOL vmlinux 0x2d11b664 backlight_device_register +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d2b36c5 journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x2d3318de dev_remove_pack +EXPORT_SYMBOL vmlinux 0x2d4919fd sk_common_release +EXPORT_SYMBOL vmlinux 0x2d495b70 udp_ioctl +EXPORT_SYMBOL vmlinux 0x2d4af52e fput +EXPORT_SYMBOL vmlinux 0x2d53148a phy_driver_register +EXPORT_SYMBOL vmlinux 0x2d5528c9 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x2d676779 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x2d71264f inode_change_ok +EXPORT_SYMBOL vmlinux 0x2d89342a scsi_show_sense_hdr +EXPORT_SYMBOL vmlinux 0x2d8f081e dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x2db05ddd xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x2db4691e ip_nat_decode_session +EXPORT_SYMBOL vmlinux 0x2db4c99b flush_delayed_work +EXPORT_SYMBOL vmlinux 0x2dbe51a5 ida_get_new +EXPORT_SYMBOL vmlinux 0x2dc34849 fb_get_mode +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2de6abe6 blk_init_tags +EXPORT_SYMBOL vmlinux 0x2de97c48 check_disk_change +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2dfbc56b mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x2dfe707c tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x2e20e60e padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e4fc9ba dev_notice +EXPORT_SYMBOL vmlinux 0x2e59fc7a ab8500_gpadc_get +EXPORT_SYMBOL vmlinux 0x2e5a704c udp_table +EXPORT_SYMBOL vmlinux 0x2e603a86 unbind_con_driver +EXPORT_SYMBOL vmlinux 0x2e6d3e10 serial8250_register_port +EXPORT_SYMBOL vmlinux 0x2e6ef7d0 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x2e7cd265 input_get_keycode +EXPORT_SYMBOL vmlinux 0x2e815ac5 kset_unregister +EXPORT_SYMBOL vmlinux 0x2ebc4300 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x2ed99dc2 kill_block_super +EXPORT_SYMBOL vmlinux 0x2edd487a d_lookup +EXPORT_SYMBOL vmlinux 0x2ee13219 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x2eeceb42 sk_chk_filter +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f2be7b8 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x2f597ede generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x2f5cd5de pci_release_regions +EXPORT_SYMBOL vmlinux 0x2f60c18e kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x2f77068d filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x2f8d5f93 netdev_class_create_file +EXPORT_SYMBOL vmlinux 0x2f8e9741 mpage_writepages +EXPORT_SYMBOL vmlinux 0x2f9954a4 md_write_end +EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp +EXPORT_SYMBOL vmlinux 0x2faf03ee inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x2fd8abc7 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x2fe80400 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x301d3061 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3032758b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x3079c88a flock_lock_file_wait +EXPORT_SYMBOL vmlinux 0x307b62ac idr_replace +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a81251 fb_pan_display +EXPORT_SYMBOL vmlinux 0x30cada8f radix_tree_next_hole +EXPORT_SYMBOL vmlinux 0x30d05a23 blk_put_request +EXPORT_SYMBOL vmlinux 0x30e0289d __dquot_free_space +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x31147601 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x31439686 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3156ee85 netdev_printk +EXPORT_SYMBOL vmlinux 0x317827c6 scsi_reset_provider +EXPORT_SYMBOL vmlinux 0x3180d111 block_write_full_page +EXPORT_SYMBOL vmlinux 0x31874d9a kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31bc31e3 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ebadcd in_group_p +EXPORT_SYMBOL vmlinux 0x31ec560e groups_alloc +EXPORT_SYMBOL vmlinux 0x3240c65b files_lglock_global_lock_online +EXPORT_SYMBOL vmlinux 0x32420f01 netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x32433822 dquot_commit +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x329598a5 pipe_unlock +EXPORT_SYMBOL vmlinux 0x32a8eb28 devm_iounmap +EXPORT_SYMBOL vmlinux 0x32b6af26 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x32dde68e phy_disconnect +EXPORT_SYMBOL vmlinux 0x32debb16 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x32df57af tty_check_change +EXPORT_SYMBOL vmlinux 0x32e278e4 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x32eeaded _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x32f1e683 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x32f83e80 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x3301dc9a blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x3317546d __pagevec_release +EXPORT_SYMBOL vmlinux 0x332ab991 vfs_symlink +EXPORT_SYMBOL vmlinux 0x3364ec63 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x336a7ecf security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x336b409d pci_bus_type +EXPORT_SYMBOL vmlinux 0x337d18ce generic_file_splice_write +EXPORT_SYMBOL vmlinux 0x338d7053 acpi_unlock_battery_dir +EXPORT_SYMBOL vmlinux 0x33b0acbf set_pages_uc +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c84e09 spi_attach_transport +EXPORT_SYMBOL vmlinux 0x33ca8e2f tcp_v4_tw_get_peer +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fe1a51 security_path_unlink +EXPORT_SYMBOL vmlinux 0x3402e398 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x3411dfc3 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x341cbed2 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x341ee0ce pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34e13d7c tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x34e5e5ad sync_inode +EXPORT_SYMBOL vmlinux 0x34fab46c km_new_mapping +EXPORT_SYMBOL vmlinux 0x34fc5267 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x35225ea3 down_write_trylock +EXPORT_SYMBOL vmlinux 0x3526de2a key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x35295445 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x353858e8 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x357c90d2 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0x35a2cd69 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x35aadf73 bio_free +EXPORT_SYMBOL vmlinux 0x35b08dae unregister_netdev +EXPORT_SYMBOL vmlinux 0x35c2ba9e refrigerator +EXPORT_SYMBOL vmlinux 0x35c8ca89 blk_integrity_is_initialized +EXPORT_SYMBOL vmlinux 0x35ca8cfa dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x35d283e4 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x35d6d461 set_page_dirty +EXPORT_SYMBOL vmlinux 0x35e22c70 ip6_route_output +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x36139a51 memcpy_fromiovec +EXPORT_SYMBOL vmlinux 0x36152272 netdev_err +EXPORT_SYMBOL vmlinux 0x363dfca3 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x364003da dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x36702098 nla_reserve +EXPORT_SYMBOL vmlinux 0x36748e5f open_exec +EXPORT_SYMBOL vmlinux 0x3686ea09 spi_print_msg +EXPORT_SYMBOL vmlinux 0x36958d02 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x36b332a5 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x36e360e3 __hw_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x36e5277f __dev_printk +EXPORT_SYMBOL vmlinux 0x36ea21ef dev_get_stats +EXPORT_SYMBOL vmlinux 0x36f93c58 mount_ns +EXPORT_SYMBOL vmlinux 0x36fcc761 balance_dirty_pages_ratelimited_nr +EXPORT_SYMBOL vmlinux 0x36fd1f86 get_io_context +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x3709a777 log_wait_commit +EXPORT_SYMBOL vmlinux 0x370e5a74 otg_set_transceiver +EXPORT_SYMBOL vmlinux 0x37390612 destroy_EII_client +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x376a7c5e pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x3771f56e simple_statfs +EXPORT_SYMBOL vmlinux 0x3785407f inet_recvmsg +EXPORT_SYMBOL vmlinux 0x379f5837 param_set_invbool +EXPORT_SYMBOL vmlinux 0x37a23a6c agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x37a4bccb gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c503c4 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x37cf13d5 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x37d31015 register_8022_client +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37ea921e vfsmount_lock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x37f57a80 napi_complete +EXPORT_SYMBOL vmlinux 0x37f6d1fa serio_close +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382243c5 padata_stop +EXPORT_SYMBOL vmlinux 0x3828f6bc d_rehash +EXPORT_SYMBOL vmlinux 0x3873521d file_update_time +EXPORT_SYMBOL vmlinux 0x38813710 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x388a3cf5 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x388f9128 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x389bfe0d rtc_lock +EXPORT_SYMBOL vmlinux 0x38b92846 llc_remove_pack +EXPORT_SYMBOL vmlinux 0x38c151b5 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x390b3c5f qdisc_tree_decrease_qlen +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x3980aac1 unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39bb372f dq_data_lock +EXPORT_SYMBOL vmlinux 0x39bf60af xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x39e684e8 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a2204c6 security_netlink_recv +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a541b4a pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x3a73afeb mount_nodev +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aaf6ca0 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x3ae47947 d_alloc_root +EXPORT_SYMBOL vmlinux 0x3ae71ed4 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x3b3016d3 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3b4ceb4a up_write +EXPORT_SYMBOL vmlinux 0x3b5dfa32 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x3b6b5b1b neigh_seq_start +EXPORT_SYMBOL vmlinux 0x3b76a15b atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x3b7c4038 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x3b897d2f pci_restore_state +EXPORT_SYMBOL vmlinux 0x3b9da2a0 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x3bb6d4bf pci_clear_master +EXPORT_SYMBOL vmlinux 0x3bbdbf36 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x3bc4b60f blk_end_request +EXPORT_SYMBOL vmlinux 0x3bd1b1f6 msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x3bffe990 fb_show_logo +EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c27c195 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x3c400261 d_move +EXPORT_SYMBOL vmlinux 0x3c78e159 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9ba817 scsi_print_command +EXPORT_SYMBOL vmlinux 0x3c9d1211 string_get_size +EXPORT_SYMBOL vmlinux 0x3ca9c05a sock_recvmsg +EXPORT_SYMBOL vmlinux 0x3cc706c3 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cfdf499 set_pages_nx +EXPORT_SYMBOL vmlinux 0x3d3d850a dev_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x3d541fb4 __sock_create +EXPORT_SYMBOL vmlinux 0x3d57a7ca __find_get_block +EXPORT_SYMBOL vmlinux 0x3d57b763 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x3d5df2aa wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x3d66107e proc_dostring +EXPORT_SYMBOL vmlinux 0x3d68ac87 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d8728bb memcpy_toiovecend +EXPORT_SYMBOL vmlinux 0x3d93ee61 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3db5282b tty_vhangup +EXPORT_SYMBOL vmlinux 0x3dc9eae1 dm_get_device +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de8d6ef seq_read +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0b52e4 do_truncate +EXPORT_SYMBOL vmlinux 0x3e0e9023 param_set_long +EXPORT_SYMBOL vmlinux 0x3e16b893 blk_insert_request +EXPORT_SYMBOL vmlinux 0x3e184562 new_inode +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e2d03fe skb_copy_datagram_iovec +EXPORT_SYMBOL vmlinux 0x3e43ce95 bio_clone +EXPORT_SYMBOL vmlinux 0x3e44f69d unlock_buffer +EXPORT_SYMBOL vmlinux 0x3e45e9ff register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e9889a7 filp_close +EXPORT_SYMBOL vmlinux 0x3eb91c72 scsi_device_put +EXPORT_SYMBOL vmlinux 0x3ec28389 gen_pool_free +EXPORT_SYMBOL vmlinux 0x3ec8886f param_ops_int +EXPORT_SYMBOL vmlinux 0x3ed63055 zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x3ed647c5 bio_map_kern +EXPORT_SYMBOL vmlinux 0x3edd4127 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x3ef298a6 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x3ef7b895 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f198ed1 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x3f1a505e key_payload_reserve +EXPORT_SYMBOL vmlinux 0x3f1aca96 iov_iter_copy_from_user +EXPORT_SYMBOL vmlinux 0x3f1da652 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f48b560 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x3f5c3986 llc_set_station_handler +EXPORT_SYMBOL vmlinux 0x3f71faa1 mempool_create +EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fbf6e3a tc_classify +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff62317 local_bh_disable +EXPORT_SYMBOL vmlinux 0x401e80ad lock_may_read +EXPORT_SYMBOL vmlinux 0x40256835 complete_all +EXPORT_SYMBOL vmlinux 0x4029d238 param_set_copystring +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x403a8769 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40657f7a input_register_device +EXPORT_SYMBOL vmlinux 0x4079bbd5 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x408041a6 set_binfmt +EXPORT_SYMBOL vmlinux 0x408aee05 journal_errno +EXPORT_SYMBOL vmlinux 0x408cd91e dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x4094a53d i2c_transfer +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40bfb2ea tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d62e69 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x40d7a43c netif_device_attach +EXPORT_SYMBOL vmlinux 0x40eca0ff mem_cgroup_count_vm_event +EXPORT_SYMBOL vmlinux 0x40eddbec neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x40f11b28 pcim_iomap +EXPORT_SYMBOL vmlinux 0x4108e69a fb_match_mode +EXPORT_SYMBOL vmlinux 0x413ecf14 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41499b06 bdev_read_only +EXPORT_SYMBOL vmlinux 0x41614eff sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x417f013b sock_rfree +EXPORT_SYMBOL vmlinux 0x418459f4 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4197783b brioctl_set +EXPORT_SYMBOL vmlinux 0x41c3dce5 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x420d30ab pv_mmu_ops +EXPORT_SYMBOL vmlinux 0x4211c3c1 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x421ee0bf dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x42224298 sscanf +EXPORT_SYMBOL vmlinux 0x4223077d put_tty_driver +EXPORT_SYMBOL vmlinux 0x424e309a mmc_start_req +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42977ad4 __hw_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x429df601 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x42a4bdf2 in_egroup_p +EXPORT_SYMBOL vmlinux 0x42ac19fd find_vma +EXPORT_SYMBOL vmlinux 0x42b0325e gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42dcc3d2 i2c_master_send +EXPORT_SYMBOL vmlinux 0x42dd86e6 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x42ee6fa5 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430c6a86 vfs_stat +EXPORT_SYMBOL vmlinux 0x430c88f2 sg_miter_start +EXPORT_SYMBOL vmlinux 0x4318f345 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x43261dca _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x43385ad9 acpi_pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x43a0458b blk_start_plug +EXPORT_SYMBOL vmlinux 0x43a44f8d inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x43dd3f0e i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x43ec913a put_cmsg +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4407828f fget +EXPORT_SYMBOL vmlinux 0x440e90c3 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x44357fcf mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x443cf96c kill_anon_super +EXPORT_SYMBOL vmlinux 0x44402b6f param_get_ulong +EXPORT_SYMBOL vmlinux 0x44495b86 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x4459e537 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x4476bed4 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x448f0f0d xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4491e12f tcp_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b911c3 rb_replace_node +EXPORT_SYMBOL vmlinux 0x44ba59af udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x44ceffe0 mmc_do_release_host +EXPORT_SYMBOL vmlinux 0x44e832a5 fget_raw +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ec9bf4 register_netdevice +EXPORT_SYMBOL vmlinux 0x44fd83e4 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x45044497 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x452ebe86 schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453dd45c bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x4550ba8a register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x45704798 print_hex_dump_bytes +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x459c9701 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x45bd9efd dm_table_put +EXPORT_SYMBOL vmlinux 0x45c2c90a pci_dev_driver +EXPORT_SYMBOL vmlinux 0x45d216b9 tcp_put_md5sig_pool +EXPORT_SYMBOL vmlinux 0x45d2ea81 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x45d48d6d serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x45f16fd5 iget_locked +EXPORT_SYMBOL vmlinux 0x4605a23d ida_simple_get +EXPORT_SYMBOL vmlinux 0x46186d28 have_submounts +EXPORT_SYMBOL vmlinux 0x461c8681 journal_init_inode +EXPORT_SYMBOL vmlinux 0x46214106 files_lglock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x4640a095 create_proc_entry +EXPORT_SYMBOL vmlinux 0x46595c8a vfs_lstat +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x468de36d locks_init_lock +EXPORT_SYMBOL vmlinux 0x4694e4f3 mmc_suspend_host +EXPORT_SYMBOL vmlinux 0x46b12f8e ip_check_defrag +EXPORT_SYMBOL vmlinux 0x46b67693 hex2bin +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c8ecbb module_put +EXPORT_SYMBOL vmlinux 0x46d8965f tcp_parse_options +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47108f6e dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x473b3099 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x47452ddc rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x475100c2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x479f32d6 journal_extend +EXPORT_SYMBOL vmlinux 0x47aba9da register_framebuffer +EXPORT_SYMBOL vmlinux 0x47b3f862 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x47b6a10f ftrace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x47c7b0d2 cpu_number +EXPORT_SYMBOL vmlinux 0x47ca7640 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x47d37639 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x47d9a7c8 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x47de1960 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x47e17c30 genphy_resume +EXPORT_SYMBOL vmlinux 0x480e9b9d blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x48141e12 ip6_xmit +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x4824c423 stop_tty +EXPORT_SYMBOL vmlinux 0x4829733c cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x4838d4de ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x48447f33 register_quota_format +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x487bfd6e ip_getsockopt +EXPORT_SYMBOL vmlinux 0x48b61a4b __bread +EXPORT_SYMBOL vmlinux 0x48c6cc30 __brelse +EXPORT_SYMBOL vmlinux 0x48d355a0 netdev_features_change +EXPORT_SYMBOL vmlinux 0x48d58905 read_cache_page_async +EXPORT_SYMBOL vmlinux 0x48f32db8 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x4913ab8c scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x49229b0e elevator_change +EXPORT_SYMBOL vmlinux 0x49249bc2 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x4982d9aa address_space_init_once +EXPORT_SYMBOL vmlinux 0x499e60be intel_gmch_remove +EXPORT_SYMBOL vmlinux 0x49a87210 key_type_keyring +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49c8e8cc inet_getname +EXPORT_SYMBOL vmlinux 0x49ea98bc vfs_unlink +EXPORT_SYMBOL vmlinux 0x49f63238 ps2_init +EXPORT_SYMBOL vmlinux 0x4a1375c1 find_or_create_page +EXPORT_SYMBOL vmlinux 0x4a21112a kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x4a358252 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x4a43a77d would_dump +EXPORT_SYMBOL vmlinux 0x4aad52d7 mempool_free +EXPORT_SYMBOL vmlinux 0x4ab1282c __block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4acefe21 dev_mc_add +EXPORT_SYMBOL vmlinux 0x4aef5f6f pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b06d2e7 complete +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b27b6af dev_load +EXPORT_SYMBOL vmlinux 0x4b5814ef kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b685460 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x4b825cff dev_addr_del +EXPORT_SYMBOL vmlinux 0x4b9b936d con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x4b9e9e65 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x4bb70a17 spi_release_transport +EXPORT_SYMBOL vmlinux 0x4bc4351d inet_frags_init +EXPORT_SYMBOL vmlinux 0x4bc96635 ifla_policy +EXPORT_SYMBOL vmlinux 0x4bea7577 journal_revoke +EXPORT_SYMBOL vmlinux 0x4bf0988b agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x4c0291bb vfs_writev +EXPORT_SYMBOL vmlinux 0x4c0eee1b kill_pgrp +EXPORT_SYMBOL vmlinux 0x4c1182cb bitmap_scnprintf +EXPORT_SYMBOL vmlinux 0x4c11ca9f efi +EXPORT_SYMBOL vmlinux 0x4c12bf0c sock_kmalloc +EXPORT_SYMBOL vmlinux 0x4c31674b acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp +EXPORT_SYMBOL vmlinux 0x4c4fef19 kernel_stack +EXPORT_SYMBOL vmlinux 0x4c57cd83 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x4c73daea netif_skb_features +EXPORT_SYMBOL vmlinux 0x4c8946d1 blk_complete_request +EXPORT_SYMBOL vmlinux 0x4cb882d3 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x4cbbd171 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x4cbdfaf4 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x4cd79e08 get_super +EXPORT_SYMBOL vmlinux 0x4cdb2a2b dev_mc_flush +EXPORT_SYMBOL vmlinux 0x4d1023f8 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d3ff3ae tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x4d4b9681 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x4d903c28 dm_io +EXPORT_SYMBOL vmlinux 0x4d95bde3 pci_map_rom +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4dba7ae6 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x4dc45be9 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x4dc8f5ea i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x4dc9f6f6 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x4dd71772 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy +EXPORT_SYMBOL vmlinux 0x4de64f18 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df78316 ihold +EXPORT_SYMBOL vmlinux 0x4e069249 security_tun_dev_post_create +EXPORT_SYMBOL vmlinux 0x4e21999c acpi_get_child +EXPORT_SYMBOL vmlinux 0x4e29a691 tcp_v4_md5_do_add +EXPORT_SYMBOL vmlinux 0x4e2b8208 llc_mac_hdr_init +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e406113 writeback_inodes_sb_if_idle +EXPORT_SYMBOL vmlinux 0x4e52da0c journal_clear_err +EXPORT_SYMBOL vmlinux 0x4e631fe8 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7a2ff1 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x4e9684dc redraw_screen +EXPORT_SYMBOL vmlinux 0x4e99a3d3 __nla_reserve +EXPORT_SYMBOL vmlinux 0x4ea42dfe __register_chrdev +EXPORT_SYMBOL vmlinux 0x4ea49942 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x4edd72f7 block_all_signals +EXPORT_SYMBOL vmlinux 0x4eed79f9 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f25fac9 thermal_cooling_device_register +EXPORT_SYMBOL vmlinux 0x4f3073c9 __ht_create_irq +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f48219e __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x4f48c791 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x4f556465 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7980c0 vfs_fsync +EXPORT_SYMBOL vmlinux 0x4f8a8b07 generic_setlease +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f98eaa6 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff1c9bc populate_rootfs_wait +EXPORT_SYMBOL vmlinux 0x5007227d dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x500fd48e set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x50211ee3 tcp_free_md5sig_pool +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x505fd205 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x506746b6 getrawmonotonic +EXPORT_SYMBOL vmlinux 0x50720c5f snprintf +EXPORT_SYMBOL vmlinux 0x507f68c7 netdev_change_features +EXPORT_SYMBOL vmlinux 0x5094134f splice_from_pipe_begin +EXPORT_SYMBOL vmlinux 0x50a81fd1 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x50ab4c6d files_lglock_global_lock +EXPORT_SYMBOL vmlinux 0x50b701d2 iput +EXPORT_SYMBOL vmlinux 0x50c1e898 file_open_root +EXPORT_SYMBOL vmlinux 0x50d216c0 skb_clone +EXPORT_SYMBOL vmlinux 0x50db405b tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x50e22388 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x50fd6e41 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x510c2535 xz_dec_run +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511ab427 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x51283502 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x512b9e65 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x513ff36c journal_create +EXPORT_SYMBOL vmlinux 0x51555755 arp_invalidate +EXPORT_SYMBOL vmlinux 0x516d66d1 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x5176bece udplite_prot +EXPORT_SYMBOL vmlinux 0x517c0405 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x51864563 seq_open_private +EXPORT_SYMBOL vmlinux 0x51a8cabe netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x51ab6050 rt6_lookup +EXPORT_SYMBOL vmlinux 0x51bb18d3 inet_frag_find +EXPORT_SYMBOL vmlinux 0x51ce5ad3 files_lglock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d3d8f1 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x51dce73b xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x51e291f3 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x521e7bee agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x52272275 skb_put +EXPORT_SYMBOL vmlinux 0x52425751 pci_choose_state +EXPORT_SYMBOL vmlinux 0x526551b5 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x52760ca9 getnstimeofday +EXPORT_SYMBOL vmlinux 0x527a3c79 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x527b4c67 ilookup +EXPORT_SYMBOL vmlinux 0x5295f485 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x529d4b63 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x52a01a5a journal_flush +EXPORT_SYMBOL vmlinux 0x52a6a90b dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x52b493bd init_net +EXPORT_SYMBOL vmlinux 0x52c6cd34 journal_dirty_data +EXPORT_SYMBOL vmlinux 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531af264 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x535032cc swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x53526578 d_genocide +EXPORT_SYMBOL vmlinux 0x536cc511 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x53822150 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x538383c0 unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x538922bb __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x5396ada6 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x5397f2d3 posix_acl_init +EXPORT_SYMBOL vmlinux 0x53c9f3bb journal_wipe +EXPORT_SYMBOL vmlinux 0x53ced627 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x53ef94a6 sk_wait_data +EXPORT_SYMBOL vmlinux 0x53f04062 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x53f6ffbc wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x540676ae bdi_init +EXPORT_SYMBOL vmlinux 0x540f05b4 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x54226e09 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x5427207d i2c_use_client +EXPORT_SYMBOL vmlinux 0x542ea7c8 simple_fill_super +EXPORT_SYMBOL vmlinux 0x5434a29d tcp_shutdown +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54447979 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x5452cc8d vfs_rmdir +EXPORT_SYMBOL vmlinux 0x54568b75 register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x546a1f5f lookup_hash +EXPORT_SYMBOL vmlinux 0x548963d0 __netdev_printk +EXPORT_SYMBOL vmlinux 0x54a3d287 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54ab7a9d phy_start +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e75b5b make_bad_inode +EXPORT_SYMBOL vmlinux 0x54f1bcc6 journal_init_dev +EXPORT_SYMBOL vmlinux 0x5525f2dd agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x556742b2 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x55678b4b bsearch +EXPORT_SYMBOL vmlinux 0x556c3f98 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x556df2c4 key_put +EXPORT_SYMBOL vmlinux 0x558256c2 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x55899ed2 register_md_personality +EXPORT_SYMBOL vmlinux 0x5594be03 bitmap_remap +EXPORT_SYMBOL vmlinux 0x5597abce n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x55a1620d kobject_get +EXPORT_SYMBOL vmlinux 0x55b19186 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x55b7ccda swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x55ce2e0f abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x55d1f415 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x55deb485 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x5600904f fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x5604e467 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x5614b010 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5642793a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x567f7178 __d_drop +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56c9fdbf abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x56d6265d acpi_get_physical_device +EXPORT_SYMBOL vmlinux 0x56ecefde netif_carrier_on +EXPORT_SYMBOL vmlinux 0x56f1c4a6 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x5723624a cfb_fillrect +EXPORT_SYMBOL vmlinux 0x57271631 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x57351bc4 kernel_bind +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5779c4ed compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x57909ede pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x57a352c6 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x57a6ccd0 down_read +EXPORT_SYMBOL vmlinux 0x57b57ebe jiffies_to_timespec +EXPORT_SYMBOL vmlinux 0x57db7242 mangle_path +EXPORT_SYMBOL vmlinux 0x57e33b64 scsi_add_device +EXPORT_SYMBOL vmlinux 0x5830522e generic_make_request +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x585ba4b1 vfs_follow_link +EXPORT_SYMBOL vmlinux 0x5860aad4 add_wait_queue +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x58726c06 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x587b2b57 bmap +EXPORT_SYMBOL vmlinux 0x58852612 __scm_send +EXPORT_SYMBOL vmlinux 0x5892ef56 pci_select_bars +EXPORT_SYMBOL vmlinux 0x58ba0853 elv_rb_del +EXPORT_SYMBOL vmlinux 0x58cfd64b md_register_thread +EXPORT_SYMBOL vmlinux 0x58fcb65c bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x58fd5929 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x5918c982 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x5926318e cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x59294a43 mdiobus_register +EXPORT_SYMBOL vmlinux 0x592ad122 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x592fba78 kset_register +EXPORT_SYMBOL vmlinux 0x5934392b fb_register_client +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595e568f inet_accept +EXPORT_SYMBOL vmlinux 0x596f93cf tcp_prot +EXPORT_SYMBOL vmlinux 0x5993078e mpage_readpage +EXPORT_SYMBOL vmlinux 0x59ac4ea2 write_one_page +EXPORT_SYMBOL vmlinux 0x59afe21c pm860x_page_bulk_write +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59ca3dda seq_putc +EXPORT_SYMBOL vmlinux 0x59d696b6 register_module_notifier +EXPORT_SYMBOL vmlinux 0x59d7329d pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x59e70f93 __send_remote_softirq +EXPORT_SYMBOL vmlinux 0x59f300eb mutex_unlock +EXPORT_SYMBOL vmlinux 0x5a2c7c08 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x5a3346f9 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x5a34a45c __kmalloc +EXPORT_SYMBOL vmlinux 0x5a46cfcb sock_no_accept +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5a6f3c83 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x5a744b86 netlink_set_nonroot +EXPORT_SYMBOL vmlinux 0x5aa40c05 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5acf5b60 __elv_add_request +EXPORT_SYMBOL vmlinux 0x5acfcb3e mount_single +EXPORT_SYMBOL vmlinux 0x5ad4774f mii_link_ok +EXPORT_SYMBOL vmlinux 0x5ae8fb29 block_read_full_page +EXPORT_SYMBOL vmlinux 0x5aeb145f complete_and_exit +EXPORT_SYMBOL vmlinux 0x5b3b1cb8 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x5b51c6a7 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x5b5d729c ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x5b722996 dev_uc_add +EXPORT_SYMBOL vmlinux 0x5b796235 revalidate_disk +EXPORT_SYMBOL vmlinux 0x5c1066a0 set_pages_wb +EXPORT_SYMBOL vmlinux 0x5c178a5d padata_add_cpu +EXPORT_SYMBOL vmlinux 0x5c1a5b0c dma_supported +EXPORT_SYMBOL vmlinux 0x5c39a4b4 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x5c3a0aff netif_device_detach +EXPORT_SYMBOL vmlinux 0x5c3edd59 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x5c455b77 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x5c8b5ce8 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x5ca4f92f tcp_read_sock +EXPORT_SYMBOL vmlinux 0x5cb56827 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x5cbf2251 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x5cc05018 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5cc8e015 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x5cdc84f9 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x5ce0945d scsi_init_io +EXPORT_SYMBOL vmlinux 0x5ceabf4b phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x5d38d590 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x5d41e1af d_validate +EXPORT_SYMBOL vmlinux 0x5d435c1c vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x5d48bfb4 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x5d50de41 d_clear_need_lookup +EXPORT_SYMBOL vmlinux 0x5d53af8e simple_link +EXPORT_SYMBOL vmlinux 0x5d5461cc cdrom_open +EXPORT_SYMBOL vmlinux 0x5d5b5a16 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d88ed17 generic_write_sync +EXPORT_SYMBOL vmlinux 0x5d960e78 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x5db98548 put_disk +EXPORT_SYMBOL vmlinux 0x5e037c33 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x5e20a7ee ilookup5 +EXPORT_SYMBOL vmlinux 0x5e300579 bio_put +EXPORT_SYMBOL vmlinux 0x5e6947f7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x5e69737f truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x5e94b70a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea33cb5 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x5ea8fba4 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb4c702 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x5ec1698f scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5edd0762 bin2bcd +EXPORT_SYMBOL vmlinux 0x5ee2e031 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x5ef37164 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f2fca7d skb_copy_bits +EXPORT_SYMBOL vmlinux 0x5f44e505 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x5f58f676 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x5f5b29bb ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x5f5d3c40 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x5f604c98 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x5f651c06 ethtool_op_get_ufo +EXPORT_SYMBOL vmlinux 0x5f660c20 prepare_creds +EXPORT_SYMBOL vmlinux 0x5f86bd48 bdi_destroy +EXPORT_SYMBOL vmlinux 0x5f92ea15 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x5fa17c73 sk_filter_release_rcu +EXPORT_SYMBOL vmlinux 0x5fc37010 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr +EXPORT_SYMBOL vmlinux 0x5fe2823d cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x5ff42b08 acpi_video_get_capabilities +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x603cb693 ____pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x60583f2b alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6072ec69 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x60907c3c nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x6099077f tty_get_baud_rate +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60d56183 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x60f21583 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x6120803e bio_alloc +EXPORT_SYMBOL vmlinux 0x612207a5 km_state_notify +EXPORT_SYMBOL vmlinux 0x612390ad netpoll_set_trap +EXPORT_SYMBOL vmlinux 0x6125e1a7 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x6128315b i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x615163ae ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x616f36bd tcp_ioctl +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x6193c651 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x619e82bd kobject_put +EXPORT_SYMBOL vmlinux 0x61a2837a nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61d4f1a1 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x61f6d7e3 bio_copy_user +EXPORT_SYMBOL vmlinux 0x61fe08b7 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x6202955d __inet6_hash +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x621f9415 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x62570921 mmc_card_awake +EXPORT_SYMBOL vmlinux 0x625f60b4 vfs_create +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62963068 lease_modify +EXPORT_SYMBOL vmlinux 0x629994fe clip_tbl_hook +EXPORT_SYMBOL vmlinux 0x629b3920 alloc_pages_exact_nid +EXPORT_SYMBOL vmlinux 0x62a5512a starget_for_each_device +EXPORT_SYMBOL vmlinux 0x62afd48b tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x62f81561 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x62fe9db3 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x6301cc33 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x630b8d31 bdget_disk +EXPORT_SYMBOL vmlinux 0x630f782c compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6332cc1a audit_log_start +EXPORT_SYMBOL vmlinux 0x6337dfce ab8500_gpadc_convert +EXPORT_SYMBOL vmlinux 0x63533489 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x6370e3e8 llc_build_and_send_ui_pkt +EXPORT_SYMBOL vmlinux 0x6395be94 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x63aef7f2 dma_async_memcpy_buf_to_buf +EXPORT_SYMBOL vmlinux 0x63e80b96 vc_resize +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ecad53 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64045770 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x6406668b skb_copy_and_csum_datagram_iovec +EXPORT_SYMBOL vmlinux 0x643eaec8 param_get_string +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x6458005b mpage_writepage +EXPORT_SYMBOL vmlinux 0x6478134c ec_burst_enable +EXPORT_SYMBOL vmlinux 0x64826d20 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9cbb8 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x64b294d8 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x64ce6c50 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x64ddc147 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64f2f7b0 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x650f8546 ip_mc_rejoin_groups +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65291cff timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65414e67 dev_valid_name +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x65699ecf scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x658f4403 pci_remove_behind_bridge +EXPORT_SYMBOL vmlinux 0x659a64d0 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x65b8d756 dquot_initialize +EXPORT_SYMBOL vmlinux 0x65bba13d inode_init_owner +EXPORT_SYMBOL vmlinux 0x65d5bbee ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x65d8bab5 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65df0444 journal_force_commit +EXPORT_SYMBOL vmlinux 0x6605f97f flex_array_clear +EXPORT_SYMBOL vmlinux 0x661d1490 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x66441b06 journal_release_buffer +EXPORT_SYMBOL vmlinux 0x6648d4bf datagram_poll +EXPORT_SYMBOL vmlinux 0x665be595 generic_show_options +EXPORT_SYMBOL vmlinux 0x665d06e4 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x66795b2b pci_save_state +EXPORT_SYMBOL vmlinux 0x668da8d5 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x66a67dab flex_array_shrink +EXPORT_SYMBOL vmlinux 0x66ae0b0f scsi_dma_map +EXPORT_SYMBOL vmlinux 0x66d0ee54 vfsmount_lock_global_unlock +EXPORT_SYMBOL vmlinux 0x66d4bfcf xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x66d72a03 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x66e3678e __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x67053080 current_kernel_time +EXPORT_SYMBOL vmlinux 0x6720d7ee tcf_exts_change +EXPORT_SYMBOL vmlinux 0x672144bd strlcpy +EXPORT_SYMBOL vmlinux 0x6725401d d_alloc +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672a4ea3 vmap +EXPORT_SYMBOL vmlinux 0x673737e7 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x675d658b devm_ioremap +EXPORT_SYMBOL vmlinux 0x6767b99f journal_set_features +EXPORT_SYMBOL vmlinux 0x678e8f36 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x67a0306a percpu_counter_set +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67d346d2 mntput +EXPORT_SYMBOL vmlinux 0x67d396b0 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x682c73df skb_dequeue +EXPORT_SYMBOL vmlinux 0x686e6d38 journal_forget +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68aca4ad down +EXPORT_SYMBOL vmlinux 0x68ae9487 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x68bd5c31 dev_set_group +EXPORT_SYMBOL vmlinux 0x68c8a44f may_umount +EXPORT_SYMBOL vmlinux 0x68f1ec9d file_sb_list_del +EXPORT_SYMBOL vmlinux 0x69096df0 md_integrity_register +EXPORT_SYMBOL vmlinux 0x690b2b99 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x693f8a36 register_console +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x698f2512 kill_pid +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69a47e2d d_obtain_alias +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b83b37 km_state_expired +EXPORT_SYMBOL vmlinux 0x69b9d35a processors +EXPORT_SYMBOL vmlinux 0x69c39521 napi_frags_skb +EXPORT_SYMBOL vmlinux 0x69cb1a8f put_io_context +EXPORT_SYMBOL vmlinux 0x69d38ed9 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x69d94c1c nla_append +EXPORT_SYMBOL vmlinux 0x69e0c525 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x69e27c7a bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x69e2a0b1 simple_lookup +EXPORT_SYMBOL vmlinux 0x69fdb8b3 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x6a0009d9 __netif_schedule +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a11d9ad __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x6a1671e7 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x6a48b38a scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a61f5f9 con_is_bound +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6aa46311 seq_open +EXPORT_SYMBOL vmlinux 0x6aabf44f truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6acfbeb4 seq_escape +EXPORT_SYMBOL vmlinux 0x6ad2e78d swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6add9376 truncate_setsize +EXPORT_SYMBOL vmlinux 0x6afe9c09 udp_proc_register +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b459618 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x6b460967 idr_get_next +EXPORT_SYMBOL vmlinux 0x6b533cbc tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x6b83de65 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x6b9f6e1c key_reject_and_link +EXPORT_SYMBOL vmlinux 0x6ba356b6 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc4b362 register_exec_domain +EXPORT_SYMBOL vmlinux 0x6bc92bd9 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x6bcc52dc scsi_register +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c277da6 pci_request_regions +EXPORT_SYMBOL vmlinux 0x6c2a3e44 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL vmlinux 0x6c3d3984 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x6c497b0f tcp_connect +EXPORT_SYMBOL vmlinux 0x6c5101d8 percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6cdb31 llc_sap_list_lock +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c88ac67 iget5_locked +EXPORT_SYMBOL vmlinux 0x6c93c61f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x6c9c514b dev_mc_init +EXPORT_SYMBOL vmlinux 0x6cb60b9b proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x6ce1ea05 test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x6d00bac3 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x6d0aba34 wait_for_completion +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d27ef64 __bitmap_empty +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d6cbadc rb_last +EXPORT_SYMBOL vmlinux 0x6d749bf9 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x6d7d3644 __block_write_begin +EXPORT_SYMBOL vmlinux 0x6da08456 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x6db44a84 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x6dee6d79 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df5a6d0 uart_register_driver +EXPORT_SYMBOL vmlinux 0x6df86726 take_over_console +EXPORT_SYMBOL vmlinux 0x6dfe8fb9 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x6e297a62 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x6e4cacf6 i8042_check_port_owner +EXPORT_SYMBOL vmlinux 0x6e5af154 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e912b66 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ec10841 inet_listen +EXPORT_SYMBOL vmlinux 0x6ec53580 d_find_alias +EXPORT_SYMBOL vmlinux 0x6ecd0340 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x6ef30363 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x6f160a27 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x6f18f83b i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x6f1c9e50 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x6f29a9b9 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x6f4c812f __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv +EXPORT_SYMBOL vmlinux 0x6f73315a skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x6f85d4a2 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcdf27a blk_get_request +EXPORT_SYMBOL vmlinux 0x6fd1f50f inode_add_bytes +EXPORT_SYMBOL vmlinux 0x6fd880e2 netdev_warn +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6fff393f time_to_tm +EXPORT_SYMBOL vmlinux 0x7026f1bc kobject_set_name +EXPORT_SYMBOL vmlinux 0x70283e79 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x702b5636 dst_release +EXPORT_SYMBOL vmlinux 0x702b6c54 udplite_table +EXPORT_SYMBOL vmlinux 0x7039c25a request_key +EXPORT_SYMBOL vmlinux 0x703b4352 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x703ba0c6 single_release +EXPORT_SYMBOL vmlinux 0x703d697d user_revoke +EXPORT_SYMBOL vmlinux 0x70445c74 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x704b5669 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x705af41e buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x707ffd49 pci_set_master +EXPORT_SYMBOL vmlinux 0x70927fca dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x709e60ef tcp_splice_read +EXPORT_SYMBOL vmlinux 0x70bc17d7 inode_wait +EXPORT_SYMBOL vmlinux 0x70c2c023 follow_pfn +EXPORT_SYMBOL vmlinux 0x70d053fd try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x710601fa bio_add_page +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x71449469 proc_net_netfilter +EXPORT_SYMBOL vmlinux 0x715d3582 scsi_setup_fs_cmnd +EXPORT_SYMBOL vmlinux 0x71611b0a bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x7166f117 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x719e5677 dqput +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71e3cecb up +EXPORT_SYMBOL vmlinux 0x71f6eb38 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x71fc4259 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x7234eafb otg_state_string +EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x7278bf44 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x728f9ef4 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x729d512b vm_event_states +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72aa5ef7 get_gendisk +EXPORT_SYMBOL vmlinux 0x72aa82c6 param_ops_charp +EXPORT_SYMBOL vmlinux 0x72afa324 is_bad_inode +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72bf2140 mtrr_add +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x73041adc n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x730ff363 param_set_uint +EXPORT_SYMBOL vmlinux 0x732b7833 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x7349b7fd kernel_getpeername +EXPORT_SYMBOL vmlinux 0x734c7426 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735ccd9e netif_receive_skb +EXPORT_SYMBOL vmlinux 0x736c79dc param_get_byte +EXPORT_SYMBOL vmlinux 0x737a9711 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x737de5e9 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x738a8909 scsi_release_buffers +EXPORT_SYMBOL vmlinux 0x73a78bc4 downgrade_write +EXPORT_SYMBOL vmlinux 0x73a903c4 vfsmount_lock_local_lock +EXPORT_SYMBOL vmlinux 0x73abe996 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x73c89d42 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x73ee4045 prepare_binprm +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7412a42d mmc_host_lazy_disable +EXPORT_SYMBOL vmlinux 0x7469fcfe radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x74815e0a generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74a1fa25 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cc1cbe unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x74db7cbf simple_release_fs +EXPORT_SYMBOL vmlinux 0x74eeecc6 iget_failed +EXPORT_SYMBOL vmlinux 0x74ef96fc dcache_dir_close +EXPORT_SYMBOL vmlinux 0x7503ddae generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x751b2247 param_get_bool +EXPORT_SYMBOL vmlinux 0x7520e645 generic_permission +EXPORT_SYMBOL vmlinux 0x752ddb40 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x75497aa9 ip_route_input_common +EXPORT_SYMBOL vmlinux 0x7551debc panic_notifier_list +EXPORT_SYMBOL vmlinux 0x75535d61 tty_name +EXPORT_SYMBOL vmlinux 0x756b3cee mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x756b65c8 dentry_open +EXPORT_SYMBOL vmlinux 0x756e6992 strnicmp +EXPORT_SYMBOL vmlinux 0x758e6e45 pci_set_ltr +EXPORT_SYMBOL vmlinux 0x75ac0197 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75c343cc journal_ack_err +EXPORT_SYMBOL vmlinux 0x75d015bf unregister_snap_client +EXPORT_SYMBOL vmlinux 0x75f1bcb1 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x75f23fa2 ethtool_op_set_tso +EXPORT_SYMBOL vmlinux 0x75f8e321 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760b437a unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x7628f3c7 this_cpu_off +EXPORT_SYMBOL vmlinux 0x76354ac5 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x764d45e2 simple_setattr +EXPORT_SYMBOL vmlinux 0x767b9705 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x76869ac8 rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x76b718ab input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x76b746e7 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x76bf656d __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x76c31308 unlock_super +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x7713aac9 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x773a9c94 blk_iopoll_enabled +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a11dfb pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x77a46bd7 journal_restart +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77be64e9 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x77df0847 __set_personality +EXPORT_SYMBOL vmlinux 0x77ea7fa5 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x77ecac9f zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x77fa5d1f ns_to_timespec +EXPORT_SYMBOL vmlinux 0x7814edcf ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x7824898c nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x783bbb98 dns_query +EXPORT_SYMBOL vmlinux 0x784a0023 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x784ed377 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x785d4b9a scsi_nonblockable_ioctl +EXPORT_SYMBOL vmlinux 0x786f3e03 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops +EXPORT_SYMBOL vmlinux 0x7878d336 tc_classify_compat +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788f5b95 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x78bb3e24 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0x78bb6006 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x78ca280c account_page_writeback +EXPORT_SYMBOL vmlinux 0x78cffaa8 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e0ac5a intel_gtt_map_memory +EXPORT_SYMBOL vmlinux 0x78e3c224 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x7905968a bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x790b47ce scsi_execute_req +EXPORT_SYMBOL vmlinux 0x7922f57d __nla_put +EXPORT_SYMBOL vmlinux 0x79238873 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x792d8f43 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x792efd6c netlink_unicast +EXPORT_SYMBOL vmlinux 0x793b65cd netlink_set_err +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797bb1b5 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x79a38e61 ___ratelimit +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x7a06aea9 mmc_host_disable +EXPORT_SYMBOL vmlinux 0x7a1390f7 param_set_bool +EXPORT_SYMBOL vmlinux 0x7a27c184 ewma_init +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a50a315 files_lglock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x7a5a7017 freeze_bdev +EXPORT_SYMBOL vmlinux 0x7a695663 I_BDEV +EXPORT_SYMBOL vmlinux 0x7a7c1baa generic_file_aio_read +EXPORT_SYMBOL vmlinux 0x7a7e30d2 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x7a8adefe __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x7a9bae32 poll_initwait +EXPORT_SYMBOL vmlinux 0x7a9fc136 register_con_driver +EXPORT_SYMBOL vmlinux 0x7aa4a223 arp_send +EXPORT_SYMBOL vmlinux 0x7aae7c6d pci_enable_msi_block +EXPORT_SYMBOL vmlinux 0x7ad35061 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x7ae73de1 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7afe2daf account_page_dirtied +EXPORT_SYMBOL vmlinux 0x7b03848a verify_mem_not_deleted +EXPORT_SYMBOL vmlinux 0x7b0c84c4 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7b495743 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b56bd05 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x7b5f5927 mem_cgroup_update_page_stat +EXPORT_SYMBOL vmlinux 0x7b71c6d3 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x7b8f4c40 key_create_or_update +EXPORT_SYMBOL vmlinux 0x7b9a6116 intel_agp_enabled +EXPORT_SYMBOL vmlinux 0x7bdb9e6f scsi_ioctl +EXPORT_SYMBOL vmlinux 0x7bff3be7 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x7c0c1c7e security_path_chmod +EXPORT_SYMBOL vmlinux 0x7c28387c qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x7c2ae4e1 qdisc_reset +EXPORT_SYMBOL vmlinux 0x7c3dbaac kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c60d66e getname +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c76ec5b pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x7c900f55 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x7c904ded unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x7c9f31d1 sock_wake_async +EXPORT_SYMBOL vmlinux 0x7ca46555 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb25500 dquot_resume +EXPORT_SYMBOL vmlinux 0x7ce0ae7c param_get_long +EXPORT_SYMBOL vmlinux 0x7cedc658 idr_remove_all +EXPORT_SYMBOL vmlinux 0x7cf0e95c elv_rb_add +EXPORT_SYMBOL vmlinux 0x7cf9ebb6 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x7cfd2cfe dev_crit +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d301aa9 cap_file_mmap +EXPORT_SYMBOL vmlinux 0x7d58ee04 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x7d5c8d26 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x7d6a2d3a set_blocksize +EXPORT_SYMBOL vmlinux 0x7d714e11 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x7d7232f8 ps2_end_command +EXPORT_SYMBOL vmlinux 0x7d94ba39 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dd03920 init_buffer +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7ddaeee9 bio_sector_offset +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfc71e6 journal_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x7dffbc56 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x7e11e053 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7e27c168 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x7e2ab033 inode_init_always +EXPORT_SYMBOL vmlinux 0x7e2b97e5 scsi_put_command +EXPORT_SYMBOL vmlinux 0x7e394c4e sysctl_local_reserved_ports +EXPORT_SYMBOL vmlinux 0x7e48d55b netdev_set_master +EXPORT_SYMBOL vmlinux 0x7e64857d sock_no_mmap +EXPORT_SYMBOL vmlinux 0x7e911c05 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x7e9ebb05 kernel_thread +EXPORT_SYMBOL vmlinux 0x7eaeb4d4 dma_async_memcpy_pg_to_pg +EXPORT_SYMBOL vmlinux 0x7ec62bdd read_cache_pages +EXPORT_SYMBOL vmlinux 0x7ec8f9a7 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x7ec9bfbc strncpy +EXPORT_SYMBOL vmlinux 0x7ed10906 spi_dv_device +EXPORT_SYMBOL vmlinux 0x7ee107d6 __devm_request_region +EXPORT_SYMBOL vmlinux 0x7f016fe6 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x7f187112 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x7f18b194 kacpi_hotplug_wq +EXPORT_SYMBOL vmlinux 0x7f1f077f pskb_copy +EXPORT_SYMBOL vmlinux 0x7f1f23ed blk_queue_merge_bvec +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2d43d4 register_qdisc +EXPORT_SYMBOL vmlinux 0x7f658e80 _raw_write_lock +EXPORT_SYMBOL vmlinux 0x7f668023 pci_dev_get +EXPORT_SYMBOL vmlinux 0x7f69aa23 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x7f85f3fa wait_on_sync_kiocb +EXPORT_SYMBOL vmlinux 0x7fae8b74 bio_split +EXPORT_SYMBOL vmlinux 0x7fc3155e blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x7fe20afb gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x7fe3b51d cap_netlink_recv +EXPORT_SYMBOL vmlinux 0x7fef1e5c inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x805d56ee inet_shutdown +EXPORT_SYMBOL vmlinux 0x808d5efd dev_printk +EXPORT_SYMBOL vmlinux 0x80cd6b26 input_grab_device +EXPORT_SYMBOL vmlinux 0x80db3ef7 pci_get_slot +EXPORT_SYMBOL vmlinux 0x80eb3415 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x810b3618 param_ops_string +EXPORT_SYMBOL vmlinux 0x811f80f8 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x81317012 tmem_enabled +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x81499317 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815cfd94 genl_register_family_with_ops +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x817295fb nf_hook_slow +EXPORT_SYMBOL vmlinux 0x8173e60e unregister_md_personality +EXPORT_SYMBOL vmlinux 0x81880639 vc_cons +EXPORT_SYMBOL vmlinux 0x818ba010 dquot_destroy +EXPORT_SYMBOL vmlinux 0x818f2b93 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x81b9dbef pci_get_class +EXPORT_SYMBOL vmlinux 0x81d10f5f trace_seq_putc +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820eb63f unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x8228a5b5 kernel_connect +EXPORT_SYMBOL vmlinux 0x8251bcc3 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x8260686f bitmap_find_next_zero_area +EXPORT_SYMBOL vmlinux 0x8260cf6e pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x8262177f tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x826b9936 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x829d4e08 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b3ad5e mmc_release_host +EXPORT_SYMBOL vmlinux 0x82b7c556 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x82d740d3 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x82dfdbb2 mddev_congested +EXPORT_SYMBOL vmlinux 0x82e6b307 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x82e9c083 csum_partial_copy_fromiovecend +EXPORT_SYMBOL vmlinux 0x82fa8458 journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x830e2b3a mmc_regulator_set_ocr +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x831197f4 kill_fasync +EXPORT_SYMBOL vmlinux 0x831e77a0 create_mnt_ns +EXPORT_SYMBOL vmlinux 0x8325ac4e wireless_spy_update +EXPORT_SYMBOL vmlinux 0x832965b4 request_key_async +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x834478ca xfrm_state_update +EXPORT_SYMBOL vmlinux 0x835db188 input_set_capability +EXPORT_SYMBOL vmlinux 0x836985ac __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x8373f3b6 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x8378ccb5 spi_display_xfer_agreement +EXPORT_SYMBOL vmlinux 0x83800bfa kref_init +EXPORT_SYMBOL vmlinux 0x8384a2c5 tty_unlock +EXPORT_SYMBOL vmlinux 0x83938d0b page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x83a476ce bitmap_scnlistprintf +EXPORT_SYMBOL vmlinux 0x83b1be04 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x83d868bf mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x83da2b54 mii_check_link +EXPORT_SYMBOL vmlinux 0x83f1b22c dquot_file_open +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x841b2e9d inet_select_addr +EXPORT_SYMBOL vmlinux 0x841cc590 acpi_root_dir +EXPORT_SYMBOL vmlinux 0x842ff38f llc_add_pack +EXPORT_SYMBOL vmlinux 0x8436f8e3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x84589dd2 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x846bcc01 dm_table_get +EXPORT_SYMBOL vmlinux 0x847d1f82 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x848e82ae blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x848ee70c idr_remove +EXPORT_SYMBOL vmlinux 0x84c066b6 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x84ce9b41 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x84d13369 serio_interrupt +EXPORT_SYMBOL vmlinux 0x84d4aa7e bh_submit_read +EXPORT_SYMBOL vmlinux 0x84eb3623 seq_path +EXPORT_SYMBOL vmlinux 0x84eebca2 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x84efc1b6 inet_addr_type +EXPORT_SYMBOL vmlinux 0x84f9e587 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x85414208 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x8556df7a gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856cd943 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x856dab93 set_current_groups +EXPORT_SYMBOL vmlinux 0x8577d38a inet_del_protocol +EXPORT_SYMBOL vmlinux 0x85aa3908 __rta_fill +EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85adbeaf fd_install +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85ce6fd0 dev_add_pack +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85fb5fcf kernel_listen +EXPORT_SYMBOL vmlinux 0x85fe07a6 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x86288f54 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x8635839e acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x8636625b register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x8638d875 genl_unregister_ops +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a34599 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x86a5226e path_is_under +EXPORT_SYMBOL vmlinux 0x86b420fa agp_bind_memory +EXPORT_SYMBOL vmlinux 0x86b64c67 dev_alert +EXPORT_SYMBOL vmlinux 0x86b9373e unregister_8022_client +EXPORT_SYMBOL vmlinux 0x86bfae20 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x86c2ae22 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x86c647fa tty_devnum +EXPORT_SYMBOL vmlinux 0x86c7146d vfs_fstat +EXPORT_SYMBOL vmlinux 0x86d5255f _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x86deeb4d __get_page_tail +EXPORT_SYMBOL vmlinux 0x86f8df56 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870a7ab9 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x870bf928 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x870fbc76 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872e943d ip_fragment +EXPORT_SYMBOL vmlinux 0x8745357d bd_set_size +EXPORT_SYMBOL vmlinux 0x87489f49 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x874e8573 update_region +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x878025bb bdget +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87a487b3 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x87a7fcb3 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87bb343a ata_print_version +EXPORT_SYMBOL vmlinux 0x87bdd628 pci_remove_bus_device +EXPORT_SYMBOL vmlinux 0x87c58a96 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x87ee3000 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x87f61f2c fb_find_mode +EXPORT_SYMBOL vmlinux 0x8800428e proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x880e56df tcp_child_process +EXPORT_SYMBOL vmlinux 0x881039d0 zlib_inflate +EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x8834396c mod_timer +EXPORT_SYMBOL vmlinux 0x88520511 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x8857c7ae i2c_register_driver +EXPORT_SYMBOL vmlinux 0x88765042 vfs_readv +EXPORT_SYMBOL vmlinux 0x887e0be0 journal_start_commit +EXPORT_SYMBOL vmlinux 0x888065a8 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x88975702 block_truncate_page +EXPORT_SYMBOL vmlinux 0x88d2f242 journal_abort +EXPORT_SYMBOL vmlinux 0x88dc55cf cdev_init +EXPORT_SYMBOL vmlinux 0x88e6fae6 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x891f6752 dm_put_device +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x8934065c inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x894fbdca acpi_bus_start +EXPORT_SYMBOL vmlinux 0x895f9787 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x89718acd tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x897473df mktime +EXPORT_SYMBOL vmlinux 0x898c1dc7 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x899f13a1 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c7589f pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x89c79787 eth_header_cache +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d66811 build_ehash_secret +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a601297 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x8a7428f0 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aacfd26 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x8aaff80e jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x8ab87956 ata_link_printk +EXPORT_SYMBOL vmlinux 0x8abdca8d cfb_imageblit +EXPORT_SYMBOL vmlinux 0x8ad5b829 tcp_tso_segment +EXPORT_SYMBOL vmlinux 0x8ae99234 lock_rename +EXPORT_SYMBOL vmlinux 0x8b177e59 skb_recycle +EXPORT_SYMBOL vmlinux 0x8b1a7a66 pcie_aspm_enabled +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b38c8ba mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x8b5f4a2e IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7fe311 kmemdup +EXPORT_SYMBOL vmlinux 0x8b81faee __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x8b895699 d_path +EXPORT_SYMBOL vmlinux 0x8b922c0f __strnlen_user +EXPORT_SYMBOL vmlinux 0x8b965091 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b99deaf _dev_info +EXPORT_SYMBOL vmlinux 0x8ba15f29 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x8ba63801 mount_bdev +EXPORT_SYMBOL vmlinux 0x8baa8bf7 ps2_drain +EXPORT_SYMBOL vmlinux 0x8bbed5d1 splice_from_pipe_feed +EXPORT_SYMBOL vmlinux 0x8bc1dbde send_sig_info +EXPORT_SYMBOL vmlinux 0x8bc9d28b del_gendisk +EXPORT_SYMBOL vmlinux 0x8bca3d33 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x8bce592b eth_header +EXPORT_SYMBOL vmlinux 0x8bdd83bf xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x8c067c9a vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x8c096216 wake_up_process +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c289d6e phy_connect +EXPORT_SYMBOL vmlinux 0x8c5a0ce1 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x8c5bda97 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x8c6135af generic_pipe_buf_unmap +EXPORT_SYMBOL vmlinux 0x8c847b76 scsi_prep_fn +EXPORT_SYMBOL vmlinux 0x8cb2adc3 idr_for_each +EXPORT_SYMBOL vmlinux 0x8cb5a272 skb_gro_reset_offset +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cc90987 user_path_at +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cfcdfc1 acpi_lock_ac_dir +EXPORT_SYMBOL vmlinux 0x8d04eb16 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x8d1296f1 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x8d44cbb0 current_fs_time +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d5b5f1f tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x8d5b9bdc pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x8d6906d4 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x8d70e71c __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x8d72da21 xfrm_cfg_mutex +EXPORT_SYMBOL vmlinux 0x8d829e21 unregister_key_type +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d96f00c __lock_buffer +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8da357fb netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x8dca82b7 sk_release_kernel +EXPORT_SYMBOL vmlinux 0x8df03997 block_write_begin +EXPORT_SYMBOL vmlinux 0x8dfa5ae7 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x8dfbb54e netdev_info +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e0b7743 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x8e16d0e6 blk_init_queue +EXPORT_SYMBOL vmlinux 0x8e1788b0 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x8e2ea7f4 release_firmware +EXPORT_SYMBOL vmlinux 0x8e555738 param_get_uint +EXPORT_SYMBOL vmlinux 0x8e5bb05a tty_port_put +EXPORT_SYMBOL vmlinux 0x8e6e09c6 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x8e90214c fib_default_rule_pref +EXPORT_SYMBOL vmlinux 0x8e981f52 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x8e994a56 block_write_full_page_endio +EXPORT_SYMBOL vmlinux 0x8e9df580 vfs_llseek +EXPORT_SYMBOL vmlinux 0x8ea8fe67 d_alloc_name +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ee69235 timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8eee72bd page_put_link +EXPORT_SYMBOL vmlinux 0x8f0b79fb rfkill_alloc +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f48679a rb_prev +EXPORT_SYMBOL vmlinux 0x8f506869 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x8f5ec77a mark_page_accessed +EXPORT_SYMBOL vmlinux 0x8f636d23 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x8f6720ce dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fc7f839 param_set_charp +EXPORT_SYMBOL vmlinux 0x8ff66782 param_get_ushort +EXPORT_SYMBOL vmlinux 0x900d3a06 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x901232fb blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x903282d1 agp_free_memory +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x906207ad blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x906fcef6 get_phy_device +EXPORT_SYMBOL vmlinux 0x90831c38 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x908cee48 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x90a1601f dmi_check_system +EXPORT_SYMBOL vmlinux 0x90a575f2 simple_readpage +EXPORT_SYMBOL vmlinux 0x91163c5d bio_pair_release +EXPORT_SYMBOL vmlinux 0x911f363d security_file_mmap +EXPORT_SYMBOL vmlinux 0x9144a8e2 ec_burst_disable +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91a31361 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x91a3cdf4 down_timeout +EXPORT_SYMBOL vmlinux 0x91b14c47 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x91b1c90e gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x91eb60be setattr_copy +EXPORT_SYMBOL vmlinux 0x9219e761 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x92319fe3 key_revoke +EXPORT_SYMBOL vmlinux 0x92392cd9 iov_shorten +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923b89ca dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x92555fa1 filemap_flush +EXPORT_SYMBOL vmlinux 0x92bcce9e ethtool_op_get_tx_csum +EXPORT_SYMBOL vmlinux 0x92d7017e vmtruncate +EXPORT_SYMBOL vmlinux 0x92e765f6 __skb_get_rxhash +EXPORT_SYMBOL vmlinux 0x92ea4ae4 crc32_le +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9327f5ce _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x93448c57 screen_info +EXPORT_SYMBOL vmlinux 0x935cbfb6 netdev_alert +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93c651be acpi_info +EXPORT_SYMBOL vmlinux 0x93dd5228 acpi_unlock_ac_dir +EXPORT_SYMBOL vmlinux 0x93e047c4 ethtool_op_get_sg +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9414bdeb simple_write_end +EXPORT_SYMBOL vmlinux 0x9414ebbd netif_notify_peers +EXPORT_SYMBOL vmlinux 0x94213f2a input_unregister_device +EXPORT_SYMBOL vmlinux 0x9423d079 dev_warn +EXPORT_SYMBOL vmlinux 0x943edfc1 mount_pseudo +EXPORT_SYMBOL vmlinux 0x94681f0f inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x94864c7a wl12xx_get_platform_data +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949760d9 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x94c3b0ec generic_pipe_buf_map +EXPORT_SYMBOL vmlinux 0x94c5f3cb __generic_file_aio_write +EXPORT_SYMBOL vmlinux 0x94fbdba6 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x9518b623 register_shrinker +EXPORT_SYMBOL vmlinux 0x95272a9e kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x95276f8d jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x953db383 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x954488a4 syncookie_secret +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9554d35b __blk_end_request +EXPORT_SYMBOL vmlinux 0x9568206e scsi_remove_host +EXPORT_SYMBOL vmlinux 0x957bdfa3 secpath_dup +EXPORT_SYMBOL vmlinux 0x9581ea62 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x95a30fdd bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x95aed1bd dquot_acquire +EXPORT_SYMBOL vmlinux 0x95ceb864 key_update +EXPORT_SYMBOL vmlinux 0x95e07465 proc_symlink +EXPORT_SYMBOL vmlinux 0x95ee37b3 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x95f89a33 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x9623cf5a blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x962932ff sk_stream_error +EXPORT_SYMBOL vmlinux 0x96556416 tty_port_init +EXPORT_SYMBOL vmlinux 0x969c0f35 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d1f2a7 mmc_assume_removable +EXPORT_SYMBOL vmlinux 0x96eeaaf0 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x96f0c11d __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x96f5b650 thermal_zone_device_register +EXPORT_SYMBOL vmlinux 0x96fec070 netdev_class_remove_file +EXPORT_SYMBOL vmlinux 0x97019441 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x9715108a thaw_bdev +EXPORT_SYMBOL vmlinux 0x973891f8 mmc_hw_reset_check +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975c1731 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x97671233 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x97824bcc dump_seek +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97b599b9 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x97d34096 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x980cde62 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x981685d2 tty_kref_put +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x9827eea7 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x9831e9e4 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x986bef88 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987f68c9 notify_change +EXPORT_SYMBOL vmlinux 0x98842386 bio_endio +EXPORT_SYMBOL vmlinux 0x988dbda5 tcf_hash_lookup +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x989e58e4 tty_register_device +EXPORT_SYMBOL vmlinux 0x98b2463e free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x98b4f292 submit_bh +EXPORT_SYMBOL vmlinux 0x98cb66f1 sock_no_connect +EXPORT_SYMBOL vmlinux 0x98cd4c64 sk_alloc +EXPORT_SYMBOL vmlinux 0x98d789dc put_page +EXPORT_SYMBOL vmlinux 0x98fa21b0 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x990076ec dst_alloc +EXPORT_SYMBOL vmlinux 0x99304f9e cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x99525e3a vfsmount_lock_local_unlock +EXPORT_SYMBOL vmlinux 0x997ffb93 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x9981da9f genl_unregister_mc_group +EXPORT_SYMBOL vmlinux 0x998a85c4 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b806d4 fasync_helper +EXPORT_SYMBOL vmlinux 0x99bfbe39 get_unused_fd +EXPORT_SYMBOL vmlinux 0x99c2b55c jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x9a10fbe3 register_key_type +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a236293 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x9a2f2824 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x9a4db574 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x9a537c99 idr_pre_get +EXPORT_SYMBOL vmlinux 0x9a67d198 sock_no_listen +EXPORT_SYMBOL vmlinux 0x9a8e1d69 dcache_readdir +EXPORT_SYMBOL vmlinux 0x9a9f0162 d_delete +EXPORT_SYMBOL vmlinux 0x9aabc564 crc16 +EXPORT_SYMBOL vmlinux 0x9ab8808c param_get_charp +EXPORT_SYMBOL vmlinux 0x9af19270 kick_iocb +EXPORT_SYMBOL vmlinux 0x9b055cc7 tty_port_open +EXPORT_SYMBOL vmlinux 0x9b0b30a8 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x9b23457b scsi_adjust_queue_depth +EXPORT_SYMBOL vmlinux 0x9b36083e scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b444aa4 pci_iounmap +EXPORT_SYMBOL vmlinux 0x9b75cb81 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x9b785728 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x9b87647f dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x9b97cf6d unlock_page +EXPORT_SYMBOL vmlinux 0x9b9aa4b5 da903x_query_status +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba8fd32 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x9ba9f6ef netlink_dump_start +EXPORT_SYMBOL vmlinux 0x9bd7621c mfd_add_devices +EXPORT_SYMBOL vmlinux 0x9bd99a05 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x9c012508 fb_parse_edid +EXPORT_SYMBOL vmlinux 0x9c0ea3cd memscan +EXPORT_SYMBOL vmlinux 0x9c1943ff set_trace_device +EXPORT_SYMBOL vmlinux 0x9c1dff64 blkdev_put +EXPORT_SYMBOL vmlinux 0x9c3ba30d sk_run_filter +EXPORT_SYMBOL vmlinux 0x9c46d06b gen_new_estimator +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5f81da cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x9c74c924 led_blink_set +EXPORT_SYMBOL vmlinux 0x9c83ca8d noop_llseek +EXPORT_SYMBOL vmlinux 0x9c84a383 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x9c970a20 splice_from_pipe_end +EXPORT_SYMBOL vmlinux 0x9ca95a0e sort +EXPORT_SYMBOL vmlinux 0x9caa6efe pcim_enable_device +EXPORT_SYMBOL vmlinux 0x9cac134e sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x9cb5c5fe proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x9cb96e92 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x9cdf0ec5 vfsmount_lock_global_lock_online +EXPORT_SYMBOL vmlinux 0x9cfd56c5 scsi_print_status +EXPORT_SYMBOL vmlinux 0x9d175f53 arp_create +EXPORT_SYMBOL vmlinux 0x9d1dee5b nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d71339a node_data +EXPORT_SYMBOL vmlinux 0x9d93f813 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x9db1e02d vfs_mkdir +EXPORT_SYMBOL vmlinux 0x9db21624 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x9db6f02a inode_set_bytes +EXPORT_SYMBOL vmlinux 0x9db9d26a ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x9dbc4942 i2c_release_client +EXPORT_SYMBOL vmlinux 0x9df8d0ea mb_cache_create +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e123984 pci_dev_put +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e531c85 nobh_writepage +EXPORT_SYMBOL vmlinux 0x9e607910 audit_log +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e65722d tty_port_hangup +EXPORT_SYMBOL vmlinux 0x9e67d737 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x9e6c2a21 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e927ec6 elv_register_queue +EXPORT_SYMBOL vmlinux 0x9e97f382 arp_tbl +EXPORT_SYMBOL vmlinux 0x9e9e243f thermal_zone_unbind_cooling_device +EXPORT_SYMBOL vmlinux 0x9e9f1714 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x9ea0ad49 __sg_free_table +EXPORT_SYMBOL vmlinux 0x9ea4cab2 vfs_readdir +EXPORT_SYMBOL vmlinux 0x9eae8820 pci_ltr_supported +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ebdf059 x86_hyper +EXPORT_SYMBOL vmlinux 0x9eecde16 do_brk +EXPORT_SYMBOL vmlinux 0x9f0fb4e2 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x9f175e15 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x9f2bdaac __bitmap_or +EXPORT_SYMBOL vmlinux 0x9f327264 ip_defrag +EXPORT_SYMBOL vmlinux 0x9f34921d netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x9f35ac2f agp_copy_info +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4d3139 elv_rb_find +EXPORT_SYMBOL vmlinux 0x9f5854ac llc_sap_open +EXPORT_SYMBOL vmlinux 0x9f5ec09d scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x9f6e19ab mem_section +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa94972 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x9fb3d03b nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x9fb89ea4 d_instantiate +EXPORT_SYMBOL vmlinux 0x9fb93d88 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x9fbab705 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x9fd4ef7c __neigh_event_send +EXPORT_SYMBOL vmlinux 0x9fd6c5bf ethtool_invalid_flags +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe95f03 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x9feb8313 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x9ff500af skb_free_datagram +EXPORT_SYMBOL vmlinux 0x9ff8685f sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xa00ef735 tty_set_operations +EXPORT_SYMBOL vmlinux 0xa03f7269 input_register_handle +EXPORT_SYMBOL vmlinux 0xa042b7fd pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xa0451ce7 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xa049c8b1 soft_cursor +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa0500502 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa0754ec1 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0ceef51 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize +EXPORT_SYMBOL vmlinux 0xa0d46d29 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xa0e594a8 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ee6373 inet_ioctl +EXPORT_SYMBOL vmlinux 0xa0eed99f mdio_bus_type +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1138acf compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa14f3d8c ewma_add +EXPORT_SYMBOL vmlinux 0xa15a7475 skb_trim +EXPORT_SYMBOL vmlinux 0xa15c08ea blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xa18c00ac fb_validate_mode +EXPORT_SYMBOL vmlinux 0xa197f5e8 set_create_files_as +EXPORT_SYMBOL vmlinux 0xa1b1ea3a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1ba2fdb vfsmount_lock_global_lock +EXPORT_SYMBOL vmlinux 0xa1ba4b95 memcpy_fromiovecend +EXPORT_SYMBOL vmlinux 0xa1c5a3b3 cleancache_enabled +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1e999a0 sock_create_lite +EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa203943c tty_throttle +EXPORT_SYMBOL vmlinux 0xa205afc6 neigh_lookup +EXPORT_SYMBOL vmlinux 0xa206b51d ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xa20ce1b8 net_msg_warn +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28823e6 mmc_try_claim_host +EXPORT_SYMBOL vmlinux 0xa2889dd3 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xa2a0c017 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0xa2a28705 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xa2a5fd77 inet_ehash_secret +EXPORT_SYMBOL vmlinux 0xa2c56c31 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa2cbe88c agp_create_memory +EXPORT_SYMBOL vmlinux 0xa2ef34d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xa2f20c67 netdev_emerg +EXPORT_SYMBOL vmlinux 0xa312ace8 journal_destroy +EXPORT_SYMBOL vmlinux 0xa31f598e qdisc_list_del +EXPORT_SYMBOL vmlinux 0xa332cdd1 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa33f7c7c nla_strlcpy +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa35226c8 pipe_lock +EXPORT_SYMBOL vmlinux 0xa3546630 pci_request_region +EXPORT_SYMBOL vmlinux 0xa35de80f ipv4_config +EXPORT_SYMBOL vmlinux 0xa3a3cfb3 sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xa3a5be95 memmove +EXPORT_SYMBOL vmlinux 0xa3a77c69 down_read_trylock +EXPORT_SYMBOL vmlinux 0xa3c29d63 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xa4081102 blk_put_queue +EXPORT_SYMBOL vmlinux 0xa459c4d8 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xa4633a32 netif_napi_del +EXPORT_SYMBOL vmlinux 0xa4b45d74 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xa4b56b9b __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c39d37 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xa4c41694 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xa4cee86c aio_put_req +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4ec082f bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xa5119cc6 journal_stop +EXPORT_SYMBOL vmlinux 0xa51893de mempool_create_node +EXPORT_SYMBOL vmlinux 0xa51ccb2f jbd2_journal_release_buffer +EXPORT_SYMBOL vmlinux 0xa51df2b4 down_killable +EXPORT_SYMBOL vmlinux 0xa55b15e8 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xa589e577 thermal_zone_device_unregister +EXPORT_SYMBOL vmlinux 0xa594fb84 release_sock +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a49e13 do_mmap_pgoff +EXPORT_SYMBOL vmlinux 0xa5c8cceb scsi_prep_return +EXPORT_SYMBOL vmlinux 0xa5e07da0 tcf_register_action +EXPORT_SYMBOL vmlinux 0xa5e4f65c __next_cpu_nr +EXPORT_SYMBOL vmlinux 0xa5ee0df3 tty_write_room +EXPORT_SYMBOL vmlinux 0xa60d8120 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xa6219c01 phy_stop +EXPORT_SYMBOL vmlinux 0xa6231861 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xa626d932 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xa62b7944 cpu_sysdev_class +EXPORT_SYMBOL vmlinux 0xa63ccecf sock_i_uid +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa65514af generic_file_open +EXPORT_SYMBOL vmlinux 0xa657962e pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xa657ba21 keyring_clear +EXPORT_SYMBOL vmlinux 0xa6660a2e shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68c3066 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xa6a9a1e7 __cleancache_flush_fs +EXPORT_SYMBOL vmlinux 0xa6b81f0c acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xa6c251f3 skb_checksum +EXPORT_SYMBOL vmlinux 0xa6ceb8e6 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xa6dcc773 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa6e77eda dquot_release +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa713b557 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xa71fe9bb unregister_con_driver +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa7916e01 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xa7938eb2 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xa79ada0f scsi_print_sense +EXPORT_SYMBOL vmlinux 0xa816c525 schedule_work_on +EXPORT_SYMBOL vmlinux 0xa8223905 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa8232c78 strtobool +EXPORT_SYMBOL vmlinux 0xa82c51fd nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xa85fe67a scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xa884a98e pci_get_subsys +EXPORT_SYMBOL vmlinux 0xa886a958 krealloc +EXPORT_SYMBOL vmlinux 0xa88b4066 dev_disable_lro +EXPORT_SYMBOL vmlinux 0xa89924a4 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xa8a6f639 __check_region +EXPORT_SYMBOL vmlinux 0xa8b1c099 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xa8b3dc5f pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xa8cae0d1 set_anon_super +EXPORT_SYMBOL vmlinux 0xa8d68abd acpi_warning +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa913af75 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xa916bb9e pagevec_lookup +EXPORT_SYMBOL vmlinux 0xa91b5561 acpi_video_backlight_support +EXPORT_SYMBOL vmlinux 0xa91bfa48 agp_free_page_array +EXPORT_SYMBOL vmlinux 0xa9698835 journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xa9699952 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xa97598b6 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc +EXPORT_SYMBOL vmlinux 0xa9c1b627 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xa9c3f82c dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xa9d3c26e pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xa9db8ae6 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa9f0fe62 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xa9f5a57b __put_cred +EXPORT_SYMBOL vmlinux 0xaa057077 ping_prot +EXPORT_SYMBOL vmlinux 0xaa170372 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xaa1e96ed scsi_scan_host +EXPORT_SYMBOL vmlinux 0xaa361898 security_path_rmdir +EXPORT_SYMBOL vmlinux 0xaa38be0b scm_detach_fds +EXPORT_SYMBOL vmlinux 0xaa3d3c54 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xaa519b88 input_inject_event +EXPORT_SYMBOL vmlinux 0xaa62a289 __devm_release_region +EXPORT_SYMBOL vmlinux 0xaa699c32 kernel_read +EXPORT_SYMBOL vmlinux 0xaa79b2ec end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xaa84a8ae acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xaa925078 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xaa9bcbc9 __napi_complete +EXPORT_SYMBOL vmlinux 0xaaa594d0 task_ns_capable +EXPORT_SYMBOL vmlinux 0xaaab0652 pnp_device_attach +EXPORT_SYMBOL vmlinux 0xaab1c1ac framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xaac3fd6d pnp_get_resource +EXPORT_SYMBOL vmlinux 0xaad52206 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaf2613c skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xaaf45875 acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafee4d6 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0xab089796 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xab2abddf dma_spin_lock +EXPORT_SYMBOL vmlinux 0xab2e6808 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xab33028c compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xab42b297 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xab450542 ipv4_specific +EXPORT_SYMBOL vmlinux 0xab48c072 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xab533dd2 vfs_open +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab7f5895 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xab8e23ce sock_register +EXPORT_SYMBOL vmlinux 0xabb02a9b scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xabbefb1a dev_open +EXPORT_SYMBOL vmlinux 0xabca9579 do_splice_direct +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd0c91c rtc_time_to_tm +EXPORT_SYMBOL vmlinux 0xabeb64cb tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xabeb7483 neigh_create +EXPORT_SYMBOL vmlinux 0xac0742a6 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xac0a253d serio_open +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1675a0 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xac1ea85e cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xac58ea5e acpi_unload_table_id +EXPORT_SYMBOL vmlinux 0xac608055 idr_init +EXPORT_SYMBOL vmlinux 0xac65e4bd skb_pull +EXPORT_SYMBOL vmlinux 0xac6855b0 gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xac6a6ecb blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xac75c6a7 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xac795291 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xac7d8198 udp_poll +EXPORT_SYMBOL vmlinux 0xac8d4051 unregister_exec_domain +EXPORT_SYMBOL vmlinux 0xac91ed10 sk_filter +EXPORT_SYMBOL vmlinux 0xac96ec0d clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xac9d72ec sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xac9fea68 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd7d84c keyring_search +EXPORT_SYMBOL vmlinux 0xacd8051d inet_sendpage +EXPORT_SYMBOL vmlinux 0xacdf701d cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xace85464 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xaceb2b4c amd_northbridges +EXPORT_SYMBOL vmlinux 0xacec4a8e mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf72144 sk_dst_check +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad07576f dev_uc_del +EXPORT_SYMBOL vmlinux 0xad09b607 padata_alloc +EXPORT_SYMBOL vmlinux 0xad13c689 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xad25fb12 __memcpy +EXPORT_SYMBOL vmlinux 0xad466018 quota_send_warning +EXPORT_SYMBOL vmlinux 0xad589965 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xad70b72d noop_qdisc +EXPORT_SYMBOL vmlinux 0xad799d3a set_bh_page +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xada2f43b skb_copy_datagram_from_iovec +EXPORT_SYMBOL vmlinux 0xada9533b tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xadaa2657 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0xadaabe1b pv_lock_ops +EXPORT_SYMBOL vmlinux 0xadab0bea lro_flush_pkt +EXPORT_SYMBOL vmlinux 0xadbf935f max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xadcac4a3 vfsmount_lock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xadcfb451 skb_split +EXPORT_SYMBOL vmlinux 0xadf4f0ec locks_free_lock +EXPORT_SYMBOL vmlinux 0xadf8e4fd vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0xae08f5a0 do_sync_write +EXPORT_SYMBOL vmlinux 0xae0d514a bio_init +EXPORT_SYMBOL vmlinux 0xae123118 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xae36081c mmc_card_sleep +EXPORT_SYMBOL vmlinux 0xae71ae30 nobh_write_end +EXPORT_SYMBOL vmlinux 0xae904833 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xae9da068 ethtool_op_set_sg +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaeae5210 security_path_mknod +EXPORT_SYMBOL vmlinux 0xaec05f3b __secpath_destroy +EXPORT_SYMBOL vmlinux 0xaeeb1103 icmpv6_send +EXPORT_SYMBOL vmlinux 0xaf223b77 textsearch_register +EXPORT_SYMBOL vmlinux 0xaf24b823 make_EII_client +EXPORT_SYMBOL vmlinux 0xaf277565 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xaf3a5687 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xaf3aa261 dev_trans_start +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf40317f dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xaf60948a complete_request_key +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf87eec1 genl_register_ops +EXPORT_SYMBOL vmlinux 0xaf91d89f __kernel_param_lock +EXPORT_SYMBOL vmlinux 0xaf9204d0 skb_find_text +EXPORT_SYMBOL vmlinux 0xaf980c1a generic_file_aio_write +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafd68dfb padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn +EXPORT_SYMBOL vmlinux 0xafed58a1 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xafef8fa9 register_memory_notifier +EXPORT_SYMBOL vmlinux 0xb0146c3a param_set_byte +EXPORT_SYMBOL vmlinux 0xb024279f dev_addr_del_multiple +EXPORT_SYMBOL vmlinux 0xb043326b __quota_error +EXPORT_SYMBOL vmlinux 0xb048a261 blk_start_queue +EXPORT_SYMBOL vmlinux 0xb061295b set_groups +EXPORT_SYMBOL vmlinux 0xb06807d9 mutex_trylock +EXPORT_SYMBOL vmlinux 0xb0a8fd0a intel_gtt_unmap_memory +EXPORT_SYMBOL vmlinux 0xb0b847ac __bitmap_full +EXPORT_SYMBOL vmlinux 0xb0d7f948 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb10585d3 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xb11fa1ce strlcat +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb138d0bf dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xb1486780 __free_pages +EXPORT_SYMBOL vmlinux 0xb14951ba __seq_open_private +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb17e3a77 pci_get_device +EXPORT_SYMBOL vmlinux 0xb196a657 dquot_operations +EXPORT_SYMBOL vmlinux 0xb19760c3 bitmap_onto +EXPORT_SYMBOL vmlinux 0xb1b3b312 set_disk_ro +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cda313 irq_set_chip +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1dcb892 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb24fd79a bioset_create +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2798ef9 dev_get_drvdata +EXPORT_SYMBOL vmlinux 0xb288c723 f_setown +EXPORT_SYMBOL vmlinux 0xb2ab5a8a blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0xb2b5218e poll_freewait +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb32b07f5 bio_integrity_alloc_bioset +EXPORT_SYMBOL vmlinux 0xb3305d52 send_remote_softirq +EXPORT_SYMBOL vmlinux 0xb34d4c2e acpi_terminate +EXPORT_SYMBOL vmlinux 0xb34f3848 qdisc_watchdog_schedule +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3774d07 journal_update_format +EXPORT_SYMBOL vmlinux 0xb37c135e serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xb393f5b0 tty_mutex +EXPORT_SYMBOL vmlinux 0xb3a307c6 si_meminfo +EXPORT_SYMBOL vmlinux 0xb3d83727 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact +EXPORT_SYMBOL vmlinux 0xb412edcd ab8500_gpadc_read_raw +EXPORT_SYMBOL vmlinux 0xb4214059 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb456aabb intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xb46cd715 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47d3857 start_tty +EXPORT_SYMBOL vmlinux 0xb485354f dquot_alloc +EXPORT_SYMBOL vmlinux 0xb4a2aea4 ll_rw_block +EXPORT_SYMBOL vmlinux 0xb4b7b067 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xb4d181ec path_put +EXPORT_SYMBOL vmlinux 0xb4e086bb lock_super +EXPORT_SYMBOL vmlinux 0xb5044271 vsscanf +EXPORT_SYMBOL vmlinux 0xb51376de kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xb51cbc6b alloc_trdev +EXPORT_SYMBOL vmlinux 0xb528d730 default_llseek +EXPORT_SYMBOL vmlinux 0xb529004c napi_frags_finish +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb530a762 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xb5423a89 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xb54533f7 usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xb562734b neigh_compat_output +EXPORT_SYMBOL vmlinux 0xb5856865 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ab862e __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xb5ad81f5 sync_blockdev +EXPORT_SYMBOL vmlinux 0xb5c6f936 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5dc0376 fsync_bdev +EXPORT_SYMBOL vmlinux 0xb5dcab5b remove_wait_queue +EXPORT_SYMBOL vmlinux 0xb5e1cf2a __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xb61a4d1d blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb627884a phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xb628f715 files_lglock_local_lock +EXPORT_SYMBOL vmlinux 0xb63921c4 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6822a33 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xb68d06dc blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xb6a348bb scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xb6a61a86 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xb6a6824f simple_getattr +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a797c7 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xb6c5a973 scsi_show_result +EXPORT_SYMBOL vmlinux 0xb6cbe886 acpi_get_node +EXPORT_SYMBOL vmlinux 0xb724ddb1 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb76f650c pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xb7850247 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xb78c61e8 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb7c4e9f3 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xb7c91aa8 commit_creds +EXPORT_SYMBOL vmlinux 0xb7cc8844 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xb7cfd62a sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xb7f0446f pci_find_bus +EXPORT_SYMBOL vmlinux 0xb7f47feb inode_sb_list_lock +EXPORT_SYMBOL vmlinux 0xb8076947 console_stop +EXPORT_SYMBOL vmlinux 0xb835b3e4 radix_tree_prev_hole +EXPORT_SYMBOL vmlinux 0xb8512315 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xb855539f submit_bio +EXPORT_SYMBOL vmlinux 0xb86e4ab9 random32 +EXPORT_SYMBOL vmlinux 0xb8738035 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xb8987b55 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xb89af9bf srandom32 +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb91781b5 tty_hangup +EXPORT_SYMBOL vmlinux 0xb91ea859 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xb9249d16 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xb943a88e mmc_detect_change +EXPORT_SYMBOL vmlinux 0xb955fd5f bio_integrity_get_tag +EXPORT_SYMBOL vmlinux 0xb96e5c5c tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xb98a0185 rtc_tm_to_time +EXPORT_SYMBOL vmlinux 0xb9989b3c dquot_quota_on +EXPORT_SYMBOL vmlinux 0xb9a504d2 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xb9a805a3 ppp_input_error +EXPORT_SYMBOL vmlinux 0xb9b0725b blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xb9b1c420 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xb9bb6826 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xb9c7fd01 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xb9f233e1 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xb9fd2205 add_efi_memmap +EXPORT_SYMBOL vmlinux 0xba174511 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba2ddeb6 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4b468e pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xba6120ae backlight_force_update +EXPORT_SYMBOL vmlinux 0xba63339c _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xba7d55b5 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xba87566e blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xbaa06ceb pskb_expand_head +EXPORT_SYMBOL vmlinux 0xbaa2782a kstrndup +EXPORT_SYMBOL vmlinux 0xbaa5ed4d filp_open +EXPORT_SYMBOL vmlinux 0xbaaab8ae timespec_to_jiffies +EXPORT_SYMBOL vmlinux 0xbab14008 agp_backend_release +EXPORT_SYMBOL vmlinux 0xbadae741 mdiobus_write +EXPORT_SYMBOL vmlinux 0xbaec6251 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xbb0dde70 seq_write +EXPORT_SYMBOL vmlinux 0xbb167766 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xbb189cad disallow_signal +EXPORT_SYMBOL vmlinux 0xbb28fcd8 write_inode_now +EXPORT_SYMBOL vmlinux 0xbb2c7c92 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xbb446b7a scsi_get_command +EXPORT_SYMBOL vmlinux 0xbb4e503a security_d_instantiate +EXPORT_SYMBOL vmlinux 0xbb4fd04a uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6d402e dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xbb80014e sock_wfree +EXPORT_SYMBOL vmlinux 0xbb83e51e __serio_register_driver +EXPORT_SYMBOL vmlinux 0xbb9483ff simple_rmdir +EXPORT_SYMBOL vmlinux 0xbb97f1f4 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba159e0 files_lglock_local_unlock +EXPORT_SYMBOL vmlinux 0xbba23cb0 cpu_core_map +EXPORT_SYMBOL vmlinux 0xbbaacecd kobject_add +EXPORT_SYMBOL vmlinux 0xbbd465da dev_addr_init +EXPORT_SYMBOL vmlinux 0xbbfc3697 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xbbfcaca5 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc6512c6 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xbc926f60 may_umount_tree +EXPORT_SYMBOL vmlinux 0xbc951336 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xbcb3a067 netdev_crit +EXPORT_SYMBOL vmlinux 0xbcba1984 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xbcbb80d8 dev_mc_del +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbccf2352 key_link +EXPORT_SYMBOL vmlinux 0xbcdb0a40 km_policy_notify +EXPORT_SYMBOL vmlinux 0xbd100793 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xbd216cc8 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xbd3953d9 km_query +EXPORT_SYMBOL vmlinux 0xbd4a6a21 scsi_host_put +EXPORT_SYMBOL vmlinux 0xbd5afd36 tty_shutdown +EXPORT_SYMBOL vmlinux 0xbd6c5ad6 find_lock_page +EXPORT_SYMBOL vmlinux 0xbd747eda led_brightness_set +EXPORT_SYMBOL vmlinux 0xbd8097b2 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xbd92778d dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdbe7378 cookie_check_timestamp +EXPORT_SYMBOL vmlinux 0xbdc20c68 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xbdce3287 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xbddb02c5 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xbdee5c46 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xbdf4e6af scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xbdf5c25c rb_next +EXPORT_SYMBOL vmlinux 0xbe18153d try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xbe1c2733 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xbe1f9c6f dentry_path_raw +EXPORT_SYMBOL vmlinux 0xbe2c0274 add_timer +EXPORT_SYMBOL vmlinux 0xbe491f1e bioset_free +EXPORT_SYMBOL vmlinux 0xbea99602 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xbeac0c9b key_task_permission +EXPORT_SYMBOL vmlinux 0xbec8bfa2 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefa3a95 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xbf480144 elv_abort_queue +EXPORT_SYMBOL vmlinux 0xbf53aa81 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xbf678ee9 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xbf6b371b loop_register_transfer +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf84909a d_set_d_op +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb45040 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe63ba8 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xbfea6151 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user +EXPORT_SYMBOL vmlinux 0xc01cf848 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xc027e19d devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xc04d131d splice_from_pipe_next +EXPORT_SYMBOL vmlinux 0xc0580937 rb_erase +EXPORT_SYMBOL vmlinux 0xc05fc8b5 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xc06de943 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc09651d9 crc32_be +EXPORT_SYMBOL vmlinux 0xc0a27639 sk_reset_txq +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a48eac writeback_inodes_sb_nr_if_idle +EXPORT_SYMBOL vmlinux 0xc0b2494c vfsmount_lock_lock_init +EXPORT_SYMBOL vmlinux 0xc0bb9a5f inet_twsk_deschedule +EXPORT_SYMBOL vmlinux 0xc0f5ab01 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xc1085a95 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xc1103f1e tty_pair_get_tty +EXPORT_SYMBOL vmlinux 0xc12a3789 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xc13a91ae unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xc13c86c3 tcp_gro_receive +EXPORT_SYMBOL vmlinux 0xc13ce24e dump_trace +EXPORT_SYMBOL vmlinux 0xc17b40af sock_kfree_s +EXPORT_SYMBOL vmlinux 0xc1a498ca pci_enable_msix +EXPORT_SYMBOL vmlinux 0xc1c2dd09 __hw_addr_flush +EXPORT_SYMBOL vmlinux 0xc1d7d179 blk_stack_limits +EXPORT_SYMBOL vmlinux 0xc23fb5a2 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc251c5dc sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xc25367a3 arp_xmit +EXPORT_SYMBOL vmlinux 0xc256e762 __bitmap_equal +EXPORT_SYMBOL vmlinux 0xc25c5c55 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xc274deaa nf_log_unregister +EXPORT_SYMBOL vmlinux 0xc284396b dquot_scan_active +EXPORT_SYMBOL vmlinux 0xc28f1481 phy_device_free +EXPORT_SYMBOL vmlinux 0xc29de2ae sock_create_kern +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc316b98c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0xc329fb59 generic_setxattr +EXPORT_SYMBOL vmlinux 0xc3408488 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xc3536a35 genl_register_family +EXPORT_SYMBOL vmlinux 0xc3897d70 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xc3971174 security_path_truncate +EXPORT_SYMBOL vmlinux 0xc39a65ac fb_blank +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3ab7fdc __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xc3bdf44a sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xc3becabd spi_schedule_dv_device +EXPORT_SYMBOL vmlinux 0xc3e35f0e security_path_link +EXPORT_SYMBOL vmlinux 0xc3fc35f5 idr_find +EXPORT_SYMBOL vmlinux 0xc3fe87c8 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc402cc99 register_acpi_notifier +EXPORT_SYMBOL vmlinux 0xc420a04d tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xc42b0eae tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xc4335f81 vfs_statfs +EXPORT_SYMBOL vmlinux 0xc44a5531 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xc47b616c llc_sap_close +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a53bb2 ethtool_op_get_flags +EXPORT_SYMBOL vmlinux 0xc4bf9fed skb_copy +EXPORT_SYMBOL vmlinux 0xc4e9b0bc simple_transaction_read +EXPORT_SYMBOL vmlinux 0xc504e44f phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xc50bab05 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xc520a433 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xc52f5714 fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0xc536a14d udp_disconnect +EXPORT_SYMBOL vmlinux 0xc5413da7 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xc5427771 security_inode_permission +EXPORT_SYMBOL vmlinux 0xc5473a84 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc559697c vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xc56b13d2 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xc582c359 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xc5a37aa8 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xc5ace6f8 misc_register +EXPORT_SYMBOL vmlinux 0xc5ce4395 get_disk +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5f46566 rb_augment_insert +EXPORT_SYMBOL vmlinux 0xc5f7db3a ethtool_op_get_tso +EXPORT_SYMBOL vmlinux 0xc6155c19 pci_enable_ltr +EXPORT_SYMBOL vmlinux 0xc61e029d xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xc621c19c vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xc62f14a0 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc664d5fd blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xc6890ef3 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0xc6977c6f fb_set_cmap +EXPORT_SYMBOL vmlinux 0xc69a74c5 acpi_lock_battery_dir +EXPORT_SYMBOL vmlinux 0xc6a66180 rwsem_wake +EXPORT_SYMBOL vmlinux 0xc6b7ece2 softnet_data +EXPORT_SYMBOL vmlinux 0xc6bc54dc tcp_syn_flood_action +EXPORT_SYMBOL vmlinux 0xc6c657a7 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6eda4d1 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xc6f76581 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72e509a pid_task +EXPORT_SYMBOL vmlinux 0xc740c64a memchr +EXPORT_SYMBOL vmlinux 0xc754576f scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xc75522f1 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xc7651964 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xc76ec1a8 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7827a4f security_path_chown +EXPORT_SYMBOL vmlinux 0xc78812f6 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c7cb6a tty_pair_get_pty +EXPORT_SYMBOL vmlinux 0xc7c9592e blk_make_request +EXPORT_SYMBOL vmlinux 0xc7e207ec d_prune_aliases +EXPORT_SYMBOL vmlinux 0xc7e41c6c gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xc7ea8b96 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xc7ecacae padata_do_serial +EXPORT_SYMBOL vmlinux 0xc7ed5247 pci_iomap +EXPORT_SYMBOL vmlinux 0xc816bf85 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc8255601 sock_map_fd +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc85dbdb5 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b8b144 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xc8bbd666 proc_dointvec +EXPORT_SYMBOL vmlinux 0xc8c76f61 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xc8e0c341 pci_enable_obff +EXPORT_SYMBOL vmlinux 0xc9035ce9 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xc90a2a13 genphy_suspend +EXPORT_SYMBOL vmlinux 0xc92121be ps2_command +EXPORT_SYMBOL vmlinux 0xc9315b74 blk_rq_init +EXPORT_SYMBOL vmlinux 0xc939167f phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xc944596e skb_seq_read +EXPORT_SYMBOL vmlinux 0xc9496ef1 register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0xc94fa003 irq_stat +EXPORT_SYMBOL vmlinux 0xc96f56e3 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xc974af08 proc_mkdir +EXPORT_SYMBOL vmlinux 0xc98876be generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xc98a5a0c jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xc996d097 del_timer +EXPORT_SYMBOL vmlinux 0xc9aa6ad7 bdi_register +EXPORT_SYMBOL vmlinux 0xc9ab2eef acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0xc9b84a47 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xc9c7735a inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xca08e6ee netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xca1d80fa uart_resume_port +EXPORT_SYMBOL vmlinux 0xca3de0f5 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xca4c923d vscnprintf +EXPORT_SYMBOL vmlinux 0xca5a9ea5 first_ec +EXPORT_SYMBOL vmlinux 0xca5dbc50 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xcaab8578 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xcabcc7c4 aio_complete +EXPORT_SYMBOL vmlinux 0xcae806a8 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xcaf10f48 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xcb09e80f get_agp_version +EXPORT_SYMBOL vmlinux 0xcb287194 nf_reinject +EXPORT_SYMBOL vmlinux 0xcb28e2bd page_symlink +EXPORT_SYMBOL vmlinux 0xcb30be7e set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xcb4ad5ee bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xcb5e8fbf security_file_permission +EXPORT_SYMBOL vmlinux 0xcb5f77f0 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcb625628 vfs_mknod +EXPORT_SYMBOL vmlinux 0xcb70563e unregister_quota_format +EXPORT_SYMBOL vmlinux 0xcb7131fb fb_get_options +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb99edb0 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0xcba90a9d ip_xfrm_me_harder +EXPORT_SYMBOL vmlinux 0xcbaa26a8 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xcbb190b6 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xcbb845e1 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbe590d9 fail_migrate_page +EXPORT_SYMBOL vmlinux 0xcbe6a83a agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xcbf4bebe clear_bdi_congested +EXPORT_SYMBOL vmlinux 0xcc07af75 strnlen +EXPORT_SYMBOL vmlinux 0xcc18bdb6 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc36f32e fb_unregister_client +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc57a39c read_dev_sector +EXPORT_SYMBOL vmlinux 0xcc7fa952 local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0xcc8a62f4 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xcca17c71 serio_reconnect +EXPORT_SYMBOL vmlinux 0xcca94125 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xccab24d9 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xccadc7e2 netdev_state_change +EXPORT_SYMBOL vmlinux 0xccb2ebdc xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xccbf6725 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xccc4c51f thermal_cooling_device_unregister +EXPORT_SYMBOL vmlinux 0xccd44112 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xccda8fb7 vm_insert_page +EXPORT_SYMBOL vmlinux 0xcce53028 skb_recycle_check +EXPORT_SYMBOL vmlinux 0xcd17ae80 end_writeback +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2cefe8 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xcd3bc598 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xcd5fed96 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xcd949668 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xcdad5521 set_security_override +EXPORT_SYMBOL vmlinux 0xcde172ac radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xce0249ca cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xce19bac5 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce4b0185 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce8fdc89 pm860x_page_set_bits +EXPORT_SYMBOL vmlinux 0xcec3a908 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xcecf67e1 dev_activate +EXPORT_SYMBOL vmlinux 0xcef069f9 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcef86b0a pnp_device_detach +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf015f7b do_settimeofday +EXPORT_SYMBOL vmlinux 0xcf1d28ab acpi_error +EXPORT_SYMBOL vmlinux 0xcf21d241 __wake_up +EXPORT_SYMBOL vmlinux 0xcf38b0f4 set_device_ro +EXPORT_SYMBOL vmlinux 0xcf39f801 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xcf545fdf x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0xcf584027 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xcf63faab bio_integrity_free +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf790054 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xcfa180ad security_path_symlink +EXPORT_SYMBOL vmlinux 0xcfb9006e jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0xcfc2a64a register_gifconf +EXPORT_SYMBOL vmlinux 0xcfeb0be9 rb_augment_erase_begin +EXPORT_SYMBOL vmlinux 0xd0181f4f __bitmap_xor +EXPORT_SYMBOL vmlinux 0xd0205390 pnp_register_driver +EXPORT_SYMBOL vmlinux 0xd03c3fcf xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xd046bcfd mdiobus_read +EXPORT_SYMBOL vmlinux 0xd04d153d agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xd05f8ff0 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xd0676cee tcf_hash_check +EXPORT_SYMBOL vmlinux 0xd06dba55 tr_type_trans +EXPORT_SYMBOL vmlinux 0xd06fe373 key_alloc +EXPORT_SYMBOL vmlinux 0xd0799edd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xd08197fa acpi_load_tables +EXPORT_SYMBOL vmlinux 0xd08faecf setup_new_exec +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0c5a669 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xd0d0aa72 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd0d42c42 mod_timer_pending +EXPORT_SYMBOL vmlinux 0xd0e5bced alloc_fddidev +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0efbd1f kmem_cache_create +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd101b781 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xd11c0dc1 __kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xd1472061 acpi_pci_register_driver +EXPORT_SYMBOL vmlinux 0xd1524b86 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xd168aded dput +EXPORT_SYMBOL vmlinux 0xd172cb8d netdev_increment_features +EXPORT_SYMBOL vmlinux 0xd1810faf unlock_rename +EXPORT_SYMBOL vmlinux 0xd1856d50 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xd1882348 vsc824x_add_skew +EXPORT_SYMBOL vmlinux 0xd18b6eb2 acpi_unmap_lsapic +EXPORT_SYMBOL vmlinux 0xd18b7aed vga_put +EXPORT_SYMBOL vmlinux 0xd1b1c1c3 sock_create +EXPORT_SYMBOL vmlinux 0xd1da70d9 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xd1f152ad kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2096ee7 __scm_destroy +EXPORT_SYMBOL vmlinux 0xd227892e sleep_on +EXPORT_SYMBOL vmlinux 0xd2418233 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd257968d xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2747a2e agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xd276f795 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd290b658 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xd295dc84 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd2965f6f kthread_should_stop +EXPORT_SYMBOL vmlinux 0xd297a079 init_special_inode +EXPORT_SYMBOL vmlinux 0xd2a75ee0 dmi_first_match +EXPORT_SYMBOL vmlinux 0xd2a92ff0 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xd2ec8f16 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xd2f1b260 interruptible_sleep_on +EXPORT_SYMBOL vmlinux 0xd2fefecf consume_skb +EXPORT_SYMBOL vmlinux 0xd3142a2c netdev_bonding_change +EXPORT_SYMBOL vmlinux 0xd3172b6e bio_integrity_split +EXPORT_SYMBOL vmlinux 0xd3434c3f kref_sub +EXPORT_SYMBOL vmlinux 0xd35e249a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xd36a5e86 ip_cmsg_recv +EXPORT_SYMBOL vmlinux 0xd38480a0 rb_augment_erase_end +EXPORT_SYMBOL vmlinux 0xd38eccd0 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xd3951da4 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xd395dd70 iterate_mounts +EXPORT_SYMBOL vmlinux 0xd39d537d scsi_host_get +EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3bab1aa vga_client_register +EXPORT_SYMBOL vmlinux 0xd3dcab0b flex_array_alloc +EXPORT_SYMBOL vmlinux 0xd3df8fd1 skb_dst_set_noref +EXPORT_SYMBOL vmlinux 0xd3eab308 __vlan_find_dev_deep +EXPORT_SYMBOL vmlinux 0xd40b3616 vfs_write +EXPORT_SYMBOL vmlinux 0xd41b6a7d ethtool_op_set_tx_ipv6_csum +EXPORT_SYMBOL vmlinux 0xd41baa23 seq_release +EXPORT_SYMBOL vmlinux 0xd4489e1e generic_ro_fops +EXPORT_SYMBOL vmlinux 0xd44a34c3 security_path_rename +EXPORT_SYMBOL vmlinux 0xd496666f jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xd4aa95a2 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xd4dc3490 mnt_unpin +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd5104e31 generic_removexattr +EXPORT_SYMBOL vmlinux 0xd52bf1ce _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xd52e6343 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xd554568c qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xd56267ab blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xd5a5fb11 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xd5b037e1 kref_put +EXPORT_SYMBOL vmlinux 0xd5bbdc0b bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xd5e7f904 scsi_allocate_command +EXPORT_SYMBOL vmlinux 0xd5f2172f del_timer_sync +EXPORT_SYMBOL vmlinux 0xd611bca3 completion_done +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61794e8 skb_unlink +EXPORT_SYMBOL vmlinux 0xd619aafe i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd681f1ae freeze_super +EXPORT_SYMBOL vmlinux 0xd6a968fe cdev_del +EXPORT_SYMBOL vmlinux 0xd6ac74a0 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6c64c1f install_exec_creds +EXPORT_SYMBOL vmlinux 0xd6caf49f get_phy_id +EXPORT_SYMBOL vmlinux 0xd6cb7a77 generic_getxattr +EXPORT_SYMBOL vmlinux 0xd6e666ac simple_rename +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd7094acf nf_register_hooks +EXPORT_SYMBOL vmlinux 0xd72f9b04 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xd737c1a8 uart_match_port +EXPORT_SYMBOL vmlinux 0xd73bc186 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xd73e4db8 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xd74e7dcd pm860x_page_reg_read +EXPORT_SYMBOL vmlinux 0xd75565a5 do_splice_to +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd770aa08 __bforget +EXPORT_SYMBOL vmlinux 0xd77a5aa5 __bitmap_and +EXPORT_SYMBOL vmlinux 0xd79b5a02 allow_signal +EXPORT_SYMBOL vmlinux 0xd7b6cbd9 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xd7bfc60a bio_integrity_set_tag +EXPORT_SYMBOL vmlinux 0xd7db366b __serio_register_port +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7df3f04 blk_peek_request +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7fb300b sock_init_data +EXPORT_SYMBOL vmlinux 0xd7fb847c skb_pad +EXPORT_SYMBOL vmlinux 0xd803da59 pci_release_region +EXPORT_SYMBOL vmlinux 0xd8041bb0 thermal_zone_bind_cooling_device +EXPORT_SYMBOL vmlinux 0xd8049858 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xd813917b user_path_create +EXPORT_SYMBOL vmlinux 0xd8160a27 icmp_send +EXPORT_SYMBOL vmlinux 0xd81a9143 file_remove_suid +EXPORT_SYMBOL vmlinux 0xd82c30b9 __alloc_skb +EXPORT_SYMBOL vmlinux 0xd8650c3d pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd9133d56 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xd91ea38c x86_hyper_xen_hvm +EXPORT_SYMBOL vmlinux 0xd92afabe bitmap_clear +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd94743ef node_states +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd97bfb6b nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd996b7b8 revert_creds +EXPORT_SYMBOL vmlinux 0xd99acd11 blk_register_region +EXPORT_SYMBOL vmlinux 0xd9b00a37 set_user_nice +EXPORT_SYMBOL vmlinux 0xd9b86031 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xd9c7f4fd pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xd9d5a0d6 register_netdev +EXPORT_SYMBOL vmlinux 0xd9ef234e neigh_destroy +EXPORT_SYMBOL vmlinux 0xd9f7ceae replace_mount_options +EXPORT_SYMBOL vmlinux 0xda008a98 console_start +EXPORT_SYMBOL vmlinux 0xda0a6b0e acpi_map_lsapic +EXPORT_SYMBOL vmlinux 0xda0bb97f arp_find +EXPORT_SYMBOL vmlinux 0xda19c193 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xda39b731 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0xda4c6362 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0xda600d7a pagecache_write_end +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xdaa15d75 genphy_read_status +EXPORT_SYMBOL vmlinux 0xdae29d66 input_release_device +EXPORT_SYMBOL vmlinux 0xdaf688a7 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0xdafab04c kill_litter_super +EXPORT_SYMBOL vmlinux 0xdb03d6a2 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xdb185e7b __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xdb198622 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xdb347c7a call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xdb36bb0b dm_register_target +EXPORT_SYMBOL vmlinux 0xdb3f4bba inet_bind +EXPORT_SYMBOL vmlinux 0xdb4b69ce alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xdb63fb78 journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb792dc0 otg_put_transceiver +EXPORT_SYMBOL vmlinux 0xdb84402e get_write_access +EXPORT_SYMBOL vmlinux 0xdb97fba0 dev_set_drvdata +EXPORT_SYMBOL vmlinux 0xdb9e2c22 posix_acl_create +EXPORT_SYMBOL vmlinux 0xdbb9e660 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xdbcd416e sysctl_ip_nonlocal_bind +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc2519e0 param_set_ulong +EXPORT_SYMBOL vmlinux 0xdc280798 journal_lock_updates +EXPORT_SYMBOL vmlinux 0xdc2adb35 add_taint +EXPORT_SYMBOL vmlinux 0xdc2d4864 seq_bitmap_list +EXPORT_SYMBOL vmlinux 0xdc34f23c input_allocate_device +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc43a9c8 daemonize +EXPORT_SYMBOL vmlinux 0xdc50307d xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc8d1dde _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xdc9895e3 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xdca5b879 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xdca784e2 vfs_readlink +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcc22022 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xdcd0bdd8 phy_print_status +EXPORT_SYMBOL vmlinux 0xdcd8f64f pci_assign_resource +EXPORT_SYMBOL vmlinux 0xdce3bfc2 journal_load +EXPORT_SYMBOL vmlinux 0xdceb4e43 journal_check_used_features +EXPORT_SYMBOL vmlinux 0xdcfce74d sock_update_classid +EXPORT_SYMBOL vmlinux 0xdd050ac6 dget_parent +EXPORT_SYMBOL vmlinux 0xdd0ad962 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xdd1c65f6 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xdd2299e8 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xdd29c2cf find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xdd9477b8 block_commit_write +EXPORT_SYMBOL vmlinux 0xdd985ba8 put_mnt_ns +EXPORT_SYMBOL vmlinux 0xdd9b250f padata_do_parallel +EXPORT_SYMBOL vmlinux 0xddd46af3 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xddde96fd nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xde00884f scsi_prep_state_check +EXPORT_SYMBOL vmlinux 0xde03c8b8 input_close_device +EXPORT_SYMBOL vmlinux 0xde0bdcff memset +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde1c9b0e dev_err +EXPORT_SYMBOL vmlinux 0xde530717 find_get_page +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde75431c bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xde9b9cb9 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xded38e02 __break_lease +EXPORT_SYMBOL vmlinux 0xdee76991 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xdeeeb20e mii_nway_restart +EXPORT_SYMBOL vmlinux 0xdef79dff tcp_v4_md5_do_del +EXPORT_SYMBOL vmlinux 0xdf040e74 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf2f2713 tcf_em_register +EXPORT_SYMBOL vmlinux 0xdf48a0eb flex_array_put +EXPORT_SYMBOL vmlinux 0xdf4c8767 ns_to_timeval +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf96f882 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xdf98503d shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd8ee93 invalidate_partition +EXPORT_SYMBOL vmlinux 0xdff75f1f vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xe00c0441 eth_rebuild_header +EXPORT_SYMBOL vmlinux 0xe019b041 free_task +EXPORT_SYMBOL vmlinux 0xe0350b5d bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xe0473609 netpoll_setup +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe054f630 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe06e4199 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe079bb73 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xe07b1a84 sock_no_bind +EXPORT_SYMBOL vmlinux 0xe08238b9 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xe088b6d3 drop_super +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b06ac4 __lru_cache_add +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xe0fb171f __page_symlink +EXPORT_SYMBOL vmlinux 0xe0fc24aa param_set_int +EXPORT_SYMBOL vmlinux 0xe108bae9 bio_integrity_tag_size +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe116ba9b cdev_alloc +EXPORT_SYMBOL vmlinux 0xe11cddf3 module_refcount +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe15f42bb _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0xe169e801 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1a573d0 flush_signals +EXPORT_SYMBOL vmlinux 0xe1b70700 dev_uc_init +EXPORT_SYMBOL vmlinux 0xe1d0b54b override_creds +EXPORT_SYMBOL vmlinux 0xe1febbfe neigh_for_each +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe23cb4b0 block_write_end +EXPORT_SYMBOL vmlinux 0xe23f8820 set_bdi_congested +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe26d7968 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xe27adcff no_llseek +EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 +EXPORT_SYMBOL vmlinux 0xe2cfb038 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2f93e01 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xe319450d generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe3211b31 i2c_smbus_process_call +EXPORT_SYMBOL vmlinux 0xe3305de2 vfs_read +EXPORT_SYMBOL vmlinux 0xe3464771 thaw_process +EXPORT_SYMBOL vmlinux 0xe3637253 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xe37e02c8 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e12008 __first_cpu +EXPORT_SYMBOL vmlinux 0xe3e29c9c __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xe3fbe148 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xe400fc5e posix_lock_file +EXPORT_SYMBOL vmlinux 0xe403b78e __invalidate_device +EXPORT_SYMBOL vmlinux 0xe4203aa0 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xe434b4ae scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xe43617f7 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0xe45d61a6 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xe476f778 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe485a084 __f_setown +EXPORT_SYMBOL vmlinux 0xe4952e67 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xe4a311fa blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xe4a4a9ca mark_info_dirty +EXPORT_SYMBOL vmlinux 0xe4bc6174 rename_lock +EXPORT_SYMBOL vmlinux 0xe4bde001 pci_disable_device +EXPORT_SYMBOL vmlinux 0xe4d85c1d ida_pre_get +EXPORT_SYMBOL vmlinux 0xe4ea0f33 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xe50b3a35 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xe5122890 flow_cache_genid +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52947e7 __phys_addr +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe5387159 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xe56ea104 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe58333d0 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58ae2e7 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xe58bbe89 register_filesystem +EXPORT_SYMBOL vmlinux 0xe5bec95c i8253_lock +EXPORT_SYMBOL vmlinux 0xe5c4bd40 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5c8c93f proc_create_data +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe60206b7 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xe61409f9 dentry_unhash +EXPORT_SYMBOL vmlinux 0xe61c6246 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xe62dd25d inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xe6310462 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xe6419a4c elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xe67c5608 journal_start +EXPORT_SYMBOL vmlinux 0xe68cc112 deactivate_super +EXPORT_SYMBOL vmlinux 0xe6953e77 blk_get_queue +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69d2f6e lro_receive_frags +EXPORT_SYMBOL vmlinux 0xe6adce7d __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xe6b23a1e tcp_check_req +EXPORT_SYMBOL vmlinux 0xe6c707d1 blk_run_queue +EXPORT_SYMBOL vmlinux 0xe6d376d1 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xe6d81ebd filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xe6e3b875 down_write +EXPORT_SYMBOL vmlinux 0xe6e49e1e set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xe6fb675c node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe708d85c phy_find_first +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe7223bae proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe732933c cont_write_begin +EXPORT_SYMBOL vmlinux 0xe74cb292 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xe75e86ee nf_register_hook +EXPORT_SYMBOL vmlinux 0xe7609b0d generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe7722171 flex_array_free +EXPORT_SYMBOL vmlinux 0xe781b441 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xe78ea50a remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xe7a664c4 nf_hooks +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7ba828e netdev_set_bond_master +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e455ff inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xe7fb2257 md_done_sync +EXPORT_SYMBOL vmlinux 0xe801a146 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xe80ce219 sysctl_tcp_dma_copybreak +EXPORT_SYMBOL vmlinux 0xe8116e08 __kmalloc_node +EXPORT_SYMBOL vmlinux 0xe81368c9 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xe82149c8 pci_enable_bridges +EXPORT_SYMBOL vmlinux 0xe8249e45 do_splice_from +EXPORT_SYMBOL vmlinux 0xe826ab99 mapping_tagged +EXPORT_SYMBOL vmlinux 0xe830321a netif_rx +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe8858dd0 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xe895e05a tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xe8b63ace radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xe8bb8e65 dquot_enable +EXPORT_SYMBOL vmlinux 0xe8c7766d tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xe8d2e93b padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xe8dbafef __next_cpu +EXPORT_SYMBOL vmlinux 0xe8ebf346 ab8500_gpadc_ad_to_voltage +EXPORT_SYMBOL vmlinux 0xe8ee7022 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe92702e2 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xe93b3bff tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xe93c9847 dev_driver_string +EXPORT_SYMBOL vmlinux 0xe94eae8d vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xe94f3dbe page_follow_link_light +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe961f7e7 acpi_bus_add +EXPORT_SYMBOL vmlinux 0xe964ac35 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xe9759ffe scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe999caa5 journal_check_available_features +EXPORT_SYMBOL vmlinux 0xe9a501ff d_drop +EXPORT_SYMBOL vmlinux 0xe9a98cb6 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xe9bd0cde ida_init +EXPORT_SYMBOL vmlinux 0xe9c98bbb uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xe9d18e15 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xe9d89a52 thermal_zone_device_update +EXPORT_SYMBOL vmlinux 0xe9dff136 mempool_alloc +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0e98db tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xea10212a int_to_scsilun +EXPORT_SYMBOL vmlinux 0xea10655a __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xea427c11 nf_log_register +EXPORT_SYMBOL vmlinux 0xea4d1063 neigh_table_init_no_netlink +EXPORT_SYMBOL vmlinux 0xea75007c lock_fb_info +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea80532d posix_test_lock +EXPORT_SYMBOL vmlinux 0xea8a6c75 param_ops_long +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea9855ae blk_limits_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xeaae5adf lro_flush_all +EXPORT_SYMBOL vmlinux 0xeaba7e87 inode_permission +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xeacc9d33 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeafbd11a call_usermodehelper_freeinfo +EXPORT_SYMBOL vmlinux 0xeb17201a pci_map_biosrom +EXPORT_SYMBOL vmlinux 0xeb2281e4 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xeb29d244 directly_mappable_cdev_bdi +EXPORT_SYMBOL vmlinux 0xeb367308 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb4ec9ff padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xeb766181 search_binary_handler +EXPORT_SYMBOL vmlinux 0xeb86d118 md_error +EXPORT_SYMBOL vmlinux 0xeb8a0a0f __bio_clone +EXPORT_SYMBOL vmlinux 0xeba677bd posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xebaf5b61 dcb_getapp +EXPORT_SYMBOL vmlinux 0xebbd4883 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xebbd6afd netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebdbe48c radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xebde39ef filemap_fault +EXPORT_SYMBOL vmlinux 0xebf327ce genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xebf87e64 proto_register +EXPORT_SYMBOL vmlinux 0xec15f00a tcp_cookie_generator +EXPORT_SYMBOL vmlinux 0xec19901d mount_subtree +EXPORT_SYMBOL vmlinux 0xec27c4d1 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xec30470d mpage_readpages +EXPORT_SYMBOL vmlinux 0xec4928a7 ip_options_compile +EXPORT_SYMBOL vmlinux 0xec4e50df free_user_ns +EXPORT_SYMBOL vmlinux 0xec5023a1 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xec5ea053 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xec6d129f mmc_can_reset +EXPORT_SYMBOL vmlinux 0xec730387 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xec73531e i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xeca1772a generic_write_end +EXPORT_SYMBOL vmlinux 0xecc2ada6 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xecc641d5 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xeccb64ad padata_free +EXPORT_SYMBOL vmlinux 0xecf11feb journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xed165657 cdrom_release +EXPORT_SYMBOL vmlinux 0xed302f0f tty_lock +EXPORT_SYMBOL vmlinux 0xed451737 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xed4b900e vfs_fstatat +EXPORT_SYMBOL vmlinux 0xed4f253f netlink_ack +EXPORT_SYMBOL vmlinux 0xed668c4b __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xed779ad6 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xed80703e single_open +EXPORT_SYMBOL vmlinux 0xed86e0f4 agp_enable +EXPORT_SYMBOL vmlinux 0xed8c8bb6 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xed9a49eb __ps2_command +EXPORT_SYMBOL vmlinux 0xeda0d76e gen_estimator_active +EXPORT_SYMBOL vmlinux 0xedb35858 skb_push +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbc3fd0 simple_unlink +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedf57e1b give_up_console +EXPORT_SYMBOL vmlinux 0xedf95517 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xedfdc1e6 generic_writepages +EXPORT_SYMBOL vmlinux 0xee09a14c tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xee0a055c __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xee2cbc29 devm_free_irq +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee46885d add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xee6327f5 registered_fb +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee876a94 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xee95707d locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xef24b932 udp_prot +EXPORT_SYMBOL vmlinux 0xef3aca51 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init +EXPORT_SYMBOL vmlinux 0xef502763 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xef658fe6 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xef6f00f0 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xef733042 __destroy_inode +EXPORT_SYMBOL vmlinux 0xef7c6172 request_firmware +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefb6b186 interruptible_sleep_on_timeout +EXPORT_SYMBOL vmlinux 0xefb71089 alloc_disk +EXPORT_SYMBOL vmlinux 0xefba93e1 mempool_destroy +EXPORT_SYMBOL vmlinux 0xefbdc0f5 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xefc39d55 input_event +EXPORT_SYMBOL vmlinux 0xefcb09a9 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0143309 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xf030d2fa ndisc_build_skb +EXPORT_SYMBOL vmlinux 0xf035267e remove_arg_zero +EXPORT_SYMBOL vmlinux 0xf0401e4e bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf0668483 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xf080be6b ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xf0b35fe3 blk_free_tags +EXPORT_SYMBOL vmlinux 0xf0ea9b7d kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f1246c kvasprintf +EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xf100416a remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf11691f2 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user +EXPORT_SYMBOL vmlinux 0xf1216c75 prandom32 +EXPORT_SYMBOL vmlinux 0xf14519f8 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xf147ecb1 down_trylock +EXPORT_SYMBOL vmlinux 0xf161980c kmem_cache_free +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf19e359d wireless_send_event +EXPORT_SYMBOL vmlinux 0xf1bea6f1 schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xf1c2456f generic_read_dir +EXPORT_SYMBOL vmlinux 0xf1cf3036 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf1dabcc4 pnp_is_active +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f46d0f scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xf1fde358 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xf201fafc blkdev_fsync +EXPORT_SYMBOL vmlinux 0xf202c5cb radix_tree_insert +EXPORT_SYMBOL vmlinux 0xf2061aaa init_task +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf217f74a acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xf21c499c dquot_drop +EXPORT_SYMBOL vmlinux 0xf22449ae down_interruptible +EXPORT_SYMBOL vmlinux 0xf228e0a5 do_SAK +EXPORT_SYMBOL vmlinux 0xf2309e39 vfs_getattr +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2408ca5 flush_old_exec +EXPORT_SYMBOL vmlinux 0xf250a968 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xf25b2328 pci_disable_ltr +EXPORT_SYMBOL vmlinux 0xf26075bf eth_type_trans +EXPORT_SYMBOL vmlinux 0xf260cc22 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2ab9358 pci_pme_active +EXPORT_SYMBOL vmlinux 0xf2f2c098 framebuffer_release +EXPORT_SYMBOL vmlinux 0xf30a7974 inode_needs_sync +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf315680a load_nls_default +EXPORT_SYMBOL vmlinux 0xf32055e7 dev_base_lock +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf338d4c3 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3653834 pci_target_state +EXPORT_SYMBOL vmlinux 0xf37260ab _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xf37ec7f7 phy_scan_fixups +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3bf0bce __bitmap_complement +EXPORT_SYMBOL vmlinux 0xf3c3b529 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xf3c74fb7 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xf3e5f539 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xf408d4e5 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xf4103da1 scsi_device_get +EXPORT_SYMBOL vmlinux 0xf43da058 lookup_bdev +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf44923dc kern_path +EXPORT_SYMBOL vmlinux 0xf44d3bf3 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xf451414a xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xf4528073 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xf46ec7bf jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf47182c8 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xf47b7f40 tty_free_termios +EXPORT_SYMBOL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4c53a80 udp_seq_open +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf52da21e i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf55c612b kern_unmount +EXPORT_SYMBOL vmlinux 0xf566b7ca xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xf5893abf up_read +EXPORT_SYMBOL vmlinux 0xf596ee93 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xf598be6a rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xf5a69ec2 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xf5b68860 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf5bbe353 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xf5c9012e timespec_trunc +EXPORT_SYMBOL vmlinux 0xf5cb1af7 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xf5cf326a param_ops_short +EXPORT_SYMBOL vmlinux 0xf5d0b8cb current_task +EXPORT_SYMBOL vmlinux 0xf5daa6ec qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf612809a param_get_int +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63c791e bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xf65e1d4a rtnl_notify +EXPORT_SYMBOL vmlinux 0xf6628fc9 module_layout +EXPORT_SYMBOL vmlinux 0xf668b26d jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xf6965ac8 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xf696f502 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6d8ff57 generic_write_checks +EXPORT_SYMBOL vmlinux 0xf6dac66f inet_register_protosw +EXPORT_SYMBOL vmlinux 0xf6e69f87 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6edb3d7 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xf6f06fef skb_copy_datagram_const_iovec +EXPORT_SYMBOL vmlinux 0xf7447e3e tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xf747dd44 kstat +EXPORT_SYMBOL vmlinux 0xf7506c41 __any_online_cpu +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75d9b3b bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xf76e0653 padata_start +EXPORT_SYMBOL vmlinux 0xf77b302b prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xf78d04ab netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xf79fc2c2 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xf7c8ff13 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0xf7ebdd35 posix_lock_file_wait +EXPORT_SYMBOL vmlinux 0xf7fc3e2c mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xf803fe39 bitmap_set +EXPORT_SYMBOL vmlinux 0xf8114580 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf824ac83 pci_disable_obff +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82e3d47 acpi_initialize_objects +EXPORT_SYMBOL vmlinux 0xf84fdcd8 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xf854c248 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8983de7 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xf89843f9 schedule_work +EXPORT_SYMBOL vmlinux 0xf8bd1158 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xf8cdf463 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xf8d7663c pci_enable_device +EXPORT_SYMBOL vmlinux 0xf8d924a0 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xf8ec7f53 __locks_copy_lock +EXPORT_SYMBOL vmlinux 0xf8fa5f9a blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xf92d0d5b iunique +EXPORT_SYMBOL vmlinux 0xf9300775 seq_bitmap +EXPORT_SYMBOL vmlinux 0xf96a392b key_validate +EXPORT_SYMBOL vmlinux 0xf96d69bb sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xf98eb156 add_disk +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9bb0100 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xf9c4b7e2 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xf9de0d80 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xf9ff234a agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xfa02036f agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xfa39e2b2 do_munmap +EXPORT_SYMBOL vmlinux 0xfa48b3f7 scsi_execute +EXPORT_SYMBOL vmlinux 0xfa593f0e proto_unregister +EXPORT_SYMBOL vmlinux 0xfa66f77c finish_wait +EXPORT_SYMBOL vmlinux 0xfa67c245 tcf_hash_destroy +EXPORT_SYMBOL vmlinux 0xfa944b3c dma_set_mask +EXPORT_SYMBOL vmlinux 0xfa9d299f sock_i_ino +EXPORT_SYMBOL vmlinux 0xfac1bfd2 nla_put +EXPORT_SYMBOL vmlinux 0xfad33e56 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xfaf286a4 d_add_ci +EXPORT_SYMBOL vmlinux 0xfaf98462 bitrev32 +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb26f577 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xfb2df4b3 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xfb5f846a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xfb63fae6 journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xfb6a8545 km_policy_expired +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7d26f4 files_lglock_lock_init +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb32bee kfree_skb +EXPORT_SYMBOL vmlinux 0xfbb3963d nf_getsockopt +EXPORT_SYMBOL vmlinux 0xfbbaee7a mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xfbe27a1c rb_first +EXPORT_SYMBOL vmlinux 0xfbe8b4c3 mmc_erase +EXPORT_SYMBOL vmlinux 0xfbf2eb5e mii_check_media +EXPORT_SYMBOL vmlinux 0xfbfe2198 sget +EXPORT_SYMBOL vmlinux 0xfc011c0a __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0665c7 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xfc11b06f fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xfc208adc udp_sendmsg +EXPORT_SYMBOL vmlinux 0xfc22971c netif_carrier_off +EXPORT_SYMBOL vmlinux 0xfc29ed4f input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xfc38af8c find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc45744e skb_copy_expand +EXPORT_SYMBOL vmlinux 0xfc63aefd elv_add_request +EXPORT_SYMBOL vmlinux 0xfc82033d genl_register_mc_group +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc91fce1 kernel_accept +EXPORT_SYMBOL vmlinux 0xfcaa04a0 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcacd912 __register_binfmt +EXPORT_SYMBOL vmlinux 0xfcb472fc netlink_broadcast +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcd35070 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xfcd9fe50 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xfce13417 xfrm_input +EXPORT_SYMBOL vmlinux 0xfcea1f01 get_unmapped_area_prot +EXPORT_SYMBOL vmlinux 0xfceb87e9 igrab +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd058336 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xfd2b613b scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xfd2ffa22 mdiobus_free +EXPORT_SYMBOL vmlinux 0xfd350c42 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xfd3fec76 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xfd4fa429 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xfd605610 bio_get_nr_vecs +EXPORT_SYMBOL vmlinux 0xfd6293c2 boot_tvec_bases +EXPORT_SYMBOL vmlinux 0xfd6a20a6 flush_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xfd6b3d0c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xfd6f4850 native_wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xfd74f6d8 read_cache_page +EXPORT_SYMBOL vmlinux 0xfd7d7713 acpi_exception +EXPORT_SYMBOL vmlinux 0xfda0dbe8 ftrace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdd75b30 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xfddf011b neigh_update +EXPORT_SYMBOL vmlinux 0xfde67e16 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xfdee7d42 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xfdf33486 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdff9bb2 nonseekable_open +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe0e49e4 dma_pool_create +EXPORT_SYMBOL vmlinux 0xfe1a8b52 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe30fcd9 skb_set_dev +EXPORT_SYMBOL vmlinux 0xfe311a94 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xfe3356f5 dquot_transfer +EXPORT_SYMBOL vmlinux 0xfe392bcd generic_segment_checks +EXPORT_SYMBOL vmlinux 0xfe3b11bf tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xfe3deca2 write_cache_pages +EXPORT_SYMBOL vmlinux 0xfe453fa3 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5f6af0 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xfe769456 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe8f3c0c inet_release +EXPORT_SYMBOL vmlinux 0xfe942321 mmc_host_enable +EXPORT_SYMBOL vmlinux 0xfea90787 free_netdev +EXPORT_SYMBOL vmlinux 0xfeb816a9 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xfec3c2f2 bcd2bin +EXPORT_SYMBOL vmlinux 0xfedd35fc console_suspend_enabled +EXPORT_SYMBOL vmlinux 0xfeef2bb0 dst_discard +EXPORT_SYMBOL vmlinux 0xfef96e23 __scsi_print_command +EXPORT_SYMBOL vmlinux 0xfefd1b72 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff4e817b inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6fdd90 md_flush_request +EXPORT_SYMBOL vmlinux 0xff718311 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xff72ccc0 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff81cf36 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffcd97c3 eth_header_parse +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdd0603 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xffe88191 __lock_page +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x19dc7881 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x5e752773 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/kernel/microcode 0xdf66ca81 ucode_cpu_info +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x033ba82b kvm_mmu_get_spte_hierarchy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053c2398 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08e8d3b9 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bbfc77a kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e11d6c0 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11bc9b81 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12501f86 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17b04470 hva_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1961b4c9 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1bbe6395 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cfe78d1 kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e942df5 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e97eedf kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x206ad9ef kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x224b2144 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x239780b3 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24a3e613 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29170908 kvm_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29ae7cff kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2cbfcf1f __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d464b8b __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ed489b6 gfn_to_pfn_async +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f1b2c54 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3068b4de kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x369d090e kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36c6abb0 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3899d21f kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39221ff9 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b379bb0 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c3018b2 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3de08404 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45acb48d kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x460b906c kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4969e54f __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4992f393 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49b0cc9a kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b74f6f4 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ec4df9b kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5445f1c3 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5524033e kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58de7b5b kvm_set_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x653502cd kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65ea7dc1 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6caab796 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d0b708c kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6db19e07 is_error_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x703c2e4e kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x731fd3a6 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74fbc94a is_fault_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c0f14c1 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c9b19a5 is_noslot_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d1a2603 x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7eef9e9b kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83741408 kvm_resched +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8460ca6f kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x864562f6 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x866d5c23 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8fe32346 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x910d8e46 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92d7d29a kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x97874c13 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fa106c7 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa26116f1 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa89b0318 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa91845be is_invalid_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa0c2001 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb29b7683 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb38ebaf8 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb69b763f kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96154b0 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9c77385 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb8d211c gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc2b937d is_hwpoison_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbe1f8823 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc32a28cf gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc32e5bcd __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc52f3713 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc5df85c6 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb5051e3 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc33d62d __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf2b2070 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd227418b kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd296def9 kvm_is_error_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2986902 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2aa79a8 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4a98cb7 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4d698ce kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd506a680 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5904e03 fx_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd69a37ed __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd6f218d8 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda68a9a3 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd64f725 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde1888a0 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf18670e handle_mmio_page_fault_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1f13aac kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe68fed98 is_error_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe73159a4 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xefb56070 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf03b1dce kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf050b55d kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0599848 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf495dad5 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa1f11e6 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa3fb4d3 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc699248 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfce94030 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcf4bba5 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdbd2462 kvm_set_cr3 +EXPORT_SYMBOL_GPL crypto/af_alg 0x386b8704 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x45bb7190 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x63aba7d7 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x65eef7f4 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x800b93d3 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x84db02c9 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x928d6849 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xcc1ac7d1 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xe799cfbb af_alg_release +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xfd17e219 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x66ed846d async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6d4a4d06 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x30951102 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xea225125 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0c09a555 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2c37266d async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6aaf5989 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa6952de2 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x0164ff8c async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x788da8ad async_xor_val +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x08fe6531 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x164b3e19 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x3221368e cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x40cc11ef cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x42d711f7 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4eabf9b4 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7a53f7da cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x9f35dc06 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xc817caa0 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd03117b8 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xdaeeefd8 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x27dd847d twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xf8582a2a __pata_platform_remove +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xff0da576 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1242844e bcma_core_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1f3f4e0a bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2681c42b bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x27a8ed7f bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x41e8227c bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4d3f7fd6 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5d3f038f bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7b94b109 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x99148fc2 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa9ac25e5 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa9de78ea bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xac3ba0b7 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf77c1f9 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x08d5adc7 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x10be1c23 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x16ff1fb6 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3c392ea5 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4b6077b0 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x77e5add9 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8af2f3b6 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcf5bd011 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL drivers/dca/dca 0x2e471f01 dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x8006c614 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x8e5faf08 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x92f9a2ed dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x99701711 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xbf9b6a22 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xc761efb8 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xe558f25a dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0xf8831611 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xcfd0b73e amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0a386923 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0ea2e1eb edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x217b24fa edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x272bb896 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x38655a26 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x435c87ed edac_mc_handle_ue_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4c78e863 edac_mc_handle_ce_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5da44544 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x62c26f3a edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x69259f22 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x771bb6de edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7b1510a3 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7ea1aa5e edac_mc_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7fb6f08c find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x86756719 edac_mc_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8d3c2021 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8f438e72 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9047be7e edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93c05213 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x97dedb59 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaaddf6b4 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaade7edd edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xab2b8f65 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc9f020bf edac_mc_add_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xce1b08e0 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xffb8a5be edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0d38cee6 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0dc0b68c amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0f0ba55e ii_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x4b01887d pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x6d4e6991 amd_decode_nb_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x7509830f to_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb98537cb rrrr_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xc2b73a3a amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xe6ff7e0c ll_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xf8dec080 tt_msgs +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x382e255f bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xe3fb5bd3 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x70bc6e71 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xc6ba086c __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x071e879c drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2b6fc774 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x065edda0 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08f06be4 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x09c87d9e hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17217c68 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b3b4b64 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2cd01896 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x32aa4356 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3ae78d47 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4e8fad7d hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ea21ae8 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4f7e8a65 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x51fc39ca hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x536683d8 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x56955749 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7dd98a50 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x944b8c6b hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96747772 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x98c02676 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9b0db7ac hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ba0994d hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa6b5fe7 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb427db60 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5a15725 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd6483799 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd9d7932 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5fbdb86 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x577e1a8b roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2f5eb973 roccat_common_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x675b3c9c roccat_common_send +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x05c06740 usbhid_submit_report +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x3527af53 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x85d6bbf1 usbhid_wait_io +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa9ef732f usbhid_set_leds +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0aa9d15c vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x12e7365f vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5157ee51 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5cbb3b11 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6779f468 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbdaf70b1 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbede8ad0 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xed1c96b7 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf22fdc8f __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf8c937c9 vmbus_open +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x7e53177d nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x589541de i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xc16664e1 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6ae457e0 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf8d6f08f i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/hw/ipath/ib_ipath 0x1514b2b2 ipath_debug +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xce072041 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x64cb0d41 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0f6a439c wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2074187a wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x39537863 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3bcc47b6 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3dca0520 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7e64cbdb wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbebaa2e7 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc58564fa wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd40d15d5 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd91c10b7 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xecde18e4 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf48a4631 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x4de7b2d0 unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xb17b7c77 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0e6ff155 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x101a1e63 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1acab528 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1ecaa34f gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2e19afb2 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3166e903 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x49b5c82e gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x73d48994 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x770239a0 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa078d4bd gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaca83286 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xae99d4df gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb06bed77 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb77ff545 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc021dc8a gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd2083be4 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xea5a5c80 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xff837199 gigaset_start +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3abf4677 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x0fd6c2a0 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x3b7d4edd dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x10850c1f dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x53ef9fa3 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6677a31d dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa0ac8b8b dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xb739d705 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xea377da3 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x009e200c dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x03ced457 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x08a936ca dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0d590abc dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x28400536 dm_sm_checker_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42727fbb dm_sm_checker_create_fresh +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x43293720 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b2ff62 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x769a642e dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80afbcf5 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80c89b3d dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98925a60 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa6aae3ea dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa7e46220 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb7bad799 dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb967690a dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdb562135 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xefba9b23 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf99dc2cf dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/raid1 0x47c16740 md_raid1_congested +EXPORT_SYMBOL_GPL drivers/md/raid456 0x27ee2f91 md_raid5_congested +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x192bf4b5 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x2479d87d saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x35204901 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x96484ee0 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xa2d99476 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xb0a2926a saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xc4beb81e saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xc816a396 saa7146_devices_lock +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xcf683cf2 saa7146_devices +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xd23fd9f4 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xd58c0b47 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xeb319db3 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x07281cb9 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x180e93d0 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x23ac4837 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x3e91e4a5 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x6bff41dd saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x6c87cd54 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xa41df230 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mt20xx 0x0daff765 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mxl5007t 0x1445b880 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda18271 0x02ebd1b2 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda827x 0xd09afd43 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0x3db86533 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0xd7ef9062 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda9887 0x92735fed tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x996f9286 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0xff11bcac tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x613ade24 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0xaab844d9 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tuner-simple 0xa453cf3c simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-demod 0xed88fd06 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-tuner 0x2db2faaa mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/frontends/tda18271c2dd 0xab3f08df tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x11cc6d97 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x17c178b7 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x4ec5f80b mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x5dad8f1f mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x6c7151a0 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x6df25c32 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x7d913d4e mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x7f9adfeb mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x8c668e65 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x9d8df667 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xadd2254a mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xc01db9b5 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xc4b1e18e mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xd870ae11 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xde68642f mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xee37b702 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xfd90f1bb mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x01fe30e0 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x14f54d9e smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x1d4fb92e smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x277d0d72 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x2eea84e3 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x4662938b smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x54def3d7 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x744ea0b6 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x76222253 sms_get_board +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7a50c5fd sms_board_event +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x92b586c7 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa0f903ce smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa605ca6a smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa6403e97 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa860296e smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbcb9a6ea sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xc45c5852 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xd11c3c45 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xf732611a sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x1bac68c4 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x561fb109 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x728c635e ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x8265172e ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x8b448fd9 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xbc1b9138 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xe1e117a5 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x00fc96d9 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x14add670 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1dbeff2a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2a0f151a ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x32d97064 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x526fe5a1 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x610de3cc rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x705e705a rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7960b17a rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8cef1151 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x91a990ae rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xab2d0899 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb967f77f rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbcdeb75d rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcbf9bb56 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd8b7fe95 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd8c84373 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x0593a224 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x1830278d cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x1fa2de47 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x20f09df9 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x22487072 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x3dde55aa cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x4916f37f cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x4a08eccd cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x5b3b3914 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x6b48e6f8 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x79a568c5 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x861aa4ea cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x985c869c cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x9ba6be30 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xa5ccfd13 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xa5e59502 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xc9d17259 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xe44fdb44 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xf3216443 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx88/cx88xx 0xe20c99e1 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x56048818 em28xx_isoc_dvb_max_packetsize +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x6fd95a5e em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x74d81815 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x75ec71ae em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x92a08632 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xbc4dd3d4 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xf383a271 em28xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xf8ce8999 em28xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xfbe6ec86 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xfe9e51df em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x118e9c27 saa7134_s_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x1f5ba9d1 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x30ec3a3a saa7134_queryctrl +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x5e3fd27a saa7134_g_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x6c372cb4 saa7134_s_std_internal +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xce405683 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdd0aebb1 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdf2dcd8d tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xebf30477 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x28e9276c v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x457ea459 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x5b0ae58a v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x90549375 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x94632f90 v4l_fill_dv_preset_info +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xa3945018 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xdc95774d v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-compat-ioctl32 0x51aa69f9 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x16b1403c v4l2_int_device_register +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x62c97391 v4l2_int_ioctl_0 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x6c73862b v4l2_int_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x939ced29 v4l2_int_ioctl_1 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa5228b24 v4l2_int_device_try_attach_all +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x01bf9e58 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x0a59b66a v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x274e1417 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x32ac3fd4 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x45949f01 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x5093f76b v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x63f92f87 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x727a1eb3 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x76fca068 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x825ca758 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x8eaef788 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc653a86b v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xfc7e9414 v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x0dc848f3 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x13da0a87 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x26bf0109 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x3072c236 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x45c0f7b3 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x478590b6 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x5ab75341 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x70dfb999 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x71db4026 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x75f60137 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7e6847cf videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8096bdfe videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x9b244285 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xa9d8edf4 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xb327746d __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xb93d85a2 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xc21fcede videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xca13ddcf videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xcce6f49a videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xdaa82903 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xdbd532fe videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xe5d9e328 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xed803092 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xff12c20c videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x3cfe4573 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x567149fb videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0xb0b92b43 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x157f271b videobuf_dma_init_user +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x1b046996 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x40f20501 videobuf_dma_map +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x81122ae9 videobuf_dma_init_kernel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x8b9b5904 videobuf_dma_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xa2bb9e03 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xa38faed2 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xbdc01976 videobuf_dma_init_overlay +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xc716d9e3 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xd777cab3 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x03a89ca4 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x0e23ea1f videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0xb6ba4f95 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x03e66349 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x12f48be6 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x1304361a vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x1c90d73e vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x4cd3b567 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x6ddf1360 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x8495e33e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x85596515 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x8f533f22 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x9cc4c2d8 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xa11d3e89 vb2_read +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xb3fa9a37 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xbc5832cf vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xd9961cd8 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xd9dd1469 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xe7655804 vb2_write +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xf9bfe6c5 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0x280df137 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0x8918ade4 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x4a14ce61 vb2_put_vma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x90d243df vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xbbbc37c1 vb2_get_contig_userptr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xfbb70ef5 vb2_mmap_pfn_range +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-vmalloc 0xfa911e8b vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0264cb30 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x03e0f149 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0d1ff44f v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x11eef90b v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x20834087 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x24cb5330 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x3198dedf v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x33904639 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x40ea9e1e v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x4ca1cfdd v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x59953e69 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x5ffa8b51 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x7e055c1e v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x959160a0 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xac12eca1 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xadae277b v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xb640e571 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xbfb3f6f1 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xc568be1a v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xd791dcf3 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xe032fe78 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xff965a13 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x2572d1e0 i2o_dma_realloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x373e4f92 i2o_dma_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x4f1ffe9b i2o_sg_tablesize +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x6455564a i2o_dma_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x9e140c77 i2o_dma_map_single +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xe400b7f7 i2o_pool_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xec84b342 i2o_dma_map_sg +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xfa0f5a9d i2o_pool_alloc +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29d1d107 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1dbb232b pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x21c3d045 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3ff04839 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5106b2b5 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5a676d01 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x81c9de6c pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa81f51da pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdbfbeb65 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe7967dd3 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xec8688d1 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf739bea0 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x478c9c4c pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x69d06da4 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2dbc4d69 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x372158e7 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3f79c4f3 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb6c3bfd5 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdd1ff163 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x005e8862 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x109efa80 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x21a87bc9 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb43ac5d4 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe624d57e sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xabb62b71 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x0de2af2a wm8400_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x190201b0 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x3cc6e04c wm8400_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xdeb207c0 wm8400_block_read +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x25346b4b cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3b65aaaf cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x41b2f61a cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x4237ddb8 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x2df115d4 eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d14d2f eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x223fe2a0 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7247126a enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7a74212a enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa449b9c3 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe8e9e327 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xefde1859 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf792ade8 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x057620ff lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3ad45d17 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4ec3d838 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xbd414c36 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc33c6ab1 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf0588718 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf758983e lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x636e2e9f st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe3a291ea st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ba764e9 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3764626c sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3aaeff6a sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x411fb835 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x515d0655 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6d6c106a sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x80f9dc74 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8d52e601 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xacb27f1d sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7281f7dd sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc316c744 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc69d3f60 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc7f019c6 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe6e3ed4f sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf778ffd1 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1553dba2 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3c492001 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4323c8f7 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x684e1ddd cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x974929b6 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc57cdef0 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xa390cdfa cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x00d89951 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9c4f2034 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc947f433 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2000 0xd926e7f6 DoC2k_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001 0x55d7dee4 DoCMil_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001plus 0x1325531a DoCMilPlus_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/docecc 0x45937659 doc_decode_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x02991852 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13c89b61 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x17f56ede __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18c863a1 default_mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e695ea8 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44af1879 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x464276e2 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x486ac670 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e122cc7 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86469d6e mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x898a3bf1 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x91a73beb __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x94c8c3ab mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb34acf44 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb9cdeda mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2be2586 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe616c27e register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe958befc mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf30c8751 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfafe68fc mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff7b26a5 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x217d7d10 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xbf921343 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xc4bc6d8c mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xcaec1a1c add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe15fbe6a deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x361df5ae nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x564ce940 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xd7de46c8 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x3db8b35f onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x80315ed3 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x21aacb31 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2e355269 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x322ef6f9 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x558cf3ef ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x56b8d953 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f09ba8a ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x70847cb4 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9c9f36d6 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb4cec23a ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc06263a7 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc5f9a6f6 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd11e15be ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfbc87bca ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd6f0ef9 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xff364681 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x06becea2 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5f08b632 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x87862c86 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc49db0e8 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0d671d46 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1afa00bc close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1de7f329 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2ed8498b open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5308c4bb alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x589a52e2 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6acc2134 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x77c7c059 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa7e2fbf5 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xad84c8ac register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xca15bb14 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcdf8063d alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5008a00a unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb343df33 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc6c32bfa register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfa41f7c9 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00419395 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x020e1580 mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03443cca mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08805fbf mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x097ea248 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d9b97bd mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10751255 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10e6d34d mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x141712c7 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14406225 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x217a41a3 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27288ec4 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29173a8a mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ac031e8 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e35c47d mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e75aa1e mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e776931 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31c9093c mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31e371a3 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34460959 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x365bdecf mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x409e1568 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4268cbd3 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43a67589 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44938974 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46f603d7 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c4376ca mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x534f81fd mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x538bd62a mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ac5fd2d mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6aed0b54 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b9254ce mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x809f6241 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81a91e04 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x856d90fa mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86250daf mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8927bcef mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e17afef mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90c8b76d mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93007820 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ce20196 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d96b46f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3002b3e mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa68d4ae6 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa4c3120 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb45f94d1 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb688276a mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbde261bc mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf6b1e7b mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc216b3bb mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc38a8045 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc57f0bd4 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6903e9a mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc95a060c mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca153dcc mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcdc5748e mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a56626 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd521ebbc __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd710b1eb mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7ab48c3 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0d8d358 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3c29080 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7c043f7 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1c8c352 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2311f72 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2caee54 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf79b8608 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc440abc mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0be8dfa1 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4624ab12 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb6fe328d macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc06d66e3 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc81b3374 macvlan_start_xmit +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xd7f35570 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x154d21e8 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x98e9532e usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc3b17f38 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf3303326 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1d1ca9d2 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x70064e5c generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x78eb3128 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa50fa556 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xacfda99d rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf9d45661 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x00655126 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x083d9f41 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0cdff963 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1b41eb71 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c0d292f usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21983800 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x43e702d4 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x488e618a usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4aa97bfc usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5ead9167 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x654f9519 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ffe85a2 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x752ca355 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b60a9a8 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c452f8a usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3e53693 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3f6295a usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0c46b6b usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbfef130f usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc38b0ffe usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd874a18b usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed05ad29 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf4f22472 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xffe2aad9 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0b8e921c i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0ed49a9c i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3cfaae0b i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x632d439f i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x774ab97f i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8348650f i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x90e8700b i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xac0f8724 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xaf62a9dc i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc32d5f1d i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc58ae229 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc8947b24 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd9462920 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf0ed2d07 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf4a973ec i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfae0c811 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x1c820b19 libipw_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xfde59b47 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x06a89d13 iwl_legacy_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x06e865b0 iwl_legacy_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x87ac336b iwl_legacy_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0xef248d4f iwl_legacy_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x02dbe3ae lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1563ed79 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x313595e9 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3ce30738 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x459e70aa lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6b20e57e lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7bed758c lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa5b992e0 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xaac18334 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xaaec0018 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc95355d2 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xccfeb101 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd9372164 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe4232b1b lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf482eb58 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x45f574ab lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7a834852 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7f9926a9 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xbce878f4 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd3ce69bd lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd8daecaf lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xdd6d2b03 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe8778a3a lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0x8c1e7360 if_usb_reset_device +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0xd1f24b5c if_usb_prog_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x16dda31d mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x20aca0d8 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x25bb7524 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3690afe0 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3f4658e7 mwifiex_deauthenticate +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7b02032e mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7e4a79e2 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8d52da16 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb0cbc061 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb2ab4d86 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe6d4448a mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0a8ea12f p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2bfe5c10 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x31da7f64 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x71df5c99 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa0ad706a p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xae5649b4 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf2f0cbf8 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf336f685 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xfee6da9f p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x034c473e rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x03a2aaae rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x178225d3 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1beefbc2 rt2800_validate_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x21e63a91 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3099b43c rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3ab7abde rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3d5214b0 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x45a527bf rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x64c0c54b rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x64c75f59 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x66f27921 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6b27feb4 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7330bad8 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7823bade rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x787d4943 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e5a2b02 rt2800_probe_hw_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x826a883a rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x865eed33 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9114441c rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x950f7480 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa32f154f rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa9728ca1 rt2800_get_tkip_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb56adace rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb751236e rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xba271214 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc6834e9a rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcb5d17ad rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd5207251 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd7f1b07a rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdb1b65b1 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdf91d53a rt2800_init_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe31f23bc rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe6e5e1e1 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xed7bb36d rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf762a26c rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfe74e841 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x02011b2e rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x04fd1968 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0fd9b159 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x17f94f7a rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1d334e54 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x22e17966 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2dd45fdb rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2ebf95ab rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39e3b5a3 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3e480b32 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x427559d9 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4a3087d7 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4b0a1520 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4d95ec07 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x505e1fd0 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e8064a5 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5eb9169d rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x64247f9c rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x69735505 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7079dba3 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x80568a4c rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8059c8d8 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82c42aea rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x86356332 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x89007edc rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8d4f056f rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90d832a5 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x95743b64 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9ca44443 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa755d355 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xadff8316 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb53f1ded rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb784d453 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbb40a788 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbdac105c rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbe607024 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc77cd485 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcc9bbdd1 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xceca915e rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd8b2f300 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdd4774a9 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe6c82480 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xec858f89 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0a0ba18 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf7b64477 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf9901146 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x103035bc rt2x00pci_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x1d604363 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x397f7d5f rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x52a5f870 rt2x00pci_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x5e42fbc1 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x7a80db7f rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x82455fe3 rt2x00pci_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc884e219 rt2x00pci_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf7d44227 rt2x00pci_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0d469ef8 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1e8f5977 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x37660db7 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x747a3c15 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x81d47af2 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x81e1a336 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8e65348f rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9b414bba rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa05dcd7c rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa398324c rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa82ed87a rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb04fa7be rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcf88aee5 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd430bcdf rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd47b09b3 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfe9166a0 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x79fa6c8b wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xc68e7e3f wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xd53941de wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x0597e890 wl1271_unregister_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x15cde4ab wl1271_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x1db1dd26 wl1271_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x51617d99 wl1271_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x61e0480f wl1271_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x8a58f1e5 wl1271_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xa04aaf0d wl1271_register_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xe795ba26 wl1271_irq +EXPORT_SYMBOL_GPL drivers/pci/hotplug/acpiphp 0x060f407a acpiphp_register_attention +EXPORT_SYMBOL_GPL drivers/pci/hotplug/acpiphp 0x44e63887 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x1d758960 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x7db282a7 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x561c634a wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x876d29f1 wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xda29f8b0 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfb882fb7 wmi_query_block +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x66d20667 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x875bc922 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x939d1b01 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x12135d4c mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x13ae1ffe mc13xxx_fixed_regulator_get_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5f06d771 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x995395a1 mc13xxx_sw_regulator_is_enabled +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd7943300 mc13xxx_get_best_voltage_index +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xed40bf30 mc13xxx_regulator_list_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf69e1b3a mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x610ba7ea wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8595ff34 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xae0e687a wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xba57a627 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xea59f06e wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf14a3266 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x54de6672 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09619871 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10777d56 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10fc077e cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12f7eeda cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1515ff39 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x18d91d3b cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a3fb7d9 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x28f1de9b cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4319e837 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43bd7c89 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44cb2822 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x46c2bbf5 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x489acc61 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5aa3b5e5 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5dda307c cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6627cf2c cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67cce4c4 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x73233c4a cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76df62d2 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7a63072a cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7eb43fe6 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f2fe137 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f4beec8 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f673c30 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8009ecf5 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84a5c9db cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b4e4f28 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b693bb7 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8dd5c898 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9334535a cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1e130fa cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4cad6f5 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5007144 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7cef35a cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9e5e2e7 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd7766487 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd843b153 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9b1dce9 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdebb6994 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe8d90349 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf3171b48 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf426f29f cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7da5b08 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf999ed17 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa2adc0d cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x03304486 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2c6e1e43 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5949cc26 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x59d82cc7 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5b7c1e9e fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa3148715 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd23a583b fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe5485b56 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf0254211 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x2bd36c04 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x7691f16d iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8fcab69b iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xbc5bc767 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd92a818a iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xf6489e13 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0aac1602 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17553a2e iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e1d3224 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x223395d1 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2694576d iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2e01dd80 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eb88f8b iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3e68d430 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x418dff41 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2709b0 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54bfabe6 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x56288135 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66ba31f6 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a6d6846 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x700cefee iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x81a515e6 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b07e990 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ede3e93 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f577817 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8ff28fd4 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92583d6e iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x95bfc60b iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fcfd899 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa14933fc iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa16c36e7 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa42dc211 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4832cf0 iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa805f335 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8e40ce3 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaa92f8d0 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaabc2674 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf18d341 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xafb6f032 iscsi_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb2dcc0c7 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc18656a iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc9e56fc iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4affbeb iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc6f50c69 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7b42611 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd137fa7 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd68bc498 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdb241032 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdef36b12 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeac1efe2 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2c28f90 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2dac762 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x087894f9 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1e20e2de iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x300b3077 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3cff3311 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x54775501 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x551a7699 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x74c63a74 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x77e206e1 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7b7a8c14 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x81fa7b35 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x84a75f94 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8d72dfa7 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa1495679 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb79ab70b iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc03d5946 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf74df279 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0102019a sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x01e0db6a sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0904b749 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a566304 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e6424fc sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x441fbdae sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b8d370b sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x55f50ffd sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x650cebcb sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c456135 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x704af8c5 sas_find_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x85fab359 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8bc401d9 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x935241d6 sas_slave_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98025ad3 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98c5b7aa sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9bb26cf9 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2be873a sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae5d647d sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb2b5c160 sas_change_queue_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb7acc540 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf912b83 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf12dfff1 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf30e2454 __sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc3cc8fe sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x18038e53 srp_iu_put +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x5fbdf02a srp_cmd_queue +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x72003ecd srp_transfer_data +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x77bfd332 srp_iu_get +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x7b1945ff srp_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xb59ae5a3 srp_target_free +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x0b54cfaa scsi_tgt_cmd_to_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x1dd1bbfa scsi_tgt_it_nexus_create +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x6693d13b scsi_host_put_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x833c4239 scsi_tgt_tsk_mgmt_request +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x8e1dc336 scsi_host_get_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xc7cf4b00 scsi_tgt_alloc_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xcbdd6078 scsi_tgt_queue_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xcfdda723 scsi_tgt_it_nexus_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xdee708a7 scsi_tgt_free_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x09fb349e iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d9d969c iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15bf30e5 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1c3e4122 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2cc29f00 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34df507f iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a1cd832 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3cda9e60 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x44496cd3 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4594cad6 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5681e97d iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x637fe5d6 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x771c0494 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88975a9c iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8a31b8c6 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8db2c45b iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8fab9773 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9dc587d5 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa348f39d iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa733ada9 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc4fe845a iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9ed4da8 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcee442cb iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6991833 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec665514 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf51adef2 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb993cf8 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x289543d2 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5e427e5e sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x656c8177 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xaf142091 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x0b052ab3 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x42012aee srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6eb0dee1 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x949382b0 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xad90ee10 srp_release_transport +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3706edec spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x60760e2e spi_bitbang_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x60de4efd spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa33d9c12 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbb0cef92 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdf288fc7 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x20ef5df8 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x370c7131 comedi_get_device_file_info +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4624ff0d comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9e60c6bc comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb433cbe comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x86fcde20 das08_cs_boards +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x90a5daf0 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x9dae5779 das08_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x00e3afb0 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x03b1e782 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x25e55b95 labpc_1200_is_unipolar +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x8285332a range_labpc_1200_ai +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0xaf1e4347 labpc_1200_ai_gain_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x08728ed8 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2036e107 ni_tio_winsn +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2594fa40 ni_tio_rinsn +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x443bf2b3 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6aa4628d ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x6c7ca818 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x865c6ee6 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9ddfbcf5 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x288dbbd7 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4595ce1b ni_tio_acknowledge_and_confirm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x61474fce ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9cd3656b ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa52b20e9 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xdf8ea4e0 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x2468ed34 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x579d2806 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x587711de oslec_create +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x882d5f27 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf828c15b oslec_flush +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf923a5b1 oslec_free +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xfabc3747 oslec_update +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xa3aab552 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xc4b12305 iio_scan_mask_set +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xebd08a90 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xfbad02c4 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/staging/rts5139/rts5139 0x35b85807 rts5139_usb_ids +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x01674183 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x07828a23 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2339c852 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2a1a8939 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x38ce4e1b spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7af16d85 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8cc000f5 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa3887f17 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb73a5748 get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbf3ba9ad serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcda38867 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xde7ae2e8 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe8edc9d4 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x06dbefa4 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x081ce30d usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x5a222c62 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x6a4e9443 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x75f5d460 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x797d10d7 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x8f0fea19 sockfd_to_socket +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x9846e298 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xa0b4dcd4 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xbeaeafaa usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xc0879b5b usbip_event_happened +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd19cc7f6 usbip_xmit +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xdd5533b0 usbip_event_add +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x1b7486e3 max3107_hw_susp +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x5ba91ac1 max3107_probe +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x70aaf196 max3107_rw +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xb94c6f2a max3107_remove +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xd60b86db max3107_suspend +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xe8781f86 max3107_resume +EXPORT_SYMBOL_GPL drivers/uio/uio 0x76055793 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9e063388 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xdd679bce uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x517bf647 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x6830e372 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x7a6a3228 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x89b17a34 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xbb306d92 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xc7ec6340 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2e99a2e7 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3b900326 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x41a963fa usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x517266f7 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x55395d13 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8091b9fc usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9c4f7374 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb8b2e163 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf6ebb521 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x00b3eb1e usb_serial_register +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1007783c usb_serial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x18abe9ef usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2f0fbd5e usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44e880ce usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x494a1b49 usb_serial_generic_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x55d84b09 usb_serial_deregister +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x896ac949 usb_serial_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x93cdfb30 ezusb_set_reset +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa2e00738 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa432a8a3 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa6ba5b50 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xab69ba9e usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xabf44bcd usb_serial_generic_submit_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xae442f3c usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb53af84c usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbbba57f1 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd85ef5c9 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe78bca57 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf6644ce7 ezusb_writememory +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf80c4b45 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0cfeb0f7 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1397889c usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x229e292f usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3d52e62a usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5492f5ca usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x642f83a2 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6544efe6 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6feceb16 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa2000c7c usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa2496ea1 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa2711226 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa3f2cd5b usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xabfe3202 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xad604b67 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc259694f usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe14c1bfd usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe3b3c203 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeb782296 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xefb7aa76 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf13559f3 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf4f73caf usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfadd6552 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2417c399 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x71805d77 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7e74cfb6 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x925fdc65 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x93ceb181 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x05e7c597 wusbhc_rh_resume +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x07b00473 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3e4fe2c1 wusbhc_rh_suspend +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4528dbf9 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x52382626 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8562d8e9 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8b4f4145 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xaa378e8e wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb83fcfff wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd28ac94d wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xda24ca36 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdd476ccb wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xebb23dd7 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf15852f1 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf2f137f1 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf4fde58e wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x3a900392 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x497f820a i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf73a27a9 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0a0cc0dc umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x103a3f9b __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x132ff3a5 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x605c02b0 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x63841395 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x81ce56fe umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x83fe1096 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb1f046fe umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ac688e7 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1bb1da64 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x23791241 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x36455361 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x383afb35 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3da8d640 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f3c5fb2 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x44fd9c9c uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4b9dee1a uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4ce7f428 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5d3f318b uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x609cf51c uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6800af87 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x690186a5 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x69ce6eb9 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b9377c5 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7282da5f uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x730b60b2 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ac4a6b8 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7bc9e457 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7bd4fee0 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x82fb1207 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8a913626 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8cb42db6 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9476ceff uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x977bdd64 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9d9774ce uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa063e78d uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaa550192 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb05b742b uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbd6be255 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc9014d57 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd788b811 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe3f6ef76 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9dd349c uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb39beee uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb4cab9a uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf7ca313a uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf881b4a6 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfe56f7d3 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfe6c728d uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x210ee253 whci_wait_for +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0dd0455e ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6cecd1d4 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7dfd88bc ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x83509ce4 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x899d6540 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8fa52f4b ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe46a02cb ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fb_ddc 0x85d8d0e0 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0x34ea8011 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0xfe8bf3be fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0x145b2c23 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0xbc6f0433 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x292da7a2 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x79e6190a viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xc238f493 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x040dee90 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x043423ed w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x045f9dc6 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0cb0b43d w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4af4d0a6 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x85d30799 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x994442ea w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xacefadab w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdf2c6ca9 w1_next_pullup +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0864c4a4 dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7d370ace dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x85ae5408 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xbd9096b8 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fat/fat 0x164b8ff1 fat_scan +EXPORT_SYMBOL_GPL fs/fat/fat 0x19dded7b fat_fill_super +EXPORT_SYMBOL_GPL fs/fat/fat 0x26315175 fat_build_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0x30386c95 fat_sync_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0x424e1ba7 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL fs/fat/fat 0x462ffa92 fat_getattr +EXPORT_SYMBOL_GPL fs/fat/fat 0x53cfd82e fat_attach +EXPORT_SYMBOL_GPL fs/fat/fat 0x6eddd946 fat_detach +EXPORT_SYMBOL_GPL fs/fat/fat 0x70ab9677 fat_free_clusters +EXPORT_SYMBOL_GPL fs/fat/fat 0x71624826 fat_setattr +EXPORT_SYMBOL_GPL fs/fat/fat 0x93538e09 fat_remove_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0x9926fc6e fat_search_long +EXPORT_SYMBOL_GPL fs/fat/fat 0x99e63d58 fat_time_unix2fat +EXPORT_SYMBOL_GPL fs/fat/fat 0x9a7e0957 fat_dir_empty +EXPORT_SYMBOL_GPL fs/fat/fat 0xddc6bf02 fat_add_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0xde077965 fat_flush_inodes +EXPORT_SYMBOL_GPL fs/fat/fat 0xf04f8b89 fat_alloc_new_dir +EXPORT_SYMBOL_GPL fs/fat/fat 0xf405f50f __fat_fs_error +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x17ce645d locks_end_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1ae6d5b7 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f959b35 locks_in_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x86895a14 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96877ac4 locks_start_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa7b91a7b lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb508ddd0 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbef18d76 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd11ade77 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6933c48 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0eb3b694 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x195e5da7 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c1f4606 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46ae62f4 nfs_initiate_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x478ebe28 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48ea6bb8 nfs_initiate_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cf1d6a9 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c829f1 nfs_commit_clear_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ce0cee1 nfs4_reset_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66a446c0 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d23c2ab nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87a8ad19 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ff1c625 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9558d43a nfs4_reset_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a840310 nfs_commit_release_pages +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5a87370 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf62c9411 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x1733d181 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x50dc5903 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0f8beda6 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x17dca890 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x521e0726 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6f0518d8 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x79b87f2a o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x80b87b50 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc48d97f2 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd89f2c2a o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x27b21cb5 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x33d1c2f4 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x52471c01 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x67a41e70 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x89d70782 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xadb4e5df dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x025e2d69 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0562c415 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x16b2e575 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2e6192d3 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5469ce31 ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7083dbd5 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89502fe7 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa9d001fc ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb4bd060c ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb804b2c0 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdc823ea4 ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe2bd47db ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe417d940 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x24935f26 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xcdc24ab5 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xdbab0c01 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL net/802/garp 0x0c397c88 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x333a2474 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x7e002627 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xc1516d64 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xcc94c90f garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xe75d3e50 garp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0xa4ccef7f stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xe19c77c8 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x57b48549 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xb9b6dff7 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0x50754510 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xe2c6bb26 unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/ax25/ax25 0xf97c69b8 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf92adcbb bt_debugfs +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0dcfe949 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0e1a0517 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2df0a811 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x339af16f dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a6b5ad0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3eb60234 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5541519d dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5543b36c dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x66052d81 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x727e4ee2 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x72c4466b dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x803986ac dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8171529e inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x84ce7c88 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8acde9de compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d3de4c0 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8ea4da05 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94853bd2 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9ad851fa dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9cfcf7be dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa17e8c32 dccp_insert_option_elapsed_time +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa27c215b dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa58b8979 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6537201 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4be0ed2 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb71b3edd dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb9788750 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbcc03fe6 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3691b9d dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5205606 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6175656 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe7619504 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3017e21 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf35e5206 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf62bd34c dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf909fc16 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfccaa2bb dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfcee5378 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x46bae50f dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6a076a44 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x83db85ba dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb73d7090 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd5d35358 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xee6e1aab dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/ipv4/gre 0x06fffab4 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4f747dfd gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x39383e31 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb7d5bf8d inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xce04cc8b arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xaf0f5f9d ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x6d40a921 need_ipv4_conntrack +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x966be48f nf_nat_seq_adjust_hook +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x07ae60b6 nf_nat_proto_in_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x0f9238fa nf_nat_set_seq_adjust +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x4164338e nf_nat_proto_unique_tuple +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x540a0ddb nf_nat_packet +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x63a0604a nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x94a08134 nf_nat_proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xaa5123a6 nf_nat_get_offset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xef696d3b nf_nat_proto_range_to_nlattr +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0dae2b40 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2d84bfc3 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2f9d8c06 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x498b50a9 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcf276e2a tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xaef10520 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x065be1a7 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x15ae17ca l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1ba012ec l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2f9726a3 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3abe44a3 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x58e15128 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x74ac8e30 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba0e8396 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc090e325 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc5ee2f91 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd7b3b595 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xefa88815 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x100c9d1e ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21aeeb47 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3172f11f ieee80211_iterate_active_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4aec2d91 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c669926 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x744b3766 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcef45b1c ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe05c502d ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebde69a8 ieee80211_key_removed +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b46666b ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x19af3085 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x25cdbb44 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bcff062 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bd82539 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4adda6d4 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5dce7af3 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x62bd11b2 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8aafdef9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ca6d85d ip_set_nfnl_get +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7f5c049 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5f9b62f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdb968bb9 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfc7544c0 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0a965b31 net_vs_ctl_path +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x6b08597b ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7bd3b856 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb32aa611 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe6687999 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00898e98 nf_conntrack_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06fd718c nf_conntrack_hash_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x094112a8 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a5cda27 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e36eec6 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x139fe842 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1525381b __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x182c4658 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b1fa7b4 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1bf372f7 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21b9cf8e nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a1a24da nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b76c3e9 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e1d2494 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2edca0e1 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x340e138f nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3582dffe nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x377188be __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b1f3ec1 nf_conntrack_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3befdccb __nf_conntrack_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e4cef7d nf_conntrack_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41e0057c nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45f446d3 nf_conntrack_flush_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4da669a8 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52cff573 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5672add2 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c2adf22 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63465d80 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65db15ce nf_ct_delete_from_lists +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x665c54d5 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x68e11ac6 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6df0681f nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cb9f519 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84f183b0 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86cb5f50 nf_ct_insert_dying_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8998f795 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b8e26f1 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c3d3337 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa05402f0 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa17874dd nf_ct_remove_userspace_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2310668 nf_ct_l3proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3cadfd6 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa48838fa nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa94dc754 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9b84473 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab011f5a nf_conntrack_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xabc77077 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadcd99ee nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaed7415c nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbebb0be1 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0cd71bf nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc217e1dc __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3b813ef print_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb68a8c8 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde9e473a nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4aa6e74 nf_ct_nat_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeac57991 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedbc2ae0 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefad167e nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf77e34e1 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9394d47 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x19b59837 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc6d57194 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x1d986d54 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x605e3149 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x73f41306 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x82803450 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x890f812f set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x985c7642 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x99a75dcb nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9d425c1b nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa28039eb get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe9963fc0 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeac66565 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xb64d234b nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3fdccfc1 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4bf8f7d5 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x680c1cf6 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdcc22e31 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x20f9f1ab nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xcbab023d nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0260c225 nf_nat_sdp_media_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x09829c83 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0b9ee5fb nf_nat_sip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1754688a ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x484b602b nf_nat_sdp_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5096ce9d nf_nat_sip_expect_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x62339b0e ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x71097778 nf_nat_sip_seq_adjust_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x750e2b1b ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x9e7ef2b1 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa95d49ff nf_nat_sdp_session_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc2de3fbb nf_nat_sdp_port_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd1f73630 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x2395a5f6 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x94f5f14b nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tproxy_core 0x9bd2a4f4 nf_tproxy_assign_sock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x008e3ef7 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1e00f5e6 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f58e71b nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3895cd7a nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5e700d6f nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x974f951b nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbb6bfca5 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe1227697 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x9852023e nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x22433ecf xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x33fbbca4 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3f75fa68 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6511e8e9 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x699935c3 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6dfa840e xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x86001ffe xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x865c085a xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8912bdec xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x905e674c xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa667b33e xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb1f0db6e xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc01ed407 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc10ede91 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc5278aaf xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc78274f6 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1f533e6 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xee38cebe xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf290793c xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x3bf0da4a xt_rateest_lookup +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xea127120 xt_rateest_put +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x177b8da3 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x22597111 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x30bdd697 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3461d207 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x47cbe096 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4d5b94ec rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x50bdee2f rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5cf9e7b0 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x5efaf223 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x637ada1e rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x6b8119b3 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x81d64dac rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x82f424d5 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x993b1114 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xb529e22d rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xb6087165 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xc2da8e38 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc3e1a951 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xcd538bcd rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xcef97977 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd6db9e04 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xe1ab2c05 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xe89c696f rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xfb358787 rds_message_addref +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x533df507 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x730f0349 rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x14f8159a gss_pseudoflavor_to_service +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x16d2f83e gss_mech_get_by_OID +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1d9c6849 gss_service_to_auth_domain_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2f465276 gss_mech_put +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x36bc9a29 gss_mech_list_pseudoflavors +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4df57063 gss_svc_to_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7c8ac6d6 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8018f4dd svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x99413d0d gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc21fc2ab gss_mech_get_by_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc7ff3f26 svc_gss_principal +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd6c278f2 gss_mech_get +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe974d518 gss_mech_get_by_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00158cbc svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04b8ae7a xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06597af8 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08ded010 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x091df5da rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a262225 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa056ac xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0af535f6 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1265be14 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e280e3 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x138be3d6 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17542693 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17aca330 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x196d4b73 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b1e89f6 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b200f1f xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b6d3aa0 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f679409 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x205a5fef cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22c1d852 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2365e191 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23f0d68f rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x262d65d9 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b21b18b sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb3bd25 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2de99f49 cache_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x306d64c0 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x314b2cb9 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31ef628c rpc_queue_empty +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31f3bfc2 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3809ffb0 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a2be71d rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3adc0224 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bcfbb14 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ce79c16 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40720965 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42d834fd xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45432293 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47c8d6b5 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47e6150e rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48603dc5 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49c1672f rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a1e72f3 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a61c122 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d3d7c07 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d766ded auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f059df7 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50b0a855 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x510386d9 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51c38d8d sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52157f06 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52f0b51c rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5480640a read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57643c52 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5971be86 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b14ec1a rpc_put_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5baa8558 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd26000 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60bd9ae0 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61025fbd xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6235e6be svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x661b2493 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x662c199b rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67095c0d svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x693ad9d8 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69a12344 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69aac793 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b054c37 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b8b17ef rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eea229d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f51c799 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71594e89 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7438fa55 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75d348a9 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x784353c5 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7be532d0 xdr_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dc3e746 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e02196c sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x809bc5e6 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82dcc7bb svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x842355fa svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84eca149 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8635692d xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88204551 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x891b2f63 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ad23574 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c68de19 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cb7d16b rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8da9954d rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e119eeb svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8efd7bf6 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ffc4c3a svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x903a312f svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9109b2d2 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93a38f53 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94b3d72f rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96851e8f xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c28e3bc xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d455e8a svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ee65694 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13d1bd2 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4085f63 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa55bff21 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa81c62de svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa82b95fa rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d65b73 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa95232eb xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacacf4bb svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad315ea1 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae254a6d rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0e2e3cc xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb65e81da xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6bb6beb rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7f2bf71 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb84709bb xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba0364a6 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3972b6 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd4a66eb svc_sock_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe25ff93 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc13193da xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc13b8b30 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1ff282f xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4b32bc9 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5d8c8fd svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca9741d4 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdce90e0 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0c37b49 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1587138 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4f39c6e rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6e4a8d3 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7074c1a xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd82fdb04 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9dcbcdc xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbdc0fc3 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc13c702 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdceebd7f rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd593d3b rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4b91a1f rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea84f5df svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb0e1367 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec062c45 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef7fd3c9 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf19ab370 rpc_get_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1f1c301 rpc_mkpipe +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf26f34ed xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5ca5ddb xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf66a786f rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbf5cabb rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcb107f5 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd34285b cache_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe56defa xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff5ca6cb rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1e5459a7 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2380c1a4 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x498fb0f0 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x69fdc4e6 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6f298715 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x80ae0a42 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa114e07c wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xaa6fedb6 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc12b26cc wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdcfbc8a9 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe0ead94c wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe9ff9261 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfeeae4b8 wimax_msg_data +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x120f1020 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1e3c1211 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x26b16759 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x44d772e4 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6f17ac9d cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7c38b559 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8bcdf73d cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x947943c1 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc15cd7bf cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdd17598f cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfd8f6594 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2052b9d7 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7f545d8c ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xed008491 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xfc4d9ac2 ipcomp_init_state +EXPORT_SYMBOL_GPL sound/core/snd 0x58a1d78b snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xc93aea42 snd_kctl_jack_report +EXPORT_SYMBOL_GPL sound/core/snd 0xce48fc81 snd_kctl_jack_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x50418f7f snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x314fd2e7 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x38683765 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbbcff70d snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbe01155f snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd0b5dc41 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdb7bf0ee snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01ee7546 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03dd6622 snd_hda_override_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x040008c2 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0837debf snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x083af31d snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ca00aca snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x108389f6 snd_hda_queue_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x172e5315 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17312740 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x173b0cb5 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17922b85 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ee04435 snd_hda_get_sub_nodes +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f185acf snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24f61569 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2658a335 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x275bcfe4 snd_hda_power_up +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2acf3c75 snd_hda_bus_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2bf36dd6 snd_hda_power_down +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fe839d1 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32189b27 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x370d5c38 snd_hda_codec_resume_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a099f31 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x428605f8 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x428a7c4a snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x438c47f4 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45334e5f snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45cd3473 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46f51704 snd_hda_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47e498ce snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cbeb0bc snd_hda_jack_tbl_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dab1f60 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dfbf98c snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d9168c5 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x617137db snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fada675 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70c951b9 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x714f21d0 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7177fba2 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71ddcd15 snd_hda_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72b160d4 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x742e0779 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78f05330 snd_hda_ch_mode_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a84fdf5 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b29f037 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b4e6a1d snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fc2ccb9 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80fefcea snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81d8984b snd_hda_query_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8346573e snd_hda_resume +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83cc12fd snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83d318a7 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88a80353 snd_hda_codec_resume_amp +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a599c15 snd_hda_sequence_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d1a054f snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8da6e3c1 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4c6826 snd_hda_calc_stream_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f224048 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x902b0154 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x915303be snd_hda_check_board_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x931b1b58 snd_hda_codec_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x935f4e6e snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93788563 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94f1c3c5 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95864ba8 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x969f8cb2 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96d1ddb8 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97b2be01 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9aa95265 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bfdb8ef snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e99ae42 snd_hda_ch_mode_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ec73887 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f0f96bf snd_hda_query_supported_pcm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f7b0535 snd_hda_check_board_codec_sid_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1e8ce4f snd_hda_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2827d76 snd_hda_get_jack_location +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2b55f62 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2fd3e05 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9644bb9 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9cd6c89 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacdec516 snd_hda_codec_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae33b542 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb096d93d snd_hda_ch_mode_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb71d0920 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb519f92 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe854ef6 snd_hda_is_supported_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2bd7ef2 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc559ede8 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc652fd69 snd_hda_get_jack_connectivity +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc782cd7e snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcad86745 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb301b6e snd_hda_get_jack_type +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce9616b5 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0d4ec0d snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd613f057 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb700b05 snd_hda_codec_update_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd853778 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe193c93e snd_hda_add_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3327075 snd_hda_codec_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebbb9ba3 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0d9b67e snd_hda_suspend +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4fc0e33 snd_hda_delete_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf56fa447 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf730d337 snd_hda_create_spdif_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf907c35f query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9157e99 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf91bd7aa snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9f35db6 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd620426 snd_hda_bus_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfed50188 snd_hda_codec_amp_read +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x55989d33 pm860x_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x666c6073 pm860x_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cx20442 0xf92e4cc4 v253_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-l3 0x78c84c7e l3_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max9877 0x61de285c max9877_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x0b53cac2 aic3x_button_pressed +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x4deaad1b aic3x_set_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x6e40acc7 aic3x_set_headset_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xc492bc25 aic3x_headset_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xdc9b18d0 aic3x_get_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5b2b2a81 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xeafe6823 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wl1273 0xedd56d95 wl1273_get_format +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x4c6820bc wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x56ea50ea wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xec9868ed wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm2000 0x2ad1c803 wm2000_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0xa97cd83a wm8350_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0xc0076678 wm8350_hp_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x1fc8058b wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x2e100412 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x396999c2 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x48167e44 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8996 0xbf0f8444 wm8996_detect +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07b20da4 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x092da9cf snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c88445c snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f20e51a snd_soc_put_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f4c6e02 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11a8289e snd_soc_update_bits_locked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x160bf731 snd_soc_put_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x170cff16 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18dc8570 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1937df82 snd_soc_dapm_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b45bae7 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d865287 snd_soc_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1df038a4 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x227b4c33 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28cafa9c snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bb5655f snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cce8bb3 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cdb46b0 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d24d044 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31c40dcb snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36caa2b0 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38289ed3 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d4dd807 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d7b43d1 snd_soc_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3fab56d0 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x413f2bd9 snd_soc_codec_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bf1021b snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x514414bd snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52ee2160 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x588d13b8 snd_soc_add_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x598851a2 snd_soc_cache_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5df28843 snd_soc_info_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e23b6ab snd_soc_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e2a5f29 snd_soc_dapm_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e5102cc snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f1fe76a snd_soc_cache_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f518b43 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61b02e73 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68d58430 snd_soc_dapm_get_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b7403c9 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d24a9c9 snd_soc_info_volsw_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d621c4c snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f3bee80 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f5de705 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x717e0002 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71a16257 snd_soc_dapm_put_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73803ff3 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b72dd8e snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d8acb81 snd_soc_info_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dd303ae snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x87188b03 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x876331a0 dapm_reg_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8bca28ee snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fee1576 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x931fb5c5 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95fedfd2 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa02377e3 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3159adf snd_soc_register_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa42b021f snd_soc_codec_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa502d138 snd_soc_codec_set_cache_io +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa68475df snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7319d6d snd_soc_unregister_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb350cbb9 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb669fb62 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7822902 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7b5b732 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbe31401 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd026075 snd_soc_default_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd495ff0 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf22dda0 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfd41b5b snd_soc_bulk_write_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1d0c540 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc312f621 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4c7d745 snd_soc_info_enum_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc87c40f5 snd_soc_codec_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca5a5c9b snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca6f97c6 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd8ed668 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdefd7a5 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce73f9bd snd_soc_get_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce843164 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf2f2f13 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf9650ec snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd337aa30 snd_soc_cache_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6554859 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6a545e6 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6e38e1c snd_soc_default_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9449f94 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd97afe9d snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd996c889 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde02494e snd_soc_default_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde29e106 snd_soc_get_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdee31d81 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe116da23 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9068e39 dapm_mark_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe99f15b8 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9d688b8 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xebe71ece snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6608387 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8929981 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdd2cbfa snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0x00348fdd xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x00483812 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x0067df75 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x0087e7d9 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0088a193 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x00b8ecf8 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x00c4dc87 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f94fde register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01330a06 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x015975a0 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x015b5c34 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x017543f0 net_ipv6_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0x0178623b i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x01812c25 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01a4ea6d unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x01dc491f xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0201221a pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x0217a178 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x02548bd7 blkiocg_update_timeslice_used +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x02d4d85c platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x02fc4c57 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x03090d4c locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x03235a26 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034f37c5 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x03a3f86d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x03e12bae regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x04073e41 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x040aaf1c br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x041e09a6 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x0424da42 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x04486e88 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x044dae08 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x04beeb3f xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x04f9ab46 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x050a1b50 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0530e5c2 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x0531dcb8 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x0544a14d tps65910_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054f18ac debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x0557c1c4 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x057663a8 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x058624a3 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x05ae262e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05af976f platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x05cdedc7 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x05d8973b devm_kzalloc +EXPORT_SYMBOL_GPL vmlinux 0x05fdeedc rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x060d1064 set_memory_ro +EXPORT_SYMBOL_GPL vmlinux 0x0616f958 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x0619ca8a getboottime +EXPORT_SYMBOL_GPL vmlinux 0x062fc169 xen_hvm_resume_frames +EXPORT_SYMBOL_GPL vmlinux 0x063d32a2 __scsi_get_command +EXPORT_SYMBOL_GPL vmlinux 0x063ed7ae skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0710f853 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x074dbce5 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0758da85 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x07898dc5 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07ff4aea xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x08043417 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x084eabfd da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x085e2748 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x087ee4e3 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0902962e kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x091cb0f1 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0975dac5 cgroup_lock_live_group +EXPORT_SYMBOL_GPL vmlinux 0x0995e3f9 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x09b779a5 css_id +EXPORT_SYMBOL_GPL vmlinux 0x0a288348 flush_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0a30b662 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x0a3c7b32 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x0a41d477 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x0a7b6d1e scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x0a7d8dc2 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x0ab4fd04 class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0aed39aa skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b19ed7c apei_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x0b2742ad blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x0b28defb kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b6c9b7f virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x0b7ba518 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b970c8a hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0bc427d0 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x0bd49a86 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x0be13004 usb_storage_usb_ids +EXPORT_SYMBOL_GPL vmlinux 0x0c020616 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c5628db crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cd10a4e work_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0cedb994 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x0d1db07c swiotlb_bounce +EXPORT_SYMBOL_GPL vmlinux 0x0d387aac key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x0d6fa7f9 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x0d82ee7a inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0dd0940f proc_net_fops_create +EXPORT_SYMBOL_GPL vmlinux 0x0df4575f __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0e087d76 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e2475ee driver_add_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0e3ede28 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x0e84abd5 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x0eb37258 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x0ec210b8 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x0ec71183 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x0ee04c70 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x0eef5b7a security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL vmlinux 0x0efd08ed ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x0eff4489 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x0f00d714 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0f2470d5 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x0f28a80d tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0f2a99b3 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x0f48f4ad register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0f79eb72 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fb1a007 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x100c48a2 unregister_dock_notifier +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102a32a0 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x102bbe7a shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x103e1937 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x106d64c3 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x10c56fa2 register_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x111e9d6c cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x113ea0cc cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x114f1a20 balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x115c749c usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x119af014 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x119eca89 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x11e18e2a gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x11eda58f fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x11ee894c unregister_efivars +EXPORT_SYMBOL_GPL vmlinux 0x11f447ce __gpio_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x121ed3f3 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x121f73bb usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1258d9d9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x125cba3b blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x125d4e81 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1285b6bc kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x12c78cc3 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12f0002d tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x133724dc eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x13574bbf nf_net_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0x135f738c user_match +EXPORT_SYMBOL_GPL vmlinux 0x136262e9 blkiocg_update_io_remove_stats +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13b2a946 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13d64990 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x13e13d59 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x13e6c833 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x1403d2fa vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x14359983 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x14b8ca2d wm8994_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x14c81595 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x1501bf65 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x150be110 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x151fcc02 sysdev_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1556756b usermodehelper_is_disabled +EXPORT_SYMBOL_GPL vmlinux 0x15738fc1 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1598dc9d unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x15a42932 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x15add632 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15b26901 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x15c0ed49 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16247bd0 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x16374f24 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x166c79fa i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x167346ff posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16bb7b09 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x16d5c5b5 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x1746bcb2 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x177169af rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1776f049 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x178a37e5 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x1794f230 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x1848f8bc crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x185300fc disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x185514e2 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18b18120 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x18e2c347 dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x18e94eb4 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x19013ed9 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x192cef22 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x193d48e0 trace_current_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x1961439c xv_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0x1961d216 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19ad2339 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x19ba5da9 device_add +EXPORT_SYMBOL_GPL vmlinux 0x19eb95fa fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x19fc7f60 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x19fcf6d7 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1a02ca48 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x1a1d1ccd devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x1a1d842d usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x1a205be9 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x1a25c1d0 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x1a323362 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x1a32d386 spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1a4d6e8a inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x1a8080a8 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x1a863ea6 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x1a9dd586 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1abf3881 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x1ac2df31 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x1ad83009 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x1ae0e135 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x1ae8a5d1 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1af3e8a9 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x1b127f03 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x1b23c0bc sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1b3674ea sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x1b3c9291 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1b6db859 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x1b77c2bb pci_unblock_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x1b8184b5 platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x1b8873d4 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1c02577a ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x1c382194 sysfs_rename_link +EXPORT_SYMBOL_GPL vmlinux 0x1c50735b netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c852e7c xfrm_calg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ceba8a9 inode_dio_done +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1daeda86 tty_prepare_flip_string_flags +EXPORT_SYMBOL_GPL vmlinux 0x1db98168 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x1e02d755 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x1e314b21 regulator_use_dummy_regulator +EXPORT_SYMBOL_GPL vmlinux 0x1e3a88fb trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed30dfc generic_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x1ed7602e pci_msi_off +EXPORT_SYMBOL_GPL vmlinux 0x1edb78d0 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1ef761da platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x1f325b5e usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x1f49182b rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1f4b0a8f sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1f78176b driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1f800702 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8ec1b3 acpi_get_pci_rootbridge_handle +EXPORT_SYMBOL_GPL vmlinux 0x1f9df83f xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x1fa0d820 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x1fb4e9cb device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x1fcece42 inet_twdr_twcal_tick +EXPORT_SYMBOL_GPL vmlinux 0x1fef62db kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x1ff4b5a8 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x1ff621f2 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x20331efc rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x208e85e9 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x20a92cab dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x20bc3470 orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x20c20cfe watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x20c6fbef ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x20cfd1ec pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x20eaee2e ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x2149ac94 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x215c6816 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x21aedd17 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x21f660ae __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x222c9309 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x226990f8 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x22893ab6 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2297e397 sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x22c0dc40 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x22c6609e get_driver +EXPORT_SYMBOL_GPL vmlinux 0x23294314 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x2358fbee debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x23607273 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x236f2078 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23b6702a pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x23d1eb92 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x23f92ab7 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x242b17b7 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x2447533c ktime_get_real +EXPORT_SYMBOL_GPL vmlinux 0x2459b551 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x246dc7bd blkcg_get_weight +EXPORT_SYMBOL_GPL vmlinux 0x2476a10d hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b9352f platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24e55c29 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24fc46b6 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x250c7e06 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x25254d02 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x252e43b4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x25775234 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x25784212 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x25f2b584 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26562e3a snmp_mib_init +EXPORT_SYMBOL_GPL vmlinux 0x26576139 queue_work +EXPORT_SYMBOL_GPL vmlinux 0x26990777 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x269f1a25 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x26a7d4f2 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x26b3d60f ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26bbd25c usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26de0f5d usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x26ed03d3 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x2730b251 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x27389cb6 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0x2776c39f usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x2783fef2 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x27987b2c pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x2798ef87 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27aa784a cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27d7fdf5 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x27e061a4 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x287866e1 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x288fd9c4 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x28d664ff __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL vmlinux 0x28ebdfc6 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x28f19b48 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x291ad8e3 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x295a0c7f x86_mce_decoder_chain +EXPORT_SYMBOL_GPL vmlinux 0x2974bbf1 sysdev_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29cd3db7 ftrace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x29dd7d20 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a2a0c93 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x2a5dbc14 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x2a6070e4 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a67af60 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a7764ae key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x2aabea2e blkiocg_update_io_merged_stats +EXPORT_SYMBOL_GPL vmlinux 0x2ad556f7 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x2b087cec xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x2b43e9a7 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x2b518ac2 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x2b68e85a ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x2b7fbad2 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x2bc5821e usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x2bd40ebc gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x2c0dc18b filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c24d0c9 crypto_nivaead_type +EXPORT_SYMBOL_GPL vmlinux 0x2c24f68d key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x2c3ba18a device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x2c3f7c89 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x2c777214 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c836295 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x2ca4ebcd regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2cbad55c inet_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0x2cc5609c usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2ccb4d4b md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf761d4 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2db16c3a rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2dd6bf3b wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2de6cc1d device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x2dfb4847 cgroup_add_file +EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e45e488 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x2e47f677 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x2e6e1e3d wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x2e7ffe14 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x2e80e313 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2e8e34a4 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x2e94bb01 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x2ec92012 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2ed83bb0 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x2ef8030e ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x2efe5ef2 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2f17902d rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f431523 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x2f47d8c7 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2f5bff97 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2f683d9f edac_put_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0x2f6c1756 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x2f857551 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0x2fcd9e17 dpm_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2fea4c29 trace_nowake_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5984 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x300c8db5 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x30202b7d tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x30280d88 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x307e1258 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x307f7776 timecompare_offset +EXPORT_SYMBOL_GPL vmlinux 0x309f3cc2 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x30b4c57e sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x30bb5343 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x30c8677a inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x31078c71 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x3108ea46 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312a32c3 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x318920b1 register_dock_notifier +EXPORT_SYMBOL_GPL vmlinux 0x31bd4aee tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c28941 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cca568 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x31e4ada9 user_read +EXPORT_SYMBOL_GPL vmlinux 0x320256c7 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x320dae70 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x324f9377 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x326e6216 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x3271f42a cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x32739595 virtqueue_add_buf_gfp +EXPORT_SYMBOL_GPL vmlinux 0x32877a91 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x329a133c relay_close +EXPORT_SYMBOL_GPL vmlinux 0x32a3cb8a skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x32a53e6d ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x32b31a8c ktime_get_boottime +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cec681 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x32d5e7fc xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x32ddd6ff sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x331fb661 sysdev_register +EXPORT_SYMBOL_GPL vmlinux 0x3337ce7f crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3348b4e7 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x334e2447 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33ff503d stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x341cee09 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x3441c3d6 gpio_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x345a3efa securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3490a1e9 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x34b85c11 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x34e384fd pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x34ed91f3 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x3534e2a3 system_nrt_wq +EXPORT_SYMBOL_GPL vmlinux 0x357413fa scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x35b16168 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x35b72de3 task_xstate_cachep +EXPORT_SYMBOL_GPL vmlinux 0x35df0d89 tracepoint_iter_start +EXPORT_SYMBOL_GPL vmlinux 0x35e177df wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x35ed11e4 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x35fc2b3a skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x360afecd tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x36166a74 drop_file_write_access +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x361fefe0 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x36268876 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x362e23ec call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x365353ef rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x36875389 __timecompare_update +EXPORT_SYMBOL_GPL vmlinux 0x36944333 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36c9a9c9 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x36f509f6 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x37284d26 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x376ed93c pci_configure_slot +EXPORT_SYMBOL_GPL vmlinux 0x37869b0d fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x37952554 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x37c8a9d5 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x37cff35d mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37db0a67 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x37f02b1f rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x38293f0a __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x384053e7 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0x384cab7f securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x38755dd8 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x38a8ab45 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x38dda997 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x38ea936e __memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x38fc3dac ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x391a4810 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x396eeff5 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x3983704e perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x39b28e46 tpm_dev_vendor_release +EXPORT_SYMBOL_GPL vmlinux 0x39be511e platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x39dee71d devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x39e15e5f trace_nowake_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x39e9a525 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x3a0e2da0 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x3a134ae4 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3ddfa6 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a60e762 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x3ac8c215 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x3ad6d6d3 regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x3b1997b4 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x3b33f2de tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x3b3c0525 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3b4807dd sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3be89d3c usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x3be8ddd6 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x3bf4c73d __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x3c2efabd anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x3c49860e __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x3c594f48 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x3c84a5ef bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3c8ffbcc edac_get_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c942368 profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cac21b9 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3cb080e2 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cfedb3f register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d6c3e57 dw_spi_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x3d7672d3 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3da75f54 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x3da804cb __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dde0e07 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e359b0b cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x3e3bfe19 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x3e599570 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ebcf7b1 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x3ecd09f6 sysfs_get +EXPORT_SYMBOL_GPL vmlinux 0x3edad223 usb_usual_clear_present +EXPORT_SYMBOL_GPL vmlinux 0x3ee4a4f3 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3efe3f13 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f5dd436 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x3f82a22b cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f8f2b24 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3f9c3419 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x3ff555d3 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b308db fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x40c01513 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x40c350f0 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x410298c2 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x410f072d register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x412b5039 regcache_read +EXPORT_SYMBOL_GPL vmlinux 0x4139ecea usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x418f8992 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x41c7d97e dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x41e9fe01 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x41fa7361 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x423c3269 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x423e6f1a elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4245bd8e __module_address +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x4253ccc3 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x426f13b9 e820_all_mapped +EXPORT_SYMBOL_GPL vmlinux 0x4271ba83 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42ca62e7 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x42e43d87 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x42f02511 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x432fd7f6 __gpio_set_value +EXPORT_SYMBOL_GPL vmlinux 0x432ff5fd put_pid +EXPORT_SYMBOL_GPL vmlinux 0x436f5304 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x43dff2ec get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f5f566 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x44046dfc da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x44154c79 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x44378422 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x44404f11 kdb_register_repeat +EXPORT_SYMBOL_GPL vmlinux 0x44447009 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x4455e1b3 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x44716553 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bcfa6d system_nrt_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x450ebe4d ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x451c851d wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4526a61c spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x45520a8f register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x455c1204 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x45602539 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x45686451 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457d2eda power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x459459ad usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x459a05a9 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x45a4afdd acpi_atomic_read +EXPORT_SYMBOL_GPL vmlinux 0x45be2a14 cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45bfd0bf __ip_route_output_key +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x46074c17 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x466e22b7 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x4672e88b __crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x46771f37 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x468e13d2 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x46aa11b9 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x46aa77a0 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x46afc237 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x46b1f8fd usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x46b5f8d0 usb_enable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x46bba6b4 tpm_store_cancel +EXPORT_SYMBOL_GPL vmlinux 0x46bca882 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x46e3e86c pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x46f2ac61 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x46f732de queue_work_on +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472747d8 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x47298755 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x474359b6 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x4768a660 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x47f157c7 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x47f36df9 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x47f9934d generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x47fad34f input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x4865f9b3 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x488fcade ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x48a488a0 sysctl_tcp_cookie_size +EXPORT_SYMBOL_GPL vmlinux 0x48c62e4a eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x49044d7f raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499ccdf1 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x49a172dc ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x49b6aabc __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x49c5c366 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x49e3a774 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x49f73a2c xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x4a0f8571 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x4a352d98 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x4a790e7f kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ac6594b blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x4b4954a0 __css_put +EXPORT_SYMBOL_GPL vmlinux 0x4b6c2fb9 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x4b840dfd probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x4bacb6e5 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x4bc62a81 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4bda8bac bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4c3866c0 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x4c5c712f ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4ccc6768 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d4fd5f1 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4d58c316 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x4d8309dc debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x4d976fe1 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4db7a811 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x4dc53d5d pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x4df74eca ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4e0541c9 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x4e08ccc4 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x4e0a6f37 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e3fc8fc class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x4e7fc203 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x4e844aa9 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x4eb86825 blkio_alloc_blkg_stats +EXPORT_SYMBOL_GPL vmlinux 0x4ecf4273 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f00f43e rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4f1ccf7d dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f5feffd inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x4fa0897c pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4fa92462 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4fb75a95 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x4fd4e89d ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4fd6e678 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe52621 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4fe5ea0d acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x5013e6de pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x50821f4c led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5098b121 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x50ba3bec acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50d39cff sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f5e532 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510680aa crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x511a480a sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5155a64e evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x51a3eb5f tpm_show_temp_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x51afb685 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x51b6c79a inet_csk_reqsk_queue_prune +EXPORT_SYMBOL_GPL vmlinux 0x51ce247f ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x51f98b01 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5204128b usb_is_intel_switchable_xhci +EXPORT_SYMBOL_GPL vmlinux 0x521a8873 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x52502de0 event_storage_mutex +EXPORT_SYMBOL_GPL vmlinux 0x5275e77c pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x529358b5 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x529fd626 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x52ad6866 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x52c454a1 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x52cb6e99 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x52d5e6d4 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5311eac4 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x5324d04f bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x53555ce1 blkio_root_cgroup +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5365b101 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x5372dede unregister_acpi_bus_notifier +EXPORT_SYMBOL_GPL vmlinux 0x53986488 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x539bd8d6 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53a376a0 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x53a3e486 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x53ea2911 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x540afb6b srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x541849d2 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x54241b27 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5451b381 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5453f4c0 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54b58b45 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x54c9b2fa led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x54e8cbbc __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x54fcce65 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x54ff0693 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x552567c0 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x553746fe xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x553b540f simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x55442c61 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x556f0069 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x557a541c srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x557bd925 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x55be1307 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x55cac4cd irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x55d834c7 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x55ed83ad __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x55ee4860 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x55f0b32a ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x55f43886 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x560fbc8f gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x562602b1 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564f1dca klist_add_after +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56a28d93 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x56d607df crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e7a5cf platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x5717bcc4 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x571f1202 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x5722473f class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x57634979 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x5796b9c2 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57adafe0 tpm_release +EXPORT_SYMBOL_GPL vmlinux 0x57c4691b queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x57f11cc2 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x58014ed3 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x5843c557 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x58566f71 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x5860902a stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x587d6744 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x58b9bacf inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x58cf43b5 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x58f057d6 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x591a39af ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x593a36c2 scsi_dh_handler_exist +EXPORT_SYMBOL_GPL vmlinux 0x5941d228 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x5955b892 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x59d7ad85 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a48534a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5a48fba2 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5a75da4b mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ac2727f smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x5ad19698 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x5ae26fb3 init_fpu +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b28b7e0 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5b435139 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x5b511d91 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x5b528c22 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x5bb906a7 wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bf33c80 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x5bfc03c3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c1830af ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x5d149aee __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d48a650 m2p_find_override_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5d673447 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x5d730e7b raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d87c067 register_acpi_bus_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5d99959d crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x5dd67618 register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5dfb7028 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x5e0120a8 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x5e0b3a43 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x5e35a85a netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5e86f08b blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x5e904655 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x5e9abd8c wm8994_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5ea8947b crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x5eacba1f ahci_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5eb56e90 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x5ec6130d vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x5ec6d523 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x5f0c1368 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5f248f72 set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f7b5638 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x5f7bb8ae spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x5f8241a8 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x5fa2d1e0 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x5fcdec5d xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe36fb0 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x6000112d mddev_check_plugged +EXPORT_SYMBOL_GPL vmlinux 0x601e535e tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x6020db8b sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x60495226 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x606106bd __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x6061cd35 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x606689e0 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x6066f633 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x609d963c m2p_add_override +EXPORT_SYMBOL_GPL vmlinux 0x609ed66f __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60c93207 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60cebb3d rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x60e2722e pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x6114d8a4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x6134e479 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x61634f05 lock_flocks +EXPORT_SYMBOL_GPL vmlinux 0x61859f98 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x61862594 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6194ffea do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x61954dd7 edac_class +EXPORT_SYMBOL_GPL vmlinux 0x61a31b9b dw_spi_add_host +EXPORT_SYMBOL_GPL vmlinux 0x61baad50 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x61bc8812 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x61ca5ed7 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x62035ac6 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x621283a0 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x6212a47e udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x62696c70 hrtimer_start +EXPORT_SYMBOL_GPL vmlinux 0x62afda3b sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x62d55dd4 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x62df2c11 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x62f849a5 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6304868e tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x63205de1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x633f6a05 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6347ee72 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x63980e78 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x63a6acfd crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x63afefa5 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x63e4907e xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x63f4dc09 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x641f6797 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x64897056 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x64b3f6db shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x64c146e3 task_current_syscall +EXPORT_SYMBOL_GPL vmlinux 0x64c54d44 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x64cf2515 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x64e8da0a irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x650605da sysfs_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x652b4eb6 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x653c55b7 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x656c0ff3 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x656f3468 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x659bb1e8 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x65af6abd anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x65b899e7 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c600c6 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d17b00 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x65d6d0f0 gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66234daa scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x6627c531 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6632100c usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x664d8bb7 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x6654f6ea get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x666f7c58 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6688addb pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x668a2dd4 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x66a02564 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x66ab5bae inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x66b2a859 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x66b5554d xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e400e1 aead_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x67079fd7 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x671732fb preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67181471 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673a1863 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x67608231 device_register +EXPORT_SYMBOL_GPL vmlinux 0x6772a6b1 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x678dbd09 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67d81541 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x67fa114d device_attach +EXPORT_SYMBOL_GPL vmlinux 0x683c322f rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x6868766d vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x686c703f xfrm_count_auth_supported +EXPORT_SYMBOL_GPL vmlinux 0x687b5767 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6892088c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68c2b333 inet6_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0x68d42a82 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x68f027e1 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x690699d3 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6909adb9 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698be398 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x69c8524b bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x69cca707 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x69e9a2cb ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x6a00bbca ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x6a27f43a crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a932e0a dw_spi_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x6aa548e2 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x6ab767de usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x6ab922b2 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6aba167a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ace5805 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x6ad2d082 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x6b195897 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b515dc1 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x6b807a5f gpio_sysfs_set_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6b873598 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x6b93bf60 inet_twdr_twkill_work +EXPORT_SYMBOL_GPL vmlinux 0x6bae1d11 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x6c075966 device_create +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c2058bb pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6c49c4f2 clockevents_notify +EXPORT_SYMBOL_GPL vmlinux 0x6c8d5ae8 __gpio_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6ca3d1ee __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x6cbcd93d sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x6cbdc099 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x6d07bbf4 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x6d0b9d67 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6d2d01fb scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d6d89f4 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x6d8cb093 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x6da0d147 sysfs_notify_dirent +EXPORT_SYMBOL_GPL vmlinux 0x6dd3a878 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e7474fc xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6ec10c26 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x6ec21fd4 hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x6ef7a1b0 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x6efb6547 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x6f0d18de __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f404227 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6f9b7a28 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x6fa4cf38 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x6fdee551 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe7dfb4 dm_set_device_limits +EXPORT_SYMBOL_GPL vmlinux 0x6fef6d9a register_net_sysctl_rotable +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffb1bf6 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x703189d7 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7039c933 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x704c7b85 tracepoint_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x706b3a33 cpufreq_frequency_table_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70ad3fc6 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x7132ee88 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7176ddae pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x7187627e __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x71a5609b crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x71a7ae17 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x71c1caa3 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x7222d05d ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x722fcfeb crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x725515f7 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727926f2 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x7290443f wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x72b212ff regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x72b64b21 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x72ed9f07 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731433ee unregister_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0x73184418 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x736f023b led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x73a0d982 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a7b44c pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x73b3cde9 __rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x741bef32 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7450d61e gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x747b08a8 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x74954462 timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x74abdafa task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74ca1a69 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75292496 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x755d5fb4 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x75667512 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x75af32ea crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x75b20f59 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x75e1d842 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x75e81273 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x75e8f3c3 crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x75f82981 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x760d9b02 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x761188fd dpm_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7611aba6 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x761903f6 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x767c6589 bsg_goose_queue +EXPORT_SYMBOL_GPL vmlinux 0x76ddbba9 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x76e9dff4 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x773483aa max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x778f5eb0 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x77901ebd blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x77a4e41d ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x77bf8039 rtc_set_mmss +EXPORT_SYMBOL_GPL vmlinux 0x77c0a074 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x78234432 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7845835c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x78d18914 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x78dea0ed scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x78e7ff33 acpi_post_unmap_gar +EXPORT_SYMBOL_GPL vmlinux 0x78f442b9 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x78fdfee9 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794f67ca usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79a7783e pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x79db9ada __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79e751c3 get_device +EXPORT_SYMBOL_GPL vmlinux 0x7a06dd08 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x7a153045 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x7a2eaa80 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x7a499d60 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7a4d7305 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x7a7c5175 amd_erratum_383 +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad0cabd debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x7ad61d5e swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x7ae1ae8e cpufreq_frequency_table_put_attr +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b260fe9 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x7b3ef9d6 user_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x7b6ac3e9 blkio_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x7b8984c9 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7bce10a7 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x7bfdf110 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7c0700a1 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7c2807ff ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x7c367d3c __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x7c490101 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x7c77af0d xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x7c83715a transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7c9df9f8 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x7cb81452 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x7cb948e5 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x7cba0fb0 sysdev_store_int +EXPORT_SYMBOL_GPL vmlinux 0x7cd0cba4 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d01caa3 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x7d155f9a __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d635823 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x7d7326eb scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d8409e3 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x7da6662f ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7daee536 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7dbbf3b8 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x7dc5d0b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de63f5c register_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x7dfe34c0 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x7dfedfd2 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x7e1183c9 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7e1ecdc5 register_hotplug_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x7e275ea8 scsi_complete_async_scans +EXPORT_SYMBOL_GPL vmlinux 0x7e5e301f unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7ea2207a disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7ec22f9a apei_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x7eebfcc1 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7f05ad81 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x7f25c5a6 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x7f36cf1a ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x7fab898d blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x7fb6b17c ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x7fb79250 iommu_domain_has_cap +EXPORT_SYMBOL_GPL vmlinux 0x7fe2931b blkiocg_add_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x7ff10ccf raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7ffc8718 gpio_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8014b6af input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x8035adbe rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80af9026 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x80deb502 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f92692 pci_sriov_migration +EXPORT_SYMBOL_GPL vmlinux 0x814326ee m2p_remove_override +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x817371d9 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8226642f __gpio_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8226da9f debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x825f0828 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x82939ebd rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x82b6706b adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x82cd19f3 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0x82d0c680 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82f307e4 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x82f776b7 gpio_export +EXPORT_SYMBOL_GPL vmlinux 0x8301bb66 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83a5bc56 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x83b424c3 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x83c062b3 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x83c39074 generic_subsys_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x83cb4a2e usb_usual_ignore_device +EXPORT_SYMBOL_GPL vmlinux 0x83ce82eb get_monotonic_boottime +EXPORT_SYMBOL_GPL vmlinux 0x83d2300d usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x83ed26cb ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x83ff198d md_trim_bio +EXPORT_SYMBOL_GPL vmlinux 0x84092a8f transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x8424dfea tpm_show_pcrs +EXPORT_SYMBOL_GPL vmlinux 0x843592b4 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x847768c9 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8488508e rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x84cffcb2 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x84d5a8a9 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8521037e bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x85238e67 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x85478a0b inet6_hash_frag +EXPORT_SYMBOL_GPL vmlinux 0x85481d0d ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x859654ab dw_spi_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x85be82bc cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x85c10896 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85c9b567 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85f3e524 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x85f678e2 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x86014c0f ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8614f9bd ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x862f98a3 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0x864e7f06 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8669c543 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x8677f00b flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868ee941 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86c13aca page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x86dc5a5e devres_alloc +EXPORT_SYMBOL_GPL vmlinux 0x86e919b6 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x86f0283f xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871aafeb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x874e1cfc irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x87754115 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x87a2f8a9 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x87bef57a pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x87cf0a90 injectm +EXPORT_SYMBOL_GPL vmlinux 0x87d069b9 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x882fd3b0 blkiocg_update_io_add_stats +EXPORT_SYMBOL_GPL vmlinux 0x8838090f locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x885fdbf6 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x886cb83b sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x88900992 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88e52e22 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89388153 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x894a6fb1 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x896caf60 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x8979a5ca unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x89954b59 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x89bdb0c9 dm_dispatch_request +EXPORT_SYMBOL_GPL vmlinux 0x89d4dbaf usb_usual_check_type +EXPORT_SYMBOL_GPL vmlinux 0x89ff43f6 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a04e8a3 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x8a175c07 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8a2dddc4 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x8a57e198 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8a5c7a80 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a63bf7a gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x8a6d527c crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x8a6e78d2 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x8a709738 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad4acd3 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x8aedcc3c save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b1582a9 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x8b2294f1 xen_remap_domain_mfn_range +EXPORT_SYMBOL_GPL vmlinux 0x8b39cf9d unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x8b41a571 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8b66f9e0 xen_platform_pci_unplug +EXPORT_SYMBOL_GPL vmlinux 0x8b68ce9f usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8b752ac1 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x8b7b456c dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x8b869f0c __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8bd9af74 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x8bdeba3c proc_net_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x8bf65a80 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c38074a unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8c38ceea device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x8c655ba5 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x8c6c2586 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x8c883622 tpm_remove_hardware +EXPORT_SYMBOL_GPL vmlinux 0x8c9d6236 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8cb82380 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8d885ccf __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x8da35d2b user_update +EXPORT_SYMBOL_GPL vmlinux 0x8da6b475 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x8de277e7 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x8df13efe __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x8e093fa8 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x8e432dbe tpm_read +EXPORT_SYMBOL_GPL vmlinux 0x8e46415e usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8e470ab7 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x8e623cd3 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x8e63fbf6 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x8e770529 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8ea16034 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x8ebd8240 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8ebeda58 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8ed5482c dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x8edfc605 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x8f0e88ef tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x8f11696b pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x8f1452f4 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x8f153cba dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8f18d463 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f2c940a device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x8f59bc1e put_compat_timespec +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8fb7fa2b rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x8fc3528e root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9003aa50 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x900fff65 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9033ab91 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x9051bce3 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90c763b8 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x910a4bb9 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x91152197 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x91360bd6 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9159b9d6 profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0x915ee60c tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x91682de0 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91aec29f i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x91ba1d35 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x91e5c486 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x92193e30 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x927f7035 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x9288d909 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x93260715 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x937665a2 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x939ce566 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x93a1e588 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x93b7f984 xen_swiotlb_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x93d2422d snmp_mib_free +EXPORT_SYMBOL_GPL vmlinux 0x93dd3fe1 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x93f86dd6 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x94003518 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x945859cf debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x946faa45 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x94835279 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x94875fe8 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x949b29d6 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x94a68723 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x94a911fb init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x94b7ed39 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94c660a2 register_efivars +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x9549f30c sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956a91ba gpio_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x95729a06 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x95d2f961 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x95d88d9c dw_spi_xfer_done +EXPORT_SYMBOL_GPL vmlinux 0x95df0bbf blkiocg_del_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x964baa7b pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x967be766 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x968fd4b1 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96cbcf31 pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96e60cfd ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x96ed198d led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x9713d871 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x9725370d pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x97a23a96 tracepoint_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0x97a8d11c xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x97db1878 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x9805779b xv_malloc +EXPORT_SYMBOL_GPL vmlinux 0x9813531c crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x98220bb2 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x9823df32 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x982a47e7 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9838241e ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x984a8460 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x9855deb4 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x9867485e acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x986c0189 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x98768e84 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x98ba3468 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x98cc564a regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x98ceef06 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x98d7b138 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x98f3e7b5 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x99225516 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x99226285 filter_current_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x996d7c5f pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x997b494c pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x9993e7e1 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x99a6e33a apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x99edbd02 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x9a04517c max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x9a073f3a platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x9a0c3708 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a18d71c scsi_dh_detach +EXPORT_SYMBOL_GPL vmlinux 0x9a2bc4a8 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x9a4b8396 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x9a4d1034 idle_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9aa113cc ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b084e71 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x9b344772 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9b4936fa handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x9b5840be usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x9b81400e wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba0501e unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9bb038a8 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x9bbca6ad xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x9c2abf41 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x9c2cab25 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x9c3ad11a register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x9c3c4175 xenbus_bind_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x9c604360 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ca9dd3a xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x9cb8037b xfrm_count_enc_supported +EXPORT_SYMBOL_GPL vmlinux 0x9cbf4545 scsi_nl_add_transport +EXPORT_SYMBOL_GPL vmlinux 0x9cec91c9 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d1d04bd class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9d1e804f rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d531c1e aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9d64f346 free_css_id +EXPORT_SYMBOL_GPL vmlinux 0x9d9134e4 inet6_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x9d985703 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x9d9e155d pv_info +EXPORT_SYMBOL_GPL vmlinux 0x9dd2f1e0 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9e328452 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x9e4f1cfb ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x9e525768 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x9e776f6b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x9e9b62e2 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x9e9b6df4 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x9ea01c4e regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x9ea057f8 regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x9ed3143c leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x9ee1183c wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x9ef8da7a scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x9f18efbb ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x9f2a9932 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9f40a6d6 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x9f46259a vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x9f535847 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x9f6ded61 probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x9facaa27 tpm_show_durations +EXPORT_SYMBOL_GPL vmlinux 0x9fb71de5 find_module +EXPORT_SYMBOL_GPL vmlinux 0x9fc72f5e ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fcf4dc5 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x9fee9e71 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ffb1373 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xa0328525 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xa032d783 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xa04859b9 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xa052ccd0 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa053146d rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa06db7aa dm_requeue_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0xa09ee531 sysdev_class_register +EXPORT_SYMBOL_GPL vmlinux 0xa0b77f57 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL vmlinux 0xa1306639 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xa1339786 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xa14a5a9f led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa16b8248 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa1832289 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xa18676fe wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa1a5af3c pstore_write +EXPORT_SYMBOL_GPL vmlinux 0xa1c30511 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xa1ddf303 fpu_finit +EXPORT_SYMBOL_GPL vmlinux 0xa20ab29b unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa234e7ca fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xa25d0d1c scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xa2e67f08 acpi_bus_generate_proc_event4 +EXPORT_SYMBOL_GPL vmlinux 0xa3215784 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa34394bb bdi_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa364207a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa377b316 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa406a500 pm_generic_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xa40a8590 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa4244d73 blk_abort_queue +EXPORT_SYMBOL_GPL vmlinux 0xa42b6e57 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xa42d9a18 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xa44489e1 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4a42813 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xa4ca0d4e unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa4d58669 math_state_restore +EXPORT_SYMBOL_GPL vmlinux 0xa4e26846 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xa4e91c69 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xa5265fc8 sysdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa529e78f ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xa5368229 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xa55f612f pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xa58467f9 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xa59cbaf8 cred_to_ucred +EXPORT_SYMBOL_GPL vmlinux 0xa5b28fb6 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa5e8bfc5 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa60b2d08 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xa6153bca adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xa65c71a0 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xa68d1061 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xa6ae7fbf relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xa6f7a01e ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xa722a819 cpu_has_amd_erratum +EXPORT_SYMBOL_GPL vmlinux 0xa7277d2d acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xa77005e0 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa771eb70 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xa7832cad rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa7836935 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xa783d9ce platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xa78d021d elv_register +EXPORT_SYMBOL_GPL vmlinux 0xa7a6fede do_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa7f92105 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0xa7fd51b3 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa80f6cb3 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa84140d6 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa8915071 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xa8954cef xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xa8b82a53 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa8ba5069 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xa8d0e78d adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xa8da1a9e __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xa8f59416 gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xa9073d69 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa94adda4 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xa960ea31 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa9979cc1 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xa9c530b8 unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9c92129 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa9dd276f usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xa9f3f261 net_ipv4_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0xa9fa4e01 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xaa26c88a klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xaa3f13f7 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa420637 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xaa5e60dd virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xaa5f1a1c crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xaa852c93 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab029199 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xab140c53 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xab31b416 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xab5fed73 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab8b8bf3 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xabb16a49 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xabc68a8a device_move +EXPORT_SYMBOL_GPL vmlinux 0xabc83a5f devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xac1edd0b relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xac3dde9e tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xac4d2720 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xac522a2e user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac828057 tpm_show_pubek +EXPORT_SYMBOL_GPL vmlinux 0xac8293e9 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacba1bb4 sysfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xacce8998 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xace559de netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xad5f1b39 nf_net_ipv4_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0xad6f4bc6 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xada38534 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xade4adaa find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae0c87ee pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae19ed0c tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xae2238be transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xae7c5411 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0xaea43691 nf_unregister_queue_handlers +EXPORT_SYMBOL_GPL vmlinux 0xaeea3073 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xaeecc9c2 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xaf0fee7a xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xaf18e2ac xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xaf67cc3c ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xaf69699e xv_get_object_size +EXPORT_SYMBOL_GPL vmlinux 0xaf6d7eb4 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xaf8e843b __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xafcc6254 pci_pri_stopped +EXPORT_SYMBOL_GPL vmlinux 0xafd7fe78 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xafea7a5f usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xb008aa95 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xb008c80b usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb06efb65 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xb086a2eb dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb0ae5977 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0d56047 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xb0d732fe sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xb0d9c2de xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb0de928d sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xb0e865bb mmput +EXPORT_SYMBOL_GPL vmlinux 0xb0f7c8ea raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xb10d55bc cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xb11cb2b0 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb12ff012 pci_block_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0xb13b1601 blkio_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1484e14 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xb169fcc1 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1cfad34 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xb1d2888d pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xb20843ae spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xb21b99ef __class_register +EXPORT_SYMBOL_GPL vmlinux 0xb246b5be md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xb280d8eb platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb3045ea5 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb33b95f2 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb343a1e0 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb39e6cba usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xb39e9844 net_cls_subsys_id +EXPORT_SYMBOL_GPL vmlinux 0xb3d5eab7 acpi_atomic_write +EXPORT_SYMBOL_GPL vmlinux 0xb40a9f6b user_describe +EXPORT_SYMBOL_GPL vmlinux 0xb41128ff __clocksource_updatefreq_scale +EXPORT_SYMBOL_GPL vmlinux 0xb41bd860 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xb4759adc stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53ae573 cpu_idle_wait +EXPORT_SYMBOL_GPL vmlinux 0xb5511ee3 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xb5544f8e device_del +EXPORT_SYMBOL_GPL vmlinux 0xb5595f03 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb562f919 sysdev_class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb576abf1 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb58b29f9 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a30b06 dm_underlying_device_busy +EXPORT_SYMBOL_GPL vmlinux 0xb5b5e089 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xb5c1bf72 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb650f41c scsi_nl_add_driver +EXPORT_SYMBOL_GPL vmlinux 0xb6613e09 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xb6907f78 pci_pri_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6c4d15e ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb7cca550 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xb7d07a80 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e2eb91 mce_cpu_specific_poll +EXPORT_SYMBOL_GPL vmlinux 0xb7ec91a2 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xb7f4e553 erst_read +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb813ce5a timecompare_transform +EXPORT_SYMBOL_GPL vmlinux 0xb82f1c5e get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xb84da6d1 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xb84f9893 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb86f879e __cpufreq_driver_getavg +EXPORT_SYMBOL_GPL vmlinux 0xb883596e stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xb89768d0 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xb89b74b6 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xb8a08583 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xb8d34b3d vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xb8db9e2f rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xb8f5c97e sysdev_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb94db510 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb95df8d6 register_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xb97ddf09 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xb98383e4 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9ae6384 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cb9ac9 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9f83c54 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xb9fc4598 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xba2bd445 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xba3b6d23 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xba69dc94 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xba86cc60 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xba899d5c pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xba9b6f4f sk_clone +EXPORT_SYMBOL_GPL vmlinux 0xbaa96b7a ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xbace04c7 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xbae34c27 scsi_nl_remove_transport +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb06943c rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb128381 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xbb23a6bd iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xbb367bea da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xbb4207ec tcp_is_cwnd_limited +EXPORT_SYMBOL_GPL vmlinux 0xbb97dfd8 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbc2143b5 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xbc28ad8a rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xbc38a343 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xbc456407 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xbc555b33 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xbc6e9821 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbc6f931b workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xbc943c08 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcc17a98 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbccd2f93 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbd0235d2 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xbd0d84f9 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xbd414eca rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbd506a46 unregister_hotplug_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xbdb6cb54 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbdf1d229 crypto_rng_type +EXPORT_SYMBOL_GPL vmlinux 0xbdf97d45 blkdev_aio_write +EXPORT_SYMBOL_GPL vmlinux 0xbdfd0046 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xbdfd0d80 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xbe06d34a usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xbe0c0421 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe2876c9 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xbe517609 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xbe5bf830 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xbe68f3bd __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xbec0146c rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xbecab8d2 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xbed20d9a __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xbedc3a50 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbee71b6c ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xbf05c913 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xbf2c8a37 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xbf62500f pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xbf74c3e0 gpio_export_link +EXPORT_SYMBOL_GPL vmlinux 0xbf7aaf4f skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xbf8baa9c acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xbf9a4161 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xbfa183f3 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xbfaeda6e relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbff7eb3d dm_kill_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc0357014 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xc03ab504 setup_deferrable_timer_on_stack_key +EXPORT_SYMBOL_GPL vmlinux 0xc04d60f3 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xc050e2f6 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc05c1071 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xc076d901 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc09ebd40 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc0bf6ead timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xc0d174a1 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc0df13f1 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xc10f2b8e cgroup_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc11bd00f tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1213640 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xc126d184 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc127fa26 acpi_pre_map_gar +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1a727a9 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc1d119c6 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xc1d14716 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc1f7d390 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2830c7f blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc29dc7a2 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2bad3a8 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc2d2ce84 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xc2dbb8b8 pci_renumber_slot +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2dfb2c4 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xc2f6bffd usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc2ff6722 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xc323cc8e sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xc33f7d61 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xc3473ab8 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xc34efe27 snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0xc352a1a6 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc38cd6e5 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0xc399468f scsi_nl_remove_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3a2e089 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xc3b06618 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xc3cf966b put_device +EXPORT_SYMBOL_GPL vmlinux 0xc4034caa enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4917a3a scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xc4a4c91f sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xc4ce6189 idle_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4e2419c __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc51ad870 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc54b06d9 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xc556bc26 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc59c483d __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xc5b84141 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xc5c264a5 amd_erratum_400 +EXPORT_SYMBOL_GPL vmlinux 0xc5e1a88f tpm_show_active +EXPORT_SYMBOL_GPL vmlinux 0xc5e23920 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xc60f75ec __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc62ea900 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc631cebc fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xc633a20c cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc63e731e virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xc649ab90 sysfs_schedule_callback +EXPORT_SYMBOL_GPL vmlinux 0xc656b1a5 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc67ade24 class_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc69dd6b4 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xc69fef54 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xc6a6b561 lookup_instantiate_filp +EXPORT_SYMBOL_GPL vmlinux 0xc6aeb4f7 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xc6c3b701 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xc6ca38ad ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc6d0df9a tpm_write +EXPORT_SYMBOL_GPL vmlinux 0xc72a31fd pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc73382e8 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xc7999452 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc8130cd2 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xc8156525 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc8692f99 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8a3481f sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8adf089 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xc8b193a8 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xc8cede4e __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc912931d pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc92e5bf2 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xc934b001 xen_swiotlb_unmap_sg +EXPORT_SYMBOL_GPL vmlinux 0xc9369896 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc97c6aa8 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xc9ab3e93 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xc9b6d672 tracepoint_iter_stop +EXPORT_SYMBOL_GPL vmlinux 0xc9bba583 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca0a8434 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xca2f7af4 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xca66dd16 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca8338e6 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xca85d8cf tracepoint_probe_update_all +EXPORT_SYMBOL_GPL vmlinux 0xcaa0d85b tpm_show_caps +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae585a5 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcaf66024 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xcb10ef92 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xcb262cd3 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcb4535ee queue_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xcba4af46 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xcbd0530f xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbfb1bd2 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc1f1c3d inet_twdr_hangman +EXPORT_SYMBOL_GPL vmlinux 0xcc3da32d aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xcc43af4f inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0xcc459bb6 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xcc5d5715 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xcc6ab305 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xcc8bfa8c usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcd9991a9 usb_usual_set_present +EXPORT_SYMBOL_GPL vmlinux 0xcd9b331e ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xcda7c793 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xcda93262 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xcdb98bd0 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xcdc56f61 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde0b876 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xce357721 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0xce4cae05 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce75b58d vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xcee73092 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xcef098e9 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcf43a1a6 device_schedule_callback_owner +EXPORT_SYMBOL_GPL vmlinux 0xcf6223cf PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xcf8cec7c blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfb92cd5 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xcfbded3d bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcc83ad register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcfdd63e2 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL vmlinux 0xd01491b8 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd03fea5a crypto_aead_type +EXPORT_SYMBOL_GPL vmlinux 0xd04392d1 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd05dc2a3 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd06cde72 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xd0a7c3a9 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0f2894f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xd12bd0c9 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xd144cc09 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xd14dd828 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd186730d regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xd19a58a4 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd1b2db37 tracepoint_probe_register_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xd1d15b69 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd1e154c4 inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xd204c417 xv_create_pool +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2964551 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xd2a8caf0 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2dd9860 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd2eafc7b bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xd2fce38c unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd310ed9e ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xd32b9ad0 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xd32fe193 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd362da1f __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd37e13b4 regulator_set_optimum_mode +EXPORT_SYMBOL_GPL vmlinux 0xd38da0aa xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xd3b194da ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xd3c8f8d4 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd3d80834 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd3e405b1 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd4022860 sysdev_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4bffecd dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4f76ad3 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xd516f50c spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xd5294d71 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xd52d5b32 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xd53bc067 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd551ab28 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xd5633fd4 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xd587db49 md_run +EXPORT_SYMBOL_GPL vmlinux 0xd59668e6 unlock_flocks +EXPORT_SYMBOL_GPL vmlinux 0xd5a084cc ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5be34c7 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xd5f780b5 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xd5fc65b9 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xd624406d adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68dca50 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xd6c45aa3 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xd6dbe3b3 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xd6de3455 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xd6e24650 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd719e232 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd71ec81f virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd735186e tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xd748b8ef devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd78e958e fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd7af0603 input_class +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7ee9c09 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd7f3e4ca sysdev_class_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8525ea7 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xd85ac634 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd8923591 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xd8a238de hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd8e5ea4d d_materialise_unique +EXPORT_SYMBOL_GPL vmlinux 0xd9042fa8 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xd90edf30 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd9370a1e pci_stop_bus_device +EXPORT_SYMBOL_GPL vmlinux 0xd93e76a6 kbd_table +EXPORT_SYMBOL_GPL vmlinux 0xd94db350 blkio_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd9770ec7 tpm_show_caps_1_2 +EXPORT_SYMBOL_GPL vmlinux 0xd985979a __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda1be8e1 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xda36589b pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xda3a7ca9 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xda41df2f inet_csk_clone +EXPORT_SYMBOL_GPL vmlinux 0xda4f3923 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xda5b64a6 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xda5ccd32 sysdev_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xdab8a8e1 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb04cacc tracepoint_probe_unregister_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xdb1e3198 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xdb2323e1 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xdb274e52 monotonic_to_bootbased +EXPORT_SYMBOL_GPL vmlinux 0xdb4ed0d5 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xdb7bcdb8 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xdb89c86a aead_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xdc04a6ac inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc1528c6 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xdc1f8f2e register_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0xdc5923a2 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xdc5e7ab3 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc8b84b6 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xdc919d98 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9f2ef7 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xdcb845b3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xdcc34d8f ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xdce57037 apei_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xdce5e625 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xdce851cd sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xdd15800e remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd26e069 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd48439e setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xdd5b9afd inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xdd70b8ab attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xdd926162 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xddbe9604 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdddb8da0 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xddf56944 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xddfeced9 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xde315bde __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde417b81 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xde4e19ba klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde689816 sysdev_show_int +EXPORT_SYMBOL_GPL vmlinux 0xde708da2 tpm_bios_log_teardown +EXPORT_SYMBOL_GPL vmlinux 0xdea4adc6 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xdf15ae6e crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xdf194549 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xdf2de7b4 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xdf67bc4b bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xdf9df112 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xdfb10f63 cgroup_load_subsys +EXPORT_SYMBOL_GPL vmlinux 0xdff9e503 xenbus_dev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe043a09f fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xe06f50b8 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe07888c3 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0932bee watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe0abb439 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xe0c24fdc acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xe0c45124 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0d5eb5b xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xe0fc032f stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xe10b2231 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe111c444 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe113f3fd tpm_continue_selftest +EXPORT_SYMBOL_GPL vmlinux 0xe121beb2 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xe13973db cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xe1dfc014 fuse_conn_kill +EXPORT_SYMBOL_GPL vmlinux 0xe1eeaa81 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1fd2c8d bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xe2182ac6 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xe28ce095 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2a0f5de tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe2ae3097 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe2dd67e5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe2eb264d sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe37ab4df ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xe384a102 usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3c65a89 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe3d81512 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe3f47e97 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xe401b416 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe42211cb regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xe42a2b9b regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4325cce regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xe43678dd dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xe4428977 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe44ed4ef blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xe46ba90a crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xe4975441 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe4a0fd9f simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xe506d12a fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xe541f481 cgroup_unload_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe56c6591 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5a57b66 blk_rq_check_limits +EXPORT_SYMBOL_GPL vmlinux 0xe5b4e917 blkiocg_lookup_group +EXPORT_SYMBOL_GPL vmlinux 0xe61a6d2f gpio_unexport +EXPORT_SYMBOL_GPL vmlinux 0xe6488b47 cpufreq_notify_transition +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6602e9f perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe66b5eb9 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe69dcd65 blkiocg_update_dispatch_stats +EXPORT_SYMBOL_GPL vmlinux 0xe6d2a300 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xe6d6e385 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6f06590 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xe6fbd82f pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xe7080f06 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe72ce106 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe73e54f4 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe78c202d bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe79feb74 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xe7a2b7c7 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xe7d33648 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7d49508 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe7e69fa4 sysdev_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe833e887 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xe8387f92 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8858d84 get_cpu_sysdev +EXPORT_SYMBOL_GPL vmlinux 0xe898c2ad usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe89c30ad crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe8ae8d63 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xe8cad7cf sysfs_get_dirent +EXPORT_SYMBOL_GPL vmlinux 0xe8e12de8 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xe8f69ba0 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe92624fd sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xe92c66a6 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9587909 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0xe9654849 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe98f73e5 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xe99a656f raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xe9a2e96c __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xea065e01 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea13117c file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea6367e8 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xea950b9c wm8994_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xead7bfb5 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xeadf816e klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeae74760 scsi_nl_send_transport_msg +EXPORT_SYMBOL_GPL vmlinux 0xeae999a3 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb450f88 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xeba745e1 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xebad8bab pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xebf0d606 apic +EXPORT_SYMBOL_GPL vmlinux 0xebf1190a da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xec073352 regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xec0b78a2 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec266532 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xec30454f max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xec378a7f rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xec5c98aa pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xec81aebc crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xecb340be xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xecb81842 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xecfd922e pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xed01394a sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xed1e2691 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xed294447 cgroup_to_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xed5b970a css_lookup +EXPORT_SYMBOL_GPL vmlinux 0xed6547af usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xed6613d2 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xed96e331 task_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xeda0981d blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedda25a6 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xee278255 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xee7a0913 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xee9afa03 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xeea1b48d driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xeedfbef8 unregister_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0xeeef9d21 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef23ab24 tcp_reno_min_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xef5b725c __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xefba06b9 xv_get_total_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xefdd5a63 ktime_get_ts +EXPORT_SYMBOL_GPL vmlinux 0xeff10499 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xeff8a45e shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xeffe4cdd sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf02591b7 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xf03a519b gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xf0673a01 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06d2c63 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xf0a5a94a blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xf0d99cd3 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xf0ddcc89 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xf0fa0ff5 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xf11e398c pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xf1203636 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xf124bc58 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xf1448be3 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18d874f net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1db3255 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xf1f9c581 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xf212f3f7 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xf214a5ae fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xf2862f86 blkiocg_update_completion_stats +EXPORT_SYMBOL_GPL vmlinux 0xf29c7b75 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf2cb3230 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf34806ec hrtimer_get_res +EXPORT_SYMBOL_GPL vmlinux 0xf39a1d19 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xf3af8c8b vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b93a97 cgroup_lock_is_held +EXPORT_SYMBOL_GPL vmlinux 0xf3c8909e default_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xf3d1471c rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xf3dd036d regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xf4000e06 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xf42e19d8 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xf43b726a ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xf44ea3ca spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xf478b7b5 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xf4997b05 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4c5ae06 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf52170da sysfs_put +EXPORT_SYMBOL_GPL vmlinux 0xf5382af9 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf555713b usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xf56ad43d css_depth +EXPORT_SYMBOL_GPL vmlinux 0xf56bbdad __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xf575a688 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5a016c9 xv_free +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5ba4003 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xf5bdd294 tpm_bios_log_setup +EXPORT_SYMBOL_GPL vmlinux 0xf5c32270 put_driver +EXPORT_SYMBOL_GPL vmlinux 0xf5c5b493 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xf5e5dd6b ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xf5ec3d00 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xf60300b4 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xf615852e security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf6185033 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xf6464980 ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf653e66e tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xf65b1659 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xf6748423 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xf67d4a8c tpm_register_hardware +EXPORT_SYMBOL_GPL vmlinux 0xf689794e inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xf6e04730 event_storage +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f98b29 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xf6fd5309 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf700cdca vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf704513d __inet_hash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xf712dae0 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xf7322bc8 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0xf73fec76 proc_net_remove +EXPORT_SYMBOL_GPL vmlinux 0xf75a7a62 pci_pri_status +EXPORT_SYMBOL_GPL vmlinux 0xf792a74c tcp_init_congestion_ops +EXPORT_SYMBOL_GPL vmlinux 0xf7a14f56 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf7a36010 tpm_show_owned +EXPORT_SYMBOL_GPL vmlinux 0xf7a926c1 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xf846a811 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xf8706bb0 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8a38675 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xf8acdc25 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xf8c779c3 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf9711f71 sysdev_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf97666a0 set_memory_rw +EXPORT_SYMBOL_GPL vmlinux 0xf9924426 arch_add_memory +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9bd4aea module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xfa012fe7 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa2d8d7f rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xfa4509f5 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfa4a647e klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfa4f2978 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xfa995e1d tpm_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xfa9a81b2 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfac566d9 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xfaccff8a inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xfaf9c490 inode_dio_wait +EXPORT_SYMBOL_GPL vmlinux 0xfb02e505 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfb17dec1 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7884b5 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb8340ab __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xfbcc282d vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xfbcd1822 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xfbd13565 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xfbd2d8fe __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xfbdf35f6 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xfbf9be5d register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4bcc87 wm8994_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xfc5ea807 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xfc671beb blk_queue_bio +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfcd7bc0b ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0xfcdb4e0b rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd18a9d1 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xfd1e3796 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xfd232ff7 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd62c0ee tpm_show_enabled +EXPORT_SYMBOL_GPL vmlinux 0xfd66f0a4 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7d28af usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xfde0b92c crypto_larval_error +EXPORT_SYMBOL_GPL vmlinux 0xfe3e3c81 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe7b255a set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb201c0 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfedfdc6e tps65910_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff088f89 cpufreq_get_measured_perf +EXPORT_SYMBOL_GPL vmlinux 0xff10d8f2 tpm_show_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xff18ca26 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff743490 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xff783be3 regcache_write +EXPORT_SYMBOL_GPL vmlinux 0xffa4c4ec cgroup_lock +EXPORT_SYMBOL_GPL vmlinux 0xffa4f6e9 cgroup_add_files +EXPORT_SYMBOL_GPL vmlinux 0xffbf60e2 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfff59f93 tpm_open --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/amd64/virtual.modules +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/amd64/virtual.modules @@ -0,0 +1,577 @@ +6lowpan +8021q +8139cp +8139too +8390 +acpi_ipmi +acpi_memhotplug +acpi_pad +acpiphp +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +aesni-intel +aes-x86_64 +af_802154 +af_alg +af_key +af-rxrpc +ah4 +ah6 +algif_hash +algif_skcipher +ansi_cprng +anubis +appletalk +arc4 +arptable_filter +arp_tables +arpt_mangle +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +atm +authenc +authencesn +auth_rpcgss +autofs4 +ax25 +bch +binfmt_misc +blowfish_common +blowfish_generic +blowfish-x86_64 +bonding +br2684 +bridge +bsd_comp +btrfs +BusLogic +cachefiles +camellia +can +can-bcm +can-gw +can-raw +cast5 +cast6 +ccm +cfg80211 +cifs +cirrusfb +clip +cls_basic +cls_cgroup +cls_flow +cls_fw +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +configfs +cordic +cpuid +cpu-notifier-error-inject +crc7 +crc8 +crc-ccitt +crc-itu-t +cryptd +cryptoloop +crypto_null +crypto_user +ctr +cts +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +de2104x +de4x5 +decnet +deflate +des_generic +dm-bufio +dm-crypt +dmfe +dm-log +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-thin-pool +dm-zero +dn_rtmsg +dummy +e1000 +e1000e +ebt_802_3 +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_ulog +ebt_vlan +econet +ec_sys +einj +em_cmp +em_meta +em_nbyte +em_text +em_u32 +eql +erst-dbg +esp4 +esp6 +evbug +ext2 +fat +faulty +fb_sys_fops +fcrypt +floppy +fscache +gameport +garp +gcm +gf128mul +ghash-clmulni-intel +ghash-generic +gre +hangcheck-timer +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +ieee802154 +ifb +igbvf +inet_diag +ip6_queue +ip6table_filter +ip6table_mangle +ip6table_raw +ip6_tables +ip6table_security +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_LOG +ip6t_mh +ip6t_REJECT +ip6t_rt +ip6_tunnel +ipcomp +ipcomp6 +ipddp +ip_gre +ipip +ip_queue +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netport +ip_set_list_set +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +ip_tables +iptable_security +ipt_ah +ipt_CLUSTERIP +ipt_ecn +ipt_ECN +ipt_LOG +ipt_MASQUERADE +ipt_NETMAP +ipt_REDIRECT +ipt_REJECT +ipt_ULOG +ip_vs +ip_vs_dh +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ipx +ircomm +ircomm-tty +irda +irlan +irnet +iscsi_tcp +isofs +ixgbevf +joydev +khazad +lapb +lec +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libcrc32c +libiscsi +libiscsi_tcp +libsas +linear +llc2 +lockd +lp +lru_cache +lrw +lzo +mac80211 +macvlan +macvtap +mce-inject +mce-xeon75xx +md4 +michael_mic +microcode +mip6 +mpoa +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +msdos +msr +multipath +nbd +ne2k-pci +netconsole +netrom +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nfnetlink +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfsd +nf_tproxy_core +nls_cp437 +nls_iso8859-1 +nvram +oprofile +output +overlayfs +p8023 +parport +parport_pc +pcbc +pci_slot +pcnet32 +pcrypt +phonet +pktgen +pn_pep +ppdev +ppp_async +ppp_deflate +ppp_mppe +pppoatm +pppoe +pppox +ppp_synctty +pptp +psmouse +qla1280 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +raw +reed_solomon +rmd128 +rmd160 +rmd256 +rmd320 +rose +rxkad +salsa20_generic +salsa20-x86_64 +sbs +sbshc +sch_atm +sch_cbq +sch_choke +sch_drr +sch_dsmark +sch_gred +sch_hfsc +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_tgt +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_wait_scan +sctp +sctp_probe +seed +seqiv +serio_raw +serpent +serport +sha1-ssse3 +sha512_generic +sit +slip +snd +snd-ens1370 +snd-hrtimer +snd-hwdep +snd-mixer-oss +snd-page-alloc +snd-pcm +snd-pcsp +snd-rawmidi +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-timer +softdog +soundcore +squashfs +stp +sunrpc +syscopyarea +sysfillrect +sysimgblt +tcp_bic +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tea +test-kstrtox +tgr192 +tipc +ts_bm +ts_fsm +ts_kmp +tulip +tunnel4 +tunnel6 +twofish_common +twofish_generic +twofish-x86_64 +twofish-x86_64-3way +ufs +uli526x +usb-storage +usbtouchscreen +vesafb +veth +vfat +vga16fb +vgastate +video +virtio_balloon +vmac +vmw_balloon +vmw_pvscsi +vmxnet3 +wanrouter +winbond-840 +wp512 +x25 +xcbc +xen-evtchn +xen-fbfront +xenfs +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_ipcomp +xfrm_user +xfs +xircom_cb +xor +x_tables +xt_addrtype +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_cluster +xt_comment +xt_connbytes +xt_connlimit +xt_connmark +xt_CONNSECMARK +xt_conntrack +xt_cpu +xt_CT +xt_dccp +xt_devgroup +xt_dscp +xt_DSCP +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_HL +xt_IDLETIMER +xt_iprange +xt_ipvs +xt_LED +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_NFLOG +xt_NFQUEUE +xt_NOTRACK +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_RATEEST +xt_realm +xt_recent +xts +xt_sctp +xt_SECMARK +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_TCPMSS +xt_TCPOPTSTRIP +xt_tcpudp +xt_TEE +xt_time +xt_TPROXY +xt_TRACE +xt_u32 +xz_dec_test +zlib +zlib_deflate --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/amd64/virtual +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/amd64/virtual @@ -0,0 +1,12476 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x34eae2c2 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/kvm/kvm 0x5634c3a9 kvm_read_guest_atomic +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xa563f921 acpi_video_get_edid +EXPORT_SYMBOL drivers/atm/suni 0x16d84e85 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x50dcce56 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x33e71880 bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x5c165453 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x1705df68 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x237affc9 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x2b4a8366 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x2ceb87a8 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x88a929b2 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x9e4ce14e pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xa950370f pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xb2e3d330 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xc592e0ed paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xcdc934b7 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xd6fdd587 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xfa27c18b paride_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5ee4be88 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x65d347d5 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8a8fa839 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x98f8421f ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa28a2ace ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc82d8dc2 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/edac/edac_core 0x0374d4cf edac_mc_handle_fbd_ce +EXPORT_SYMBOL drivers/edac/edac_core 0x20f68266 edac_mc_handle_fbd_ue +EXPORT_SYMBOL drivers/edac/edac_core 0x75d25bec edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x06f59393 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x07347c4a fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x11491144 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x12c3a502 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2602e65d fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2da2bd32 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x32714b15 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3de319be fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x453a940f fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x49a29946 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4a68aee0 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4e86dd83 fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x512783e7 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x61cfff40 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x691e6908 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c48299a fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x73dcd38f fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x74c67fcf fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x75b0a34d fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8406265a fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xac229d2a fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb68bee25 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc8d0adda fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdd3b9125 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf2afa727 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfb69da4b fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfc495b34 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfe8242a8 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0356df58 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03ced6ae drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04ac6165 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06466a5f drm_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x072ea083 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07416b0e drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09085311 drm_fasync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cf106bb drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1179204b drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x123b7f12 drm_mm_get_block_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c6276a drm_buffer_read_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x138607e5 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142b8b35 drm_buffer_copy_from_user +EXPORT_SYMBOL drivers/gpu/drm/drm 0x175efc30 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1788ea76 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c69ddd0 drm_sysfs_connector_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d82d51e drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ea86dc1 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f072c59 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f6b8040 drm_mode_create_dithering_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25caec70 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x269f72de drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x273a153a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29218b01 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b13922b drm_free_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cdf0464 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e12495f drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3074f033 drm_order +EXPORT_SYMBOL drivers/gpu/drm/drm 0x326ff5fb drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33ad36a4 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e154ba drm_sman_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3465ed3d drm_mm_search_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x354f43ff drm_mode_attachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37565523 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37b72e72 drm_unbind_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3819b12a drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x383eb369 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c02c807 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c104125 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3caf5487 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x401f6f35 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x405f3b23 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41469c24 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41fe8795 drm_mm_pre_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x421fddea drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43384bd9 drm_buffer_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c9a91c drm_sman_set_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46065ac0 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x495d85fa drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498dcb5e drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49c4ca8d drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aab4374 drm_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b02aeff drm_mode_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc09a98 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d91460f drm_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dfb923b drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50ccb879 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x519ac33f drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5372d514 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x549b2c8d drm_mm_put_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55ba5689 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56d378aa drm_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57015585 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57fa7dcd drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580830f0 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5936c15e drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab667a1 drm_usb_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d413248 drm_mm_insert_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d657a6b drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ef102fc drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f098f77 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6cbc33 drm_find_cea_extension +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60f938fb drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61ff2a19 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x627effc3 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ba5f95 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66fe37ce drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x698cc2d9 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d7375 drm_timestamp_precision +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ef5771b drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f15dca9 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f5541d3 drm_core_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x716aa5ad drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x720d32cc drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x733c9d94 drm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7622c65b drm_core_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7647f20b drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x768952a1 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c3da3b drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1fd6c8 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e172817 drm_connector_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4cfa5d drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f5934a4 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80da0c5f drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x841c47b9 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85de09f5 drm_mode_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85f79514 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86136af0 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86f4b6e3 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87147c4d drm_global_mutex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x886c876d drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8879b9b2 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88aa23c4 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aff8ae0 drm_usb_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfb019d drm_buffer_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ecee688 drm_get_platform_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f7f99bb drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9002355c drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x905660b2 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x912c23fe drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91b748a6 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f2d102 drm_sman_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932df43d drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ad2c48 drm_mm_get_block_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93d1bca1 drm_get_connector_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x946939ce drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x956cc01f drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x966277c3 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x968793d3 drm_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x972f6e5a drm_sysfs_connector_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9745d638 drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9844b6db drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bc60752 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cfc4748 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d9517f7 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc25a34 drm_sman_owner_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef0af86 drm_platform_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1eabd87 drm_mode_list_concat +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa237e931 drm_sman_set_manager +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2d4d6a1 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3d48b16 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6c7a276 drm_get_encoder_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9b22556 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa0cbd76 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa54231f drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa6d323f drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae31dd42 drm_gem_object_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0968139 drm_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0da9cae drm_mode_detachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb18f7c28 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2764987 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5aa2c7f drm_get_usb_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a467b1 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6eb3bd5 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7256edb drm_gem_object_handle_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb827a259 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbbdc794 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf2f8241 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1c3a817 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc414c422 drm_vblank_offdelay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5449f03 drm_core_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc660dee4 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc76bf62e drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9425c98 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf2eff4 drm_mode_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce814c90 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08fa3f0 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd222f845 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd30e657d drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f1ab84 drm_sman_owner_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8b68bbf drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc07537f drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd2874ae drm_connector_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe23cf906 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe256edfd drm_sman_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3553657 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4d358c5 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5bdce7e drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6053771 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe61866aa drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7328df8 drm_core_reclaim_buffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8532f85 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea057809 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccc9f7d drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed256cae drm_sman_free_key +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf07178 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a0bf79 drm_sman_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f038d8 drm_mm_search_free_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44d5d05 drm_mode_connector_detach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8fc0eb1 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaa20ee3 drm_connector_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb1044c9 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb82b13 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbd50d58 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4f8599 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe57380e drm_get_last_vbltimestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffe34563 drm_mode_validate_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06faef9d drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a8af099 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2025d574 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2590d286 i2c_dp_aux_add_bus +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29782611 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ba0dfd0 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3044397a drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x345b733f drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34bbd93c drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40138aae drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x493f876a drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e3e6b85 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61f2bccf drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76efa3f6 drm_fb_helper_restore_fbdev_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85459ec7 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88935171 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8cea9d7f drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8fb3ecef drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93c03890 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aee25f0 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d251144 drm_fb_helper_panic +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e60eb20 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5e4fb0c drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4cfa22a drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe76c9f7 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc092f9ea drm_fb_helper_single_fb_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc469c244 drm_fb_helper_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb8bd37d drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd670d835 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd68f5550 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbea61f4 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea7a681f drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf864fe98 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0436a1d6 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f3a4786 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fe3c315 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x105692ae ttm_agp_backend_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x145e6a73 ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25392771 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x258761a3 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b941579 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cdf1ec4 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x343a948e ttm_bo_wait_cpu +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34c269a1 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3885f665 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44493d46 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x46b73621 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4915fb8c ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49cc3eca ttm_bo_unreserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5460e5cc ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55279eec ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5929c410 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5e956267 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61bdb34f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x623735ea ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x65e6b4b3 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6622655d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6702929e ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67c35c58 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68a07a58 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6f9c3e30 ttm_bo_wait_unreserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x71b11094 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7586fb3a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8130aa30 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8149f874 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83cc6929 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84e2d7f2 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85477881 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86a4066d ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8832162b ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88bed004 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d8b31bb ttm_bo_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e29981f ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92da04e8 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94183bc9 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa85839b2 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab9c6d65 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac0e50d1 ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4a78d92 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5e977e4 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaa2b414 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc394a57e ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9ff6111 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc404922 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf8bceca ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd19dbef8 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd4828720 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd7e51e49 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5417038 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2eaa709 ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6d12cc8 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe1ac491 ttm_object_device_init +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa407298c vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf1b4b34b vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x110d745b i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x927c678f i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x0e7e08c5 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x753fcc7f i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pcf 0x66e32ae5 i2c_pcf_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xfb8ec71e amd756_smbus +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x10647889 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x37838b44 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x8ed679ff rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d1f522d rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb93baf0d rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xc0bf4edc rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x05a126ff ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x05c31e2c ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0e4f0eba ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1b0d5e2d ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1b0db485 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3a9cddf9 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6258d828 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6bca778b ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x72ae83fa ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8568c216 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8b1ab379 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8b55d422 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x969f3890 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9e5c1924 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc93a4a3b ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdc5a1084 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf61c5bb0 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00e44f86 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01113b0c ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x027a16f4 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02f58f95 ib_alloc_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x037ba464 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c82fcf mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0832b941 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09a4770f ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b6a3033 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b933f2a ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1180fb86 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f84918 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171f99f1 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a524410 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ec8ecee ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20ec6eb5 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25359291 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x27915aa4 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c4a1419 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2fd9e7dc ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x343ca702 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36f513ab rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38edd711 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39048ba4 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d05501b ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f58ca2c ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40b7fb6a ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42e1dff7 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x435d853e ib_reg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43a3c8a7 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4921f038 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b4b2a7a ib_alloc_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58b37e8f ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a67921b ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5bccbe85 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5da273bc ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f085a31 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5fb9eba0 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62e40165 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65956b92 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x65a6f609 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d229e1f ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6dfa3626 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e7d5c89 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70f0bf90 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7b103f87 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f123d7d ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8505db8b ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8622ea04 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b7b5d98 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x962485bf ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96ce6c46 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9871bea1 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9fda4f8e ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1992815 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4d03598 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad16175a ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf522240 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4a8e4f9 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93318dc ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdfc5ffd ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc04ced3c ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc116b50d ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc933dd8f ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcadcf980 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbca3e40 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf5fed4f ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd682e0be ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc38e008 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde5937b6 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7755a43 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee93e70b ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5e9caba ib_free_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf65a193d ib_rereg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf96fc9de ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb318b3d ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb5dc00f ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbe81984 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x02e2e251 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2a6dc542 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3307c60f ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x33420505 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x40d0b9ce ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4fec5c3c ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x614e26dd ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x67e78878 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8909fb9b ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x946d5d27 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x94a9ebaf ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc59851d3 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd2707f00 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1135e9fb ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5245b4bf ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6e44fd9f ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7357a854 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8001438f ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8c755f22 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc4d49a67 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc71b787e ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf6b6444b ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f847bc ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07cf5a51 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18382f6a ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x184f3575 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x12a9db9e iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3e266e7d iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3ff049f4 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x63fa0b6d iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xad412932 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcba4a14b iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd0f20d41 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe21a9054 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d0b6004 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x22a373bb rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3114a4c3 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3451a2ee rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x42cd4f85 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51ef51bb rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x57c60252 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5aec70e6 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74015d08 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x740782cd rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84a0c9ee rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f5753c9 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ffeffc8 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5696a6e rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbaa85067 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2014b30 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd73e2232 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe399b1e8 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe84dbb20 rdma_create_id +EXPORT_SYMBOL drivers/input/gameport/gameport 0x04a0f5ff gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8e1a2e96 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9e4d502a gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9faad5d5 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa6f412cc gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xaa971676 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xdab4589d __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xde12048f __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xeb1ee5ca gameport_stop_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x201b0487 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x83f9151a input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb5758c18 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xf378eb1b input_allocate_polled_device +EXPORT_SYMBOL drivers/input/misc/ad714x 0x303d5b79 ad714x_remove +EXPORT_SYMBOL drivers/input/misc/ad714x 0x6d913ae3 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xd8df5f81 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xfb5fd411 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x055ed5c9 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x250fab2e sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x360e3448 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x5038ba0d sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7bbb9a85 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb056d116 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfaa002b9 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x20b75712 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbc9dc160 ad7879_suspend +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf3bd1692 ad7879_resume +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x06df5e65 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2ae1cde0 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b4dfbf3 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47d3fc51 capi_info2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47dbfa0a capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4f3b8fcf capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x788d398c capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x937cc36f attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xad1041b8 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc760cfa6 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe32d4262 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe857caf0 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe9f62f29 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed061606 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xef4d809b detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x02e3e246 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4889a6ed b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5f060f01 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x79b4edd9 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8577a6c4 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xad2ac333 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb8d27edd b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcd19f4b5 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd0841dab b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd1bab940 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xda3c3fe5 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe4961eb0 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe806f574 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf2a0bf6a b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf31a9535 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3a630ba4 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x42731822 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5638cc59 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6078f383 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6bb94401 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7a1960e4 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7cff6324 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x84a04c76 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa66aed37 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x17f0d1ef proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x130e887b mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xc8775bf3 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xccb5f6fe mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe0f0d427 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x1ca928bb mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x77398d9d mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x13b9686d hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7f29ce36 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe227344e FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xff2db2cf FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0a619d5d isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x2088111e isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x32b2e652 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x521069b4 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe67caac4 isacsx_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x165844ab isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x2ef2d45b register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x977dc89c isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x003fe86c mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x21119024 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x35bfb44e confirm_Bsend +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3ad652de get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3c3e7fa4 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4355edbe create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5315fd13 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54451388 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dc7400a mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x614ede30 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6d6fa765 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x789ff69f bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83ef5283 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x859361bf recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x88a2b08b mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96309324 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa35d401a mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb015d8c0 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb1e943a4 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb1be179 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc841a664 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc40e42f mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xce81a1ad dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe77ca3c3 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe87943cf mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xff224691 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/dm-log 0x1065e90e dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x748c6143 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xaab4242a dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xcaf19550 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x0da1ec41 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x65bcdd92 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x668ee531 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7cf445b5 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xefc859d2 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xfda3298b dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0xe549367d raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/tuners/max2165 0x881bfb46 max2165_attach +EXPORT_SYMBOL drivers/media/common/tuners/mc44s803 0x49b4ccd7 mc44s803_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2060 0xf4887b54 mt2060_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2131 0xd2ac4412 mt2131_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2266 0x8bde2d1f mt2266_attach +EXPORT_SYMBOL drivers/media/common/tuners/mxl5005s 0xdf02b204 mxl5005s_attach +EXPORT_SYMBOL drivers/media/common/tuners/qt1010 0x777b089f qt1010_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18212 0x3fa927a6 tda18212_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18218 0x8c630fb2 tda18218_attach +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/common/tuners/tuner-xc2028 0xbb37b62d xc2028_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc4000 0xea4cccab xc4000_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc5000 0xe65cb365 xc5000_attach +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x0269bb2f flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x08b139a6 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x27c64a67 flexcop_dma_config +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x42d60065 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x580d3710 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x6ada9296 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x6cbdd14b flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x6d1f0bd2 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x77bfae5e flexcop_dma_free +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x7f57a555 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x895f3522 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x8f5e6660 flexcop_device_exit +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x928cf04d flexcop_device_kfree +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x97bebc72 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x98cd9d37 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xbd60f6e5 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc92e536e flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xe5be2c98 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xec5f0fcc flexcop_dump_reg +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xfbed179c flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x2b740b7e bt878_stop +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x9ebd4ef6 bt878_start +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xb2fc94aa bt878 +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xcba7a8de bt878_device_control +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x077d1343 dst_attach +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x320c132a dst_pio_disable +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x4ffa7986 dst_error_bailout +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x604d0b55 dst_error_recovery +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x70f43ee0 read_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xbbc929e1 dst_comm_init +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xc4c5753e write_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xdd71a19b rdc_reset_state +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xf65cd5ec dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst_ca 0x25822272 dst_ca_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0c4d4a14 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x185e0ca2 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x2bbe69cf dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x31b90c42 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x33578eaa dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x36d2695b dvb_net_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4020a61b dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x403cee74 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4f019817 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x567d6fa2 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x5b12b6fc dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x671a5721 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6ac7c515 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6e18c5d3 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6ed167e9 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7da0d6a6 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7dcf6046 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x86a47daf dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8c054b71 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8c80ed39 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x97384bc1 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x97df6f97 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xb322b19b dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbc0d91e1 timeval_usec_diff +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbf28b8e6 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc4467a1b dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc619b996 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc70aac17 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xd383336e dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xd5cd4f32 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xd78dd33b dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xda03d689 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xde9b7f9e dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xeb649694 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xfd35e8ff dvb_register_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xfe5d6f90 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x1aa9069e dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x2127c458 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x24a81596 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x4699549f dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xa757ffd9 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xb0d2419b dvb_usb_device_init +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xbdbfa192 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x6cd13d75 af9005_rc_decode +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x12a13080 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x329d7330 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x565e65a9 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x6f89db3d dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x9ccb25da dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xa8631c54 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb58f4ab6 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb8c754b9 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb9259bcf dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xe9516ab6 dibusb_rc_query +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xeace6222 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/a8293 0x2659569e a8293_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/af9013 0x4c5583de af9013_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/atbm8830 0xd5237736 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/au8522 0x0858e9f7 au8522_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/bcm3510 0x4b1ce2e2 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22700 0x4522e134 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22702 0x58bd33ee cx22702_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24110 0x0a8d8caa cx24110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x8fc9bd2d cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0xdb9c778c cx24113_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24116 0xa1f80ffa cx24116_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x77d9af88 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0xf654d493 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/cxd2820r 0xde6e88b4 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x1af542d6 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xb18bd5fa dib0070_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xb832730e dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xc70de192 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xdc15e6fa dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x08523b52 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x09ff598d dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x2d59c5b8 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x408a3226 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x5b311143 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x9cf424ba dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xb3609d5e dib0090_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xcb146d1e dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xfdcf3637 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mb 0x04f8f731 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x298ce28d dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x37b44eec dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x99117b99 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xb6c99505 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xd792544c dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xfe3630c7 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x63afc3e1 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x90d32ba6 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xd98f587a dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xe46dae3a dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x006a44d0 dib7000p_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x03ae1b4e dib7000p_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x0cfde463 dib7090_tuner_sleep +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x26c593d9 dib7090_slave_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x4d142fd4 dib7090_get_i2c_tuner +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x4dfeb587 dib7000p_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x53ff885a dib7090_agc_restart +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x594e1704 dib7000p_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x67881464 dib7000p_update_pll +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x723a40fd dib7000p_ctrl_timf +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x74b180d8 dib7000p_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x8903074b dib7000pc_detection +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xb08acd9c dib7000p_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xbc80762c dib7090_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xf68a7550 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x0782dacb dib8000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x26fe17fe dib8000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x35ecc297 dib8000_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x558cb8a0 dib8000_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x58200217 dib8000_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x7250bb91 dib8000_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x86dc9283 dib8000_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x88e21c69 dib8000_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x90f7a88b dib8000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xc39d1d23 dib8000_pwm_agc_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xc3d4451e dib8000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xc4e416f4 dib8000_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xdfcd0445 dib8000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xecbe8c1e dib8000_remove_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x31e45ce1 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x7225bd70 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x7dfa2c4b dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x8fb65444 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xe84496c9 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x3946e087 drxd_config_i2c +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0xaa462f3d drxd_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/drxk 0x0f242c2e drxk_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ds3000 0x5ea2d180 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dvb-pll 0xcf4f00ba dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ec100 0x88c668a7 ec100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6405 0x49407d8d isl6405_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6421 0xbffd094f isl6421_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6423 0xe5462620 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/it913x-fe 0xd3b2bf09 it913x_fe_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/itd1000 0xfb8f12c0 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ix2505v 0x4af8a9fa ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/l64781 0x54a4f105 l64781_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt3305 0x9656387c lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt330x 0xde7d106f lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgs8gxx 0xd3e86cc0 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0xe79c8b55 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0xf23240e9 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp22 0xc51898cf lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a16 0x2f2c9fbe mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a20s 0xa31d82d5 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt312 0x770ae59b mt312_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt352 0xbef32f6c mt352_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt200x 0x5d42c7c6 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt6000 0x96b72d89 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51132 0xc1054253 or51132_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51211 0xe67d5b28 or51211_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1409 0xf81e9769 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1411 0xe8aecf7a s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x5545a88a s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0xa1ad1c88 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s921 0xd290ce09 s921_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/si21xx 0x7a483256 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp8870 0xfe4ba79e sp8870_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp887x 0x59eb0e2b sp887x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb0899 0x2b30bf6d stb0899_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6000 0xd806cf05 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6100 0x3d33776b stb6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0288 0x873ca475 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0297 0xf7b58b43 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0299 0xfef4776c stv0299_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0x537a4e1b stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0xc9b0d634 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0900 0xb4e073df stv0900_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0x4130e06d stv090x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0xf14e5d63 stv090x_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110 0x0dcb2852 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110x 0x3b214388 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10021 0xfa15bb24 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10023 0x35e494e3 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10048 0x97a5b9ab tda10048_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x384a6054 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x587329db tda10045_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10071 0x0e296eb3 tda10071_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10086 0xcec5644f tda10086_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda665x 0x69c47834 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8083 0xcada5c70 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8261 0x6037501f tda8261_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda826x 0x0ffb2e52 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tua6100 0x90cadec0 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1820 0xdf5a353d ves1820_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1x93 0x5a3bca84 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10036 0xa0d944d8 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10039 0x7c9da081 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10353 0x50f1afa7 zl10353_attach +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xf7a2f2eb ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x1d0d1401 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x36ca15cb ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2d5b808e lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3a2972c6 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x42e09846 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa394e220 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xaa37d9fe lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xaac36735 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd6a27454 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe0c6d222 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/rc-core 0x401d354b ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb572fd70 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x28acd6b8 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x72f8f310 bttv_sub_register +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x78826cc4 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x495e4b0c btcx_calc_skips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xad2fe38b btcx_sort_clips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xbbc17422 btcx_riscmem_free +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xc368f8e6 btcx_align +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xcda0ded2 btcx_screen_clips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xe011b08c btcx_riscmem_alloc +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x558c79e5 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x8473cd86 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xc52bde6d cx18_claim_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xdcc84c94 cx18_ext_init +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xf37d4d29 cx18_release_stream +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0x93fa2c21 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0xd1dd8cfb cx231xx_register_extension +EXPORT_SYMBOL drivers/media/video/cx2341x 0x0da7e7ff cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/video/cx2341x 0x0e45778a cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/video/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/video/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5b88faf6 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0x676ed443 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx2341x 0x7dc2bf3a cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/video/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0xffb04ae1 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x5d42318a altera_ci_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x9247b72f altera_hw_filt_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xbabfef8a altera_pid_feed_control +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xd178c0ce altera_hw_filt_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x2b8ffb41 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x2c6ec1f8 cx25821_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x3da47287 cx25821_dev_get +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x471e1cfb cx25821_devlist +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x4b937139 cx25821_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x67cc5b8b cx25821_sram_channels +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x6c1c3860 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x8df98efe cx25821_devlist_mutex +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xb3c574f2 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xbad34c67 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xe2003ce4 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0x02ce4107 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0x45ebcfa1 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x1073c22a cx88_video_mux +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x2706c538 cx88_set_freq +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x44b1c34e cx88_set_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x8d5adead cx88_enum_input +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xa0392306 cx88_get_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xa39790df cx8800_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xac4e53b9 cx88_user_ctrls +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x11551eb6 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x36ca1d0c cx8802_register_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x52983fa0 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x59ab2934 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x7d61f731 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xeb977ff9 cx8802_get_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x0d105022 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x1dffcd51 cx88_ir_start +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x1ecee6b1 cx88_free_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x21ac1403 cx88_set_scale +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x27cb71cd cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x2db59efc cx88_core_get +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x3feb1bc9 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x50f37544 cx88_risc_stopper +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x57d019f8 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x5b5c2f2d cx88_core_irq +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x84b4b1c6 cx88_reset +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x88a9f17e cx88_set_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x8be8f57e cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x992cc3d4 cx88_core_put +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xa03f91dc cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xa216d6e1 cx88_get_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb2134c2f cx88_sram_channels +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xbac3263f cx88_newstation +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xceb7ecaa cx88_wakeup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xd11147e3 cx88_ir_stop +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xd3e65a9f cx88_shutdown +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xda7adffe cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xf8d322bd cx88_vdev_init +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0x43037342 em28xx_register_extension +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0xa01b8bdd em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x05e7727b gspca_frame_add +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x1fc443a5 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x2acc291f gspca_resume +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x5359986d gspca_suspend +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x56caad3f gspca_dev_probe +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x9355ff2a gspca_disconnect +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x957fdc1e gspca_auto_gain_n_exposure +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x0761e20f ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x37c958f7 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x3ec36085 ivtv_vapi +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x4118bd4d ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x717a4d72 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x75c1edf6 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x7e48977b ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x8d2959c2 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x99475a34 ivtv_api +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xa4df6a47 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xcabc5884 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xdb895e48 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x14dfecc6 saa7134_boards +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x1739be33 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x1e8e6962 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x3966d654 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x39c638f9 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x4978611d saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x52740d17 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x55ecdf61 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x5d6ab6ed saa_dsp_writel +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xb74bc576 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xcf32ca6b saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xcfa8f634 saa7134_ts_register +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xfb8f2cd5 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/video/soc_camera 0x192402c7 soc_camera_lock +EXPORT_SYMBOL drivers/media/video/soc_camera 0x527c6cbd soc_camera_host_register +EXPORT_SYMBOL drivers/media/video/soc_camera 0x65d22692 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/video/soc_camera 0xc0e0babb soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/video/soc_camera 0xeec7b99c soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/video/soc_camera 0xfeb8c339 soc_camera_unlock +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x433952ab soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x6951757b soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x85d52182 soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xcb4b96ae soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x72e37682 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x8df9278b tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0xaf25f716 tm6000_register_extension +EXPORT_SYMBOL drivers/media/video/tveeprom 0x9a634045 tveeprom_read +EXPORT_SYMBOL drivers/media/video/tveeprom 0xd222a6e5 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x42c8e001 v4l2_ctrl_next +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x4ed5e0d7 v4l2_chip_match_host +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x50766d69 v4l2_ctrl_query_menu_valid_items +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x50db3c04 v4l2_chip_ident_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x68d5c60a v4l2_chip_match_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x791ab099 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xc0699aac v4l2_ctrl_check +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xf052e6db v4l2_ctrl_query_menu +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x697df8b0 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0xa1404469 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0xe28a8a50 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x69000253 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x9a099758 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xa740fb04 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xaa2b5d8c videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xbdf14098 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xfd85a6e1 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/video/videobuf2-core 0x468b79d1 vb2_querybuf +EXPORT_SYMBOL drivers/media/video/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/video/videodev 0x0703b8c3 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x0d62dcb9 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/video/videodev 0x12726da8 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/video/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/video/videodev 0x26854820 video_devdata +EXPORT_SYMBOL drivers/media/video/videodev 0x26ec4668 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0x2dcd2e5b v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x31c0eaea v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x358d2e4d __video_register_device +EXPORT_SYMBOL drivers/media/video/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/video/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/video/videodev 0x3f3eb3e7 video_ioctl2 +EXPORT_SYMBOL drivers/media/video/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/video/videodev 0x4d360cb9 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/video/videodev 0x5a42e12b video_unregister_device +EXPORT_SYMBOL drivers/media/video/videodev 0x5a6e43cb v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x5ebefe4b v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/video/videodev 0x6787fd67 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x76a48a98 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x7936d64f v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/video/videodev 0x91b1e615 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/video/videodev 0x95911bfa v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x9602749d video_device_alloc +EXPORT_SYMBOL drivers/media/video/videodev 0x96827c2a v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/video/videodev 0xa0761a68 v4l2_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0xad1bf5bf v4l2_ctrl_handler_init +EXPORT_SYMBOL drivers/media/video/videodev 0xafbfbeec v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xb21fe100 video_usercopy +EXPORT_SYMBOL drivers/media/video/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/video/videodev 0xb92fda69 video_device_release_empty +EXPORT_SYMBOL drivers/media/video/videodev 0xbec1c24a v4l2_ctrl_del_event +EXPORT_SYMBOL drivers/media/video/videodev 0xcb96bcf3 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/video/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/video/videodev 0xd2d47cb0 video_device_release +EXPORT_SYMBOL drivers/media/video/videodev 0xd4bf05c4 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/video/videodev 0xd99b07bf v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xda6dc93f v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/video/videodev 0xdb3229be v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xe12e18f8 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/video/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/video/videodev 0xe3719f5c v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/video/videodev 0xe5e46fa8 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xe734bd9c v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/video/videodev 0xe83006ee v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0xe9fd110f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/video/videodev 0xed4d236e v4l2_ctrl_add_event +EXPORT_SYMBOL drivers/media/video/videodev 0xf09c0c86 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/video/videodev 0xf4d3333c v4l2_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xf8b09388 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/video/videodev 0xfa060902 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x3ccf6fcd videocodec_unregister +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x6e3960f5 videocodec_detach +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0xa43cb33d videocodec_attach +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0xfe1e67d1 videocodec_register +EXPORT_SYMBOL drivers/memstick/core/memstick 0x00bc2897 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0b37bd5d memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2efa20f2 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2f65bc7e memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3b5f30a7 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x44b07f88 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4ec47a0f memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8b55417a memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x90810e8a memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb5e7b5f6 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb7456a50 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcf58c4b4 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf3751e4c memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x012df011 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x091dffd0 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x152a2ac9 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17268533 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x19a7f6ce mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x218ea061 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2dd86bcc mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e6cd504 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x38b05462 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5942d7f0 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5aa1ac9f mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f80314f mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x604434d8 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6c977df0 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6f7adea5 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8077acad mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8613be75 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d345915 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab075572 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xab79925d mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae7c47b8 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9e2820d mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc82badea mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc96e2a46 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6c5afbc mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xde33d88b mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe07b206e mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0d28ad6 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfadbfd8b mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x05112d73 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x183a6714 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2959e6ea mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x302cabf4 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3771c07b mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3d75fbc7 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x490b91a8 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x51f37d1d mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x54cc0269 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5aa0b397 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x63ffc054 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6a3d0a93 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70922b61 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x72037d8e mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x750f11c7 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x76424548 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x87d94958 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d9031c9 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa337cc0a mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa555304e mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaff24f00 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbaeef6d3 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde99aa1d mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe10f9257 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe3b90474 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe56dc446 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf926c9d8 mptscsih_proc_info +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x225cc5cb i2o_driver_unregister +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x2a843bef i2o_dump_message +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x30e6875b i2o_parm_issue +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x3f461fac i2o_cntxt_list_remove +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x408c0bbf i2o_device_claim_release +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x51066fb5 i2o_find_iop +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x5c6fd3b3 i2o_parm_field_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x662e81d6 i2o_driver_notify_device_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x67c55400 i2o_parm_table_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x6fd301eb i2o_driver_notify_controller_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x74b129bf i2o_msg_post_wait_mem +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x7fe2d025 i2o_cntxt_list_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x8169867d i2o_device_claim +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xa187a00e i2o_driver_notify_device_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xaeac6a17 i2o_driver_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb4c00dcf i2o_controllers +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb56663c5 i2o_event_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb75668bf i2o_cntxt_list_add +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb9ca26e9 i2o_msg_get_wait +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xc7b29ebf i2o_status_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xcab86a49 i2o_iop_find_device +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xd46e5cfe i2o_cntxt_list_get_ptr +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xdbee6a9a i2o_exec_lct_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xe42945de i2o_driver_notify_controller_add_all +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x17bb1629 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x563ca9c6 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0a0f0fa1 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19f1f7a8 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x304d2b09 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x648f3e82 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c8289a3 mc13xxx_irq_request_nounmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x81e0f888 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x908760bc mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9bc42b70 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa83c26ee mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad06449f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb3dae053 mc13xxx_irq_ack +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc60a9247 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdc5799c mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/tps6105x 0x336cc6e1 tps6105x_get +EXPORT_SYMBOL drivers/mfd/tps6105x 0x40d0e223 tps6105x_mask_and_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0xc653a56e tps6105x_set +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc189e1e6 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xda093774 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x918d2319 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x16c9bf8b c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x3cff588d c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x6a7e401b ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x715f8664 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x1b543855 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x1d2973fa tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x219358a6 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x316b219f tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x49823861 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x498c8544 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x598722a1 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x66332d9c tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x9b6337b2 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xd3e475b8 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xdc9f5c0e tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf0d3bef6 tifm_alloc_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xe5fb617b mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1731d735 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4480dfe3 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x74d9fb2b cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0de5457b do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1addf817 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6b8e87a0 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xfc5d2816 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x32085a82 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x6c679126 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x134e033a simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x01896d29 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xfb4d2772 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nand 0x17d3e1b2 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x4500215f nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x51ef312c nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x6271f853 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x713f0349 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x83389566 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xd4ea85a1 nand_default_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x210735a7 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xb7d08b5b nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xedf498eb nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x1bc6f3f5 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x5ee225e1 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x836bdb72 nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x0050eed9 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x25af4eb2 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x61a44ce1 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xcae8b458 onenand_default_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x17b90a0e arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1cde13ac arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x388aaabb arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6145735e arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x627ca722 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbe8ebf54 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xde77169c arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xee37cf0e arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf1e82f5d arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfe263df7 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x16ee059f com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc90ff1bb com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xfaeb673a com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x004d518e ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x27ae0b9f __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x90fd7105 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9d9f366d ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xace9260c ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb6163271 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd5a3baf5 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd5feffb6 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf421da19 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfb4733ff ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2 0x52334bfc bnx2_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x82ce27d4 bnx2x_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa2eef97f cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x16d09887 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x17248458 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x30824521 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x312a7a19 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b9f6beb cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4036c265 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x63fdc696 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7d4d9b89 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x87a30a96 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8a9e56a5 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8f7b20e2 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb24e5627 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd3a2dbd5 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdccfcb99 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdf8b6459 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe65b30af cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x00697796 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0153f413 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x03c9144e cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2079fdc3 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2679ea1b cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c3719fd cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b78aa04 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x596548d4 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66c62c08 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x680d264f cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x862a02b1 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x926cecba cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbb5f3b84 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd4f18f3 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd52e0e35 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb28c104 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf3a80dbe cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x118fe8d8 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20aa8a04 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaf357d0 mlx4_release_eq +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1dec7e97 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1fe29b22 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x724f1176 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe99674fb hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xed3fb56d hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x05f55911 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x30d3a92c sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x40ac4a4c sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x40c675e6 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x462dfd33 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x46b1adb8 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4d3c77a6 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9157cb6b irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xae87a921 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf79cbc52 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/mdio 0x0f934475 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xb34a7575 mdio45_ethtool_spauseparam_an +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x1a8d5a6c alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xe0f2b94d free_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5f484b6d register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7d74487f pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x89b24191 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x14a33bab sungem_phy_probe +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x284cee47 tms380tr_netdev_ops +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x2f33dd95 tmsdev_term +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x7bd6989d tms380tr_open +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xb61a425b tmsdev_init +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xbcd23793 tms380tr_interrupt +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xd2328794 tms380tr_wait +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xde58aa25 tms380tr_close +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x38da4725 cycx_intr +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x62be23ea cycx_setup +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x66a4c4e6 cycx_down +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x968458a6 cycx_peek +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xb6f383de cycx_poke +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xfe7cd576 cycx_exec +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1bda2cb7 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x37f236ff hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3de3f5f5 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6944a456 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7265669b hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7667fbe4 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xab31e318 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xad2ee6d9 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbc41e4ff unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcf33a406 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd347c52c alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xb9472c07 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x131523ca init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x57b5905a stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xf5335250 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x46e307e9 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e2481d5 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x60dbdc65 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x75a020d7 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x900d9db9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1a9f65b ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xacd74ed5 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaf33ec14 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcc6301a3 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd06ec14c ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd0c3f56d ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe4f2aeee ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40d3a2e4 ath9k_cmn_update_ichannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5d8a0cfd ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7ba6991c ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x809d5831 ath9k_cmn_get_curchannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x91bf0556 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf59eadf3 ath9k_cmn_padpos +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x015e63ba ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01747cb6 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0200c8fb ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x045d1f31 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x059b22e4 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08f5c81c ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0abe6079 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ef4d3d1 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f41b062 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1111d0ca ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1174263e ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1223cb27 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x165d92b4 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x168a5ec2 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x188f3bbb ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19714bdf ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b72a0d7 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1c4e5a05 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ce1736b ath9k_hw_htc_resetinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e16be22 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c419224 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30b37737 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31599b95 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x329b56e6 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a61e5c3 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51a39292 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59160490 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x59383b11 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fc4f17c ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x601f7dae ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63db77da ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67957437 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68005905 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69ea3c58 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fe34de8 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71192c54 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73de7ff5 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x740a225e ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7684809d ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77f8c743 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x789abd97 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79281060 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b333b9b ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ba9544d ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d11d8b2 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84b28776 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89ddafd9 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d75d6d1 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94b021c3 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97070bf2 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d520f63 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0e37369 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa423e5d4 ath9k_hw_gettxintrtxqs +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf06927f ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf62472e ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2a105e2 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5eac78b ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb71ed3d3 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb93a4ad0 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd8da821 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe61c70e ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc04b1c7d ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc169010e ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc248692c ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4d60e01 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc764dbbe ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc772a5d0 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc781f428 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca5da692 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca9c7e7b ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaadfa0d ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb2577d7 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb76c2da ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce16d691 ath9k_hw_proc_mib_event +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf3c0303 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0329abd ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0851b50 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4049df9 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe41d2c07 ath9k_hw_getdefantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe631514c ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8e8aca1 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecc31317 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xecc8a590 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed77dc34 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf32660f8 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5bee2a0 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf66e1eae ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffa08bc2 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/atmel 0x06e099e4 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x6066889c init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xe156cabe stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x0ad20130 brcmf_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x206aced5 brcmf_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0bdcbaf1 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2912622d brcmu_pkttotlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x33571da9 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4e1ac717 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4f88a78b brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4fa14de9 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x53db0265 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x61e3038c brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x869f3615 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9b8cf0f3 brcmu_pktfrombuf +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa56aaa3d brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcac727f8 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd57b190c brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf49f7312 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0728ca30 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0cc11c60 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1f7d3b4c hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x26c882bd hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x276027ee hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2819b88c hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2a8ef8d7 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2f0ae093 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2ffa471c hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3bbdc254 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x49933051 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5da06896 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5ddb3d1a hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7045e092 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7c55889f hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8ccd7cf9 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x99f5b553 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa9700d3b prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xac0e43ee hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xad458ecc hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd32f9def hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdb1446e4 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe4ca8a0f hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf86e21a6 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfa9eb93c hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x22a1a293 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x28542de2 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3adcd9e9 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x48d5eb37 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5b71cd28 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6d02c277 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7c5e3400 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9abf1eec libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa799b8a9 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbf3526c6 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc20564ce libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc4477dab libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc7cde501 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc8dddbfa libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd13997de libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd79156be libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe7937cd3 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xec78b839 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xefa36658 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf04d033a libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xff42048c libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x027019b6 iwl_legacy_rx_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x02a7d117 iwl_legacy_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x02c455bb iwl_legacy_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x067c3b71 iwl_legacy_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x127a272a iwl_legacy_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x12ae5e88 iwl_legacy_send_statistics_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1a28d696 iwl_legacy_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1a6e42ad iwl_legacy_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1ecc3e86 iwl_legacy_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x22a932b6 iwl_legacy_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2443e304 iwl_legacy_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2a271c57 iwl_legacy_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2bb22d18 iwl_legacy_rx_spectrum_measure_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x335d8a6e iwl_legacy_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x34203e49 iwl_legacy_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x35383b32 iwl_legacy_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3799b25f iwl_legacy_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x37d0e9ba iwl_legacy_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x382e2d49 iwl_legacy_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3bb3c9ae iwl_legacy_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3bd2b004 iwl_legacy_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3e316a94 iwl_legacy_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4196ea52 iwl_legacy_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x46ff4c6d iwl_legacy_rx_reply_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x47647061 iwl_legacy_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4a0f391e iwl_legacy_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4bfe6d0e iwl_legacy_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5076fc42 iwl_legacy_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x511d3346 iwl_legacy_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x55ad90be iwl_legacy_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5642c35f iwl_legacy_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6501d8d2 iwl_legacy_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x656f67e0 iwlegacy_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x659d22d0 iwl_legacy_rx_pm_sleep_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6a54bfe0 iwl_legacy_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6aa3e899 iwl_legacy_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6e43c9c5 iwl_legacy_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6ec8d7c3 iwl_legacy_pci_resume +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6fc2fb88 iwl_legacy_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x70a1b08c iwl_legacy_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7181871a iwl_legacy_get_free_ucode_key_index +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x76da7d38 iwl_legacy_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7b4eb5cc iwl_legacy_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7c868d36 iwl_legacy_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7d02e21e iwl_legacy_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x849b52e5 iwl_legacy_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x85c479a9 iwl_legacy_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8739b1fa iwl_legacy_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8780e83c iwl_legacy_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x897131d8 iwl_legacy_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8a15a592 iwl_legacy_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8a402b1b iwl_legacy_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8dc26ad2 iwl_legacy_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8e3e3a4e iwl_legacy_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8f6023d2 iwl_legacy_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x944473b2 iwl_legacy_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x99b7d7f0 iwl_legacy_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9c724315 iwl_legacy_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9dc5e32e iwl_legacy_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9f624761 iwl_legacy_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa1262b70 iwl_legacy_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa36cca34 iwl_legacy_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa5fde381 iwl_legacy_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa618c0c2 iwl_legacy_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa670969b iwl_legacy_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa9b75865 iwl_legacy_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xab19a00d iwl_legacy_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xabe48768 iwl_legacy_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xae019207 iwlegacy_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb7d9093f iwl_legacy_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xbac347bc iwl_legacy_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xbf8f9014 iwl_legacy_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc2703005 iwl_legacy_rx_pm_debug_statistics_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc4af0fdb iwl_legacy_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc7f49fc5 iwl_legacy_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xcaf4a2af iwl_legacy_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd2bd90ee iwl_legacy_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd33b48de iwl_legacy_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd66e1085 iwl_legacy_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xda164d57 iwl_legacy_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xdae9f7fd iwl_legacy_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xddcad556 iwl_legacy_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xdea714b4 iwl_legacy_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe54ed5c7 iwl_legacy_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe7139c59 iwl_legacy_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xec37f6f4 iwl_legacy_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xed1ecc2d iwl_legacy_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xefbb08bd iwl_legacy_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf033a32a iwl_legacy_alloc_all +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf335d8f2 iwl_legacy_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf61369f5 iwl_legacy_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf7ba7460 iwl_legacy_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfc6ef8eb iwl_legacy_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x07849596 __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x1a260580 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x373f37dd __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x482aecd3 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x58e9338a __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x8daa79ba __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xbb7e5c47 __tracepoint_iwlwifi_dev_rx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xbff320f5 __tracepoint_iwlwifi_dev_tx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xf6765781 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x213349e7 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3243d7e8 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x373d509d orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x48c96555 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4a5853a4 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4e1c24e6 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x67cf1f80 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6a1ffcea orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x76391225 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x88696334 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x889e0293 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9d0b87b4 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa60a0257 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xafae40bc orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbff03391 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf41370a5 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf6d23a51 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x0bb9a317 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1a4a5bdd rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1e7cb599 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x246760cb rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x25690f43 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2d9306d8 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3157b292 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3e22d065 rtl92c_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x4b53da63 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x4bce1a62 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x505a8ff2 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x51755480 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x520d9acd rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x61dbfe25 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6cf17ac9 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6e2fa0b8 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6f82333d rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x73121740 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x73ec053d rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7569a72f rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7572550c rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x77557882 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x98a934c4 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x9f72b544 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xae94fb92 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb2ad7fcb _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbac10f8e rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbc113187 _rtl92c_phy_dbm_to_txpwr_Idx +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbdb9dd70 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbdc79c29 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc06f1ac5 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xcd14a1cb _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd82920b0 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe0ea112f rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe1ec3cc2 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe394a08a rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe65ca42f rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe7dc5c55 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xee2741b0 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf5d8c653 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf86e489c _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xfc970ae0 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x02d7e3a4 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x11a4f3eb rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x18d3608a rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2ed82201 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2f85d24b rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x37f58c06 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x4cb88059 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x703b6f26 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x78ce46b9 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x9dae19cb rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xa0f48da9 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xa2a45868 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xad25e316 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xbc380a4d rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xbe1cf935 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd939954b rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xda889ef9 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xddcde267 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xe1ab9788 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xe99f139a rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xed7fd083 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xf4acafa6 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/parport/parport 0x056156ff parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x0981e4cc parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x0a2718fc parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x19f003f9 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x1a3525be parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x1b80c405 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x261739a1 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x289716d8 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x3c09f333 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x476e834d parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x634e15d8 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6573224c parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x680f1593 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x6bd8162d parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x73422b8b parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x75aec67a parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xb0867f84 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xb2208923 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xb32c9abe parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xb599f704 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xbcd3b77d parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xd3df87f2 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xd86cae12 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xe00b70c3 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xe163e85d parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xe25311df parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xe98b138f parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xeeaa7186 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xf9be9607 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xfa623b4e parport_put_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x67ab7bd5 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x6e1b5bb0 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x017af26c pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0f4cfe49 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1490ed71 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2d2c7c2b pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x329e5c42 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3be0ef2c pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x41f27d0e pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x461c68d6 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x55363b83 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6fca6782 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x89d91c37 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x89e4f87e pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8b8600bd pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xae4189dc pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb134d350 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb5e5c6f6 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd321dda7 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xef4fc0c5 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf48665b5 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3a3df329 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5063d465 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x56cb8d30 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x810665e2 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8351e315 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x89d9c3f3 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9c961162 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaa2a8638 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcbfabd55 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd7827ef9 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xe31b76a3 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x4e055b6b pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x5ea4ee0f pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x5c89075d pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x98f8087f pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xacf9cec6 pps_event +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4847565b fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x496ee601 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4a9e46c5 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x65e41eab fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc50f5cec fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe0e4c628 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe8589dca fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf5ddfce1 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xff50e3d5 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01946613 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0654def7 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e018a27 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x113fe2b9 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16651aa4 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1bab2e13 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d134b6c fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22e36a23 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26ce3d07 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2936f9a5 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2a57c6b2 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b94acb5 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fa8de59 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b5d0cb1 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ccf80d1 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x570ee5c5 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x57cd7d87 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b13460c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64bc649d fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b966577 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75cb68b5 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cb68d9d fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e3affc9 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80be508d fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8272d479 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a230220 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b822070 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x926ab1a6 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92ca7d5e fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99738280 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa25cbaac fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa399392b fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3a8da37 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb3534c87 fc_change_queue_depth +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbee0658c fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6d32b16 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc7811e54 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcaf0f7d8 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcecfd240 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd26579d8 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2f0cb1d fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3d908c9 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdac3d97c fc_change_queue_type +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdeee7e3f fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe74f2f82 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf1a7f08f fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf430f418 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfad11d92 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb17602b fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd73429b fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x47a4930c mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x027c039f osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x03fafd90 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x058761dd osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x06fc2b7c osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0753c521 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c11b8c8 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1bdf28e2 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f7fe2d9 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x23beb403 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x25f8d106 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ed7251a osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3221c621 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x49ca7777 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63350470 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63784b80 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x665e8d41 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x87b63dea osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8af47366 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d4be92a osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8fec4dd8 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x91d63fad osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x99851916 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9b156819 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa335e3e2 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xae3ee9ea osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xafadb1c5 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbe3ed21a osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc6d6d695 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf947a48 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd4d713e1 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd739d907 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdaabf2c3 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe27b675b osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf06a4553 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf716e8b4 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf724917b osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1932a478 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x4ae1ca9b osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5e5971b7 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x68fe1f40 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc172a0d0 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd51af2c7 osduld_device_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1bc72de5 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1e7bdc4a qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2bdf57d0 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x301d5c9c qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xab90e374 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd981e0cd qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x544bb985 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x8d6e2413 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xc3c2926e raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1d118639 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3f76773a fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4be080b1 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x57e8387b fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5b97c9de fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x70439ad2 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x87083038 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x87b07901 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8f247d2a fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa1920372 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb36a13fb scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xba0fde2e scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd5b300b2 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x09b9e60e sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x12ffa0a1 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1974321f sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x231907c1 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38eda9f4 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41077542 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5768ee72 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x59e0a310 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c3c7053 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ecb01a6 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60564571 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6787ce63 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c66f9d3 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ccb7933 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x80f064f4 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8ba7d457 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb13fe3c5 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1727a82 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc3b807c7 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc41b05cd sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xca460c13 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcda0a064 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe7aa8c91 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0840d47 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0afd6a9 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfaceaf19 sas_port_delete +EXPORT_SYMBOL drivers/ssb/ssb 0x041f3988 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x04fa7a89 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x0704f69c ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x08294a3c ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x10b2d384 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x24eb0941 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x42447f18 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x596ce94e ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x5c6a71bc ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x6891bd85 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x79ddd057 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x9e6e23b2 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x9ef0852c ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xa0fe923c ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xadc86d9f ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xb2bde4fa ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc2a15c9b ssb_bus_pcibus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd7f0f835 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xd8181d22 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xe0c9a05f ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xe5dbe6e7 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x0089a190 comedi_event +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x18217fe7 comedi_error +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x1db99b2b comedi_buf_memcpy_from +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x2b053e5d comedi_buf_read_alloc +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x31fa1f0c comedi_get_subdevice_runflags +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x41194bff comedi_buf_put +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x48b612d4 comedi_buf_write_alloc +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x4d4f6da9 comedi_buf_get +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x687b4f3a comedi_driver_register +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x8c66c19b comedi_buf_write_free +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xaab3bd33 comedi_buf_memcpy_to +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xb9d68c1a comedi_driver_unregister +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xeba26c2c comedi_check_chanlist +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xeec4e942 comedi_buf_read_free +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xfe7b982a comedi_buf_read_n_available +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x5ea9eac5 subdev_8255_init +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x6290cf9d subdev_8255_init_irq +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x80e99596 subdev_8255_interrupt +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0xb91603f9 subdev_8255_cleanup +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0x1a579634 cfc_write_array_to_buffer +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0x5d83282a cfc_handle_events +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0xfb5698bb cfc_read_array_from_buffer +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x00008788 mite_sync_output_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x13c07d70 mite_setup +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x1badcbc9 mite_release_channel +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x1bd817f1 mite_request_channel_in_range +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x1cc27600 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x1d58180b mite_dma_arm +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x1d8b002e mite_buf_change +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x29da172a mite_setup2 +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x30a9f4b2 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x4b6cbbbb mite_bytes_written_to_memory_ub +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x67073909 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x6d8379d0 mite_unsetup +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x71d4d438 mite_sync_input_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x769a5a77 mite_dma_tcr +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x83bf5f3e mite_get_status +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x986dacbe mite_dma_disarm +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xa389d4a6 mite_devices +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xbf701126 mite_bytes_in_transit +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xc508fdb6 mite_done +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xf00f4c0b mite_prep_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xfb3ba025 mite_list_devices +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0x1cd2df48 subdev_700_init +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0x5510432d subdev_700_init_irq +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0xa61b1489 subdev_700_cleanup +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0xb60715b2 subdev_700_interrupt +EXPORT_SYMBOL drivers/staging/comedi/drivers/pcm_common 0x768cc71a comedi_pcm_cmdtest +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x2a4ed50e comedi_open +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x3fecba61 comedi_dio_config +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x66c5c5df comedi_get_n_channels +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x759bc276 comedi_find_subdevice_by_type +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xdb66ebc8 comedi_dio_bitfield +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xe6532e6b comedi_close +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x079815fe adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x39d1a38b adt7316_disable +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x4c23cfca adt7316_enable +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xaf9ff0e0 adt7316_remove +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x0200c953 iio_buffer_read_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x323dd8ab iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x380d79e4 iio_read_const_attr +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x38c60e71 iio_push_event +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x454b74a4 iio_buffer_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x458ee246 iio_buffer_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x52eec506 iio_trigger_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x58711a98 iio_device_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x5f17fb9f iio_buffer_read_bytes_per_datum +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x6eb75ca7 iio_trigger_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x70955a8e iio_allocate_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x7225f193 iio_buffer_init +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x729e2e16 iio_sw_buffer_preenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x7449aa53 iio_buffer_write_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x7885aa00 iio_trigger_notify_done +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x79f99c9b iio_allocate_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x7ffe787b iio_free_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x81116c96 iio_buffer_show_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x8bbe8dfe iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x95e50c9d iio_trigger_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x968d27d9 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xbd895ae7 iio_buffer_store_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xc0465a07 iio_bus_type +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xc76d593c iio_free_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf27aadfa iio_device_register +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x104e0bf8 kfifo_access_funcs +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x389e855d iio_kfifo_free +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x459c9dc5 iio_kfifo_allocate +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x615d8c85 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8774146f ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x4a40644a iio_sw_rb_allocate +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x832f48fc iio_sw_rb_free +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0xf8c6df83 ring_sw_access_funcs +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xe2ce3037 cxd2099_attach +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x224ec2ba go7007_read_addr +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x3090e293 go7007_read_interrupt +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x3c968d15 go7007_parse_video_stream +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x3cc5dbbb go7007_boot_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xa2e4418d go7007_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xc45d9ab7 go7007_snd_init +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xd0ec4eab go7007_snd_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xd131bfe3 go7007_register_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xec227848 go7007_alloc +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x046223fa ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08e320fe ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c03cb50 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1327862f ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b7a6188 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1fe33880 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2251f1f6 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2576df9d ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x363d05bf ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39c00115 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39e8a380 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a8d59c3 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3da4a861 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48b40896 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a7b0217 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4de7b9f5 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5bae1d9b ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62a3a76f ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b7d91e3 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e2cf918 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75d296dd ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77de6566 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78620ed0 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7bad2f69 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c0cf978 ieee80211_send_probe_requests_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f586998 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f5f6482 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7f9e23bd ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83515863 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86ffc52f ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88de9ecb ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8918b1ab ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x899eb9d9 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8fb9bd69 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x920f493a ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96b0e01f DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9bb63fc7 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f814327 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1a577af DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8e77fc8 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabf2b660 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xac733861 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafc67842 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb683d419 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb81debc5 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb917ea32 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb47b296 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc9888241 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbf397a5 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2fd1fa3 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb1928af ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee49bbcc ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf17887e2 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf67eb641 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd4831ca Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xffb22e66 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/vme/vme 0x00d7e722 vme_lm_count +EXPORT_SYMBOL drivers/staging/vme/vme 0x072f901c vme_master_rmw +EXPORT_SYMBOL drivers/staging/vme/vme 0x0e10859d vme_lm_get +EXPORT_SYMBOL drivers/staging/vme/vme 0x0ec5babe vme_dma_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x268a91e2 vme_bus_type +EXPORT_SYMBOL drivers/staging/vme/vme 0x3c41b955 vme_dma_list_exec +EXPORT_SYMBOL drivers/staging/vme/vme 0x3f68d4cf vme_lm_set +EXPORT_SYMBOL drivers/staging/vme/vme 0x4036ca31 vme_register_driver +EXPORT_SYMBOL drivers/staging/vme/vme 0x43e2f154 vme_master_read +EXPORT_SYMBOL drivers/staging/vme/vme 0x43f8cdf6 vme_dma_request +EXPORT_SYMBOL drivers/staging/vme/vme 0x48b99a13 vme_lm_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x658bcc96 vme_irq_handler +EXPORT_SYMBOL drivers/staging/vme/vme 0x6666140f vme_dma_pci_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0x6f7dcd1b vme_unregister_bridge +EXPORT_SYMBOL drivers/staging/vme/vme 0x72a081de vme_unregister_driver +EXPORT_SYMBOL drivers/staging/vme/vme 0x76bab4d4 vme_master_set +EXPORT_SYMBOL drivers/staging/vme/vme 0x7754663b vme_alloc_consistent +EXPORT_SYMBOL drivers/staging/vme/vme 0x7797a741 vme_dma_vme_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0x7cf35220 vme_master_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL drivers/staging/vme/vme 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL drivers/staging/vme/vme 0x9d279035 vme_master_write +EXPORT_SYMBOL drivers/staging/vme/vme 0xa09d045f vme_get_size +EXPORT_SYMBOL drivers/staging/vme/vme 0xb880ac3f vme_irq_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xbd9d0577 vme_new_dma_list +EXPORT_SYMBOL drivers/staging/vme/vme 0xc784ca7e vme_irq_generate +EXPORT_SYMBOL drivers/staging/vme/vme 0xc8352002 vme_dma_pattern_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0xca1b9d05 vme_slot_get +EXPORT_SYMBOL drivers/staging/vme/vme 0xca78dd60 vme_register_bridge +EXPORT_SYMBOL drivers/staging/vme/vme 0xcb399cec vme_dma_list_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xcc5b0af0 vme_slave_set +EXPORT_SYMBOL drivers/staging/vme/vme 0xd46b646e vme_irq_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xdff905e5 vme_slave_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xe60cbb2f vme_master_get +EXPORT_SYMBOL drivers/staging/vme/vme 0xe61b1e0b vme_slave_get +EXPORT_SYMBOL drivers/staging/vme/vme 0xeccbeafc vme_dma_free_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0xf1b1bb11 vme_free_consistent +EXPORT_SYMBOL drivers/staging/vme/vme 0xf589cbf2 vme_slave_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xfa918dcb vme_master_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xfbc2d421 vme_dma_list_add +EXPORT_SYMBOL drivers/staging/vme/vme 0xfc494e5c vme_lm_request +EXPORT_SYMBOL drivers/target/target_core_mod 0x02595e7c transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x02618a29 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x02648160 fc_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x03830f1d target_splice_sess_cmd_list +EXPORT_SYMBOL drivers/target/target_core_mod 0x05433de6 transport_add_device_to_core_hba +EXPORT_SYMBOL drivers/target/target_core_mod 0x05606152 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x058d359d transport_do_task_sg_chain +EXPORT_SYMBOL drivers/target/target_core_mod 0x063dd708 sas_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x0775aec5 fc_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a638643 transport_init_queue_obj +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c6cb832 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e93b37f transport_generic_allocate_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ed4254c iscsi_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x0fe4fd06 sas_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x1210e059 core_tpg_del_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x15e97a6e core_tpg_add_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2445b1ba iscsi_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x2639fa67 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x3114ac0a transport_subsystem_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x36c3da0f transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x40155dc9 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x422ffe4d target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x45c29155 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x47594c74 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f722835 fc_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x4fb1939e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x54c17502 target_get_task_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x58f50b55 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x593fc9b9 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b45abf1 transport_generic_handle_cdb_map +EXPORT_SYMBOL drivers/target/target_core_mod 0x5b748820 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x61de6437 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6880b475 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x68a1fa22 iscsi_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a0e5df1 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x72407990 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b734bc5 target_fabric_configfs_init +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f12b526 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x817c7acc iscsi_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x8568acad core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x88f085a9 target_fabric_configfs_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x91116cce core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x964aea4f transport_generic_map_mem_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d8ebb08 target_fabric_configfs_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa571cd97 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xae0f77c0 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0be28a0 transport_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb37ccf9c core_tpg_clear_object_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xbbd7543d core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc228cf4 sas_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd42eb2a transport_subsystem_release +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdc58dca transport_complete_sync_cache +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc5436c2 sas_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xceb092b6 fc_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3d6a250 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xd50a3833 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd73ac0bb target_fabric_configfs_free +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4db22f5 transport_generic_handle_data +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6f8a4e2 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf072e572 transport_complete_task +EXPORT_SYMBOL drivers/target/target_core_mod 0xf27b7f1e transport_generic_process_write +EXPORT_SYMBOL drivers/telephony/ixj 0x9ff56861 ixj_pcmcia_probe +EXPORT_SYMBOL drivers/telephony/phonedev 0x6c42c696 phone_unregister_device +EXPORT_SYMBOL drivers/telephony/phonedev 0x815d1054 phone_register_device +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xaa64cf73 sl811h_driver +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xa64a4cea usb_nop_xceiv_unregister +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xd0e43207 usb_nop_xceiv_register +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x39e6b3f2 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3a33134b usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3f0c31a1 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5cedf13f usb_wwan_startup +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5e9230ec usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6036d59b usb_wwan_set_termios +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x84edfc74 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x973d841b usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb4a66926 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb53a5cf6 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc3d2c9fb usb_wwan_disconnect +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcc6afba1 usb_wwan_release +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xddb4fd49 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe1b3c2bd usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf2e68579 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xa3e095e7 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xdc8ad916 usb_serial_resume +EXPORT_SYMBOL drivers/video/backlight/generic_bl 0x366d19ef genericbl_limit_intensity +EXPORT_SYMBOL drivers/video/backlight/lcd 0x043f03ce lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xfbc57534 lcd_device_unregister +EXPORT_SYMBOL drivers/video/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/cyber2000fb 0x51043b72 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/display/display 0x31aeae23 display_device_unregister +EXPORT_SYMBOL drivers/video/display/display 0x453e545a display_device_register +EXPORT_SYMBOL drivers/video/macmodes 0x08ed0b62 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/macmodes 0xe881211d mac_find_mode +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x149df80b matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0xefe09c76 g450_mnp2f +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0xf4c423b9 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x015d7042 DAC1064_global_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x159cac2a matrox_G100 +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x75b30b14 matrox_mystique +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x9202a727 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_Ti3026 0xeaa0552f matrox_millennium +EXPORT_SYMBOL drivers/video/matrox/matroxfb_accel 0x2a3efdc7 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x2824d774 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0xa503c706 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0xe22fc958 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0xeae498a2 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0x608fab61 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0xb842dfb9 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x070ffa66 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x22c2db6a matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x6f6859fa matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x9ab7e2cf matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xabd8e427 matroxfb_var2my +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xe3d55ace matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/mb862xx/mb862xxfb 0x50240ea9 mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/output 0x966db137 video_output_register +EXPORT_SYMBOL drivers/video/output 0xb99d36fa video_output_unregister +EXPORT_SYMBOL drivers/video/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/svgalib 0x0d570be6 svga_tileblit +EXPORT_SYMBOL drivers/video/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/svgalib 0x1b95c56a svga_check_timings +EXPORT_SYMBOL drivers/video/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/svgalib 0x2859a8c5 svga_tilecursor +EXPORT_SYMBOL drivers/video/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/svgalib 0x549b03a1 svga_set_timings +EXPORT_SYMBOL drivers/video/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/svgalib 0x845836bd svga_get_caps +EXPORT_SYMBOL drivers/video/svgalib 0xa05dd142 svga_tilefill +EXPORT_SYMBOL drivers/video/svgalib 0xab692160 svga_tilecopy +EXPORT_SYMBOL drivers/video/svgalib 0xb1cb44db svga_get_tilemax +EXPORT_SYMBOL drivers/video/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/svgalib 0xe7a0575f svga_settile +EXPORT_SYMBOL drivers/video/svgalib 0xec83c473 svga_match_format +EXPORT_SYMBOL drivers/video/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/syscopyarea 0xc2eb9852 sys_copyarea +EXPORT_SYMBOL drivers/video/sysfillrect 0xaee4122f sys_fillrect +EXPORT_SYMBOL drivers/video/sysimgblt 0xccf49498 sys_imageblit +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0xda10bc79 w1_bq27000_write +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0xe2d10729 w1_bq27000_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x49f9e066 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6150a125 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb283487d w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe072bb22 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x0c17db5e w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x143e96b5 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x59717c94 w1_ds2780_io_nolock +EXPORT_SYMBOL drivers/w1/wire 0x0195657a w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x1a5c744a w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x796aa7dc w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xd55c5875 w1_remove_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x672c9d44 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa8d6daac iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xd0efe320 iTCO_vendor_pre_stop +EXPORT_SYMBOL fs/configfs/configfs 0x03038972 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x0f54139f config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x23dac407 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x3b59f6b8 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x70918d3a configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x7b6c6f20 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x93e7a3e2 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xa66306d3 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xad730225 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xb0d8e1dc config_item_init +EXPORT_SYMBOL fs/configfs/configfs 0xc4809d85 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xe9c9d67e configfs_register_subsystem +EXPORT_SYMBOL fs/exofs/libore 0x011500ad ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x0275127d ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x04ed10e5 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x5b9e57a6 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x7a250ebb ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x8429970d ore_create +EXPORT_SYMBOL fs/exofs/libore 0x8ba08977 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x9247af90 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x92fa38a1 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xea0118a1 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xff170bea ore_check_io +EXPORT_SYMBOL fs/fscache/fscache 0x07d9b576 fscache_wait_bit_interruptible +EXPORT_SYMBOL fs/fscache/fscache 0x12e55328 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x195cd512 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x1a44f749 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2ea14e05 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x30e3dcb7 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x33c322dd __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x34e94f10 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x35c2f6cc __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x3c4d2306 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x3fc23318 fscache_wait_bit +EXPORT_SYMBOL fs/fscache/fscache 0x439a21c9 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x5524665c fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5ecc3e9f __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x6066cbb7 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x619826d8 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6529532c fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x7038c98a fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x71e0a3e8 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x74e8df3a __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x84d70277 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x86f8894f fscache_object_states +EXPORT_SYMBOL fs/fscache/fscache 0xa4a3b6b1 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xa88ef69b __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xaaf7eed6 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xafaa177a __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xc282e317 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xcceb3c43 fscache_object_work_func +EXPORT_SYMBOL fs/fscache/fscache 0xd5d43fa1 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xf2d4703f fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf5a7f1df __fscache_update_cookie +EXPORT_SYMBOL fs/nfsd/nfsd 0x01f7fba7 nfs4_acl_nfsv4_to_posix +EXPORT_SYMBOL fs/nfsd/nfsd 0x35e33c1e nfs4_acl_write_who +EXPORT_SYMBOL fs/nfsd/nfsd 0x5a157ae4 nfs4_acl_get_whotype +EXPORT_SYMBOL fs/nfsd/nfsd 0x940bea20 nfs4_acl_posix_to_nfsv4 +EXPORT_SYMBOL fs/nfsd/nfsd 0x96ce9bb4 nfs4_acl_new +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x3fc1f47f qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4fe62abf qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa156dd8e qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xaa349091 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xd9e8fb3e qtree_delete_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x651c2313 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0x276c7e62 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc7 0xc086bfba crc7 +EXPORT_SYMBOL lib/crc7 0xd80c3603 crc7_syndrome_table +EXPORT_SYMBOL lib/crc8 0x3e77b340 crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0b8cd64b lc_get +EXPORT_SYMBOL lib/lru_cache 0x11eee1fd lc_changed +EXPORT_SYMBOL lib/lru_cache 0x28f9e0a2 lc_del +EXPORT_SYMBOL lib/lru_cache 0x2b057863 lc_find +EXPORT_SYMBOL lib/lru_cache 0x4bf46891 lc_reset +EXPORT_SYMBOL lib/lru_cache 0x593c02b9 lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x66102805 lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x701077eb lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x8beca162 lc_set +EXPORT_SYMBOL lib/lru_cache 0x9d076b51 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0xc3aca114 lc_create +EXPORT_SYMBOL lib/lru_cache 0xdb6636f0 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xdd13ac3a lc_put +EXPORT_SYMBOL lib/lru_cache 0xf5a40297 lc_seq_dump_details +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x315c65fd zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x48034724 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xaf64ad0d zlib_deflate +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf741c793 zlib_deflateEnd +EXPORT_SYMBOL net/802/p8023 0x0d6de8bc make_8023_client +EXPORT_SYMBOL net/802/p8023 0xec72ff6e destroy_8023_client +EXPORT_SYMBOL net/9p/9pnet 0x006eb262 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x02b4d307 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x047dfaa2 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x05f31bab p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x0dfda9ec p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x1002b9e7 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x1e5942e4 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x2278e55e p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3ca9f129 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x40511a4d p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x52c4b50e p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x564cdedb v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x5bfadecf p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x5f1b180b p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x6fa0263c p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x7675ef56 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x7740341e p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x78b140d6 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x864297d0 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x8b71006b p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x8bcbc028 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x8e0bbcb6 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x9357384c p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x9707769d p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x977a0030 p9_nr_pages +EXPORT_SYMBOL net/9p/9pnet 0x9c964743 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xa711a5e5 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa7b08419 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xb45d127a p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb6f29ca7 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xbefef1c0 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc880360c p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xcfabde37 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xd0832a8d p9_payload_gup +EXPORT_SYMBOL net/9p/9pnet 0xd111b269 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd3a381b5 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xd92a7244 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xe06edf65 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe5fd385a p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xe9de3b65 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xedcf6db2 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xef785934 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf95b6d0d p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfb8b81e7 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/9p/9pnet 0xffc9a905 v9fs_get_trans_by_name +EXPORT_SYMBOL net/appletalk/appletalk 0x10e3473b atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x2897b2e1 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x6f39f990 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xeb001408 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x07c23f54 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x33f7e5b3 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x61dd937c atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x6ef995ae vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x72aa623f atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x93136f41 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb95ab676 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xc244a5c5 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xc50fb318 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xc764e544 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xddcf2c7e register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xdec37016 atm_charge +EXPORT_SYMBOL net/atm/atm 0xe2fd14fb atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf613fc44 atm_dev_register +EXPORT_SYMBOL net/ax25/ax25 0x026c1368 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x0479d44f ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x10eeed92 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2b0fedd0 ax25_hard_header +EXPORT_SYMBOL net/ax25/ax25 0x379a18ff ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x40db4cc8 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xab716a2e ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xbbde2b99 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xeda1e88e ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xedd24052 ax25_rebuild_header +EXPORT_SYMBOL net/ax25/ax25 0xf752083d ax25_linkfail_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x130be9f3 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x163547c3 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x17c45f1c hci_register_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21970416 hci_conn_hold_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22a77c62 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x273cb95c hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b0fb22a bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d379f9a bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x30be2c35 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3813e9e0 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x399b8b5f hci_conn_change_link_key +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e20b626 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3e9bf433 hci_find_ltk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f45c80c hci_find_link_key_type +EXPORT_SYMBOL net/bluetooth/bluetooth 0x42e97d3b hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x44bdfef4 hci_le_conn_update +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48270fcd bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b599289 bt_printk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ff1d1d8 hci_conn_put_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x56b9a0ab hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x577aa76a hci_le_start_enc +EXPORT_SYMBOL net/bluetooth/bluetooth 0x760cc0e6 hci_unregister_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x761a3aad hci_le_ltk_reply +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79058a07 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x82011c3d hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8255e6e0 hci_send_sco +EXPORT_SYMBOL net/bluetooth/bluetooth 0x90e50a26 hci_recv_stream_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x92c7126f hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x960bdb04 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa5e5fa5e bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb85e5ff2 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbaf256e6 hci_conn_check_link_mode +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd7976b8 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc18da048 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2066af0 batostr +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3e6b5d0 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7ae8401 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd883abe3 hci_send_acl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda4e51c9 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf21acf4 hci_recv_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe4fbb2e8 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf19294db bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf33b0bc9 hci_connect +EXPORT_SYMBOL net/bridge/bridge 0xf4f11a3c br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x19c130b6 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x31c91146 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x62adec3e ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x17be22c4 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x35b49017 caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x4291a35a caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x504da5e8 cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x5807d88d caif_free_client +EXPORT_SYMBOL net/caif/caif 0x63e9812a cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0xa3f23878 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xbfc166d4 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x0677d71e can_rx_register +EXPORT_SYMBOL net/can/can 0x1356f722 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x6368e83d can_ioctl +EXPORT_SYMBOL net/can/can 0x6c1f81b0 can_proto_register +EXPORT_SYMBOL net/can/can 0xb1812e3f can_send +EXPORT_SYMBOL net/can/can 0xe67e9f2d can_rx_unregister +EXPORT_SYMBOL net/ceph/libceph 0x00e84e16 ceph_osdc_init +EXPORT_SYMBOL net/ceph/libceph 0x0191bb3a ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x04da962d ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x061106ea ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0d495c3e ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x0e3d0216 ceph_calc_object_layout +EXPORT_SYMBOL net/ceph/libceph 0x112942cb ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x117c39d7 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x11c6c263 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x197effcb ceph_osdc_release_request +EXPORT_SYMBOL net/ceph/libceph 0x1ad6527b ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x1b3f5332 ceph_messenger_destroy +EXPORT_SYMBOL net/ceph/libceph 0x1bf1158c ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x20d1a1eb ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x238878de ceph_osdc_wait_event +EXPORT_SYMBOL net/ceph/libceph 0x2519116d ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2cd18c2f ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x2f11d875 ceph_monc_create_snapid +EXPORT_SYMBOL net/ceph/libceph 0x323e8b27 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x33f2d647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x3a13aabd ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3e1f462a ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x3ead21ba ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x400da38a ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x458515eb ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x46232482 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x568de85d ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5cac62bd ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5cd578cf ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6c177703 ceph_osdc_unregister_linger_request +EXPORT_SYMBOL net/ceph/libceph 0x7094a393 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x74daee66 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x77692acb ceph_msg_last_put +EXPORT_SYMBOL net/ceph/libceph 0x7791813f __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8647140d ceph_calc_raw_layout +EXPORT_SYMBOL net/ceph/libceph 0x890f2645 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x91742005 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x91f3eda7 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x940bab91 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9a3a19c3 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa0097b4a ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xa4f36469 ceph_messenger_create +EXPORT_SYMBOL net/ceph/libceph 0xa887c2ed ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xad8999f7 ceph_copy_page_vector_to_user +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5d1da8c ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xba95d3cb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xbe90bbb4 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0xbe951f76 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xc0217cbc ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xc47dc7bb ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc80d4bd1 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcc7ba7c6 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xd01b645a ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd64bec4b ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xd772708c ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xde0087f0 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xdf0ce3b7 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xe17d716c ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe66da465 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe79b19a7 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xe891b649 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xf6bfa132 ceph_osdc_stop +EXPORT_SYMBOL net/ceph/libceph 0xf8483637 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfb211969 ceph_con_keepalive +EXPORT_SYMBOL net/ieee802154/ieee802154 0x05d66b9c wpan_phy_alloc +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0b68b7f6 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x28021351 ieee802154_nl_assoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x28f9bba7 ieee802154_nl_scan_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2daeb310 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3ceda587 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x76d81c16 ieee802154_nl_assoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb0ec7c76 ieee802154_nl_disassoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xbf5cbc1d ieee802154_nl_disassoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc51e3ea1 ieee802154_nl_start_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd53a61d2 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xda15e320 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xde5c0be1 ieee802154_nl_beacon_indic +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x72f84cfd arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x80625119 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa9a22160 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x7a9e865e ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x9c80aece ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfe4f38fe ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x034195a1 nf_nat_protocol_register +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x8de10169 nf_nat_protocol_unregister +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x987417f7 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xb807b4cc nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xcba006d1 nf_nat_used_tuple +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xd0bc6763 nf_nat_setup_info +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xdaa1f33a nf_nat_follow_master +EXPORT_SYMBOL net/ipv4/tunnel4 0x1b1c9680 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x44d121f2 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0b6dfdf7 ipv6_find_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x27e9841d ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8bddf33 ip6t_ext_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xe8d708d1 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf7e9cb79 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x9845a4bf xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xe462abe0 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x91cdb1d2 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xbc2c917c xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1172ce1c ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x20191713 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x53077549 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5af671d6 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa24546c4 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb0580e34 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf5a5e656 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfc3b021f ircomm_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x01dbeb0e irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0bab6037 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x12aebbe0 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x14493cb6 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x1acfa39b irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x2036ad06 irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x21e02f42 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x22da8954 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x23a2eee7 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x277318e0 irlap_open +EXPORT_SYMBOL net/irda/irda 0x31ede9ff irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x359de411 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x38a20e5b irda_debug +EXPORT_SYMBOL net/irda/irda 0x3b0a2ab6 irias_find_object +EXPORT_SYMBOL net/irda/irda 0x3b9bdefe irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x428321fa hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x483f3070 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x48d17824 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x4c0b006a irttp_dup +EXPORT_SYMBOL net/irda/irda 0x535ab842 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x536fb835 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x59e7b5c4 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x5af705d7 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x5dfb6b64 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x62acf28c irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x648c7478 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x76490b0b alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x770157d9 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x775399eb proc_irda +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7d54adaf irias_new_object +EXPORT_SYMBOL net/irda/irda 0x7ff509a2 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x8cd99be0 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x993ad14b irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9a45b66a irlap_close +EXPORT_SYMBOL net/irda/irda 0x9e326eb3 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa0f066b3 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xa370c681 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xa79913b0 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbabe8665 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbce1fd0a irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc0bee29c hashbin_new +EXPORT_SYMBOL net/irda/irda 0xc546415f irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xd166cfa6 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xd702a74d iriap_open +EXPORT_SYMBOL net/irda/irda 0xdbd25583 iriap_close +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/l2tp/l2tp_core 0x34a51c28 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x196d9414 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x1fd66656 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x31ca1cd8 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x6fe09714 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x7598567d lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x7f6c6324 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xc8efc648 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xed20d342 lapb_data_received +EXPORT_SYMBOL net/mac80211/mac80211 0x00e1a8ae wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0518d57d __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x05247095 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x08b888bd ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x08fa14da ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x0ea08ba0 ieee80211_get_operstate +EXPORT_SYMBOL net/mac80211/mac80211 0x0eef3403 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0f1b784b ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x10ce1fe1 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x17c9b710 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x198e8d3c ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x1df5515d ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x253b346d ieee80211_alloc_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x25aa7460 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x2c1d2eec ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x372dcec6 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x39c8ae01 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x3b967b4b ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x4782d795 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x4a5411f9 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4fabad3d ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x4fb39646 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5c28cca5 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x5e3b77d7 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x61f23dac ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x63915eba ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x6503ef71 ieee80211_sta_eosp_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x650feb07 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x67542a52 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6d4d7e44 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x734dd468 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x7426b6ad ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x746bf843 ieee80211_rx +EXPORT_SYMBOL net/mac80211/mac80211 0x75379bef ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x7f8d237d ieee80211_napi_schedule +EXPORT_SYMBOL net/mac80211/mac80211 0x8173a67e ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x848051da ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x84b3c8c3 ieee80211_disable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x8f47dd3c ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x9937669b ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa4241970 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xaa157485 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xad227fa1 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xb3555129 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xb50852ae ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb6e0c311 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb9c1d677 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xba0ccd80 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xba0eedcb __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xbfff193c ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc2e9c744 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xc47f96ce __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc7e9782e ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xc9a8ea4d ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xd11d552b ieee80211_napi_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xd56b42cd __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd7448e82 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd9bcbb93 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xda14c5a4 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xdbe01809 ieee80211_enable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0xddb47d52 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe09462b9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe26b23c3 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe7a0eb02 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xed88b02f ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf76571e2 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xfe2d68fb ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xff6d87aa ieee80211_rts_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x04c2dc1e register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0e39a117 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x18f3e849 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x428be55d unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x634bb82b register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6433eae9 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d59c8af register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6e591ad4 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa17215d7 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa1dbc2d8 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa5b6532e ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd93b26a7 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xea9ebf35 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xee89f4de unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfcd57756 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x295cd706 __nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x31c7378b nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x8a74d9c2 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_proto_gre 0xcebe5a57 nf_ct_gre_keymap_flush +EXPORT_SYMBOL net/netfilter/x_tables 0x05a35999 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x08c473b7 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x1abbe93c xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x22e01fea xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x3b7700d2 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x74d83e06 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x78fd87aa xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x8526a884 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa475c285 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xb28f5ef1 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xb943e3d4 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xbc32997b xt_register_matches +EXPORT_SYMBOL net/nfc/nci/nci 0x1bf5d04d nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x343df822 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x35b07ca7 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x9ece4b23 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xb6ab30e0 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nfc 0x0d976d02 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x15936aa3 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x2cf1913e nfc_printk +EXPORT_SYMBOL net/nfc/nfc 0x4557dc4f nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xb50952c5 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xbb9c0c5a nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xbce6a7fa nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xc32a48c0 nfc_alloc_skb +EXPORT_SYMBOL net/nfc/nfc 0xe4a12cea nfc_targets_found +EXPORT_SYMBOL net/phonet/phonet 0x2640cd95 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x61054343 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x6393d903 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x7b357581 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xbb2eaa36 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xc89ce1fa pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xd15c088f phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xd90d79cc phonet_proto_unregister +EXPORT_SYMBOL net/rds/rds 0x1c9be661 rds_str_array +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x07863eab rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x31ffa997 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x36fde34d rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3954ea95 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4fbf7208 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x649170ce rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x75d5346d rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7c5ef3c0 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8bcce793 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaee78e61 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc286486f key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc5f7225e rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe01f5c71 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3790feb rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf6bb0881 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe392c155 svc_pool_stats_open +EXPORT_SYMBOL net/wanrouter/wanrouter 0x0ebe03d1 unregister_wan_device +EXPORT_SYMBOL net/wanrouter/wanrouter 0x62725927 register_wan_device +EXPORT_SYMBOL net/wimax/wimax 0x8b8d7999 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xd8667ab8 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x0758988c cfg80211_send_unprot_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x077c71d6 wiphy_new +EXPORT_SYMBOL net/wireless/cfg80211 0x08401b27 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0f790af0 __cfg80211_auth_canceled +EXPORT_SYMBOL net/wireless/cfg80211 0x0f828a89 cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x114042e7 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x15bc4904 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x18550488 cfg80211_send_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x23d87744 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x2edf7d69 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x2f7d808f cfg80211_send_unprot_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x368445cf wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x3bd19ab5 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x45cf2555 ieee802_11_parse_elems_crc +EXPORT_SYMBOL net/wireless/cfg80211 0x47bfd0e6 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4a3a5f97 __cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x4cd4b8bf cfg80211_testmode_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x4d6a868c cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x514f5ede cfg80211_del_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x55ad7c66 cfg80211_send_rx_auth +EXPORT_SYMBOL net/wireless/cfg80211 0x5661cd94 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5708961c cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x5b273154 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5dc9f59d ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x5fa317dd wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x63d19d18 __cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x6583f125 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x7513e94e ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x79113db8 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x791a7eb9 cfg80211_testmode_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7b3cfb9f cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x81092452 cfg80211_send_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x88870466 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x8a149826 cfg80211_inform_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x90cf908b cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x92cff9fb cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x961fdcf8 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x984520f7 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x99679956 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x9bfe4d50 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xa1b30d58 cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0xa694f909 cfg80211_get_mesh +EXPORT_SYMBOL net/wireless/cfg80211 0xa9bd4495 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xabcf8c23 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xb2d0c895 cfg80211_testmode_reply +EXPORT_SYMBOL net/wireless/cfg80211 0xb308528f wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xb3419f02 cfg80211_testmode_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb8a9aa23 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xbae2422c ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xbec6a98f ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc8018f6d cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xc8462547 cfg80211_inform_bss_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xc9f80a52 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xd06a0e14 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdaf5866e cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xe5c435a3 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xf0e20617 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xf1ab370d __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xf4643968 cfg80211_send_rx_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xf49ede31 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x2388f507 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x2d0f99e5 print_ssid +EXPORT_SYMBOL net/wireless/lib80211 0xa9141677 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xca3b11ad lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xda428147 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xecc29875 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xffaa9d4c lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xdba226da ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xe459dd57 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x858f3136 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x8ff06a95 snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb699ffe4 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xd5f557f8 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3a57f235 snd_seq_autoload_unlock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3e24e4af snd_seq_device_register_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x5aa776a6 snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xb90668b2 snd_seq_autoload_lock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xc622fb29 snd_seq_device_unregister_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2b51b084 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x350963b4 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7f62d029 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x83914b9a snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x92ee6bb0 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x9e7d3f0f snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xbc141dfc snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf2bf1549 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x9dc3e6f9 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x00b53304 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x019b07a6 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x0505c2c3 snd_cards +EXPORT_SYMBOL sound/core/snd 0x0aa2934d snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x0c62f9e3 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x0dba054d snd_device_new +EXPORT_SYMBOL sound/core/snd 0x12100197 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1b486678 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x25392de5 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x32444a76 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3cc8624d snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x3efa88ee snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x41dc4896 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x42b5e48e snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x492c030b snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x49cdf9d7 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4a78da29 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x4b015768 snd_iprintf +EXPORT_SYMBOL sound/core/snd 0x503dc520 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x518bb7f8 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0x5d825c63 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x6726d4d9 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x6b7d58b9 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x6be3e4cd snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x6fbc50ff snd_register_device_for_dev +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x79619b94 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x7ff1334f snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8565a4fc snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x88023884 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x8bd526e5 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x937ce6e2 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x93dd7db6 snd_add_device_sysfs_file +EXPORT_SYMBOL sound/core/snd 0x96093556 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x987055a5 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x9e4f6f16 snd_card_create +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa06ff8ca snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa24819eb snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xa32eea4d snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xa58b252c snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xaa3f07ae snd_card_proc_new +EXPORT_SYMBOL sound/core/snd 0xab0aac58 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb64464d3 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xb9d2dd55 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xcc71a439 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xd5145a18 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xd981e2bc snd_info_register +EXPORT_SYMBOL sound/core/snd 0xd9feabbe snd_card_free +EXPORT_SYMBOL sound/core/snd 0xdc6d91a8 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xe243dde3 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0xea4578d7 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xf6a2decb snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xfd766fd1 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd-hwdep 0x8cb18629 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-page-alloc 0x19cc2ce3 snd_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x24c50da5 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-page-alloc 0x77374dda snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x782e5762 snd_dma_get_reserved_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0xc36c2f8b snd_dma_reserve_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0xc6829020 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0xfc81f987 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x03d79d52 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0e3efce4 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x11ec0115 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x1912a453 snd_pcm_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x21e47e90 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x2617b387 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x2dc90c26 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x2e712c97 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x3859e68c snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x393b9041 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3d367409 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x3ef0259a snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x452374af snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x48b70e40 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x4c85d670 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x4d6a0122 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x5616f541 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x5b90a5fa snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5e8769e5 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x623030ab snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x64396559 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x812641c0 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x850c0f4a snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x8a3a8006 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x90035796 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x9d5ae47e snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x9e3aeacd snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x9e6aefd8 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xa36367d1 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa417e0a3 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xa47ca651 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa9adc229 snd_pcm_link_rwlock +EXPORT_SYMBOL sound/core/snd-pcm 0xb355a238 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xb66cc46b snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb8679f98 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xb8b19778 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbb2700d6 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xbe5ccc1b snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b9b8b8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xda06198a snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xda075dbe snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe51a1c64 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe8fb2d16 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xf2c8d621 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xf3797152 snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xfaaef2bc snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xfc0efe35 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-rawmidi 0x10bd9909 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1d3a40db snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x27fcfc3f snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2869c05a snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x337e51ca snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x342a0ea9 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x36cf199e snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x44a41d34 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x568d045a snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x65f2439e snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9a826e9c snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb0bdc80e snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbcc79c93 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc331e1d5 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc3497dfd snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd620e080 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf564a4e0 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-timer 0x018ff4f2 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x0c2d45ac snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x511d61c6 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x60dfc4ab snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x788f1204 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x86556318 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x9888c855 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x9d8098cc snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xb24cedfa snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xc4a3a7e3 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xd256827e snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xdab93986 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xfaf80457 snd_timer_stop +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xa65013cb snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x008ca879 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x165aa1c1 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1e54dbe9 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4d9e1a0c snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x699d76ee snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcd16d621 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xda6c6d00 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfd8e4acf snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfe055def snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1add9f6c snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x21a8cd9a snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2f5b78f9 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x39c63dd3 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4490af1b snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5d4f63ae snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x61439351 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x87e11521 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf0ca7710 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x12e8a1bd amdtp_out_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x152dc070 amdtp_out_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x15510c78 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1c8cfbcd amdtp_out_stream_set_pcm_format +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x21b5fe6d fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3037802f cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x32066513 amdtp_out_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c33892b amdtp_out_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c3edc6e amdtp_out_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3cea4a76 amdtp_out_stream_set_rate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x41fc8400 amdtp_out_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x477744c4 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5b17763d fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x817adb7d fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x92ad1c3d cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9e435e4e fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa586877a cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb01821d4 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb959d7e2 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7e06e3b fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xca11daa2 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd74bc7a rcode_string +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe98635bb cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf94d1591 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf986567a amdtp_out_stream_get_max_payload +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x54fb496b snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7f32172a snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9f3f2a08 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb2c30c13 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe7418afa snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf9a87cdb snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x14018517 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2304a109 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x9326bac2 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa7b3f6f9 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc292f506 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc3834bee snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0babc884 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x28839f6a snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x51a64c0d snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf3d51130 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x239b895a snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x6831f1e4 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0x0334bc13 snd_tea575x_exit +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0x099e0f6c snd_tea575x_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x1a3cc9d5 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2c3dba25 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x92cfd0dc snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9522d188 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xa1a6f324 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0e5599d7 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x16c8e9ba snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x17898d8c snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1d7a6a30 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x234cd5eb snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x488f8bfb snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0cbf9f43 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x12700770 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x12e09772 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7d5ec761 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x81c7f98d snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x81d3d8d9 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9226986a snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb318ad75 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbaa43e13 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xca0e4b01 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x1dfa89c0 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x324d1f1c snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x7270f14e snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4660a340 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x48eb5b7d snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4e26bee0 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d9b0a68 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7d71abda snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x901688ea snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x91a7677a snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9e9a1c14 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9f908289 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9feba8e9 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa81806f7 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc13cee00 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc7550e58 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc98eb625 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcab24d3a snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe6dc6f1b snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xee007ded snd_ac97_read +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x9152b873 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1c5de3f6 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3df34b96 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x49a071a0 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x72dc8cb4 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8aa16ed1 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd0f1bbf8 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe0f4a1fd snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xeaac7e6e snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfb0ed74c snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/hda/snd-hda-codec 0xbdc19a3b snd_hda_parse_generic_codec +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xaa85680f snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xaea51536 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xaf7b6542 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x274bfb1c oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x32ddd407 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x37a23bb2 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x41549e55 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4ee89f7d oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x56bcfebe oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5f5db3ae oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6172cf8f oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x62c3d907 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7507425c oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7fc9d6a2 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9d368746 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9d9fdc62 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa0a5c803 oxygen_pci_resume +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb166bd7d oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba547c68 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd45658ee oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdc3b9679 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdf174d39 oxygen_pci_suspend +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe66fa750 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf8cdf96b oxygen_pci_remove +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x17de2294 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x662804a5 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x675ba0a9 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x97d5f2c1 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa25645c7 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soundcore 0x0b962318 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x8c41f8d6 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd88ce212 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xeedffa47 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xf3172ec9 sound_class +EXPORT_SYMBOL sound/soundcore 0xfc32fab3 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x002f0fc7 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0f2664ec snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1f83c6b1 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x253d8ba7 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x659b0284 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xecac24d5 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/snd-util-mem 0x19f80ac0 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x200c06c8 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4c241e69 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4f4b5c34 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6df99564 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7b6d8e43 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x8db67a12 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xc77c04fa snd_util_mem_avail +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x395916b2 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x21c93e20 dm_mem_cache_alloc +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x35c95b1b dm_mem_cache_client_create +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x86e5acf9 dm_mem_cache_grow +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x920a7a41 dm_message_parse +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xa43471b6 dm_mem_cache_shrink +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xbe25b159 dm_mem_cache_free +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xd55b290c dm_mem_cache_client_destroy +EXPORT_SYMBOL vmlinux 0x00000000 softirq_work_list +EXPORT_SYMBOL vmlinux 0x002de09c vfsmount_lock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x0066b8de __register_binfmt +EXPORT_SYMBOL vmlinux 0x0071c9b6 input_flush_device +EXPORT_SYMBOL vmlinux 0x007ea314 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x00801678 flush_scheduled_work +EXPORT_SYMBOL vmlinux 0x0083d0cd pci_iounmap +EXPORT_SYMBOL vmlinux 0x00b193b2 simple_rename +EXPORT_SYMBOL vmlinux 0x00bc4353 cdev_init +EXPORT_SYMBOL vmlinux 0x00dfa8cf pci_release_region +EXPORT_SYMBOL vmlinux 0x00f42699 files_lglock_global_unlock +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x010527cf end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x01093ca5 cpu_info +EXPORT_SYMBOL vmlinux 0x012e2887 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x0131f66c eth_header_parse +EXPORT_SYMBOL vmlinux 0x0143c863 simple_link +EXPORT_SYMBOL vmlinux 0x0147e734 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x016a08fd rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x016b9970 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x017cfa61 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x018d03c9 dquot_file_open +EXPORT_SYMBOL vmlinux 0x01902adf netpoll_trap +EXPORT_SYMBOL vmlinux 0x01c36fb3 bio_integrity_set_tag +EXPORT_SYMBOL vmlinux 0x01d19038 acpi_enable_subsystem +EXPORT_SYMBOL vmlinux 0x01e20278 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x01e9bae7 journal_dirty_data +EXPORT_SYMBOL vmlinux 0x01f26ead dev_addr_flush +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02266ac5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x023a47ce generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x024342fe inode_get_bytes +EXPORT_SYMBOL vmlinux 0x0245f397 cdev_alloc +EXPORT_SYMBOL vmlinux 0x025e393d ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x029444f0 native_read_tsc +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02c21bdb neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x02d81845 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x02f2f459 ida_get_new +EXPORT_SYMBOL vmlinux 0x02f69533 __nla_put +EXPORT_SYMBOL vmlinux 0x030b5a45 mmc_card_awake +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0338b6c0 nf_register_hook +EXPORT_SYMBOL vmlinux 0x034120cb __netdev_printk +EXPORT_SYMBOL vmlinux 0x034c6e82 alloc_trdev +EXPORT_SYMBOL vmlinux 0x034f9e73 param_ops_byte +EXPORT_SYMBOL vmlinux 0x03507c4e security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x036359ee unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x036a5b21 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x036cc545 single_release +EXPORT_SYMBOL vmlinux 0x03743c9a scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x039a25ce genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x03a88d59 skb_append +EXPORT_SYMBOL vmlinux 0x03b580eb wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x03c06156 bitmap_fold +EXPORT_SYMBOL vmlinux 0x03edf603 mdiobus_read +EXPORT_SYMBOL vmlinux 0x03f309c6 pci_request_regions +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x042732f3 dquot_enable +EXPORT_SYMBOL vmlinux 0x042d9342 setattr_copy +EXPORT_SYMBOL vmlinux 0x04726b25 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04cb22c4 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x054434d6 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x05618f80 skb_pull +EXPORT_SYMBOL vmlinux 0x05751525 bio_sector_offset +EXPORT_SYMBOL vmlinux 0x05ca6f6d proc_create_data +EXPORT_SYMBOL vmlinux 0x05d27c89 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x05dc03e9 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x05e28d43 __first_cpu +EXPORT_SYMBOL vmlinux 0x05fad6e0 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x05fceab8 pci_find_capability +EXPORT_SYMBOL vmlinux 0x05fddf8c journal_get_create_access +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062fc0cf block_commit_write +EXPORT_SYMBOL vmlinux 0x062fe4a0 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06429939 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x064e0b87 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x064ea65c ns_capable +EXPORT_SYMBOL vmlinux 0x06646048 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x0693a87d thermal_zone_device_update +EXPORT_SYMBOL vmlinux 0x06a485f2 __krealloc +EXPORT_SYMBOL vmlinux 0x06cbdf44 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x06d2f086 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x06d40f70 llc_set_station_handler +EXPORT_SYMBOL vmlinux 0x06d70d80 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x06dbc58a journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x06de96bc set_device_ro +EXPORT_SYMBOL vmlinux 0x06f48646 filemap_fault +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x07307cd2 devm_iounmap +EXPORT_SYMBOL vmlinux 0x07356dbf posix_lock_file_wait +EXPORT_SYMBOL vmlinux 0x073dfa12 generate_resume_trace +EXPORT_SYMBOL vmlinux 0x0743a189 unregister_key_type +EXPORT_SYMBOL vmlinux 0x07638da2 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x07685d8e phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x076ebea8 pv_lock_ops +EXPORT_SYMBOL vmlinux 0x0799aca4 local_bh_enable +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07b5a51a fd_install +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d9b783 scsi_nl_send_vendor_msg +EXPORT_SYMBOL vmlinux 0x07ed4b66 keyring_clear +EXPORT_SYMBOL vmlinux 0x07f0fad1 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x07f496ee xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x08045609 mount_single +EXPORT_SYMBOL vmlinux 0x08067c44 cdrom_open +EXPORT_SYMBOL vmlinux 0x0806e294 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x08265dae d_add_ci +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x0837b6dc fsync_bdev +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x087f2f0c ethtool_op_set_sg +EXPORT_SYMBOL vmlinux 0x088311dc deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x089be4af phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x08b6da2b ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x08bf826c _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x08d14937 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x08dc00d2 generic_readlink +EXPORT_SYMBOL vmlinux 0x08e366dc do_splice_direct +EXPORT_SYMBOL vmlinux 0x08f94c22 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x0910a97a mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x09285b80 register_console +EXPORT_SYMBOL vmlinux 0x09319346 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x0933aae1 efi_enabled +EXPORT_SYMBOL vmlinux 0x0948cde9 num_physpages +EXPORT_SYMBOL vmlinux 0x094c8675 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x09591c6b __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x0964bcb2 boot_cpu_data +EXPORT_SYMBOL vmlinux 0x09775cdc kref_get +EXPORT_SYMBOL vmlinux 0x0983c2ac abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x09844b1e pci_map_rom +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099b3129 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x09b0dd62 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e57cf7 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x0a2487e0 unblock_all_signals +EXPORT_SYMBOL vmlinux 0x0a2aba71 vsc824x_add_skew +EXPORT_SYMBOL vmlinux 0x0a52ba64 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0abad3f7 override_creds +EXPORT_SYMBOL vmlinux 0x0acb1a3c __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adc2ecf pci_assign_resource +EXPORT_SYMBOL vmlinux 0x0afde94f sk_free +EXPORT_SYMBOL vmlinux 0x0b068703 fb_get_mode +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b509eba arp_xmit +EXPORT_SYMBOL vmlinux 0x0b7086d9 param_get_short +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b8e3211 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x0ba6ccca __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x0bc11d06 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0be24a2a end_page_writeback +EXPORT_SYMBOL vmlinux 0x0bfeb2e8 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x0c11b0d4 kill_pgrp +EXPORT_SYMBOL vmlinux 0x0c1b94d9 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x0c1c33b4 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x0c5441a0 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x0c5a861d mount_subtree +EXPORT_SYMBOL vmlinux 0x0c65e73c scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x0c7a52c9 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x0c835f8b x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x0c8c9e99 scsi_show_extd_sense +EXPORT_SYMBOL vmlinux 0x0c8d87fc i2c_master_recv +EXPORT_SYMBOL vmlinux 0x0c9a9a93 block_read_full_page +EXPORT_SYMBOL vmlinux 0x0ca02199 __get_page_tail +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0ccbf95f generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x0cf5dc13 is_bad_inode +EXPORT_SYMBOL vmlinux 0x0d083117 get_fs_type +EXPORT_SYMBOL vmlinux 0x0d0b13f1 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x0d20c6eb mdiobus_scan +EXPORT_SYMBOL vmlinux 0x0d2441f0 blk_run_queue +EXPORT_SYMBOL vmlinux 0x0d3aaf2b pci_scan_slot +EXPORT_SYMBOL vmlinux 0x0d3b0022 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d49cbb1 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x0d52ddd5 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d6003b3 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x0d652bb4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x0d6ae748 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x0d6c76ce textsearch_register +EXPORT_SYMBOL vmlinux 0x0d7e81e0 poll_initwait +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da711c3 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x0db92e3f neigh_parms_release +EXPORT_SYMBOL vmlinux 0x0dc7b881 blk_rq_init +EXPORT_SYMBOL vmlinux 0x0dd684da elevator_exit +EXPORT_SYMBOL vmlinux 0x0df42a0b mem_cgroup_count_vm_event +EXPORT_SYMBOL vmlinux 0x0e43b3ff __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x0e52592a panic +EXPORT_SYMBOL vmlinux 0x0e5e7df0 serio_rescan +EXPORT_SYMBOL vmlinux 0x0e6be507 km_report +EXPORT_SYMBOL vmlinux 0x0e8c741e fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x0ebebe14 groups_free +EXPORT_SYMBOL vmlinux 0x0ecd2c1f agp_enable +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0ef565e4 vc_resize +EXPORT_SYMBOL vmlinux 0x0f0adc62 vfs_write +EXPORT_SYMBOL vmlinux 0x0f151d21 d_clear_need_lookup +EXPORT_SYMBOL vmlinux 0x0f15983c pci_disable_device +EXPORT_SYMBOL vmlinux 0x0f305440 acpi_bus_generate_proc_event +EXPORT_SYMBOL vmlinux 0x0f59f197 param_array_ops +EXPORT_SYMBOL vmlinux 0x0f62e0a1 nobh_writepage +EXPORT_SYMBOL vmlinux 0x0f6eee78 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x0f78be58 sock_create_lite +EXPORT_SYMBOL vmlinux 0x0f8f1d0c sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x0f91d6dd agp_copy_info +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb0e29f init_timer_key +EXPORT_SYMBOL vmlinux 0x0fb3ab8b arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fd7593e may_umount_tree +EXPORT_SYMBOL vmlinux 0x0fec8109 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x0ff26f48 put_mnt_ns +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x102a4d6b max8925_reg_read +EXPORT_SYMBOL vmlinux 0x102fcb77 seq_bitmap_list +EXPORT_SYMBOL vmlinux 0x103b3421 sock_wfree +EXPORT_SYMBOL vmlinux 0x10486931 mii_check_media +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x1077b8d1 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x10ab7e68 down_killable +EXPORT_SYMBOL vmlinux 0x10bfd05c cdev_add +EXPORT_SYMBOL vmlinux 0x10d01890 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x10d9d048 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x10db6754 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f2eb76 vsnprintf +EXPORT_SYMBOL vmlinux 0x10f6441e icmpv6_send +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11267875 scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x1141c46a nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x115e820a bio_integrity_alloc_bioset +EXPORT_SYMBOL vmlinux 0x11633870 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118f01ea putname +EXPORT_SYMBOL vmlinux 0x11b4c917 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x11b897a8 blk_get_request +EXPORT_SYMBOL vmlinux 0x11e2ec12 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x1200afbf register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x120e3464 elv_add_request +EXPORT_SYMBOL vmlinux 0x12132008 release_pages +EXPORT_SYMBOL vmlinux 0x1233172b ppp_channel_index +EXPORT_SYMBOL vmlinux 0x1250ffd2 mount_ns +EXPORT_SYMBOL vmlinux 0x125209ef dma_async_device_register +EXPORT_SYMBOL vmlinux 0x12539da1 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x128a5cf9 complete_all +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b6ead3 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x12ba4295 dqget +EXPORT_SYMBOL vmlinux 0x12baf593 llc_sap_find +EXPORT_SYMBOL vmlinux 0x12c75f53 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x12f99022 inet_frags_init_net +EXPORT_SYMBOL vmlinux 0x13298e3c pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x1332ed7e dquot_free_inode +EXPORT_SYMBOL vmlinux 0x13463375 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x1347e6b1 set_user_nice +EXPORT_SYMBOL vmlinux 0x1352fcb8 sock_register +EXPORT_SYMBOL vmlinux 0x1374d66a skb_clone +EXPORT_SYMBOL vmlinux 0x13b65a01 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x13c7569d tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e97d50 flush_old_exec +EXPORT_SYMBOL vmlinux 0x13e9b58b tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x13eb9bcf phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x13ec80f3 param_set_short +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x14014934 dma_set_mask +EXPORT_SYMBOL vmlinux 0x140c17b9 names_cachep +EXPORT_SYMBOL vmlinux 0x1419f237 input_reset_device +EXPORT_SYMBOL vmlinux 0x1430e6e0 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x144e515e ps2_init +EXPORT_SYMBOL vmlinux 0x146118bf sget +EXPORT_SYMBOL vmlinux 0x14984d2a inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x149ee7c8 single_open +EXPORT_SYMBOL vmlinux 0x14bd1332 llc_sap_close +EXPORT_SYMBOL vmlinux 0x14d138b7 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x14d69e29 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x14e7ca7c alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x15081b16 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1551dc51 bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x1565c29d seq_escape +EXPORT_SYMBOL vmlinux 0x156d7c3f blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x1571a32d pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x157935c7 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x15a7ac7c swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x15aca97c free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x15df37fa tty_set_operations +EXPORT_SYMBOL vmlinux 0x16016f21 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x161864e7 sock_no_poll +EXPORT_SYMBOL vmlinux 0x161f6f69 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x1627ed72 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x163341f9 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x164e213b ethtool_op_get_sg +EXPORT_SYMBOL vmlinux 0x16611031 security_path_truncate +EXPORT_SYMBOL vmlinux 0x1661d96a phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x16640ca1 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x16725afa mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x168f1082 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x16bfc982 drop_super +EXPORT_SYMBOL vmlinux 0x16c14e2d netdev_printk +EXPORT_SYMBOL vmlinux 0x16c42197 init_timer_deferrable_key +EXPORT_SYMBOL vmlinux 0x16d8ecf2 ethtool_op_set_ufo +EXPORT_SYMBOL vmlinux 0x16df4ca4 ip_xfrm_me_harder +EXPORT_SYMBOL vmlinux 0x16f21b6c rtnl_notify +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x17127ce3 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x17191869 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x1720b94d agp_generic_enable +EXPORT_SYMBOL vmlinux 0x17251453 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x1725ed8e dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x1729b408 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x1754481b mutex_unlock +EXPORT_SYMBOL vmlinux 0x179046df xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1790d76b _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x179a2532 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x17c52de6 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x17ca5d3e __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x17d302bd lock_super +EXPORT_SYMBOL vmlinux 0x17df17bc sysctl_tcp_ecn +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x1806ab97 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x18187f17 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x1823d8de set_disk_ro +EXPORT_SYMBOL vmlinux 0x183dd8fe ilookup +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184e6c85 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x187ffcc4 km_new_mapping +EXPORT_SYMBOL vmlinux 0x189b6bac memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x18aca0a0 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x18b1c3cf security_inode_readlink +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18c0c9b4 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x18c1153a nf_getsockopt +EXPORT_SYMBOL vmlinux 0x1900f718 bio_integrity_split +EXPORT_SYMBOL vmlinux 0x190719fd ip_fragment +EXPORT_SYMBOL vmlinux 0x1923c47f processors +EXPORT_SYMBOL vmlinux 0x1926a353 thermal_zone_device_register +EXPORT_SYMBOL vmlinux 0x192d28a9 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x19391763 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x193d3126 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x1943bdab mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x194420e0 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x19495f6c acpi_get_physical_device +EXPORT_SYMBOL vmlinux 0x1968ab26 account_page_writeback +EXPORT_SYMBOL vmlinux 0x1970da0e ida_remove +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a9e62b complete +EXPORT_SYMBOL vmlinux 0x19b039f6 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x19b16064 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x1a079da9 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x1a3a2ecf jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a61b065 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a679a16 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x1a6d0caf mmc_do_release_host +EXPORT_SYMBOL vmlinux 0x1a833f56 dev_deactivate +EXPORT_SYMBOL vmlinux 0x1a845c39 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x1ace138d bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x1acecc9f inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x1ad76da8 replace_mount_options +EXPORT_SYMBOL vmlinux 0x1ade6e95 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x1ae14ef5 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x1afb4bc2 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b2b5f6c udplite_prot +EXPORT_SYMBOL vmlinux 0x1b30226c prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x1b3c12e9 create_proc_entry +EXPORT_SYMBOL vmlinux 0x1b4d8a00 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x1b4dc610 mii_nway_restart +EXPORT_SYMBOL vmlinux 0x1b51054d uart_match_port +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b85524d neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b929989 tcf_register_action +EXPORT_SYMBOL vmlinux 0x1b9a440c freeze_super +EXPORT_SYMBOL vmlinux 0x1b9e0ff1 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x1ba27109 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x1bf7def2 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x1bfbb7ca xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x1c0f866e blk_register_region +EXPORT_SYMBOL vmlinux 0x1c11df2e tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x1c1af916 set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x1c2b116e generic_make_request +EXPORT_SYMBOL vmlinux 0x1c750c7c pci_fixup_device +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c91ee2d inode_change_ok +EXPORT_SYMBOL vmlinux 0x1cc6719a register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x1ccf4cfe nf_register_hooks +EXPORT_SYMBOL vmlinux 0x1cf16b2b dm_get_device +EXPORT_SYMBOL vmlinux 0x1d1c9246 ethtool_invalid_flags +EXPORT_SYMBOL vmlinux 0x1d20ffec __breadahead +EXPORT_SYMBOL vmlinux 0x1d28a516 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x1d2e87c6 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x1d3865da param_get_invbool +EXPORT_SYMBOL vmlinux 0x1d734e5f generic_show_options +EXPORT_SYMBOL vmlinux 0x1d7f2e31 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x1d8a9e9b blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x1db4f6aa blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1db88f51 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddf9e74 elv_rb_del +EXPORT_SYMBOL vmlinux 0x1de9ab34 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x1dece7ba inet_sendpage +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e072faf pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e2e427f cpumask_next_and +EXPORT_SYMBOL vmlinux 0x1e324eba tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x1e343ae7 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x1e4010b7 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x1e65322e key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea31bb2 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x1ea804c6 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x1eabb57c genl_register_family +EXPORT_SYMBOL vmlinux 0x1eb21b7b idr_pre_get +EXPORT_SYMBOL vmlinux 0x1ebc605d set_blocksize +EXPORT_SYMBOL vmlinux 0x1ec4eb34 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x1eebf54c dquot_quota_on +EXPORT_SYMBOL vmlinux 0x1eeff4a4 key_validate +EXPORT_SYMBOL vmlinux 0x1ef1f75f posix_acl_valid +EXPORT_SYMBOL vmlinux 0x1ef5545b vm_insert_page +EXPORT_SYMBOL vmlinux 0x1f188ebb nlmsg_notify +EXPORT_SYMBOL vmlinux 0x1f18a8e2 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x1f344dac acpi_root_dir +EXPORT_SYMBOL vmlinux 0x1f55daa8 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x1f8a6105 elv_register_queue +EXPORT_SYMBOL vmlinux 0x1fb81020 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x1fc6b7bc sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd202a9 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x1fd589a9 dev_trans_start +EXPORT_SYMBOL vmlinux 0x1febf634 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20039b6b mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x20092385 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x2010cf6b __break_lease +EXPORT_SYMBOL vmlinux 0x20557717 fb_show_logo +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2082aed0 pci_ltr_supported +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20918aa2 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20cdd958 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x20e4bfeb mmc_release_host +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20f060d9 dma_async_memcpy_pg_to_pg +EXPORT_SYMBOL vmlinux 0x21145090 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x215ebd78 bitrev16 +EXPORT_SYMBOL vmlinux 0x2166e5c2 udp_seq_open +EXPORT_SYMBOL vmlinux 0x2170c571 scsi_adjust_queue_depth +EXPORT_SYMBOL vmlinux 0x217dda13 flex_array_get +EXPORT_SYMBOL vmlinux 0x21930b03 mii_link_ok +EXPORT_SYMBOL vmlinux 0x21932a91 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x2199337a down_timeout +EXPORT_SYMBOL vmlinux 0x21bdc038 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x21e06b76 dump_write +EXPORT_SYMBOL vmlinux 0x21e0ea22 acpi_get_id +EXPORT_SYMBOL vmlinux 0x21fb443e _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ed0c2 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x2230276f dev_mc_flush +EXPORT_SYMBOL vmlinux 0x2259338b tcp_valid_rtt_meas +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2288378f system_state +EXPORT_SYMBOL vmlinux 0x2289afbf log_wait_commit +EXPORT_SYMBOL vmlinux 0x229d7277 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x22ab0dfa scsi_ioctl +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22be6eb1 sock_rfree +EXPORT_SYMBOL vmlinux 0x22ed6cfb journal_extend +EXPORT_SYMBOL vmlinux 0x22ff7acb blk_requeue_request +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2324b309 netif_device_detach +EXPORT_SYMBOL vmlinux 0x23423265 scsi_execute_req +EXPORT_SYMBOL vmlinux 0x234509f3 strncat +EXPORT_SYMBOL vmlinux 0x234d48cd tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x2352dd01 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x23532c4d ftrace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x235eff31 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy +EXPORT_SYMBOL vmlinux 0x2385992d submit_bio +EXPORT_SYMBOL vmlinux 0x238eb7ef journal_update_format +EXPORT_SYMBOL vmlinux 0x2394a6e9 try_to_release_page +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23e454b3 __netif_schedule +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24445606 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24779fc4 clocksource_register +EXPORT_SYMBOL vmlinux 0x247a91b8 simple_release_fs +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x249a0742 idr_get_new +EXPORT_SYMBOL vmlinux 0x24be06bb km_query +EXPORT_SYMBOL vmlinux 0x24c23ac7 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x24c36bcf put_disk +EXPORT_SYMBOL vmlinux 0x24f169fc down_read_trylock +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x2511771d x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25469a5d kfree_skb +EXPORT_SYMBOL vmlinux 0x254a89eb __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x256314bf xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x256c6e8f proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x2570507d scsi_remove_target +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258355b4 fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x25b1e8c9 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x25b75bf8 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x25c677c4 mac_pton +EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen +EXPORT_SYMBOL vmlinux 0x260d4e68 do_mmap_pgoff +EXPORT_SYMBOL vmlinux 0x262507af generic_file_aio_read +EXPORT_SYMBOL vmlinux 0x262ec3c0 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x263baf2d jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2642006e pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x26686bb3 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x2685c3d7 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x26b895a5 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x26c52069 set_anon_super +EXPORT_SYMBOL vmlinux 0x26d0ddb2 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x26e4ba40 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26fed6ad __serio_register_port +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x2726c10c locks_remove_posix +EXPORT_SYMBOL vmlinux 0x27277915 vm_stat +EXPORT_SYMBOL vmlinux 0x272d394e mtrr_del +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x277012d9 seq_write +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27a5083b dquot_release +EXPORT_SYMBOL vmlinux 0x27ad31dd da903x_query_status +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c33efe csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x27d754f6 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x2817373c d_move +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28343bad scnprintf +EXPORT_SYMBOL vmlinux 0x2859b34a buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x28618793 kernel_connect +EXPORT_SYMBOL vmlinux 0x286470b6 xfrm_input +EXPORT_SYMBOL vmlinux 0x28656547 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x2876a6d3 memcpy_toiovec +EXPORT_SYMBOL vmlinux 0x2879d9c4 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x287dffa6 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x288b96a9 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x289854e6 scsi_get_command +EXPORT_SYMBOL vmlinux 0x2898db7f ethtool_op_set_tx_csum +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28b7262f dev_close +EXPORT_SYMBOL vmlinux 0x28b7a75e clip_tbl_hook +EXPORT_SYMBOL vmlinux 0x28d41d73 cdev_del +EXPORT_SYMBOL vmlinux 0x2916ed89 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x292093f4 native_rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x2928dc1e input_close_device +EXPORT_SYMBOL vmlinux 0x292d02eb security_task_getsecid +EXPORT_SYMBOL vmlinux 0x292f23f1 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x293f383b acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2959ce90 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x296d01f4 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x297e8a4a __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x298c6952 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x29aae799 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x29ac5f04 do_SAK +EXPORT_SYMBOL vmlinux 0x29b96a8a inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x29e304b8 get_gendisk +EXPORT_SYMBOL vmlinux 0x29f6a5b7 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x29f881b5 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x29ff7e1f sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x2a03cb89 register_qdisc +EXPORT_SYMBOL vmlinux 0x2a0488d1 sock_no_connect +EXPORT_SYMBOL vmlinux 0x2a2aee6a noop_qdisc +EXPORT_SYMBOL vmlinux 0x2a2b4b9f dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3da750 journal_force_commit +EXPORT_SYMBOL vmlinux 0x2a50ad35 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x2a620c36 mutex_lock +EXPORT_SYMBOL vmlinux 0x2a65b475 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x2a7268f5 input_register_handler +EXPORT_SYMBOL vmlinux 0x2a760ad3 _dev_info +EXPORT_SYMBOL vmlinux 0x2a7f38ab mii_check_link +EXPORT_SYMBOL vmlinux 0x2ab4a198 tcf_em_register +EXPORT_SYMBOL vmlinux 0x2abcce0b take_over_console +EXPORT_SYMBOL vmlinux 0x2ac12e90 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x2adee445 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x2b06f48b commit_creds +EXPORT_SYMBOL vmlinux 0x2b071e32 release_sock +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3c6ca9 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x2b49fb34 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x2b52a516 pci_iomap +EXPORT_SYMBOL vmlinux 0x2b720eb5 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x2b8c53ef iterate_mounts +EXPORT_SYMBOL vmlinux 0x2b930b18 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x2b93f6d1 scsi_host_get +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bcacf62 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x2bdf98bd tcp_read_sock +EXPORT_SYMBOL vmlinux 0x2bf8d577 sleep_on_timeout +EXPORT_SYMBOL vmlinux 0x2bf9625e __napi_schedule +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c0ae6d0 register_exec_domain +EXPORT_SYMBOL vmlinux 0x2c1e7c0c devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2c215b7a acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x2c231c04 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c27b3a7 scsi_host_put +EXPORT_SYMBOL vmlinux 0x2c466fb3 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x2c54b5b0 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x2c5d9c53 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x2c8b06a5 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x2c8f3f85 sk_run_filter +EXPORT_SYMBOL vmlinux 0x2c933990 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x2c97daaf put_page +EXPORT_SYMBOL vmlinux 0x2cbc9fa2 input_event +EXPORT_SYMBOL vmlinux 0x2cd30647 dev_crit +EXPORT_SYMBOL vmlinux 0x2cd7deb6 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x2cdc694a dev_alloc_skb +EXPORT_SYMBOL vmlinux 0x2d059f95 do_truncate +EXPORT_SYMBOL vmlinux 0x2d09e070 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d164538 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x2d319e6b pci_disable_obff +EXPORT_SYMBOL vmlinux 0x2d5528c9 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x2d579786 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x2d5c5893 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x2d74a68c jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x2d89342a scsi_show_sense_hdr +EXPORT_SYMBOL vmlinux 0x2da7380c sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x2db469da kill_anon_super +EXPORT_SYMBOL vmlinux 0x2db4c99b flush_delayed_work +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2ddbd7aa mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x2de8efff pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e06111d cpu_present_mask +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e441824 security_path_symlink +EXPORT_SYMBOL vmlinux 0x2e50fcc9 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x2e59fc7a ab8500_gpadc_get +EXPORT_SYMBOL vmlinux 0x2e65ed00 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x2e687e6a set_groups +EXPORT_SYMBOL vmlinux 0x2e6d6ae7 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x2e9a9eef input_set_capability +EXPORT_SYMBOL vmlinux 0x2eeceb42 sk_chk_filter +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2efe4281 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x2f011efd pskb_expand_head +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0cd41b dma_sync_wait +EXPORT_SYMBOL vmlinux 0x2f12636f pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x2f297aa4 mmc_resume_host +EXPORT_SYMBOL vmlinux 0x2f521d07 set_page_dirty +EXPORT_SYMBOL vmlinux 0x2f62a683 scsi_prep_state_check +EXPORT_SYMBOL vmlinux 0x2f7512ce scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x2f78bf81 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp +EXPORT_SYMBOL vmlinux 0x2fdc77a1 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x2ff6a42a pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x2ff6f130 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x2ff7ae7a dev_load +EXPORT_SYMBOL vmlinux 0x3000406d have_submounts +EXPORT_SYMBOL vmlinux 0x301d31c2 bio_put +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x302b4200 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x3032758b __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x30452f5d follow_down +EXPORT_SYMBOL vmlinux 0x30599352 ip_route_input_common +EXPORT_SYMBOL vmlinux 0x306abd87 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x30703c26 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3092906d genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x30997301 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x309b88c7 pm860x_page_reg_read +EXPORT_SYMBOL vmlinux 0x309f8b9a agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30c0e977 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x30c33d9b elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x30cada8f radix_tree_next_hole +EXPORT_SYMBOL vmlinux 0x30d48e07 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x30d8deaf max8925_reg_write +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x31060b31 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x31106195 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x3135aab1 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x31449265 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3166f013 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x316ad4e8 ip6_xmit +EXPORT_SYMBOL vmlinux 0x31770d69 scsi_print_command +EXPORT_SYMBOL vmlinux 0x318e1940 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0x319a2e8b pci_pme_capable +EXPORT_SYMBOL vmlinux 0x31a7b5b8 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x31ad461f cap_file_mmap +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31d1aa2c cdrom_check_events +EXPORT_SYMBOL vmlinux 0x31d826a6 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x31e17c5c fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ebadcd in_group_p +EXPORT_SYMBOL vmlinux 0x31ec560e groups_alloc +EXPORT_SYMBOL vmlinux 0x3240c65b files_lglock_global_lock_online +EXPORT_SYMBOL vmlinux 0x324c4f90 pci_pme_active +EXPORT_SYMBOL vmlinux 0x3259a19d padata_do_serial +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x327f67b8 km_state_expired +EXPORT_SYMBOL vmlinux 0x3296efe3 journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x32b6aa20 pci_scan_bus_parented +EXPORT_SYMBOL vmlinux 0x32c6860b genl_unregister_ops +EXPORT_SYMBOL vmlinux 0x32cea339 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x32d8940d mmc_detect_change +EXPORT_SYMBOL vmlinux 0x32e2d6a8 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x32eeaded _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x32faad48 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x3305affc security_path_mkdir +EXPORT_SYMBOL vmlinux 0x3338f70f scsi_device_put +EXPORT_SYMBOL vmlinux 0x333ce887 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x334cd83c __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3369d17b poll_freewait +EXPORT_SYMBOL vmlinux 0x338a6d11 md_flush_request +EXPORT_SYMBOL vmlinux 0x338ce38c mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x3395f5de mddev_congested +EXPORT_SYMBOL vmlinux 0x33a59f3f idr_init +EXPORT_SYMBOL vmlinux 0x33a83285 request_key_async +EXPORT_SYMBOL vmlinux 0x33b2c2db keyring_search +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33ced67f input_free_device +EXPORT_SYMBOL vmlinux 0x33db16be dump_seek +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fc022f swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x34030abf bdi_init +EXPORT_SYMBOL vmlinux 0x34422f41 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x34427456 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x346500dd eth_rebuild_header +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3477b5ec pm860x_page_bulk_write +EXPORT_SYMBOL vmlinux 0x347edd54 tty_port_put +EXPORT_SYMBOL vmlinux 0x347ff724 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3490c6cc agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349ee933 md_error +EXPORT_SYMBOL vmlinux 0x34b23ec6 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x34d6d7eb bio_add_page +EXPORT_SYMBOL vmlinux 0x35023230 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x350fdb42 simple_statfs +EXPORT_SYMBOL vmlinux 0x35312f7f agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x35328466 seq_bitmap +EXPORT_SYMBOL vmlinux 0x353a4b58 __put_cred +EXPORT_SYMBOL vmlinux 0x354334e0 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x354a4a7d vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x354f095f sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x3550f09a skb_dst_set_noref +EXPORT_SYMBOL vmlinux 0x355210e0 kern_path_create +EXPORT_SYMBOL vmlinux 0x357c90d2 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0x35b368a0 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x35c2ba9e refrigerator +EXPORT_SYMBOL vmlinux 0x35ca8cfa dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x35dc154e skb_copy_datagram_iovec +EXPORT_SYMBOL vmlinux 0x3608133c mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x360912ad dcache_dir_open +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x36139a51 memcpy_fromiovec +EXPORT_SYMBOL vmlinux 0x363f2e1f mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x365523db block_write_full_page_endio +EXPORT_SYMBOL vmlinux 0x367411f4 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x3686ea09 spi_print_msg +EXPORT_SYMBOL vmlinux 0x36aad357 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x36ae5622 ethtool_op_set_flags +EXPORT_SYMBOL vmlinux 0x36e360e3 __hw_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x36ebc374 thaw_process +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x37221497 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37770fcc tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x379a625f directly_mappable_cdev_bdi +EXPORT_SYMBOL vmlinux 0x379f5837 param_set_invbool +EXPORT_SYMBOL vmlinux 0x37a161de __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x37bdf73b skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37bfa18b mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x37c932b3 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e14274 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x37ea921e vfsmount_lock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x37f76c10 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x38198152 sock_no_listen +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3829dca9 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x384dbb5e textsearch_unregister +EXPORT_SYMBOL vmlinux 0x38700ea6 fget +EXPORT_SYMBOL vmlinux 0x387b52cc ilookup5 +EXPORT_SYMBOL vmlinux 0x387c1cce xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x388f9128 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x38a60d83 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x38ab0d02 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x38b92846 llc_remove_pack +EXPORT_SYMBOL vmlinux 0x38cee1c2 seq_release_private +EXPORT_SYMBOL vmlinux 0x38d52137 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x38e05d8d dev_mc_sync +EXPORT_SYMBOL vmlinux 0x38e5b709 dcb_setapp +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x3908582f pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x394ce465 mmc_add_host +EXPORT_SYMBOL vmlinux 0x397ce778 input_get_keycode +EXPORT_SYMBOL vmlinux 0x3980aac1 unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39a70fbe __blk_end_request +EXPORT_SYMBOL vmlinux 0x39b168ed dquot_drop +EXPORT_SYMBOL vmlinux 0x39b64499 register_framebuffer +EXPORT_SYMBOL vmlinux 0x39c9319f ata_port_printk +EXPORT_SYMBOL vmlinux 0x39e171d3 bio_map_user +EXPORT_SYMBOL vmlinux 0x39ebe7f5 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x3a013b7d remove_wait_queue +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a2204c6 security_netlink_recv +EXPORT_SYMBOL vmlinux 0x3a2a16ca scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a40dc6d eth_header +EXPORT_SYMBOL vmlinux 0x3a5bbcd5 node_data +EXPORT_SYMBOL vmlinux 0x3a81cb7a read_dev_sector +EXPORT_SYMBOL vmlinux 0x3a8e0ff6 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ab53640 idr_get_new_above +EXPORT_SYMBOL vmlinux 0x3abb64db inet6_getname +EXPORT_SYMBOL vmlinux 0x3b1c417a jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x3b26f70a unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x3b3016d3 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3b313f98 sync_blockdev +EXPORT_SYMBOL vmlinux 0x3b3396b3 journal_release_buffer +EXPORT_SYMBOL vmlinux 0x3b3f9acc generic_write_sync +EXPORT_SYMBOL vmlinux 0x3b4ae1be bd_set_size +EXPORT_SYMBOL vmlinux 0x3b6fcc03 iget5_locked +EXPORT_SYMBOL vmlinux 0x3b8d4f55 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x3bb253cd remove_arg_zero +EXPORT_SYMBOL vmlinux 0x3bd1b1f6 msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x3befc801 idr_replace +EXPORT_SYMBOL vmlinux 0x3bf114bf should_remove_suid +EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c12e4e7 init_buffer +EXPORT_SYMBOL vmlinux 0x3c40ad75 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x3c47b44c datagram_poll +EXPORT_SYMBOL vmlinux 0x3c4a7ae8 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x3c4d6d9a cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x3c534f43 update_region +EXPORT_SYMBOL vmlinux 0x3c542437 d_alloc_name +EXPORT_SYMBOL vmlinux 0x3c585a6d inet6_release +EXPORT_SYMBOL vmlinux 0x3c6c5d7f journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c89295b rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x3c93451d pci_match_id +EXPORT_SYMBOL vmlinux 0x3c9d1211 string_get_size +EXPORT_SYMBOL vmlinux 0x3c9ee1f5 file_update_time +EXPORT_SYMBOL vmlinux 0x3cb5adc5 mount_bdev +EXPORT_SYMBOL vmlinux 0x3cb9862a phy_device_register +EXPORT_SYMBOL vmlinux 0x3cb9c7d5 pskb_copy +EXPORT_SYMBOL vmlinux 0x3cc43a70 dev_addr_add +EXPORT_SYMBOL vmlinux 0x3cc80880 vfs_fsync +EXPORT_SYMBOL vmlinux 0x3cc83be8 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x3cdd438a rtnl_create_link +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cfef9a2 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x3d111221 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x3d1187f9 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x3d1428e9 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x3d5f830c set_bh_page +EXPORT_SYMBOL vmlinux 0x3d6dea27 make_EII_client +EXPORT_SYMBOL vmlinux 0x3d72f47f netif_carrier_on +EXPORT_SYMBOL vmlinux 0x3d767368 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d8728bb memcpy_toiovecend +EXPORT_SYMBOL vmlinux 0x3d93ee61 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcbf64c bio_phys_segments +EXPORT_SYMBOL vmlinux 0x3dce4d7b xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0e9023 param_set_long +EXPORT_SYMBOL vmlinux 0x3e1f1f84 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e2b516b tcp_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x3e45e9ff register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x3e4c08db sock_create +EXPORT_SYMBOL vmlinux 0x3e6780e5 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3e7bcbe7 pci_remove_bus_device +EXPORT_SYMBOL vmlinux 0x3e80d414 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x3e82a47b register_quota_format +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3ea3d4b2 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x3eaa313e tcp_v4_md5_do_add +EXPORT_SYMBOL vmlinux 0x3ec818de mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x3ec8886f param_ops_int +EXPORT_SYMBOL vmlinux 0x3ed63055 zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x3ed8fd39 journal_revoke +EXPORT_SYMBOL vmlinux 0x3ee084a9 pci_vpd_truncate +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f387541 default_llseek +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4cae42 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x3f4d09b1 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x3f65196d mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x3f7310cc vfs_statfs +EXPORT_SYMBOL vmlinux 0x3f762712 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x3f9f868f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x3fa58ef8 wait_for_completion +EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fc3aa3a __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff62317 local_bh_disable +EXPORT_SYMBOL vmlinux 0x3ffff863 idr_find +EXPORT_SYMBOL vmlinux 0x40025d7b mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x401a95a1 submit_bh +EXPORT_SYMBOL vmlinux 0x4029d238 param_set_copystring +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4049e49b pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x405543f5 force_sig +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40692c2e file_sb_list_del +EXPORT_SYMBOL vmlinux 0x406a7864 tty_check_change +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40ed12a7 scsi_unregister +EXPORT_SYMBOL vmlinux 0x40f3de1a read_cache_page_async +EXPORT_SYMBOL vmlinux 0x40f6e56d __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x4108e69a fb_match_mode +EXPORT_SYMBOL vmlinux 0x4113f4ae dev_activate +EXPORT_SYMBOL vmlinux 0x411860ea arp_create +EXPORT_SYMBOL vmlinux 0x41190f54 ip_options_compile +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4149ea95 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x41615d59 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41cc780d nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x41dee157 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x41e7651e dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x41fa2fb1 find_get_page +EXPORT_SYMBOL vmlinux 0x41fb8d3a dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x4211c3c1 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x4213b60c mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x4216ceec pipe_to_file +EXPORT_SYMBOL vmlinux 0x42178d51 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x421811e4 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x42224298 sscanf +EXPORT_SYMBOL vmlinux 0x42371f42 get_io_context +EXPORT_SYMBOL vmlinux 0x424549f3 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x4254411d blk_put_request +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42785fca give_up_console +EXPORT_SYMBOL vmlinux 0x42977ad4 __hw_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x42a4bdf2 in_egroup_p +EXPORT_SYMBOL vmlinux 0x42b4c0c2 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42d2f5de seq_printf +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430303fb revalidate_disk +EXPORT_SYMBOL vmlinux 0x430c6a86 vfs_stat +EXPORT_SYMBOL vmlinux 0x431d26ff netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x43348dd0 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x43385ad9 acpi_pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x433b7762 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x43454fde invalidate_partition +EXPORT_SYMBOL vmlinux 0x434b69e7 __brelse +EXPORT_SYMBOL vmlinux 0x43696ca7 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437f41de lro_flush_all +EXPORT_SYMBOL vmlinux 0x438b3cc9 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x43a0458b blk_start_plug +EXPORT_SYMBOL vmlinux 0x43c61a70 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x43ec913a put_cmsg +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4436100c sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x443f35c5 llc_build_and_send_ui_pkt +EXPORT_SYMBOL vmlinux 0x44402b6f param_get_ulong +EXPORT_SYMBOL vmlinux 0x4467e750 prepare_binprm +EXPORT_SYMBOL vmlinux 0x4472e0b3 udp_disconnect +EXPORT_SYMBOL vmlinux 0x449fe826 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b911c3 rb_replace_node +EXPORT_SYMBOL vmlinux 0x44c0b9d3 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x44d7e0f8 netdev_class_remove_file +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f1606d down_trylock +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x451cf178 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x452ebe86 schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x4536c526 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4541dfdb x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0x4549e940 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x4550ba8a register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x45593b6c acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x4559599b revert_creds +EXPORT_SYMBOL vmlinux 0x45704798 print_hex_dump_bytes +EXPORT_SYMBOL vmlinux 0x4578661a _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457f7b1d vc_cons +EXPORT_SYMBOL vmlinux 0x458e9ac6 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x45bd9efd dm_table_put +EXPORT_SYMBOL vmlinux 0x45d216b9 tcp_put_md5sig_pool +EXPORT_SYMBOL vmlinux 0x46214106 files_lglock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x462787a2 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x462fb1aa __kfree_skb +EXPORT_SYMBOL vmlinux 0x46595c8a vfs_lstat +EXPORT_SYMBOL vmlinux 0x466214d8 alloc_disk +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46b67693 hex2bin +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46e726c2 serial8250_register_port +EXPORT_SYMBOL vmlinux 0x46ebc37e tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x475100c2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x47655214 blk_peek_request +EXPORT_SYMBOL vmlinux 0x47867acc tcp_tso_segment +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x4792c572 down_interruptible +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x479e5795 nf_afinfo +EXPORT_SYMBOL vmlinux 0x47b3f862 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x47b6a10f ftrace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x47c7b0d2 cpu_number +EXPORT_SYMBOL vmlinux 0x47db963d blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x47e58530 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x47eb63f9 arp_find +EXPORT_SYMBOL vmlinux 0x480ff250 led_brightness_set +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x4829b830 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x4830e2d3 fget_raw +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486ad386 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x486d2f29 dqstats +EXPORT_SYMBOL vmlinux 0x48702309 task_nice +EXPORT_SYMBOL vmlinux 0x488e56a0 tty_pair_get_pty +EXPORT_SYMBOL vmlinux 0x489e158a kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x48a09c6f pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x48add15a mount_pseudo +EXPORT_SYMBOL vmlinux 0x48cceb42 bdget_disk +EXPORT_SYMBOL vmlinux 0x48d649d2 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x48e98d1f journal_start +EXPORT_SYMBOL vmlinux 0x48eb0c0d __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x4922f1f0 inet_select_addr +EXPORT_SYMBOL vmlinux 0x4933cad7 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x493ebca0 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x498b5d9a udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49bb1ef2 dst_release +EXPORT_SYMBOL vmlinux 0x49c06a5f pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x49d3ed05 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x49df2932 ethtool_op_set_tx_hw_csum +EXPORT_SYMBOL vmlinux 0x4a0d25a7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x4a358252 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x4a4f3f44 mmc_suspend_host +EXPORT_SYMBOL vmlinux 0x4a5440d4 km_policy_expired +EXPORT_SYMBOL vmlinux 0x4a57f196 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x4a82245f dquot_acquire +EXPORT_SYMBOL vmlinux 0x4a82b53f napi_gro_frags +EXPORT_SYMBOL vmlinux 0x4a8685b5 sg_miter_start +EXPORT_SYMBOL vmlinux 0x4a8b2a04 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x4a94e4da unbind_con_driver +EXPORT_SYMBOL vmlinux 0x4a963763 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x4aa04d3f jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4addb9c2 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x4ade9468 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x4afbb200 dev_warn +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b03b3ff agp_create_memory +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b4577a0 blk_init_queue +EXPORT_SYMBOL vmlinux 0x4b48e9ca generic_file_mmap +EXPORT_SYMBOL vmlinux 0x4b4cce21 pipe_lock +EXPORT_SYMBOL vmlinux 0x4b5814ef kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b6b1bb4 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x4b8a4b5b sync_inode +EXPORT_SYMBOL vmlinux 0x4b9f1be0 proto_unregister +EXPORT_SYMBOL vmlinux 0x4bc4d5a5 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x4bc96635 ifla_policy +EXPORT_SYMBOL vmlinux 0x4be696c1 journal_clear_err +EXPORT_SYMBOL vmlinux 0x4bec1edb jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x4bf7b27d inode_sb_list_lock +EXPORT_SYMBOL vmlinux 0x4c00bc85 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x4c1182cb bitmap_scnprintf +EXPORT_SYMBOL vmlinux 0x4c11ca9f efi +EXPORT_SYMBOL vmlinux 0x4c2544a5 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x4c2f1975 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x4c3dc9d7 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4c450758 d_lookup +EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp +EXPORT_SYMBOL vmlinux 0x4c4fef19 kernel_stack +EXPORT_SYMBOL vmlinux 0x4c659dc7 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x4c69391c agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x4c71682a tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x4c77c636 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x4c895b88 pci_save_state +EXPORT_SYMBOL vmlinux 0x4cbbd171 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x4cc2561e kernel_read +EXPORT_SYMBOL vmlinux 0x4cc32120 start_tty +EXPORT_SYMBOL vmlinux 0x4cd21540 mmc_erase +EXPORT_SYMBOL vmlinux 0x4ce823a8 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x4ceb2c2a pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x4cffb0af skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x4d1dd20a pci_select_bars +EXPORT_SYMBOL vmlinux 0x4d390f25 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x4d50b49c d_drop +EXPORT_SYMBOL vmlinux 0x4d7cf05d dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x4d8163e3 splice_from_pipe_end +EXPORT_SYMBOL vmlinux 0x4d865546 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x4d8ea0a5 write_one_page +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4dc45be9 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy +EXPORT_SYMBOL vmlinux 0x4de87cd5 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x4deb1dff mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e069249 security_tun_dev_post_create +EXPORT_SYMBOL vmlinux 0x4e0da271 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x4e0e69f0 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x4e1ce9bc blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x4e21999c acpi_get_child +EXPORT_SYMBOL vmlinux 0x4e25e936 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e472971 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x4e4cea5b padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x4e53d3a9 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x4e59a2d4 tty_pair_get_tty +EXPORT_SYMBOL vmlinux 0x4e6cc9b5 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x4e6d9569 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4ea6ad4e inet_put_port +EXPORT_SYMBOL vmlinux 0x4eb3e143 find_inode_number +EXPORT_SYMBOL vmlinux 0x4ec638bb __lock_page +EXPORT_SYMBOL vmlinux 0x4ed3213a key_payload_reserve +EXPORT_SYMBOL vmlinux 0x4edd72f7 block_all_signals +EXPORT_SYMBOL vmlinux 0x4f0b7988 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x4f1092fa vfs_mkdir +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2d6ca9 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3f3283 skb_checksum +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f4c599f mnt_pin +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f870e63 phy_connect +EXPORT_SYMBOL vmlinux 0x4f8991da iget_locked +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f9b72fe journal_ack_err +EXPORT_SYMBOL vmlinux 0x4fa43000 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x4fb8b511 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x4fd60ed1 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x4fdb533f scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fdf86f3 netpoll_setup +EXPORT_SYMBOL vmlinux 0x4ff1c9bc populate_rootfs_wait +EXPORT_SYMBOL vmlinux 0x500fdcca blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x50211ee3 tcp_free_md5sig_pool +EXPORT_SYMBOL vmlinux 0x502f2f79 journal_flush +EXPORT_SYMBOL vmlinux 0x5035375f nf_reinject +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x5054bb33 napi_skb_finish +EXPORT_SYMBOL vmlinux 0x5063d172 fail_migrate_page +EXPORT_SYMBOL vmlinux 0x506746b6 getrawmonotonic +EXPORT_SYMBOL vmlinux 0x506d584f pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x50720c5f snprintf +EXPORT_SYMBOL vmlinux 0x508840f4 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x50a0b896 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x50ab4c6d files_lglock_global_lock +EXPORT_SYMBOL vmlinux 0x50d07bc0 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x50dfcbfa inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x50e358c1 phy_device_free +EXPORT_SYMBOL vmlinux 0x50ef03c9 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x510c2535 xz_dec_run +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51208839 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x518db033 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x518ee3a9 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x51955152 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x51ce5ad3 files_lglock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d33210 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x51dce73b xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x52760ca9 getnstimeofday +EXPORT_SYMBOL vmlinux 0x5282c8bd agp_find_bridge +EXPORT_SYMBOL vmlinux 0x52880263 file_remove_suid +EXPORT_SYMBOL vmlinux 0x52932fdd netif_device_attach +EXPORT_SYMBOL vmlinux 0x5295f485 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53224ed0 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x5326b799 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x532ea8b7 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5332967b mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x53506e27 I_BDEV +EXPORT_SYMBOL vmlinux 0x53677ca5 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x538383c0 unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x5383f34b _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x53846330 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x5397f2d3 posix_acl_init +EXPORT_SYMBOL vmlinux 0x53b91133 register_gifconf +EXPORT_SYMBOL vmlinux 0x53f04062 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x53f219b8 __block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x53f2ef10 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x54152e04 percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x541adb1e vga_client_register +EXPORT_SYMBOL vmlinux 0x5437a477 ihold +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5448a20a scsi_prep_return +EXPORT_SYMBOL vmlinux 0x54527f65 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x54568b75 register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x545cd9a5 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x54a6aa3c scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b93e3e ppp_input +EXPORT_SYMBOL vmlinux 0x54e41b52 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x5535bbc7 ndisc_build_skb +EXPORT_SYMBOL vmlinux 0x55371498 backlight_device_register +EXPORT_SYMBOL vmlinux 0x5538f8f8 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55678b4b bsearch +EXPORT_SYMBOL vmlinux 0x55684569 may_umount +EXPORT_SYMBOL vmlinux 0x556f3c6e __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x5594be03 bitmap_remap +EXPORT_SYMBOL vmlinux 0x559e0a46 bio_get_nr_vecs +EXPORT_SYMBOL vmlinux 0x55b204ed neigh_for_each +EXPORT_SYMBOL vmlinux 0x55c01e92 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x55c44994 udp_poll +EXPORT_SYMBOL vmlinux 0x55d5c8e1 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x55d958f2 ip_cmsg_recv +EXPORT_SYMBOL vmlinux 0x55dbcbcf tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x55ddca15 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x55e310ef devm_ioremap +EXPORT_SYMBOL vmlinux 0x5600904f fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x5614b010 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x5614f9d0 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x562b9c71 vfs_read +EXPORT_SYMBOL vmlinux 0x562c7940 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563808b5 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x5642793a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x5662c0ca skb_seq_read +EXPORT_SYMBOL vmlinux 0x566d35b4 pci_enable_bridges +EXPORT_SYMBOL vmlinux 0x566ef6f9 scsi_init_io +EXPORT_SYMBOL vmlinux 0x569e04a3 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x56beecb2 input_set_keycode +EXPORT_SYMBOL vmlinux 0x56c54b06 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56f5c8e6 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x57055e69 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x571a3124 bmap +EXPORT_SYMBOL vmlinux 0x571af8a0 skb_recycle_check +EXPORT_SYMBOL vmlinux 0x571b25e3 dev_get_by_flags_rcu +EXPORT_SYMBOL vmlinux 0x57280864 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573135c2 genphy_read_status +EXPORT_SYMBOL vmlinux 0x5739627a __ht_create_irq +EXPORT_SYMBOL vmlinux 0x574aadfa mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5771a622 inode_permission +EXPORT_SYMBOL vmlinux 0x578586d9 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x578b2af5 dquot_operations +EXPORT_SYMBOL vmlinux 0x57962d69 acpi_lock_ac_dir +EXPORT_SYMBOL vmlinux 0x57b57ebe jiffies_to_timespec +EXPORT_SYMBOL vmlinux 0x57b63041 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x57db7242 mangle_path +EXPORT_SYMBOL vmlinux 0x57f291e1 module_put +EXPORT_SYMBOL vmlinux 0x57f9179c netif_rx +EXPORT_SYMBOL vmlinux 0x57f96074 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x581ed050 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583b433a pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x584fd97c phy_register_fixup +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x5867777f save_mount_options +EXPORT_SYMBOL vmlinux 0x5872981b tcp_v4_md5_do_del +EXPORT_SYMBOL vmlinux 0x588f43d2 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x58901667 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x589a9b48 amd_northbridges +EXPORT_SYMBOL vmlinux 0x58a10c47 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x58bd874b xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x58cea61f sock_no_accept +EXPORT_SYMBOL vmlinux 0x58f444ca netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x58f882a6 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x5934392b fb_register_client +EXPORT_SYMBOL vmlinux 0x5935b1ea serio_close +EXPORT_SYMBOL vmlinux 0x5941bf59 get_super +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595a9dab xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x598076d9 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x5991de5d netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x59b3ca3b phy_disconnect +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59c02289 sk_release_kernel +EXPORT_SYMBOL vmlinux 0x59d58d4c xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x59d58fb2 dget_parent +EXPORT_SYMBOL vmlinux 0x59d696b6 register_module_notifier +EXPORT_SYMBOL vmlinux 0x59e70f93 __send_remote_softirq +EXPORT_SYMBOL vmlinux 0x59f9f932 bio_map_kern +EXPORT_SYMBOL vmlinux 0x59febe65 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x5a11bc62 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x5a1c77bd send_sig_info +EXPORT_SYMBOL vmlinux 0x5a264182 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x5a2aa62e __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x5a34a45c __kmalloc +EXPORT_SYMBOL vmlinux 0x5a3eb0e6 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5a744b86 netlink_set_nonroot +EXPORT_SYMBOL vmlinux 0x5aac8e65 led_blink_set +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5adb68c3 sock_release +EXPORT_SYMBOL vmlinux 0x5afb2c8a journal_init_dev +EXPORT_SYMBOL vmlinux 0x5b150a0a spi_attach_transport +EXPORT_SYMBOL vmlinux 0x5b1eb0df vfs_unlink +EXPORT_SYMBOL vmlinux 0x5b39cef8 __locks_copy_lock +EXPORT_SYMBOL vmlinux 0x5b51c6a7 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x5b5b5293 mpage_writepages +EXPORT_SYMBOL vmlinux 0x5b72def0 cdrom_release +EXPORT_SYMBOL vmlinux 0x5be09138 arp_invalidate +EXPORT_SYMBOL vmlinux 0x5c1418bd tcp_ioctl +EXPORT_SYMBOL vmlinux 0x5c1660b7 inode_init_always +EXPORT_SYMBOL vmlinux 0x5c3e81bc block_write_begin +EXPORT_SYMBOL vmlinux 0x5c3edd59 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x5c462ff1 uart_register_driver +EXPORT_SYMBOL vmlinux 0x5c529935 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x5c72b0bc ip6_route_output +EXPORT_SYMBOL vmlinux 0x5c826ca0 dev_uc_init +EXPORT_SYMBOL vmlinux 0x5c894515 inet_shutdown +EXPORT_SYMBOL vmlinux 0x5ca40c2f input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x5cbeb8bc skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x5cc8e015 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x5ccf9f82 tcp_prot +EXPORT_SYMBOL vmlinux 0x5cdaf266 kthread_bind +EXPORT_SYMBOL vmlinux 0x5d184e58 mdiobus_write +EXPORT_SYMBOL vmlinux 0x5d3bcfa3 journal_start_commit +EXPORT_SYMBOL vmlinux 0x5d48dff4 locks_init_lock +EXPORT_SYMBOL vmlinux 0x5d5b5a16 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x5d6ed12a framebuffer_release +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d990fa5 d_invalidate +EXPORT_SYMBOL vmlinux 0x5d9fba80 alloc_tty_driver +EXPORT_SYMBOL vmlinux 0x5dc467d4 consume_skb +EXPORT_SYMBOL vmlinux 0x5dce6b75 complete_and_exit +EXPORT_SYMBOL vmlinux 0x5dfe1f86 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5e470a95 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x5e5a485a inet_release +EXPORT_SYMBOL vmlinux 0x5e6947f7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x5e73edb8 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x5e8affc3 agp_free_memory +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9dea52 dma_pool_create +EXPORT_SYMBOL vmlinux 0x5ea67db2 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x5eac835b blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5edd0762 bin2bcd +EXPORT_SYMBOL vmlinux 0x5effd679 pci_enable_device +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f20a517 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x5f27544a mempool_destroy +EXPORT_SYMBOL vmlinux 0x5f58f676 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x5f5d358e no_llseek +EXPORT_SYMBOL vmlinux 0x5f5de045 lro_receive_frags +EXPORT_SYMBOL vmlinux 0x5f75e383 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x5f81a3eb tcp_syn_flood_action +EXPORT_SYMBOL vmlinux 0x5f85ab28 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x5fa17c73 sk_filter_release_rcu +EXPORT_SYMBOL vmlinux 0x5fa1fb37 vfs_writev +EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr +EXPORT_SYMBOL vmlinux 0x5fe41fb6 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x5ff42b08 acpi_video_get_capabilities +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x603ecd22 blk_queue_merge_bvec +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606ff9a7 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x607fbf22 sk_wait_data +EXPORT_SYMBOL vmlinux 0x60966184 phy_find_first +EXPORT_SYMBOL vmlinux 0x6096891d cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x60981538 tty_port_close +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60a998ee journal_set_features +EXPORT_SYMBOL vmlinux 0x60aa0365 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x60b2e38a rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x60c16803 bio_split +EXPORT_SYMBOL vmlinux 0x60df93d8 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x60fdf15f dev_alloc_name +EXPORT_SYMBOL vmlinux 0x612390ad netpoll_set_trap +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6130229e skb_gro_reset_offset +EXPORT_SYMBOL vmlinux 0x61592586 generic_pipe_buf_map +EXPORT_SYMBOL vmlinux 0x61658928 tty_port_open +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x61946d1d blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x619b187b add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x61b5ade0 down_write +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61baffda tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x61f264e9 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x621d77a0 sleep_on +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62294052 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x622fa02a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x625b931f page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x626ef31d i2c_clients_command +EXPORT_SYMBOL vmlinux 0x626f06fa ip_getsockopt +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62748e70 acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x6288d358 md_done_sync +EXPORT_SYMBOL vmlinux 0x629b3920 alloc_pages_exact_nid +EXPORT_SYMBOL vmlinux 0x629f2b47 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0x62a9f40f xfrm_cfg_mutex +EXPORT_SYMBOL vmlinux 0x62b71096 scsi_finish_command +EXPORT_SYMBOL vmlinux 0x62cb4cee interruptible_sleep_on +EXPORT_SYMBOL vmlinux 0x62e85277 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x62f2591f kill_fasync +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6322d984 skb_queue_head +EXPORT_SYMBOL vmlinux 0x6332cc1a audit_log_start +EXPORT_SYMBOL vmlinux 0x6337dfce ab8500_gpadc_convert +EXPORT_SYMBOL vmlinux 0x633c6b9e empty_aops +EXPORT_SYMBOL vmlinux 0x634e670e con_is_bound +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x63a629ad vmap +EXPORT_SYMBOL vmlinux 0x63b3406c gen_pool_free +EXPORT_SYMBOL vmlinux 0x63e1674c d_instantiate +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ecad53 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x63f3e659 generic_setxattr +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64052175 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x641e53d5 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x643ca956 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x643eaec8 param_get_string +EXPORT_SYMBOL vmlinux 0x64497aa1 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x6469404b jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x64765394 tty_name +EXPORT_SYMBOL vmlinux 0x6478134c ec_burst_enable +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649bf44f jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x64a7a716 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x64ceed9b vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x64e7dbd4 aio_complete +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64f29e8c scsi_prep_fn +EXPORT_SYMBOL vmlinux 0x64fe69f4 console_stop +EXPORT_SYMBOL vmlinux 0x65033ab0 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651ed951 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x65220759 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x65223fd0 mntget +EXPORT_SYMBOL vmlinux 0x65288186 follow_pfn +EXPORT_SYMBOL vmlinux 0x65291cff timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65414e67 dev_valid_name +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x655fe9c2 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x6575675e d_delete +EXPORT_SYMBOL vmlinux 0x657879ce __init_rwsem +EXPORT_SYMBOL vmlinux 0x65799717 register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x657d9ff7 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x659a22c2 sock_create_kern +EXPORT_SYMBOL vmlinux 0x65a79ca1 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x65b41018 sk_stream_error +EXPORT_SYMBOL vmlinux 0x65be96a8 dev_set_drvdata +EXPORT_SYMBOL vmlinux 0x65c3c851 soft_cursor +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65fe9100 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x6603b268 dev_addr_del +EXPORT_SYMBOL vmlinux 0x6605f97f flex_array_clear +EXPORT_SYMBOL vmlinux 0x66863562 thaw_super +EXPORT_SYMBOL vmlinux 0x668da8d5 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x6696ab24 simple_getattr +EXPORT_SYMBOL vmlinux 0x66a67dab flex_array_shrink +EXPORT_SYMBOL vmlinux 0x66a69f79 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x66a6cfed ida_get_new_above +EXPORT_SYMBOL vmlinux 0x66b0ab27 pci_disable_ltr +EXPORT_SYMBOL vmlinux 0x66b8e74e skb_copy_datagram_const_iovec +EXPORT_SYMBOL vmlinux 0x66c77c30 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x66d0ee54 vfsmount_lock_global_unlock +EXPORT_SYMBOL vmlinux 0x67053080 current_kernel_time +EXPORT_SYMBOL vmlinux 0x672144bd strlcpy +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x6738db53 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6759863d set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x675ca77b abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x6766a014 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x677d47ef acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x677e86bd sk_filter +EXPORT_SYMBOL vmlinux 0x678047ec blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x679c84dc inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b68265 udp_prot +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c48c39 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x67f7403e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x68215eb5 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x6831597c mmc_regulator_set_ocr +EXPORT_SYMBOL vmlinux 0x6843ca74 do_splice_to +EXPORT_SYMBOL vmlinux 0x6848b67b jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6855637e gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688efc59 dev_alert +EXPORT_SYMBOL vmlinux 0x68a52286 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x68be52e5 install_exec_creds +EXPORT_SYMBOL vmlinux 0x68d002f1 scsi_print_result +EXPORT_SYMBOL vmlinux 0x68dd5f74 scsi_nonblockable_ioctl +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x6929e314 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x69559689 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x695e9445 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x696aa43b deactivate_super +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x6989e59a proc_mkdir +EXPORT_SYMBOL vmlinux 0x698f34e7 generic_setlease +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69a4a83b dev_get_drvdata +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b040d7 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x69d38ed9 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x69d78cec acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x69da99e6 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x69e27c7a bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x69faaf15 scsi_calculate_bounce_limit +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a06bc9f ip_setsockopt +EXPORT_SYMBOL vmlinux 0x6a32f3d9 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x6a48e16b percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a9be125 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x6aa445c3 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x6aab6536 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x6aad551e mdiobus_alloc +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6afa1a2a __ps2_command +EXPORT_SYMBOL vmlinux 0x6afb6077 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x6b006c78 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2b7dd7 filp_close +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b38d149 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x6b5a97f1 vmtruncate +EXPORT_SYMBOL vmlinux 0x6b5e29fd serio_reconnect +EXPORT_SYMBOL vmlinux 0x6b90fca9 pci_enable_ido +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcfa223 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x6bd63cf7 __devm_request_region +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be5c907 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x6c005ebb get_write_access +EXPORT_SYMBOL vmlinux 0x6c00910f mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x6c05c697 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x6c3164cd path_put +EXPORT_SYMBOL vmlinux 0x6c3473b8 dqput +EXPORT_SYMBOL vmlinux 0x6c356351 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x6c368547 netdev_emerg +EXPORT_SYMBOL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL vmlinux 0x6c5173f5 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x6c51c453 ida_init +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c9bea24 do_sync_write +EXPORT_SYMBOL vmlinux 0x6cbfac6a del_gendisk +EXPORT_SYMBOL vmlinux 0x6cce576d kill_block_super +EXPORT_SYMBOL vmlinux 0x6cf4225a i2c_transfer +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d27ef64 __bitmap_empty +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2c5315 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d44efd5 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x6d6cbadc rb_last +EXPORT_SYMBOL vmlinux 0x6d74c2ff uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x6d8c6d07 ip_mc_rejoin_groups +EXPORT_SYMBOL vmlinux 0x6dbe1b6a iunique +EXPORT_SYMBOL vmlinux 0x6dc633df iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x6dd4b164 serio_interrupt +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6e07c137 fput +EXPORT_SYMBOL vmlinux 0x6e31fb3d __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x6e51ac2e _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x6e538d12 vfs_symlink +EXPORT_SYMBOL vmlinux 0x6e65f2dc rtc_lock +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e749c8a skb_make_writable +EXPORT_SYMBOL vmlinux 0x6e750008 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea82895 cpu_sysdev_class +EXPORT_SYMBOL vmlinux 0x6ece4aa1 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x6eeba7e1 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x6eeda251 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x6efcf21f netdev_set_bond_master +EXPORT_SYMBOL vmlinux 0x6efd4c85 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x6f29a9b9 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x6f390440 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x6f39082e i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x6f46f83e ata_link_printk +EXPORT_SYMBOL vmlinux 0x6f53bf03 ping_prot +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv +EXPORT_SYMBOL vmlinux 0x6f75cdfa security_path_mknod +EXPORT_SYMBOL vmlinux 0x6fa999b9 genphy_suspend +EXPORT_SYMBOL vmlinux 0x6fc2d0a4 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x6fc4b313 fb_blank +EXPORT_SYMBOL vmlinux 0x6fc79d6e mmc_cache_ctrl +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd4f7a5 set_trace_device +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6ff3a2de inet_frags_init +EXPORT_SYMBOL vmlinux 0x6ffdd371 fasync_helper +EXPORT_SYMBOL vmlinux 0x6fff393f time_to_tm +EXPORT_SYMBOL vmlinux 0x701398e3 pci_dev_put +EXPORT_SYMBOL vmlinux 0x701db8ce security_path_chmod +EXPORT_SYMBOL vmlinux 0x7029c775 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x703b4352 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x703ee221 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x704e0294 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x705f9739 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x70bc17d7 inode_wait +EXPORT_SYMBOL vmlinux 0x70c951b4 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x70d053fd try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70e0d61f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x70fadfe7 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x710ade96 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x7114a71f bit_waitqueue +EXPORT_SYMBOL vmlinux 0x7127615d blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712c2345 tcp_poll +EXPORT_SYMBOL vmlinux 0x713f10de dev_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x714774cf iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x71494f26 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x714d3ebb xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x71556ab5 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7172e477 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x717dfc3c scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x7181e711 scsi_put_command +EXPORT_SYMBOL vmlinux 0x719c02d0 scsi_allocate_command +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a6291a ps2_handle_response +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b250d3 wait_on_sync_kiocb +EXPORT_SYMBOL vmlinux 0x71b314d7 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x71bb41e4 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x71cfc1ba xfrm_register_type +EXPORT_SYMBOL vmlinux 0x71d957cb uart_add_one_port +EXPORT_SYMBOL vmlinux 0x71dade1f netdev_notice +EXPORT_SYMBOL vmlinux 0x71f6eb38 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x7205b815 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x720ace3d __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x7234eafb otg_state_string +EXPORT_SYMBOL vmlinux 0x723acc8d kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x723c73af migrate_page +EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x7277dfaa __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x729d512b vm_event_states +EXPORT_SYMBOL vmlinux 0x72a47cac ps2_begin_command +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72aa82c6 param_ops_charp +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72bddc15 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x72bf2140 mtrr_add +EXPORT_SYMBOL vmlinux 0x72dc7a8a xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x72df2f2a up_read +EXPORT_SYMBOL vmlinux 0x72e71286 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ee3a21 i2c_release_client +EXPORT_SYMBOL vmlinux 0x730ff363 param_set_uint +EXPORT_SYMBOL vmlinux 0x732b7833 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x7331f14a kill_pid +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734397fd follow_down_one +EXPORT_SYMBOL vmlinux 0x734f6647 __d_drop +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x736c79dc param_get_byte +EXPORT_SYMBOL vmlinux 0x737de5e9 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x73a903c4 vfsmount_lock_local_lock +EXPORT_SYMBOL vmlinux 0x73cd846e blk_stop_queue +EXPORT_SYMBOL vmlinux 0x73d54d54 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x73dd2d1f serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x73efed04 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x73f11212 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x73fb710f tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x742342ca kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x7429bee3 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x742bf443 unlock_rename +EXPORT_SYMBOL vmlinux 0x7469fcfe radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74a908d7 do_sync_read +EXPORT_SYMBOL vmlinux 0x74bc756a proc_dostring +EXPORT_SYMBOL vmlinux 0x74c05a7e __napi_complete +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c427b3 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x74c7ac96 request_firmware +EXPORT_SYMBOL vmlinux 0x74cb5a1a first_ec +EXPORT_SYMBOL vmlinux 0x74cc1cbe unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x74e58641 serio_open +EXPORT_SYMBOL vmlinux 0x75115395 phy_attach +EXPORT_SYMBOL vmlinux 0x751b2247 param_get_bool +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x75461be3 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x756e6992 strnicmp +EXPORT_SYMBOL vmlinux 0x75752a30 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x758df1e2 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x759d033b blkdev_put +EXPORT_SYMBOL vmlinux 0x75aafb86 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x75ac0197 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x75aeb906 page_readlink +EXPORT_SYMBOL vmlinux 0x75ba26d9 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x75bb675a finish_wait +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d8c6ab find_vma +EXPORT_SYMBOL vmlinux 0x75dd862f compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x75ee72cd pci_choose_state +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x7604b55e scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x7605e990 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760b437a unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x76226a93 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x7628f3c7 this_cpu_off +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x76486108 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x766d4904 page_put_link +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x76bf656d __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76f6851d blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x76fac375 tty_vhangup +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772300da blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x772f9eec __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x773a9c94 blk_iopoll_enabled +EXPORT_SYMBOL vmlinux 0x774207dc tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x77447622 skb_set_dev +EXPORT_SYMBOL vmlinux 0x77498415 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x7759110a napi_gro_receive +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779b9540 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x779cdd8b __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x77b3da4f sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x77b71734 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c39884 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x77cb0ab8 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x77df0847 __set_personality +EXPORT_SYMBOL vmlinux 0x77ecac9f zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x77fa5d1f ns_to_timespec +EXPORT_SYMBOL vmlinux 0x7805cda4 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x783bbb98 dns_query +EXPORT_SYMBOL vmlinux 0x78616bdc nla_put +EXPORT_SYMBOL vmlinux 0x7869ade0 inode_init_owner +EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788d2a9a idr_remove +EXPORT_SYMBOL vmlinux 0x78bb2011 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x78dc6b04 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78fefcc7 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x79243028 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x794db4cc __rta_fill +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x799d39d2 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79c55d6c __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x79d72e4a scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x7a1390f7 param_set_bool +EXPORT_SYMBOL vmlinux 0x7a27c184 ewma_init +EXPORT_SYMBOL vmlinux 0x7a35b6aa nf_log_register +EXPORT_SYMBOL vmlinux 0x7a3a34d0 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7a3cb25c pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x7a3e7e33 balance_dirty_pages_ratelimited_nr +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a50a315 files_lglock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x7a69be8a genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x7a6b1d49 ps2_end_command +EXPORT_SYMBOL vmlinux 0x7a7ad283 intel_gtt_insert_pages +EXPORT_SYMBOL vmlinux 0x7a8599b2 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x7a8de8ed tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x7a9bf88d udplite_table +EXPORT_SYMBOL vmlinux 0x7aa81449 tcf_hash_release +EXPORT_SYMBOL vmlinux 0x7ab8bd78 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x7ad118ea write_cache_pages +EXPORT_SYMBOL vmlinux 0x7ae73de1 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7aee4327 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x7b03848a verify_mem_not_deleted +EXPORT_SYMBOL vmlinux 0x7b0c84c4 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7b414a59 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b56bd05 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x7b5ae925 end_writeback +EXPORT_SYMBOL vmlinux 0x7b8f0a0a acpi_unlock_ac_dir +EXPORT_SYMBOL vmlinux 0x7b8f4c40 key_create_or_update +EXPORT_SYMBOL vmlinux 0x7b9a6116 intel_agp_enabled +EXPORT_SYMBOL vmlinux 0x7bac4b83 block_truncate_page +EXPORT_SYMBOL vmlinux 0x7be5cbcb wake_up_process +EXPORT_SYMBOL vmlinux 0x7bff3be7 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x7c08836a scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7c2db900 tcp_connect +EXPORT_SYMBOL vmlinux 0x7c3dbaac kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c481a17 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x7c60d66e getname +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c904ded unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb90128 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x7cc087c1 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x7ce0ae7c param_get_long +EXPORT_SYMBOL vmlinux 0x7d10dec9 filemap_flush +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d3191d9 __find_get_block +EXPORT_SYMBOL vmlinux 0x7d4d604e acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x7d5387ed otg_get_transceiver +EXPORT_SYMBOL vmlinux 0x7d54056e seq_puts +EXPORT_SYMBOL vmlinux 0x7d6bb587 cpu_online_mask +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dd46ebd inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7dd82947 __register_chrdev +EXPORT_SYMBOL vmlinux 0x7ddd9e9e simple_readpage +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e11ded2 spi_display_xfer_agreement +EXPORT_SYMBOL vmlinux 0x7e17919d set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x7e199063 neigh_table_init +EXPORT_SYMBOL vmlinux 0x7e2aba2d tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0x7e2cc317 intel_gtt_map_memory +EXPORT_SYMBOL vmlinux 0x7e394c4e sysctl_local_reserved_ports +EXPORT_SYMBOL vmlinux 0x7e44bb02 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x7e48eef7 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x7e4937a6 mmc_request_done +EXPORT_SYMBOL vmlinux 0x7e59a446 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x7e7f96d0 writeback_inodes_sb_nr_if_idle +EXPORT_SYMBOL vmlinux 0x7e8227ef lock_fb_info +EXPORT_SYMBOL vmlinux 0x7e9ebb05 kernel_thread +EXPORT_SYMBOL vmlinux 0x7ea6b130 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x7eaf71ec agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x7eb6ffff is_container_init +EXPORT_SYMBOL vmlinux 0x7eb8b670 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x7ec8f9a7 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x7ec9bfbc strncpy +EXPORT_SYMBOL vmlinux 0x7f18b194 kacpi_hotplug_wq +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2a7b1a register_snap_client +EXPORT_SYMBOL vmlinux 0x7f3251da __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x7f37a4a0 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x7f3eed08 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x7f658e80 _raw_write_lock +EXPORT_SYMBOL vmlinux 0x7f6bf0b1 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x7f6f9d8d cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x7fa94fa9 generic_write_checks +EXPORT_SYMBOL vmlinux 0x7fb7e45f mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x7fe3b51d cap_netlink_recv +EXPORT_SYMBOL vmlinux 0x7fe7cad5 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x800dab10 skb_copy_datagram_from_iovec +EXPORT_SYMBOL vmlinux 0x8030bb13 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x803d9fc2 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x807d2391 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x80a88c0a mmc_host_disable +EXPORT_SYMBOL vmlinux 0x80c36fe2 vm_map_ram +EXPORT_SYMBOL vmlinux 0x80cc8342 netlink_unicast +EXPORT_SYMBOL vmlinux 0x810b3618 param_ops_string +EXPORT_SYMBOL vmlinux 0x81317012 tmem_enabled +EXPORT_SYMBOL vmlinux 0x813bbe7d bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x8150c0ba mempool_resize +EXPORT_SYMBOL vmlinux 0x8158db9b max8998_write_reg +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x8161b372 proc_dointvec +EXPORT_SYMBOL vmlinux 0x817a0af2 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x81bd0fe1 thermal_cooling_device_register +EXPORT_SYMBOL vmlinux 0x81c8e072 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x81d10f5f trace_seq_putc +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820f80fc cfb_fillrect +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x8246f523 find_lock_page +EXPORT_SYMBOL vmlinux 0x8251bcc3 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x8260686f bitmap_find_next_zero_area +EXPORT_SYMBOL vmlinux 0x82673567 bio_integrity_get_tag +EXPORT_SYMBOL vmlinux 0x8268244e agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x8273a948 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x827bf51b register_8022_client +EXPORT_SYMBOL vmlinux 0x829c4cd8 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82bf9b34 dev_driver_string +EXPORT_SYMBOL vmlinux 0x82c16327 dump_trace +EXPORT_SYMBOL vmlinux 0x82c1864f ll_rw_block +EXPORT_SYMBOL vmlinux 0x82e9c083 csum_partial_copy_fromiovecend +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x83800bfa kref_init +EXPORT_SYMBOL vmlinux 0x8384a2c5 tty_unlock +EXPORT_SYMBOL vmlinux 0x838e6d7d mntput +EXPORT_SYMBOL vmlinux 0x83a476ce bitmap_scnlistprintf +EXPORT_SYMBOL vmlinux 0x83f3c3e8 dev_change_flags +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x841ec671 blk_get_queue +EXPORT_SYMBOL vmlinux 0x8434e4e8 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x8436f8e3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x843bb5ea fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x8443b2ef xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x846bcc01 dm_table_get +EXPORT_SYMBOL vmlinux 0x84865180 bdevname +EXPORT_SYMBOL vmlinux 0x8488b930 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x8489d222 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x848e9c3f shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x84b71830 tcp_child_process +EXPORT_SYMBOL vmlinux 0x84be886f completion_done +EXPORT_SYMBOL vmlinux 0x84d420ce sock_update_classid +EXPORT_SYMBOL vmlinux 0x84d90a5d netdev_warn +EXPORT_SYMBOL vmlinux 0x85111d24 set_create_files_as +EXPORT_SYMBOL vmlinux 0x85196d0f pci_disable_msix +EXPORT_SYMBOL vmlinux 0x85220159 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x8531ed60 key_unlink +EXPORT_SYMBOL vmlinux 0x8547a480 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856970b7 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x856dab93 set_current_groups +EXPORT_SYMBOL vmlinux 0x8584cd1e seq_open_private +EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85d16790 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x863d33a6 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8651c724 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86b46881 simple_setattr +EXPORT_SYMBOL vmlinux 0x86bfae20 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x86c4ed11 input_register_device +EXPORT_SYMBOL vmlinux 0x86c7146d vfs_fstat +EXPORT_SYMBOL vmlinux 0x86d5255f _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x86ecf86f dev_gro_receive +EXPORT_SYMBOL vmlinux 0x86f7d132 i2c_use_client +EXPORT_SYMBOL vmlinux 0x86f7d510 tty_mutex +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8709ccf4 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x870bf928 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87463495 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x877bfefd __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x8799fe5e unregister_8022_client +EXPORT_SYMBOL vmlinux 0x879f79f2 vfs_link +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87b35f71 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x87d27edf inet_add_protocol +EXPORT_SYMBOL vmlinux 0x87efdd41 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x88078b6b d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x881039d0 zlib_inflate +EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x8834396c mod_timer +EXPORT_SYMBOL vmlinux 0x883ec23b dm_io +EXPORT_SYMBOL vmlinux 0x883f8b13 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x8855cfa5 netlink_ack +EXPORT_SYMBOL vmlinux 0x885e1ca4 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x88800d39 generic_pipe_buf_unmap +EXPORT_SYMBOL vmlinux 0x88c7e0fb remove_proc_entry +EXPORT_SYMBOL vmlinux 0x890c2a92 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x89299eec simple_lookup +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x8966225e jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x897473df mktime +EXPORT_SYMBOL vmlinux 0x897fb163 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x8987002b mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c08d3b pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d66811 build_ehash_secret +EXPORT_SYMBOL vmlinux 0x89de6576 simple_empty +EXPORT_SYMBOL vmlinux 0x8a1615d6 mempool_create_node +EXPORT_SYMBOL vmlinux 0x8a285f16 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x8a3a531e udp_proc_register +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a5e05b4 tcf_hash_lookup +EXPORT_SYMBOL vmlinux 0x8a608888 new_inode +EXPORT_SYMBOL vmlinux 0x8a60c24b input_inject_event +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a88b223 truncate_setsize +EXPORT_SYMBOL vmlinux 0x8a8a10fb blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x8a8a58e3 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x8a9694a9 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9d64ff ida_pre_get +EXPORT_SYMBOL vmlinux 0x8aae4fae journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x8ac41199 dev_emerg +EXPORT_SYMBOL vmlinux 0x8af6d042 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x8b0d27e8 generic_file_aio_write +EXPORT_SYMBOL vmlinux 0x8b1a7a66 pcie_aspm_enabled +EXPORT_SYMBOL vmlinux 0x8b34495a follow_up +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b37615a xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x8b3a0f18 dma_supported +EXPORT_SYMBOL vmlinux 0x8b4f10c1 __lock_buffer +EXPORT_SYMBOL vmlinux 0x8b5f4a2e IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b70097e acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x8b7fe311 kmemdup +EXPORT_SYMBOL vmlinux 0x8b7ff9ec d_genocide +EXPORT_SYMBOL vmlinux 0x8b8b770d agp_bridge +EXPORT_SYMBOL vmlinux 0x8b922c0f __strnlen_user +EXPORT_SYMBOL vmlinux 0x8b96c350 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8b9bc11f free_netdev +EXPORT_SYMBOL vmlinux 0x8bd22ab3 __bread +EXPORT_SYMBOL vmlinux 0x8bd43c76 unregister_exec_domain +EXPORT_SYMBOL vmlinux 0x8bd48e10 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x8be37fa2 blk_start_request +EXPORT_SYMBOL vmlinux 0x8bf01da9 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x8bf92ec1 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x8c078b6d jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x8c082329 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x8c0db29e pci_read_vpd +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c186f98 inet_frag_evictor +EXPORT_SYMBOL vmlinux 0x8c37c47d tcp_splice_read +EXPORT_SYMBOL vmlinux 0x8c4a7b7a open_exec +EXPORT_SYMBOL vmlinux 0x8c5e35bc vfs_getattr +EXPORT_SYMBOL vmlinux 0x8cc4f7fd tcf_hash_destroy +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ce9f1bf km_state_notify +EXPORT_SYMBOL vmlinux 0x8cf631b5 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x8d1709a1 block_write_full_page +EXPORT_SYMBOL vmlinux 0x8d229667 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x8d269fe3 flock_lock_file_wait +EXPORT_SYMBOL vmlinux 0x8d2e2c9c acpi_lock_battery_dir +EXPORT_SYMBOL vmlinux 0x8d49657f vfs_mknod +EXPORT_SYMBOL vmlinux 0x8d4e5222 bio_integrity_tag_size +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d5c4673 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x8d6906d4 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x8d6d233b __scsi_put_command +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d9516d4 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x8d96e8ad pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8db07ac0 unlock_buffer +EXPORT_SYMBOL vmlinux 0x8dc27f1b security_file_mmap +EXPORT_SYMBOL vmlinux 0x8dc9dd18 __mutex_init +EXPORT_SYMBOL vmlinux 0x8dcd77e0 bdput +EXPORT_SYMBOL vmlinux 0x8ddd0a72 neigh_update +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e0b7743 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x8e0c5172 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x8e0f423a generic_permission +EXPORT_SYMBOL vmlinux 0x8e555738 param_get_uint +EXPORT_SYMBOL vmlinux 0x8e793469 secpath_dup +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ebd3ad3 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x8ec115ff xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x8ec4cbc8 skb_copy +EXPORT_SYMBOL vmlinux 0x8edf044f pci_set_power_state +EXPORT_SYMBOL vmlinux 0x8ee69235 timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8efd72e1 unregister_nls +EXPORT_SYMBOL vmlinux 0x8f175aeb dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x8f249d9b compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f48679a rb_prev +EXPORT_SYMBOL vmlinux 0x8f4b6745 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x8f4eaf98 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x8f636d23 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x8f6c905b jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x8f767d07 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa162a5 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x8fa2f403 elv_rb_find +EXPORT_SYMBOL vmlinux 0x8fc08da3 __devm_release_region +EXPORT_SYMBOL vmlinux 0x8fc1cb9a phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x8fc7f839 param_set_charp +EXPORT_SYMBOL vmlinux 0x8fdc0a9a dquot_get_dqinfo +EXPORT_SYMBOL vmlinux 0x8fe64ba3 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x8fe680b2 scsi_reset_provider +EXPORT_SYMBOL vmlinux 0x8fea7e14 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x8ff66782 param_get_ushort +EXPORT_SYMBOL vmlinux 0x90076c43 skb_pad +EXPORT_SYMBOL vmlinux 0x90338455 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x90374427 noop_fsync +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x9065e8d0 pci_enable_msi_block +EXPORT_SYMBOL vmlinux 0x90856be0 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x90a1601f dmi_check_system +EXPORT_SYMBOL vmlinux 0x90ad46cb tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x912a7bf2 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x912bb8f8 __block_write_begin +EXPORT_SYMBOL vmlinux 0x912f1b15 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x9144a8e2 ec_burst_disable +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x9146518e dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91b40629 dma_ops +EXPORT_SYMBOL vmlinux 0x91b69586 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x91cffd27 inet_getname +EXPORT_SYMBOL vmlinux 0x91eb002d vfs_create +EXPORT_SYMBOL vmlinux 0x92328aa6 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x92392cd9 iov_shorten +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924c334f journal_errno +EXPORT_SYMBOL vmlinux 0x924d41c8 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x926662e3 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x92bc862c journal_restart +EXPORT_SYMBOL vmlinux 0x92ea4ae4 crc32_le +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93118419 destroy_EII_client +EXPORT_SYMBOL vmlinux 0x93448c57 screen_info +EXPORT_SYMBOL vmlinux 0x9352170b alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x9358979e __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x9381127e block_invalidatepage +EXPORT_SYMBOL vmlinux 0x93874ebe dquot_scan_active +EXPORT_SYMBOL vmlinux 0x93a3f981 spi_dv_device +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93ba81b9 dev_mc_add +EXPORT_SYMBOL vmlinux 0x93be24d3 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x93c651be acpi_info +EXPORT_SYMBOL vmlinux 0x93e6d09a kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9423616f bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x942a3135 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x942eb440 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x942f8345 tty_register_device +EXPORT_SYMBOL vmlinux 0x9430e79b pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x947f5e15 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x94864c7a wl12xx_get_platform_data +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949e9f3e phy_start +EXPORT_SYMBOL vmlinux 0x9518b623 register_shrinker +EXPORT_SYMBOL vmlinux 0x9535278c abort_creds +EXPORT_SYMBOL vmlinux 0x95380c2c __elv_add_request +EXPORT_SYMBOL vmlinux 0x95389c10 tty_get_baud_rate +EXPORT_SYMBOL vmlinux 0x953db383 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x954488a4 syncookie_secret +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95484b47 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x956014b4 mmc_host_enable +EXPORT_SYMBOL vmlinux 0x957eed67 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x9581ea62 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x958e7699 pci_set_master +EXPORT_SYMBOL vmlinux 0x95aac154 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x95baba75 send_sig +EXPORT_SYMBOL vmlinux 0x95cc338c dst_discard +EXPORT_SYMBOL vmlinux 0x95ceb864 key_update +EXPORT_SYMBOL vmlinux 0x95d90a11 write_inode_now +EXPORT_SYMBOL vmlinux 0x95f89a33 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x95fc3ebb llc_add_pack +EXPORT_SYMBOL vmlinux 0x96461cf9 kill_litter_super +EXPORT_SYMBOL vmlinux 0x9651a2d4 mpage_readpages +EXPORT_SYMBOL vmlinux 0x965439aa tcp_v4_get_peer +EXPORT_SYMBOL vmlinux 0x966c8fbf bio_unmap_user +EXPORT_SYMBOL vmlinux 0x96958e6c dev_get_flags +EXPORT_SYMBOL vmlinux 0x9696ac72 rename_lock +EXPORT_SYMBOL vmlinux 0x96b8e0de dev_get_by_name +EXPORT_SYMBOL vmlinux 0x96bd23b5 unlock_page +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d1f2a7 mmc_assume_removable +EXPORT_SYMBOL vmlinux 0x96f0c11d __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x970110d3 scsi_device_get +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x9775093d __nla_reserve +EXPORT_SYMBOL vmlinux 0x97753333 skb_trim +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979c15c6 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97e74f56 key_revoke +EXPORT_SYMBOL vmlinux 0x98054af5 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x98178144 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x98233aa1 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x9828a976 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x9831e9e4 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x98661317 skb_unlink +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x986ed263 lro_flush_pkt +EXPORT_SYMBOL vmlinux 0x987843d5 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98a6b419 dev_add_pack +EXPORT_SYMBOL vmlinux 0x98daf818 ip_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x98e09c4e netdev_features_change +EXPORT_SYMBOL vmlinux 0x98f3c3cd generic_file_open +EXPORT_SYMBOL vmlinux 0x98fa21b0 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x990a9a2e generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x990c9092 i2c_smbus_process_call +EXPORT_SYMBOL vmlinux 0x990cae58 mount_nodev +EXPORT_SYMBOL vmlinux 0x991dfa06 sk_dst_check +EXPORT_SYMBOL vmlinux 0x9924ceb6 init_special_inode +EXPORT_SYMBOL vmlinux 0x992d52a3 qdisc_tree_decrease_qlen +EXPORT_SYMBOL vmlinux 0x994f762c dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x99525e3a vfsmount_lock_local_unlock +EXPORT_SYMBOL vmlinux 0x995fbe61 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x996a1cac inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x997378e8 locks_delete_block +EXPORT_SYMBOL vmlinux 0x99827fcf pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a70a44 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x99b3e90c idr_destroy +EXPORT_SYMBOL vmlinux 0x99b4c1d5 register_con_driver +EXPORT_SYMBOL vmlinux 0x99bbdb76 log_start_commit +EXPORT_SYMBOL vmlinux 0x99bfbe39 get_unused_fd +EXPORT_SYMBOL vmlinux 0x99c9100d xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99de25d2 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x99e186af sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x9a0fcf4e vga_get +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a26f847 simple_fill_super +EXPORT_SYMBOL vmlinux 0x9a30303f generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x9a54a9c4 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x9a992779 registered_fb +EXPORT_SYMBOL vmlinux 0x9aa85810 scsi_register +EXPORT_SYMBOL vmlinux 0x9aabc564 crc16 +EXPORT_SYMBOL vmlinux 0x9ab8808c param_get_charp +EXPORT_SYMBOL vmlinux 0x9ad0e946 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x9adbd923 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x9aefa4ba sk_reset_timer +EXPORT_SYMBOL vmlinux 0x9b09b784 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x9b196a77 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x9b230a5b blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x9b374c20 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b5d3c43 kern_unmount +EXPORT_SYMBOL vmlinux 0x9b75cb81 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x9b8da20c jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x9ba1d252 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbb8a30 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x9bbd70d9 cad_pid +EXPORT_SYMBOL vmlinux 0x9bdf3806 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x9c012508 fb_parse_edid +EXPORT_SYMBOL vmlinux 0x9c08a3b7 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x9c0ea3cd memscan +EXPORT_SYMBOL vmlinux 0x9c15f7d0 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x9c2a8e43 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c56c07f file_open_root +EXPORT_SYMBOL vmlinux 0x9c5aa1df flush_signals +EXPORT_SYMBOL vmlinux 0x9c5bea0b textsearch_destroy +EXPORT_SYMBOL vmlinux 0x9c5d50db sock_no_getname +EXPORT_SYMBOL vmlinux 0x9c5f81da cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x9c68400d phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x9c7527be scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x9c7d9811 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x9c8e270c sock_no_mmap +EXPORT_SYMBOL vmlinux 0x9c8ecd26 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0x9ca8bea7 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x9ca95a0e sort +EXPORT_SYMBOL vmlinux 0x9cb96e92 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x9cc924cb tcp_make_synack +EXPORT_SYMBOL vmlinux 0x9cdf0ec5 vfsmount_lock_global_lock_online +EXPORT_SYMBOL vmlinux 0x9cf10481 pci_target_state +EXPORT_SYMBOL vmlinux 0x9cfd56c5 scsi_print_status +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d3d0f23 make_bad_inode +EXPORT_SYMBOL vmlinux 0x9d419cc3 dev_set_group +EXPORT_SYMBOL vmlinux 0x9d64f29f proc_net_netfilter +EXPORT_SYMBOL vmlinux 0x9da9adc0 kobject_init +EXPORT_SYMBOL vmlinux 0x9db21624 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x9db8bef3 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x9dbf34c3 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x9dd8385f generic_ro_fops +EXPORT_SYMBOL vmlinux 0x9dddf10f bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e15f5bf netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x9e21415b bdev_read_only +EXPORT_SYMBOL vmlinux 0x9e2b308c set_bdi_congested +EXPORT_SYMBOL vmlinux 0x9e2dad65 ip_nat_decode_session +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4d0001 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e607910 audit_log +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e8e47ec tty_write_room +EXPORT_SYMBOL vmlinux 0x9e95a526 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x9e9f1714 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x9ea0ad49 __sg_free_table +EXPORT_SYMBOL vmlinux 0x9ea7b7d7 register_netdevice +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ebdf059 x86_hyper +EXPORT_SYMBOL vmlinux 0x9ed4fc63 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x9edbc18f jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x9eecde16 do_brk +EXPORT_SYMBOL vmlinux 0x9f2bdaac __bitmap_or +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f57795d ethtool_op_get_tso +EXPORT_SYMBOL vmlinux 0x9f58c605 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x9f6e19ab mem_section +EXPORT_SYMBOL vmlinux 0x9f790a14 __seq_open_private +EXPORT_SYMBOL vmlinux 0x9f85f62b fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa4a45f xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x9fa9b6fa blk_integrity_is_initialized +EXPORT_SYMBOL vmlinux 0x9fb15a65 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x9fd39b5b dquot_transfer +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0xa00212f7 test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xa00b6f2f mb_cache_create +EXPORT_SYMBOL vmlinux 0xa0187cdd tty_port_close_start +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa0560640 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa05d8437 neigh_create +EXPORT_SYMBOL vmlinux 0xa05f6bc6 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xa06dfa35 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xa079a5be seq_lseek +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa0aa14e0 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xa0ad5f5d user_path_at +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b9ec18 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0xa0c6f734 would_dump +EXPORT_SYMBOL vmlinux 0xa0ceef51 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa145c110 generic_removexattr +EXPORT_SYMBOL vmlinux 0xa14cbd69 __scm_destroy +EXPORT_SYMBOL vmlinux 0xa14f3d8c ewma_add +EXPORT_SYMBOL vmlinux 0xa150a81a swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xa152825b ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xa167362f softnet_data +EXPORT_SYMBOL vmlinux 0xa16b06d9 journal_check_used_features +EXPORT_SYMBOL vmlinux 0xa18edd6f set_pages_wb +EXPORT_SYMBOL vmlinux 0xa1a4fadc scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xa1b1ea3a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1ba2fdb vfsmount_lock_global_lock +EXPORT_SYMBOL vmlinux 0xa1ba4b95 memcpy_fromiovecend +EXPORT_SYMBOL vmlinux 0xa1bf476a fb_find_mode +EXPORT_SYMBOL vmlinux 0xa1c5a3b3 cleancache_enabled +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d3a173 inet_addr_type +EXPORT_SYMBOL vmlinux 0xa1dbb3a1 generic_write_end +EXPORT_SYMBOL vmlinux 0xa1e5ba6e tty_shutdown +EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa1f0dd63 ps2_command +EXPORT_SYMBOL vmlinux 0xa1fd71e6 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xa20b0ae1 bio_clone +EXPORT_SYMBOL vmlinux 0xa20ce1b8 net_msg_warn +EXPORT_SYMBOL vmlinux 0xa21e8ac9 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xa220de8d tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xa2265d73 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xa23caa75 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xa26c4c86 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2a5fd77 inet_ehash_secret +EXPORT_SYMBOL vmlinux 0xa2ac6a93 tcp_check_req +EXPORT_SYMBOL vmlinux 0xa2b2f3ad dquot_initialize +EXPORT_SYMBOL vmlinux 0xa2c56c31 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa2d8faf8 key_task_permission +EXPORT_SYMBOL vmlinux 0xa2ef34d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xa2f8e4f0 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xa30cf925 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xa332cdd1 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa33b8d3a blk_fetch_request +EXPORT_SYMBOL vmlinux 0xa33eea3a dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xa33f7c7c nla_strlcpy +EXPORT_SYMBOL vmlinux 0xa3504378 rwsem_wake +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa355e4ad __pagevec_release +EXPORT_SYMBOL vmlinux 0xa35a0857 dcache_readdir +EXPORT_SYMBOL vmlinux 0xa35de80f ipv4_config +EXPORT_SYMBOL vmlinux 0xa3609a9a elevator_change +EXPORT_SYMBOL vmlinux 0xa363dab4 udp_table +EXPORT_SYMBOL vmlinux 0xa389fc58 call_usermodehelper_setfns +EXPORT_SYMBOL vmlinux 0xa3907eef alloc_disk_node +EXPORT_SYMBOL vmlinux 0xa3a5be95 memmove +EXPORT_SYMBOL vmlinux 0xa3af1dca pci_restore_state +EXPORT_SYMBOL vmlinux 0xa3cfa097 proto_register +EXPORT_SYMBOL vmlinux 0xa3d83db5 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xa3e8f329 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xa3f87585 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xa41469f5 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xa44f9957 dentry_open +EXPORT_SYMBOL vmlinux 0xa4502f94 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xa46bd0d0 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xa48568c1 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xa497d467 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c0e9e3 iput +EXPORT_SYMBOL vmlinux 0xa4c41694 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xa4c8163e udp_ioctl +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4eb4eff _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa4f905d6 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xa4fbaf4a ida_destroy +EXPORT_SYMBOL vmlinux 0xa5301817 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xa55be69b ether_setup +EXPORT_SYMBOL vmlinux 0xa56a67ee dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xa5950637 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5b82b11 dma_find_channel +EXPORT_SYMBOL vmlinux 0xa5c79ad8 setup_new_exec +EXPORT_SYMBOL vmlinux 0xa5cf40f9 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xa5dca88f tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa63f8879 tty_throttle +EXPORT_SYMBOL vmlinux 0xa653ec9f xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67606fd dev_uc_del +EXPORT_SYMBOL vmlinux 0xa67da660 mempool_alloc +EXPORT_SYMBOL vmlinux 0xa67e2845 dq_data_lock +EXPORT_SYMBOL vmlinux 0xa6816a4e max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6914a96 pci_get_slot +EXPORT_SYMBOL vmlinux 0xa6b13658 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xa6c778a1 arp_send +EXPORT_SYMBOL vmlinux 0xa6d1c14f bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xa6dcc773 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa6f2883e elv_rb_add +EXPORT_SYMBOL vmlinux 0xa705b3b7 skb_dequeue +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa72dd227 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xa736a057 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xa738230b grab_cache_page_nowait +EXPORT_SYMBOL vmlinux 0xa79448e3 security_path_rename +EXPORT_SYMBOL vmlinux 0xa7a76f1d __blk_run_queue +EXPORT_SYMBOL vmlinux 0xa7b5454b blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xa7b808c8 inet_ioctl +EXPORT_SYMBOL vmlinux 0xa816c525 schedule_work_on +EXPORT_SYMBOL vmlinux 0xa819d7d5 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xa8223905 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa8232c78 strtobool +EXPORT_SYMBOL vmlinux 0xa83a6390 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xa8470550 mmc_card_sleep +EXPORT_SYMBOL vmlinux 0xa86c6144 __bio_clone +EXPORT_SYMBOL vmlinux 0xa8854286 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xa886a958 krealloc +EXPORT_SYMBOL vmlinux 0xa8a6f639 __check_region +EXPORT_SYMBOL vmlinux 0xa8af0b60 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xa8b1b2e7 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xa8d68abd acpi_warning +EXPORT_SYMBOL vmlinux 0xa8fa7c6c poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa90a4ea5 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xa9194027 get_disk +EXPORT_SYMBOL vmlinux 0xa91b5561 acpi_video_backlight_support +EXPORT_SYMBOL vmlinux 0xa91c1fb7 scsi_free_command +EXPORT_SYMBOL vmlinux 0xa9471a71 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xa972efab unlock_super +EXPORT_SYMBOL vmlinux 0xa98866f5 idr_get_next +EXPORT_SYMBOL vmlinux 0xa9a14c7a generic_file_splice_write +EXPORT_SYMBOL vmlinux 0xa9b35f72 neigh_lookup +EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc +EXPORT_SYMBOL vmlinux 0xa9c1b627 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xa9c26617 d_validate +EXPORT_SYMBOL vmlinux 0xa9c2fe84 input_grab_device +EXPORT_SYMBOL vmlinux 0xa9cacf43 netif_notify_peers +EXPORT_SYMBOL vmlinux 0xa9e36cab bitmap_unplug +EXPORT_SYMBOL vmlinux 0xa9faf88f scsi_release_buffers +EXPORT_SYMBOL vmlinux 0xaa11942f gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xaa158464 dev_err +EXPORT_SYMBOL vmlinux 0xaa22cb50 netdev_err +EXPORT_SYMBOL vmlinux 0xaa2d65b8 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xaa311910 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xaa551752 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xaa84a8ae acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xaaac73b3 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xaabf0e6f inet_twsk_deschedule +EXPORT_SYMBOL vmlinux 0xaac65606 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xaad38e90 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaae8cda1 blkdev_get +EXPORT_SYMBOL vmlinux 0xaaf45875 acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab20d36d init_net +EXPORT_SYMBOL vmlinux 0xab28271c i8253_lock +EXPORT_SYMBOL vmlinux 0xab304826 noop_llseek +EXPORT_SYMBOL vmlinux 0xab4b6d3a ab3100_event_register +EXPORT_SYMBOL vmlinux 0xab5f9804 register_nls +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab6ae0cd tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab908ae6 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xabac1fb6 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0xabae8d3a llc_sap_open +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd0c91c rtc_time_to_tm +EXPORT_SYMBOL vmlinux 0xabe7fbff tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xabfc292e vga_tryget +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0feeba phy_detach +EXPORT_SYMBOL vmlinux 0xac1ebf20 padata_stop +EXPORT_SYMBOL vmlinux 0xac48c37e bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xac58ea5e acpi_unload_table_id +EXPORT_SYMBOL vmlinux 0xac6855b0 gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xac83880b skb_queue_tail +EXPORT_SYMBOL vmlinux 0xac96ec0d clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xaca99833 genl_unregister_mc_group +EXPORT_SYMBOL vmlinux 0xacae92e2 sk_reset_txq +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd73568 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacfdf00c lock_sock_fast +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad07f027 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xad0c92a1 task_ns_capable +EXPORT_SYMBOL vmlinux 0xad12f004 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xad13c689 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xad1676ac scsi_execute +EXPORT_SYMBOL vmlinux 0xad25fb12 __memcpy +EXPORT_SYMBOL vmlinux 0xad466018 quota_send_warning +EXPORT_SYMBOL vmlinux 0xad4bb5b9 mdiobus_free +EXPORT_SYMBOL vmlinux 0xad4cfd6b kset_unregister +EXPORT_SYMBOL vmlinux 0xad6fead2 vfs_readlink +EXPORT_SYMBOL vmlinux 0xad82f3f9 acpi_bus_start +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xada2cb87 create_mnt_ns +EXPORT_SYMBOL vmlinux 0xadaa2657 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0xadc94b63 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xadcac4a3 vfsmount_lock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xade7f11f ps2_drain +EXPORT_SYMBOL vmlinux 0xae07f1bb ip_defrag +EXPORT_SYMBOL vmlinux 0xae152c5e fb_pan_display +EXPORT_SYMBOL vmlinux 0xae2a3fe4 kobject_put +EXPORT_SYMBOL vmlinux 0xae4095bd set_binfmt +EXPORT_SYMBOL vmlinux 0xae40cdae __f_setown +EXPORT_SYMBOL vmlinux 0xae4debbc fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xae90ae34 search_binary_handler +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaeaa8330 unload_nls +EXPORT_SYMBOL vmlinux 0xaeb0ab5f journal_create +EXPORT_SYMBOL vmlinux 0xaeeec061 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xaef85eba proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xaf0f2f2e free_task +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf81f4a7 spi_schedule_dv_device +EXPORT_SYMBOL vmlinux 0xaf8c5874 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xaf91d89f __kernel_param_lock +EXPORT_SYMBOL vmlinux 0xaf9d8f6b xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xafa009bc aio_put_req +EXPORT_SYMBOL vmlinux 0xafa3739d netdev_info +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafbcc843 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn +EXPORT_SYMBOL vmlinux 0xafef8fa9 register_memory_notifier +EXPORT_SYMBOL vmlinux 0xaff87152 pci_enable_ltr +EXPORT_SYMBOL vmlinux 0xb00080a8 kernel_accept +EXPORT_SYMBOL vmlinux 0xb0096b7f find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xb0146c3a param_set_byte +EXPORT_SYMBOL vmlinux 0xb0207ecf ___ratelimit +EXPORT_SYMBOL vmlinux 0xb0272ebd jbd2_journal_update_format +EXPORT_SYMBOL vmlinux 0xb06410fd scsi_cmd_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xb081e8d0 journal_stop +EXPORT_SYMBOL vmlinux 0xb0a8fd0a intel_gtt_unmap_memory +EXPORT_SYMBOL vmlinux 0xb0aa20a6 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xb0b2d1ef xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xb0b847ac __bitmap_full +EXPORT_SYMBOL vmlinux 0xb0be89fb rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xb0c2dca8 ppp_input_error +EXPORT_SYMBOL vmlinux 0xb0c48c24 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xb0e03582 get_user_pages +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0eda17d bh_submit_read +EXPORT_SYMBOL vmlinux 0xb0f83bcd xfrm_state_add +EXPORT_SYMBOL vmlinux 0xb11fa1ce strlcat +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12a4ddf thermal_zone_device_unregister +EXPORT_SYMBOL vmlinux 0xb14ba8da skb_find_text +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb17338d2 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xb17c4301 skb_store_bits +EXPORT_SYMBOL vmlinux 0xb1819757 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xb184dcd9 inet_listen +EXPORT_SYMBOL vmlinux 0xb19760c3 bitmap_onto +EXPORT_SYMBOL vmlinux 0xb19e62f9 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xb1bca37d __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1d2b473 netif_napi_add +EXPORT_SYMBOL vmlinux 0xb1d9523e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1f19ca6 bio_pair_release +EXPORT_SYMBOL vmlinux 0xb2059f48 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb2154c2a tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb241d687 default_file_splice_read +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2695bef skb_split +EXPORT_SYMBOL vmlinux 0xb2744b36 down_write_trylock +EXPORT_SYMBOL vmlinux 0xb29e5387 phy_scan_fixups +EXPORT_SYMBOL vmlinux 0xb2b0d772 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0xb2c0c310 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xb2c20318 netlink_dump_start +EXPORT_SYMBOL vmlinux 0xb2c27fb6 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xb2e55898 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xb2f20674 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xb2f39d6b i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb3109f3b register_key_type +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb329f9b5 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xb32d6c43 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xb3305d52 send_remote_softirq +EXPORT_SYMBOL vmlinux 0xb34d4c2e acpi_terminate +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb38deefc pci_remove_behind_bridge +EXPORT_SYMBOL vmlinux 0xb3987442 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xb3a307c6 si_meminfo +EXPORT_SYMBOL vmlinux 0xb3e2e045 sk_alloc +EXPORT_SYMBOL vmlinux 0xb3eeda94 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact +EXPORT_SYMBOL vmlinux 0xb412edcd ab8500_gpadc_read_raw +EXPORT_SYMBOL vmlinux 0xb417a37a ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb4461bbb unregister_snap_client +EXPORT_SYMBOL vmlinux 0xb4594a65 vfs_rename +EXPORT_SYMBOL vmlinux 0xb4673da3 napi_frags_skb +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb479a314 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xb494d5a1 dquot_disable +EXPORT_SYMBOL vmlinux 0xb4965e83 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xb4a6128e mmc_start_req +EXPORT_SYMBOL vmlinux 0xb4b7b067 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xb4d324c0 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xb4de1991 kobject_add +EXPORT_SYMBOL vmlinux 0xb5044271 vsscanf +EXPORT_SYMBOL vmlinux 0xb51836ee journal_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xb524d540 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb54533f7 usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xb54821c6 pci_enable_obff +EXPORT_SYMBOL vmlinux 0xb556a078 __getblk +EXPORT_SYMBOL vmlinux 0xb5665f21 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xb578a03c pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xb57b5f65 netif_skb_features +EXPORT_SYMBOL vmlinux 0xb590171d blk_insert_request +EXPORT_SYMBOL vmlinux 0xb5a01284 rt6_lookup +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5bca517 block_write_end +EXPORT_SYMBOL vmlinux 0xb5bde0a5 module_refcount +EXPORT_SYMBOL vmlinux 0xb5c181db sock_map_fd +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5f28b5f __any_online_cpu +EXPORT_SYMBOL vmlinux 0xb5f7d357 unregister_netdev +EXPORT_SYMBOL vmlinux 0xb5f90209 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb628f715 files_lglock_local_lock +EXPORT_SYMBOL vmlinux 0xb64933fb gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6822a33 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xb6998fdd mmc_can_erase +EXPORT_SYMBOL vmlinux 0xb6a1d0a9 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xb6a61a86 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6c5a973 scsi_show_result +EXPORT_SYMBOL vmlinux 0xb6cbe886 acpi_get_node +EXPORT_SYMBOL vmlinux 0xb6e5b642 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xb71985be __page_symlink +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb75fb327 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xb77b48bc scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xb78c61e8 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb7bb98bb security_d_instantiate +EXPORT_SYMBOL vmlinux 0xb7d7be73 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xb7ea7e42 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xb7ec0c80 add_disk +EXPORT_SYMBOL vmlinux 0xb7f97425 d_path +EXPORT_SYMBOL vmlinux 0xb7fa94ac tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xb800f4fe lease_get_mtime +EXPORT_SYMBOL vmlinux 0xb81d4a4b bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xb8223fc4 read_cache_page +EXPORT_SYMBOL vmlinux 0xb83211f1 do_splice_from +EXPORT_SYMBOL vmlinux 0xb835b3e4 radix_tree_prev_hole +EXPORT_SYMBOL vmlinux 0xb8498cb0 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xb84c4080 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xb86e4ab9 random32 +EXPORT_SYMBOL vmlinux 0xb8864836 lock_rename +EXPORT_SYMBOL vmlinux 0xb88b1d3c mmc_host_lazy_disable +EXPORT_SYMBOL vmlinux 0xb898bacc jbd2_journal_release_buffer +EXPORT_SYMBOL vmlinux 0xb8993686 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xb89af9bf srandom32 +EXPORT_SYMBOL vmlinux 0xb8e7a1f3 console_start +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e7d4d7 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb909916d netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xb93432f0 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xb98a0185 rtc_tm_to_time +EXPORT_SYMBOL vmlinux 0xb9b230c3 ata_print_version +EXPORT_SYMBOL vmlinux 0xb9c89902 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xb9df96da dma_async_memcpy_buf_to_pg +EXPORT_SYMBOL vmlinux 0xb9e5280a mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xb9e9e99c dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xb9fd2205 add_efi_memmap +EXPORT_SYMBOL vmlinux 0xba0bbace find_or_create_page +EXPORT_SYMBOL vmlinux 0xba0e052f remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xba14c357 skb_gso_segment +EXPORT_SYMBOL vmlinux 0xba1f31f1 tcp_v4_tw_get_peer +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba408f69 simple_write_begin +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba52d348 journal_forget +EXPORT_SYMBOL vmlinux 0xba6175d9 sg_miter_next +EXPORT_SYMBOL vmlinux 0xba642ca9 neigh_destroy +EXPORT_SYMBOL vmlinux 0xba8ea6ad rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xbaa26f05 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xbaa2782a kstrndup +EXPORT_SYMBOL vmlinux 0xbaaab8ae timespec_to_jiffies +EXPORT_SYMBOL vmlinux 0xbb04e1fc nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xbb167766 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xbb189cad disallow_signal +EXPORT_SYMBOL vmlinux 0xbb25d99f pci_set_ltr +EXPORT_SYMBOL vmlinux 0xbb2ac055 pci_get_class +EXPORT_SYMBOL vmlinux 0xbb421bfb misc_deregister +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb72a095 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xbb98947f d_alloc +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba159e0 files_lglock_local_unlock +EXPORT_SYMBOL vmlinux 0xbbad97a7 bio_endio +EXPORT_SYMBOL vmlinux 0xbbd3c096 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xbbd41c64 journal_get_write_access +EXPORT_SYMBOL vmlinux 0xbbf82e04 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xbc1afedf up_write +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc3eaf95 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xbc48e58c tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xbc53c117 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xbc90d38e mmc_free_host +EXPORT_SYMBOL vmlinux 0xbcc0f97d pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd82f3f fb_set_cmap +EXPORT_SYMBOL vmlinux 0xbcdf9440 netdev_set_master +EXPORT_SYMBOL vmlinux 0xbcebafa9 __cleancache_flush_fs +EXPORT_SYMBOL vmlinux 0xbcfd8311 d_rehash +EXPORT_SYMBOL vmlinux 0xbcff1c7e pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xbd05de60 dput +EXPORT_SYMBOL vmlinux 0xbd2c541b pci_get_subsys +EXPORT_SYMBOL vmlinux 0xbd2d359d netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xbd2dd9f6 thaw_bdev +EXPORT_SYMBOL vmlinux 0xbd6772af blk_integrity_register +EXPORT_SYMBOL vmlinux 0xbd6dc6e0 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xbd999432 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xbd9e2723 call_usermodehelper_freeinfo +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdbe7378 cookie_check_timestamp +EXPORT_SYMBOL vmlinux 0xbdc20c68 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xbdcf8c1c fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xbdd495bf fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xbdf31e07 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xbdf5c25c rb_next +EXPORT_SYMBOL vmlinux 0xbe08b7f7 pci_bus_type +EXPORT_SYMBOL vmlinux 0xbe1a94c5 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xbe252ff0 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xbe2c0274 add_timer +EXPORT_SYMBOL vmlinux 0xbe34fc33 d_alloc_root +EXPORT_SYMBOL vmlinux 0xbe4cd68d blk_end_request +EXPORT_SYMBOL vmlinux 0xbe538521 tr_type_trans +EXPORT_SYMBOL vmlinux 0xbe539ff5 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xbe53f1f4 acpi_unlock_battery_dir +EXPORT_SYMBOL vmlinux 0xbe6784ac sock_wake_async +EXPORT_SYMBOL vmlinux 0xbe827278 security_path_chown +EXPORT_SYMBOL vmlinux 0xbe89c3db kick_iocb +EXPORT_SYMBOL vmlinux 0xbea2f23b pcim_iounmap +EXPORT_SYMBOL vmlinux 0xbea62c7b sk_stop_timer +EXPORT_SYMBOL vmlinux 0xbeb8f872 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf0e6355 dev_get_stats +EXPORT_SYMBOL vmlinux 0xbf2531a0 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xbf2926c5 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xbf2be936 lock_may_write +EXPORT_SYMBOL vmlinux 0xbf308b52 blk_free_tags +EXPORT_SYMBOL vmlinux 0xbf36ad31 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xbf39c06c pci_clear_master +EXPORT_SYMBOL vmlinux 0xbf431b19 tty_devnum +EXPORT_SYMBOL vmlinux 0xbf615536 i2c_master_send +EXPORT_SYMBOL vmlinux 0xbf6b2c5c netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xbf7514ff phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfac12cd security_file_permission +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc53b30 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xbfe63ba8 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbfffd9e9 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user +EXPORT_SYMBOL vmlinux 0xc01bcbd4 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xc01cf848 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xc03a9b12 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xc0580937 rb_erase +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07d788e setup_arg_pages +EXPORT_SYMBOL vmlinux 0xc0846e9d blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xc09651d9 crc32_be +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b2494c vfsmount_lock_lock_init +EXPORT_SYMBOL vmlinux 0xc0b37b0a pcim_iomap +EXPORT_SYMBOL vmlinux 0xc0d70f05 tc_classify_compat +EXPORT_SYMBOL vmlinux 0xc0eab589 arp_tbl +EXPORT_SYMBOL vmlinux 0xc12a15ca kernel_sendpage +EXPORT_SYMBOL vmlinux 0xc13495bc __cleancache_flush_page +EXPORT_SYMBOL vmlinux 0xc13dd88d bioset_create +EXPORT_SYMBOL vmlinux 0xc1618589 __inet6_hash +EXPORT_SYMBOL vmlinux 0xc184f697 lock_may_read +EXPORT_SYMBOL vmlinux 0xc18ac83d generic_file_buffered_write +EXPORT_SYMBOL vmlinux 0xc19030a9 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xc1910322 tty_port_init +EXPORT_SYMBOL vmlinux 0xc1a153d0 pnp_is_active +EXPORT_SYMBOL vmlinux 0xc1a3cb75 genphy_update_link +EXPORT_SYMBOL vmlinux 0xc1a6f81c dcb_getapp +EXPORT_SYMBOL vmlinux 0xc1abcfc5 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xc1bb1886 journal_check_available_features +EXPORT_SYMBOL vmlinux 0xc1c2dd09 __hw_addr_flush +EXPORT_SYMBOL vmlinux 0xc1d7d179 blk_stack_limits +EXPORT_SYMBOL vmlinux 0xc1da279a proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xc1fb41cc complete_request_key +EXPORT_SYMBOL vmlinux 0xc2227496 posix_lock_file +EXPORT_SYMBOL vmlinux 0xc23e35e2 elevator_init +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24431ba pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xc253ea4c seq_read +EXPORT_SYMBOL vmlinux 0xc256e762 __bitmap_equal +EXPORT_SYMBOL vmlinux 0xc26ad919 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xc28546b1 tcp_close +EXPORT_SYMBOL vmlinux 0xc2972e1c path_get +EXPORT_SYMBOL vmlinux 0xc2b37425 d_splice_alias +EXPORT_SYMBOL vmlinux 0xc2bdcd9c skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xc2cbac1c key_alloc +EXPORT_SYMBOL vmlinux 0xc2cbf26b dm_register_target +EXPORT_SYMBOL vmlinux 0xc2de80a3 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xc2e54b8a __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc316b98c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0xc32b4665 nobh_write_end +EXPORT_SYMBOL vmlinux 0xc3770526 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xc381849b dst_destroy +EXPORT_SYMBOL vmlinux 0xc3852b73 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xc3a2a566 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3c24518 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xc3fe87c8 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc402cc99 register_acpi_notifier +EXPORT_SYMBOL vmlinux 0xc40e7d04 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xc41e8f7a wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xc444e874 ____pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xc4554217 up +EXPORT_SYMBOL vmlinux 0xc45c04dd bio_free +EXPORT_SYMBOL vmlinux 0xc4691bf5 freeze_bdev +EXPORT_SYMBOL vmlinux 0xc469612c scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xc47663b3 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xc47ea58c read_cache_pages +EXPORT_SYMBOL vmlinux 0xc4844cdc udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4b28286 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xc4b68072 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xc4c83ffb tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xc4da8bf0 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xc4dc0818 posix_test_lock +EXPORT_SYMBOL vmlinux 0xc4e9c01c cpu_active_mask +EXPORT_SYMBOL vmlinux 0xc50bab05 unregister_shrinker +EXPORT_SYMBOL vmlinux 0xc51c10d2 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xc52cbc12 inet_bind +EXPORT_SYMBOL vmlinux 0xc52f5714 fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0xc531c1e2 unregister_con_driver +EXPORT_SYMBOL vmlinux 0xc537d2f5 padata_start +EXPORT_SYMBOL vmlinux 0xc53d5e39 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc57da34e jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xc5844fb8 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xc5953dfe pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xc5960e89 eth_type_trans +EXPORT_SYMBOL vmlinux 0xc5a37aa8 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xc5b085d1 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xc5c8b1ee __invalidate_device +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5f46566 rb_augment_insert +EXPORT_SYMBOL vmlinux 0xc60a51f5 set_pages_uc +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63b9995 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xc63cc125 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc63de5a3 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc6890ef3 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0xc6bf546d load_nls_default +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d185be blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xc6dbc07a security_path_link +EXPORT_SYMBOL vmlinux 0xc705f598 irq_set_chip +EXPORT_SYMBOL vmlinux 0xc7068c1d input_unregister_handler +EXPORT_SYMBOL vmlinux 0xc70f1ff9 sock_i_ino +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc740c64a memchr +EXPORT_SYMBOL vmlinux 0xc743fcac security_path_rmdir +EXPORT_SYMBOL vmlinux 0xc7502806 __alloc_skb +EXPORT_SYMBOL vmlinux 0xc758e9c4 brioctl_set +EXPORT_SYMBOL vmlinux 0xc76e924a unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xc76fc10d dev_mc_del +EXPORT_SYMBOL vmlinux 0xc779c0fb xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc78b62c6 igrab +EXPORT_SYMBOL vmlinux 0xc791be59 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a24d76 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7c2aa00 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xc7ef4aff jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84fa5d7 seq_open +EXPORT_SYMBOL vmlinux 0xc859cf73 km_policy_notify +EXPORT_SYMBOL vmlinux 0xc85f2f42 otg_put_transceiver +EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xc872a2c2 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xc888eda1 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xc894d2e3 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8bbf26f pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xc8bfd8d9 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xc8c6fe4c pnp_disable_dev +EXPORT_SYMBOL vmlinux 0xc94fa003 irq_stat +EXPORT_SYMBOL vmlinux 0xc97d77aa dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xc996d097 del_timer +EXPORT_SYMBOL vmlinux 0xc9a921e3 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xc9ab2eef acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0xca01928d __scsi_add_device +EXPORT_SYMBOL vmlinux 0xca30a143 get_phy_device +EXPORT_SYMBOL vmlinux 0xca4c923d vscnprintf +EXPORT_SYMBOL vmlinux 0xca55a550 key_link +EXPORT_SYMBOL vmlinux 0xca5dbc50 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xca70ab41 journal_load +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca98ff79 phy_stop +EXPORT_SYMBOL vmlinux 0xcaa5f548 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xcab7eecb genl_register_mc_group +EXPORT_SYMBOL vmlinux 0xcabd5f68 eth_header_cache +EXPORT_SYMBOL vmlinux 0xcac2d321 simple_unlink +EXPORT_SYMBOL vmlinux 0xcacc380b intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xcad57f56 sock_no_bind +EXPORT_SYMBOL vmlinux 0xcad58316 dst_alloc +EXPORT_SYMBOL vmlinux 0xcb06f05e skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xcb0905c6 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xcb0f4780 mpage_writepage +EXPORT_SYMBOL vmlinux 0xcb31da12 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xcb34b19e lookup_bdev +EXPORT_SYMBOL vmlinux 0xcb3525d6 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xcb7131fb fb_get_options +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb90ed3e inode_add_bytes +EXPORT_SYMBOL vmlinux 0xcb99edb0 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0xcba99879 genl_register_family_with_ops +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd135d1 genl_register_ops +EXPORT_SYMBOL vmlinux 0xcc07af75 strnlen +EXPORT_SYMBOL vmlinux 0xcc0d1dfd put_io_context +EXPORT_SYMBOL vmlinux 0xcc0e35c0 proc_symlink +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc36f32e fb_unregister_client +EXPORT_SYMBOL vmlinux 0xcc3efc71 kobject_get +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc75b9d4 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xcc7fa952 local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0xcca94125 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xccb1bf8b tcf_action_exec +EXPORT_SYMBOL vmlinux 0xccc1c8b8 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xcce9e0d4 mem_cgroup_update_page_stat +EXPORT_SYMBOL vmlinux 0xccfa1183 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd298dc9 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xcd4a6c5d kmem_cache_free +EXPORT_SYMBOL vmlinux 0xcd714520 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xcd9535f8 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xcdc5670b tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xcde172ac radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xce19bac5 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0xce1aa17d pnp_get_resource +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3f47e9 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce61d9a6 skb_push +EXPORT_SYMBOL vmlinux 0xce6c90d9 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xce6d565d blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xce8a35a7 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xceaee937 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xcec3a230 address_space_init_once +EXPORT_SYMBOL vmlinux 0xcec3a908 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xcece0846 unregister_console +EXPORT_SYMBOL vmlinux 0xced0c127 spi_release_transport +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcef6756f bio_kmalloc +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf015f7b do_settimeofday +EXPORT_SYMBOL vmlinux 0xcf01ce44 qdisc_reset +EXPORT_SYMBOL vmlinux 0xcf188048 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xcf1d28ab acpi_error +EXPORT_SYMBOL vmlinux 0xcf37b900 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xcf470e57 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xcf5483cf inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf7643f1 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xcf8a7bae pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xcf914c15 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xcf92b71a mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xcf9a5d96 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xcfb9006e jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0xcfeb0be9 rb_augment_erase_begin +EXPORT_SYMBOL vmlinux 0xcff07566 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xcff62fcf padata_do_parallel +EXPORT_SYMBOL vmlinux 0xd0181f4f __bitmap_xor +EXPORT_SYMBOL vmlinux 0xd04b809c cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xd060f769 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xd0616a98 smp_call_function_many +EXPORT_SYMBOL vmlinux 0xd07825fa uart_update_timeout +EXPORT_SYMBOL vmlinux 0xd0799edd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xd08197fa acpi_load_tables +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0abe41d qdisc_watchdog_schedule +EXPORT_SYMBOL vmlinux 0xd0d42c42 mod_timer_pending +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f0d945 down_read +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd10d6742 locks_free_lock +EXPORT_SYMBOL vmlinux 0xd1176a59 lookup_one_len +EXPORT_SYMBOL vmlinux 0xd118ce57 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xd11c0dc1 __kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xd1472061 acpi_pci_register_driver +EXPORT_SYMBOL vmlinux 0xd16f1aa3 pid_task +EXPORT_SYMBOL vmlinux 0xd172cb8d netdev_increment_features +EXPORT_SYMBOL vmlinux 0xd17799ca skb_put +EXPORT_SYMBOL vmlinux 0xd18b6eb2 acpi_unmap_lsapic +EXPORT_SYMBOL vmlinux 0xd1a4a28e scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xd1f152ad kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2045522 inet_frag_find +EXPORT_SYMBOL vmlinux 0xd20ead4d skb_insert +EXPORT_SYMBOL vmlinux 0xd217fd7d neigh_compat_output +EXPORT_SYMBOL vmlinux 0xd2187f52 nf_log_packet +EXPORT_SYMBOL vmlinux 0xd2329de3 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xd23ef633 blk_make_request +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd266efe7 mempool_create +EXPORT_SYMBOL vmlinux 0xd26a48de module_layout +EXPORT_SYMBOL vmlinux 0xd26a4d65 dentry_unhash +EXPORT_SYMBOL vmlinux 0xd276f795 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd2965f6f kthread_should_stop +EXPORT_SYMBOL vmlinux 0xd29beb27 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL vmlinux 0xd2a35ecd generic_writepages +EXPORT_SYMBOL vmlinux 0xd2a75ee0 dmi_first_match +EXPORT_SYMBOL vmlinux 0xd2be75a2 uart_resume_port +EXPORT_SYMBOL vmlinux 0xd2c20658 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd2c6b799 tty_kref_put +EXPORT_SYMBOL vmlinux 0xd2f00f04 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xd30e6b8b dquot_alloc +EXPORT_SYMBOL vmlinux 0xd3395d47 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xd3434c3f kref_sub +EXPORT_SYMBOL vmlinux 0xd34405aa blk_complete_request +EXPORT_SYMBOL vmlinux 0xd3552b0e genphy_resume +EXPORT_SYMBOL vmlinux 0xd35e249a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xd36aaaa6 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xd376ea93 padata_free +EXPORT_SYMBOL vmlinux 0xd38480a0 rb_augment_erase_end +EXPORT_SYMBOL vmlinux 0xd3951da4 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xd39565f4 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3c08471 gen_pool_create +EXPORT_SYMBOL vmlinux 0xd3c39eac dquot_destroy +EXPORT_SYMBOL vmlinux 0xd3dcab0b flex_array_alloc +EXPORT_SYMBOL vmlinux 0xd3fd6d3f nla_reserve +EXPORT_SYMBOL vmlinux 0xd41115cf intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xd45d6317 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xd46eed89 netif_napi_del +EXPORT_SYMBOL vmlinux 0xd4953d58 mdiobus_register +EXPORT_SYMBOL vmlinux 0xd4a5c5cf napi_complete +EXPORT_SYMBOL vmlinux 0xd4c8b5ae swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xd4ead787 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xd5079531 __sock_create +EXPORT_SYMBOL vmlinux 0xd50ee9d6 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd510dfa5 netdev_class_create_file +EXPORT_SYMBOL vmlinux 0xd52bc4b9 phy_print_status +EXPORT_SYMBOL vmlinux 0xd5462aaa lro_receive_skb +EXPORT_SYMBOL vmlinux 0xd54b8f66 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xd5556e2f __free_pages +EXPORT_SYMBOL vmlinux 0xd559ad76 iov_iter_copy_from_user +EXPORT_SYMBOL vmlinux 0xd56fa0ea proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xd57472c5 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xd5794095 set_pages_nx +EXPORT_SYMBOL vmlinux 0xd5a8d449 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xd5b037e1 kref_put +EXPORT_SYMBOL vmlinux 0xd5bce56a jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xd5d8393c bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xd5d8bcbc vga_put +EXPORT_SYMBOL vmlinux 0xd5f2172f del_timer_sync +EXPORT_SYMBOL vmlinux 0xd60c56e1 simple_rmdir +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd618e904 splice_from_pipe_feed +EXPORT_SYMBOL vmlinux 0xd629316a llc_sap_list_lock +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd6386ca1 pci_get_device +EXPORT_SYMBOL vmlinux 0xd64a2661 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xd66207ff unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xd6926250 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xd69ddc45 napi_get_frags +EXPORT_SYMBOL vmlinux 0xd6a46805 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6b61ed0 backlight_force_update +EXPORT_SYMBOL vmlinux 0xd6c419d5 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0xd6cb57e0 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xd6d6a30d md_integrity_register +EXPORT_SYMBOL vmlinux 0xd6e817c9 tty_free_termios +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f37cf5 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xd715d6b2 release_firmware +EXPORT_SYMBOL vmlinux 0xd71e9cbc pci_find_bus +EXPORT_SYMBOL vmlinux 0xd732abb5 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7776a12 generic_read_dir +EXPORT_SYMBOL vmlinux 0xd77a5aa5 __bitmap_and +EXPORT_SYMBOL vmlinux 0xd7817857 filp_open +EXPORT_SYMBOL vmlinux 0xd79b5a02 allow_signal +EXPORT_SYMBOL vmlinux 0xd7bd3af2 add_wait_queue +EXPORT_SYMBOL vmlinux 0xd7cdc715 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7fd27c6 mutex_trylock +EXPORT_SYMBOL vmlinux 0xd7fd7e74 generic_fillattr +EXPORT_SYMBOL vmlinux 0xd8077dc7 tc_classify +EXPORT_SYMBOL vmlinux 0xd88c49ec get_unmapped_area_prot +EXPORT_SYMBOL vmlinux 0xd88f2357 splice_from_pipe_begin +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a2270d eth_mac_addr +EXPORT_SYMBOL vmlinux 0xd8bdbc5e scsi_setup_blk_pc_cmnd +EXPORT_SYMBOL vmlinux 0xd8dd1e82 netdev_update_features +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd9074b27 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xd907c9d7 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd90bc63b journal_init_inode +EXPORT_SYMBOL vmlinux 0xd91cb638 init_task +EXPORT_SYMBOL vmlinux 0xd91ea38c x86_hyper_xen_hvm +EXPORT_SYMBOL vmlinux 0xd92afabe bitmap_clear +EXPORT_SYMBOL vmlinux 0xd932749e blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xd933714a copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd94743ef node_states +EXPORT_SYMBOL vmlinux 0xd966cd95 get_agp_version +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98f161a nf_hook_slow +EXPORT_SYMBOL vmlinux 0xd9af6a37 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xd9b50ffd tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xd9bd7c46 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xd9bf07bf __secpath_destroy +EXPORT_SYMBOL vmlinux 0xd9cf7746 pm860x_page_set_bits +EXPORT_SYMBOL vmlinux 0xd9f6fa90 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xd9f8a8be __dev_printk +EXPORT_SYMBOL vmlinux 0xda0a6b0e acpi_map_lsapic +EXPORT_SYMBOL vmlinux 0xda1da253 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xda463033 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xda704bb6 pipe_unlock +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda803e39 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xdaa3a46b bdi_register_dev +EXPORT_SYMBOL vmlinux 0xdaa9f1b3 kthread_stop +EXPORT_SYMBOL vmlinux 0xdabb8eff scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xdad2674d agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xdae21dd6 kset_register +EXPORT_SYMBOL vmlinux 0xdae36cc1 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xdb185e7b __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xdb502e4d journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7cfaeb sock_init_data +EXPORT_SYMBOL vmlinux 0xdb7d51e5 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xdb9284df redraw_screen +EXPORT_SYMBOL vmlinux 0xdb9e2c22 posix_acl_create +EXPORT_SYMBOL vmlinux 0xdba23cec pci_disable_ido +EXPORT_SYMBOL vmlinux 0xdbb5ad5c node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0xdbcd416e sysctl_ip_nonlocal_bind +EXPORT_SYMBOL vmlinux 0xdbd24697 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1c0d12 register_netdev +EXPORT_SYMBOL vmlinux 0xdc2519e0 param_set_ulong +EXPORT_SYMBOL vmlinux 0xdc2adb35 add_taint +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc43a9c8 daemonize +EXPORT_SYMBOL vmlinux 0xdc4b96a3 blk_put_queue +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc676c21 splice_from_pipe_next +EXPORT_SYMBOL vmlinux 0xdc79bf03 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xdc8f6102 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcdabd83 otg_set_transceiver +EXPORT_SYMBOL vmlinux 0xdd149f8a inet6_bind +EXPORT_SYMBOL vmlinux 0xdd19118c bdi_unregister +EXPORT_SYMBOL vmlinux 0xdd1a2871 down +EXPORT_SYMBOL vmlinux 0xdd1c65f6 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xdd1dd655 put_tty_driver +EXPORT_SYMBOL vmlinux 0xdd309c54 dm_get_mapinfo +EXPORT_SYMBOL vmlinux 0xdd4a324c kernel_listen +EXPORT_SYMBOL vmlinux 0xdd4dd24f i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xdd66e4d6 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xddf2d8c4 ethtool_op_get_flags +EXPORT_SYMBOL vmlinux 0xde0b43ba blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xde0bdcff memset +EXPORT_SYMBOL vmlinux 0xde0c5569 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde3401be alloc_pci_dev +EXPORT_SYMBOL vmlinux 0xde5bcc57 dev_mc_init +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdef400ee compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xdf049a33 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xdf05d595 pci_dev_get +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf24001e fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xdf48a0eb flex_array_put +EXPORT_SYMBOL vmlinux 0xdf4c8767 ns_to_timeval +EXPORT_SYMBOL vmlinux 0xdf545305 dev_addr_add_multiple +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf66868f simple_write_end +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfe33cad kdb_current_task +EXPORT_SYMBOL vmlinux 0xe00274e0 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xe013e262 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe051b4a1 __scm_send +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe065c643 input_open_device +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe091a80e current_task +EXPORT_SYMBOL vmlinux 0xe0a6070b pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b52c44 dquot_commit +EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xe0e15560 mmc_card_can_sleep +EXPORT_SYMBOL vmlinux 0xe0eae761 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xe0fc24aa param_set_int +EXPORT_SYMBOL vmlinux 0xe0fd428d call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xe100b1bd vfs_open +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11e0fc0 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe144bf12 alloc_file +EXPORT_SYMBOL vmlinux 0xe1562af7 scsi_setup_fs_cmnd +EXPORT_SYMBOL vmlinux 0xe173e86a seq_path +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe195e28b __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xe1cf2ac8 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xe1dd1545 inet_accept +EXPORT_SYMBOL vmlinux 0xe1f09ba1 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xe1f2b014 dm_put_device +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2088575 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xe2115f2f __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xe21cd417 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xe225262a d_set_d_op +EXPORT_SYMBOL vmlinux 0xe22a8f95 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xe2311184 misc_register +EXPORT_SYMBOL vmlinux 0xe231e72d dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24c6cac __get_user_pages +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe25aef1b scsi_add_device +EXPORT_SYMBOL vmlinux 0xe276065a iterate_supers_type +EXPORT_SYMBOL vmlinux 0xe276b6f2 page_symlink +EXPORT_SYMBOL vmlinux 0xe27be579 key_type_keyring +EXPORT_SYMBOL vmlinux 0xe280ca9d blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 +EXPORT_SYMBOL vmlinux 0xe2d103fa mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0xe2d2e5e0 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe30c2ec7 tcp_gro_receive +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe328d932 idr_remove_all +EXPORT_SYMBOL vmlinux 0xe34d67f4 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xe355301b netdev_change_features +EXPORT_SYMBOL vmlinux 0xe356c66a cpu_core_map +EXPORT_SYMBOL vmlinux 0xe363a49f inet_del_protocol +EXPORT_SYMBOL vmlinux 0xe3886cab wireless_send_event +EXPORT_SYMBOL vmlinux 0xe395b62a agp_backend_release +EXPORT_SYMBOL vmlinux 0xe3a5ff16 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xe3a6ab4f llc_mac_hdr_init +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e29c9c __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xe3fbe148 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xe403b4a3 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xe41b2a29 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xe43617f7 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0xe44bf23b mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xe45f60d8 __wake_up +EXPORT_SYMBOL vmlinux 0xe47b3fdf journal_abort +EXPORT_SYMBOL vmlinux 0xe4844d97 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4b24b8c __next_cpu +EXPORT_SYMBOL vmlinux 0xe4d1a5e4 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe4d91273 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xe4f1fb50 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xe5122890 flow_cache_genid +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52947e7 __phys_addr +EXPORT_SYMBOL vmlinux 0xe529791c dev_printk +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe5316aa8 notify_change +EXPORT_SYMBOL vmlinux 0xe5370003 netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xe550efa6 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xe553e76f ethtool_op_set_tso +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe583af89 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe595c49b kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xe59a002a skb_recycle +EXPORT_SYMBOL vmlinux 0xe59bb14e blk_execute_rq +EXPORT_SYMBOL vmlinux 0xe5a1517b task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xe5a4fc1f mapping_tagged +EXPORT_SYMBOL vmlinux 0xe5a941e4 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xe5c6390b md_write_start +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe60a3168 prepare_creds +EXPORT_SYMBOL vmlinux 0xe61b99fd bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xe66bbb03 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xe66dd794 fb_set_var +EXPORT_SYMBOL vmlinux 0xe67917d3 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6b1b2aa ethtool_op_get_tx_csum +EXPORT_SYMBOL vmlinux 0xe6b3fe21 interruptible_sleep_on_timeout +EXPORT_SYMBOL vmlinux 0xe6c02646 dev_open +EXPORT_SYMBOL vmlinux 0xe6d312c3 phy_driver_register +EXPORT_SYMBOL vmlinux 0xe6d3f3ef current_fs_time +EXPORT_SYMBOL vmlinux 0xe6d600ae max8998_update_reg +EXPORT_SYMBOL vmlinux 0xe6e2801b agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe7243e0d lookup_hash +EXPORT_SYMBOL vmlinux 0xe7492401 input_register_handle +EXPORT_SYMBOL vmlinux 0xe74f806c __skb_get_rxhash +EXPORT_SYMBOL vmlinux 0xe75dfd10 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xe7609b0d generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe7722171 flex_array_free +EXPORT_SYMBOL vmlinux 0xe7773b7f read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe778587a dev_addr_init +EXPORT_SYMBOL vmlinux 0xe78d5512 kernel_bind +EXPORT_SYMBOL vmlinux 0xe798281c tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xe79fb582 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xe7a664c4 nf_hooks +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b929a3 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xe7c6735f journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e55a4e journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe8056dda loop_register_transfer +EXPORT_SYMBOL vmlinux 0xe80c8445 input_allocate_device +EXPORT_SYMBOL vmlinux 0xe80ce219 sysctl_tcp_dma_copybreak +EXPORT_SYMBOL vmlinux 0xe8116e08 __kmalloc_node +EXPORT_SYMBOL vmlinux 0xe817813b bioset_free +EXPORT_SYMBOL vmlinux 0xe81a5637 vfs_llseek +EXPORT_SYMBOL vmlinux 0xe8246391 md_write_end +EXPORT_SYMBOL vmlinux 0xe83776f3 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xe85be90d lock_sock_nested +EXPORT_SYMBOL vmlinux 0xe8688644 ht_create_irq +EXPORT_SYMBOL vmlinux 0xe8777a7b __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe88716c7 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xe8b63ace radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xe8db1762 nla_append +EXPORT_SYMBOL vmlinux 0xe8e93858 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xe8ebf346 ab8500_gpadc_ad_to_voltage +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe93275a2 ethtool_op_get_ufo +EXPORT_SYMBOL vmlinux 0xe933781e sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xe942ce8b __dst_free +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9980380 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xe9c7ae08 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xe9e7f7bd textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea10212a int_to_scsilun +EXPORT_SYMBOL vmlinux 0xea10655a __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xea15b0f4 d_find_alias +EXPORT_SYMBOL vmlinux 0xea1c0c35 thermal_zone_bind_cooling_device +EXPORT_SYMBOL vmlinux 0xea2125b4 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xea293405 load_nls +EXPORT_SYMBOL vmlinux 0xea3a8781 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea8a6c75 param_ops_long +EXPORT_SYMBOL vmlinux 0xea8acab8 dquot_resume +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea9855ae blk_limits_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xeaa75367 inode_init_once +EXPORT_SYMBOL vmlinux 0xeab41445 free_buffer_head +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xeadff1cb iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xeae07059 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeb204240 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb427731 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xeb457457 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xeb4ac0c7 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xeb648638 netdev_alert +EXPORT_SYMBOL vmlinux 0xeb7bf1c2 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xeb8f1b0f cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xeb940b0c unlock_new_inode +EXPORT_SYMBOL vmlinux 0xeba677bd posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xeba72897 acpi_bus_add +EXPORT_SYMBOL vmlinux 0xeba7a770 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebdbe48c radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xebe2108a __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xec0b5a6e kernel_getsockname +EXPORT_SYMBOL vmlinux 0xec15f00a tcp_cookie_generator +EXPORT_SYMBOL vmlinux 0xec1d1fa1 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xec1f40cb sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xec21e3a9 pci_release_regions +EXPORT_SYMBOL vmlinux 0xec27c4d1 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xec2cb642 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xec2fdfea pnp_possible_config +EXPORT_SYMBOL vmlinux 0xec46634f xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xec4e50df free_user_ns +EXPORT_SYMBOL vmlinux 0xec8c18d0 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xecaa7b1a skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xecb721f1 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xecbd4511 kobject_del +EXPORT_SYMBOL vmlinux 0xecccde0c key_put +EXPORT_SYMBOL vmlinux 0xecf50e71 netlink_set_err +EXPORT_SYMBOL vmlinux 0xecfdd65d __vlan_find_dev_deep +EXPORT_SYMBOL vmlinux 0xed119c06 vfs_readv +EXPORT_SYMBOL vmlinux 0xed18da9e compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xed22642a stop_tty +EXPORT_SYMBOL vmlinux 0xed302f0f tty_lock +EXPORT_SYMBOL vmlinux 0xed4b900e vfs_fstatat +EXPORT_SYMBOL vmlinux 0xed5571ad netdev_crit +EXPORT_SYMBOL vmlinux 0xed668c4b __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xed6aac71 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xed749210 netdev_bonding_change +EXPORT_SYMBOL vmlinux 0xed7aa013 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xeda0d76e gen_estimator_active +EXPORT_SYMBOL vmlinux 0xedaa6858 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd085ec generic_listxattr +EXPORT_SYMBOL vmlinux 0xede24de0 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xee000a81 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xee274171 napi_frags_finish +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xeea28db4 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeecbe115 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xeed9c0f0 generic_getxattr +EXPORT_SYMBOL vmlinux 0xeef3928a ipv4_specific +EXPORT_SYMBOL vmlinux 0xef08ff8e scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xef0bd8da mmc_hw_reset_check +EXPORT_SYMBOL vmlinux 0xef114fc5 neigh_table_init_no_netlink +EXPORT_SYMBOL vmlinux 0xef28baf2 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init +EXPORT_SYMBOL vmlinux 0xef933f0d blk_delay_queue +EXPORT_SYMBOL vmlinux 0xef98f3d2 check_disk_change +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefb2947f input_release_device +EXPORT_SYMBOL vmlinux 0xefdc2de7 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xefec245b tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0040079 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xf01d647a genl_unregister_family +EXPORT_SYMBOL vmlinux 0xf0449366 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xf0587bee crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xf0607d19 set_security_override +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf06a2db8 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xf06eb9be tty_register_driver +EXPORT_SYMBOL vmlinux 0xf06fe523 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xf07ea156 touch_atime +EXPORT_SYMBOL vmlinux 0xf0adf95f tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xf0b5014f scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xf0e41b5d rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f1246c kvasprintf +EXPORT_SYMBOL vmlinux 0xf0f416fd sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xf100416a remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xf1084f2e tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf1102231 netdev_state_change +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user +EXPORT_SYMBOL vmlinux 0xf1216c75 prandom32 +EXPORT_SYMBOL vmlinux 0xf13a0fe3 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xf1566144 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xf1638c88 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xf17a37c9 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1973a3c seq_putc +EXPORT_SYMBOL vmlinux 0xf1b52135 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xf1bea6f1 schedule_delayed_work +EXPORT_SYMBOL vmlinux 0xf1cf3036 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e50ed2 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ed7311 bio_init +EXPORT_SYMBOL vmlinux 0xf1faac3a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xf202c5cb radix_tree_insert +EXPORT_SYMBOL vmlinux 0xf20d0a5f pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf229a0c0 bdget +EXPORT_SYMBOL vmlinux 0xf22ddc6a input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xf230385a cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2469e86 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xf26d689e mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xf276b6ee rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xf285e987 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xf28aba63 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a24d23 seq_release +EXPORT_SYMBOL vmlinux 0xf2a34649 dev_uc_add +EXPORT_SYMBOL vmlinux 0xf2c6b00e pci_set_mwi +EXPORT_SYMBOL vmlinux 0xf2d0cfa3 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xf2d994c3 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xf2dbb224 tty_hangup +EXPORT_SYMBOL vmlinux 0xf2e2f467 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xf30e12d6 thermal_cooling_device_unregister +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31717e6 dma_async_memcpy_buf_to_buf +EXPORT_SYMBOL vmlinux 0xf3178ab3 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xf31e048e blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf32055e7 dev_base_lock +EXPORT_SYMBOL vmlinux 0xf32c5e82 md_check_recovery +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf338d4c3 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf362f54e icmp_send +EXPORT_SYMBOL vmlinux 0xf3667a43 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xf37260ab _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf3af7045 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xf3bf0bce __bitmap_complement +EXPORT_SYMBOL vmlinux 0xf3d6c3ca journal_destroy +EXPORT_SYMBOL vmlinux 0xf3d92210 sk_common_release +EXPORT_SYMBOL vmlinux 0xf3e7af15 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xf3fedd3c netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xf401f198 kern_path +EXPORT_SYMBOL vmlinux 0xf41cb19e dquot_commit_info +EXPORT_SYMBOL vmlinux 0xf425fdce pci_request_region +EXPORT_SYMBOL vmlinux 0xf438fd10 security_inode_permission +EXPORT_SYMBOL vmlinux 0xf43c573a xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4528073 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xf45f1976 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4c20c6f fb_class +EXPORT_SYMBOL vmlinux 0xf4ce6a7b lease_modify +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f19e51 downgrade_write +EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xf50c3b36 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xf51a95ff __destroy_inode +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf52d5492 security_path_unlink +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf537ce6c abx500_register_ops +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54fa6a6 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xf571892c vfs_readdir +EXPORT_SYMBOL vmlinux 0xf592dc59 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xf5a6c7a8 journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf5af83ec kmem_cache_create +EXPORT_SYMBOL vmlinux 0xf5b07247 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xf5b8e31d mmc_try_claim_host +EXPORT_SYMBOL vmlinux 0xf5c9012e timespec_trunc +EXPORT_SYMBOL vmlinux 0xf5cbd1c2 nonseekable_open +EXPORT_SYMBOL vmlinux 0xf5cf326a param_ops_short +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5feec11 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xf600cc75 mnt_unpin +EXPORT_SYMBOL vmlinux 0xf60f8881 path_is_under +EXPORT_SYMBOL vmlinux 0xf612809a param_get_int +EXPORT_SYMBOL vmlinux 0xf61f5bfa devm_free_irq +EXPORT_SYMBOL vmlinux 0xf6296a1c get_phy_id +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf6b733c3 kobject_set_name +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6d474f4 dev_notice +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f62175 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xf747dd44 kstat +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7648fd7 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xf773e3d6 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xf78739f9 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xf78d04ab netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xf7a6caab cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xf7ad126d __generic_file_aio_write +EXPORT_SYMBOL vmlinux 0xf7b61c9b skb_copy_bits +EXPORT_SYMBOL vmlinux 0xf7b8d91a elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xf7ca71de register_cdrom +EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0xf7e37635 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xf7f4b3e3 mpage_readpage +EXPORT_SYMBOL vmlinux 0xf7fb243c idr_for_each +EXPORT_SYMBOL vmlinux 0xf803fe39 bitmap_set +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf8236b0f __lru_cache_add +EXPORT_SYMBOL vmlinux 0xf82652a1 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82e3d47 acpi_initialize_objects +EXPORT_SYMBOL vmlinux 0xf83da0bf register_md_personality +EXPORT_SYMBOL vmlinux 0xf84dba5d __quota_error +EXPORT_SYMBOL vmlinux 0xf8610262 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8940505 do_munmap +EXPORT_SYMBOL vmlinux 0xf89843f9 schedule_work +EXPORT_SYMBOL vmlinux 0xf8b1ac86 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xf8b5a247 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xf8e3013d writeback_inodes_sb_if_idle +EXPORT_SYMBOL vmlinux 0xf8e83b2c i8042_check_port_owner +EXPORT_SYMBOL vmlinux 0xf90450cc xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xf91cfec8 input_unregister_device +EXPORT_SYMBOL vmlinux 0xf96fe408 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xf97456ea _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xf97bc931 __cleancache_flush_inode +EXPORT_SYMBOL vmlinux 0xf983863c splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xf996e892 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9d44e69 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xf9f30872 user_path_create +EXPORT_SYMBOL vmlinux 0xf9ff6d22 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xfa002662 blk_init_tags +EXPORT_SYMBOL vmlinux 0xfa056ee8 fib_default_rule_pref +EXPORT_SYMBOL vmlinux 0xfa15086c __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xfa28da18 user_revoke +EXPORT_SYMBOL vmlinux 0xfa30957c mempool_free +EXPORT_SYMBOL vmlinux 0xfa8e9daa pci_do_scan_bus +EXPORT_SYMBOL vmlinux 0xfa8ff9a0 register_filesystem +EXPORT_SYMBOL vmlinux 0xfaa1b1b9 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xfaf98462 bitrev32 +EXPORT_SYMBOL vmlinux 0xfaf9df1e skb_copy_and_csum_datagram_iovec +EXPORT_SYMBOL vmlinux 0xfafa8838 agp_free_page_array +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb0f2156 iget_failed +EXPORT_SYMBOL vmlinux 0xfb3082cd ethtool_op_set_tx_ipv6_csum +EXPORT_SYMBOL vmlinux 0xfb5f846a cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7d26f4 files_lglock_lock_init +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb8bd06d md_register_thread +EXPORT_SYMBOL vmlinux 0xfba53db2 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb0e80f elv_abort_queue +EXPORT_SYMBOL vmlinux 0xfbbd604c inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xfbe27a1c rb_first +EXPORT_SYMBOL vmlinux 0xfbf21bf0 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc094f57 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0xfc10f4db pci_claim_resource +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc40f351 request_key +EXPORT_SYMBOL vmlinux 0xfc6c661c padata_add_cpu +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfcaa04a0 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc7c287 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xfcd35070 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xfcda96ab tcp_disconnect +EXPORT_SYMBOL vmlinux 0xfce6cd08 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf74b95 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcff998e __bforget +EXPORT_SYMBOL vmlinux 0xfd136fb1 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xfd19011d kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xfd25325f skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xfd483f08 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xfd4a0d2e f_setown +EXPORT_SYMBOL vmlinux 0xfd6293c2 boot_tvec_bases +EXPORT_SYMBOL vmlinux 0xfd68444a bio_alloc +EXPORT_SYMBOL vmlinux 0xfd6a20a6 flush_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xfd6b3d0c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xfd6f4850 native_wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xfd7d7713 acpi_exception +EXPORT_SYMBOL vmlinux 0xfd8b158e padata_alloc +EXPORT_SYMBOL vmlinux 0xfd97da73 set_pages_x +EXPORT_SYMBOL vmlinux 0xfda0dbe8 ftrace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xfdb1c68f bdi_register +EXPORT_SYMBOL vmlinux 0xfdb2f4a0 sock_i_uid +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfde5589c generic_delete_inode +EXPORT_SYMBOL vmlinux 0xfdee7d42 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xfdf33486 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe392bcd generic_segment_checks +EXPORT_SYMBOL vmlinux 0xfe5600e6 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6ad800 bdi_destroy +EXPORT_SYMBOL vmlinux 0xfe769456 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe83841e pnp_device_detach +EXPORT_SYMBOL vmlinux 0xfe93429e blk_start_queue +EXPORT_SYMBOL vmlinux 0xfeb27721 cont_write_begin +EXPORT_SYMBOL vmlinux 0xfec3c2f2 bcd2bin +EXPORT_SYMBOL vmlinux 0xfed67863 journal_wipe +EXPORT_SYMBOL vmlinux 0xfedd35fc console_suspend_enabled +EXPORT_SYMBOL vmlinux 0xfedf192b generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xfef96e23 __scsi_print_command +EXPORT_SYMBOL vmlinux 0xfefd5929 vfs_follow_link +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff22cddd bio_copy_user +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffcb3481 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xffcff2a4 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-x86_64 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x19dc7881 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64 0x5e752773 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/kernel/microcode 0xdf66ca81 ucode_cpu_info +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x058d9ffe kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x08df8882 fx_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12432afd kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x171dd1cc kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18bbf0fa kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a4b95fe gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c0373ee kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cfe78d1 kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x201b5e57 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x22476a20 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2281856c kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x280e5daa is_error_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2875bf22 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2b7d6d98 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2cbfcf1f __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d464b8b __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36c6abb0 __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x379e339b kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37b302be kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bf45bbb kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c683810 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3de08404 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e5b14e8 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fba6ac9 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40198c08 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x417cb6a5 handle_mmio_page_fault_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44c2f75e kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48fab3e3 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4969e54f __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c295af0 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d06aa1f kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d582fa4 x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51fe696f kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x532fbfa4 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x54b349cf kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5addbc6d kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e210e2d kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62148ef9 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65ea7dc1 __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68240472 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6db19e07 is_error_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x700be0db kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x705ed339 kvm_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7081a8e8 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74ee453b kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74fbc94a is_fault_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x788ab358 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79f4d2c6 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7adb820a kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c9b19a5 is_noslot_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cd7009a kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e1b73e6 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e803e8d kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x83042d1f kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84c9c669 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87221fb4 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bd0b899 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cfcdc1a kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8d81cbbe kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x910d8e46 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9363995d kvm_resched +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9371e066 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x943b77f9 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9475c434 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98eaf988 kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a523aa7 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ac9aa92 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d457e76 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fa106c7 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa183d072 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2488a67 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa440474a gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa5252cad kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa55f808b kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa89b0318 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa91845be is_invalid_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9ee865f kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa0c58be kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaacf945b kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae50853f kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb09bdb34 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb96ae805 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba96c4c7 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb7e3fa6 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc2b937d is_hwpoison_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc32e5bcd __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc81b416a kvm_mmu_get_spte_hierarchy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca018782 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca6e7356 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc33d62d __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf2b2070 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd140fce0 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd296def9 kvm_is_error_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd63c3ff5 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd69a37ed __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd736b4ac kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9bc9b99 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde01b156 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde929140 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1f13aac kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe36d7e68 gfn_to_pfn_async +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3df1d4e kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedcfcb85 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xedd31a89 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7c07a4f kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7e264bd kvm_set_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfa3fb4d3 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb55daed hva_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb6025fd kvm_write_guest_cached +EXPORT_SYMBOL_GPL crypto/af_alg 0x142696b1 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x38fb0009 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x5f515073 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x63aba7d7 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x7e7cde9c af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x8f5434c9 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xb7f816db af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xeaa35528 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xece318da af_alg_accept +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xf5fb1d83 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x986531ac async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9c03aba6 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x597f4e86 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xd6ddb334 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x1d076835 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x31366e95 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5c351d00 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9b685c75 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7bad444b async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xd8f22dda async_xor_val +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x58eac845 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x0ae482d6 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x236a8974 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x679f55be cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8011de53 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xad2ee5c5 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xbb8d565a cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xbc9e5a39 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xbcec42fe cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xde59d4a1 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xfa7a34b7 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x14770379 twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xd96b7f2b __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xeff6210b __pata_platform_remove +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x02e8ea4c bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0c75ee10 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1083094b bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2d6626c0 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4102b5bd __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7a397d1b bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7aa13210 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85ed60ea bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x927f80d4 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x97a7da75 bcma_core_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbb846380 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xef475e33 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf549aba7 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x08348d65 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x15c27a22 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x244daba4 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7b1b542c btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd725fceb btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd874fce0 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xed242a4b btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf090b330 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL drivers/cpufreq/speedstep-lib 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL drivers/dca/dca 0x240fec22 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x2b473598 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x2e471f01 dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x427a140e unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x574e8076 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x8006c614 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x942721c6 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xacc66185 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xfeacbc4a dca_remove_requester +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x178c85e7 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x104e7dcb edac_mc_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1086dcfa edac_mc_handle_ce_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x14004772 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1ad26d64 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1cdcc319 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x23222707 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x27ac1aa8 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x29228a20 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x329f3309 edac_mc_handle_ue_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x358e8b38 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x37ee4dd7 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x53516dce edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5a801ce8 edac_mc_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5d3c418c edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x617df458 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x69259f22 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x86d559c4 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8b477b1e edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8e0d0799 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x94e8c222 edac_mc_add_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa4eb411a edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb5912a46 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc17853df edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdefe1a4a edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfa393d3f edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfab39db9 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0d38cee6 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0dc0b68c amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0f0ba55e ii_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x4b01887d pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x6d4e6991 amd_decode_nb_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x7509830f to_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb98537cb rrrr_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xc2b73a3a amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xe6ff7e0c ll_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xf8dec080 tt_msgs +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x2a1fbe22 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xb9b4854e bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x6ca6b956 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xca2c4c7c __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x25d6faac drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9c6a1101 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d597935 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x16935d12 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x246e5ca9 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x264a14dd hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3483d423 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x46b508c8 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x659a4e90 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6734d36f hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x67fdfcaf hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a8e56f9 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c2172fe hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72848224 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x73d32883 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x775fab9c hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8020ff19 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x88fdd72f hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8e7ddd7f hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x95036d46 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab513cde hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc297a68e hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcfb5e468 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd008af28 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb457387 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4837eec hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf99c4812 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb0bd5ff hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x7e88426b roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x146f4a98 roccat_common_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7ea49113 roccat_common_send +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x3a9c06cc usbhid_wait_io +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x6612b21a usbhid_submit_report +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb920a6c6 usbhid_set_leds +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xea9ffecd hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0aa9d15c vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x38647772 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x69c85034 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x77f5210d vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x795145cd __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7ea934ed vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x82506fa9 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x952cc119 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xce2d1493 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xef9e46a6 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x2e9106df nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2b44cd79 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8d5231bc i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x724a6b50 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xdaf6535f i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/infiniband/hw/ipath/ib_ipath 0x1514b2b2 ipath_debug +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x14a2659b input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xc001e2da adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x17255c6a wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1da2b558 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4bb00464 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4fdae278 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6a2b1c3e wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6a4cc034 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7162df35 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x77950164 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x938224df wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9b609fa9 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbb3f01fa wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe7836db8 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x4de7b2d0 unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xb17b7c77 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x101bb53e gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x10881537 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x19b1dd6f gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1acab528 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1ae94507 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1c37f312 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2ec480ef gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4e764a67 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5c8678ff gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7d7b2a8c gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8246b843 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8453323d gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaa14a7b1 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd047f94c gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xde8947ef gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe1ae38c8 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe2779ef4 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xec8029fc gigaset_start +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6aba7f5e dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9310ba06 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9c256008 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa1d2413a dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xafbda3f3 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xbaaf29a8 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xcbb1bae2 dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x17f13f8a dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf84be832 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x31689f6c dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4430764e dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x8a09b133 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x96ca589d dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9ada5ce1 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa68e1f06 dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe80ca1c dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcd9e4b8d dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfad9d53a dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc62ef4e dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x009e200c dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x03ced457 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x08a936ca dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x28400536 dm_sm_checker_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x42727fbb dm_sm_checker_create_fresh +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x43293720 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b2ff62 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x769a642e dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80afbcf5 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80c89b3d dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x98925a60 dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa6aae3ea dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa7e46220 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb7bad799 dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb967690a dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd4f51646 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdb562135 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xefba9b23 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf99dc2cf dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/raid1 0xfbaff5bf md_raid1_congested +EXPORT_SYMBOL_GPL drivers/md/raid456 0x3d8861da md_raid5_congested +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x2615ab8c saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x3df4b1af saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x504806a3 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x5cd30abe saa7146_devices_lock +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x62f3b282 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x833142b4 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x8dc867ef saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x9317c579 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xb0635c5d saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xcf683cf2 saa7146_devices +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xd2425c2a saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xd68b8058 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x23c892a8 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x44756d06 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x611f8847 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x6a6c95b1 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xa0de1f49 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xad7d49bf saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xe00f8e2f saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mt20xx 0xd88acc5e microtune_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mxl5007t 0xd44131a1 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda18271 0xb76bbbc0 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda827x 0x0b3b6cf2 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0x7e68ac50 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0xae22bce7 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda9887 0x3bcaa5a7 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x41999043 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x5a92eb81 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x31131f20 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0xc4b98909 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tuner-simple 0x8960ca8d simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-demod 0x265d0370 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-tuner 0x8aefebf3 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/frontends/tda18271c2dd 0xf4b73904 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x0789eb56 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x38334f9d mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x3a0b1d42 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x3f658aab mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x6bd65098 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x7bc527c2 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x7cd45f76 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x912475ad mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x9255861c mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x97ee9a0f mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xa7859d64 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xbb54ed03 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xbc420a6f mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xc1b09919 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xc388cbc6 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xd568c924 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xf8138c7b mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x0951aa13 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x0bb815f7 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x0bc76b03 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x132665a6 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x1d4fb92e smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x2fb77cbf sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x35b08b81 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x6f8d25d5 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x75d8181a sms_board_event +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x76222253 sms_get_board +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x76c7c6f5 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x8afe98e7 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa3979841 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa97b1e30 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbad0d748 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xc3d6a27a smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xc5356d6f smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xf0e58a2a smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xf804a1d4 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x3e086042 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x54cf512d ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x5bbb1391 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x797d68bc ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x98dcb2ad ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xd7696f19 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xedd34b92 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x00c80083 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x089cc058 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1f7b45ca rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2927981a ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3f395a83 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x417efe7c ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4b767999 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4cc7f3d3 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8cfb6d4b rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x941525b0 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x95f30186 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa50eec9f rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4fcb11b rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc2478736 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd0edb258 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe86f5699 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfec8cf8e rc_map_get +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x109a3f63 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x21262221 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x33909766 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x4469d96d cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x4575a345 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x458abc9e cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x663e6b09 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x6adea8e3 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x6ec43c3f cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x7f19a707 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xa0ce8dd8 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xa52882a5 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xaa544e18 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xb845dec0 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xbc077203 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xd9a20667 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xf45224e7 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xf98b8071 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xfde37329 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/video/cx88/cx88xx 0xb2ad6b06 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x006658a1 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x07ceb226 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x381bf50c em28xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x3e92dc87 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x543c2699 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x6ad903a7 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x7a38fdc2 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xb7ba079e em28xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xb9eb7fb7 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xddd494cb em28xx_isoc_dvb_max_packetsize +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x2cd5076d saa7134_g_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x82630136 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x9068df82 saa7134_s_std_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0xaaed97ae saa7134_queryctrl +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0xfbdc43fa saa7134_s_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x1a0252b0 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdb91abec tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xe656e680 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xf05977ec tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x19b7ad36 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x2353b16e v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x6fb7951c v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x94632f90 v4l_fill_dv_preset_info +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xa7d267e2 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xda0480d5 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xe1ca5873 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-compat-ioctl32 0x4c837abb v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x2823d8d3 v4l2_int_device_register +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x52e11ec4 v4l2_int_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x5d1157a2 v4l2_int_ioctl_0 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x941c85c8 v4l2_int_ioctl_1 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa5228b24 v4l2_int_device_try_attach_all +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x0e50517c v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x16fa5307 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x18db1af6 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x221cf008 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x4e84b5fe v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x7b7683f1 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x7fa4def4 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x88e78d0c v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x934f1d0a v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xaea1fd3f v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xbc30e324 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xfc7e9414 v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xff9fee53 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x135a4d10 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x1eadb43a videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x240fd319 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x3017149f videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x44730f37 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x44fe6cbf videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x65bd8c66 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8471587c videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8cb873fb videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xa6adca40 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xa6fb988a videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xaeb65077 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xb1cd12c4 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xb91d8377 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xc801929f videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xd059d74f __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xe5f33d0f videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xe7d35bb6 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xe8afebcf videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xf924a27d videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xfa81e6dd videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xfb0ccfbc videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xfdcff621 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xffb6482f videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x15d52487 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x5578efe7 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x57f66953 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x215696e8 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x23ef7e0e videobuf_dma_init_overlay +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x25adf336 videobuf_dma_init_kernel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x293c21d4 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x3c283e66 videobuf_dma_init_user +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x9f4d7291 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xa38faed2 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xcba85db2 videobuf_dma_map +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xd76aea73 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xdd6d25d1 videobuf_dma_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x07c100f2 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0xb3e79101 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0xfb7feb7c videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x025404b6 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x076bb621 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x4f204f16 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x5957e6c9 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x684c4ea1 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x6a87b8ef vb2_write +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x74df4f26 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x7b407ba8 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x9e2a1014 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xade94f47 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xb3784b34 vb2_read +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xb58058e5 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xb686af4e vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xd887f519 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xefa36bd3 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xf258ca1f vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xfd2a1d13 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0x53459c51 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0x75af5539 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x4c6cbbb1 vb2_mmap_pfn_range +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xa84583a5 vb2_put_vma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xc2bc0cba vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xc5aa24c0 vb2_get_contig_userptr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-vmalloc 0x02c54fa4 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x00c111cb v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x191f3d3a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x1c08c130 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x1e2942bb v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x26ccd497 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x4bd89f77 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x6cc2db4c v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x83d9d90e v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x85007a11 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x88f1d813 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x8e755d89 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x90f89ecc v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x97dff2b2 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x9b7d79a8 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xac35dce5 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xb3db59fe v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xb938e455 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xc8664c96 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xc9fb0a2f v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xd922eb48 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xf0ba0c4e v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xf37ea3a4 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x002ea7b8 i2o_dma_map_sg +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x582199b1 i2o_dma_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x6f8df0c4 i2o_pool_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xa93fd507 i2o_pool_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xcd8602e3 i2o_dma_realloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xdc310124 i2o_dma_map_single +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xee7bc848 i2o_dma_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xf53d015a i2o_sg_tablesize +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29d1d107 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0e36ec48 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x257e2134 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3c1fe2a3 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3d8978bd pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x54e71993 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7e0345e1 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x94a9f402 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x94b32882 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc479f5b6 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcc08e4f2 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdc8729d3 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x08774e23 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xf526235b pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x529462cc pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa238fc49 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xab90bbc9 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xcddbfb73 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdfcf6c7d pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6670ea2a sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7239e5a5 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb521cc2f sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb9a9eb16 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd482d580 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xa3112fd0 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x5fa2070c wm8400_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xa6e61663 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xc7910738 wm8400_block_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xe004ea64 wm8400_set_bits +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1a429e17 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3778744c cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x812ac7ac cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xbdc9abbb cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x2df115d4 eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d14d2f eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2e26b01e enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x656e7257 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6fbea246 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8bc2a3b0 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbaea810b enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc6a44600 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf05a9e55 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1252da1d lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x353bdb26 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x55495cfe lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9934003d lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe27f3912 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe4a4d607 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf9b03eb8 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x636e2e9f st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xe3a291ea st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x074fbd1a sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0879480a sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x658555a3 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x884cd834 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8f705205 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x95be0e9f sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb4b1a0ec sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe82398d6 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf59bbe47 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x59b7906c sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x68656ba8 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9a6f5957 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc3f70cc3 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xce140629 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd969b988 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1a930abd cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4ce319e8 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x65f9e24b cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x31fedf97 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9ccc1cba cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xcef9ebfc cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xfa200fb0 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x0a7f4a22 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x5269d4e3 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xcd2b5d69 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2000 0x88518c6c DoC2k_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001 0xcfa66bda DoCMil_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001plus 0x98e3741a DoCMilPlus_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/docecc 0x45937659 doc_decode_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00e948ec mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c08f159 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3cf55028 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d2ba5c1 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x597edc75 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6089c1a1 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x691a3966 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e2912c3 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8fb72a34 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92895426 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x931c875c mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95f38adc default_mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e248cf2 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa3279758 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xabdceaff mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0dfa901 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc0c9ed33 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc91c9dd3 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcb8b7c94 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcde31d55 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfeccc65d mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x78dedaac del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x810f9725 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x925bb5ea mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd34157b0 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfcf85467 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x48f036ce nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xd453b185 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xbeefa858 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x111548aa onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x76d4562b onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x099154a7 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2087a66c ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3e2728e5 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5fe7864f ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f09ba8a ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7824fafd ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9ab72be9 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9ae3e712 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb9871ff9 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc7924121 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd021fabe ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd44a177d ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe4f9fa45 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5980c6a ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd6f0ef9 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x03a306eb free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0949c18c alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2498063b register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x71c0eb2d unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0ac1ea82 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1465729d alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1d10fc49 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x25856dcc alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x31d4603c unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5459faa0 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x564de2b8 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x57b96187 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xae6256a6 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb8eaf416 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbcb9e431 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcf1cbe7a register_candev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7ac5cd40 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x8e4420fc unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe502a88d alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfc312494 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x011ac35a mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0151a0f7 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04dd7743 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x085132f3 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bbbbcce mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c4075d9 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d4346be mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ed22bde mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x100f63d7 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x16761087 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e991696 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x287759ee mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3427d3ef mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39746834 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f5ab4a6 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x404703d0 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43111bb2 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47f24d01 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d6e74f1 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63a3efa5 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ae71c56 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b165df6 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ce11eb1 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f71b9cf mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72d20242 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7379ed25 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73976a17 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7667d8f6 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7816b33d mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f88971c mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fcd4139 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86af9a4d mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bde7762 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x945f8641 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94ce5d75 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94ecff4e mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x959c2990 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x96a0e4a6 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x981fda70 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x988c5c77 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dca5fcc mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa052a1ba mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2a70421 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa35fa44a mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa41a89d0 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5668cef mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3b99c0 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa9b26ed mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabe43995 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb376f2d7 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb85c2e59 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdcee482 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdd5f722 mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9c59c57 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccb40ad0 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce9666ba mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf2d6364 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd34ba50e mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd71dc185 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdff75018 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3c32c20 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7045558 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe839142f mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb45b465 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3347b99 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf618169e mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf636abde mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdc2a54f mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0931f381 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x45afa046 macvlan_start_xmit +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x5eeeb226 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb077f31f macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdde9ecf3 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x37019f38 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x19506cf6 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x73f4b9a5 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8b43580d usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xda9a33dd usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4d6ecf69 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5c50d73c rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8a3a0213 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x97124588 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xca28b7e3 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xefd0395f rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x146af2a6 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1fb9fa76 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x26d77fa5 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2715a1ba usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2e20bf36 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5444f7a2 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5862ad4f usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x65641d75 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x670d284f usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71b8f3ad usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x79537382 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84cf1343 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x85bbf4fa usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x88b323f3 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x890ca27c usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x998d38ee usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa28c2296 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb56a94bb usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5a3caf4 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc703bcc4 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc12de34 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe14e9121 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed32e4d3 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf699dadf usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x03f34195 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1dc6dd64 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2361ae70 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2fae7b4e i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3e26dee2 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4b3b558f i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5c928fdd i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x61ff5130 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6503dc6c i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x880a7db3 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x93ef33c8 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa24423c4 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd54bcf98 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xed524524 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf4fbb736 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf67595fd i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x1c820b19 libipw_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xb837a338 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x16df5706 iwl_legacy_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x2e735dc9 iwl_legacy_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0xa85f5534 iwl_legacy_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0xb7029327 iwl_legacy_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x026f8de1 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x10c5e935 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x144c6609 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x17bb20a4 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3cac1b0d lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x414ee958 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6bf921b5 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x770081c0 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa138ae8f lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc83bb807 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe4b5a1b6 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xed3325d8 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf5553c76 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf941981d lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfeffbaf9 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0400c2f4 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x25990f82 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3b91b88f lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x41cc1cae lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x486da6ae lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4d5b5d38 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x629099a9 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8502acf0 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0x47e10fa7 if_usb_reset_device +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0xda9e2bb4 if_usb_prog_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x23a0ae90 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x382a434e mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4596f940 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5ff0f6dc mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6012e419 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x98327a3c mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xaf378c90 mwifiex_deauthenticate +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc1fbce3d mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcf9727c2 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xec109636 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf748f76c mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x064f7c6a p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x11281052 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x52156fca p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x57bb5356 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb4a0db25 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb5d758bf p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xbf446162 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd91d757c p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xff64ec07 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x04b3a520 rt2800_get_tkip_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x09db113a rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x10a2618e rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x19e3bab1 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1cb76681 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x21282999 rt2800_validate_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x22d02d01 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2783380d rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x28c203e2 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2ad20e95 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3d152764 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x441bbca0 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x449ab80b rt2800_init_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4af1369c rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4e2fdfc1 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4ffad42b rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5fb0c2da rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x64ccd7e1 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6abdca60 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6cd158fb rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7b536b70 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7ffda8f7 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa52e5a67 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaf28faff rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb6260e1b rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb6a89e7c rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbb11d351 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc27f1f03 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc37c7c94 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc4b3cd0a rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd1e8581c rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd4b8bb7b rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe1e10ff1 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf092aa30 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf308641f rt2800_probe_hw_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf4bf650b rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfa751ebd rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x01b3aecc rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x024ae716 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0748484c rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x078d74f5 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a9dbd4b rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1ac33b65 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x20802dbf rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2560cee3 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x26f8c3ea rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2c49fe69 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x34b4a70a rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x361d7a81 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f586a71 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x433a55b3 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x456c8154 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x482cb954 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x58ff9541 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5b8d340b rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5f3b9c38 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x60aa74b9 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x62103682 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x77b76696 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7a27e25a rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x87db35cf rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8f9b44cb rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa0591932 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa1e4d08a rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa23ae8e9 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa5661aa9 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaacb5650 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb2e8c137 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb405697e rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4729695 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb7660c2d rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbc3d4894 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc2222f3d rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc4bad68f rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcbb06392 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcde974f4 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd9452f81 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe614c3a6 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe9761f46 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf02e0450 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf23b6673 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf99d6e35 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfc8c81ea rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x27ac34e7 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x2b015ca9 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x3020f55e rt2x00pci_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x6760f51a rt2x00pci_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x7e1d738c rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8a09fd55 rt2x00pci_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8abe897d rt2x00pci_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd9d6ffe5 rt2x00pci_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xebdf2b29 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0a7b20e1 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1a5309d6 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x29bc98a5 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x31f01c9a rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x337ae979 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x499183f6 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x61e84657 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7865fc72 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa75ec0c0 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbb664d0b rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc4e9b63c rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xca3e1df0 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd1876c09 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd5475120 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe2a9985f rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe6fc9013 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x3f2a5ed6 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x446a325c wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xe60c6c3a wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x37dfd7ba wl1271_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x3a8516c8 wl1271_register_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x86aa8e39 wl1271_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xaa9accfe wl1271_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xc5a1df29 wl1271_unregister_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xd30c9f67 wl1271_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xd6a78ebc wl1271_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xe795ba26 wl1271_irq +EXPORT_SYMBOL_GPL drivers/pci/hotplug/acpiphp 0x0e268725 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL drivers/pci/hotplug/acpiphp 0x3019b39a acpiphp_register_attention +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x19bffce6 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x9b9df5e7 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x561c634a wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x876d29f1 wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xda29f8b0 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xfb882fb7 wmi_query_block +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x817136e8 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x874b0702 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xb8112b8c pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x136428ea mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x2d12a4a0 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3a31ab86 mc13xxx_regulator_list_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x482c0039 mc13xxx_sw_regulator_is_enabled +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4d67e1de mc13xxx_get_best_voltage_index +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa05e67bd mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd9bfa77b mc13xxx_fixed_regulator_get_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x08bb2485 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x13ce43fc wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xabdc8e16 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xacbe848b wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcf8a78da wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe6351c90 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x940cbc2e wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04259ab6 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04b42628 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06539656 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0879dfab cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x095029b2 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a57297e cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b6bc293 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d036481 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1435209e cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x16c99346 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cbdc14b cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x333de408 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3fe33847 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x419f348d cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4288f26b cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4829ac42 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x591453f6 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ff7107a cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63b7d8af cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66b0e7d4 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70318baa cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7400d983 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f2fe137 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80513722 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a17f67d cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a53030a cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c0f6426 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x974b6942 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e6286ce cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa12762f5 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa169c183 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa521a898 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0d7c89a cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbac99763 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb5a0cf3 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbeb48c30 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6cf3501 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd907dd64 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdacf579b cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf890221 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7062da3 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef57a6af cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf02ea97b cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf69d66b5 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb239223 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0f3dfaae fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1f80bcc5 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6dcbde36 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x83c1e123 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x883cce11 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb2a8c06f fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb9b8a617 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc273baa6 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe503f8a0 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x18f6d108 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x5fc7621d iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x73e86564 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa96a5ff6 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc0e821a7 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc65c6d9f iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x005da683 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1155d603 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1442d814 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x156e2b4d iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x17de906f iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x252dc497 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x25f8c4e9 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x29c55e66 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a2b6d89 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bd97e76 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eb88f8b iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f84597d iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x31760c23 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3a7cdd69 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x444daad5 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4755d4d0 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47eb5ad5 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2709b0 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x59480923 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b187893 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5c7ceacd iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c3ae61a iscsi_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8132568b __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84601257 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x87ac4a63 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8fbbd4bc iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x930235e8 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b8d7e72 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9e2d2828 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4832cf0 iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4f8855c iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa763dc61 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaaad926f iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac3f0548 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xac7e14ef iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5c2be71 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2413b65 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcdbe1696 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda3c9a39 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdfdf7f21 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0031d27 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea9d5f30 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed01227f iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee6a5cf8 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf39824c9 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf842196d iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04f480a1 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x16ce7858 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1b86a48a iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2cec34a5 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x48865140 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x494df892 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5a739355 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x64b2d391 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb71b31a1 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbd6f2d7e iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf6460df iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe3f1713d iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xed352161 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf64359f6 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf6b3336e iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfe206636 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03d577e7 __sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0fc6f40e sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1050e7ef sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1358e984 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x160a05dc sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1c913d30 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1db53313 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x26e7a918 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b0f3aca sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d5c36b3 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2fd9d7b9 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x394699f8 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x788b7745 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x826e824c sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x913f5bc5 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x927a1b7a sas_find_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa96d62ce sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc2a83a0 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcc452708 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd4af7640 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0c4a44e sas_slave_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2c66ee8 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe772ab6d sas_change_queue_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe93631fd sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf3b1331d sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x56d00e7a srp_target_free +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x77aadef7 srp_iu_put +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x91aacc35 srp_iu_get +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xa90f4822 srp_transfer_data +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xce516cfb srp_cmd_queue +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xd0505a00 srp_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x1f826c6d scsi_tgt_cmd_to_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x21a88f86 scsi_tgt_it_nexus_create +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x2f35d529 scsi_tgt_free_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x5ece3045 scsi_tgt_alloc_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x6785be08 scsi_host_put_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x88f04302 scsi_tgt_it_nexus_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xac3df9bc scsi_host_get_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xc24eeb4d scsi_tgt_queue_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xd6ddc60f scsi_tgt_tsk_mgmt_request +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0117192e iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c197cf4 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1466372d iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17496412 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36ed53b5 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49719324 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d695d50 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57df2e49 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5b21350d iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f81598a iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76619010 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7ac85184 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7d085a11 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x802aae84 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8757da57 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8c018dba iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xad817e25 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc808f297 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca9224d4 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb11ea21 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb7d39b5 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd59ba627 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe0121927 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2e95064 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8561370 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfc6cc06d iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff34f2f6 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x68e752bb sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7b5d2322 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcf243374 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xcfce759e sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2df90535 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7092c19b srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7b471e5e srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb6001f56 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xca25b67d srp_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x03683ec7 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5c22444e spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xa4bb16b0 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xce261f4b spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe8863378 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xff5df338 spi_bitbang_transfer +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0364350f comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4df8a915 comedi_get_device_file_info +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x97ba9c83 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbbb539cf comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd895bd68 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x1f287c48 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x86fcde20 das08_cs_boards +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xb6d0662a das08_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x25e55b95 labpc_1200_is_unipolar +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x42ae9ed4 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x8285332a range_labpc_1200_ai +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0xaf1e4347 labpc_1200_ai_gain_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0xcdf53e2d labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x06a5b1a5 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0b00319a ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1a8bc6e2 ni_tio_winsn +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x71a80767 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7c30b2fb ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9d6b92dc ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb8c79225 ni_tio_rinsn +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd6daa998 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3250fe58 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x38398664 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x521d7fba ni_tio_acknowledge_and_confirm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa6784e47 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa72a4417 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc46c27e4 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x2468ed34 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x579d2806 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x587711de oslec_create +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x882d5f27 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf828c15b oslec_flush +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf923a5b1 oslec_free +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xfabc3747 oslec_update +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x07e4e4f0 iio_scan_mask_set +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x4a63935b iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x77d77fdd iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xaec3f856 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/staging/rts5139/rts5139 0x35b85807 rts5139_usb_ids +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3a747138 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x44718dab spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5f23a9c8 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6da21141 serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7111c7fb spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x764d01a9 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb73a5748 get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbaa86d8 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xce56e8c5 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd3fef96f synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xea57f6f7 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf1a070be spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf88331d5 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x03a59e50 usbip_xmit +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x1265ac7f usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x13a531d0 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x15832aec usbip_event_happened +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x3e312c4b usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x4ef08632 sockfd_to_socket +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x5a4ae511 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x5ce39fb0 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x8b519f97 usbip_event_add +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x8ff16a42 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x95599d7d usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xcf40a94b usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xf2f8e5cf usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x05be7211 max3107_probe +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x0c2f1f01 max3107_resume +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x240647b3 max3107_hw_susp +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xa9fe1785 max3107_remove +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xcef3eb7e max3107_suspend +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xfa20aef0 max3107_rw +EXPORT_SYMBOL_GPL drivers/uio/uio 0x4fd9f744 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x63c8b209 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xcee75417 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x435a77ba usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x89a5f82c usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xa51a6a2c usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xc0c53044 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xdd9f9873 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xe619efd5 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x05b494ee usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4e3e2386 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5fc83289 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa2bfa007 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb45ed9be usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc2904de8 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd35dade7 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd62f897b usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xec73d30f ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0ac3e809 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x16055690 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2f34c5e8 ezusb_set_reset +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x36b0aa63 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3d5036cb usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x46202963 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4ebd6851 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d398056 usb_serial_generic_submit_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x62c087b5 usb_serial_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x62ca0793 usb_serial_register +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a419286 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a4c76c0 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8ff45704 usb_serial_deregister +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x96e5cce2 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x987c0693 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x988f9c21 usb_serial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd858e1af usb_serial_generic_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdd45e8ba usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe0e86c3c usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe8d6dd99 ezusb_writememory +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfa39eae9 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0a612d50 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x120e19e1 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3b506c48 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x45b2d9bc usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x551dda74 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5b45b28a usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5e7e63f3 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6599e44e fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6b947fb4 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x740bd892 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x82d82c19 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x93ea46fb usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9d80c382 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc30201e9 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc49896cf usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc60b0f33 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc65dcdf2 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcdbcd521 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd7233ad9 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd8f7a9e0 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xefe98688 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfa03afc4 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x58994f57 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x94bc5f95 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa3b31348 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd98aeceb wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf2a09f2a rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0dc34725 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1b4cfb44 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2adbf2ca __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3c7dde35 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4137ceb6 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5b87fc49 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x61425557 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x614ce62c wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7448dc1e wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7aec21f1 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8f2cc124 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbf5151a7 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd0b8f106 wusbhc_rh_resume +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xda91332f wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdbff633c wusbhc_rh_suspend +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe08c045b wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1a835514 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa2dbf785 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xc58f590a i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x192608f0 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x1b2e0acf umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x27159d8d umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4af23f29 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5d1943ac umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x82c4aaa3 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa12e6ecb umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xef96ac72 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x077fd5aa uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0a6ee34b uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x19723e7d __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1b3b0242 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x210c9a33 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x25c30334 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2c68f156 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2eac7d42 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3914ec97 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x39f64b21 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x42ff6bb9 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x47ee02a1 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4c246f2d uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4f79af5a uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5642b261 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x576a376c uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x672539cf uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b9377c5 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ebba94f uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x84e9b05f uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x85029746 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8b310301 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8cb42db6 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9168e38e uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x92734d7c uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x94e2de85 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x99e7fcdd uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa22a7a57 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xad78ce11 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb3e1b9c2 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb88ccd6f uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbac9fe17 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbae8f580 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc7eb4c19 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc9efc908 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd9852e3e uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb4cab9a uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6e5a7ac uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf79d9f9d uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf7ca313a uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfb07f362 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x0fd06377 whci_wait_for +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1684d049 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2192f1d4 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x23aac3ef ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x889014a7 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x89c76ac9 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf8e2218f ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfacf51b2 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fb_ddc 0xea218392 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0x2e3794af fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0xb9ca1233 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0x682d1920 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0xa709d48d sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x21dd0e7f viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x292da7a2 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x79e6190a viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1639aa02 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x409d0940 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x55005337 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7d878102 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x87211b71 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8aa70320 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8b72dbfb w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbf7eb6e7 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfda62390 w1_write_8 +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0864c4a4 dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1ce187aa dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x32d1cb6c dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x751ad07c dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fat/fat 0x007ef20e fat_build_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0x00e49680 fat_scan +EXPORT_SYMBOL_GPL fs/fat/fat 0x0199cc31 fat_setattr +EXPORT_SYMBOL_GPL fs/fat/fat 0x3135ab9a fat_free_clusters +EXPORT_SYMBOL_GPL fs/fat/fat 0x5e81a0b5 fat_dir_empty +EXPORT_SYMBOL_GPL fs/fat/fat 0x63bec058 fat_time_unix2fat +EXPORT_SYMBOL_GPL fs/fat/fat 0x811bd1f1 fat_detach +EXPORT_SYMBOL_GPL fs/fat/fat 0x92b79884 fat_remove_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0x984dd5f2 fat_search_long +EXPORT_SYMBOL_GPL fs/fat/fat 0xa3e661d1 fat_sync_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0xabafc089 fat_getattr +EXPORT_SYMBOL_GPL fs/fat/fat 0xc4bbf84b __fat_fs_error +EXPORT_SYMBOL_GPL fs/fat/fat 0xc7b43a8d fat_attach +EXPORT_SYMBOL_GPL fs/fat/fat 0xcb2dc603 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL fs/fat/fat 0xdba1b9cc fat_alloc_new_dir +EXPORT_SYMBOL_GPL fs/fat/fat 0xf94e9d35 fat_fill_super +EXPORT_SYMBOL_GPL fs/fat/fat 0xf9658d40 fat_add_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0xfee74364 fat_flush_inodes +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x17ce645d locks_end_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x42c864b2 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4e31289b nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5830d8d6 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f959b35 locks_in_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96877ac4 locks_start_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9da52842 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa7b91a7b lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdfd20794 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6933c48 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x110c22be nfs_commit_release_pages +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1953f1 nfs_initiate_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21d6ca59 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3caa1bda nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bc50502 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87122ecf nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87a8ad19 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91a20be0 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa2ebf05 nfs_initiate_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccb0e0a8 nfs4_reset_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb5df6dc nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe711eebc nfs_commit_clear_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5a87370 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8c8a2ea nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf945c4bf nfs4_reset_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc816892 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfee136c6 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x5c5805c5 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x7d5e3bb3 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0598597e o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x521e0726 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x535ae674 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5f805185 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x63bd2508 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x67267465 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa1c9a8e5 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc10136dd o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0ec33db6 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x28df662f dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x77e3a2ef dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xacfee76f dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbaccf9c7 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc3a9de1a dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x025e2d69 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0562c415 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x16b2e575 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x1a96d774 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4bf09a0a ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5469ce31 ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7083dbd5 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89502fe7 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb4bd060c ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdc823ea4 ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe2bd47db ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe417d940 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xf2c0679b ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x24935f26 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xcdc24ab5 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0xdbab0c01 raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL net/802/garp 0x0b3ba24a garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x1f6ca54a garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x49f402eb garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x7de1bf81 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x9ca188bc garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xbaff5cb2 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x66f2f64d stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xc7ae2491 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x2ce9a0e3 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x752f2225 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0x50754510 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xe2c6bb26 unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x7bde2751 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0d954f45 bt_debugfs +EXPORT_SYMBOL_GPL net/dccp/dccp 0x026c944e dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0895bd7f dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1a9f23a6 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21adb7ab dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x226400da dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3547b7a7 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x36c668b4 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4383036c compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4aa90f55 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cfa4509 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x56732236 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5be0b3af dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x62e3272b dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x642b3c4b dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x770b4afd dccp_insert_option_elapsed_time +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7bca552b dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7c57346b dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x84b6d704 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d8aa101 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8eb68a86 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8edfa55f dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x938ca606 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa99117e6 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0dfd1cf inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe837b4d dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbfd7d8bb dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc389009b dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3b8afe8 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcacf3007 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcbacdd53 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcbe63b6d dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda0a5d96 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf3136ce dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdfb58386 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5304d3b dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3017e21 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5bcf984 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfabdde96 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2c6d95d9 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7d460632 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7e36850b dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xaf41b35f dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc0877fe7 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd529cd46 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/ipv4/gre 0x083b3849 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7045ca80 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x539bb0de inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x8e4d1d2c inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xedac0237 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xc7bb7830 ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x47259219 nf_nat_seq_adjust_hook +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x6d40a921 need_ipv4_conntrack +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x07ae60b6 nf_nat_proto_in_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x1f064555 nf_nat_set_seq_adjust +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x22580d2c nf_nat_packet +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x4ad7d280 nf_nat_proto_unique_tuple +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x735e63ea nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x94a08134 nf_nat_proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xad337d66 nf_nat_proto_range_to_nlattr +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xdc1d9af2 nf_nat_get_offset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x64f92626 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x93210a39 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xad596bd8 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb245a795 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfcf42288 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xd5aed8c3 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1aef51e0 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x21428a9a l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b30c94a l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4819b67c l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7289302c l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x89547ca2 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x977f01f0 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb30b7088 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc8134459 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd95e6bf0 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xefaabe44 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc304c07 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x21aeeb47 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3fc3b565 ieee80211_iterate_active_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8c3e9a33 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa5d36c7d ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xba7fb10e ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcef45b1c ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe05c502d ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebde69a8 ieee80211_key_removed +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed32fb40 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x049eb781 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1b10833f ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x283a4485 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x29696bbf ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bd82539 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x541203ae ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x54d311ae ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7b832ddf ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x83cceab4 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8aafdef9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ca6d85d ip_set_nfnl_get +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7f5c049 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5f9b62f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd3421dd9 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0a965b31 net_vs_ctl_path +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa12872ef register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa9661f1b ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc26a7fea ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xea40ba01 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x027dfcb6 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x074c46aa __nf_conntrack_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x160d4888 nf_ct_l3proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c9942b4 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d8ca086 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e78db7a nf_conntrack_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fbac204 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3011654a nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x313b812f __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34317b00 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e9010e0 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f747327 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47a3926d nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c1046ce __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4eb4fe20 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f02329c __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f919d73 nf_ct_insert_dying_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4fafa064 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x519eb3ac nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5672add2 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5920c836 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5cf302fe nf_conntrack_flush_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e2b2033 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x620e73b8 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c7ded12 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73f126c2 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a889be4 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7d5fe1f9 nf_conntrack_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84c424ee nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x874c7b97 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88de7bc6 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f60a824 nf_conntrack_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94cafd9b nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9578d1d9 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c3710b6 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e31e2e9 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9fa6f625 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa17874dd nf_ct_remove_userspace_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa74eb35b nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9eef0fc nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaafc5c7e nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad2ba8c8 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb216fceb nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5153881 nf_conntrack_hash_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6c08b3c nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb97d91d2 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbdd191f4 nf_ct_nat_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5a64e7c nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc6dd5d29 nf_conntrack_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8f14aef nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcadae556 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd20b96f4 nf_ct_delete_from_lists +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd612be5e nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7857218 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0e91448 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed1040fb nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xedcaa636 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1247d69 print_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf948858e __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc52db05 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd82e3e0 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7d17a2ad nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x1cbafaa1 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xb4f2968b nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x07ff8f39 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4a2b810b set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5ebd790f nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x757d5724 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x84d0bf18 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa6e1eea9 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb0fc8f9b nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb231d2a7 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbbad575e nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdfd7ed73 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x2227fe81 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1973045a nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x5438e834 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x97007ea5 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe39cfda5 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x308235b4 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xe32e0021 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x04bc32aa nf_nat_sdp_session_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2a040807 nf_nat_sip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x57052083 nf_nat_sdp_media_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x60939000 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x747d3be7 nf_nat_sip_seq_adjust_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7d41f9b2 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa107d30a nf_nat_sdp_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd0793781 nf_nat_sip_expect_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd5a0b067 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdb288b7a ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdedce438 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf0b94b8d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xffb42582 nf_nat_sdp_port_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x943cfc18 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x0b67c76f nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tproxy_core 0x7b1ec088 nf_tproxy_assign_sock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1d7d32ec nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f58e71b nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2bc01f4a nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3895cd7a nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x39daed1c nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4effe47b nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc861af5d nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd47b5619 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xff9671f5 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0a31b638 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d8aa27f xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x19c6aca7 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x252bc04c xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x271a0fc9 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3a893c44 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x45601338 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5a987209 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6381e456 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x67f8a84b xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x79e95574 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x913d665e xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa0b0a083 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa226f562 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xadcb02f1 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb5b029eb xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc65387db xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb59d4eb xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf778d5bc xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x133e13b5 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf7b03908 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x1760120d rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x28e9ecef rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3e49c531 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x3f47bd83 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x40f74514 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x4163e661 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x47a558b4 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x4930bf68 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x515738bc rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x533d2516 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7c3be4a4 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x803b60bf rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9b705180 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xb3d64863 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xb799581e rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xc2da8e38 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcbe5b4ea rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xcc8c1107 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xd2020e85 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xe4f24a53 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xedfbe9a7 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xee90a78b rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xf8d98e4e rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xf9405923 rds_send_get_message +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x01590be8 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x1abf7c12 rxrpc_register_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2e6cd9df gss_mech_get_by_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3147cf61 gss_svc_to_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x36bc9a29 gss_mech_list_pseudoflavors +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5bcfb248 gss_mech_get +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x62b9a313 gss_pseudoflavor_to_service +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6c02cf5d svc_gss_principal +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x836d16f5 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x97119984 gss_service_to_auth_domain_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbd9c3fcd gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc7d88db4 gss_mech_get_by_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd0017681 gss_mech_put +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd3a093bc gss_mech_get_by_OID +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf9b89a5f gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00a33ec8 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01e40888 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x091ccbdc auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0af94a76 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bf1ce98 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x100cd54e rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e280e3 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16ed8735 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18f11821 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18f3e723 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19cb8931 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dac67a0 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e2148e2 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fc9b4d1 xdr_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x208bae8d xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27508eaa rpc_queue_empty +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c1db7c2 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c63b0e9 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x309dd1ca xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31777e2e put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x323b8501 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3283fe4f svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x340f1ea3 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x356b25fa xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x364143d8 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x371d701e rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ade111e svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ca186c3 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3df0bdf7 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f50c89f svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4189e514 cache_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4389f0a6 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x464a165c xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4703cb42 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48bd2be0 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4914caeb svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c985309 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d3d7c07 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d71701e xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dae413f xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4eef7d8c rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f494792 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50021223 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x502dc413 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50571045 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e4ec28 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5106293b rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5178477c xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5292d97d xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54d3106d svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55042fc8 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59d68bc4 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b14ec1a rpc_put_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd26000 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d9e1ce4 cache_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e4ff09a svc_sock_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6159b94c svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x618bdbd6 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67a6a2f8 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6853b233 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a8fb500 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6af55f70 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b390515 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b7c0b60 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d9edca5 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eea229d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fa15dae xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fa73212 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72199d2c rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x728142aa svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x734f351b xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x738ac1fb svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77540e6b xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78e3f2bb xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bf47478 rpc_mkpipe +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ca679fb read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d5ba341 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e1f153d rpc_get_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f8eecc7 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x869312f9 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x894c7eed rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89a1e3c0 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a375a8e svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c3a7ec5 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c80cfc0 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cb7d16b rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8da05ac6 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8da40d78 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e9a6955 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ea202e3 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x931198cf xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94f97f82 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9701ac63 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97b3e93d rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97b74ad4 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a31008 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b9ba634 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9de9a655 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f997acf rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa18866ca xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa189c6fa svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5427d36 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa89fe6ce xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab35430b xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab7e86c1 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab8d0720 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadf8b655 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae254a6d rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb27be130 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3400435 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4a8b451 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb65e9e36 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb77ec96a svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9a62c34 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbba048e rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe9479dc rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf48a90d svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9fd1f0 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0322abf xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca4c6787 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc23a271 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2900258 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdacb9719 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdad3bfc1 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb6c51c5 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdba3eaf5 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbc2a8b6 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc0b5dbb rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcc95224 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdffe9883 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0089e86 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe06ed31c svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2e356f4 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3a92f01 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4df5528 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe50f7432 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6464598 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea4a1216 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb1797b3 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef60346d rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1321157 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2b122f0 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2ba819a xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf57f8e0c rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf647280c rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74f743b rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7943825 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7a7683c csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7b567e7 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a28af6 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc2662cc rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe6b6fcc svc_create_xprt +EXPORT_SYMBOL_GPL net/wimax/wimax 0x017e9442 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x424e81ca wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4bb20e11 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4c748a3f wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x67d64704 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x74107710 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8b8349f8 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x90b78be7 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xac1bf83a wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb2a01e98 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd597a6b1 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd62afe34 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xda4a39ea wimax_state_change +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1673dcb4 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x43629645 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x72927999 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x73a56941 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x841cc134 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8a1d984a cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x989dbed1 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xae716d34 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb33c2471 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xeea8eba9 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf39d5133 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x40fdd186 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x46797b1d ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6483d36e ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc4a9c956 ipcomp_input +EXPORT_SYMBOL_GPL sound/core/snd 0xb9b94383 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xd3767aee snd_kctl_jack_report +EXPORT_SYMBOL_GPL sound/core/snd 0xdb81b528 snd_kctl_jack_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf40ddeb3 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x35faecfb snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4b393c4f snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6e0a66ea snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x753ca731 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x77220820 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9aecb857 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x041965c7 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x059ccfa2 snd_hda_codec_amp_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08ab1b9a snd_hda_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ac57351 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d547a8b snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12d13426 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13338da7 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x192d0886 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20137c9f snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2588f36a snd_hda_suspend +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2893fd53 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28ddce10 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a868104 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e2e6028 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f354ecd snd_hda_sequence_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fd9879e snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35780cb4 snd_hda_codec_update_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d315e0c snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41cec665 snd_hda_query_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x432a9e91 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46cebb1e snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x493210b5 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ae09a2f snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c2fda88 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d38cdc7 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dab1f60 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50d1e150 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52859f9c snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x591bf600 snd_hda_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a10cdac snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ad973fe snd_hda_create_spdif_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b783adc snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c1960e7 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c9e8461 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63248443 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x645bc679 snd_hda_bus_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6649091f snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a8d1b6f snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bf0386d snd_hda_resume +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e9d4516 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7690a124 snd_hda_codec_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81302721 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x81953690 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x831d9f54 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84d992f1 snd_hda_codec_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8579d265 snd_hda_check_board_codec_sid_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85b46fbd snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86d28809 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x876c7a4c snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87ce1164 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88a6814d snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88f8a97e snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89011904 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d7a5dc5 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4c6826 snd_hda_calc_stream_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f4e4b1f snd_hda_get_sub_nodes +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x940f398e snd_hda_add_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9502308e snd_hda_check_board_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96dac217 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96f44aff snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d7f2746 snd_hda_ch_mode_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9edb65b2 snd_hda_override_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f7e4e53 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2827d76 snd_hda_get_jack_location +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa4437723 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5f37c3b snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5f45a64 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8bea66c snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa324aef snd_hda_delete_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac973607 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacb28c9d snd_hda_codec_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafa6ce5a snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1129f68 snd_hda_bus_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1deb037 snd_hda_ch_mode_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb307b93d snd_hda_power_down +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4063cdb snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7a99107 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7ba75a2 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8636a06 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb932827c snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb939b46b snd_hda_codec_resume_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9c15f9d snd_hda_codec_resume_amp +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd8182f4 snd_hda_query_supported_pcm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbeb64ee8 snd_hda_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbee06b83 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc652fd69 snd_hda_get_jack_connectivity +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc91c5e39 snd_hda_jack_tbl_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb301b6e snd_hda_get_jack_type +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd068a774 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0e0d690 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd265fcf9 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3dc1885 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd51f7982 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd548db5e snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb39281b snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdca3edcf snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf69af95 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0fda136 snd_hda_ch_mode_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2cc364f snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4952b4f snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe8df9cfb snd_hda_is_supported_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea47cb14 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf601240a snd_hda_power_up +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6ed538f snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6f637cb snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7e62bc1 snd_hda_queue_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf87579b9 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe691402 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfee401ee snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x09fcda88 pm860x_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0xff5dcceb pm860x_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cx20442 0x08cb1ada v253_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-l3 0x78c84c7e l3_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max9877 0x895e5902 max9877_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x34ab1790 aic3x_button_pressed +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x66fe8f5a aic3x_headset_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x85c4c1fd aic3x_set_headset_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x9e67e059 aic3x_set_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xa43b22fc aic3x_get_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x98054226 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa24ad61f tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wl1273 0xa57620f3 wl1273_get_format +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x1321e9d1 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x658d91fe wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf3f0471d wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm2000 0xc195d53a wm2000_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x285b029c wm8350_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0xbaf049c5 wm8350_hp_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x45d40100 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x2807be21 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xc41f2218 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xfaa71950 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8996 0xdcab4774 wm8996_detect +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x021d6296 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x039a2768 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x044a50bf snd_soc_codec_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04909aac snd_soc_cache_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x059aebfa snd_soc_put_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ca47328 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12e8baf7 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1646e1ea snd_soc_cache_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16d0fb64 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18cde290 snd_soc_cache_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fb7dfe3 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x25bcf7e5 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bb71aae snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c211bfc snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e93bfe5 snd_soc_codec_set_cache_io +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f5c7b59 snd_soc_get_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fce0a37 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e1e1ff4 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4382d1a6 snd_soc_default_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43a69521 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43b5c918 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43b94c69 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43b99060 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46918a41 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f61e329 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5534b5d1 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55a33034 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x568aa347 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5806ed26 snd_soc_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x580a76af snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58f1f016 snd_soc_register_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x598c092d snd_soc_unregister_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ee273ff snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6082daca snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x677cd0cb snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67be159c snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a816ff8 snd_soc_default_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b74e260 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bdc25c0 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6de6b8a7 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77a80420 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82890d69 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82b1b9e4 snd_soc_bulk_write_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x840c9020 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x885028b5 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c034b03 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e32ff8e snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fe33109 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9095e08c snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9218f3f4 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93fdfa06 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99ca344d snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99d66dbd snd_soc_default_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99db8bb0 snd_soc_put_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99e15889 snd_soc_info_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a00f243 snd_soc_dapm_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ab3ccbc dapm_reg_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bfc9f21 snd_soc_info_volsw_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9cddbebc snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3c62b53 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4e31ac7 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabf0d207 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac21ccc4 snd_soc_add_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac594203 snd_soc_info_enum_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0daeac8 snd_soc_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1c7d4a1 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2672418 snd_soc_dapm_get_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb47a643f snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb52f7434 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5684ab3 snd_soc_codec_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb163dc5 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdc19b82 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc03ea85c snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0f52dd5 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3ffdda9 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4c9f75d snd_soc_get_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4d1b407 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5230b4a snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8147a94 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8745974 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf53eff7 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcfc21bce snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2ddb568 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd536c5cf snd_soc_dapm_put_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5e48c79 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd85460bf snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd981cbb2 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda282f66 snd_soc_codec_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda71c8b9 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb48e28e snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddeec566 snd_soc_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdecb5acd snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfcf50ea snd_soc_dapm_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe07121fe snd_soc_update_bits_locked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7524fcd snd_soc_info_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefc2efe6 dapm_mark_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf12f5b43 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2f3e4f2 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf51c4d96 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8786794 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe81b049 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x0015164b __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x0019cb76 user_read +EXPORT_SYMBOL_GPL vmlinux 0x004e218b driver_add_kobj +EXPORT_SYMBOL_GPL vmlinux 0x005f062a set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x0067df75 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x0088a193 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x00971297 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x00af8f8b platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x00b87be7 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x00b8ecf8 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x00c2922a simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x00c4dc87 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x00c6b64f wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f94fde register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010b2d51 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x01154dcb css_lookup +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01406a98 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0160aac7 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x017543f0 net_ipv6_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x0194e83f tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x01a4ea6d unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01f3e69a tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x0224de4e hrtimer_start +EXPORT_SYMBOL_GPL vmlinux 0x024340e6 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x02597cb1 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x0260a00c stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x02804064 pci_msi_off +EXPORT_SYMBOL_GPL vmlinux 0x02e4c5cd regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x03217a52 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x039d57ff ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x03a21582 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x03a3f86d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e62552 cgroup_add_files +EXPORT_SYMBOL_GPL vmlinux 0x03ee1f87 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x03f1ce46 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x0402e657 get_cpu_sysdev +EXPORT_SYMBOL_GPL vmlinux 0x04486e88 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x044dae08 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x0450dead udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x04c164cf add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04c6d18b input_class +EXPORT_SYMBOL_GPL vmlinux 0x04cbbb05 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x04ea8706 __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x0502d71e fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0531dcb8 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05667c2d md_trim_bio +EXPORT_SYMBOL_GPL vmlinux 0x0566bd5f __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x0571c2be ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x058f2a6c crypto_rng_type +EXPORT_SYMBOL_GPL vmlinux 0x05ae262e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05fad630 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0602cec5 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x060a0380 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x060a0a71 cgroup_unload_subsys +EXPORT_SYMBOL_GPL vmlinux 0x060d1064 set_memory_ro +EXPORT_SYMBOL_GPL vmlinux 0x0619ca8a getboottime +EXPORT_SYMBOL_GPL vmlinux 0x062fc169 xen_hvm_resume_frames +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06dc179c xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x06e2dcda blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x06f99a64 class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x07111b01 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x0718b57c rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x07592848 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x07834b06 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x079d2155 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07c0d28f inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x07d7604b blkio_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07ff4aea xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x086a63bc ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x0870a320 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x087ee4e3 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x08826a14 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x08844c12 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x088b8423 platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08989e03 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x08cdcc7d regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x08d363d3 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x0900be98 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x090d2906 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x099085a6 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x09915822 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x09eb67d4 sysfs_get +EXPORT_SYMBOL_GPL vmlinux 0x0a06bbeb unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0a288348 flush_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0a6bf97f sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x0a8799ee get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x0ad4a308 tpm_bios_log_setup +EXPORT_SYMBOL_GPL vmlinux 0x0ade5b9d fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0ae30099 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b19ed7c apei_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x0b28defb kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b3764b2 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x0b5bc1d2 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x0b9869ca sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x0b98b7f5 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0bd22f13 tpm_release +EXPORT_SYMBOL_GPL vmlinux 0x0be13004 usb_storage_usb_ids +EXPORT_SYMBOL_GPL vmlinux 0x0be931a4 device_add +EXPORT_SYMBOL_GPL vmlinux 0x0bed7d8f tcp_reno_min_cwnd +EXPORT_SYMBOL_GPL vmlinux 0x0bffa10a spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c1b7c34 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c3064a0 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x0c3f0085 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x0c7b4e38 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0cc02e77 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cd09dd1 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x0cd10a4e work_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0cddd2e8 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x0d1db07c swiotlb_bounce +EXPORT_SYMBOL_GPL vmlinux 0x0d29262d crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0da3591c cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x0dce6ecb usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x0df35ecd usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e6d2103 user_update +EXPORT_SYMBOL_GPL vmlinux 0x0e756de6 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x0eaa6a1e __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x0ec210b8 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x0ec8a146 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL vmlinux 0x0f255a8a pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x0f3cf7c8 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0f3d172e fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x0f63d88b fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x0f7592e0 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0fe4a77b driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x0fedea2d ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x100c48a2 unregister_dock_notifier +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10474654 tpm_show_caps_1_2 +EXPORT_SYMBOL_GPL vmlinux 0x10a81f91 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x10e56803 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x11434862 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x114f1a20 balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x11612c0f tpm_register_hardware +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117d0539 do_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x1194a0cf regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11af396f class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x11d27c21 blkiocg_update_io_remove_stats +EXPORT_SYMBOL_GPL vmlinux 0x11da2c44 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x11f447ce __gpio_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x12048827 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x121ed3f3 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x12317a83 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1258d9d9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12be657d fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x12e9f3e0 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13574bbf nf_net_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0x1371b737 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x137d47b2 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138b7b1c inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x13b2a946 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13b99f76 task_xstate_cachep +EXPORT_SYMBOL_GPL vmlinux 0x13c636d8 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x13f3e3fb klist_init +EXPORT_SYMBOL_GPL vmlinux 0x13fbd81b md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x141c1b87 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x1431c6eb unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x144d9117 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x14754c13 xenbus_bind_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x14cc6594 free_css_id +EXPORT_SYMBOL_GPL vmlinux 0x14db6248 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x152c534a __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x153a0c91 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x1556756b usermodehelper_is_disabled +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1598dc9d unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16383f40 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x163bc646 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16857541 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x16e8c56c relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x17018c8b perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x1722d36e scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x1744f404 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x175989a5 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x17a0fe87 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x17bd6e23 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x17f2b343 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x188307ef usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x1888d736 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x18d4b5e0 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x18e2c347 dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x192cef22 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x192f9ac2 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x1930ab5a cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x193d48e0 trace_current_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x19496284 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x195679a9 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19abd245 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x19bde5ec scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x19be735c crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x19c48fb0 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19d73862 sysdev_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x19fc7f60 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x19fe451e debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1a1d949e ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x1a323362 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x1a690aa7 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x1a863ea6 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x1a89d427 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x1a8ba051 sysfs_notify_dirent +EXPORT_SYMBOL_GPL vmlinux 0x1aaa2fad inet_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0x1ab5235c inet6_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0x1ab7c231 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x1ad83009 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x1ae0e135 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x1ae0ef6e ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x1b1f5ad0 gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x1b297d08 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x1b35330d tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x1b71ecca usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x1b8740f8 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bf748e4 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c852e7c xfrm_calg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c971c43 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x1ca1d525 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x1d44c83f ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d49b056 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1d525b1b rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x1d708143 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d76bffe usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x1d874078 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1d894c10 tpm_remove_hardware +EXPORT_SYMBOL_GPL vmlinux 0x1d916a8b shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x1debfe3a securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x1df97d69 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x1dfdd8c9 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e314b21 regulator_use_dummy_regulator +EXPORT_SYMBOL_GPL vmlinux 0x1e3a88fb trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x1e7a5400 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e9a23cf put_device +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc4036 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1ecf8b7e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1ed1b485 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x1f5fc91b tpm_bios_log_teardown +EXPORT_SYMBOL_GPL vmlinux 0x1f671c03 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x1f6fcf3e usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8ec1b3 acpi_get_pci_rootbridge_handle +EXPORT_SYMBOL_GPL vmlinux 0x1fa8b843 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x1fcece42 inet_twdr_twcal_tick +EXPORT_SYMBOL_GPL vmlinux 0x1fdd047d hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x201fcb1b ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x204cb094 sk_clone +EXPORT_SYMBOL_GPL vmlinux 0x205fb977 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x209ecfff ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x20bc3470 orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x20eadd0c crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x20f0f749 filter_current_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x210844dc __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x212e22ad tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x2186afe0 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x21a41289 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x21c8add2 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x21cda3ab crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x21dae0bb pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x21df759a inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x21e99826 sysfs_put +EXPORT_SYMBOL_GPL vmlinux 0x2204fa14 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x227fbea5 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22ac15b1 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x22c54fa4 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x22e86e07 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x230d3735 tps65910_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x232e773c crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x232ea7f6 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2394a981 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x23dd2845 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x23f92ab7 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x24009e2e tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x241ecaf2 blkio_alloc_blkg_stats +EXPORT_SYMBOL_GPL vmlinux 0x2447533c ktime_get_real +EXPORT_SYMBOL_GPL vmlinux 0x24620e29 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x24703f47 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2491f0c1 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24d16ea6 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x24e990b2 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x24eaf2f9 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f84d11 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x24fc46b6 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x250e8f30 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x252e43b4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x253cf5d9 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x256498a0 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x257b3d43 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x257d13e5 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x25ce4209 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x25fcc0eb transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x260d5e1a ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x260f77d3 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2632a3b4 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x263de868 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x263f0dfc driver_find +EXPORT_SYMBOL_GPL vmlinux 0x26562e3a snmp_mib_init +EXPORT_SYMBOL_GPL vmlinux 0x26576139 queue_work +EXPORT_SYMBOL_GPL vmlinux 0x26726a97 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x26900b12 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x26a7b155 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26fbc202 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0x273ab8b7 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x274c2a3c hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x27568e16 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x281480f8 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x2815706e aead_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x281bf4e6 blkiocg_update_io_merged_stats +EXPORT_SYMBOL_GPL vmlinux 0x282944b1 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x285d984f irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x286043aa platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x28676854 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x288b13e0 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x28ad2556 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x28b4c444 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x28d664ff __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x28dc7840 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL vmlinux 0x29059b53 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x2934719f css_depth +EXPORT_SYMBOL_GPL vmlinux 0x294142a1 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x295744ff __inet_hash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x297254d0 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x297f7c6e trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x29ba5819 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x29be3560 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x29dce35a cgroup_lock_live_group +EXPORT_SYMBOL_GPL vmlinux 0x29dec2e3 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x29ec3de4 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x29f75404 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a1ae3e8 regcache_read +EXPORT_SYMBOL_GPL vmlinux 0x2a28f0c6 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a703d37 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x2aab19cb tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2ab375d4 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x2ac7d83a rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x2ae3d930 tpm_store_cancel +EXPORT_SYMBOL_GPL vmlinux 0x2b07da04 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x2b2e7dd8 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x2b65b96b pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x2b9011b5 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2b9f6d66 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2bacef32 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2be03cab ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x2c0dc18b filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c4430e0 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2c46212d regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x2c46ee38 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c812a90 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x2ca4ebcd regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d09a700 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x2d0d80a8 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x2d2ecbcb cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL_GPL vmlinux 0x2d473666 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2da7ee58 sysdev_class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2dbbb66f ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x2e015f25 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x2e1d43cf lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x2e20a92f platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e339d45 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x2e45e488 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x2e47f677 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x2e567bb8 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e5dbe7e usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x2eab8d40 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x2ec92012 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2ef82bc3 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x2f0f783a rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2f119bc0 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f47d8c7 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2f683d9f edac_put_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0x2f857551 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0x2fc529d2 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x2fcd9e17 dpm_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2fd5acf2 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x2fea4c29 trace_nowake_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x2feae4ad swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x2ff85b6b virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x30350414 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x307e71ef inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x307f7776 timecompare_offset +EXPORT_SYMBOL_GPL vmlinux 0x30ad194a usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x30dc89bd pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x3108ea46 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313f358d fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x318920b1 register_dock_notifier +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c34eb4 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cadc9a tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x31d3fc0f blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x31d82ea5 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x32258c16 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x324f0340 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3250a52f dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x32548a01 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x32630a27 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x32b31a8c ktime_get_boottime +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d5e7fc xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x32e427b0 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x32f189b3 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x32fd4b62 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x3314e457 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x332d1cb5 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x339c998a usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33bcc23d blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x33cd3d3d usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x33f356d4 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x3441c3d6 gpio_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3455a55b wm8994_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x345d0913 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a1d1da elv_register +EXPORT_SYMBOL_GPL vmlinux 0x34b249d6 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x34f49f84 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x3534e2a3 system_nrt_wq +EXPORT_SYMBOL_GPL vmlinux 0x353f7f7d sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x35df0d89 tracepoint_iter_start +EXPORT_SYMBOL_GPL vmlinux 0x35fd0dc6 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x35fef7b9 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x36045802 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362a9712 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x362e23ec call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x3641b93e mddev_check_plugged +EXPORT_SYMBOL_GPL vmlinux 0x36875389 __timecompare_update +EXPORT_SYMBOL_GPL vmlinux 0x369f5f83 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x36ac9317 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36d63a6a iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x36df834d debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x36f43539 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x3713494a rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x37176a41 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x371870ec __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x3758bf88 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x37738ec2 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x377fbe94 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x37881c19 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x379b0433 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x37d1b097 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x381fef71 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x382b8bbd ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x384053e7 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0x386852f0 user_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x38c275f0 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x38ea936e __memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x38eade63 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x38f3ed4d bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x39146da2 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x392b0306 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x3942ca37 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x395da8a0 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x39adfe4e ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x39d05483 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x39e15e5f trace_nowake_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x39e93e75 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3a023ca3 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x3a1cebf2 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a635756 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x3a69d769 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x3a9dd450 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3abe2f42 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x3b0eefc2 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x3b2b541d ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x3b320cb1 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x3b353039 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x3b5fc169 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x3b625f19 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b828f3f srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x3b9c8f32 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x3ba9e081 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3bb70936 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x3bd45e7e platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3be89d3c usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x3bf72a8b pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x3bf8aeed xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x3c3cbd7f rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c3d96cd drop_file_write_access +EXPORT_SYMBOL_GPL vmlinux 0x3c7bb9d7 dw_spi_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x3c7bd5b8 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c942368 profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cac21b9 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3ccfd38b gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ceca6c2 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3cfedb3f register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d042530 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3d09289f debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3fb058 sysdev_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d5233b4 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x3d57bf03 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d925f00 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dde0e07 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e1ea70a crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x3e3bfe19 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x3e7f0dfc __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x3e979e41 edac_class +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb77831 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3ebfcc72 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x3ec8b3a3 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x3edad223 usb_usual_clear_present +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f0248f1 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x3f0395bb pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f25bbba scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x3f333d8d adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x3f3d21ef replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x3f4cb1a6 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x3f54548c wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x4039e71e xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40634549 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x4081e41a scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40ccb6e3 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x40ce5f96 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x40cfbe3f blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d6b7ef sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x40eaf7ae apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x40eebb4e cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x4147f139 dw_spi_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x41683c84 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x416bd506 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x41cc25ae __put_net +EXPORT_SYMBOL_GPL vmlinux 0x41dc8ecc dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x41e2d57c usb_enable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x41e4dfe8 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x4208aa4f mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x426f13b9 e820_all_mapped +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42ae56e1 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x42eee679 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x4305fc59 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x4316822b tpm_continue_selftest +EXPORT_SYMBOL_GPL vmlinux 0x432fd7f6 __gpio_set_value +EXPORT_SYMBOL_GPL vmlinux 0x43404be1 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x435e6c6e crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x437cb99a pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x4411e45a pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x4427e7e9 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44352648 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x44404f11 kdb_register_repeat +EXPORT_SYMBOL_GPL vmlinux 0x4455e1b3 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x446ad705 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x447cd7f6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44811ba7 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4488a86f crypto_nivaead_type +EXPORT_SYMBOL_GPL vmlinux 0x448b5ddb virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x44bcfa6d system_nrt_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x44cc9c55 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x44d2dfd9 xv_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0x44f921e8 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x45566796 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4582f724 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x45a12b31 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x45a4afdd acpi_atomic_read +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45cf6867 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x46074c17 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x46300ab2 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x464540f4 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x4672e88b __crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x46741d17 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x46a76f19 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x46b340dc __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x46b48680 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x46dd3cda rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x46f732de queue_work_on +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472fe746 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x474359b6 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x47703d44 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x479e9ba6 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x47d2dc3f inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x47e2ad9c rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x47ef5ca0 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x47ff15e6 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x4853a4fe wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x4865f9b3 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x48661827 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4884f477 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x488626e2 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x48a488a0 sysctl_tcp_cookie_size +EXPORT_SYMBOL_GPL vmlinux 0x48c62e4a eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x49028803 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4914d2a9 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4943e302 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4945c2b0 pci_pri_stopped +EXPORT_SYMBOL_GPL vmlinux 0x496c21d4 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x496ff860 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49e3a774 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x4a1d5285 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x4a2ad6f0 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x4a340495 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4a388e19 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4a78e350 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x4a7bc844 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x4a8811ef inet6_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4aedb4e9 inet_csk_reqsk_queue_prune +EXPORT_SYMBOL_GPL vmlinux 0x4af5dea7 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x4b74888d devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4b840dfd probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x4b9129da print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x4b961c39 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x4bc62a81 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4bda45dc dw_spi_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x4be65c2d blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x4bfabf4f gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x4bff8dd5 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x4c3866c0 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c827da9 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c92d570 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4caa60b6 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x4cd400c3 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x4ce2a7bc devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x4cf9a3b2 x86_mce_decoder_chain +EXPORT_SYMBOL_GPL vmlinux 0x4d210332 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x4d46598b xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x4d4fd5f1 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4dc0683b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x4ddad651 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x4e09c9df devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x4e105376 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e37a0dc usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4e9b55b9 xv_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x4ec99dc9 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x4ed6e906 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x4eda2334 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x4eebcec5 sysdev_show_int +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f01570b sysdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f1ccf7d dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f36f38b sysdev_class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4fc6864b blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x4fc8d394 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x4fd4e89d ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x5013e6de pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x5034b51d __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5035f21d inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x509197f3 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a0590f dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x50b319ce cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x50ba3bec acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x50bb311a crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x50c126c1 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x50c900cb blkio_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f5e532 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50ff3c37 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x512cebaf skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x516544cf rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x5166f60b tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x51790aae bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x51d5b336 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x51d82888 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x51dbf9fe mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x51f25fb5 tpm_open +EXPORT_SYMBOL_GPL vmlinux 0x51f9288d rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x521dc327 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x522e3808 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x52570eef nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x525b58f9 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x526ff77d transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x5286c928 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x528dc9e6 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x529ca2ed sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x52a43784 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x52bd2c68 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x52cb7a2d da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x52da4c7a ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x52dcfa9a fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x530d4a03 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x530e83f0 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x5324d04f bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5365b101 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x5372dede unregister_acpi_bus_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5386ce15 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x53986488 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x53a3e486 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x544df381 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x5451fcc5 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54652517 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54bff469 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x54d1d0f7 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x54fcdd8c class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x552567c0 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x559ac5f1 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x55b37fc0 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x55ca5de1 tpm_show_caps +EXPORT_SYMBOL_GPL vmlinux 0x55d0dbcf nf_unregister_queue_handlers +EXPORT_SYMBOL_GPL vmlinux 0x55f2580b __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x5600199e cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x56061f71 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x561b131c usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564f1dca klist_add_after +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5667895f rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x5695646f pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x56d335b1 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x5739d695 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x573ec1c9 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x5761d6d9 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x57638c56 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x57708079 sysdev_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x577c817c scsi_dh_detach +EXPORT_SYMBOL_GPL vmlinux 0x57835d85 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x578b90bd xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x578f5ccd xen_swiotlb_unmap_sg +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57af5480 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x57be7add ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x57c4691b queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x57dda5b6 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x582520d7 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x58734dc0 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x58cae5a0 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x5902568f device_del +EXPORT_SYMBOL_GPL vmlinux 0x590ca37e dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x593a36c2 scsi_dh_handler_exist +EXPORT_SYMBOL_GPL vmlinux 0x593ca260 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x59b21b63 sysdev_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a3e3225 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x5a48534a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5a48fba2 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5a6b2e32 devres_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a84f207 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x5a8f7a1d rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x5ac0b9cf regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b106e9b firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5b435139 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x5b4602a6 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5b594118 blkdev_aio_write +EXPORT_SYMBOL_GPL vmlinux 0x5b9450f0 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x5ba1214a md_run +EXPORT_SYMBOL_GPL vmlinux 0x5bb906a7 wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bba7c4e scsi_nl_add_transport +EXPORT_SYMBOL_GPL vmlinux 0x5bfc03c3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c125e83 apic +EXPORT_SYMBOL_GPL vmlinux 0x5c14ac50 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5c1559ea virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x5c313c6a pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5c68b641 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x5c8cc3f6 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x5cbf2856 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x5d049b51 devm_kzalloc +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d48a650 m2p_find_override_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5d614fe5 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5d6264e1 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x5d730e7b raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d87c067 register_acpi_bus_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5dae70e3 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5db54ac7 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x5dd67618 register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5de16300 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x5e0120a8 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x5e331137 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5e33be03 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x5eacba1f ahci_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5ed31be8 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x5f2369da __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5f248f72 set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0x5f2753e9 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f30d5f3 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x5f4665a2 sysfs_rename_link +EXPORT_SYMBOL_GPL vmlinux 0x5f5e4ab2 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5f6c248a sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x5f9c0e91 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x5faf29db class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5fc17e4b mmput +EXPORT_SYMBOL_GPL vmlinux 0x5fcdec5d xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x602599e3 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6026e667 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x604a14a9 device_register +EXPORT_SYMBOL_GPL vmlinux 0x604fa83c register_net_sysctl_rotable +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x606b9324 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x609ed66f __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60b058eb i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x60b699c7 xenbus_dev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60cddc14 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x60e2722e pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x60f6aa78 spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x60fdb1c0 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x61083da8 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x6114d8a4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x612c8e79 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x613e06d1 crypto_aead_type +EXPORT_SYMBOL_GPL vmlinux 0x61595393 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x6159e21f crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x61634f05 lock_flocks +EXPORT_SYMBOL_GPL vmlinux 0x616433b3 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x6194ffea do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x61b4a39c usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x61c9a47d pci_renumber_slot +EXPORT_SYMBOL_GPL vmlinux 0x6224e3c5 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x62362952 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x625e1156 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x626fd865 dm_dispatch_request +EXPORT_SYMBOL_GPL vmlinux 0x62767c44 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x628e3c77 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x629d3b78 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x62a9e0ab crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x62b095f1 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x62cb1468 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x62dc6eaa sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x630817f5 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x63205de1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6347ee72 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x636be274 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x6370b3e4 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x63b90fe1 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x63c8267b ftrace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x63cdf5e1 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x63d40e37 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x63f4dc09 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x641677ab pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x641dc414 cred_to_ucred +EXPORT_SYMBOL_GPL vmlinux 0x642db30e wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x644b7a81 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x64528d6c ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x647d6a14 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x647fe418 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x64840614 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x64bf46fa ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x64c522d0 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64d635f6 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x654d118f ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x6551ee3f iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6592c5e7 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x659ddc18 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x65ab4851 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65be0935 blk_queue_bio +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d6d0f0 gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x65e7eff8 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65fa533b usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x66017dba crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x664527c4 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x664dbb2a sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6686e4d3 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x66879d2a blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x6693a0ca virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x66a64c22 sysfs_get_dirent +EXPORT_SYMBOL_GPL vmlinux 0x66b183c3 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x66b2a859 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x66b79a14 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x66cd2ea8 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x66d6591b scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x6731f598 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x67354416 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x6740208d wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6745a16d inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x6778ea86 css_id +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a07aac crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x67b4557f pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x6827c2ff xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x682d2a55 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x6842c08d dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x6857c3e0 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x685c76f0 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x686c703f xfrm_count_auth_supported +EXPORT_SYMBOL_GPL vmlinux 0x6888586e spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x6892088c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x689f1f58 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x68a48ff1 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x68bae7a2 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x693c90a6 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x69588ada scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x69809542 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698be398 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x699fc7f9 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x69e9a2cb ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x69ed87e7 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x6a179e15 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6a1d9e61 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x6a299d12 xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x6a2da1cd skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a79353b alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6ab922b2 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6aba167a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ae21d4a bsg_goose_queue +EXPORT_SYMBOL_GPL vmlinux 0x6b113a88 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b32175e crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x6b459058 register_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x6b4b775a ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x6b59d8e8 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x6b7a21fe ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x6b8022aa regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6b807a5f gpio_sysfs_set_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6b93bf60 inet_twdr_twkill_work +EXPORT_SYMBOL_GPL vmlinux 0x6b9f4c67 sysfs_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x6bd4c704 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c49c4f2 clockevents_notify +EXPORT_SYMBOL_GPL vmlinux 0x6c8d5ae8 __gpio_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6ce40367 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x6cef40ae pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6d28a952 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d86c2ac power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x6db67bf9 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6db82ff4 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x6dcb2321 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x6de62cc5 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x6e2c9162 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x6e4f9665 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e6d4b3b pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x6e7474fc xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x6e75cf0e crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6ead7296 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x6ebe487b ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x6ec22129 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x6ece53a2 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x6f04df9b ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f206aeb part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x6f429e73 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x6f483771 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x6f55029f input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6fa7582d device_create +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x702efc38 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x703189d7 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x704c7b85 tracepoint_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x706b3a33 cpufreq_frequency_table_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x709077ef driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x70ad3fc6 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x71430eab __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7152a4c7 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71661135 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x71678d58 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71ebbe78 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x71f22ca6 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x72113717 bdi_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x721c8cc8 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x72418d77 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x72509c10 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x726078f2 pm_generic_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7294778b aead_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x729dbc33 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x72b212ff regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x72fd8481 inode_dio_wait +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731433ee unregister_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x732f461d init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x735ba4d0 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x737a1e5c cgroup_load_subsys +EXPORT_SYMBOL_GPL vmlinux 0x737dd182 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b1713f crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x73ca2340 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e1c4fb __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x74954462 timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x749c13fd device_move +EXPORT_SYMBOL_GPL vmlinux 0x74a29849 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x74abdafa task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x74b488aa __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bcbd4b vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74cf1cf6 unregister_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74f6b4f3 device_schedule_callback_owner +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7526805c debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x754f5acb fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x755e9725 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7574bdfb wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x75964c4e add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x75b20f59 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x75dc2288 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x75e8f3c3 crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x761188fd dpm_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x763e3051 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x76446709 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x76813626 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x76eaf1ee xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x7701a51b map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x77112eca blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x773cfedf watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x77728312 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x77a8b3e0 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x77ed658b crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x781965f6 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7844e54c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x7845835c hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x78cab837 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x78d8ca82 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x78e7ff33 acpi_post_unmap_gar +EXPORT_SYMBOL_GPL vmlinux 0x790c1788 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7934517a tpm_show_temp_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x7935c1eb platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79814013 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x79adb95f rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x79e5858f shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79f1ba88 xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x7a166e8d bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x7a208776 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7a36af20 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x7a542941 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x7a7c5175 amd_erratum_383 +EXPORT_SYMBOL_GPL vmlinux 0x7a93ce2e hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7abb9b9f xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x7abe5d51 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad5a69d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x7ae097ea virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x7ae1ae8e cpufreq_frequency_table_put_attr +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b11b8da spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b41bdd7 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x7b4654e8 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x7b4e98ee root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7b685f8c fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7ba62f82 proc_net_remove +EXPORT_SYMBOL_GPL vmlinux 0x7bf2418d usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x7bf247d1 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x7c4e53f5 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7ca62554 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x7cc7e85f rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d27c10c register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7d32de3f __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7d39031d __class_register +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d635c04 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x7d6b92fd ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x7d836e1b usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc5d0b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e1183c9 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7e1ecdc5 register_hotplug_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x7e275ea8 scsi_complete_async_scans +EXPORT_SYMBOL_GPL vmlinux 0x7e28c1af ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x7e49506f rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x7e5e301f unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e947f57 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x7ec22f9a apei_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x7ee921c1 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x7f1d3efc pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x7f5ea8e4 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7fc6035a pci_sriov_migration +EXPORT_SYMBOL_GPL vmlinux 0x7fe231f2 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x7ff10ccf raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7ffc8718 gpio_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8014b6af input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x801b8fb2 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x8036084d __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x803fd0c1 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x804839a2 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x807cc60e sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a4fd3f ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x813ace37 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x81f4fbee wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8226642f __gpio_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x825f0828 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x82939ebd rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x82a31877 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x82af2112 tpm_show_pubek +EXPORT_SYMBOL_GPL vmlinux 0x82ba2780 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x82bc7772 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x82cd19f3 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0x82ce81a5 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82da317b pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82dd15c1 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x82f776b7 gpio_export +EXPORT_SYMBOL_GPL vmlinux 0x830a9733 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x83263812 proc_net_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x835a005e inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x83730d65 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x837dc521 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83bee935 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x83ce82eb get_monotonic_boottime +EXPORT_SYMBOL_GPL vmlinux 0x84133a8e pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x84174241 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x84237a40 tcp_init_congestion_ops +EXPORT_SYMBOL_GPL vmlinux 0x84297fef task_current_syscall +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8441b501 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8449ee40 pci_block_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x84543822 dm_set_device_limits +EXPORT_SYMBOL_GPL vmlinux 0x846c2451 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x849e6ae3 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x84d0215a sysdev_store_int +EXPORT_SYMBOL_GPL vmlinux 0x84ed7297 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x84f18c52 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x854293dc register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x85478a0b inet6_hash_frag +EXPORT_SYMBOL_GPL vmlinux 0x8553f9e5 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x85c10896 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cf3122 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85ef1d1d sysfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x85f0240c pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x85f65313 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x8611efb0 dw_spi_xfer_done +EXPORT_SYMBOL_GPL vmlinux 0x862f98a3 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0x863068e2 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x86501b55 sysdev_create_file +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x866331d5 dm_underlying_device_busy +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86aa16e6 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x86b22432 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x86c18524 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x86c39969 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x86c46842 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x86f19993 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x86f3f69d posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86fed161 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87659e30 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x87754115 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x87773fbc iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x87a27ab7 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x87c3826b acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x87c38aee rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x87cf0a90 injectm +EXPORT_SYMBOL_GPL vmlinux 0x87d49c82 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x8820c364 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8850a5f2 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x88588842 usb_usual_ignore_device +EXPORT_SYMBOL_GPL vmlinux 0x887285af __rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x88a301b6 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88be996b sysdev_class_register +EXPORT_SYMBOL_GPL vmlinux 0x88d8e91e __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892aee82 sysdev_register +EXPORT_SYMBOL_GPL vmlinux 0x8947b6f1 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x89b3ab53 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x89d2e22e ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x89d4dbaf usb_usual_check_type +EXPORT_SYMBOL_GPL vmlinux 0x89ff43f6 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a03d1c2 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a2d93c4 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x8a369ece platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x8a5c7a80 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a61c217 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a63bf7a gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x8a65ed61 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a88a3a0 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad67c6e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x8ade3cc5 tpm_read +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b15ed2d __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x8b25468c ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x8b39cf9d unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x8b66f9e0 xen_platform_pci_unplug +EXPORT_SYMBOL_GPL vmlinux 0x8b752ac1 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x8b7eb1e8 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8b869f0c __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8bbac875 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x8bda0fb3 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c0c85fc user_match +EXPORT_SYMBOL_GPL vmlinux 0x8c38074a unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8c4db1b5 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8c4ff07d file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x8c877ba4 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x8ca1416e ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x8cc81787 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8cdb2f41 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x8d35dba3 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x8d3acf25 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8d41b05f acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x8d4d1966 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x8d68e377 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8da51459 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x8dcc3c90 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x8ddd3d0a tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x8e040c33 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x8e138b08 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x8e1cad4e cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x8ea31658 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x8ea3185a xv_free +EXPORT_SYMBOL_GPL vmlinux 0x8eba00b7 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x8edfc605 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x8f1452f4 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x8f4b35bf security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x8f54dd22 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8f59bc1e put_compat_timespec +EXPORT_SYMBOL_GPL vmlinux 0x8f66ad9b debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f981178 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x8fa4e465 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x8fb576b8 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8fb8bea3 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x8fcb32c1 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x8fd4c7d3 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8feb98aa usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x8febda0f sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x9000cdc1 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x90349da9 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x904178c5 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x904c1c1c relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x905a89d1 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90a07671 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90c06ff7 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x90c791b4 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x90d091d4 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x90da47de sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x90fb3895 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x90ff90fe sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x912cef49 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x91360bd6 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9144e1e2 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x9157362e __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9159b9d6 profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0x91682e1e xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x917a350f max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x9189bb04 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91927dcb xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x91a2a025 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x91b51a6d crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x91ba87b6 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x91f63b90 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x923b863f usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x925db6f3 pci_unblock_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x925e27f2 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x9311399f regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x931dda40 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x93260715 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x93546518 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x939186df __class_create +EXPORT_SYMBOL_GPL vmlinux 0x93d2422d snmp_mib_free +EXPORT_SYMBOL_GPL vmlinux 0x93d94b2f device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x944cc681 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9482e075 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x949d3542 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x94a68723 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x94a72709 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94e74566 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x95111fa5 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95455011 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x955020c1 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956a91ba gpio_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x959486ed iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x95e10d3e __scsi_get_command +EXPORT_SYMBOL_GPL vmlinux 0x95f375e4 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x95f76eca fuse_conn_kill +EXPORT_SYMBOL_GPL vmlinux 0x9615e844 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9634280f da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x964d5c39 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x965593a3 __cpufreq_driver_getavg +EXPORT_SYMBOL_GPL vmlinux 0x9684aebb pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x96cbcf31 pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96d9f7e2 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x97548ea1 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x976634fb stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x97a23a96 tracepoint_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0x97a51d55 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x97a7dd42 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x97add50b pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9842f28e blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x98708fe5 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x988329cc driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x98a2c9ef input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x98b3a0ae usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x98cc564a regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x98ce22dc usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x98ceef06 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x98ec5535 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x98ef359f power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x98f3216e sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x98fc0e19 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992defd3 generic_subsys_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x99555d73 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995e3fab usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x996da23b sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x99a2b574 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x99abcfbc crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x99b60fd0 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x99e7baa3 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x99edec1e pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x99ef2662 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x99f7dd3f gpio_export_link +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a4d1034 idle_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9a788942 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9a98d523 blkio_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad9dfa2 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x9adeac9b vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b34de7c generic_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x9b546c1e page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9b6da515 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba0501e unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9bad2c0b mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9bb957c9 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x9be21518 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x9c39d653 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9c4c59d7 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x9ca01aa1 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9cb8037b xfrm_count_enc_supported +EXPORT_SYMBOL_GPL vmlinux 0x9cc668b1 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d2ed6c6 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x9d35ebba led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d6b2d5c ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x9d73179f sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x9d966352 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x9d9e155d pv_info +EXPORT_SYMBOL_GPL vmlinux 0x9d9eb427 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x9dd7c5e2 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x9ddaf75e bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9de128fb perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x9e4f1cfb ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x9e502b73 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x9e785aaa blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x9e97872d debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x9ea86130 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x9ead2c62 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x9eafa781 cgroup_add_file +EXPORT_SYMBOL_GPL vmlinux 0x9edfc734 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9f089c7e crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x9f157ed6 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x9f29601a atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x9f40a6d6 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x9f6ded61 probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x9fc286f9 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa01e0601 scsi_nl_add_driver +EXPORT_SYMBOL_GPL vmlinux 0xa0605d4e device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xa0b388e7 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL vmlinux 0xa0f4686d tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa18fbff4 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xa1a5af3c pstore_write +EXPORT_SYMBOL_GPL vmlinux 0xa1ddf303 fpu_finit +EXPORT_SYMBOL_GPL vmlinux 0xa1e53d16 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xa1ea92a1 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa1ed8da0 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xa22e7f04 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xa27392a1 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa29cdb98 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xa2d931e4 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xa2e67f08 acpi_bus_generate_proc_event4 +EXPORT_SYMBOL_GPL vmlinux 0xa2f54924 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa2ffdbb5 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xa34a9b34 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa36a4034 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38705b0 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa3987cd2 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa40a8590 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa40d09f4 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xa420d32d class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa4471e92 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4a42813 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xa4c3f7f4 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa4ca0d4e unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa4d58669 math_state_restore +EXPORT_SYMBOL_GPL vmlinux 0xa4e6c72c shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xa51e4b45 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa5726192 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xa5a72308 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5afc187 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa5b28fb6 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xa5e93c29 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa5eee0f5 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa6066453 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xa63669b1 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xa64d0072 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa657827a ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa65d15ae anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xa665d1a3 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xa69b3d33 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xa69cac91 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xa69d7779 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa6bee492 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa715db52 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xa722a819 cpu_has_amd_erratum +EXPORT_SYMBOL_GPL vmlinux 0xa723dbbe sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xa74948a7 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xa74f6a87 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xa7e0d6e8 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xa7f92105 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0xa80b04bf usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xa8b82a53 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa8f59416 gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9447536 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xa9601e54 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa968b63f spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xa97e7347 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xa98e6a00 tpm_dev_vendor_release +EXPORT_SYMBOL_GPL vmlinux 0xa98f9f4d fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xa9bc33c0 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xa9c530b8 unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9c61656 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xa9f3f261 net_ipv4_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0xaa085295 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xaa3f13f7 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa76530b da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xaa7e6705 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaa852c93 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa8578a0 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xaabbee87 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xaac169d1 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xaac54067 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xaae5aca8 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab06942c ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xab209c1c ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab7300ce ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xab86f27a bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xaba27d51 regcache_write +EXPORT_SYMBOL_GPL vmlinux 0xabb8d9bc usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xabbc5296 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xabc47f60 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xabd0cf04 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xac5bcbf5 tpm_show_enabled +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacb422cb pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xad5f1b39 nf_net_ipv4_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0xada38534 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadde0cd0 blkiocg_update_timeslice_used +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae0c87ee pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae7c5411 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0xaea81ee7 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xaeea3073 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xaef5fde4 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xaefc1fa9 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xaf14d5ec wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xaf1ceb32 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xaf34ff28 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xaf3b3071 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf5cb519 dw_spi_add_host +EXPORT_SYMBOL_GPL vmlinux 0xaf69699e xv_get_object_size +EXPORT_SYMBOL_GPL vmlinux 0xaf8203f7 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaf9d0bea register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0xafa2b7b9 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xafe1f546 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xb027144e dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xb02fde42 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xb031e5d8 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xb03cf7e5 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xb069c75f hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xb071af0b ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0xb077c11f rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb0885486 lookup_instantiate_filp +EXPORT_SYMBOL_GPL vmlinux 0xb08d20a0 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb0a8268f pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xb0a90f10 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xb0ae5977 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb1059292 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xb10d55bc cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xb1284b47 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb13dcfa4 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb189d3cf wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xb196a3f1 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xb197be74 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xb19a6e0a fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b11b04 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1e2085d setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xb2119a0c ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb222d575 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xb22ca7d9 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xb235270c find_module +EXPORT_SYMBOL_GPL vmlinux 0xb2531560 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xb2548c46 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xb2dca987 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb332c821 blkiocg_update_completion_stats +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb36864d2 blkiocg_add_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0xb373a63b tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xb388439d crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xb38871aa driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb39b1460 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xb39e9844 net_cls_subsys_id +EXPORT_SYMBOL_GPL vmlinux 0xb3c7185c stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xb3d5eab7 acpi_atomic_write +EXPORT_SYMBOL_GPL vmlinux 0xb3da9b9c blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xb3f43b76 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xb41128ff __clocksource_updatefreq_scale +EXPORT_SYMBOL_GPL vmlinux 0xb430ce7f mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xb4487474 tpm_show_pcrs +EXPORT_SYMBOL_GPL vmlinux 0xb466f971 edac_get_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0xb47fec06 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb489ddc9 inet_csk_clone +EXPORT_SYMBOL_GPL vmlinux 0xb48b8e34 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xb498ee18 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb4ce0e20 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb5178e94 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb526c173 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xb5289d31 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xb5352cd2 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53ae573 cpu_idle_wait +EXPORT_SYMBOL_GPL vmlinux 0xb5528df1 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xb559de1f unregister_efivars +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5b7d5ff rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb5d425d9 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0xb5dd784e bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5fba6bf usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xb609a07c crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xb613d93c invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb65bb6c7 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb65bcec8 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xb661f7d1 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6d09f39 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xb6f1254e __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xb6f1c8a6 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb73b1c3f sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xb74d2bfc rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xb76dd9cf watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb7808d65 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xb7a15a93 dm_kill_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0xb7b3771f pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xb7cbf64e sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xb7d5c1ed tpm_show_durations +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e2eb91 mce_cpu_specific_poll +EXPORT_SYMBOL_GPL vmlinux 0xb7f4e553 erst_read +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb813ce5a timecompare_transform +EXPORT_SYMBOL_GPL vmlinux 0xb82c7d32 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xb83de25f max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb86bcceb klist_next +EXPORT_SYMBOL_GPL vmlinux 0xb89e52c1 wm8994_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb8c2ff1a ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb8cc7b80 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb94141dc crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xb9443c5b preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb94db510 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb950cd95 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xb95df8d6 register_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xb95e21ce kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb9746868 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb983a53d vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9aabf2e ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9f889c6 event_storage_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb9fb8ead shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xba260205 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xba468549 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xba69af66 get_driver +EXPORT_SYMBOL_GPL vmlinux 0xba9cd869 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xbab2a814 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbae34c27 scsi_nl_remove_transport +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb06023f __css_put +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb4b5882 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xbb56fa17 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xbb617c2d hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbb79f0ef tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xbb89a4a0 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbf46e27 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xbbfce101 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xbc2bf721 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xbc2dee44 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xbc3d3c56 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xbc3eaf4e __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbc456407 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xbc6f931b workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcea57e1 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xbd506a46 unregister_hotplug_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xbd8f0e69 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbe075706 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xbe1229c9 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbe14a985 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe608951 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xbf0771b1 tcp_is_cwnd_limited +EXPORT_SYMBOL_GPL vmlinux 0xbf140137 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xbf1f000f crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xbf4776b6 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xbf49172e sysfs_schedule_callback +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfcbf86a crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbfdad539 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc03ab504 setup_deferrable_timer_on_stack_key +EXPORT_SYMBOL_GPL vmlinux 0xc04c4991 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xc05aa1a6 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xc05bf21a sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc0a8038b device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xc0bf6ead timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xc0cdf878 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc0dc511c blkiocg_update_io_add_stats +EXPORT_SYMBOL_GPL vmlinux 0xc10f2b8e cgroup_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc11bd00f tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc1219bcc sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc127fa26 acpi_pre_map_gar +EXPORT_SYMBOL_GPL vmlinux 0xc12fa55e cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1d119c6 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xc202141e mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc236b684 blkcg_get_weight +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc2646f3c pci_pri_status +EXPORT_SYMBOL_GPL vmlinux 0xc2674697 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xc271fed6 xen_remap_domain_mfn_range +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2b5d0b3 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xc2c09715 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xc2c494f5 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xc2ce729d udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc2dbf6c7 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e7171d pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xc2f8a5d7 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xc3404298 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xc34efe27 snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3785c34 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc38a3b3a fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc38efc70 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xc399468f scsi_nl_remove_driver +EXPORT_SYMBOL_GPL vmlinux 0xc39feecb tpm_show_owned +EXPORT_SYMBOL_GPL vmlinux 0xc3e6d517 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xc4034caa enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc413f2bd ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42c3706 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xc43aa291 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc457c7f6 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xc48acd12 register_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4ad2fd0 class_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc4bf8c57 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xc4c7007b rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc4ce6189 idle_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc504d398 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xc50c25d5 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5149a11 pci_stop_bus_device +EXPORT_SYMBOL_GPL vmlinux 0xc51988d8 task_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc547d32b crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xc556bc26 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc56ab8de rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc56ebd61 iommu_domain_has_cap +EXPORT_SYMBOL_GPL vmlinux 0xc57dc94d da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xc58015c1 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xc5a62fae cgroup_to_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xc5abb2fd xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xc5c264a5 amd_erratum_400 +EXPORT_SYMBOL_GPL vmlinux 0xc5e6b4f0 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc60f75ec __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc61b4482 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc687afe8 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xc6b45df0 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xc6c70f58 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc6cee11c xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xc7247e11 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xc726b398 wm8994_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc74e7148 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xc75ea53a usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc76b58e4 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b8b151 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xc7e79b8a tpm_write +EXPORT_SYMBOL_GPL vmlinux 0xc80292bf vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xc8077693 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xc86e0359 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8e0487a ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xc8e7dd2b inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc8fd9f33 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8fe1838 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc92449cc ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc937e67c ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc94aceac sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9639116 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xc992f388 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc9a9fd16 platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xc9b6d672 tracepoint_iter_stop +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca302b1c acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xca340ace crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xca4c2844 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xca736ab0 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca85d8cf tracepoint_probe_update_all +EXPORT_SYMBOL_GPL vmlinux 0xcab2d394 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac65d29 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xcae6d476 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xcb1b6428 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xcb22f19a tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xcb3aacb6 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xcb3f504c adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xcb4535ee queue_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0xcb4e6765 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xcb5a7690 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xcb82f5d8 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xcb8b7063 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xcba248f3 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xcba715db crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcbea7470 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbfd1504 blkio_root_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xcc1f1c3d inet_twdr_hangman +EXPORT_SYMBOL_GPL vmlinux 0xcc279884 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xcc3c9be8 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcc3da32d aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xcc4b7f9b ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xcc6ab305 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xccb1f580 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xccb3c0dd usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xccba2b2a usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xcccda860 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcd622442 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xcd639322 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xcd7fe570 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xcd88d889 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xcd9991a9 usb_usual_set_present +EXPORT_SYMBOL_GPL vmlinux 0xcd9b331e ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xcda01a64 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xcdb93a96 tps65910_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xce0e0423 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xce2925ed crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xce46bfa3 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xce50ef31 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xce56a236 proc_net_fops_create +EXPORT_SYMBOL_GPL vmlinux 0xce5cd317 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xce67b0e3 cpufreq_get_measured_perf +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce929af7 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xced176eb blkiocg_update_dispatch_stats +EXPORT_SYMBOL_GPL vmlinux 0xcee0f900 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xcf342e7b put_pid +EXPORT_SYMBOL_GPL vmlinux 0xcf5f512d stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcf6f7eb8 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xcf6f95d7 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xcf84a75e usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xcf96af55 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfaad68d da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc9fe93 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xcfcc83ad register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcfcdb364 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xcfd53d6a cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xcfd5ec00 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL vmlinux 0xd00814ea debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd05dc2a3 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd0b3957f usb_string +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c776b2 rtc_set_mmss +EXPORT_SYMBOL_GPL vmlinux 0xd0e57ccc sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xd0eb27f3 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xd0f1913c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xd0f2894f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xd0f48771 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xd1009275 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xd1154753 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xd119c233 xen_swiotlb_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xd11bf847 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1561674 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1b2db37 tracepoint_probe_register_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2190d71 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xd22a50cf blk_abort_queue +EXPORT_SYMBOL_GPL vmlinux 0xd23f5f59 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xd25f2a48 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xd260fd6e user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd29be0f7 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd2a8caf0 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd2b42799 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2f4762d dm_requeue_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0xd2f9caa7 sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0xd32c09ec tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd32fe193 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd35e46fb blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd37e13b4 regulator_set_optimum_mode +EXPORT_SYMBOL_GPL vmlinux 0xd3996616 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xd39ee7ae blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd3bddea1 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xd3cc95dd skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xd3d43de2 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xd3d49764 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd44edd66 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xd4791878 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd4853fad usb_is_intel_switchable_xhci +EXPORT_SYMBOL_GPL vmlinux 0xd4859477 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xd48709ff input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xd4917cf0 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xd49af6a7 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd4b2f4f3 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xd4be245d pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4ea2848 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd4ff98b3 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xd540fbe9 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xd57bcd4b wm8994_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd5899648 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xd594b2f8 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xd59668e6 unlock_flocks +EXPORT_SYMBOL_GPL vmlinux 0xd5a97830 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xd5b4569c tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5bfe38a usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xd5e11115 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xd602e3cd register_efivars +EXPORT_SYMBOL_GPL vmlinux 0xd605be7f hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xd6425050 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68840e4 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd6d50977 platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72919e0 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd73e0229 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7a90083 blkiocg_lookup_group +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e7bd5f pci_pri_enabled +EXPORT_SYMBOL_GPL vmlinux 0xd802de6a fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xd808989e usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd850744a tpm_show_active +EXPORT_SYMBOL_GPL vmlinux 0xd8525ea7 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xd85ac634 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd8614dff crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87f22c0 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd884faa3 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xd895f59f ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xd8e2472a device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xd9042fa8 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xd906a2fb simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd93e76a6 kbd_table +EXPORT_SYMBOL_GPL vmlinux 0xd949a524 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xd96de075 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xd9922982 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xd9975b67 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9bcd366 init_fpu +EXPORT_SYMBOL_GPL vmlinux 0xd9d1a557 m2p_add_override +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda1be8e1 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xda1cf08b cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xda3a7ca9 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xda3bbf84 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xda633819 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdae38a87 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb04cacc tracepoint_probe_unregister_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xdb202511 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xdb274e52 monotonic_to_bootbased +EXPORT_SYMBOL_GPL vmlinux 0xdb67c4da wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xdbd70416 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc1f8f2e register_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0xdc20786c __ip_route_output_key +EXPORT_SYMBOL_GPL vmlinux 0xdc26015a mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xdc330a57 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xdc5573f8 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xdc5623ef class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xdc81c632 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xdc81ff70 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdccfaade regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xdce57037 apei_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xdce851cd sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xdcf725dd ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd57d4c9 m2p_remove_override +EXPORT_SYMBOL_GPL vmlinux 0xdd6b77bb __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xddb240cb usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xddc3bb06 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf29488 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xde315bde __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xde326105 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0xde417b81 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xde9ab1da pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xdf1460cc ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xdf62283a disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xdf6ae11e uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xdf8a95b6 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xdf9c3830 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xdfa1fd06 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdfab34e4 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xdfb36dc8 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe014f936 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0465006 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe06eac15 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe0758eb4 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0d18460 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xe0e6136f usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xe0e73725 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xe10bcbed spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1918487 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe19629d4 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xe1ca349e rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe1cae4c4 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xe1ecba68 virtqueue_add_buf_gfp +EXPORT_SYMBOL_GPL vmlinux 0xe1ff92c2 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xe20b42fb rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xe22698e7 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xe2286267 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe2517a32 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xe25236bf i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xe269d73d usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe285590f pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2a2856b tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xe2dd67e5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3209fe5 tpm_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xe37ab4df ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xe384a102 usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xe3b41bbb crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3cf9acd pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xe3e872f8 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0xe3fcc46a regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xe40ba8ac dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4428977 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xe4b00896 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe4d91f6f n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xe53a838e ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe60b0fc8 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe61a6d2f gpio_unexport +EXPORT_SYMBOL_GPL vmlinux 0xe6488b47 cpufreq_notify_transition +EXPORT_SYMBOL_GPL vmlinux 0xe649d90f device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe64b1bdf __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xe650523d kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6602e9f perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe664f0e7 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xe68a4acc rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xe699d810 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe702fad6 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe73af7aa usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xe7526856 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xe7595c13 pci_configure_slot +EXPORT_SYMBOL_GPL vmlinux 0xe7687273 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xe772c377 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xe79271cb adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe7b605f5 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xe7bb54bb usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xe7c91ab1 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xe7fc170a iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80e5262 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe89e80a1 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xe8b71723 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xe8c2e440 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xe8cb4b1c kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe8f5030f __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xe8fea702 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xe939c61d key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9587909 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0xe9b26d3a __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xe9ed7c9e blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9eef8ee ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xea065e01 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1ba676 sysdev_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea7bd28d scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xea80ffbb usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xeaafde13 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xead0ac4f register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xeae74760 scsi_nl_send_transport_msg +EXPORT_SYMBOL_GPL vmlinux 0xeb0a5d37 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb572427 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xeb59fd4c usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xeb7351a4 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xebacb42e virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xebc00735 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xec0f85fe ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec6b8d79 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xec9b14eb iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xec9f3543 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xeceadd67 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xed6114fc xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xed9a1ed1 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xede79223 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xee01de91 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xee0be8e0 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xee3e9ec0 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xee3f99c7 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xee7949e5 inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xee8a1014 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xee8d3824 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xeeb73a6e cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xeec24d31 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xeec60e47 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xef01daf2 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef23d470 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xef41e32b put_driver +EXPORT_SYMBOL_GPL vmlinux 0xef5afce0 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xef5b725c __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef97e193 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xefa6985f sysdev_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xefbd1503 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xefdd5a63 ktime_get_ts +EXPORT_SYMBOL_GPL vmlinux 0xefe912ec relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xeff3732b ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf04f04b2 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf07d120a yield_to +EXPORT_SYMBOL_GPL vmlinux 0xf0907adf usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xf0c642de use_mm +EXPORT_SYMBOL_GPL vmlinux 0xf0eeb3ce usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xf11f31cf i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf126d7ce fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf129ef9e __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1bbbb78 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xf1c0bb18 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xf1c80c55 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf256f79a wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xf29cdb81 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xf2f82887 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf3068d0f eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xf30ac736 get_device +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf34042c5 inode_dio_done +EXPORT_SYMBOL_GPL vmlinux 0xf34806ec hrtimer_get_res +EXPORT_SYMBOL_GPL vmlinux 0xf34a3a5a ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xf34d7952 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xf3872f0c pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xf38ac744 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xf38caa96 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b93a97 cgroup_lock_is_held +EXPORT_SYMBOL_GPL vmlinux 0xf3dd036d regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xf41c2763 blk_rq_check_limits +EXPORT_SYMBOL_GPL vmlinux 0xf425cefd ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xf467e4df acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4ce1e62 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50aea8d usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5e43cf6 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xf5f5b8cb rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xf6464980 ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf65ab00a platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xf664b86b xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xf680a28e cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf691f428 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xf6e04730 event_storage +EXPORT_SYMBOL_GPL vmlinux 0xf6e80060 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f2492c usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf7322bc8 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0xf73a3b2d platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf77b6d58 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf796d1f9 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xf7a14f56 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf7c9593a platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf7d49bd3 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xf8004e8f ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xf82cf9af init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xf8406998 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf8706bb0 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf885e00b __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xf889348d usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xf8db6190 tty_prepare_flip_string_flags +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf9209ceb usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf961a88c __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf97666a0 set_memory_rw +EXPORT_SYMBOL_GPL vmlinux 0xf9924426 arch_add_memory +EXPORT_SYMBOL_GPL vmlinux 0xf997d715 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xfa012fe7 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa24c4d3 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xfa398e2f eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xfa8ac542 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xfa99c90e max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xfab1d585 xv_get_total_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xfab3306b __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xfae2d938 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xfaf51e85 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfaf88f87 xv_malloc +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb416103 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb9b0d29 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xfba31313 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xfbd92866 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfbf9be5d register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfc091244 default_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xfc179d5e dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xfc18d0a3 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xfc249f47 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc465aca ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xfc7ea63e tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfcd09823 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xfcd7bc0b ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0xfcdada58 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xfcdc6fe5 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xfcedf86a rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xfd05464b klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xfd1ef7bc xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xfd2ad400 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfdae4baa ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xfdce6626 tpm_show_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xfde0b92c crypto_larval_error +EXPORT_SYMBOL_GPL vmlinux 0xfdf6e06f unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfe060fb2 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe96f04e blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfec13df1 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfef76d5e tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfefa2adb input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5afa6a get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xff5f2b0e __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xff77d064 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xff79a968 blkiocg_del_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0xffa4c4ec cgroup_lock +EXPORT_SYMBOL_GPL vmlinux 0xffdcd769 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfff6f82e d_materialise_unique --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/amd64/generic.modules +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/amd64/generic.modules @@ -0,0 +1,3302 @@ +3c359 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +6lowpan +6pack +8021q +8139cp +8139too +8255 +8390 +88pm860x_bl +88pm860x_onkey +88pm860x-ts +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a3d +a8293 +aacraid +aat2870_bl +aat2870-regulator +ab3100 +ab3100-otp +ab8500-ponkey +ab8500-usb +abituguru +abituguru3 +abyss +ac97_bus +acard-ahci +acecad +acenic +acerhdf +acer-wmi +acpi_ipmi +acpi_memhotplug +acpi_pad +acpiphp +acpiphp_ibm +acpi_power_meter +acquirewdt +act200l-sir +act_csum +act_gact +act_ipt +actisys-sir +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5398 +ad5446 +ad5504 +ad5624r_spi +ad5686 +ad5791 +ad5930 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7280a +ad7291 +ad7298 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad799x +ad9832 +ad9834 +ad9850 +ad9852 +ad9910 +ad9951 +adcxx +addi_apci_035 +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2016 +addi_apci_2032 +addi_apci_2200 +addi_apci_3001 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adfs +adi +adis16060 +adis16080 +adis16130 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adl_pci6208 +adl_pci7230 +adl_pci7296 +adl_pci7432 +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm8211 +adm9240 +adp5520_bl +adp5520-keys +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adummy +adutux +adv7170 +adv7175 +adv7180 +advansys +advantechwdt +adv_pci1710 +adv_pci1723 +adv_pci_dio +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aesni-intel +aes-x86_64 +af_802154 +af9013 +af_alg +affs +af_key +af-rxrpc +ah4 +ah6 +aha152x_cs +ahci_platform +aic79xx +aic7xxx +aic94xx +aiptek +aircable +airo +airo_cs +ak8975 +alauda +algif_hash +algif_skcipher +ali-ircc +alim1535_wdt +alim7101_wdt +alphatrack +altera-ci +altera_jtaguart +altera_ps2 +altera-stapl +altera_uart +ambassador +amc6821 +amd5536udc +amd64_edac_mod +amd76xrom +amd8111e +amd-rng +amplc_dio200 +amplc_pc236 +amplc_pc263 +amplc_pci224 +amplc_pci230 +ams369fg06 +analog +ansi_cprng +anubis +aoe +apanel +apds9802als +apds990x +apple_bl +appledisplay +apple-gmux +applesmc +appletalk +appletouch +applicom +ar7part +arc4 +arcfb +arcmsr +arcnet +arc-rawmode +arc-rimi +ark3116 +arkfb +arptable_filter +arp_tables +arpt_mangle +as5011 +asb100 +asc7621 +asix +asus_atk0110 +asus-laptop +asus-nb-wmi +asus_oled +asus-wmi +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +atbm8830 +aten +ath +ath3k +ath5k +ath6kl +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atxp1 +aty128fb +atyfb +au0828 +au8522 +aufs +authenc +authencesn +auth_rpcgss +autofs4 +avma1_cs +avm_cs +avmfritz +ax25 +axnet_cs +b1 +b1dma +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bch +bcm203x +bcm3510 +bcm5974 +bcma +bcm_wimax +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1770glc +bh1780gli +binfmt_misc +block2mtd +blowfish_common +blowfish_generic +blowfish-x86_64 +bluecard_cs +bluetooth +bma150 +bmp085 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bonding +bpa10x +bpck +bpqether +bq20z75 +bq24022 +bq27x00_battery +br2684 +brcmfmac +brcmsmac +brcmutil +bridge +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btcx-risc +btmrvl +btmrvl_sdio +btrfs +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +BusLogic +bw-qcam +c2port-duramar2150 +c4 +c67x00 +cachefiles +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +camellia +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5 +cast6 +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcidio +cb_pcimdas +cb_pcimdda +c_can +c_can_platform +cciss +ccm +cdc-acm +cdc_eem +cdc_ether +cdc_ncm +cdc-phonet +cdc_subset +cdc-wdm +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +chipreg +chnl_net +ci13xxx_pci +cifs +cirrusfb +ck804xrom +classmate-laptop +clearpad_tm1217 +clip +cls_basic +cls_cgroup +cls_flow +cls_fw +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmtp +cnic +cobra +coda +com20020 +com20020_cs +com20020-pci +com90io +com90xx +comedi +comedi_bond +comedi_fc +comedi_parport +comedi_test +comm +compal-laptop +configfs +contec_pci_dio +cordic +core +coretemp +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpqarray +cpu5wdt +cpuid +cpu-notifier-error-inject +c-qcam +cramfs +cr_bllcd +crc7 +crc8 +crc-ccitt +crc-itu-t +crvml +cryptd +cryptoloop +crypto_null +crypto_user +crystalhd +cs5345 +cs53l32a +cs5535-mfd +ct82c710 +ctr +cts +cuse +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx8800 +cx8802 +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx88xx +cxacru +cxd2099 +cxd2820r +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxt1e1 +cy8ctmg110_ts +cyber2000fb +cyberjack +cyclades +cyclomx +cycx_drv +cypress_cy7c63 +cypress_m8 +cytherm +da9030_battery +da9034-ts +da903x +da903x_bl +DAC960 +daqboard2000 +das08 +das08_cs +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +de600 +de620 +decnet +deflate +defxx +dell-laptop +dell-led +dell_rbu +dell-wmi +dell-wmi-aio +denali +des_generic +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +display +divacapi +divadidd +diva_idi +diva_mnt +divas +dl2k +dlci +dlm +dm1105 +dm9601 +dm-bufio +dm-crypt +dme1737 +dmfe +dmi-sysfs +dm-log +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-raid45 +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-thin-pool +dmx3191d +dm-zero +dnet +dn_rtmsg +doc2000 +doc2001 +doc2001plus +docecc +docg3 +docprobe +dpt_i2o +drbd +drm +drm_kms_helper +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt3000 +dt3155v4l +dt9812 +dtl1_cs +dummy +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-it913x +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dwc3 +dwc3-omap +dwc3-pci +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e752x_edac +earth-pt1 +easycap +eata +ebt_802_3 +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_ulog +ebt_vlan +ec100 +echo +econet +ec_sys +edac_core +edac_mce_amd +eeepc-laptop +eeepc-wmi +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +einj +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +emc1403 +emc2103 +emc6w201 +em_cmp +emi26 +emi62 +em_meta +em_nbyte +empeg +ems_pci +ems_pcmcia +ems_usb +em_text +emu10k1-gp +em_u32 +enc28j60 +enclosure +ene_ir +eni +enic +epat +epia +epic100 +eql +erst-dbg +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +et131x +et61x251 +ethoc +eurotechwdt +evbug +exofs +ext2 +f71805f +f71808e_wdt +f71882fg +f75375s +fakephp +fam15h_power +farsync +fat +faulty +fb_ddc +fb_sys_fops +fcoe +fcrypt +fdomain +fdomain_cs +fealnx +ff-memless +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +fit2 +fit3 +fixed +floppy +fm801-gp +fm_drv +fmvj18x_cs +fnic +forcedeth +fore_200e +freevxfs +friq +frpw +fsa9480 +fsam7400 +fscache +fschmd +ft1000 +ft1000_pcmcia +ftdi-elan +ftdi_sio +ftl +fujitsu-laptop +fujitsu_ts +funsoft +g450_pll +g760a +g_acm_ms +gadgetfs +gamecon +gameport +garmin_gps +garp +g_audio +g_cdc +gcm +g_dbgp +gdth +generic +generic_bl +gen_probe +g_ether +gf128mul +gf2k +g_ffs +gfs2 +ghash-clmulni-intel +ghash-generic +g_hid +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +g_mass_storage +g_midi +g_ncm +g_nokia +go7007 +go7007-usb +goku_udc +gpio-74x164 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-charger +gpio-cs5535 +gpio-fan +gpio-generic +gpio-i2cmux +gpio-it8761e +gpio-janz-ttl +gpio_keys +gpio_keys_polled +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio_mouse +gpio-pca953x +gpio-pcf857x +gpio-pch +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-tps65912 +gpio_vbus +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +g_printer +gre +grip +grip_mp +gsc_hpdi +g_serial +gspca_benq +gspca_conex +gspca_cpia1 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +g_webcam +gx1fb +gxfb +g_zero +hamachi +hampshire +hangcheck-timer +hanwang +hci_uart +hci_vhci +hdaps +hdlc +hdlc_cisco +hdlcdrv +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdpvr +he +hecubafb +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfcmulti +hfcpci +hfcsusb +hfc_usb +hfs +hfsplus +hgafb +hid +hid-a4tech +hid-apple +hid-axff +hid-belkin +hid-cherry +hid-chicony +hid-cypress +hid-dr +hid-elecom +hid-emsff +hid-ezkey +hid-gaff +hid-gyration +hid-holtekff +hid-hyperv +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-logitech +hid-logitech-dj +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hidp +hid-petalynx +hid-picolcd +hid-pl +hid-primax +hid-prodikeys +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-kovaplus +hid-roccat-pyra +hid-samsung +hid-sjoy +hid-sony +hid-speedlink +hid-sunplus +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-wacom +hid-waltop +hid-wiimote +hid-zpff +hid-zydacron +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hmc5843 +hmc6352 +hopper +horizon +hostap +hostap_cs +hostap_pci +hostap_plx +hp100 +hp4x +hp_accel +hpfs +hpilo +hpsa +hptiop +hp-wmi +hso +htc-pasic3 +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-sdio +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-algo-pcf +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-designware-pci +i2c-dev +i2c-diolan-u2c +i2c-eg20t +i2c-gpio +i2c-i801 +i2c-intel-mid +i2c-isch +i2c-matroxfb +i2c-mux +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-piix4 +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-xiic +i2o_block +i2o_bus +i2o_config +i2o_core +i2o_proc +i2o_scsi +i3000_edac +i3200_edac +i5000_edac +i5100_edac +i5400_edac +i5k_amb +i6300esb +i7300_edac +i7300_idle +i7core_edac +i810 +i82092 +i82975x_edac +i8k +i915 +ib700wdt +ib_addr +ib_cm +ib_core +ib_ipath +ib_ipoib +ib_iser +ib_mad +ibmaem +ibmasm +ibmasr +ibmpex +ibm_rtl +ib_mthca +ibmtr_cs +ib_qib +ib_sa +ib_srp +ib_ucm +ib_umad +ib_uverbs +ichxrom +icp_multi +ics932s401 +ideapad-laptop +idmouse +idt77252 +ieee802154 +ifb +iforce +igb +igbvf +iio_dummy +iio-trig-gpio +iio-trig-periodic-rtc +iio-trig-sysfs +ii_pci20kc +ili9320 +imm +imon +imx074 +industrialio +inet_diag +inexio +inftl +initio +input-polldev +int51x1 +intelfb +intel_ips +intel_menlow +intel_mid_dma +intel_oaktrail +intel-rng +intel_vr_nor +interact +ioatdma +ioc4 +io_edgeport +io_ti +iowarrior +ip6_queue +ip6table_filter +ip6table_mangle +ip6table_raw +ip6_tables +ip6table_security +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_LOG +ip6t_mh +ip6t_REJECT +ip6t_rt +ip6_tunnel +ipaq +ipcomp +ipcomp6 +ipddp +ipg +ip_gre +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_watchdog +ip_queue +ipr +ips +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netport +ip_set_list_set +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +ip_tables +iptable_security +ipt_ah +ipt_CLUSTERIP +ipt_ecn +ipt_ECN +ipt_LOG +ipt_MASQUERADE +ipt_NETMAP +ipt_REDIRECT +ipt_REJECT +ipt_ULOG +ip_vs +ip_vs_dh +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ircomm +ircomm-tty +irda +irda-usb +ir-jvc-decoder +ir-kbd-i2c +irlan +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +irnet +ir-rc5-decoder +ir-rc5-sz-decoder +ir-rc6-decoder +ir-sony-decoder +irtty-sir +ir-usb +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x-fe +iTCO_vendor_support +iTCO_wdt +itd1000 +ite-cir +iuu_phoenix +ivtv +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iwl3945 +iwl4965 +iwl-legacy +iwlwifi +iwmc3200top +iwmc3200wifi +iw_nes +ix2505v +ixgb +ixgbe +ixgbevf +ixj +ixj_pcmcia +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsm +k10temp +k8temp +kafs +kalmia +kaweth +kb3886_bl +kbic +kbtab +kcomedilib +ke_counter +kernelcapi +keucr +keyspan +keyspan_pda +keyspan_remote +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvm +kvm-amd +kvm-intel +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lanai +lapb +lapbether +latch-addr-flash +lcd +ld9040 +ldusb +lec +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-clevo-mail +leds-da903x +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lt3593 +leds-mc13783 +leds-net5501 +leds-pca9532 +leds-pca955x +leds-regulator +leds-ss4200 +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-timer +legousbtower +lgdt3305 +lgdt330x +lgs8gxx +lg-vl600 +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libceph +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +libsrp +lightning +line6usb +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_igorplugusb +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_ttusbir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc2 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95241 +lm95245 +lmc +lms283gf05 +lnbp21 +lnbp22 +lockd +lp +lp3971 +lp3972 +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc4151 +ltc4215 +ltc4245 +ltc4261 +ltv350qv +lxfb +lzo +m25p80 +m52790 +m66592-udc +ma600-sir +mac80211 +mac80211_hwsim +mac_hid +machzwd +macmodes +macvlan +macvtap +magellan +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +matrix_keypad +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_DAC1064 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +matroxfb_Ti3026 +matrox_w1 +max1111 +max11801_ts +max1363 +max1586 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max2165 +max3100 +max3107 +max6639 +max6642 +max6650 +max6875 +max7359_keypad +max8649 +max8660 +max8903_charger +max8925_bl +max8925_onkey +max8925_power +max8925-regulator +max8952 +max8997 +max8997_charger +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-regulator-core +mc44s803 +mce_amd_inj +mce-inject +mceusb +mce-xeon75xx +mcp2120-sir +mcp251x +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md4 +mdc800 +mdio +mdio-bitbang +mdio-gpio +me4000 +me_daq +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mem2mem_testdev +memstick +metronomefb +meye +mfd +mga +michael_mic +micrel +microcode +microtek +minix +mip6 +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +mite +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mma8450 +mmc_block +mmc_spi +mos7720 +mos7840 +moto_modem +moxa +mpoa +mpr121_touchkey +mpt2sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrst_max3110 +msdos +msi-laptop +msi-wmi +msp3400 +mspro_block +msr +mt2060 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtdblock +mtdblock_ro +mtdchar +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtouch +multipath +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwl8k +mxb +mxl111sf-demod +mxl111sf-tuner +mxl5005s +mxl5007t +mxm-wmi +mxser +myri10ge +n411 +nand +nand_bch +nand_ecc +nand_ids +nandsim +natsemi +navman +nbd +nci +ncpfs +ne2k-pci +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netrom +netsc520 +nettel +netxen_nic +newtonkbd +nfc +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nfcwilink +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nfnetlink +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfsd +nftl +nf_tproxy_core +ngene +n_hdlc +ni_6527 +ni_65xx +ni_660x +ni_670x +nicstar +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_cs +nilfs2 +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +niu +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp437 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nop-usb-xceiv +nosy +nouveau +nozomi +n_r3964 +ns558 +ns83820 +nsc-ircc +ntc_thermistor +ntfs +n_tracerouter +n_tracesink +nuvoton-cir +nvidiafb +nvram +nv_tco +nxt200x +nxt6000 +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stackglue +ocfs2_stack_o2cb +ocfs2_stack_user +old_belkin-sir +olympic +omfs +omninet +on20 +on26 +onenand +onenand_sim +opencores-kbd +oprofile +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +output +ov2640 +ov5642 +ov6650 +ov7670 +ov772x +ov9640 +ov9740 +overlayfs +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8023 +padlock-aes +padlock-sha +panasonic-laptop +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pata_ali +pata_amd +pata_arasan_cf +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cs5520 +pata_cs5530 +pata_cs5536 +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sc1200 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc300too +pc87360 +pc87413_wdt +pc87427 +pca9541 +pca954x +pcbc +pcc-cpufreq +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_can +pch_dma +pch_gbe +pch_phub +pch_uart +pch_udc +pci +pci200syn +pcips2 +pci_slot +pci-stub +pcmcia +pcmcia_core +pcmciamtd +pcmcia_rsrc +pcm_common +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +peak_pci +pegasus +penmount +pf +pg +phantom +phison +phonedev +phonet +phram +physmap +pktcdvd +pktgen +pl2303 +platform_lcd +plat_nand +plat-ram +plip +plusb +pluto2 +plx_pci +pm2fb +pm3fb +pm8001 +pmc551 +pmcraid +pn533 +pn544 +pn_pep +pohmelfs +poseidon +powermate +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +pppoatm +pppoe +pppox +ppp_synctty +pps_core +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +prism54 +progear_bl +ps2mult +psb_gfx +psmouse +pt +pti +pvrusb2 +pwc +qcaux +qcserial +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas408 +qnx4 +qt1010 +qt1070 +quatech_daqp_cs +quatech_usb2 +quickstart +quota_tree +quota_v1 +quota_v2 +r128 +r592 +r6040 +r8169 +r8187se +r8192e_pci +r8192u_usb +r852 +r8712u +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-i2c-si470x +radio-maxiradio +radio-mr800 +radio-si4713 +radio-tea5764 +radio-timb +radio-usb-si470x +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-em-terratec +rc-encore-enltv +rc-encore-enltv2 +rc-encore-enltv-fm53 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-kaiomy +rc-kworld-315u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-snapstream-firefly +rc-streamzap +rc-tbs-nec +rc-technisat-usb2 +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-trekstor +rc-tt-1500 +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +redboot +redrat3 +reed_solomon +reiserfs +renesas_usbhs +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-regulator +ring_sw +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rndis_host +rndis_wlan +rocket +romfs +rose +rotary_encoder +rpcsec_gss_krb5 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800pci +rt2800usb +rt2x00lib +rt2x00pci +rt2x00usb +rt61pci +rt73usb +rtc-88pm860x +rtc-ab3100 +rtc-ab8500 +rtc-bq32k +rtc-bq4802 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1742 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-isl12022 +rtc-isl1208 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8925 +rtc-max8998 +rtc-mc13xxx +rtc-msm6242 +rtc-pcf2123 +rtc-pcf50633 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-stk17ta8 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rtl8150 +rtl8180 +rtl8187 +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192se +rtlwifi +rts5139 +rts_pstor +rxkad +s1d13xxxfb +s2250 +s2250-loader +s2255drv +s2io +s3fb +s526 +s5h1409 +s5h1411 +s5h1420 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +salsa20-x86_64 +samsung-laptop +samsung-q10 +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sbc60xxwdt +sbc8360 +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbe-2t3e3 +sb_edac +sbni +sbs +sbshc +sc1200wdt +sc520cdp +sc520_wdt +sc92031 +sca3000 +scb2_flash +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_drr +sch_dsmark +sch_gred +sch_hfsc +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_tgt +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_srp +scsi_wait_scan +sctp +sctp_probe +sdhci +sdhci-pci +sdhci-pltfm +sdio_uart +sdricoh_cs +sedlbauer_cs +seed +seeq8005 +sep_driver +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent +serport +serqt_usb2 +ses +sfc +sha1-ssse3 +sha512_generic +shpchp +sht15 +sht21 +si21xx +si4713-i2c +sidewinder +siemens_mpi +sierra +sierra_net +sil164 +sir-dev +sis +sis190 +sis5595 +sis900 +sis-agp +sisfb +sisusbvga +sit +sja1000 +sja1000_platform +skel +skfp +skge +sky2 +sl811_cs +sl811-hcd +slcan +slicoss +slip +slram +sm501 +sm501fb +sm7xx +smc91c92_cs +sm_common +sm_ftl +smm665 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc9420 +smsc95xx +smsc-ircc2 +smscufx +smsdvb +smsmdtv +smssdio +smsusb +sn9c102 +snd +snd-ac97-codec +snd-ad1889 +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt3328 +snd-bt87x +snd-ca0106 +snd-cmipci +snd-cs4281 +snd-cs46xx +snd-cs5530 +snd-cs5535audio +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1938 +snd-es1968 +snd-firewire-lib +snd-firewire-speakers +snd-fm801 +snd-gina20 +snd-gina24 +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-isight +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3-synth +snd-oxygen +snd-oxygen-lib +snd-page-alloc +snd-pcm +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb16-dsp +snd-sb-common +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-88pm860x +snd-soc-ad1836 +snd-soc-ad193x +snd-soc-ad73311 +snd-soc-adau1373 +snd-soc-adav80x +snd-soc-ads117x +snd-soc-ak4104 +snd-soc-ak4535 +snd-soc-ak4641 +snd-soc-ak4642 +snd-soc-ak4671 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs42l51 +snd-soc-cx20442 +snd-soc-da7210 +snd-soc-dfbmcs320 +snd-soc-jz4740-codec +snd-soc-l3 +snd-soc-lm4857 +snd-soc-max98088 +snd-soc-max98095 +snd-soc-max9850 +snd-soc-max9877 +snd-soc-pcm3008 +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-spdif +snd-soc-ssm2602 +snd-soc-sta32x +snd-soc-tlv320aic23 +snd-soc-tlv320aic26 +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic3x +snd-soc-tlv320dac33 +snd-soc-tpa6130a2 +snd-soc-uda134x +snd-soc-uda1380 +snd-soc-wl1273 +snd-soc-wm1250-ev1 +snd-soc-wm2000 +snd-soc-wm5100 +snd-soc-wm8350 +snd-soc-wm8400 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8727 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8900 +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8940 +snd-soc-wm8955 +snd-soc-wm8960 +snd-soc-wm8961 +snd-soc-wm8962 +snd-soc-wm8971 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8983 +snd-soc-wm8985 +snd-soc-wm8988 +snd-soc-wm8990 +snd-soc-wm8991 +snd-soc-wm8993 +snd-soc-wm8994 +snd-soc-wm8995 +snd-soc-wm8996 +snd-soc-wm9081 +snd-soc-wm9090 +snd-soc-wm-hubs +snd-sonicvibes +snd-tea575x-tuner +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usbmidi-lib +snd-usb-us122l +snd-usb-usx2y +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx222 +snd-vx-lib +snd-vxpocket +snd-ymfpci +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solos-pci +sony-laptop +soundcore +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedstep-lib +speedtch +spi-altera +spi-bitbang +spi-butterfly +spidev +spi-dw-midpci +spi-gpio +spi-lm70llp +spi-oc-tiny +spi-tle62x0 +spi-topcliff-pch +squashfs +ssb +ssfdc +sst25l +sstfb +ssu100 +ssv_dnp +st +st1232 +starfire +stb0899 +stb6000 +stb6100 +st_drv +stex +stinger +stir4200 +stkwebcam +stmmac +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +svcrdma +svgalib +sx8 +sym53c500_cs +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t1pci +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +tc3589x-keypad +tca6416-keypad +tcm_fc +tcm_loop +tcp_bic +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tdfx +tdfxfb +tdo24m +tea +tea5761 +tea5767 +tea6415c +tea6420 +tef6862 +tehuti +tekram-sir +teles_cs +test-kstrtox +test_power +tg3 +tgr192 +thinkpad_acpi +thmc50 +ti_dac7512 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timb_dma +timberdale +timblogiw +timbuart +timeriomem-rng +tipc +ti_usb_3410_5052 +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmiofb +tmp102 +tmp401 +tmp421 +tms380tr +tmscsim +tmspci +toim3232-sir +topstar-laptop +toshiba_acpi +toshiba_bluetooth +touchit213 +touchright +touchwin +tpm_atmel +tpm_infineon +tpm_nsc +tpm_tis +tps6105x +tps6105x-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +trancevibrator +tranzport +tridentfb +ts5500_flash +ts_bm +tsc2005 +tsc2007 +tsc40 +ts_fsm +ts_kmp +tsl2550 +tsl2563 +tsl2583 +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +tua6100 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw9910 +twidjoy +twofish_common +twofish_generic +twofish-x86_64 +twofish-x86_64-3way +typhoon +u132-hcd +uartlite +uas +ub +ubi +ubifs +ucb1400_core +ucb1400_ts +udc-core +udf +udlfb +ueagle-atm +ufs +uio +uio_aec +uio_cif +uio_netx +uio_pci_generic +uio_pdrv +uio_pdrv_genirq +uio_sercos3 +uli526x +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unioxx5 +upd64031a +upd64083 +uPD98402 +usb8xxx +usbatm +usb_debug +usbdux +usbduxfast +usbduxsigma +usb_gigaset +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmouse +usbnet +usbserial +usbsevseg +usb-storage +usbtest +usbtmc +usbtouchscreen +usbvision +usb_wwan +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-compat-ioctl32 +v4l2-int-device +v4l2-mem2mem +vcan +ves1820 +ves1x93 +vesafb +veth +vfat +vga16fb +vgastate +vgg2432a4 +vhci-hcd +vhost_net +via +via686a +via-camera +via-cputemp +viafb +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +video +videobuf2-core +videobuf2-dma-contig +videobuf2-memops +videobuf2-vmalloc +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videocodec +videodev +virtio_balloon +virtio_console +virtio_mmio +virtio-rng +virtual +visor +vivi +vivopay-serial +vlsi_ir +vmac +vme +vme_ca91cx42 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmwgfx +vmw_pvscsi +vmxnet3 +vp27smpx +vpx3220 +vsxxxaa +vt1211 +vt8231 +vt8623fb +vub300 +vx855 +vxge +w1_bq27000 +w1_ds2408 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1-gpio +w1_smem +w1_therm +w35und +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83697hf_wdt +w83697ug_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +w9966 +wacom +wacom_w8001 +wafer5823wdt +walkera0701 +wanrouter +wanxl +warrior +wbsd +wdt_pci +whci +whci-hcd +whc-rc +whiteheat +wimax +winbond-840 +winbond-cir +wire +wis-ov7640 +wis-saa7113 +wis-saa7115 +wis-sony-tuner +wis-tw2804 +wis-tw9903 +wis-uda1342 +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl12xx_sdio +wl12xx_spi +wl3501_cs +wlags49_h25_cs +wlags49_h2_cs +wm831x_backup +wm831x_bl +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x_power +wm831x-ts +wm831x_wdt +wm8350-hwmon +wm8350_power +wm8350-regulator +wm8350_wdt +wm8400-core +wm8400-regulator +wm8739 +wm8775 +wm8994-regulator +wm97xx-ts +wmi +wp512 +wusb-cbaf +wusbcore +wusb-wa +x25 +x25_asy +x38_edac +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xenfs +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen_wdt +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_ipcomp +xfrm_user +xfs +xgifb +xilinx_uartps +xirc2ps_cs +xircom_cb +xo15-ebook +xor +xpad +xprtrdma +x_tables +xt_addrtype +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_cluster +xt_comment +xt_connbytes +xt_connlimit +xt_connmark +xt_CONNSECMARK +xt_conntrack +xt_cpu +xt_CT +xt_dccp +xt_devgroup +xt_dscp +xt_DSCP +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_HL +xt_IDLETIMER +xt_iprange +xt_ipvs +xtkbd +xt_LED +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_NFLOG +xt_NFQUEUE +xt_NOTRACK +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_RATEEST +xt_realm +xt_recent +xts +xt_sctp +xt_SECMARK +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_TCPMSS +xt_TCPOPTSTRIP +xt_tcpudp +xt_TEE +xt_time +xt_TPROXY +xt_TRACE +xt_u32 +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +zatm +zaurus +zcache +zd1201 +zd1211rw +zhenhua +zio +zl10036 +zl10039 +zl10353 +zlib +zlib_deflate +znet +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/i386/generic-pae.compiler +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/i386/generic-pae.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/i386/virtual.compiler +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/i386/virtual.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/i386/generic.compiler +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/i386/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/i386/generic +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/i386/generic @@ -0,0 +1,12548 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x07382e84 kvm_read_guest_atomic +EXPORT_SYMBOL arch/x86/kvm/kvm 0x472ad330 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xacec22a3 acpi_video_get_edid +EXPORT_SYMBOL drivers/atm/suni 0xb3ec46aa suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xae103c8d uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x012ffc5f bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x5c165453 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x0c440c46 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x2dc0eb5a pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x2e9491ed pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x50be4095 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x52d794e7 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x6289779c paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x6e2487d5 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x95bd3fad pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xaffcbc49 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xc5f920d7 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xc66932f2 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xefc8b98a pi_read_regr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x241d9deb ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4382c99b ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6614f2ab ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x755cd791 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa28a2ace ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbccd1fed ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nsc_gpio 0x4e92a382 nsc_gpio_write +EXPORT_SYMBOL drivers/char/nsc_gpio 0xac574c53 nsc_gpio_read +EXPORT_SYMBOL drivers/char/nsc_gpio 0xbf68e825 nsc_gpio_dump +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/edac/edac_core 0x297d30ae edac_mc_handle_fbd_ce +EXPORT_SYMBOL drivers/edac/edac_core 0x4f139305 edac_mc_find +EXPORT_SYMBOL drivers/edac/edac_core 0xa378bb61 edac_mc_handle_fbd_ue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x09d9ffa5 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1086fb4f fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x18edfe2d fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1bea3c78 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x25fb0469 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2b5047d7 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x43d3a017 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4dfaafdb fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4ed31bf3 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7095630e fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7970a171 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8e554871 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x94afc8a7 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x95299ce0 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x97354d57 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x97e54895 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xae2c1c82 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb3239c24 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbe32ae68 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc6d0a23b fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd63b55eb fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe2f8e107 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe4d30320 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe61d8ba8 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xefd703c2 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/gpu/drm/drm 0x009081b1 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00a75157 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ebfc2c drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05a29568 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05d3166c drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x063e3283 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x095dc872 drm_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a7e22e4 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bc9f4e7 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0efd0bb4 drm_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x123b7f12 drm_mm_get_block_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c6276a drm_buffer_read_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12edce13 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x141554e0 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142b8b35 drm_buffer_copy_from_user +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1625cafa drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c43fc8 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bf206df drm_get_encoder_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cb8dc72 drm_mode_detachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ec11518 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ee32b2f drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f072c59 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x228dfbfa drm_get_usb_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x244f9d70 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25084007 drm_core_reclaim_buffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25f8d7ae drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27251bbf drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28fc615b drm_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29dbccba drm_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a22fa2e drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bb4ed4c drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f014798 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3074f033 drm_order +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31efc694 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3276a3c1 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e154ba drm_sman_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3465ed3d drm_mm_search_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3594bc8a drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36de7df6 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b0498a2 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c2508cd drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2b0d05 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ed2778a drm_mode_validate_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40184f13 drm_usb_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41469c24 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41fe8795 drm_mm_pre_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43384bd9 drm_buffer_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c9a91c drm_sman_set_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46f0c540 drm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x483770a2 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4843a1d8 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498dcb5e drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aa876ac drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aae0b8b drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cff04a7 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dfb923b drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e3b90bd drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e462445 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x514a28e8 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x540bb724 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x549b2c8d drm_mm_put_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580830f0 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a354c9e drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b395bf9 drm_core_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5be3e9a4 drm_mode_create_dithering_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d413248 drm_mm_insert_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ec27f8d drm_global_mutex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f098f77 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6cbc33 drm_find_cea_extension +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6088d643 drm_connector_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62bb45c2 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62fb9ea4 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63462d5a drm_sysfs_connector_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ba5f95 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6424ee50 drm_get_last_vbltimestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67350f72 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68882574 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68ef4901 drm_mode_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6915af5c drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69b5b1e6 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a335552 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b353691 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d7375 drm_timestamp_precision +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f9e4d76 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x720d32cc drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73e968af drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a8e8422 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1fd6c8 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7dd720f9 drm_connector_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f392a19 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f481440 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4cfa5d drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x801cd395 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e720c9 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80fbab72 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81ec4cc5 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a57add drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d369dc drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x841c47b9 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x844b0164 drm_core_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x855c133b drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85de09f5 drm_mode_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86136af0 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x863eec65 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x882d5a3b drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88351261 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88b80b46 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b41bbfe drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bad38aa drm_gem_object_handle_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bebd5e4 drm_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d3fc9d9 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfb019d drm_buffer_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f26a30a drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f7d7332 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c79dbd drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x912c23fe drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9240a06a drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f2d102 drm_sman_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932df43d drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ad2c48 drm_mm_get_block_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9643eb08 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9745d638 drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9759fbb0 drm_gem_object_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x975e5da0 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99937feb drm_mode_connector_detach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b2241a9 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d338e2d drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc25a34 drm_sman_owner_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1eabd87 drm_mode_list_concat +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa237e931 drm_sman_set_manager +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa416c1d7 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa468ddac drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ea15c3 drm_usb_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7c7a70a drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa54231f drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa6d323f drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac138614 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacb7b99e drm_platform_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad7f7cd5 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaea0c676 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2c49095 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2f0009a drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb32e5764 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb68e9ba0 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a467b1 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9222142 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfacb4bd drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc02a7975 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc053c265 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc32e8ee1 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc414c422 drm_vblank_offdelay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6afc4c3 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc77e1324 drm_mode_attachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8fcffa8 drm_get_connector_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb904d3 drm_sysfs_connector_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf2eff4 drm_mode_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfdb398b drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08fa3f0 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2f10d81 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4db7a29 drm_get_platform_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5441abb drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7223355 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f1ab84 drm_sman_owner_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd864a235 drm_connector_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdba1d692 drm_free_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe256edfd drm_sman_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3553657 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5bdce7e drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccc9f7d drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed256cae drm_sman_free_key +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee5bf055 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeed51665 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a0bf79 drm_sman_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf23a0feb drm_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf359ec69 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f038d8 drm_mm_search_free_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf773f548 drm_core_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8fc0eb1 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf919a2f0 drm_fasync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa5353d0 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb8fa04b drm_unbind_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4f8599 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc78d037 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff4d9c9a drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0038e9af drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b9428df drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x105d72a6 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x149fa2e7 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f9d0407 i2c_dp_aux_add_bus +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3406799f drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d608776 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44c3a192 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x478d4495 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f5f2737 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x596e4f82 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e76754b drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c4f7849 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ccfb335 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fb1b73a drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70beef5a drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71885d8c drm_fb_helper_single_fb_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7188790d drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d8f709b drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9220fed6 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d251144 drm_fb_helper_panic +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e5babf4 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa04bd35d drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa181e6cf drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8822807 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9722de9 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc00020d0 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc469c244 drm_fb_helper_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc642564a drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0f6ceaa drm_fb_helper_restore_fbdev_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd51467d0 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfeb9cc82 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfed146bd drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x056b7d30 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e495e7c ttm_bo_unreserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13119eba ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13c565a5 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x145e6a73 ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25392771 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27672446 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ad71b29 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b941579 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e1b3859 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34c269a1 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a34dd6a ttm_bo_wait_cpu +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b1b12c7 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f4bd6c9 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3fa23a1a ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4696d4c4 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4915fb8c ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49d78a47 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ea2891e ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51509dcf ttm_bo_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b1bc3fe ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61bdb34f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63a00eb6 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64389ffd ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6622655d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6cc394b7 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e682c8d ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7586fb3a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7790cd9f ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f05b5eb ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f1ee907 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80b8d93e ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85477881 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86a4066d ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8832162b ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x883b66cd ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x903b687e ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x923395d4 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92da04e8 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93ae9d50 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9935ed4d ttm_bo_wait_unreserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9a280a3 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae89aca8 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaa2b414 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd5f95b6 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf35cddd ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc404922 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd346fab2 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdb1ef69a ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5417038 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6151c65 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe9e60efc ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeaef59a1 ttm_agp_backend_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb8cfa8f ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2eaa709 ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcd152af ttm_bo_evict_mm +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x0b28c3fc vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xef9d04f2 vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x3a9a729f i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd510819e i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x3ee8971c i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa19e1505 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pcf 0x8e83d834 i2c_pcf_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x843b2f87 amd756_smbus +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x37838b44 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x6c603cf7 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x8ed679ff rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d1f522d rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb93baf0d rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xc0bf4edc rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x13158ac8 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x16455e29 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x242e4f83 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2bc413c3 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2f8ed401 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4153cd22 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x41654650 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x578e1648 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5d26769e ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x63ad62a9 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6c35a6e8 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbab8dcd6 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd1deaa8d ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd99d5517 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd9fa4bfd ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd22f353 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff8ee1c8 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00528da3 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0354d0ce ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03704d2c ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03eaf3fa ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c82fcf mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a25e2b3 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1128053a ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1180fb86 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f84918 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14fc73ab ib_alloc_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x165f53df ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171f99f1 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b8cdf5f ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ede4ceb ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2119df9d ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21857926 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2951ba97 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ca27c4c ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c4ce7c2 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d8d4c5b ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3ec1165f ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40ee96d3 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48f1e8e9 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c73f758 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x543090ec ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x597b2fc5 ib_reg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a93d3b7 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e0f3075 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x630daef3 ib_free_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6930c232 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x699858d7 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6fc6fe4b ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7078067f ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7960ee07 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ac1ac10 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d9664a5 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x815e6e4b ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8422d815 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8735e4d2 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89a02fcc ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8af731ed ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8cc0e873 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x952d042c ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96ce6c46 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99d642fb ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d3269e5 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e3f8140 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa46b5773 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4cc35e7 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb369b61b ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb46dacf8 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbad71f41 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbddf1271 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc075dc78 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfd31d09 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3d27d2d ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd478692d ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4f23b95 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda17962b ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa7240c ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd0bb031 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde31af21 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0f22e54 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7baf8f1 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9961f48 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb11699c ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeda75341 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf11a535a ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf153eaa7 ib_alloc_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3295b25 ib_rereg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf40f15fa ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf43a2a7b ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf47e6d2d ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf513d798 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7960606 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb3474e0 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbb97ff9 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x03d8c3a8 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x40d30eac ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x69a3af90 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x82f0ea89 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8bb3405e ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x92f242ae ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x946d5d27 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb47ef338 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc08ff5d2 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd8f02858 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd926e21f ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xdf2d9509 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xed56e229 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2364355d ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6e44fd9f ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8001438f ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x90fbded0 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9c02da64 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa79936c6 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb65f6d74 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf6b6444b ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf81bcd67 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f847bc ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07cf5a51 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18382f6a ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x184f3575 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x328d8d94 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3853fe72 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x454865e5 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x48baaa04 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x92e5dd55 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa45da108 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd9a630ff iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xde9baaf5 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0afc0454 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0d1faa7a rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x201ccec5 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x205cba53 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x29e70739 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c3381bd rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x40adb758 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x59b6ffc7 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x67da754a rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9b890366 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9cc86b46 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb044e27a rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb5a84371 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde5048a4 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf2b754d3 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfab2b1df rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfb320526 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfef24ac9 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfeff1744 rdma_create_id +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0982fee7 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x189c3a7f __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7266e88f gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x742b5d28 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x75b6c675 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x773f7f16 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x83ad203d gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x92305946 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa6c47c14 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/input-polldev 0x5e4871ad input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x91060a62 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa2205087 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xfbf76066 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1f96361f ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x27f28993 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x487a3ceb ad714x_remove +EXPORT_SYMBOL drivers/input/misc/ad714x 0x71465647 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x49432f14 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2ac5e3fd sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7217000c sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc2fe7eb7 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcecf9562 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd046b789 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xef9c3c4d sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbc9dc160 ad7879_suspend +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd7c998e5 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf3bd1692 ad7879_resume +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x136bbec0 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x42383aed capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47d3fc51 capi_info2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6314f4f6 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x748bb7fc capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7ee0abb7 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8b484bcd capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbafd43ca capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xcaba0102 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xde3079c6 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed061606 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf030b564 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x018d24f4 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2f58431d b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x319128f1 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x343ba9dc b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x36d2021c b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5b06f213 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5c722d0f b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x605962fb b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8e488c4b b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x96f3671a b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9fc60a08 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa33b5481 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb20fc46f avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdbc8b718 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xde8d9f04 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0a6589df b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1a592b74 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x240c8323 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4a470d2b b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4e217f10 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x969a6573 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdf9764da b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xeeb0c445 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf5be5d35 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x7b3a8514 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x37a43c3b mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa7ff6b82 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xad2df2d0 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd9408a9d mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x35b7a139 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xdeed17ca mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x2dd01707 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7f29ce36 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe227344e FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xff2db2cf FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9d2fff98 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xab15860e isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd389e954 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xded2c20f isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xf5853e97 isacsx_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc2820809 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xc981799d register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xcd5e8fb3 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x01f3b6ec mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x14829b2b mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4d251821 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4e7a42d4 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54451388 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dc7400a mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x614ede30 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x66258eb1 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6a6cc28b get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6f456c65 confirm_Bsend +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6f6f517a mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x701c6d19 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x76fa85d8 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8155d873 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x82b79abc mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96309324 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb658c7f0 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc0827a04 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcf3cba11 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd1be7824 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd33ed865 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd37d2746 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4884394 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4bd0f8d mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe87943cf mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xec6b1d8e recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/dm-log 0x6b73e28b dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x6dfaef35 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x97e54dba dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x9b03e8d7 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3102038b dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x374ffa47 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3a138c90 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x49bc277f dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x69b71bc3 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7ce4044a dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x92e4e2ec raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/tuners/max2165 0x1b457a41 max2165_attach +EXPORT_SYMBOL drivers/media/common/tuners/mc44s803 0x9c4a7af8 mc44s803_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2060 0xb18cacf6 mt2060_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2131 0x97a893b0 mt2131_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2266 0x698e6755 mt2266_attach +EXPORT_SYMBOL drivers/media/common/tuners/mxl5005s 0x928eade1 mxl5005s_attach +EXPORT_SYMBOL drivers/media/common/tuners/qt1010 0x952b42d5 qt1010_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18212 0x5b8baccc tda18212_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18218 0x2548475d tda18218_attach +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/common/tuners/tuner-xc2028 0x84aecdd8 xc2028_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc4000 0xbedacccc xc4000_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc5000 0x2154e818 xc5000_attach +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x082998a2 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x3a756ba3 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x4fb2859e flexcop_dma_config +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x50b2c978 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x55cee825 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x5ca7c48a flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x6fe84dc4 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x761315fd flexcop_dma_free +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x77316d70 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x97b0593d flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xa27b55ec flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xa68bd002 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xab5b341a flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xb4d7ed19 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xb6545cbe flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xbd3321a1 flexcop_device_exit +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc7ee55f9 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xcc730531 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xd333dd65 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xf4745ca7 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x111f53ed bt878_stop +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x2e9f872c bt878_device_control +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x6526252d bt878 +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xd1729465 bt878_start +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x34cb9b95 dst_pio_disable +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x42c770a5 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x8c72d9ef dst_comm_init +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xa96fba35 read_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xcfba109c dst_error_recovery +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xd6a8a753 write_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xdee164ea rdc_reset_state +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xe0b85722 dst_attach +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xf81aa383 dst_error_bailout +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst_ca 0xfa800fb4 dst_ca_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x06a9ece1 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0a0569c5 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0c4d4a14 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x101a29b8 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x196f1ac1 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x237f7910 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x300f2abb dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x38308868 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x3dd1050f dvb_net_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x3dfa4b7c dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x40ef541f dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4c70c35a dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x571df308 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x573c6812 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6cdf23e5 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7defdeb0 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x83d59afd dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8a802a70 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8ccc8ec5 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x9776b562 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x987dcfde dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x9b6d7829 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xab84aff0 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xb24236d9 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xb4703a68 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xb72b5fa0 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbba5250d dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbc0d91e1 timeval_usec_diff +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc48742c4 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xd37124c9 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xd3ee7530 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xdc26ea85 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf2544036 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf6b973c5 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xfcc0ed9c dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xff53017a dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x0081ae02 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x0823eb3b dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x3c015635 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x66525db0 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x851b40e6 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x8f48b62b dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x96103228 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xe8ee4870 af9005_rc_decode +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x08168b82 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x132511f7 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x5d9b91ea dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x5fd25447 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x6145c603 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x65689aa4 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x6a29a200 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x85ad5568 dibusb_rc_query +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x985eff06 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xdb4a7c86 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xf1a80d9e dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/a8293 0xb0b2ae5a a8293_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/af9013 0x5f940a9a af9013_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/atbm8830 0x522cf057 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/au8522 0xed7dccfe au8522_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/bcm3510 0xab5b2455 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22700 0x3132a60a cx22700_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22702 0x444dcd61 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24110 0x7e9dcb94 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x0017a0a1 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x33a1f972 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24116 0x787bb047 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x20eab9f6 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x90c4e397 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/cxd2820r 0x6294af1d cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x59931dd5 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x9105f463 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x93205b68 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xe80c87ce dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xe99edf4f dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x02c6734b dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x1685e613 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x16a92133 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x29ab10d6 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x8cfbcac7 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xb8c4464a dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xbd3018be dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xbdcd7615 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xbe9ed508 dib0090_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mb 0xab4e165a dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x14ffa543 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x15cfd225 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x8c410556 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x9923f185 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x9a132ae7 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xf29c9fea dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x05a0c077 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x6c27e872 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x71c0ca6c dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xfeb17316 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x12969e0a dib7090_slave_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x17a35391 dib7000p_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x18814568 dib7000p_ctrl_timf +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x209771fa dib7090_get_i2c_tuner +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x3b48f0de dib7000p_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x59977025 dib7090_tuner_sleep +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x5f91bc0a dib7000p_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x7a50bab0 dib7000p_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x8e52908b dib7000p_update_pll +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xa9271902 dib7000p_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xaa7f0eaa dib7090_agc_restart +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xb27145f9 dib7000p_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xc7e81dcf dib7090_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xca34aeec dib7000pc_detection +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xe042e9a5 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x1b349847 dib8000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x1ed02e70 dib8000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x402b086e dib8000_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x4db772a1 dib8000_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x5b28d125 dib8000_remove_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x7f9d900d dib8000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x898efaef dib8000_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x90159719 dib8000_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xc49e667b dib8000_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xca8965c2 dib8000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xd1b5e255 dib8000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xda23f6ad dib8000_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xdbca683d dib8000_pwm_agc_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xf000893c dib8000_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x13d3148d dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x70692724 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x761f7f5b dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x97d406ec dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xe88a3d77 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x2edf0cba drxd_config_i2c +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0xa7c47c88 drxd_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/drxk 0x1ce5a56a drxk_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ds3000 0x11d4137a ds3000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dvb-pll 0x185d9b0d dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ec100 0x5b09e1ca ec100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6405 0xdef5c7c8 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6421 0x2848b30a isl6421_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6423 0xfe81e6ba isl6423_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/it913x-fe 0xa3c7fa0f it913x_fe_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/itd1000 0x6710ff91 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ix2505v 0x7dcbd9f3 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/l64781 0x10930ca4 l64781_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt3305 0x2ec1c61b lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt330x 0xe0a15945 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgs8gxx 0x82b871d9 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0x95518de2 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0x994986eb lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp22 0x8b429415 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a16 0x605a5d44 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a20s 0x4503c5ba mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt312 0xdc0e2674 mt312_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt352 0x944f869a mt352_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt200x 0xfca3486c nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt6000 0x986f98e1 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51132 0x60e4cdf9 or51132_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51211 0xd6b6f3f5 or51211_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1409 0x9d31708c s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1411 0xbc38cf1d s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x1e6c71db s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x33d59f8e s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/s921 0xc330d89f s921_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/si21xx 0x66b8ccd9 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp8870 0x036c3652 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp887x 0xa4cc9fe7 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb0899 0x58b317f7 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6000 0xa91fab11 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6100 0x304df54b stb6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0288 0x5bbe9182 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0297 0xc7a95fe2 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0299 0xdf118716 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0x314941b8 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0xab83d997 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0900 0xdd52bfcd stv0900_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0x9d38b9c1 stv090x_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0xf69387b2 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110 0xa4e060bd stv6110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110x 0xa0fd84d8 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10021 0x1c0bfc4b tda10021_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10023 0x16e17169 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10048 0x39a4fe7b tda10048_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0xba5dbbfa tda10045_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0xda64f275 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10071 0x3cd8c9d7 tda10071_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10086 0xf9f61446 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda665x 0xbf9124bd tda665x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8083 0xbeca1b4e tda8083_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8261 0xd7dd3f32 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda826x 0x832ca520 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tua6100 0xe1d3bad4 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1820 0xf01d04b0 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1x93 0xc4cc01a6 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10036 0xef6be6e0 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10039 0xd47c3dc5 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10353 0x16ee55e7 zl10353_attach +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0x4aff6b32 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x96b9eecb ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0xbd7eef01 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4125709f lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x889bafe7 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa75911dc lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xac4df0b5 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xae29ffec lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb0e38bc8 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb8eef216 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe8ca9036 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/rc-core 0x576b7cc8 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x5b30c165 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x29a5ece4 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x83a3b4d4 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xb620f689 bttv_sub_register +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x495e4b0c btcx_calc_skips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x6097f76a btcx_riscmem_alloc +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x78d3401b btcx_riscmem_free +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xad2fe38b btcx_sort_clips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xc368f8e6 btcx_align +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xcda0ded2 btcx_screen_clips +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2635cd4c cx18_claim_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x348662c9 cx18_ext_init +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x573dfe8b cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xb98caa41 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xe9a1e7a8 cx18_release_stream +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0xb2d1d911 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0xef92388e cx231xx_register_extension +EXPORT_SYMBOL drivers/media/video/cx2341x 0x0da7e7ff cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/video/cx2341x 0x0e45778a cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/video/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/video/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5b88faf6 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0x676ed443 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx2341x 0x7dc2bf3a cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/video/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0xffb04ae1 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x05d32ca3 altera_pid_feed_control +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x9247b72f altera_hw_filt_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xcc01c048 altera_hw_filt_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xf74bc0f3 altera_ci_init +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x028f58d8 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x0f728ab2 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x26805901 cx25821_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x471e1cfb cx25821_devlist +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x67cc5b8b cx25821_sram_channels +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x75d0a010 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xd5a6531f cx25821_devlist_mutex +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xdeeac099 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xe8b13c92 cx25821_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xec886396 cx25821_dev_get +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xf2c4850c cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0x136ee62f vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0x868f5c06 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x529c000c cx88_video_mux +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x5522f70d cx8800_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xac4e53b9 cx88_user_ctrls +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xc379d796 cx88_set_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xcd7fc21a cx88_set_freq +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xdd6b0e1a cx88_enum_input +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xf5c44d20 cx88_get_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x066d3dbb cx8802_register_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x3e874fde cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x77c18350 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x7f769dd1 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x88de1452 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x8e834aa6 cx8802_get_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x08d0e1e2 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x0b764b99 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x0f00167c cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x1121a08f cx88_get_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x2b016ab7 cx88_vdev_init +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x416ca450 cx88_reset +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x603f8152 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x64f7084e cx88_risc_stopper +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x65236a4c cx88_core_put +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x68b8d213 cx88_set_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x7f1e9c7e cx88_free_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x92c5d26b cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xa1ab1fb2 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xafdcbb32 cx88_core_get +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb2134c2f cx88_sram_channels +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb229755c cx88_wakeup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xdaad6e2f cx88_newstation +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xe1188cfd cx88_core_irq +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xe6a06af0 cx88_ir_stop +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xe98b6c20 cx88_set_scale +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xf3294a81 cx88_shutdown +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xf96b08c6 cx88_ir_start +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xfbac5b8e cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0x15cd2bda em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0x805ec997 em28xx_register_extension +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x00a8d5c0 gspca_auto_gain_n_exposure +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x4b3b5fcb gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xaf7276b0 gspca_suspend +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xbbe68613 gspca_frame_add +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xd5faf758 gspca_dev_probe +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xe1000b2e gspca_disconnect +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xec5297e8 gspca_resume +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x0f4095cf ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x19595d20 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x3ec8ef49 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x44d2a6d5 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x4be230ef ivtv_vapi +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x4d46366d ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x634a2a01 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x9c859f37 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xb93432c3 ivtv_api +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xba57bfe7 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xd9deb14f ivtv_udma_setup +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xf5cb64a9 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x0ba02c01 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x12b1fc6c saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x14dfecc6 saa7134_boards +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x15be9ff2 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x305a1e3f saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x4ee0b4fb saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x56b258ba saa_dsp_writel +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x5a3a4490 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x6efcbbc2 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x7ee99120 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x838e4a77 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x95d97a6a saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xafe62b26 saa7134_ts_register +EXPORT_SYMBOL drivers/media/video/soc_camera 0x1187e66f soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/video/soc_camera 0x124c3ba0 soc_camera_host_register +EXPORT_SYMBOL drivers/media/video/soc_camera 0x3a86230a soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/video/soc_camera 0x79068df9 soc_camera_lock +EXPORT_SYMBOL drivers/media/video/soc_camera 0x7d392b1c soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/video/soc_camera 0xd41b1ffc soc_camera_unlock +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x433952ab soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x6951757b soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x85d52182 soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xcb4b96ae soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x4b18900f tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x8cf7168c tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0xcbce6f18 tm6000_register_extension +EXPORT_SYMBOL drivers/media/video/tveeprom 0x20d5fa71 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/video/tveeprom 0xc14afcea tveeprom_read +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x42c8e001 v4l2_ctrl_next +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x4ed5e0d7 v4l2_chip_match_host +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x50766d69 v4l2_ctrl_query_menu_valid_items +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x791ab099 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x7ba123f6 v4l2_chip_match_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x84d0a814 v4l2_chip_ident_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xc0699aac v4l2_ctrl_check +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xf052e6db v4l2_ctrl_query_menu +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x3c747b59 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x5ae84689 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0xedc11bb1 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x06ca7225 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x213ec27c videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x5e140eb8 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xd2536cf6 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xd89df2bf videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xf5d20fb7 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/video/videobuf2-core 0x11ecef60 vb2_querybuf +EXPORT_SYMBOL drivers/media/video/videodev 0x02b4d99c __video_register_device +EXPORT_SYMBOL drivers/media/video/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/video/videodev 0x11753be5 video_ioctl2 +EXPORT_SYMBOL drivers/media/video/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/video/videodev 0x12726da8 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/video/videodev 0x1cdc8bde v4l2_ctrl_add_event +EXPORT_SYMBOL drivers/media/video/videodev 0x1ee75606 video_usercopy +EXPORT_SYMBOL drivers/media/video/videodev 0x22c062a6 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/video/videodev 0x269097e9 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x2dcd2e5b v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x31c0eaea v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/video/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/video/videodev 0x43f9eca1 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/video/videodev 0x4a262d55 video_unregister_device +EXPORT_SYMBOL drivers/media/video/videodev 0x4d360cb9 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/video/videodev 0x533c16c0 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/video/videodev 0x5ebefe4b v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/video/videodev 0x6456a197 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x6db76e00 v4l2_ctrl_del_event +EXPORT_SYMBOL drivers/media/video/videodev 0x76ca6e43 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x7936d64f v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/video/videodev 0x8465ea27 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x8b7973d6 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x8f168525 video_devdata +EXPORT_SYMBOL drivers/media/video/videodev 0x91b1e615 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/video/videodev 0x96827c2a v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/video/videodev 0xa0761a68 v4l2_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0xad1bf5bf v4l2_ctrl_handler_init +EXPORT_SYMBOL drivers/media/video/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/video/videodev 0xbad8caa2 video_device_release_empty +EXPORT_SYMBOL drivers/media/video/videodev 0xc61ba318 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0xcb96bcf3 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/video/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/video/videodev 0xd4bf05c4 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/video/videodev 0xd99b07bf v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xda6dc93f v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/video/videodev 0xdb3229be v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xdb70329f v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xe12e18f8 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/video/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/video/videodev 0xe3719f5c v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/video/videodev 0xe734bd9c v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/video/videodev 0xe83006ee v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0xe9fd110f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/video/videodev 0xef001659 video_device_alloc +EXPORT_SYMBOL drivers/media/video/videodev 0xf09c0c86 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xf204a051 video_device_release +EXPORT_SYMBOL drivers/media/video/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/video/videodev 0xf4d3333c v4l2_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xf8b09388 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x1d82051d videocodec_attach +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x811f3d40 videocodec_register +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0xb55532fd videocodec_unregister +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0xbc3cfdb5 videocodec_detach +EXPORT_SYMBOL drivers/memstick/core/memstick 0x14b548ff memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x302954ad memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x41104f52 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x45f08dd0 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b86ea13 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8413406a memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x89d820de memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x94aa1501 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb1abefef memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc192b3e2 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdb48c73f memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf2121e53 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x02b5a42b mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x082ad457 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1418221f mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c462594 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ee235a6 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x583d6a9c mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f63fd36 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x61821c6b mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x697fd227 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71ad1604 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71c79c2a mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x798f46fd mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7cc5e8b3 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80c22bb5 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81dc2457 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x83cb3f52 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8951a1a7 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x946eded3 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x992e27b7 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9f19a52a mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9fbe9cbe mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf4e3440 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb4cb126b mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcb40ba60 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd5c7b53f mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe29973db mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf1a8d2da mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf279580c mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfa451f08 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03449291 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0e69b960 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1a9a3f10 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ca4ce43 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x21b9d999 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2b6907f3 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f32d7e3 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x480f6bdd mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x49c74fb6 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a341a01 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d22f041 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66173176 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x685a724d mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x88f51c72 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a98bfb0 mptscsih_proc_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c1cfeab mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x947bb4de mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x99f49586 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c0c644e mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c529c69 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb046db73 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd131343 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd2cf4c46 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd9bf8628 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xddadf6f6 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf9e97654 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfe59af0c mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x02472be3 i2o_msg_get_wait +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x05750a39 i2o_driver_notify_controller_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x062176b5 i2o_status_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x14de1534 i2o_driver_unregister +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x257911f7 i2o_event_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x25e2de00 i2o_iop_find_device +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x2a843bef i2o_dump_message +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x39b2aadc i2o_parm_field_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x4277995c i2o_driver_notify_device_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x7f618501 i2o_parm_issue +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x85e31080 i2o_parm_table_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x8b4a16cb i2o_driver_notify_controller_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x9457d742 i2o_msg_post_wait_mem +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xa9fa664c i2o_device_claim_release +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb4c00dcf i2o_controllers +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb540eed6 i2o_driver_notify_device_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xc997b1de i2o_driver_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xd6acf552 i2o_device_claim +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xd6fa128b i2o_exec_lct_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xe5c0fb6b i2o_find_iop +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x5dd0c063 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf1179226 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0a0f0fa1 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19f1f7a8 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x304d2b09 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x648f3e82 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c8289a3 mc13xxx_irq_request_nounmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x81e0f888 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x908760bc mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9bc42b70 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa83c26ee mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad06449f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb3dae053 mc13xxx_irq_ack +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc60a9247 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdc5799c mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/tps6105x 0x4d46950a tps6105x_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0xb7b839dc tps6105x_mask_and_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0xecbc9617 tps6105x_get +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x48e09d6d ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xc22b7507 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xeafaf244 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x31a38512 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x67ca56a7 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x3b2aac15 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xb8a27e82 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x05831806 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2c10eaf6 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x621147b7 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x64a3d58d tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x973936d6 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa23a1f99 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xabd45aca tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xacb318b4 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xe31976a0 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xfdbe77b0 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xfe4aa2d7 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xffc3349b tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x1c702969 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0ad8049a cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb3c299fa cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb75ba181 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x47c3b38f unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4f7f457c do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb6f76ea7 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xe64fc9dd register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x9abc9a63 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x2271d167 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x2071646c simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x5cb7424c mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0xec15586c mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/nand 0x3c6d810a nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5f62ffcf nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x78399c4e nand_default_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x9efb2913 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa318b13e nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xcd491962 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xee83a17c nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x10b3a7c8 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x6c823167 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xbb0de526 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x2fff9163 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x63da1c6c nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x836bdb72 nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x4aeb6d48 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x75f1ddc9 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x84c8071c flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xac40b97b onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3635d79b arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x36f7e467 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x46b56eb6 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6d0990d9 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x828c58ce arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x9d35b7cd alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa7411e7d arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcdc3d4b0 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcf3c3d03 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdef3b93c arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x65edc246 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xac0b4776 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xeded4829 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0f7c49c0 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x176c03f8 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2712b7d5 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4e7a7750 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x519c4e71 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5f70a70f NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x82c0d21e ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9279fff1 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb382e467 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf40351de __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x30a72d13 NS8390p_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x3c1d898b eip_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x4f998f9e eip_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x90338afd eip_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x9ba47035 eip_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xa2d00da1 __alloc_eip_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xa71d1cfa eip_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xc4912f56 eip_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xc76cc1ea eip_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xffff22ca eip_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2 0xce9d31eb bnx2_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x01810c69 bnx2x_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xc87da351 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x10928b8c cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x155cc716 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1845f486 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x21bb8c5d t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x343f0a67 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x368c6660 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3777a410 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3fdd3b7d t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x527b8894 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6be2c256 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6fd349d2 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa5431b93 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xca7fc83e cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xccfcdca5 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd0b32bb3 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfe802ed2 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x12c1291b cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18044af3 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2510844f cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c3719fd cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b78aa04 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57e0a2f1 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5dc0cf1b cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x67bb6974 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x680d264f cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1620cf5 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd4f18f3 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf05b34f cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcda683e8 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd3883555 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xdaa06b44 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb28c104 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf9d7a276 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d66704c mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabe660cd mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6124d6e mlx4_release_eq +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x27f3da18 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3521ee33 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa4a9ea0e hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfa8aa8e1 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xfe17ab12 hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2d5a6f86 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x386d27d0 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x38b07adc sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4680fffe sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7de52633 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x89f7fa15 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb15bed5b sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc25afb66 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdaba2bae sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe97134af sirdev_write_complete +EXPORT_SYMBOL drivers/net/mdio 0x0f934475 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xb34a7575 mdio45_ethtool_spauseparam_an +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2a20aca4 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x83684ee7 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6c2fb717 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xbdd8f44b pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0b3b5a8 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x07bda0cf sungem_phy_probe +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xbcd23793 tms380tr_interrupt +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xd2328794 tms380tr_wait +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xd77bee68 tms380tr_close +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xe30f8e5f tmsdev_init +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xe60fba48 tmsdev_term +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xef81750b tms380tr_netdev_ops +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xf37a2231 tms380tr_open +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x38da4725 cycx_intr +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x62be23ea cycx_setup +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x66a4c4e6 cycx_down +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x968458a6 cycx_peek +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xb6f383de cycx_poke +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xfe7cd576 cycx_exec +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0ea24a0a hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x22f5a57d unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x41db1ca1 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x45f887bc alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4d963cbc hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5750a93a hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6097e41c hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x84c23106 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa6df6ba9 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe3b1f524 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xfc7578cc attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port +EXPORT_SYMBOL drivers/net/wan/z85230 0x3faf0cd8 z8530_queue_xmit +EXPORT_SYMBOL drivers/net/wan/z85230 0x59806465 z8530_sync_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream +EXPORT_SYMBOL drivers/net/wan/z85230 0x6813fcb5 z8530_sync_dma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x69680ba2 z8530_sync +EXPORT_SYMBOL drivers/net/wan/z85230 0x74989378 z8530_sync_txdma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xa0c957e1 z8530_shutdown +EXPORT_SYMBOL drivers/net/wan/z85230 0xa21e659a z8530_sync_txdma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xa3caab90 z8530_null_rx +EXPORT_SYMBOL drivers/net/wan/z85230 0xb806f565 z8530_sync_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt +EXPORT_SYMBOL drivers/net/wan/z85230 0xdf83a3b8 z8530_sync_dma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xe0ef53e0 z8530_nop +EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 +EXPORT_SYMBOL drivers/net/wan/z85230 0xe529a5c8 z8530_init +EXPORT_SYMBOL drivers/net/wan/z85230 0xe5d27a62 z8530_channel_load +EXPORT_SYMBOL drivers/net/wan/z85230 0xf4bc72fc z8530_describe +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x777ec34a i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x20608875 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x52641d6f reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x54d1264f init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x148b09b4 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3d5b8fdd ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e2481d5 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x64cfedcd ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x804f9079 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x900d9db9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9a7819d6 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1a9f65b ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcd9b361f ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcf1481bf ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xda484317 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdbe912c3 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x043e0a7f ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40d3a2e4 ath9k_cmn_update_ichannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5eec57de ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc9cfd20c ath9k_cmn_get_curchannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xea978d50 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf59eadf3 ath9k_cmn_padpos +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x00bee541 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x023c5cad ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02e5de8f ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a112b26 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b661b72 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cea0ab4 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f4da452 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fb49932 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10ccda36 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1248ea04 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12dad801 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1389454c ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13ef29bd ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18daf067 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x269e2818 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a2fd425 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x370ff6d0 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39014fee ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x395c40b4 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c82a681 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3dd23109 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41f45897 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45c61f0d ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a938012 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4becbd03 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c8dd50c ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51994364 ath9k_hw_htc_resetinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55011b2d ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5589f0d8 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55f8fe9c ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b8abeca ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cc2a234 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x627ceff1 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65ef70fe ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b00e159 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6bb5ee81 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cf85018 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d9c8747 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6de80fac ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7212957d ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d2713b6 ath9k_hw_proc_mib_event +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e41f26f ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fc8b853 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82bf1f29 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83758a30 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8668a4c0 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8abe7dc5 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e07c3e5 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92f17775 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x933f90e2 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98b792f6 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99ec9d24 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b051d68 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f6a3bde ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1bcbd8c ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa38f6ff3 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3a2bbef ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaa325d4c ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad284d1f ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae0b9322 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaeefc9ed ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0db84ea ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1e43707 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2b627a6 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5b2b4ca ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7255ff4 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9a98608 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc20a486 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdf9d50e ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbe7f3200 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbeb2b4c1 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbeb2dc47 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc055bc94 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc165d5ef ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc467aa2f ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc555cbb8 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc963b5e4 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9c3d01f ath9k_hw_getdefantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9d33db8 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9f4f166 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb9977e4 ath9k_hw_gettxintrtxqs +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0f49036 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd124e377 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6ee519d ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe141e757 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf29ed419 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4cfb5d3 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc723209 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/atmel 0x075709c7 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x3f1ef84e stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xfd0ea8b5 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x9e1ff31f brcmf_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0xa095fb87 brcmf_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x02f820c5 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x35bf9555 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4ad4bbba brcmu_pktfrombuf +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x570114e0 brcmu_pkttotlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5a0284a6 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5daad622 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x80b20cbc brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x86f81eb6 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9d71f276 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa000a041 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa0d0e73c brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc8421f2b brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe0b5a61f brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xee5e3c85 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x18491c85 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x23de92fa hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2651a479 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2fb19e7a hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3f884532 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4281fad3 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5457e23a hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5c37523b hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5cb9bfc1 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5dd197e6 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x68f9d494 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9db6c74a hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa1d983c4 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa9e0e02b hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xac274f92 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaef03d8b hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc5348119 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc54684c9 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcf18911f hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd7f67de9 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe5f028b6 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe6a54b13 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe6f983c0 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeac75b37 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf4a7c902 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x080da609 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1969885d libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x197c2fc0 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2cfa3207 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2d064454 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3cdb21e4 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4586f01f libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x57048e21 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5b90adbd libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5d958eba libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x606a7d10 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x82821b9f libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x86b40a69 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x928a1167 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa984b3ad libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbe661d6d free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe3244e95 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xed969a94 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xee83c8ce libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf2da6c8a libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf49570d3 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0074a389 iwl_legacy_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0111c93d iwl_legacy_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x021ff150 iwl_legacy_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x02d032af iwl_legacy_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x037d7562 iwl_legacy_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x07d0eb08 iwl_legacy_pci_resume +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x086dd138 iwl_legacy_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x133431ec iwl_legacy_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x16776047 iwl_legacy_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1bb9f8d0 iwl_legacy_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x21c1f35f iwl_legacy_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x226ef702 iwl_legacy_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x242000d8 iwl_legacy_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2422cfaa iwl_legacy_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x254e1fff iwl_legacy_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2a2ebe87 iwl_legacy_rx_pm_debug_statistics_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2d6b536f iwl_legacy_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x34788ab9 iwl_legacy_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x35d047cb iwl_legacy_get_free_ucode_key_index +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x36f429a9 iwl_legacy_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x384840f5 iwl_legacy_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3dc54359 iwl_legacy_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3ed683da iwl_legacy_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4087f845 iwl_legacy_rx_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x440b01b1 iwl_legacy_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x46bed970 iwl_legacy_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4727b077 iwl_legacy_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x52f80659 iwl_legacy_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x54d6a7e0 iwl_legacy_send_statistics_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5974586a iwl_legacy_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5daeff16 iwl_legacy_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x656f67e0 iwlegacy_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x669641f7 iwl_legacy_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x67b329bf iwl_legacy_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x67ea72e4 iwl_legacy_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6af0bd2e iwl_legacy_rx_pm_sleep_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6d6d8460 iwl_legacy_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x701421c3 iwl_legacy_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x71fa112f iwl_legacy_rx_reply_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x79955323 iwl_legacy_alloc_all +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7b42166e iwl_legacy_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7c7cf5c3 iwl_legacy_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7d4a4d59 iwl_legacy_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x81b342f0 iwl_legacy_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x823eb074 iwl_legacy_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8779f422 iwl_legacy_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x878cb873 iwl_legacy_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x885e1ebc iwl_legacy_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8a15a592 iwl_legacy_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8a88bc32 iwl_legacy_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8e2122eb iwl_legacy_rx_spectrum_measure_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8e82b840 iwl_legacy_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8f0cb461 iwl_legacy_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8fe01599 iwl_legacy_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x91116a56 iwl_legacy_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x966595f7 iwl_legacy_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x973868c7 iwl_legacy_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x97992e2e iwl_legacy_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9c69022e iwl_legacy_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9fffe236 iwl_legacy_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa280a778 iwl_legacy_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa618c0c2 iwl_legacy_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa71aac71 iwl_legacy_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xabe48768 iwl_legacy_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xac78cbb6 iwl_legacy_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xae019207 iwlegacy_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xae9bc2f0 iwl_legacy_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb2e7c79e iwl_legacy_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb3e3ab35 iwl_legacy_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb6c7a4bc iwl_legacy_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb766fa6a iwl_legacy_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb9a03ba3 iwl_legacy_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xbf12f709 iwl_legacy_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc0795e1c iwl_legacy_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xcbbbd91c iwl_legacy_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xce43498d iwl_legacy_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xcf94a196 iwl_legacy_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd0b3ef74 iwl_legacy_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd243073a iwl_legacy_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd4dc9945 iwl_legacy_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd695c4d2 iwl_legacy_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe223eea0 iwl_legacy_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe2f50e6c iwl_legacy_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe5b01dd1 iwl_legacy_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe6df1802 iwl_legacy_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe811ff83 iwl_legacy_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf3e63e53 iwl_legacy_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf5dc1cde iwl_legacy_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf71616c2 iwl_legacy_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf7cd8677 iwl_legacy_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf9588cfa iwl_legacy_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfd9f12ce iwl_legacy_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xff2d1e33 iwl_legacy_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x60faee03 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x61c5e32e __tracepoint_iwlwifi_dev_tx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x65489f9c __tracepoint_iwlwifi_dev_rx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x726d9621 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb6c345da __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcc312d73 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd1d62dbf __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd915418d __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xf7769239 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x013af531 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1776174a __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1ad19966 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1ce34e8f orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1db055cc orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x324d4df3 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3f790559 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x45a37ccd __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4b297911 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5626711c free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5b007b6f orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bc2c4fc orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x75bf23e0 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x91e635cb orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9d0b87b4 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9de1cd8c orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa437e0f9 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x00f40ebe rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x0454c6b0 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x0d9077e2 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x13014404 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1b3b0364 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x26905588 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x283921de rtl92c_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x32655d03 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x389c1465 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3f5f9599 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x42d39e54 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x42d50134 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5a6f9a50 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5de85883 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6030c14d rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x63993a4b rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x66519b7b rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x683ca426 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x69b92473 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6b6688e8 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6d67ca2c rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7178b437 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x74d26347 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x782b4074 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x8c2f2b5c rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x8c93a445 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x9347b48a _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x95dd9c3e _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa036718f _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa7d78890 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xaeef6fc3 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb3ad61e9 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xba7c4faf rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc78a3110 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd123d8af _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd216f8fd _rtl92c_phy_dbm_to_txpwr_Idx +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd27ab168 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd3145d93 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xde671362 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe2e6feff _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xede56812 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xfa66ad3a rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x0b57ac9d rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x0b621dbd rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x18727316 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x1cdc2427 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x33315382 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x347eed2c rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x3d514d49 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x4084b1b4 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x47915903 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x492bf7ee rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x4adf81a7 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x5407387e rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x8cf487f8 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xa11d5412 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xa3155d67 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xc2775a5c rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xc6c2fba5 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd0425dd6 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd4517e43 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd54458e2 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xf0e7b3a2 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xfced2b5b rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/parport/parport 0x1011ec0e parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x31619db4 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x31944631 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x374620ba parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x46cd49dc parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5dc41606 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5e68638e parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x6ddacd5f parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x7f06793c parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x8a493f4e parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x8d9e4768 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x92b314fe parport_read +EXPORT_SYMBOL drivers/parport/parport 0x92b5f6a1 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x932932d6 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xa17e55ae parport_write +EXPORT_SYMBOL drivers/parport/parport 0xa7b098f4 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xac490341 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xaeba26ca parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xafcf03d3 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xb05a34c5 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xb1fbf9ff parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb7da2b52 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xbabc8d05 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xc172e714 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xc96fa1b8 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xcae217f2 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xd2df90ac parport_release +EXPORT_SYMBOL drivers/parport/parport 0xd55bf5fd parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xedd2b259 parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xff5ed6fd parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport_pc 0x07523e0a parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xe93cfce5 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x261bb5e9 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x491dc07f pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x737c7910 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7e4a2731 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8fc135c1 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9134178f pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9744b986 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9ba453da pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9be277df pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb29f2cd4 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb4756672 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb6622759 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbc60b464 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd7a5bcfb pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe9ae176d pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf12a358d pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf851c496 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfb19051b pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfd8a6daf pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1548a4e1 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x265262dc pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4a372133 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6e4b31c6 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7b20dcd7 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7de12dc8 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8b7d9a8c pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9226b203 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaa2a8638 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbbca8bdd pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc9cd0d92 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xb7d86b95 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xfd1cf6ba pccard_nonstatic_ops +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x268c75ed pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x5f8ac523 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xb780a1ea pps_unregister_source +EXPORT_SYMBOL drivers/scsi/53c700 0x2800ffd6 NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0xe5ad7ad1 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x115b3c55 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4d4a8461 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x52afd645 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5eb3023c fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7b9f7932 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9b41dad5 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb66fc1b5 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd3b4c6a1 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdbfb9258 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00271e22 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00588309 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02c2f254 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x049fd266 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x088a3f72 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b2b4a65 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1294fadc fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a61bd09 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b6f9986 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x24a04076 fc_change_queue_type +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x25105bda fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x255676a6 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26da240c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c33c630 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ff5cf84 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x352c5f69 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36d88446 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40403f3a fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e48d9f5 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51c8311c fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x56fb7aec fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b4bee3e fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6810556f fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x68d097c7 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b890f9b fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6febc2e6 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cb68d9d fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ffda3d8 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96a6af9d fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99a01dc0 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa425e7ab fc_change_queue_depth +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7c1f678 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacf9699c fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1ec219b fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb45c9185 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5028714 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb84f69e3 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb92aec16 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9c48cf4 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc180af5 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc0824385 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc09da802 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca4e4ed7 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccee18ac fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf626950 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf5192b1 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe2ac0678 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea186a8c _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfba08755 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfdec84e4 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0xc44c8aeb mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x05069a01 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x08090f0c osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x08479cfb osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0e6f0529 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x173f26ac osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x216f9ddc osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2205acb0 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2274e130 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x252f8103 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x32fff3a7 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3a37ce78 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5055c305 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6e269e1a osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7a7e1e2c osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x83488fc8 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x89f2dc1c osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8c31be62 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9232db06 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x974f98f2 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9e08f067 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ff974e6 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa3c84e88 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xad32cada osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb3529075 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb60ba2c5 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb972ade7 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbabd3815 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcbafa9db osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd0df3246 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd8422555 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe838ef22 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xec6548d2 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xed06322c osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf8eed49b osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfd044adf osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff9a332f osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2094e27d osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x647c3742 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6cd1ebd3 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xb488e435 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xda05841d osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xf7978d53 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x06fc709d qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x117d4dba qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3e78edcf qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3eba252f qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x406c8a12 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x92782455 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x1be50c3e raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xd484499f raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xfedf3bb9 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0593a620 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x096f0a70 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1596b702 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2562666d fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x31c89804 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3e669964 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x68394921 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8c7fa9bf fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xacf3d2cc fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc21a7f94 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc604e285 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc9628d50 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe1c703f8 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x16194847 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22410316 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e720224 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x50a87a10 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5850c8ec sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5883b015 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5b4639b9 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x606b9ebd sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7bb404d3 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7c6232e5 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7d327b9e sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x882d7aaa scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8bc168c6 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92f1ee8d sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa20c5f8c sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa8ead3d8 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad789cf3 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce25a7d7 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xceac5102 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd8192d43 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe03bddb3 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe3dd1847 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xea21017d scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xed62d5cf sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8413fee sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf842ea43 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6f35b822 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x7d4c1ef4 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xaaf24cfa spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc520ebd6 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xccb291f0 spi_attach_transport +EXPORT_SYMBOL drivers/ssb/ssb 0x00225952 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x02aeaa51 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x28b5163c ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x2aa0cf80 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x3482a1d7 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x4724fa10 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x58a017ad ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x5a9cf4c6 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x6bbce8fc ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6cce48eb ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x76937bfc ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x8d52d88f ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x9f62a533 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xa17d8735 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xb0a16991 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xb9bcf28e __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcbfa736b ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xd32b4f1c ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe0e20191 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xee7f4eca ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xf3fb13fc ssb_bus_pcibus_register +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x0ca5266c comedi_driver_register +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x1e9a6a24 comedi_driver_unregister +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x209f79b7 comedi_buf_write_alloc +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x2f2b6ac9 comedi_buf_read_alloc +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x52b7250c comedi_error +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x593b9748 comedi_get_subdevice_runflags +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x5bb7e929 comedi_buf_get +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x96fb476c comedi_event +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x9b1311f6 comedi_buf_put +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x9e90010f comedi_buf_read_n_available +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xa0e42e46 comedi_buf_memcpy_to +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xd71b898d comedi_check_chanlist +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xe55fa0f3 comedi_buf_read_free +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xe6f7e0de comedi_buf_write_free +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xee8c0187 comedi_buf_memcpy_from +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x186bc917 subdev_8255_init +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x6a89e3a8 subdev_8255_cleanup +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x6ac7bd73 subdev_8255_init_irq +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0xc006e252 subdev_8255_interrupt +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0x685d3224 cfc_read_array_from_buffer +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0x91f8e881 cfc_write_array_to_buffer +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0xff2bdf18 cfc_handle_events +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x153a5d23 mite_sync_input_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x1e266f82 mite_prep_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x29a48d89 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x2d2d128e mite_sync_output_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x35a1a87d mite_bytes_written_to_memory_ub +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x3872bed6 mite_release_channel +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x3c36c262 mite_bytes_in_transit +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x3f4aacc5 mite_unsetup +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x4cd6ce65 mite_get_status +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x4f803b1e mite_buf_change +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x5e9f4296 mite_dma_arm +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x6317cd71 mite_setup +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x7e6811ac mite_dma_disarm +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x956514a0 mite_setup2 +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x99b087c8 mite_dma_tcr +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xab0d7731 mite_done +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xc32abd5e mite_bytes_read_from_memory_lb +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xdf2f98aa mite_bytes_written_to_memory_lb +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xeabf0155 mite_devices +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xf9cfd084 mite_request_channel_in_range +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xfb3ba025 mite_list_devices +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0x21dbcf86 subdev_700_cleanup +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0x41a3ff04 subdev_700_interrupt +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0x9c20d29d subdev_700_init_irq +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0xacc84477 subdev_700_init +EXPORT_SYMBOL drivers/staging/comedi/drivers/pcm_common 0x90289f57 comedi_pcm_cmdtest +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x6dde51d2 comedi_find_subdevice_by_type +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x9864f6e7 comedi_open +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x9aea4b26 comedi_get_n_channels +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xb8876839 comedi_dio_config +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xb956a88e comedi_dio_bitfield +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xc82c0c90 comedi_close +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x071c3806 adt7316_enable +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x2cc8e0bb adt7316_remove +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x9aff062a adt7316_disable +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xe4939729 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x01668cb1 iio_trigger_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x056d691b iio_trigger_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x08dfba26 iio_allocate_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x1cc8dccb iio_trigger_notify_done +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x1f539108 iio_push_event +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2190c61e iio_bus_type +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2a836a65 iio_free_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4b6f1ccb iio_buffer_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x5cb858c6 iio_buffer_init +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x5e9dfb11 iio_read_const_attr +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x8033d8bb iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x8492465f iio_buffer_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x909e4127 iio_buffer_write_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x90afee54 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x910bccc7 iio_allocate_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x94b338b5 iio_device_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xaf1d2e96 iio_device_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb8a12686 iio_buffer_read_bytes_per_datum +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xbd28904d iio_trigger_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xc1a42f8e iio_buffer_read_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xca07442d iio_buffer_store_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xe1b54a38 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xe673ec7b iio_buffer_show_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf2d5aa2e iio_sw_buffer_preenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf93b2e03 iio_free_device +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x0dbb3e73 kfifo_access_funcs +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x886819e8 iio_kfifo_allocate +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xc021cbdd iio_kfifo_free +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdb75b561 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe1d859d4 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x1f1a31b0 ring_sw_access_funcs +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x31aac87b iio_sw_rb_allocate +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x738e0e3d iio_sw_rb_free +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x6f076d39 cxd2099_attach +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x61f82aec go7007_snd_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x6c6a13f5 go7007_boot_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x7c637799 go7007_snd_init +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x880ab7e9 go7007_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x983d2c4e go7007_alloc +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xbd8b6809 go7007_read_addr +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xd4b063d5 go7007_parse_video_stream +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xdb00f36f go7007_read_interrupt +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xdeadf0f0 go7007_register_encoder +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01e637f9 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x058a0eb0 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ded5f85 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1727497c ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1b985564 ieee80211_send_probe_requests_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c5f43b2 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20238f74 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20ff749b ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21402648 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e020aa8 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f081605 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x32cbe76c ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cbb989d ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e4d6fa3 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40f5835d ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4573784c ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x45d59c16 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e3f0d7c ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50083655 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50440828 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x561b23da DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56cd05d5 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57c54e3d Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5cd4f866 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65198b35 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a5c50b4 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c32c8b5 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72b40d3a ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x774272ab ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8aded5f1 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d4d494b ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8d7f916c ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x985141c2 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9aff01a0 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f08978d ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa051c222 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3a93c19 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6400574 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7492365 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad9465a6 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0a173df HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb53b9602 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb842d373 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8b99fac ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc0e183b ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc282f02f SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc90ac36e ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd02b61f8 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe185b845 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5a7baa3 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6da31d8 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7141078 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf148f5e8 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3d722be ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf94e2199 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff7d2801 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/vme/vme 0x00d7e722 vme_lm_count +EXPORT_SYMBOL drivers/staging/vme/vme 0x04dec9d2 vme_slot_get +EXPORT_SYMBOL drivers/staging/vme/vme 0x072f901c vme_master_rmw +EXPORT_SYMBOL drivers/staging/vme/vme 0x08d92a8b vme_master_request +EXPORT_SYMBOL drivers/staging/vme/vme 0x0e10859d vme_lm_get +EXPORT_SYMBOL drivers/staging/vme/vme 0x0ec5babe vme_dma_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x251b9ed8 vme_slave_set +EXPORT_SYMBOL drivers/staging/vme/vme 0x3c8a6c7b vme_dma_list_add +EXPORT_SYMBOL drivers/staging/vme/vme 0x3d1af350 vme_dma_pci_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0x3f68d4cf vme_lm_set +EXPORT_SYMBOL drivers/staging/vme/vme 0x48b99a13 vme_lm_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x58312ee1 vme_slave_request +EXPORT_SYMBOL drivers/staging/vme/vme 0x60e6d0a4 vme_irq_request +EXPORT_SYMBOL drivers/staging/vme/vme 0x6380a3c7 vme_register_bridge +EXPORT_SYMBOL drivers/staging/vme/vme 0x66227eae vme_alloc_consistent +EXPORT_SYMBOL drivers/staging/vme/vme 0x76bab4d4 vme_master_set +EXPORT_SYMBOL drivers/staging/vme/vme 0x7797a741 vme_dma_vme_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0x7cf35220 vme_master_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x7fde2edb vme_master_read +EXPORT_SYMBOL drivers/staging/vme/vme 0x8d541599 vme_unregister_bridge +EXPORT_SYMBOL drivers/staging/vme/vme 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL drivers/staging/vme/vme 0x93dff61f vme_slave_get +EXPORT_SYMBOL drivers/staging/vme/vme 0x94b2590f vme_free_consistent +EXPORT_SYMBOL drivers/staging/vme/vme 0x95bd6e5e vme_unregister_driver +EXPORT_SYMBOL drivers/staging/vme/vme 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL drivers/staging/vme/vme 0xa33ffb94 vme_dma_list_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xa6c76bd6 vme_irq_generate +EXPORT_SYMBOL drivers/staging/vme/vme 0xad489866 vme_bus_type +EXPORT_SYMBOL drivers/staging/vme/vme 0xad726ace vme_dma_list_exec +EXPORT_SYMBOL drivers/staging/vme/vme 0xc8352002 vme_dma_pattern_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0xcaebdaf4 vme_dma_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xd5ee7e31 vme_irq_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xd797b9a5 vme_master_write +EXPORT_SYMBOL drivers/staging/vme/vme 0xdf1517f3 vme_lm_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xdff905e5 vme_slave_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xe60cbb2f vme_master_get +EXPORT_SYMBOL drivers/staging/vme/vme 0xe693a6ce vme_get_size +EXPORT_SYMBOL drivers/staging/vme/vme 0xe9283f6f vme_irq_handler +EXPORT_SYMBOL drivers/staging/vme/vme 0xeccbeafc vme_dma_free_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0xf23bcb37 vme_register_driver +EXPORT_SYMBOL drivers/staging/vme/vme 0xff8869d1 vme_new_dma_list +EXPORT_SYMBOL drivers/target/target_core_mod 0x01dff5a3 transport_do_task_sg_chain +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x040daa42 transport_subsystem_release +EXPORT_SYMBOL drivers/target/target_core_mod 0x08d34e84 fc_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x09d9e0f7 target_fabric_configfs_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x09da87c8 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a638643 transport_init_queue_obj +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f74d08a fc_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x13484500 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x30360841 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x30fadc8d core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x34ab45a2 transport_generic_process_write +EXPORT_SYMBOL drivers/target/target_core_mod 0x351dacd8 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x35a86635 transport_complete_sync_cache +EXPORT_SYMBOL drivers/target/target_core_mod 0x41e439f4 iscsi_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x43bb623d transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x45d2a80e sas_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x46b75f51 target_get_task_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4dc4e468 iscsi_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x507560b3 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x51371b77 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fc25f7f sas_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x62b19fb6 transport_generic_handle_cdb_map +EXPORT_SYMBOL drivers/target/target_core_mod 0x6cc8deeb __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6febe576 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x70fe2518 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ebf8375 transport_add_device_to_core_hba +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f359c03 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x80adf6a4 sas_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x81956f13 core_tpg_clear_object_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x868811bc target_fabric_configfs_free +EXPORT_SYMBOL drivers/target/target_core_mod 0x8eeeb48e sas_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x93363d09 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x93524749 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x936122bb transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9515b4dc iscsi_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x994f8c17 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa16df6a5 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xa27de196 core_tpg_del_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa54438e7 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5b75d01 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xa89d421d iscsi_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xa903aa14 fc_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa6c6011 target_splice_sess_cmd_list +EXPORT_SYMBOL drivers/target/target_core_mod 0xadb9181e transport_subsystem_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf8ec41e transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xafe15cea core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0012fd2 target_fabric_configfs_init +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5eee341 transport_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb89c38f4 core_tpg_add_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbfe2968f transport_generic_allocate_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xc121bb4e transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3aa122d target_fabric_configfs_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xcdf42622 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xd174b758 transport_generic_handle_data +EXPORT_SYMBOL drivers/target/target_core_mod 0xdcd13693 fc_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xe09a2a28 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4d85f4e transport_complete_task +EXPORT_SYMBOL drivers/target/target_core_mod 0xeac4b942 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xeedd629a transport_generic_map_mem_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc118f72 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xff25a18b transport_free_session +EXPORT_SYMBOL drivers/telephony/ixj 0xc52dfe4d ixj_pcmcia_probe +EXPORT_SYMBOL drivers/telephony/phonedev 0x49465eee phone_unregister_device +EXPORT_SYMBOL drivers/telephony/phonedev 0xca501251 phone_register_device +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xf8c17639 sl811h_driver +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xa64a4cea usb_nop_xceiv_unregister +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xd0e43207 usb_nop_xceiv_register +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x30006de2 usb_wwan_disconnect +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x340a2501 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x340aba65 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4bc9bd6a usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x54219cd0 usb_wwan_set_termios +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x698ded73 usb_wwan_release +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x71875c75 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x82a4e4db usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb742692f usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xba3af515 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc6dfbc9f usb_wwan_startup +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xceed53d9 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd332f1b2 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe558653d usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf89d9601 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9322b6a5 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd429f3bc usb_serial_resume +EXPORT_SYMBOL drivers/video/backlight/generic_bl 0x366d19ef genericbl_limit_intensity +EXPORT_SYMBOL drivers/video/backlight/lcd 0x3742ca43 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x87d7028f lcd_device_register +EXPORT_SYMBOL drivers/video/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/cyber2000fb 0x75714386 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/display/display 0x2d4cae31 display_device_unregister +EXPORT_SYMBOL drivers/video/display/display 0x865ded57 display_device_register +EXPORT_SYMBOL drivers/video/macmodes 0x08ed0b62 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/macmodes 0x83fa9036 mac_find_mode +EXPORT_SYMBOL drivers/video/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x159fe705 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x1a6b3ff3 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x3d7a800d g450_mnp2f +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x39b055cb DAC1064_global_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x95911f73 matrox_mystique +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xac514cbc DAC1064_global_restore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xc2c17d64 matrox_G100 +EXPORT_SYMBOL drivers/video/matrox/matroxfb_Ti3026 0xdac69c10 matrox_millennium +EXPORT_SYMBOL drivers/video/matrox/matroxfb_accel 0x4ddd8461 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x25514b3e matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x42a22cbd matroxfb_register_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x89490210 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0xd3f1bb4e matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0x02fa2a4d matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0xfde81fc9 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x2ec7cfb1 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x3462ae3f matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x7d906237 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x8a94a1e9 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xabd8e427 matroxfb_var2my +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xfbccaf0a matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/mb862xx/mb862xxfb 0xa86f90be mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/output 0x1f086136 video_output_register +EXPORT_SYMBOL drivers/video/output 0x9624e8f0 video_output_unregister +EXPORT_SYMBOL drivers/video/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/svgalib 0x00243152 svga_tilecursor +EXPORT_SYMBOL drivers/video/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/svgalib 0x1b95c56a svga_check_timings +EXPORT_SYMBOL drivers/video/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/svgalib 0x31bb03ca svga_tileblit +EXPORT_SYMBOL drivers/video/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/svgalib 0x549b03a1 svga_set_timings +EXPORT_SYMBOL drivers/video/svgalib 0x632fc75a svga_get_caps +EXPORT_SYMBOL drivers/video/svgalib 0x65d44370 svga_tilefill +EXPORT_SYMBOL drivers/video/svgalib 0x6fe66b64 svga_settile +EXPORT_SYMBOL drivers/video/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/svgalib 0xac0a88a1 svga_tilecopy +EXPORT_SYMBOL drivers/video/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/svgalib 0xec83c473 svga_match_format +EXPORT_SYMBOL drivers/video/svgalib 0xedd63213 svga_get_tilemax +EXPORT_SYMBOL drivers/video/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/syscopyarea 0xabbf7220 sys_copyarea +EXPORT_SYMBOL drivers/video/sysfillrect 0x6144b666 sys_fillrect +EXPORT_SYMBOL drivers/video/sysimgblt 0x3a7b5cdc sys_imageblit +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x148ed617 w1_bq27000_write +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x4d2c043c w1_bq27000_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x239cd103 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x8fa1cea8 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc251007f w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xd5c554fc w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x053f0604 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x62c11be7 w1_ds2780_io_nolock +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x75f8711b w1_ds2780_io +EXPORT_SYMBOL drivers/w1/wire 0x08d64c3a w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x3e5126e9 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x3f808f41 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf60ccda1 w1_add_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x672c9d44 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa8d6daac iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xd0efe320 iTCO_vendor_pre_stop +EXPORT_SYMBOL fs/configfs/configfs 0x080b70c3 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x08987864 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x12780397 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x32546054 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x354100c3 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x4e97abd0 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x70410f6d config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x93c0c7bd config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xac8a910d config_item_init +EXPORT_SYMBOL fs/configfs/configfs 0xafa43599 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xaff44656 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xe2c0b54f configfs_register_subsystem +EXPORT_SYMBOL fs/exofs/libore 0x011500ad ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x1211508f ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x18ad6d80 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x1941130b ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x1e16324e extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x525ac190 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x700e3541 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x7f8b4deb ore_create +EXPORT_SYMBOL fs/exofs/libore 0x88587a45 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xbca5630c ore_write +EXPORT_SYMBOL fs/exofs/libore 0xf84fccd5 ore_check_io +EXPORT_SYMBOL fs/fscache/fscache 0x03b2490b fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x03e30a1c __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x049a092b fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x07d9b576 fscache_wait_bit_interruptible +EXPORT_SYMBOL fs/fscache/fscache 0x12f4e9de __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x18706852 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x2ea14e05 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x2ebd3f10 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x3fc23318 fscache_wait_bit +EXPORT_SYMBOL fs/fscache/fscache 0x4db16b07 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4ea1f15d __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x730c36be __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x740dfa98 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x86f8894f fscache_object_states +EXPORT_SYMBOL fs/fscache/fscache 0x887e7f2b __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8bccdcb3 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x9164d5a1 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x939b257f __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x94c1a774 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x9e0f0b4c fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xa8d2dc59 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xae9ca844 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xaf0d3f15 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xc975b9af fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xcda46ee3 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xd65d4edc fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xd875a005 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xdbab6393 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xde4fc950 fscache_object_work_func +EXPORT_SYMBOL fs/fscache/fscache 0xf185544a fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf6f7668a fscache_fsdef_index +EXPORT_SYMBOL fs/nfsd/nfsd 0x0c8d6829 nfs4_acl_nfsv4_to_posix +EXPORT_SYMBOL fs/nfsd/nfsd 0x2095976a nfs4_acl_new +EXPORT_SYMBOL fs/nfsd/nfsd 0x35e33c1e nfs4_acl_write_who +EXPORT_SYMBOL fs/nfsd/nfsd 0x5a157ae4 nfs4_acl_get_whotype +EXPORT_SYMBOL fs/nfsd/nfsd 0xcbb738be nfs4_acl_posix_to_nfsv4 +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x2f4e385e qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x68de8ce2 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa2a710e7 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xba2f00c5 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf3d81b58 qtree_release_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0xa7587646 crc7 +EXPORT_SYMBOL lib/crc7 0xd80c3603 crc7_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0b32de39 lc_del +EXPORT_SYMBOL lib/lru_cache 0x210f1ee2 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2646306c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x2b2226bb lc_get +EXPORT_SYMBOL lib/lru_cache 0x529f72c2 lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x5e941862 lc_reset +EXPORT_SYMBOL lib/lru_cache 0x6b3233cc lc_set +EXPORT_SYMBOL lib/lru_cache 0xb2cd4f4d lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xbbc51b84 lc_create +EXPORT_SYMBOL lib/lru_cache 0xd146d9a5 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xd3bb6860 lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xdf43d805 lc_changed +EXPORT_SYMBOL lib/lru_cache 0xe5aa47bc lc_put +EXPORT_SYMBOL lib/lru_cache 0xf933aa17 lc_find +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x315c65fd zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x48034724 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xaf64ad0d zlib_deflate +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf741c793 zlib_deflateEnd +EXPORT_SYMBOL net/802/p8023 0x6eac74d4 make_8023_client +EXPORT_SYMBOL net/802/p8023 0xa064df6a destroy_8023_client +EXPORT_SYMBOL net/9p/9pnet 0x0666e065 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x086d59be p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x093079bc p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x0b54878d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x0cb05478 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x0ceb470c p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x16c6b0a3 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x2391921d p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x27e57585 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2d3383c8 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x31a0a8fd p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x40d3e4df v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x444efa0a p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x48411415 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x4e5b3613 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x5c73c317 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6ed4fa65 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x79273679 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x8286f040 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x841161ac p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x88427ae3 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x8e05d837 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x9065ca70 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x976c9558 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x977a0030 p9_nr_pages +EXPORT_SYMBOL net/9p/9pnet 0x9a1f1fe6 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x9c964743 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xa11209f6 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xa5aa3586 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xaee05b7b p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb4a67b30 p9_payload_gup +EXPORT_SYMBOL net/9p/9pnet 0xbc8e6698 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xbe2e939b p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xc09741de p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcd39df49 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xd4791a28 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd4c81b6e p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xd8eda45e p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xedd96ebd p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xf2a05d1d p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf4ee357b p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xf69f7458 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xf793e3b8 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfac929f5 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x37345a0b aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x69fc41f1 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x81e097ce atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xd86ed2c3 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x02afde35 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2f77f280 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x46175f9f atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x527f1418 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x5515f59f atm_charge +EXPORT_SYMBOL net/atm/atm 0x8ac13bf1 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x93136f41 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9b7e485d deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9dd597c6 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb7c4bd38 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xbd0a986a atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xc76c1814 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0xc84d7e28 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf82a3eae atm_alloc_charge +EXPORT_SYMBOL net/ax25/ax25 0x026c1368 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x49ab5314 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x5ff13576 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x6b6a2b40 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x75dc37e1 ax25_rebuild_header +EXPORT_SYMBOL net/ax25/ax25 0x76569e35 ax25_hard_header +EXPORT_SYMBOL net/ax25/ax25 0x7b1201e3 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xb61d3e4e ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xc0cba36c ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd195fdc5 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xee3b2be0 ax25_find_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x094ea08c bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1931c1cf hci_connect +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d839307 hci_le_conn_update +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3709e69e hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37cd5934 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fe5e0a0 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x48d5e009 hci_send_sco +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b0d2961 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b599289 bt_printk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4deb9d86 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x50bbd320 hci_conn_hold_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5665a37f bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x57b9c30e hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5c19f3f6 hci_conn_check_link_mode +EXPORT_SYMBOL net/bluetooth/bluetooth 0x629c09c3 hci_register_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x66ebc6c2 hci_send_acl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6768309e hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x684e62c0 hci_le_ltk_reply +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f39c09b hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7cfa6038 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x920ee0d5 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93469d28 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9ec2611a bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa51b14b5 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb792a56f hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xba570330 hci_le_start_enc +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbcf3d6bb hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbef69472 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf3a36ae hci_find_ltk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbffa59da hci_find_link_key_type +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2066af0 batostr +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd97c9f9 hci_recv_stream_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd5365ee0 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd9f16be4 hci_unregister_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdae2b8ca hci_recv_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe557146d hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe63ec731 hci_conn_put_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe98c00c6 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeaa6aaa5 hci_conn_change_link_key +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec803e9e hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf17f1ca5 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf19294db bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf8e9d0ff bt_sock_ioctl +EXPORT_SYMBOL net/bridge/bridge 0x12a06e9d br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa3ac111d ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa7bb86a7 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb1da5c8b ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x057235c3 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x1d241b57 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x344c8775 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x35b49017 caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x504da5e8 cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x5807d88d caif_free_client +EXPORT_SYMBOL net/caif/caif 0x63e9812a cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0xcfe9cfa0 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x1a69dc9f can_ioctl +EXPORT_SYMBOL net/can/can 0x1b31c7e9 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x265575b5 can_proto_register +EXPORT_SYMBOL net/can/can 0x416814db can_rx_register +EXPORT_SYMBOL net/can/can 0x817837c5 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xa182489e can_send +EXPORT_SYMBOL net/ceph/libceph 0x05ae2d7d ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0e3d0216 ceph_calc_object_layout +EXPORT_SYMBOL net/ceph/libceph 0x10940306 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x131253c8 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x197effcb ceph_osdc_release_request +EXPORT_SYMBOL net/ceph/libceph 0x1c0113eb ceph_osdc_init +EXPORT_SYMBOL net/ceph/libceph 0x27f62671 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x2cbc8de3 ceph_osdc_wait_event +EXPORT_SYMBOL net/ceph/libceph 0x310e1d67 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3158173e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x3186fdf1 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x33f2d647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x384a505f ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c88ec48 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x3e1f462a ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x3e3f0cf0 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3f851e97 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x420d865d ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x43c8d341 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x4a69554e ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5b23798a ceph_osdc_stop +EXPORT_SYMBOL net/ceph/libceph 0x5c28e9f0 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x5fe4b2fa ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x5feed1f2 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x61385df9 ceph_osdc_unregister_linger_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x65e38091 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x66dc2d90 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x6abdd8ff __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6d2d06a1 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x6ed41be2 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x74daee66 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x77692acb ceph_msg_last_put +EXPORT_SYMBOL net/ceph/libceph 0x77ad3fe4 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x78f264bc ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x7acf32e9 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x7bb7b786 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x7c3964e1 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x874656b0 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x8ffb88d3 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x92a401c0 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x92b72d23 ceph_copy_page_vector_to_user +EXPORT_SYMBOL net/ceph/libceph 0x992d5091 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x9dd64a68 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa40bd703 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xa4fbb0b5 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb8ef78f4 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xba95d3cb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xbb77cc13 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xbe768784 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc58b3c64 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd01b645a ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xd16c3139 ceph_monc_create_snapid +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd2d23b3e ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd3f01aaa ceph_messenger_destroy +EXPORT_SYMBOL net/ceph/libceph 0xd6404bdf ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xd787f4c2 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xd9f86e75 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xdcfd87fd ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xde3e9ec7 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xe2861b6a ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xe542f3ba ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xf27b9f96 ceph_messenger_create +EXPORT_SYMBOL net/ceph/libceph 0xf556ba51 ceph_calc_raw_layout +EXPORT_SYMBOL net/ceph/libceph 0xf793bd6d ceph_monc_open_session +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0a86bbe8 ieee802154_nl_start_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x311f3491 ieee802154_nl_disassoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x31e24176 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3ac46ed7 ieee802154_nl_assoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x460aa83e ieee802154_nl_scan_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x616916ae ieee802154_nl_disassoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7b9c2e18 ieee802154_nl_assoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8198725e ieee802154_nl_beacon_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x93d3cc7d wpan_phy_alloc +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc6104320 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd02499bb wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd8220673 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf9ce66f1 wpan_phy_for_each +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5d5ac30d arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xa001be5d arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc03e4e88 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0bd4c8ef ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd052bc7e ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe228f50d ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x0740837c nf_nat_follow_master +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x444567fd __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x484729c9 nf_nat_setup_info +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x5f916d04 nf_nat_protocol_unregister +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x6e601fed nf_nat_protocol_register +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xc26a1ff5 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xfab25469 nf_nat_used_tuple +EXPORT_SYMBOL net/ipv4/tunnel4 0x4c1b0541 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xf7b2b8e1 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8bddf33 ip6t_ext_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xeaeadb42 ipv6_find_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xec776b8c ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xedc6af2c ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xef06e35f ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x07705b40 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x156fc78a xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x13c64bbb xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x184069a8 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0f7671c8 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x173ef25c ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1b6065f1 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9992dfd8 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc8337096 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe3367d41 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe7bee63c ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xee8bb8df ircomm_connect_request +EXPORT_SYMBOL net/irda/irda 0x01dbeb0e irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x083e784d irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x0bab6037 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x2036ad06 irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x23a2eee7 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x29d2dab6 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x359de411 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x38a20e5b irda_debug +EXPORT_SYMBOL net/irda/irda 0x3906c58a irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x3b0a2ab6 irias_find_object +EXPORT_SYMBOL net/irda/irda 0x3b9bdefe irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x3c49843d irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x428321fa hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x48d17824 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x4a251acb alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x54f34f79 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x5afe03ee irttp_dup +EXPORT_SYMBOL net/irda/irda 0x61322200 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x62acf28c irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x648c7478 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6bd73642 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7b99f7e9 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x7d54adaf irias_new_object +EXPORT_SYMBOL net/irda/irda 0x7f3b47da irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x7ff509a2 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x8a636845 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x8cd99be0 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x8e2b5cc2 proc_irda +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x993ad14b irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9e326eb3 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa02b19ae irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xa370c681 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xa6bfea3d async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xadcd8ad9 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xba897b0b iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc0bee29c hashbin_new +EXPORT_SYMBOL net/irda/irda 0xc35e07e6 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xc9b6d689 irlap_close +EXPORT_SYMBOL net/irda/irda 0xcd607b1f irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe0b9edc7 iriap_close +EXPORT_SYMBOL net/irda/irda 0xe6ea5730 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xe91d8e81 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf1365fba irlap_open +EXPORT_SYMBOL net/irda/irda 0xf39b7fe0 irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xf4e9465c iriap_open +EXPORT_SYMBOL net/irda/irda 0xf60dca26 irttp_close_tsap +EXPORT_SYMBOL net/l2tp/l2tp_core 0x2b448a4d l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x05becb0f lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x2f8a5c8c lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x7945d457 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x8d03b444 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xba033255 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xdd067b41 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0xe587039b lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xe759783e lapb_getparms +EXPORT_SYMBOL net/mac80211/mac80211 0x0121e566 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x04a3f62c ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x1061f015 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x17217a33 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1c9992ab ieee80211_get_operstate +EXPORT_SYMBOL net/mac80211/mac80211 0x22483539 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2553089a ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x28475eeb ieee80211_alloc_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2ec66c42 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x374081fd ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x37495eda __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3c4bdf89 ieee80211_enable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x3d52bb51 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x3f47310c ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x4fb39646 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x4ffb70ae ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x59b6113c ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x5c28cca5 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x5d64ede4 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5e4c3b31 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x5e73f438 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x60db11fe ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x63caa554 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x6503ef71 ieee80211_sta_eosp_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x6a131db0 ieee80211_disable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x75379bef ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x81b70c0d ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x82297f2f ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x85fa5128 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9324871d ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x960ab4d4 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9b4a59b3 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x9c578f2c ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9e079e61 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x9f99747b ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xa09b2998 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xa10e6fdb ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa4241970 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xaa157485 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xaa2ab377 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xab224d7c __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb0bb1374 ieee80211_napi_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xb0ef3308 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb2be2ec2 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xbb618557 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xbeb38b47 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc06602ac ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xc7e9782e ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xcc2d5d66 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xd1f9ff71 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd69e31bf ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd7ad3bd5 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xd84956f6 ieee80211_napi_schedule +EXPORT_SYMBOL net/mac80211/mac80211 0xdd3680ec ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xddb47d52 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xde5f0380 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xe09462b9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe761e7a9 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xe7a0eb02 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xeba14d72 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xebab5e9f ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xef00fd37 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf06e5ef6 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xf3c69b31 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf44c0493 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xf8bd6f39 ieee80211_rx +EXPORT_SYMBOL net/mac80211/mac80211 0xfab439aa ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xfb3e00e4 ieee80211_send_bar +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x05f4b7fe register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x06229636 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x06f84c3a ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x08bcb286 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1b948b92 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3645a2b3 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x441a20c6 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x51aaccb3 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x59922307 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x69daef85 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7cb194dd register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa1dbc2d8 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xce709183 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd744cc19 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeb32fd78 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x20c5886c __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x80b4385c __nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe7661f72 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_proto_gre 0x035fc7bd nf_ct_gre_keymap_flush +EXPORT_SYMBOL net/netfilter/x_tables 0x05030e0b xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x08c473b7 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x1f1bc90d xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1fc809eb xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x26fce1da xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x2868f767 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x67bd20a0 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x791f31e3 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7b01af75 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa7e05841 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xb28f5ef1 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xc91e1a56 xt_register_targets +EXPORT_SYMBOL net/nfc/nci/nci 0x3f6bde90 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x86361aa5 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x89d5a30c nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa03a1631 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xcc96db0b nci_register_device +EXPORT_SYMBOL net/nfc/nfc 0x1f45963b nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x2cf1913e nfc_printk +EXPORT_SYMBOL net/nfc/nfc 0x75429151 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x7e42105c nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x8ab263a7 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xa16b907c nfc_alloc_skb +EXPORT_SYMBOL net/nfc/nfc 0xa4a82df9 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xd830fe89 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xec9d390d nfc_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x26138d37 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x3e6c8564 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x494198fd pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x53b771a0 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x7a52c325 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xbabc775b pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xda2f46f6 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xdf39577b pn_sock_get_port +EXPORT_SYMBOL net/rds/rds 0x5031b8c5 rds_str_array +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x18906db0 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x221e7705 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x330eab1e rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x69d0f163 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7c5913bb rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8f4f94a9 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8f652cf0 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x96bd77ad rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9ec2a440 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaea651cf rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb3d8e6d6 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc7dc7af2 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd73724d0 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe185a1f8 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xeffddec4 rxrpc_get_null_key +EXPORT_SYMBOL net/sunrpc/sunrpc 0x900140bd svc_pool_stats_open +EXPORT_SYMBOL net/wanrouter/wanrouter 0x0ebe03d1 unregister_wan_device +EXPORT_SYMBOL net/wanrouter/wanrouter 0x44d8dd0e register_wan_device +EXPORT_SYMBOL net/wimax/wimax 0xca33d446 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xf172c2de wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x01409034 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x01d18e25 __cfg80211_auth_canceled +EXPORT_SYMBOL net/wireless/cfg80211 0x03afd256 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x03cb03ac cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x10411a86 ieee802_11_parse_elems_crc +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19c6bce8 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x19ecc7ec ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x1c4f3adb cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1cdd6866 cfg80211_del_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x1d213dd6 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x23daadb0 __cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x2d825673 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x2edf7d69 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x35375b83 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x3728b91e cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x38ccdf86 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x3bec2fd7 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x3d345287 cfg80211_send_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x47270ab4 cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x4e9507eb __cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x514e5d47 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x5cbc381a cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x624b9059 cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x66b45c69 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6f647587 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x70c4d4df ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x71e79f2c cfg80211_send_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x7513e94e ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x76ba93f0 cfg80211_send_unprot_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x7a44898d wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f8d0025 cfg80211_send_unprot_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x805fa205 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x8102d61d cfg80211_send_rx_auth +EXPORT_SYMBOL net/wireless/cfg80211 0x8198c0f9 cfg80211_testmode_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8c91848e cfg80211_inform_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8cfed7fc cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x90cc4b1a wiphy_new +EXPORT_SYMBOL net/wireless/cfg80211 0x97012220 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x99f93cf6 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x9b0f2a98 cfg80211_send_rx_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x9ce25222 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x9f10700e cfg80211_testmode_reply +EXPORT_SYMBOL net/wireless/cfg80211 0x9fa98cd6 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xbcbf54e9 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc176848c cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc9ae8eec cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xcfca7333 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xd0c867f6 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xd7106ae9 cfg80211_testmode_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd7779230 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdd671415 cfg80211_inform_bss_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xe5dfba5b cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xe8849794 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xebedd327 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xef2ab484 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xf02930ba cfg80211_get_mesh +EXPORT_SYMBOL net/wireless/cfg80211 0xf23e6bf0 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf6d68d60 cfg80211_testmode_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xfa6ab2f3 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xff263c69 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/lib80211 0x0e903c01 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2d0f99e5 print_ssid +EXPORT_SYMBOL net/wireless/lib80211 0x63995d71 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x8a1a23f1 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x9b1c1b6c lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xdf16e187 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xf68ecd2b lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x64278ea2 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x287b232c snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x367900bb snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb9ec62be snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0xc90134ee snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe473c999 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x1c6ecd4e snd_seq_device_register_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3a57f235 snd_seq_autoload_unlock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xb90668b2 snd_seq_autoload_lock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xc622fb29 snd_seq_device_unregister_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xfa5eb6ac snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2b51b084 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x350963b4 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7f62d029 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x83914b9a snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x92ee6bb0 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x9e7d3f0f snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xbc141dfc snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf2bf1549 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x464e5d10 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x09c6d1c8 snd_add_device_sysfs_file +EXPORT_SYMBOL sound/core/snd 0x09ea190e snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x0a1e52bb snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x0c26ad60 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x11a5434a snd_device_free +EXPORT_SYMBOL sound/core/snd 0x166284ca snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x17131686 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x1897de56 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1b3a7bbd snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x20b0bd6b snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x25951ad8 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x307f7cce snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x3895c0fa snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3ac1038c snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x412fe9d3 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x456fab6e snd_device_register +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b015768 snd_iprintf +EXPORT_SYMBOL sound/core/snd 0x4eb0d19f snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x582045f4 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x5a9eaea3 snd_register_device_for_dev +EXPORT_SYMBOL sound/core/snd 0x5c57e5ab snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x5d6da4cb snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x6620506d snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x6cd40cca snd_cards +EXPORT_SYMBOL sound/core/snd 0x6f59402f snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x70c6ad8d snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x718e3b24 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x7374223a snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x75d2338d snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x81e6ba67 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x869c971f snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x89467868 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x8b119bcc _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x941e7b33 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x9cad030f snd_info_register +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa1b01e7a snd_device_new +EXPORT_SYMBOL sound/core/snd 0xa5028c42 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb5e117b6 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xbbe93d17 snd_card_proc_new +EXPORT_SYMBOL sound/core/snd 0xbd45af35 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xbeef770c snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd1157735 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xe1351ffe snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xe4f814d9 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xf044a65a snd_card_create +EXPORT_SYMBOL sound/core/snd 0xf36bcb77 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xf434155c snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xf8e75804 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xf94755ab snd_card_free +EXPORT_SYMBOL sound/core/snd-hwdep 0x3fbbeb78 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-page-alloc 0x230d1967 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x3fc915fb snd_dma_get_reserved_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0x5e4db71c snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-page-alloc 0x6b505a13 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0xdc4e6c37 snd_dma_reserve_buf +EXPORT_SYMBOL sound/core/snd-pcm 0x002210c4 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0caada5e snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x1a1d7e90 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x1b6c9108 snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x1c7f303c snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1f4caf5e snd_pcm_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0x206d93a7 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x20ecf408 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x22218970 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x2269c501 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x24ee266f snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x331c9313 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x3458110b snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x4120d824 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x42d1ce69 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4835e34b snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x499a68d0 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x50d27170 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x54446874 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x591e0a81 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x5978a5aa snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x698a6f90 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x70599114 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x712ad7c9 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x738fa25a snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x75784181 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x7e8d23f4 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x80ce80a3 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x9835cccb snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x9bbd407c snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x9fd10e89 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa4df993c snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa9adc229 snd_pcm_link_rwlock +EXPORT_SYMBOL sound/core/snd-pcm 0xaf68ee8f snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xb3824d0d snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xd008e34d snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b9b8b8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd31abd0c snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xd44bac63 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xdb453421 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe0572a20 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xe22c189a snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe6a4e88c snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xe7960901 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xf3797152 snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xf3b90172 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-rawmidi 0x27ce4292 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x336ec610 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x35be8ab0 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5c2f9db2 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d540b9b snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x65119782 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x664677a3 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6b479205 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6b98def4 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x77db29f9 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x86da368e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x98d479f9 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa98a4c2a snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaf442165 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbea19892 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf53fbdb7 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf74f19a9 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-timer 0x12946a99 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x4f445c2d snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x520511f1 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x57e0eb40 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x5df5fd08 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x7adf3948 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x87cd81dd snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x97921375 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xa3744107 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xaeb03898 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xafb6d22f snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xd9bf03d6 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xda016101 snd_timer_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x5a1ebe23 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1685d060 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x19d48d1d snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1a89adb4 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x205169df snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3a886359 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x50082b6a snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6128654d snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xea635ab7 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xffa63eee snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x0e9b1dee snd_opl4_write_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x19b9f90a snd_opl4_create +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x45f9054f snd_opl4_read_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x502ffc4b snd_opl4_write +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x560bceee snd_opl4_read +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0c0950ff snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x11c88f84 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4033f0ba snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x831dae3f snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x975591e6 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa214311c snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xad2e7470 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb0214727 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf3be1cbe snd_vx_load_boot_image +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0097bce2 amdtp_out_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x03efb2ce cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x04ae891b cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x123e8f35 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2adcef4f fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x40d85e2d amdtp_out_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5623f405 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x595ad1a2 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66826416 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x67e98535 amdtp_out_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e3f1ddd amdtp_out_stream_set_pcm_format +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8bcc12e8 amdtp_out_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb55554a4 amdtp_out_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbb98121d cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7aa40f1 amdtp_out_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc801f19b amdtp_out_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd053738e iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd1af7a66 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd527c1fe amdtp_out_stream_set_rate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9ddf1cd snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdae8ca81 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd74bc7a rcode_string +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xebcbcfcd fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf4efc122 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf984425d cmp_connection_establish +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3ed502a1 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4634ecd3 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6bfb5277 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7b2ce057 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcc19c03a snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xfa93c7ca snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x17fe62a7 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x3180a1af snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x53dda883 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x73cce5ca snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xae140629 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe9bf1285 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x14e73d82 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9d565ae1 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa2ec19d8 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc214c55e snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8369b84b snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x96abde78 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0x0d3ab1b7 snd_tea575x_init +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0x7cf1f973 snd_tea575x_exit +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3527bad8 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x534f87f4 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6b2978c0 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8716bf71 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf017b7b2 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8ebfcebb snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xaacc5824 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd285566d snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe765aea0 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe93dfc2d snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xef4d0b8f snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x8586f54c snd_tea6330t_detect +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0xc009b50f snd_tea6330t_update_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x4a5f0e64 snd_es1688_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x4cc5801c snd_es1688_reset +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x641d862b snd_es1688_mixer_write +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xaab38757 snd_es1688_pcm +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xb1bcaaee snd_es1688_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0e612757 snd_gf1_ctrl_stop +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x15c441d2 snd_gus_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1a2b6a13 snd_gf1_peek +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1d55d434 snd_gf1_dram_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x27aad70d snd_gus_dram_read +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3075ec95 snd_gus_use_inc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x35fc22b1 snd_gf1_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3dee05f1 snd_gf1_new_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x533da347 snd_gf1_mem_alloc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5b1bcf8a snd_gf1_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x677b04d1 snd_gf1_mem_lock +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x7082ca0f snd_gf1_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x72fd2066 snd_gf1_rawmidi_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x76c56d52 snd_gf1_i_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x792c7668 snd_gf1_poke +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8ab47410 snd_gf1_pcm_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9047933a snd_gf1_alloc_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x90a3c3b8 snd_gf1_translate_freq +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x925b32fc snd_gf1_write_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa4a4f12f snd_gf1_write16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xbffba8af snd_gf1_mem_free +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc25efeef snd_gf1_stop_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc6ad7fe9 snd_gus_dram_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xcfc10fb5 snd_gf1_i_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd6bc7757 snd_gf1_mem_xfree +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd9ace8b9 snd_gf1_free_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xdac82ab8 snd_gf1_i_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xdfa5ba2b snd_gus_use_dec +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf1a5dbd4 snd_gf1_delay +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf7db6678 snd_gus_initialize +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x07050f78 snd_msnd_pcm +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x16750b89 snd_msnd_dsp_halt +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x27f81497 snd_msnd_send_word +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x2823b40b snd_msnd_upload_host +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x44809130 snd_msnd_DAPQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x472466dc snd_msnd_disable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x549c1158 snd_msnd_send_dsp_cmd +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x660f170f snd_msnd_enable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xab03d158 snd_msndmix_force_recsrc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xae58c145 snd_msndmix_new +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xc6ef9520 snd_msndmix_setup +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf8df3731 snd_msnd_DARQ +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x1fdbd861 snd_aci_cmd +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xb4cf5572 snd_aci_get_aci +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3095aed5 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5a6462e7 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x67db5b31 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x91a77cc0 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa2d95268 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa3c2a42b snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb769e811 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc7536c76 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf07b38fd snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfcc29437 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0xb9db18c5 snd_sb_csp_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x173d621a snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x437d0db5 snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x47d22073 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x28d7f862 snd_sb8dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x36f75bb1 snd_sb8dsp_midi_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x67b0dc39 snd_sb8dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x78833ee4 snd_sb8dsp_midi +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x2b3a9b3b snd_emu8000_poke +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x3c2f5fbd snd_emu8000_peek +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x49cd19a0 snd_emu8000_init_fm +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x6b269579 snd_emu8000_peek_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x78ccdd41 snd_emu8000_load_reverb_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x89511ce1 snd_emu8000_update_equalizer +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xaba21e78 snd_emu8000_poke_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xb89224cb snd_emu8000_dma_chan +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xcf2f55a2 snd_emu8000_load_chorus_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xfb25ed8f snd_emu8000_update_chorus_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xfe125420 snd_emu8000_update_reverb_mode +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x10d97a27 snd_wss_overrange +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x13aa4e93 snd_wss_create +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x2e10b083 snd_wss_get_pcm_ops +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x2f59aaf1 snd_wss_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x348e5045 snd_wss_chip_id +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x48a2ec5e snd_wss_timer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4b958cfa snd_wss_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4ce03609 snd_cs4236_ext_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x56dcf23b snd_wss_mixer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x72ec730d snd_wss_info_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x9c3e9ec9 snd_wss_get_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x9ea5f76e snd_wss_mce_down +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xa4b4cda7 snd_wss_info_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xaaeb8c81 snd_wss_get_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xd0bc7120 snd_wss_mce_up +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xda4fe7c4 snd_wss_put_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xec9af58c snd_wss_put_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xedc8f6e8 snd_cs4236_ext_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf30de132 snd_wss_pcm +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x362fd589 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5107bc9a snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5e0d0705 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5edf61ee snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x68985744 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x68a153da snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x85ea629c snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa1f276be snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa792f132 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa7e2ba9e snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa85eb6fe snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xac64fbd1 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb743a376 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbdaf8eb8 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd8aed38b snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe3507df8 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfc6e24b4 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x2f0600ea hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1bb9137d snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1f7635d6 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2818258d snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4fe84739 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xbd90e69d snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc093f16f snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc8a94735 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd412ed2a snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdbed7158 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/hda/snd-hda-codec 0xf5fd25af snd_hda_parse_generic_codec +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x07724c21 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4c63059e snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xeae2d261 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0cb3541e oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1ae1ed0d oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1c72c505 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2d390be5 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2e32e4c4 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2f13b151 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x55ec1724 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5eb16227 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6c2bf1c1 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x709e53a4 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x70b418ac oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x75db485f oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7b533b5d oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8c4f7c1c oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9439315b oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9aed6c22 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa25af096 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb29f8b1b oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb68f38c1 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdead0cfe oxygen_pci_resume +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfe68e2b3 oxygen_pci_suspend +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3af20149 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x40f23e11 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x54211e13 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x7be96055 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa7441ba6 snd_trident_stop_voice +EXPORT_SYMBOL sound/soundcore 0x00dc4621 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x51b23fc5 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xc856565e register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xda7a2f79 sound_class +EXPORT_SYMBOL sound/soundcore 0xdb6caa54 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xdc3c4367 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0bb8d704 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x63e2d7c3 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x947ab632 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa0743da4 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xcc353aaa snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfef93a98 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x130858bb __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x1e23d5e5 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5879fcc0 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x6a121fda __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa1486575 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd0fdb0f9 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe9c8fed0 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xfac2a694 snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x3e39a49a snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x35c95b1b dm_mem_cache_client_create +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x6d43cae3 dm_mem_cache_alloc +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x86e5acf9 dm_mem_cache_grow +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x920a7a41 dm_message_parse +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xa43471b6 dm_mem_cache_shrink +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xd55b290c dm_mem_cache_client_destroy +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xef6c89ab dm_mem_cache_free +EXPORT_SYMBOL vmlinux 0x00000000 softirq_work_list +EXPORT_SYMBOL vmlinux 0x0011616b tcf_hash_create +EXPORT_SYMBOL vmlinux 0x002de09c vfsmount_lock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x003ff297 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x0044ea9a __bforget +EXPORT_SYMBOL vmlinux 0x005cd5dc security_path_link +EXPORT_SYMBOL vmlinux 0x005ce762 of_match_node +EXPORT_SYMBOL vmlinux 0x00712edf inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x007be976 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x00801678 flush_scheduled_work +EXPORT_SYMBOL vmlinux 0x00803966 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x0082b161 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x0084e86d unregister_shrinker +EXPORT_SYMBOL vmlinux 0x008a86eb cpu_sysdev_class +EXPORT_SYMBOL vmlinux 0x00ab4ee4 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x00c87cce scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x00e1d542 mca_device_claimed +EXPORT_SYMBOL vmlinux 0x00e8097b csum_partial_copy_fromiovecend +EXPORT_SYMBOL vmlinux 0x00e85f29 dm_get_mapinfo +EXPORT_SYMBOL vmlinux 0x00f42699 files_lglock_global_unlock +EXPORT_SYMBOL vmlinux 0x00f96373 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x00face51 simple_unlink +EXPORT_SYMBOL vmlinux 0x00fadc7b dqget +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x012105d3 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x0127f69e blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x0168c56c unregister_binfmt +EXPORT_SYMBOL vmlinux 0x017be090 tty_register_device +EXPORT_SYMBOL vmlinux 0x0188e8b7 generic_file_aio_read +EXPORT_SYMBOL vmlinux 0x01902adf netpoll_trap +EXPORT_SYMBOL vmlinux 0x019201d2 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x01d19038 acpi_enable_subsystem +EXPORT_SYMBOL vmlinux 0x01d401cd open_exec +EXPORT_SYMBOL vmlinux 0x01f492aa set_anon_super +EXPORT_SYMBOL vmlinux 0x01f83a47 tty_hangup +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x021daf9c mca_device_set_name +EXPORT_SYMBOL vmlinux 0x022117a3 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x024389be mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x024f71f5 single_open +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x02775d34 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x029444f0 native_read_tsc +EXPORT_SYMBOL vmlinux 0x02a17110 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02d1c4c4 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x02d81845 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x02dcf341 journal_check_used_features +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02f78ae5 scsi_prep_return +EXPORT_SYMBOL vmlinux 0x02fdc580 vfs_link +EXPORT_SYMBOL vmlinux 0x030be4c4 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x0321f12e netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x03312648 __cleancache_flush_inode +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034f9e73 param_ops_byte +EXPORT_SYMBOL vmlinux 0x03579559 mddev_congested +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035e9fef netdev_state_change +EXPORT_SYMBOL vmlinux 0x0363ff76 md_done_sync +EXPORT_SYMBOL vmlinux 0x0365db7d __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x03737c3f unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0393d1fe vfs_symlink +EXPORT_SYMBOL vmlinux 0x03b580eb wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x03bd030e ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x03c06156 bitmap_fold +EXPORT_SYMBOL vmlinux 0x03f11c47 account_page_writeback +EXPORT_SYMBOL vmlinux 0x03fbbd56 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0406ba88 get_gendisk +EXPORT_SYMBOL vmlinux 0x040eff46 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x04143e71 acpi_get_physical_device +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x043f21c0 serial8250_register_port +EXPORT_SYMBOL vmlinux 0x044b44af __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x04632a54 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x047e3456 inet_addr_type +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x049fd3e0 keyring_search +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f95e67 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x05033202 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x0508dfeb bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x0521b2ee set_current_groups +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x054434d6 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x0552c28a scsi_ioctl +EXPORT_SYMBOL vmlinux 0x055a0995 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x055b5f73 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x05694cba scsi_execute +EXPORT_SYMBOL vmlinux 0x056e4839 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x05799712 noop_fsync +EXPORT_SYMBOL vmlinux 0x057ce975 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x05a0fc68 blk_put_queue +EXPORT_SYMBOL vmlinux 0x05b9800a wait_iff_congested +EXPORT_SYMBOL vmlinux 0x05c43d37 dev_activate +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061a3c27 scsi_allocate_command +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065fb357 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x066945f6 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x066c5b35 file_update_time +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0697b271 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x06ac114a agp_free_page_array +EXPORT_SYMBOL vmlinux 0x06b1c35a pnp_find_card +EXPORT_SYMBOL vmlinux 0x06c9cc76 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x06d2f086 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x06f4bf00 seq_escape +EXPORT_SYMBOL vmlinux 0x06f5be38 d_alloc +EXPORT_SYMBOL vmlinux 0x06f6a9f9 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x06ffc577 bdget +EXPORT_SYMBOL vmlinux 0x0713d19e journal_init_dev +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x073dfa12 generate_resume_trace +EXPORT_SYMBOL vmlinux 0x07411f61 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x075fe774 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x076ebea8 pv_lock_ops +EXPORT_SYMBOL vmlinux 0x0781d03c generic_setxattr +EXPORT_SYMBOL vmlinux 0x07834326 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x0799aca4 local_bh_enable +EXPORT_SYMBOL vmlinux 0x079a6703 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07aefe1d generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x07b94753 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x07c04137 pci_clear_master +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial +EXPORT_SYMBOL vmlinux 0x07d9b783 scsi_nl_send_vendor_msg +EXPORT_SYMBOL vmlinux 0x080502f3 fsync_bdev +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x089b4746 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x089faa2b scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x08bf826c _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x08e30ae5 ps2_drain +EXPORT_SYMBOL vmlinux 0x08f489bc bio_integrity_split +EXPORT_SYMBOL vmlinux 0x0906929b __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x0912d383 sock_i_uid +EXPORT_SYMBOL vmlinux 0x0925eeda blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x0933aae1 efi_enabled +EXPORT_SYMBOL vmlinux 0x0948cde9 num_physpages +EXPORT_SYMBOL vmlinux 0x096a9dc2 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x09775cdc kref_get +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09da16c2 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x0a024247 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x0a110789 init_special_inode +EXPORT_SYMBOL vmlinux 0x0a1ce6b0 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x0a2487e0 unblock_all_signals +EXPORT_SYMBOL vmlinux 0x0a2f0aa7 register_filesystem +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a37be59 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a51ceaf tcf_register_action +EXPORT_SYMBOL vmlinux 0x0a58e022 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x0a7a64b1 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x0a7e6a34 bmap +EXPORT_SYMBOL vmlinux 0x0a978ab8 ata_link_printk +EXPORT_SYMBOL vmlinux 0x0a9b302f sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x0aa29d74 tty_check_change +EXPORT_SYMBOL vmlinux 0x0acb1a3c __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae13b8a deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b4628c7 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b6eda5a tcp_syn_flood_action +EXPORT_SYMBOL vmlinux 0x0b7086d9 param_get_short +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b83c3d5 vfs_readdir +EXPORT_SYMBOL vmlinux 0x0b91ae0f of_device_register +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bca9dfc genl_register_ops +EXPORT_SYMBOL vmlinux 0x0bdf0109 input_register_handle +EXPORT_SYMBOL vmlinux 0x0be3c240 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x0c05a0dc dev_alert +EXPORT_SYMBOL vmlinux 0x0c51c5ee blk_peek_request +EXPORT_SYMBOL vmlinux 0x0c528ebe textsearch_destroy +EXPORT_SYMBOL vmlinux 0x0c5fbfd2 netdev_set_master +EXPORT_SYMBOL vmlinux 0x0c65e73c scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x0c750a8a vfs_getattr +EXPORT_SYMBOL vmlinux 0x0c8c9e99 scsi_show_extd_sense +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0caec805 ip_mc_rejoin_groups +EXPORT_SYMBOL vmlinux 0x0cc7996e blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x0cd758fe security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x0cf385e7 ll_rw_block +EXPORT_SYMBOL vmlinux 0x0d2116fb journal_destroy +EXPORT_SYMBOL vmlinux 0x0d382c02 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d511bc2 proto_register +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d785925 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x0d83d4a5 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x0d991d30 kernel_bind +EXPORT_SYMBOL vmlinux 0x0d9d869d ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0ddbfc33 dm_io +EXPORT_SYMBOL vmlinux 0x0ddf4401 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x0e22eccd intel_gtt_map_memory +EXPORT_SYMBOL vmlinux 0x0e2728a5 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x0e3c41ae __invalidate_device +EXPORT_SYMBOL vmlinux 0x0e4ec378 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x0e512d0b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x0e5233c6 pci_ltr_supported +EXPORT_SYMBOL vmlinux 0x0e52592a panic +EXPORT_SYMBOL vmlinux 0x0e5e3352 generic_fillattr +EXPORT_SYMBOL vmlinux 0x0e6d0147 key_alloc +EXPORT_SYMBOL vmlinux 0x0e6dba84 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x0e7bf0d8 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x0e97ba02 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x0eb884ba dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x0ed58a9c blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x0f4950d5 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x0f52a115 save_mount_options +EXPORT_SYMBOL vmlinux 0x0f59f197 param_array_ops +EXPORT_SYMBOL vmlinux 0x0f780a9c gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x0f965daf acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb0e29f init_timer_key +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x10186dc2 mutex_lock +EXPORT_SYMBOL vmlinux 0x1019cfe5 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x102c56de irq_regs +EXPORT_SYMBOL vmlinux 0x104634f8 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x10639f92 deactivate_super +EXPORT_SYMBOL vmlinux 0x106acc8e arp_tbl +EXPORT_SYMBOL vmlinux 0x10720332 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x107e57fe nla_reserve +EXPORT_SYMBOL vmlinux 0x1085b463 load_nls +EXPORT_SYMBOL vmlinux 0x1099c826 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x10a6165a vfs_open +EXPORT_SYMBOL vmlinux 0x10ab7e68 down_killable +EXPORT_SYMBOL vmlinux 0x10b0a169 skb_copy_datagram_iovec +EXPORT_SYMBOL vmlinux 0x10b8c4e4 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x10b9b6b8 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x10d9d048 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x10e68ac4 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f07f63 __get_user_pages +EXPORT_SYMBOL vmlinux 0x10f292d4 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1120e44d xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x11267875 scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x112daf0e sock_create_kern +EXPORT_SYMBOL vmlinux 0x1130ed81 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x1132b837 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x1153a593 skb_split +EXPORT_SYMBOL vmlinux 0x11633870 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x11668771 mapping_tagged +EXPORT_SYMBOL vmlinux 0x116abbe7 mount_bdev +EXPORT_SYMBOL vmlinux 0x116ccd8c vfs_fstatat +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118f01ea putname +EXPORT_SYMBOL vmlinux 0x11ab891c security_path_mknod +EXPORT_SYMBOL vmlinux 0x11cf09a8 mmc_free_host +EXPORT_SYMBOL vmlinux 0x11d17561 search_binary_handler +EXPORT_SYMBOL vmlinux 0x11d277f1 bdi_register +EXPORT_SYMBOL vmlinux 0x11dba971 unregister_nls +EXPORT_SYMBOL vmlinux 0x11e0106b notify_change +EXPORT_SYMBOL vmlinux 0x11e2ec12 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11fb7729 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x1221a056 get_agp_version +EXPORT_SYMBOL vmlinux 0x126ec068 pci_scan_bus_parented +EXPORT_SYMBOL vmlinux 0x12741adc bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x127bae89 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x127f1cf8 vfs_lstat +EXPORT_SYMBOL vmlinux 0x128a5cf9 complete_all +EXPORT_SYMBOL vmlinux 0x12919bfb max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12f99022 inet_frags_init_net +EXPORT_SYMBOL vmlinux 0x1343fb5a unlock_super +EXPORT_SYMBOL vmlinux 0x13551a4a single_release +EXPORT_SYMBOL vmlinux 0x135bf58d backlight_device_register +EXPORT_SYMBOL vmlinux 0x138f3a6e unlock_buffer +EXPORT_SYMBOL vmlinux 0x13ae4700 pci_get_device +EXPORT_SYMBOL vmlinux 0x13b4737d dma_async_device_register +EXPORT_SYMBOL vmlinux 0x13b65a01 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x13b6a063 kern_path +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13ec80f3 param_set_short +EXPORT_SYMBOL vmlinux 0x13ecc7bc ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x13f13805 mutex_unlock +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x141ccdb1 do_SAK +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1424ffbb dev_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x1430e6e0 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x143e6beb mca_device_read_stored_pos +EXPORT_SYMBOL vmlinux 0x144f4fab add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x145927a5 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x145a9a89 call_usermodehelper_setfns +EXPORT_SYMBOL vmlinux 0x145b25d8 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x146fa2f5 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x148b0a76 sk_reset_txq +EXPORT_SYMBOL vmlinux 0x148ba4ad skb_checksum +EXPORT_SYMBOL vmlinux 0x14966273 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x14a75767 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x14a7d75e i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x14e7ca7c alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x1502020b prepare_binprm +EXPORT_SYMBOL vmlinux 0x1510c6ea rtnl_unicast +EXPORT_SYMBOL vmlinux 0x152e840e padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1551dc51 bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x1553c9ec log_wait_commit +EXPORT_SYMBOL vmlinux 0x15ba638c set_groups +EXPORT_SYMBOL vmlinux 0x15e972d7 vmtruncate +EXPORT_SYMBOL vmlinux 0x15f62de6 mount_nodev +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x161a5803 load_nls_default +EXPORT_SYMBOL vmlinux 0x1627ed72 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1645da72 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x16776dc2 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x168f1082 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x169decb6 mmc_erase +EXPORT_SYMBOL vmlinux 0x16b5d2ef security_path_rename +EXPORT_SYMBOL vmlinux 0x16c42197 init_timer_deferrable_key +EXPORT_SYMBOL vmlinux 0x16cb9efa ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x16f8a0cd proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x16fafe90 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x16fc00d3 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x16fe19e6 dma_pool_create +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x170fa749 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x170fe6fd scsi_remove_target +EXPORT_SYMBOL vmlinux 0x1769ddfc tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x1790d76b _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x179ed813 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x17c598cd of_phy_find_device +EXPORT_SYMBOL vmlinux 0x17d314c1 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x17d3856a tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x17df17bc sysctl_tcp_ecn +EXPORT_SYMBOL vmlinux 0x17e23030 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x180d791c pci_remove_bus_device +EXPORT_SYMBOL vmlinux 0x1815b524 skb_make_writable +EXPORT_SYMBOL vmlinux 0x18161dc2 set_bh_page +EXPORT_SYMBOL vmlinux 0x1822db70 install_exec_creds +EXPORT_SYMBOL vmlinux 0x182aa292 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x183688ff init_task +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184d69b5 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x184e6b26 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x184e6c85 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x184f7ae5 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x185afd8e write_cache_pages +EXPORT_SYMBOL vmlinux 0x188a8382 ethtool_op_set_ufo +EXPORT_SYMBOL vmlinux 0x18b30139 tty_name +EXPORT_SYMBOL vmlinux 0x18b503cd xfrm_input +EXPORT_SYMBOL vmlinux 0x18bb4f31 __netif_schedule +EXPORT_SYMBOL vmlinux 0x18f440f2 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x1908a5be abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x19123a06 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x1924fc4d generic_setlease +EXPORT_SYMBOL vmlinux 0x194e8647 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x1950b7c3 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x1963e1c6 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x19912407 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a9e62b complete +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x1a184db9 grab_cache_page_nowait +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a631698 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a95e4f4 request_key_async +EXPORT_SYMBOL vmlinux 0x1ac6a0e9 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x1ace138d bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x1ae14ef5 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x1af047a0 tcp_connect +EXPORT_SYMBOL vmlinux 0x1afe5a7b sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b04df17 amd_northbridges +EXPORT_SYMBOL vmlinux 0x1b2444e0 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b895b93 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b9e0ff1 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x1bb4c3ce tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x1bbb71c0 read_cache_page +EXPORT_SYMBOL vmlinux 0x1bc8585b idr_remove_all +EXPORT_SYMBOL vmlinux 0x1bdc8bcb wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x1be14bf4 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x1bf38ce7 pci_request_region +EXPORT_SYMBOL vmlinux 0x1bffdd93 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0x1c0d737e simple_transaction_read +EXPORT_SYMBOL vmlinux 0x1c185de9 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x1c1af916 set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x1c24b17f blk_init_tags +EXPORT_SYMBOL vmlinux 0x1c441b2a bdi_init +EXPORT_SYMBOL vmlinux 0x1c4fb0ef fb_blank +EXPORT_SYMBOL vmlinux 0x1c59f430 create_proc_entry +EXPORT_SYMBOL vmlinux 0x1c625076 mb_cache_create +EXPORT_SYMBOL vmlinux 0x1c63fdd7 dquot_release +EXPORT_SYMBOL vmlinux 0x1c783e13 bio_map_user +EXPORT_SYMBOL vmlinux 0x1c81b602 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1cc6719a register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x1cd917e3 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x1ce37b13 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x1d100826 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x1d15c745 rtnl_notify +EXPORT_SYMBOL vmlinux 0x1d2e87c6 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x1d3865da param_get_invbool +EXPORT_SYMBOL vmlinux 0x1d40ea66 elv_rb_find +EXPORT_SYMBOL vmlinux 0x1d604da0 sget +EXPORT_SYMBOL vmlinux 0x1d611dcd ata_port_printk +EXPORT_SYMBOL vmlinux 0x1d8c2c2b lock_fb_info +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddd5159 mdiobus_read +EXPORT_SYMBOL vmlinux 0x1df7a66e neigh_ifdown +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e08be27 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x1e093e25 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x1e0fef4c __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x1e18acb3 netif_napi_add +EXPORT_SYMBOL vmlinux 0x1e230f53 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e38496b mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x1e577869 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x1e5cfd37 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ec4eb34 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x1edac615 sync_blockdev +EXPORT_SYMBOL vmlinux 0x1ee2cd10 km_new_mapping +EXPORT_SYMBOL vmlinux 0x1ef1f75f posix_acl_valid +EXPORT_SYMBOL vmlinux 0x1ef2a9a6 km_report +EXPORT_SYMBOL vmlinux 0x1f06830a is_bad_inode +EXPORT_SYMBOL vmlinux 0x1f3df735 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f7f8b8e llc_set_station_handler +EXPORT_SYMBOL vmlinux 0x1f86a683 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x1f875c7b blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x1f8bb2d5 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x1f9abb73 inet_getname +EXPORT_SYMBOL vmlinux 0x1faba8cf empty_aops +EXPORT_SYMBOL vmlinux 0x1fb56d2f bio_clone +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1feafc52 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x200ca2ec seq_path +EXPORT_SYMBOL vmlinux 0x204d04c7 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x204e4be6 scsi_put_command +EXPORT_SYMBOL vmlinux 0x2052b6a2 set_pages_x +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2077f9fa genl_register_family_with_ops +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x208f5f52 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20aaf302 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x20c7af0e generic_file_buffered_write +EXPORT_SYMBOL vmlinux 0x21029e05 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x2113209f xfrm_init_state +EXPORT_SYMBOL vmlinux 0x2120a1d9 tcp_v4_md5_do_del +EXPORT_SYMBOL vmlinux 0x212fec23 cad_pid +EXPORT_SYMBOL vmlinux 0x215c30bd console_start +EXPORT_SYMBOL vmlinux 0x215c5e6c lock_rename +EXPORT_SYMBOL vmlinux 0x215ebd78 bitrev16 +EXPORT_SYMBOL vmlinux 0x21659c5e __d_drop +EXPORT_SYMBOL vmlinux 0x217dda13 flex_array_get +EXPORT_SYMBOL vmlinux 0x218ae016 neigh_create +EXPORT_SYMBOL vmlinux 0x2199337a down_timeout +EXPORT_SYMBOL vmlinux 0x21e0ea22 acpi_get_id +EXPORT_SYMBOL vmlinux 0x21f9038a x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x21fb443e _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x22024088 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x222bbab4 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ed0c2 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x22325ce5 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x2249505b phy_start_aneg +EXPORT_SYMBOL vmlinux 0x224fb34c of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x225dcf33 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x225e909e schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2288378f system_state +EXPORT_SYMBOL vmlinux 0x22a3e389 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x22a4008a kmem_cache_size +EXPORT_SYMBOL vmlinux 0x22a94eab netif_device_attach +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c0c905 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x22ef0774 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23380b60 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x23532c4d ftrace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x2356ede5 misc_register +EXPORT_SYMBOL vmlinux 0x235a14da dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x238fd3be blk_complete_request +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b62f87 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x23bb7972 dev_get_flags +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23dbd65c jbd2_journal_update_format +EXPORT_SYMBOL vmlinux 0x23fbc849 inode_init_once +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240253c4 mmc_host_enable +EXPORT_SYMBOL vmlinux 0x241c7272 register_cdrom +EXPORT_SYMBOL vmlinux 0x242275d8 elv_add_request +EXPORT_SYMBOL vmlinux 0x243d7e97 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24513201 mount_single +EXPORT_SYMBOL vmlinux 0x2454e940 read_cache_pages +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24622340 seq_read +EXPORT_SYMBOL vmlinux 0x246f1036 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24ac4286 generic_file_splice_write +EXPORT_SYMBOL vmlinux 0x24ba3042 fb_set_var +EXPORT_SYMBOL vmlinux 0x24cf5291 cdrom_open +EXPORT_SYMBOL vmlinux 0x24dfa95f tcp_valid_rtt_meas +EXPORT_SYMBOL vmlinux 0x24e84ac5 skb_find_text +EXPORT_SYMBOL vmlinux 0x24f169fc down_read_trylock +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2511771d x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x255d57f6 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x256fb620 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258355b4 fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x25aed0f7 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x25b2a8ee mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x25c677c4 mac_pton +EXPORT_SYMBOL vmlinux 0x25f6ad6b d_invalidate +EXPORT_SYMBOL vmlinux 0x25f8dc86 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x25fe86cb writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x263b6222 ndisc_build_skb +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263f398e pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x2647cb48 vm_insert_page +EXPORT_SYMBOL vmlinux 0x264d3c3d idr_get_next +EXPORT_SYMBOL vmlinux 0x2657d44e inet_stream_ops +EXPORT_SYMBOL vmlinux 0x266a6d13 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x267dc7c0 km_state_notify +EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close +EXPORT_SYMBOL vmlinux 0x269d3586 agp_enable +EXPORT_SYMBOL vmlinux 0x26a457ce of_dev_put +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271daefc input_register_handler +EXPORT_SYMBOL vmlinux 0x272083c9 of_get_property +EXPORT_SYMBOL vmlinux 0x27214124 poll_freewait +EXPORT_SYMBOL vmlinux 0x27255301 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x272d394e mtrr_del +EXPORT_SYMBOL vmlinux 0x2759f2f4 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27a13f33 sock_release +EXPORT_SYMBOL vmlinux 0x27a8d110 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27bb2684 of_find_property +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bca434 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x27c80cd4 page_readlink +EXPORT_SYMBOL vmlinux 0x27d73733 read_cache_page_async +EXPORT_SYMBOL vmlinux 0x27db3516 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x27ea775f nla_append +EXPORT_SYMBOL vmlinux 0x280fb3ec devm_ioport_map +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28526061 kunmap_high +EXPORT_SYMBOL vmlinux 0x28643b53 neigh_lookup +EXPORT_SYMBOL vmlinux 0x288839ba invalidate_partition +EXPORT_SYMBOL vmlinux 0x2889f968 lookup_one_len +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a42c1c release_firmware +EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end +EXPORT_SYMBOL vmlinux 0x28c58101 i2c_release_client +EXPORT_SYMBOL vmlinux 0x2910e6d3 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x291e1183 dev_set_group +EXPORT_SYMBOL vmlinux 0x292093f4 native_rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x2927ff4a path_is_under +EXPORT_SYMBOL vmlinux 0x2944c35b __neigh_event_send +EXPORT_SYMBOL vmlinux 0x29493fbf tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x2953738f __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295db419 x86_hyper +EXPORT_SYMBOL vmlinux 0x298982b8 seq_open_private +EXPORT_SYMBOL vmlinux 0x299279f2 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x29ad06b7 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x29ae3967 inet_frag_find +EXPORT_SYMBOL vmlinux 0x29b1c366 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x29b96a8a inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x29bce151 simple_readpage +EXPORT_SYMBOL vmlinux 0x29e792d3 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x29f7671f serio_interrupt +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a023ac7 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x2a100748 sock_create +EXPORT_SYMBOL vmlinux 0x2a122f26 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x2a2d5a5a dget_parent +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3041f7 netlink_ack +EXPORT_SYMBOL vmlinux 0x2a44d243 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x2a64b9cb journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x2a741ea1 mem_cgroup_count_vm_event +EXPORT_SYMBOL vmlinux 0x2a78b2ca kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x2a9b51a0 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa9fc49 unbind_con_driver +EXPORT_SYMBOL vmlinux 0x2ad7161b put_disk +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3ab5b0 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x2b45658e pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x2b646069 set_security_override +EXPORT_SYMBOL vmlinux 0x2b8680bf __block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x2b9a6f9c generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bae43e3 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x2bb053af task_nice +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bbad3c1 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x2bc95bd4 memset +EXPORT_SYMBOL vmlinux 0x2bf8d577 sleep_on_timeout +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c0ecca8 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c201270 journal_wipe +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2ceddb igrab +EXPORT_SYMBOL vmlinux 0x2c512bd2 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x2c5ee19e kernel_accept +EXPORT_SYMBOL vmlinux 0x2c602644 processors +EXPORT_SYMBOL vmlinux 0x2c67ee09 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x2c7d5eba inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x2c957b8d acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x2cafdd81 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x2cc1d654 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x2cc9e736 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x2cd67881 log_start_commit +EXPORT_SYMBOL vmlinux 0x2d02b95a pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1cb57a phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d3db791 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x2d6f0d2b check_disk_change +EXPORT_SYMBOL vmlinux 0x2d70c306 mii_link_ok +EXPORT_SYMBOL vmlinux 0x2d89342a scsi_show_sense_hdr +EXPORT_SYMBOL vmlinux 0x2d927ebe dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x2d9ab239 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x2db2f25e of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2deb8a99 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df232ea do_mmap_pgoff +EXPORT_SYMBOL vmlinux 0x2df9a27c proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x2e03d27a ns_capable +EXPORT_SYMBOL vmlinux 0x2e0c13be __mutex_init +EXPORT_SYMBOL vmlinux 0x2e145386 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2d1482 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x2e42032d genl_unregister_family +EXPORT_SYMBOL vmlinux 0x2e59fc7a ab8500_gpadc_get +EXPORT_SYMBOL vmlinux 0x2e60bace memcpy +EXPORT_SYMBOL vmlinux 0x2ea7d424 gen_pool_free +EXPORT_SYMBOL vmlinux 0x2eaa3c19 poll_initwait +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec5b02d skb_pull +EXPORT_SYMBOL vmlinux 0x2edf6d23 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x2eeceb42 sk_chk_filter +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f408e4b skb_queue_tail +EXPORT_SYMBOL vmlinux 0x2f53fafa fb_get_mode +EXPORT_SYMBOL vmlinux 0x2f5ce4d7 scsi_setup_fs_cmnd +EXPORT_SYMBOL vmlinux 0x2f8a1bcb inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x2fcde7cd mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x2fe4396e secpath_dup +EXPORT_SYMBOL vmlinux 0x30110835 inet_shutdown +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x302b865b x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x304cb95f generic_show_options +EXPORT_SYMBOL vmlinux 0x30678473 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x3069e3e0 dma_async_memcpy_buf_to_buf +EXPORT_SYMBOL vmlinux 0x306d3387 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3083c474 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x30973359 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b55de7 journal_clear_err +EXPORT_SYMBOL vmlinux 0x30c990f3 kdb_current_task +EXPORT_SYMBOL vmlinux 0x30cada8f radix_tree_next_hole +EXPORT_SYMBOL vmlinux 0x30d70fa9 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30e7b873 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x30e9d6d2 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x30eccdca ethtool_op_set_tx_hw_csum +EXPORT_SYMBOL vmlinux 0x31084c45 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x3110e608 journal_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x313cac65 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3169354f tcf_hash_check +EXPORT_SYMBOL vmlinux 0x3178b93c i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x317d10cb qdisc_reset +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31a3eb92 dev_addr_init +EXPORT_SYMBOL vmlinux 0x31c484e0 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x31c514c7 journal_extend +EXPORT_SYMBOL vmlinux 0x31cf8e0b iov_iter_copy_from_user +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31e7872f acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x3240c65b files_lglock_global_lock_online +EXPORT_SYMBOL vmlinux 0x324d994e mca_device_write_pos +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x327041a8 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x327a0ca8 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x328661b1 input_open_device +EXPORT_SYMBOL vmlinux 0x3286bec7 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x328ec023 kill_anon_super +EXPORT_SYMBOL vmlinux 0x3297f505 soft_cursor +EXPORT_SYMBOL vmlinux 0x32ab9902 input_set_keycode +EXPORT_SYMBOL vmlinux 0x32cea339 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x32eeaded _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x33063a56 proc_symlink +EXPORT_SYMBOL vmlinux 0x33200137 isapnp_protocol +EXPORT_SYMBOL vmlinux 0x332d44d0 sock_map_fd +EXPORT_SYMBOL vmlinux 0x333e6d1b ___pskb_trim +EXPORT_SYMBOL vmlinux 0x3341141a zero_fill_bio +EXPORT_SYMBOL vmlinux 0x33481e93 tty_mutex +EXPORT_SYMBOL vmlinux 0x334e1723 napi_frags_skb +EXPORT_SYMBOL vmlinux 0x3368b5d4 input_free_device +EXPORT_SYMBOL vmlinux 0x338bc026 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33ef2c23 thermal_zone_device_register +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x3400a1f8 skb_dequeue +EXPORT_SYMBOL vmlinux 0x342e32e3 ida_simple_get +EXPORT_SYMBOL vmlinux 0x342f60fe apm_info +EXPORT_SYMBOL vmlinux 0x34413e01 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x3450cb39 eth_header_parse +EXPORT_SYMBOL vmlinux 0x3458eef4 uart_match_port +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34837194 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x3485ff68 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x34908c14 print_hex_dump_bytes +EXPORT_SYMBOL vmlinux 0x34990c3a md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349fe426 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x34c265bf atomic64_dec_if_positive_cx8 +EXPORT_SYMBOL vmlinux 0x34fedb70 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x350c6f33 genphy_suspend +EXPORT_SYMBOL vmlinux 0x350fa6a6 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x354a3f7d set_trace_device +EXPORT_SYMBOL vmlinux 0x354dbc30 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x35742df2 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x357c90d2 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0x357ddb84 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x35847014 scsi_free_command +EXPORT_SYMBOL vmlinux 0x35af86fa call_usermodehelper_freeinfo +EXPORT_SYMBOL vmlinux 0x35c2ba9e refrigerator +EXPORT_SYMBOL vmlinux 0x35c7575a blkdev_get +EXPORT_SYMBOL vmlinux 0x35ca8cfa dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x35e03c17 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x35ea6ab7 proto_unregister +EXPORT_SYMBOL vmlinux 0x35fb7982 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x35fdaa4d d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x360af28e of_get_mac_address +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x36163c37 bio_split +EXPORT_SYMBOL vmlinux 0x362e5d0d alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x362ef408 _copy_from_user +EXPORT_SYMBOL vmlinux 0x3680f1c0 follow_pfn +EXPORT_SYMBOL vmlinux 0x36852854 padata_stop +EXPORT_SYMBOL vmlinux 0x36a1d0ce bio_integrity_alloc_bioset +EXPORT_SYMBOL vmlinux 0x36aad357 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x36beabec ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x36c73c6e fail_migrate_page +EXPORT_SYMBOL vmlinux 0x36e360e3 __hw_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x36e3ebc1 netdev_class_remove_file +EXPORT_SYMBOL vmlinux 0x36e8f622 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x370433d7 release_pages +EXPORT_SYMBOL vmlinux 0x3735129b mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x375df686 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x375e7922 pci_dev_put +EXPORT_SYMBOL vmlinux 0x376df4f9 journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x37788721 free_task +EXPORT_SYMBOL vmlinux 0x379f5837 param_set_invbool +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37ea921e vfsmount_lock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37ff4c06 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x380a933a scsi_execute_req +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3837c8b1 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x383ddbe4 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x386e11f8 alloc_tty_driver +EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x388f9128 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x38987e3e journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x389ebce1 vsc824x_add_skew +EXPORT_SYMBOL vmlinux 0x38b92846 llc_remove_pack +EXPORT_SYMBOL vmlinux 0x38cb33c1 get_super +EXPORT_SYMBOL vmlinux 0x38cd938a tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x38d654f1 mmc_hw_reset_check +EXPORT_SYMBOL vmlinux 0x38d93757 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x38fb7945 generic_file_open +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x394b4a81 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x39548777 simple_link +EXPORT_SYMBOL vmlinux 0x3959db68 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x3966a85f tty_shutdown +EXPORT_SYMBOL vmlinux 0x3969f6ee nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x39749e7a __destroy_inode +EXPORT_SYMBOL vmlinux 0x3980aac1 unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3998e8c7 register_netdevice +EXPORT_SYMBOL vmlinux 0x39996f1f security_task_getsecid +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39a10fd6 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x39c1b8d8 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x39e9c84e register_quota_format +EXPORT_SYMBOL vmlinux 0x39edf18f skb_store_bits +EXPORT_SYMBOL vmlinux 0x39f4fd1f __get_page_tail +EXPORT_SYMBOL vmlinux 0x39ffead8 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x3a013b7d remove_wait_queue +EXPORT_SYMBOL vmlinux 0x3a07245b dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a2204c6 security_netlink_recv +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a4541ce md_write_start +EXPORT_SYMBOL vmlinux 0x3a5f41a3 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x3a92a0f2 __lock_page +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa2eb19 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x3ac0ab73 mpage_readpage +EXPORT_SYMBOL vmlinux 0x3af98f9e ioremap_nocache +EXPORT_SYMBOL vmlinux 0x3b3016d3 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3b36bc08 dm_get_device +EXPORT_SYMBOL vmlinux 0x3b3a3a51 pci_map_rom +EXPORT_SYMBOL vmlinux 0x3b5ac575 tty_free_termios +EXPORT_SYMBOL vmlinux 0x3b5fa977 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x3b65a545 km_query +EXPORT_SYMBOL vmlinux 0x3b703cc6 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x3bb51f33 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x3bd1b1f6 msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x3c235c3f check_disk_size_change +EXPORT_SYMBOL vmlinux 0x3c29c710 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x3c2caead seq_bitmap_list +EXPORT_SYMBOL vmlinux 0x3c3adcdf inode_change_ok +EXPORT_SYMBOL vmlinux 0x3c43b021 scsi_calculate_bounce_limit +EXPORT_SYMBOL vmlinux 0x3c45f0b0 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x3c5c8c6e jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x3c78eda7 icmp_send +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c846899 do_sync_write +EXPORT_SYMBOL vmlinux 0x3c915bf6 ata_print_version +EXPORT_SYMBOL vmlinux 0x3c952307 sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x3c9d1211 string_get_size +EXPORT_SYMBOL vmlinux 0x3cb6cfc1 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce8d1a8 of_register_spi_devices +EXPORT_SYMBOL vmlinux 0x3d1d931c padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x3d5326fe fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d7f48d3 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x3d93ee61 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x3d98691f agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3df92938 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0e9023 param_set_long +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e45e9ff register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x3e6693df serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x3e6c4e0b pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x3e8e1e13 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3eb19175 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x3ec38a34 add_disk +EXPORT_SYMBOL vmlinux 0x3ec8886f param_ops_int +EXPORT_SYMBOL vmlinux 0x3ed63055 zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x3ef5742d fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x3efaa060 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0fcf89 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x3f25e000 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x3f2c6f0f dev_trans_start +EXPORT_SYMBOL vmlinux 0x3f402c9f __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f49c245 genphy_resume +EXPORT_SYMBOL vmlinux 0x3f56b133 tcp_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x3f59d7da dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x3f99fd77 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x3f9f868f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x3fa58ef8 wait_for_completion +EXPORT_SYMBOL vmlinux 0x3faf762e read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x3fcea84b mnt_pin +EXPORT_SYMBOL vmlinux 0x3fd9c7c6 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x3ff62317 local_bh_disable +EXPORT_SYMBOL vmlinux 0x4001d0e9 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x401af552 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x4029d238 param_set_copystring +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40315917 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x4036af7c fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x4038094a free_netdev +EXPORT_SYMBOL vmlinux 0x403e52a7 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x405c912a pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x40685e92 security_path_unlink +EXPORT_SYMBOL vmlinux 0x406ca81a cfb_fillrect +EXPORT_SYMBOL vmlinux 0x406dda42 of_device_unregister +EXPORT_SYMBOL vmlinux 0x40966d9c thermal_zone_device_unregister +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c0f0de proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d62384 bio_alloc +EXPORT_SYMBOL vmlinux 0x40f35136 new_inode +EXPORT_SYMBOL vmlinux 0x41088f02 agp_create_memory +EXPORT_SYMBOL vmlinux 0x4108e69a fb_match_mode +EXPORT_SYMBOL vmlinux 0x4118ec54 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x413911bc tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418e2597 journal_set_features +EXPORT_SYMBOL vmlinux 0x418fc46e scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x419ee6e8 idr_pre_get +EXPORT_SYMBOL vmlinux 0x41a5ff78 dev_load +EXPORT_SYMBOL vmlinux 0x41c20abd phy_print_status +EXPORT_SYMBOL vmlinux 0x41c29c7c dev_addr_flush +EXPORT_SYMBOL vmlinux 0x420466b1 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x4211c3c1 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x421ff7bd scsi_device_put +EXPORT_SYMBOL vmlinux 0x4220eef8 input_set_capability +EXPORT_SYMBOL vmlinux 0x42224298 sscanf +EXPORT_SYMBOL vmlinux 0x4239de63 ida_init +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42643c97 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x428bc1fe agp_put_bridge +EXPORT_SYMBOL vmlinux 0x4292364c schedule +EXPORT_SYMBOL vmlinux 0x42977ad4 __hw_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x429fa998 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x42a566c3 mmc_regulator_set_ocr +EXPORT_SYMBOL vmlinux 0x42db2005 sock_wake_async +EXPORT_SYMBOL vmlinux 0x42fd4310 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430bc08d blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x43175ff9 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x4337701e nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x43385ad9 acpi_pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x43433728 scsi_host_get +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x4385c020 kick_iocb +EXPORT_SYMBOL vmlinux 0x439fe8a0 d_path +EXPORT_SYMBOL vmlinux 0x43a0458b blk_start_plug +EXPORT_SYMBOL vmlinux 0x43c324da sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x43da3ff2 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x44005559 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44402b6f param_get_ulong +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x444e8407 simple_getattr +EXPORT_SYMBOL vmlinux 0x44522efc scsi_get_command +EXPORT_SYMBOL vmlinux 0x446d7683 vfs_llseek +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b911c3 rb_replace_node +EXPORT_SYMBOL vmlinux 0x44cf62e1 llc_sap_close +EXPORT_SYMBOL vmlinux 0x44e94fe6 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44e9f74c xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x44ee619c neigh_seq_start +EXPORT_SYMBOL vmlinux 0x44f1606d down_trylock +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x452655f3 __napi_complete +EXPORT_SYMBOL vmlinux 0x4532e1af jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453db1ac register_sysctl_table +EXPORT_SYMBOL vmlinux 0x454dd3b4 destroy_EII_client +EXPORT_SYMBOL vmlinux 0x4550ba8a register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x455d5838 generic_permission +EXPORT_SYMBOL vmlinux 0x4578661a _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45804a23 scsi_reset_provider +EXPORT_SYMBOL vmlinux 0x4589e0f3 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x458e1c42 register_8022_client +EXPORT_SYMBOL vmlinux 0x4596bd12 block_read_full_page +EXPORT_SYMBOL vmlinux 0x45a11b77 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x45b32ac7 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x45bd9efd dm_table_put +EXPORT_SYMBOL vmlinux 0x45ce7c1f uart_add_one_port +EXPORT_SYMBOL vmlinux 0x45d216b9 tcp_put_md5sig_pool +EXPORT_SYMBOL vmlinux 0x45de5faa __serio_register_port +EXPORT_SYMBOL vmlinux 0x46181eee blk_requeue_request +EXPORT_SYMBOL vmlinux 0x46214106 files_lglock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x462f058d dump_seek +EXPORT_SYMBOL vmlinux 0x4656bb0f wait_on_sync_kiocb +EXPORT_SYMBOL vmlinux 0x46591331 journal_update_format +EXPORT_SYMBOL vmlinux 0x465ddb2a llc_mac_hdr_init +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4678e742 sock_init_data +EXPORT_SYMBOL vmlinux 0x467f8b3a tcp_shutdown +EXPORT_SYMBOL vmlinux 0x4680a966 find_vma +EXPORT_SYMBOL vmlinux 0x468386b0 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x46852ed3 bio_pair_release +EXPORT_SYMBOL vmlinux 0x468be985 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x46bec62d skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x46c054e8 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x46c31de9 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x46c51ab9 page_address +EXPORT_SYMBOL vmlinux 0x46cefd97 block_write_full_page_endio +EXPORT_SYMBOL vmlinux 0x46dc41ea neigh_seq_next +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x471edd81 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x472a7d1f xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x473261f5 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x474a615e unregister_cdrom +EXPORT_SYMBOL vmlinux 0x475100c2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x4792c572 down_interruptible +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47b3f862 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x47b6a10f ftrace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x47c7b0d2 cpu_number +EXPORT_SYMBOL vmlinux 0x47cb9c2c tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x47cfcc3b aio_put_req +EXPORT_SYMBOL vmlinux 0x47f95f72 user_path_create +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x481cccf2 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x4820b03d generic_removexattr +EXPORT_SYMBOL vmlinux 0x48268f05 acpi_bus_generate_proc_event +EXPORT_SYMBOL vmlinux 0x482c79ed jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x4857a1b0 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4859c6ea bio_kmalloc +EXPORT_SYMBOL vmlinux 0x486d2f29 dqstats +EXPORT_SYMBOL vmlinux 0x487c1463 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x4884d85e set_pages_wb +EXPORT_SYMBOL vmlinux 0x48855053 sk_run_filter +EXPORT_SYMBOL vmlinux 0x488c2ecd proc_create_data +EXPORT_SYMBOL vmlinux 0x489bbc7b dquot_file_open +EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map +EXPORT_SYMBOL vmlinux 0x48c9415f d_validate +EXPORT_SYMBOL vmlinux 0x48e2b684 __page_symlink +EXPORT_SYMBOL vmlinux 0x48e471ac mark_page_accessed +EXPORT_SYMBOL vmlinux 0x48eb0c0d __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x49070115 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x491dfffd genphy_update_link +EXPORT_SYMBOL vmlinux 0x4947de1e blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495d7c38 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x498022a4 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x49ae1b00 mem_cgroup_update_page_stat +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49c6d6e4 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x49e2e08d mdiobus_write +EXPORT_SYMBOL vmlinux 0x49fa2fad acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0x49fb5642 vfs_rename +EXPORT_SYMBOL vmlinux 0x4a113d90 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x4a2362a7 __alloc_skb +EXPORT_SYMBOL vmlinux 0x4a249d48 simple_setattr +EXPORT_SYMBOL vmlinux 0x4a358252 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x4a42e53b dst_discard +EXPORT_SYMBOL vmlinux 0x4a7f8eb9 ping_prot +EXPORT_SYMBOL vmlinux 0x4aaab2b1 groups_alloc +EXPORT_SYMBOL vmlinux 0x4ab05028 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x4afbc34a blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4aff10e9 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x4b01562f blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1eb24c lock_may_read +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b27183e scsi_print_result +EXPORT_SYMBOL vmlinux 0x4b2e05fc skb_seq_read +EXPORT_SYMBOL vmlinux 0x4b30c958 bdput +EXPORT_SYMBOL vmlinux 0x4b34fbf5 block_all_signals +EXPORT_SYMBOL vmlinux 0x4b4be141 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x4b5f47a2 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b63c709 of_dev_get +EXPORT_SYMBOL vmlinux 0x4b848904 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x4b87d783 nf_afinfo +EXPORT_SYMBOL vmlinux 0x4b8f8845 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x4b947fd3 fasync_helper +EXPORT_SYMBOL vmlinux 0x4b97dd1a dev_mc_flush +EXPORT_SYMBOL vmlinux 0x4b9a731f end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x4bb37a69 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x4bc4d5a5 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x4bc96635 ifla_policy +EXPORT_SYMBOL vmlinux 0x4bca2b6d ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x4bf7b27d inode_sb_list_lock +EXPORT_SYMBOL vmlinux 0x4bfd46cf eisa_bus_type +EXPORT_SYMBOL vmlinux 0x4c1182cb bitmap_scnprintf +EXPORT_SYMBOL vmlinux 0x4c11ca9f efi +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c80ebab of_device_is_available +EXPORT_SYMBOL vmlinux 0x4c81ddb0 __netdev_printk +EXPORT_SYMBOL vmlinux 0x4cbb0181 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x4cbbd171 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x4cc45cc3 register_qdisc +EXPORT_SYMBOL vmlinux 0x4ccb641a xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x4cee4275 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x4cf559b5 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x4d025d04 vfs_stat +EXPORT_SYMBOL vmlinux 0x4d0435a1 find_inode_number +EXPORT_SYMBOL vmlinux 0x4d0c2733 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x4d0c98a4 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x4d20ddbc atomic64_inc_not_zero_cx8 +EXPORT_SYMBOL vmlinux 0x4d31a0ba blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d403cc6 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d89899e ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x4d95f269 acpi_unlock_battery_dir +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4dc45be9 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x4de2d1be agp_copy_info +EXPORT_SYMBOL vmlinux 0x4deeb236 kill_litter_super +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e069249 security_tun_dev_post_create +EXPORT_SYMBOL vmlinux 0x4e21999c acpi_get_child +EXPORT_SYMBOL vmlinux 0x4e29c7cb idr_for_each +EXPORT_SYMBOL vmlinux 0x4e2f7b25 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e581e8d xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e6f33cd mntget +EXPORT_SYMBOL vmlinux 0x4e7b6133 serio_rescan +EXPORT_SYMBOL vmlinux 0x4e830a3e strnicmp +EXPORT_SYMBOL vmlinux 0x4eb11f1f seq_bitmap +EXPORT_SYMBOL vmlinux 0x4ece613a tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x4ed96df7 pci_find_capability +EXPORT_SYMBOL vmlinux 0x4edf6d11 blkdev_put +EXPORT_SYMBOL vmlinux 0x4ee69dcc dquot_alloc +EXPORT_SYMBOL vmlinux 0x4eea77b2 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x4eee0b02 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x4ef60c2b neigh_connected_output +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f453c9f journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7969cc ip6_frag_init +EXPORT_SYMBOL vmlinux 0x4f80d93b bio_get_nr_vecs +EXPORT_SYMBOL vmlinux 0x4f8e35b2 eth_rebuild_header +EXPORT_SYMBOL vmlinux 0x4fa62ae2 mount_ns +EXPORT_SYMBOL vmlinux 0x4faf8b37 read_dev_sector +EXPORT_SYMBOL vmlinux 0x4fb3c6a2 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x4fdc1b0d pci_match_id +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fea71c4 d_clear_need_lookup +EXPORT_SYMBOL vmlinux 0x4ff1c9bc populate_rootfs_wait +EXPORT_SYMBOL vmlinux 0x501c664f pci_pme_capable +EXPORT_SYMBOL vmlinux 0x50211ee3 tcp_free_md5sig_pool +EXPORT_SYMBOL vmlinux 0x502cc5ce dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x5034b032 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x503a1a2e pnpbios_protocol +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x5063697a genl_register_mc_group +EXPORT_SYMBOL vmlinux 0x5063e179 kmap +EXPORT_SYMBOL vmlinux 0x506746b6 getrawmonotonic +EXPORT_SYMBOL vmlinux 0x50674f7f have_submounts +EXPORT_SYMBOL vmlinux 0x508002f7 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x50a1b2ee ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x50ab4c6d files_lglock_global_lock +EXPORT_SYMBOL vmlinux 0x50d575c3 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x50eedeb8 printk +EXPORT_SYMBOL vmlinux 0x50f680e5 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x50fdcd63 blk_end_request +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511bd1a6 get_phy_id +EXPORT_SYMBOL vmlinux 0x5125e1dc padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x5152e605 memcmp +EXPORT_SYMBOL vmlinux 0x51740cc9 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x5186518f profile_pc +EXPORT_SYMBOL vmlinux 0x518b133e ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x5191edd8 balance_dirty_pages_ratelimited_nr +EXPORT_SYMBOL vmlinux 0x5199b493 dump_write +EXPORT_SYMBOL vmlinux 0x51b4f6c5 napi_get_frags +EXPORT_SYMBOL vmlinux 0x51c3ff1b __kmap_atomic +EXPORT_SYMBOL vmlinux 0x51ce5ad3 files_lglock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x51d0f038 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d816e4 seq_write +EXPORT_SYMBOL vmlinux 0x51dce73b xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5208717a bh_submit_read +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x520c6e93 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x522b1fbc kmem_cache_free +EXPORT_SYMBOL vmlinux 0x52322647 sk_common_release +EXPORT_SYMBOL vmlinux 0x5236ea90 cdev_init +EXPORT_SYMBOL vmlinux 0x52423a0c ida_pre_get +EXPORT_SYMBOL vmlinux 0x525d0ad5 register_con_driver +EXPORT_SYMBOL vmlinux 0x52729b4a mmc_request_done +EXPORT_SYMBOL vmlinux 0x52760ca9 getnstimeofday +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52a904e9 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x52bed132 d_lookup +EXPORT_SYMBOL vmlinux 0x52d31f30 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL vmlinux 0x52ebf701 cap_netlink_recv +EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53124f8f pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x5323afaf cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5340556a __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x5351a32e skb_gso_segment +EXPORT_SYMBOL vmlinux 0x5367e88e mfd_add_devices +EXPORT_SYMBOL vmlinux 0x537859d7 d_move +EXPORT_SYMBOL vmlinux 0x538383c0 unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x5383f34b _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x539330ac led_brightness_set +EXPORT_SYMBOL vmlinux 0x5397f2d3 posix_acl_init +EXPORT_SYMBOL vmlinux 0x539f6f5e nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x53a06a1f pnp_find_dev +EXPORT_SYMBOL vmlinux 0x53b0dba7 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x53b2154a wireless_send_event +EXPORT_SYMBOL vmlinux 0x53c05341 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x53f2ef10 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x53fff8b4 dquot_drop +EXPORT_SYMBOL vmlinux 0x5405805e phy_disconnect +EXPORT_SYMBOL vmlinux 0x54152e04 percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x54282bdb jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5444966b scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x54935666 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0x54a285c5 atomic64_dec_return_cx8 +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54aef84d inet_release +EXPORT_SYMBOL vmlinux 0x54cb3205 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x54cd8db5 freeze_bdev +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55554672 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x55593e1c file_sb_list_del +EXPORT_SYMBOL vmlinux 0x5571c337 arp_find +EXPORT_SYMBOL vmlinux 0x5594be03 bitmap_remap +EXPORT_SYMBOL vmlinux 0x55a02ca1 sock_no_connect +EXPORT_SYMBOL vmlinux 0x55b4ef5d vga_get +EXPORT_SYMBOL vmlinux 0x55d59942 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x5600904f fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x560a9a75 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x5614b010 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x561d1a95 module_refcount +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5642793a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x5664aea8 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x56844825 pm860x_page_set_bits +EXPORT_SYMBOL vmlinux 0x568769bc qdisc_list_del +EXPORT_SYMBOL vmlinux 0x569151ab scsi_setup_blk_pc_cmnd +EXPORT_SYMBOL vmlinux 0x569571ca udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x569604ed sock_no_accept +EXPORT_SYMBOL vmlinux 0x569b8b31 bio_add_page +EXPORT_SYMBOL vmlinux 0x56ad809b generic_write_checks +EXPORT_SYMBOL vmlinux 0x56ba394b set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x56c32261 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e4c404 wake_up_process +EXPORT_SYMBOL vmlinux 0x57046198 journal_abort +EXPORT_SYMBOL vmlinux 0x571456fc netlink_set_err +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573457f0 pci_enable_device +EXPORT_SYMBOL vmlinux 0x573d97f5 __rta_fill +EXPORT_SYMBOL vmlinux 0x574336e5 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5781f877 __generic_file_aio_write +EXPORT_SYMBOL vmlinux 0x57831635 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57b57ebe jiffies_to_timespec +EXPORT_SYMBOL vmlinux 0x57ccc00f udp_ioctl +EXPORT_SYMBOL vmlinux 0x57db7242 mangle_path +EXPORT_SYMBOL vmlinux 0x57deac31 fb_class +EXPORT_SYMBOL vmlinux 0x58158e95 i2c_transfer +EXPORT_SYMBOL vmlinux 0x5819579a first_ec +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583f848d pci_set_master +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x58867030 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x5892d54c acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x58a15ef8 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x58c49f6f napi_complete +EXPORT_SYMBOL vmlinux 0x58c84078 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x58f146e1 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x58f65494 locks_free_lock +EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info +EXPORT_SYMBOL vmlinux 0x5927ae66 datagram_poll +EXPORT_SYMBOL vmlinux 0x592b59af acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x5933a12b tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x5934392b fb_register_client +EXPORT_SYMBOL vmlinux 0x59483df1 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5957aebd blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x59666211 alloc_trdev +EXPORT_SYMBOL vmlinux 0x5968c084 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x599a1e7f splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x59abe478 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59c14580 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x59d696b6 register_module_notifier +EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource +EXPORT_SYMBOL vmlinux 0x59e445e7 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x59e70f93 __send_remote_softirq +EXPORT_SYMBOL vmlinux 0x5a02cac4 sk_filter +EXPORT_SYMBOL vmlinux 0x5a0e70c7 dev_gro_receive +EXPORT_SYMBOL vmlinux 0x5a14f88c serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x5a1b49ed tcp_check_req +EXPORT_SYMBOL vmlinux 0x5a21a54a cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x5a2aa62e __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x5a42e51d pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a701489 consume_skb +EXPORT_SYMBOL vmlinux 0x5a744b86 netlink_set_nonroot +EXPORT_SYMBOL vmlinux 0x5aaac003 softnet_data +EXPORT_SYMBOL vmlinux 0x5ab90699 mmc_resume_host +EXPORT_SYMBOL vmlinux 0x5ab93dfa dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5adb9b56 genl_register_family +EXPORT_SYMBOL vmlinux 0x5afaef3f find_get_page +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b25502d dev_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x5b329dcf vfs_create +EXPORT_SYMBOL vmlinux 0x5b41e047 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x5b4ce8a7 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x5b51c6a7 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x5b6e29c2 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x5b7af28b would_dump +EXPORT_SYMBOL vmlinux 0x5b88e8c9 atomic64_sub_return_cx8 +EXPORT_SYMBOL vmlinux 0x5baf48b2 unregister_console +EXPORT_SYMBOL vmlinux 0x5bd48252 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x5be0384c crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x5c0c5040 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one +EXPORT_SYMBOL vmlinux 0x5c3edd59 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x5c470fe8 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x5c5b9b50 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x5c67849f netlink_broadcast +EXPORT_SYMBOL vmlinux 0x5c68705b mca_read_pos +EXPORT_SYMBOL vmlinux 0x5c7803f3 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x5ca3a823 bio_integrity_tag_size +EXPORT_SYMBOL vmlinux 0x5cbeb2fa tcp_v4_md5_do_add +EXPORT_SYMBOL vmlinux 0x5cce8d80 bioset_create +EXPORT_SYMBOL vmlinux 0x5cd37681 __napi_schedule +EXPORT_SYMBOL vmlinux 0x5ce1ff76 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x5cf43dd6 dev_uc_init +EXPORT_SYMBOL vmlinux 0x5d064de2 scsi_host_put +EXPORT_SYMBOL vmlinux 0x5d1f9e64 journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x5d26ed91 inet_ioctl +EXPORT_SYMBOL vmlinux 0x5d36602e ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x5d5b5a16 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x5d832aed security_path_symlink +EXPORT_SYMBOL vmlinux 0x5d914b61 of_get_next_child +EXPORT_SYMBOL vmlinux 0x5da7875c xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x5dbb6293 kobject_get +EXPORT_SYMBOL vmlinux 0x5dce6b75 complete_and_exit +EXPORT_SYMBOL vmlinux 0x5ddfb456 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x5e0c6dff ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x5e42e937 netif_device_detach +EXPORT_SYMBOL vmlinux 0x5e67299b vga_client_register +EXPORT_SYMBOL vmlinux 0x5e6947f7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ecb0486 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed56a4e elv_register_queue +EXPORT_SYMBOL vmlinux 0x5ed6b101 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x5edd0762 bin2bcd +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f12014b contig_page_data +EXPORT_SYMBOL vmlinux 0x5f1bd579 mca_find_adapter +EXPORT_SYMBOL vmlinux 0x5f1c3654 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x5f27544a mempool_destroy +EXPORT_SYMBOL vmlinux 0x5f2f959e xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x5f44cd2f abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x5f4e281d devm_ioremap +EXPORT_SYMBOL vmlinux 0x5f58f676 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x5f99c625 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x5fa17c73 sk_filter_release_rcu +EXPORT_SYMBOL vmlinux 0x5fa49907 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x5fadd474 udp_disconnect +EXPORT_SYMBOL vmlinux 0x5fe41fb6 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x5fe79def pci_release_regions +EXPORT_SYMBOL vmlinux 0x5fe86afd lookup_bdev +EXPORT_SYMBOL vmlinux 0x5ff42b08 acpi_video_get_capabilities +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601831f1 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602bb32d sock_update_classid +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x6068428a set_user_nice +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b2e38a rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x60bde89a sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x6103d43b pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x612390ad netpoll_set_trap +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x613706a1 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x61472f23 blk_insert_request +EXPORT_SYMBOL vmlinux 0x61536865 idr_destroy +EXPORT_SYMBOL vmlinux 0x61619ee6 ethtool_op_set_tx_ipv6_csum +EXPORT_SYMBOL vmlinux 0x6173e682 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x6174c494 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x617c9988 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x619240df put_page +EXPORT_SYMBOL vmlinux 0x619b187b add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x61b5ade0 down_write +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c13423 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x61ea4db6 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x61eeffa1 filemap_flush +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x6216bd26 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x6217526f dm_put_device +EXPORT_SYMBOL vmlinux 0x62193598 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x621d77a0 sleep_on +EXPORT_SYMBOL vmlinux 0x621dd6b3 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622fa02a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache +EXPORT_SYMBOL vmlinux 0x625e6b21 fb_show_logo +EXPORT_SYMBOL vmlinux 0x6270998e nobh_write_end +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6279902f sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x6279d762 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x628cc548 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x62bd8841 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x62cb4cee interruptible_sleep_on +EXPORT_SYMBOL vmlinux 0x62cd8754 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x62d3f79f find_or_create_page +EXPORT_SYMBOL vmlinux 0x62e4f240 ip_options_compile +EXPORT_SYMBOL vmlinux 0x62fe74cb dev_remove_pack +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63319466 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x6332cc1a audit_log_start +EXPORT_SYMBOL vmlinux 0x6337dfce ab8500_gpadc_convert +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x6387c90e mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x63a5d338 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x63aad6d8 ip6_xmit +EXPORT_SYMBOL vmlinux 0x63b1ba13 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x63b1e219 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x63d15991 noop_qdisc +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ecad53 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x63ee2248 register_key_type +EXPORT_SYMBOL vmlinux 0x63fc1568 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x643eaec8 param_get_string +EXPORT_SYMBOL vmlinux 0x6469c2ef kmap_atomic_to_page +EXPORT_SYMBOL vmlinux 0x646c82f1 pci_get_slot +EXPORT_SYMBOL vmlinux 0x646e2255 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x6478134c ec_burst_enable +EXPORT_SYMBOL vmlinux 0x6479bed0 vfs_readv +EXPORT_SYMBOL vmlinux 0x647ed72d genphy_read_status +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64ba94b6 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x64bcd492 follow_down +EXPORT_SYMBOL vmlinux 0x64c3dc40 unlock_page +EXPORT_SYMBOL vmlinux 0x64d0638b acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64ee566e no_llseek +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651cecc7 get_write_access +EXPORT_SYMBOL vmlinux 0x65291cff timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0x653d678d insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x653f94f3 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65414e67 dev_valid_name +EXPORT_SYMBOL vmlinux 0x65451a84 __inet6_hash +EXPORT_SYMBOL vmlinux 0x6554da2b fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x6578520e journal_get_create_access +EXPORT_SYMBOL vmlinux 0x657879ce __init_rwsem +EXPORT_SYMBOL vmlinux 0x6585e310 alloc_pages_exact_nid +EXPORT_SYMBOL vmlinux 0x659a2338 elv_rb_del +EXPORT_SYMBOL vmlinux 0x659d8a88 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x65ad8d1b netdev_update_features +EXPORT_SYMBOL vmlinux 0x65bbbfa5 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x6605f97f flex_array_clear +EXPORT_SYMBOL vmlinux 0x660dcb6e give_up_console +EXPORT_SYMBOL vmlinux 0x66355efc vprintk +EXPORT_SYMBOL vmlinux 0x66523129 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x66772526 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x6680710f tty_vhangup +EXPORT_SYMBOL vmlinux 0x668da8d5 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x669dd28a posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x66a67dab flex_array_shrink +EXPORT_SYMBOL vmlinux 0x66d0ee54 vfsmount_lock_global_unlock +EXPORT_SYMBOL vmlinux 0x66f90be3 journal_stop +EXPORT_SYMBOL vmlinux 0x6700c3b3 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x67053080 current_kernel_time +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x673ff65b tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x67447a28 ipv4_specific +EXPORT_SYMBOL vmlinux 0x67502176 security_path_truncate +EXPORT_SYMBOL vmlinux 0x675a9b1c current_fs_time +EXPORT_SYMBOL vmlinux 0x67804a19 __any_online_cpu +EXPORT_SYMBOL vmlinux 0x67846678 fput +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67b88b2c pagevec_lookup +EXPORT_SYMBOL vmlinux 0x67e1b6af set_disk_ro +EXPORT_SYMBOL vmlinux 0x67f438fa xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x67f7403e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x681f05ba dev_driver_string +EXPORT_SYMBOL vmlinux 0x68244a9e bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x6824b3b2 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x683ec966 pci_get_class +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68955a71 seq_open +EXPORT_SYMBOL vmlinux 0x6899e681 sk_stream_error +EXPORT_SYMBOL vmlinux 0x68a58df3 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x68adb21b pnp_device_attach +EXPORT_SYMBOL vmlinux 0x68b6a700 __kfree_skb +EXPORT_SYMBOL vmlinux 0x68c8134f nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x68e9724b scsi_unregister +EXPORT_SYMBOL vmlinux 0x68f3a564 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x68f66cae mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x68fdd9e0 test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x692a7469 init_net +EXPORT_SYMBOL vmlinux 0x693a0b9c security_inode_init_security +EXPORT_SYMBOL vmlinux 0x693ff13b inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x69481664 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x69692e59 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x698e8ada clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x69984279 pcim_iomap +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a7416e blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b61816 mmc_cache_ctrl +EXPORT_SYMBOL vmlinux 0x69d38ed9 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x69dfef34 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x69e27c7a bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x69e37420 pci_disable_device +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a2286d7 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x6a48e16b percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x6a66a30e iget_locked +EXPORT_SYMBOL vmlinux 0x6a761fce sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a77b938 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x6a7d6cbf neigh_table_init_no_netlink +EXPORT_SYMBOL vmlinux 0x6a8a00b2 elevator_change +EXPORT_SYMBOL vmlinux 0x6a9436fc generic_delete_inode +EXPORT_SYMBOL vmlinux 0x6aa2a02a ethtool_op_set_tx_csum +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6acd7047 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x6ad4341d mdio_bus_type +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aea90df sock_register +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2d497c generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b55960e writeback_inodes_sb_if_idle +EXPORT_SYMBOL vmlinux 0x6b75b028 arp_send +EXPORT_SYMBOL vmlinux 0x6b7ab8fb dev_get_by_flags_rcu +EXPORT_SYMBOL vmlinux 0x6b8b1d07 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x6b937ffb mca_mark_as_used +EXPORT_SYMBOL vmlinux 0x6baae653 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x6bb224af dquot_quota_off +EXPORT_SYMBOL vmlinux 0x6bb7556a nf_log_register +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd1cc11 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be85759 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp +EXPORT_SYMBOL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL vmlinux 0x6c44f910 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c68fe55 udp_proc_register +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c745bbf pagecache_write_end +EXPORT_SYMBOL vmlinux 0x6c80b254 journal_errno +EXPORT_SYMBOL vmlinux 0x6c87309b pm860x_page_bulk_write +EXPORT_SYMBOL vmlinux 0x6c93f2c5 fb_pan_display +EXPORT_SYMBOL vmlinux 0x6c995285 icmpv6_send +EXPORT_SYMBOL vmlinux 0x6ca439f2 dst_alloc +EXPORT_SYMBOL vmlinux 0x6cb153ce __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x6cb356ba stop_tty +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6d068642 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d27ef64 __bitmap_empty +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d328676 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d464175 __sg_free_table +EXPORT_SYMBOL vmlinux 0x6d6cbadc rb_last +EXPORT_SYMBOL vmlinux 0x6da3f4e7 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x6dafd176 page_symlink +EXPORT_SYMBOL vmlinux 0x6dc85f4c __nla_put +EXPORT_SYMBOL vmlinux 0x6de606ab simple_lookup +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6e03ef45 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x6e45b3e0 scsi_add_device +EXPORT_SYMBOL vmlinux 0x6e51ac2e _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x6e65f2dc rtc_lock +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e72925b tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x6e80e1e1 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x6e8650a1 key_put +EXPORT_SYMBOL vmlinux 0x6e936e63 proc_mkdir +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb745dc arp_xmit +EXPORT_SYMBOL vmlinux 0x6eb9a653 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x6ebac5ae set_pages_nx +EXPORT_SYMBOL vmlinux 0x6ebf00e1 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x6ee9fb25 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x6f03c778 devm_free_irq +EXPORT_SYMBOL vmlinux 0x6f1a969a mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x6f27c0cd pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x6f3143b0 phy_attach +EXPORT_SYMBOL vmlinux 0x6f41c7fe rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6fa35675 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x6fbf3206 nonseekable_open +EXPORT_SYMBOL vmlinux 0x6fc2d0a4 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x6fc2d7e7 ps2_init +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6ff360b5 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x6fff393f time_to_tm +EXPORT_SYMBOL vmlinux 0x70105a1b ilookup5 +EXPORT_SYMBOL vmlinux 0x702104e4 iunique +EXPORT_SYMBOL vmlinux 0x703b4352 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x70477b50 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7052c101 ethtool_op_get_tx_csum +EXPORT_SYMBOL vmlinux 0x70548b90 journal_create +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7055806f inet6_bind +EXPORT_SYMBOL vmlinux 0x709d6d85 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x70b02081 input_close_device +EXPORT_SYMBOL vmlinux 0x70bc17d7 inode_wait +EXPORT_SYMBOL vmlinux 0x70d053fd try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat +EXPORT_SYMBOL vmlinux 0x70d52c19 input_flush_device +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x7114a71f bit_waitqueue +EXPORT_SYMBOL vmlinux 0x711c436a unregister_8022_client +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713423a2 sock_no_poll +EXPORT_SYMBOL vmlinux 0x713a5f63 tty_kref_put +EXPORT_SYMBOL vmlinux 0x7155492b remove_proc_entry +EXPORT_SYMBOL vmlinux 0x715c59ee do_truncate +EXPORT_SYMBOL vmlinux 0x716372aa eisa_driver_register +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x719665dd i2c_master_send +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c4a80f blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x720784c1 serio_close +EXPORT_SYMBOL vmlinux 0x7208eef5 __lock_buffer +EXPORT_SYMBOL vmlinux 0x7234eafb otg_state_string +EXPORT_SYMBOL vmlinux 0x72567e10 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0x7257d4f4 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x72692d7e km_state_expired +EXPORT_SYMBOL vmlinux 0x726b70e0 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x729578e7 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x72a1831c generic_readlink +EXPORT_SYMBOL vmlinux 0x72aa82c6 param_ops_charp +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72bf2140 mtrr_add +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72df2f2a up_read +EXPORT_SYMBOL vmlinux 0x72e1b8e3 __lru_cache_add +EXPORT_SYMBOL vmlinux 0x72e50086 vm_stat +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f363b9 request_firmware +EXPORT_SYMBOL vmlinux 0x730a1a58 irq_set_chip +EXPORT_SYMBOL vmlinux 0x730ff363 param_set_uint +EXPORT_SYMBOL vmlinux 0x732b7833 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x733448a1 __dev_printk +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x7346459b register_console +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735b7fe8 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x7362dd1e vfs_fstat +EXPORT_SYMBOL vmlinux 0x736c79dc param_get_byte +EXPORT_SYMBOL vmlinux 0x737de5e9 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x738803e6 strnlen +EXPORT_SYMBOL vmlinux 0x7388503f pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x738863f5 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x73970efa skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x73a903c4 vfsmount_lock_local_lock +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73f11212 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x73f9034f iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x740f38a1 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x74115dbc pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x741a6e22 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x7434d7a6 input_allocate_device +EXPORT_SYMBOL vmlinux 0x743f696b __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x7469fcfe radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x746d3286 tty_devnum +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c52e3a misc_deregister +EXPORT_SYMBOL vmlinux 0x74cc1cbe unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x74d80856 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x74f40dab dentry_open +EXPORT_SYMBOL vmlinux 0x7503358f sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x751b2247 param_get_bool +EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state +EXPORT_SYMBOL vmlinux 0x752d9153 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753a24b5 generic_file_aio_write +EXPORT_SYMBOL vmlinux 0x756540b6 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x7577c3d1 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x759ebac1 vfs_follow_link +EXPORT_SYMBOL vmlinux 0x75bb675a finish_wait +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75c23d85 of_node_put +EXPORT_SYMBOL vmlinux 0x75d004c1 sock_wfree +EXPORT_SYMBOL vmlinux 0x75d87a0f of_match_device +EXPORT_SYMBOL vmlinux 0x75dfa4b2 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x75ff0c05 sock_i_ino +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760b437a unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x7628f3c7 this_cpu_off +EXPORT_SYMBOL vmlinux 0x76347293 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x764504a7 netif_notify_peers +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x76528927 splice_from_pipe_feed +EXPORT_SYMBOL vmlinux 0x76584577 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76b2e91e invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x76b42af2 fib_default_rule_pref +EXPORT_SYMBOL vmlinux 0x76bf656d __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e3b046 security_inode_permission +EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin +EXPORT_SYMBOL vmlinux 0x771599dd dev_change_flags +EXPORT_SYMBOL vmlinux 0x77191749 bioset_free +EXPORT_SYMBOL vmlinux 0x77262769 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x772f9eec __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x7735c2db send_sig_info +EXPORT_SYMBOL vmlinux 0x773a9c94 blk_iopoll_enabled +EXPORT_SYMBOL vmlinux 0x7740c762 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x7759e7f5 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x7766a3c4 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x777539b7 cpu_info +EXPORT_SYMBOL vmlinux 0x77944cb8 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c1675e sock_recvmsg +EXPORT_SYMBOL vmlinux 0x77d4e8d5 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x77df0847 __set_personality +EXPORT_SYMBOL vmlinux 0x77ecac9f zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x77edf722 schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x77f6b24d bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x77fa5d1f ns_to_timespec +EXPORT_SYMBOL vmlinux 0x780a4bd3 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x781f7a9a tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x782b9547 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x783bfb4b dev_printk +EXPORT_SYMBOL vmlinux 0x7844fa57 blk_make_request +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource +EXPORT_SYMBOL vmlinux 0x78941c85 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x789c4256 mntput +EXPORT_SYMBOL vmlinux 0x78a5c99c neigh_direct_output +EXPORT_SYMBOL vmlinux 0x78bb2011 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x78dae168 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e51d0f blk_run_queue +EXPORT_SYMBOL vmlinux 0x7902f3b3 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x79038550 md_register_thread +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x790c1e62 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x791c5718 do_splice_from +EXPORT_SYMBOL vmlinux 0x79216b69 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x794487ee disable_hlt +EXPORT_SYMBOL vmlinux 0x7968aa17 kill_block_super +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b3c5a7 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x79cd5bdd I_BDEV +EXPORT_SYMBOL vmlinux 0x7a1390f7 param_set_bool +EXPORT_SYMBOL vmlinux 0x7a1aa905 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x7a27c184 ewma_init +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a50a315 files_lglock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x7a6d509b xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x7a9bf88d udplite_table +EXPORT_SYMBOL vmlinux 0x7aa81449 tcf_hash_release +EXPORT_SYMBOL vmlinux 0x7ab20221 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x7ab97aa3 mca_device_transform_ioport +EXPORT_SYMBOL vmlinux 0x7acf1068 llc_build_and_send_ui_pkt +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b03848a verify_mem_not_deleted +EXPORT_SYMBOL vmlinux 0x7b0c84c4 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7b0f253b _dev_info +EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name +EXPORT_SYMBOL vmlinux 0x7b473319 complete_request_key +EXPORT_SYMBOL vmlinux 0x7b49e8cc account_page_dirtied +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b56bd05 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x7b664b64 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x7b6d225d devm_iounmap +EXPORT_SYMBOL vmlinux 0x7b82aac0 dma_set_mask +EXPORT_SYMBOL vmlinux 0x7b9a6116 intel_agp_enabled +EXPORT_SYMBOL vmlinux 0x7ba3455d truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x7bb145e6 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x7bb25a1a mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x7be256a3 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x7bfc50c8 __seq_open_private +EXPORT_SYMBOL vmlinux 0x7bfef4e8 neigh_for_each +EXPORT_SYMBOL vmlinux 0x7c0edd7d acpi_check_region +EXPORT_SYMBOL vmlinux 0x7c0ffdee scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x7c2590aa mii_check_link +EXPORT_SYMBOL vmlinux 0x7c3f3873 cdev_alloc +EXPORT_SYMBOL vmlinux 0x7c3fdc66 blk_init_queue +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4926d7 do_splice_direct +EXPORT_SYMBOL vmlinux 0x7c5c8bc2 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x7c60d66e getname +EXPORT_SYMBOL vmlinux 0x7c7a949d scsi_register +EXPORT_SYMBOL vmlinux 0x7c904ded unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7ce0ae7c param_get_long +EXPORT_SYMBOL vmlinux 0x7cf5931c md_write_end +EXPORT_SYMBOL vmlinux 0x7cf94916 vm_map_ram +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d14172e pci_do_scan_bus +EXPORT_SYMBOL vmlinux 0x7d374752 agp_bridge +EXPORT_SYMBOL vmlinux 0x7d4bcec7 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x7d53d5f0 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x7d6658d0 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x7d69f399 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x7da38841 file_open_root +EXPORT_SYMBOL vmlinux 0x7dbc06db dev_addr_del +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dc2a805 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x7dd7d610 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0x7de866c7 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x7de9f742 ppp_input_error +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e1d17cf atomic64_read_cx8 +EXPORT_SYMBOL vmlinux 0x7e2b0839 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x7e394c4e sysctl_local_reserved_ports +EXPORT_SYMBOL vmlinux 0x7e588178 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x7e5af3ca fget_raw +EXPORT_SYMBOL vmlinux 0x7e6499ed __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x7e715972 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x7e95c3f9 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x7e9ebb05 kernel_thread +EXPORT_SYMBOL vmlinux 0x7ea9d7c8 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ed95a06 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x7ee867f4 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x7f13482e i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x7f18b194 kacpi_hotplug_wq +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f326fa8 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x7f3ed796 dquot_transfer +EXPORT_SYMBOL vmlinux 0x7f4117e3 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x7f55ccd8 sock_create_lite +EXPORT_SYMBOL vmlinux 0x7f658e80 _raw_write_lock +EXPORT_SYMBOL vmlinux 0x7f82829c __block_write_begin +EXPORT_SYMBOL vmlinux 0x7f8e47e6 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x7f8f5483 llc_add_pack +EXPORT_SYMBOL vmlinux 0x7fa0d118 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x7fbb14ed block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x7fdddd0e set_blocksize +EXPORT_SYMBOL vmlinux 0x7fe84ed0 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x800df1d7 groups_free +EXPORT_SYMBOL vmlinux 0x801b238e journal_release_buffer +EXPORT_SYMBOL vmlinux 0x80207c21 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x802c288f tty_get_baud_rate +EXPORT_SYMBOL vmlinux 0x802dbb9e skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x804efcad wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x807caa3b dquot_resume +EXPORT_SYMBOL vmlinux 0x80819fc8 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x80923cdd filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x80e05a01 key_type_keyring +EXPORT_SYMBOL vmlinux 0x80e10bf5 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x80fd08f9 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x8105f59a filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x8107041a vfs_rmdir +EXPORT_SYMBOL vmlinux 0x810862c7 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x810b3618 param_ops_string +EXPORT_SYMBOL vmlinux 0x8113cc6f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x81171d86 __register_binfmt +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814c9b55 skb_unlink +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x8150c0ba mempool_resize +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x817200c8 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x819e1c25 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x81a386e1 kobject_init +EXPORT_SYMBOL vmlinux 0x81a5e22a kobject_del +EXPORT_SYMBOL vmlinux 0x81d10f5f trace_seq_putc +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e1fbe4 mmc_do_release_host +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82034bdc posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x822b7f9a tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x8234d02c __quota_error +EXPORT_SYMBOL vmlinux 0x8235805b memmove +EXPORT_SYMBOL vmlinux 0x82456c1e seq_release +EXPORT_SYMBOL vmlinux 0x8251bcc3 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x8254e286 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x8260686f bitmap_find_next_zero_area +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b2f08a set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x82f0b849 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x82f28720 alloc_disk +EXPORT_SYMBOL vmlinux 0x82f6ff6b jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x82f79a91 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x83207575 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x83218b4f sk_receive_skb +EXPORT_SYMBOL vmlinux 0x832d4217 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x8343cd74 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x83513058 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x836873a2 proc_dointvec +EXPORT_SYMBOL vmlinux 0x83800bfa kref_init +EXPORT_SYMBOL vmlinux 0x8384a2c5 tty_unlock +EXPORT_SYMBOL vmlinux 0x83a2d244 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x83a476ce bitmap_scnlistprintf +EXPORT_SYMBOL vmlinux 0x83b151d5 vc_cons +EXPORT_SYMBOL vmlinux 0x83c32d44 set_create_files_as +EXPORT_SYMBOL vmlinux 0x83c8fd65 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x83e44d0a blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x83e7bb8f inet_csk_accept +EXPORT_SYMBOL vmlinux 0x83f99d3b km_policy_expired +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x841923d2 d_alloc_name +EXPORT_SYMBOL vmlinux 0x8436f8e3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x8443c0b2 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x845a7ef0 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x846bcc01 dm_table_get +EXPORT_SYMBOL vmlinux 0x846c5f4f __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x8497d5f8 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x84be886f completion_done +EXPORT_SYMBOL vmlinux 0x84dc16ec get_disk +EXPORT_SYMBOL vmlinux 0x850ac217 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x8540c816 fb_find_mode +EXPORT_SYMBOL vmlinux 0x855d15ee security_file_permission +EXPORT_SYMBOL vmlinux 0x855e2881 __find_get_block +EXPORT_SYMBOL vmlinux 0x8562dd7d end_writeback +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856f2c02 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x858c7f55 llc_sap_find +EXPORT_SYMBOL vmlinux 0x85adc4fe follow_up +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85c1c565 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x85c5f3ef netif_rx +EXPORT_SYMBOL vmlinux 0x85d16790 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e7deb2 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x8609c2ac udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x860c4529 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865481ba dev_mc_init +EXPORT_SYMBOL vmlinux 0x865ab805 pci_remove_behind_bridge +EXPORT_SYMBOL vmlinux 0x865f5b81 cont_write_begin +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869708e5 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x869c610c mount_pseudo +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86b9c0ef textsearch_prepare +EXPORT_SYMBOL vmlinux 0x86bfae20 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x86c98ad6 uart_register_driver +EXPORT_SYMBOL vmlinux 0x86d5255f _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x86e9e7e9 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fc69e6 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x870bf928 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x87185e61 agp_backend_release +EXPORT_SYMBOL vmlinux 0x871b4959 __cleancache_flush_page +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872ffc82 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x87340eab pci_fixup_device +EXPORT_SYMBOL vmlinux 0x8758f1ce find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878d958f blk_delay_queue +EXPORT_SYMBOL vmlinux 0x87a3ddcb phy_device_register +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87b4630b ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x87b7066c vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x87be8b09 tty_port_put +EXPORT_SYMBOL vmlinux 0x87c8dffd md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x87d36ea3 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x881039d0 zlib_inflate +EXPORT_SYMBOL vmlinux 0x881d6178 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x8834396c mod_timer +EXPORT_SYMBOL vmlinux 0x883d30a5 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x8841345c vfs_mknod +EXPORT_SYMBOL vmlinux 0x88532c00 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x885d1f63 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x885d5bc4 find_lock_page +EXPORT_SYMBOL vmlinux 0x8860bd5a skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x888d84d9 ethtool_invalid_flags +EXPORT_SYMBOL vmlinux 0x88cc52da tty_port_init +EXPORT_SYMBOL vmlinux 0x88dcb90b unregister_snap_client +EXPORT_SYMBOL vmlinux 0x88e5a094 pci_choose_state +EXPORT_SYMBOL vmlinux 0x88e88136 ioremap_prot +EXPORT_SYMBOL vmlinux 0x88ed0505 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x88fc003f scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x88fdd0f1 llc_sap_open +EXPORT_SYMBOL vmlinux 0x891c6e0f devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x8924c457 framebuffer_release +EXPORT_SYMBOL vmlinux 0x8928a435 kfree_skb +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x893430f8 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x8941c91a start_tty +EXPORT_SYMBOL vmlinux 0x89480ef7 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x8949858b schedule_work +EXPORT_SYMBOL vmlinux 0x8966ee4f netdev_printk +EXPORT_SYMBOL vmlinux 0x897473df mktime +EXPORT_SYMBOL vmlinux 0x89769584 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x897feeda tty_port_close_start +EXPORT_SYMBOL vmlinux 0x8982f3bf dev_mc_add +EXPORT_SYMBOL vmlinux 0x89a5879c aio_complete +EXPORT_SYMBOL vmlinux 0x89c47c66 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x89d22efe key_revoke +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d66811 build_ehash_secret +EXPORT_SYMBOL vmlinux 0x89da4432 of_iomap +EXPORT_SYMBOL vmlinux 0x8a1615d6 mempool_create_node +EXPORT_SYMBOL vmlinux 0x8a42bfdc genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a5e05b4 tcf_hash_lookup +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a9008d1 mmc_host_disable +EXPORT_SYMBOL vmlinux 0x8a93b57a ida_destroy +EXPORT_SYMBOL vmlinux 0x8a976c5c cfb_copyarea +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa733b6 padata_do_serial +EXPORT_SYMBOL vmlinux 0x8ae5c9f1 tcp_v4_get_peer +EXPORT_SYMBOL vmlinux 0x8ae94bcb __devm_release_region +EXPORT_SYMBOL vmlinux 0x8af89d00 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll +EXPORT_SYMBOL vmlinux 0x8b1a7a66 pcie_aspm_enabled +EXPORT_SYMBOL vmlinux 0x8b23feee dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x8b265457 touch_atime +EXPORT_SYMBOL vmlinux 0x8b29edc6 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x8b2d5554 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x8b2de405 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x8b3ad809 block_truncate_page +EXPORT_SYMBOL vmlinux 0x8b5847e0 kern_path_create +EXPORT_SYMBOL vmlinux 0x8b5f4a2e IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b688f5f lookup_hash +EXPORT_SYMBOL vmlinux 0x8b689f47 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x8b6dfa3d inet_recvmsg +EXPORT_SYMBOL vmlinux 0x8b80a28d tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bb890d0 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x8bbc1af7 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x8bc0c970 pipe_unlock +EXPORT_SYMBOL vmlinux 0x8c1707b7 noop_llseek +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c34ca0d scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x8c3d8de9 generic_write_end +EXPORT_SYMBOL vmlinux 0x8c425be1 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x8c48ead6 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x8c493480 __sock_create +EXPORT_SYMBOL vmlinux 0x8c4976ad bio_copy_user +EXPORT_SYMBOL vmlinux 0x8c7a3757 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x8cc1b6ad input_register_device +EXPORT_SYMBOL vmlinux 0x8cc4f7fd tcf_hash_destroy +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cdbe4f7 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x8cf6ffe3 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x8cfb10fe agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x8d0a244f __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x8d311abe ilookup +EXPORT_SYMBOL vmlinux 0x8d3cd3e5 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x8d3d2555 d_genocide +EXPORT_SYMBOL vmlinux 0x8d4a294f pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d5fdb13 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x8d600c51 ether_setup +EXPORT_SYMBOL vmlinux 0x8d63d0a7 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d7a7e9c block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d94b1ca tty_write_room +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state +EXPORT_SYMBOL vmlinux 0x8dd28345 ihold +EXPORT_SYMBOL vmlinux 0x8de3b468 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x8de5db46 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x8dfcdb2e scm_fp_dup +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e0650d9 journal_start +EXPORT_SYMBOL vmlinux 0x8e0b7743 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x8e3dd918 kthread_stop +EXPORT_SYMBOL vmlinux 0x8e415640 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x8e4a8fc3 update_region +EXPORT_SYMBOL vmlinux 0x8e555738 param_get_uint +EXPORT_SYMBOL vmlinux 0x8e579399 udp_prot +EXPORT_SYMBOL vmlinux 0x8e75a30b kset_unregister +EXPORT_SYMBOL vmlinux 0x8e75c0df alloc_disk_node +EXPORT_SYMBOL vmlinux 0x8e83b47b invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8ea036ed ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ec8522d pci_enable_obff +EXPORT_SYMBOL vmlinux 0x8ee69235 timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8eeb1236 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x8ef52109 journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x8ef667bc pci_vpd_truncate +EXPORT_SYMBOL vmlinux 0x8efaff84 uart_resume_port +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f3e5a00 dev_open +EXPORT_SYMBOL vmlinux 0x8f48679a rb_prev +EXPORT_SYMBOL vmlinux 0x8f824e06 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x8f86f67b iterate_mounts +EXPORT_SYMBOL vmlinux 0x8f8dd966 bio_sector_offset +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fc63c04 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x8fc7f839 param_set_charp +EXPORT_SYMBOL vmlinux 0x8fce00cf bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x8fde473f __serio_register_driver +EXPORT_SYMBOL vmlinux 0x8fe64ba3 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x8fead9d9 ip_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops +EXPORT_SYMBOL vmlinux 0x8ff66782 param_get_ushort +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x90136d1a inet_twsk_deschedule +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x9047dc65 iput +EXPORT_SYMBOL vmlinux 0x90550d8c netdev_info +EXPORT_SYMBOL vmlinux 0x90719f31 __ps2_command +EXPORT_SYMBOL vmlinux 0x907a4724 user_path_at +EXPORT_SYMBOL vmlinux 0x90849efb dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x909fc6af skb_copy_datagram_from_iovec +EXPORT_SYMBOL vmlinux 0x90a1601f dmi_check_system +EXPORT_SYMBOL vmlinux 0x90a6a2bd neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90cad4c1 journal_ack_err +EXPORT_SYMBOL vmlinux 0x90f13632 proc_dostring +EXPORT_SYMBOL vmlinux 0x910f7382 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x912bda01 pci_dev_get +EXPORT_SYMBOL vmlinux 0x9144a8e2 ec_burst_disable +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914c5e3b pci_enable_msi_block +EXPORT_SYMBOL vmlinux 0x91605059 truncate_setsize +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x918346f8 led_blink_set +EXPORT_SYMBOL vmlinux 0x91837615 pm860x_page_reg_read +EXPORT_SYMBOL vmlinux 0x91d4ba75 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x91e6778c register_gifconf +EXPORT_SYMBOL vmlinux 0x91f1636f sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x9219b1eb input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9254bd51 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x925c10d2 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x92640f41 pci_enable_ido +EXPORT_SYMBOL vmlinux 0x9266fb48 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x92671c08 dma_async_memcpy_pg_to_pg +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x929f2b3f wireless_spy_update +EXPORT_SYMBOL vmlinux 0x92a05f3d idr_get_new +EXPORT_SYMBOL vmlinux 0x92b48b1b da903x_query_status +EXPORT_SYMBOL vmlinux 0x92c6b967 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x92d627c8 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x92d974f0 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x92e99d61 dev_addr_add +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931c565b sk_free +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table +EXPORT_SYMBOL vmlinux 0x934091cf max8925_set_bits +EXPORT_SYMBOL vmlinux 0x93448c57 screen_info +EXPORT_SYMBOL vmlinux 0x934d21d2 sock_rfree +EXPORT_SYMBOL vmlinux 0x938e66db in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x9396bc8a phy_connect +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b56927 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x93c03638 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x93c651be acpi_info +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x94123d1b sock_wmalloc +EXPORT_SYMBOL vmlinux 0x941ed3f8 prepare_creds +EXPORT_SYMBOL vmlinux 0x94229709 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x944a9d1f blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x94856de6 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x94864c7a wl12xx_get_platform_data +EXPORT_SYMBOL vmlinux 0x9491d516 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b10659 scsi_init_io +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94bb50f4 simple_fill_super +EXPORT_SYMBOL vmlinux 0x94bf79bb cdev_del +EXPORT_SYMBOL vmlinux 0x94cc4cd0 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x94cefd85 kunmap +EXPORT_SYMBOL vmlinux 0x95098427 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x953db383 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x954488a4 syncookie_secret +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954ff913 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x957b38a7 skb_recycle_check +EXPORT_SYMBOL vmlinux 0x9580f7bc vm_event_states +EXPORT_SYMBOL vmlinux 0x95d61e11 scsi_adjust_queue_depth +EXPORT_SYMBOL vmlinux 0x95da06b1 cap_file_mmap +EXPORT_SYMBOL vmlinux 0x95f0077b blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x95f89a33 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x9600168c kobject_add +EXPORT_SYMBOL vmlinux 0x9618626c dcache_readdir +EXPORT_SYMBOL vmlinux 0x963bf80f dma_async_memcpy_buf_to_pg +EXPORT_SYMBOL vmlinux 0x9645bdb0 __locks_copy_lock +EXPORT_SYMBOL vmlinux 0x96531742 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x9659bc28 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x96707348 vfs_write +EXPORT_SYMBOL vmlinux 0x96849b42 dm_register_target +EXPORT_SYMBOL vmlinux 0x96889c5b jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968a0aca copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x9696ac72 rename_lock +EXPORT_SYMBOL vmlinux 0x96a592f6 seq_puts +EXPORT_SYMBOL vmlinux 0x96b5d9bd mmc_can_erase +EXPORT_SYMBOL vmlinux 0x96c7e43b seq_printf +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d1f2a7 mmc_assume_removable +EXPORT_SYMBOL vmlinux 0x96e79739 idr_get_new_above +EXPORT_SYMBOL vmlinux 0x9739c75a scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x978c71c3 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97cba3c3 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x97dcef29 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97df0c76 mpage_writepages +EXPORT_SYMBOL vmlinux 0x9810ac2e rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x9839161c pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x9861cc0c tty_pair_get_pty +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x9894beb9 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x989e98ba vmap +EXPORT_SYMBOL vmlinux 0x98e52f22 nf_log_packet +EXPORT_SYMBOL vmlinux 0x98e93ae0 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x98f1e7f2 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x98fa21b0 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x98fcb919 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x98fee558 napi_frags_finish +EXPORT_SYMBOL vmlinux 0x99052a84 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x9924f043 dev_close +EXPORT_SYMBOL vmlinux 0x992635d5 thaw_bdev +EXPORT_SYMBOL vmlinux 0x993025a5 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x99525e3a vfsmount_lock_local_unlock +EXPORT_SYMBOL vmlinux 0x9969de70 intel_gtt_insert_pages +EXPORT_SYMBOL vmlinux 0x9987e1f8 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99b787b1 journal_load +EXPORT_SYMBOL vmlinux 0x99b789d7 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x99bfbe39 get_unused_fd +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99dde35f block_write_full_page +EXPORT_SYMBOL vmlinux 0x99ed651c d_find_alias +EXPORT_SYMBOL vmlinux 0x9a1256dd tcp_read_sock +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a2365b7 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x9a3a74f3 vfs_statfs +EXPORT_SYMBOL vmlinux 0x9a443a3f security_path_mkdir +EXPORT_SYMBOL vmlinux 0x9a46a1f7 ip6_route_output +EXPORT_SYMBOL vmlinux 0x9a55626f __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x9a55e8d0 posix_lock_file +EXPORT_SYMBOL vmlinux 0x9a578f69 phy_device_free +EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock +EXPORT_SYMBOL vmlinux 0x9a6ea366 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x9a753a9b bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x9a8052d7 generic_make_request +EXPORT_SYMBOL vmlinux 0x9a8336bb key_unlink +EXPORT_SYMBOL vmlinux 0x9aac385f of_parse_phandles_with_args +EXPORT_SYMBOL vmlinux 0x9ab8808c param_get_charp +EXPORT_SYMBOL vmlinux 0x9ad33067 __blk_end_request +EXPORT_SYMBOL vmlinux 0x9adee10f security_path_chown +EXPORT_SYMBOL vmlinux 0x9af93df8 mmc_card_sleep +EXPORT_SYMBOL vmlinux 0x9b2a7d29 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x9b2f0f5d register_md_personality +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b5119dc inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b75cb81 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x9b813aae __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x9ba177c9 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bc3b305 phy_start +EXPORT_SYMBOL vmlinux 0x9bcac72b xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x9bce482f __release_region +EXPORT_SYMBOL vmlinux 0x9bde5f49 setup_new_exec +EXPORT_SYMBOL vmlinux 0x9bed0c54 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x9c012508 fb_parse_edid +EXPORT_SYMBOL vmlinux 0x9c1685d3 input_inject_event +EXPORT_SYMBOL vmlinux 0x9c23bcba atomic64_add_return_cx8 +EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero +EXPORT_SYMBOL vmlinux 0x9c5f81da cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x9c694f75 genl_unregister_ops +EXPORT_SYMBOL vmlinux 0x9c7077bd enable_hlt +EXPORT_SYMBOL vmlinux 0x9c8ecd26 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0x9cb417d9 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x9cb96e92 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x9cc373ec jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x9cdf0ec5 vfsmount_lock_global_lock_online +EXPORT_SYMBOL vmlinux 0x9ceb163c memcpy_toiovec +EXPORT_SYMBOL vmlinux 0x9cfd56c5 scsi_print_status +EXPORT_SYMBOL vmlinux 0x9d0d9029 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x9d169302 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d52667d blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x9d70226e follow_down_one +EXPORT_SYMBOL vmlinux 0x9da1ee12 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x9db8a6fb dquot_commit_info +EXPORT_SYMBOL vmlinux 0x9dcb6748 atomic64_xchg_cx8 +EXPORT_SYMBOL vmlinux 0x9dcea961 phy_stop +EXPORT_SYMBOL vmlinux 0x9ded7ef3 rt6_lookup +EXPORT_SYMBOL vmlinux 0x9df32c5b napi_skb_finish +EXPORT_SYMBOL vmlinux 0x9e0ae3ce get_unmapped_area_prot +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2000a7 memcpy_toiovecend +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e37f213 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5f180e generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x9e607910 audit_log +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x9e711c59 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9cc633 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x9e9f1714 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x9eb63878 tty_pair_get_tty +EXPORT_SYMBOL vmlinux 0x9ecd3056 scsi_print_command +EXPORT_SYMBOL vmlinux 0x9ed685ee iov_iter_advance +EXPORT_SYMBOL vmlinux 0x9eecde16 do_brk +EXPORT_SYMBOL vmlinux 0x9eed4c19 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x9f02c9a1 __scm_send +EXPORT_SYMBOL vmlinux 0x9f0a3022 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x9f13d48d xfrm_register_km +EXPORT_SYMBOL vmlinux 0x9f206cb8 freeze_super +EXPORT_SYMBOL vmlinux 0x9f2bdaac __bitmap_or +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f491e5d ftrace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fb2aa48 otg_set_transceiver +EXPORT_SYMBOL vmlinux 0x9fb3dd30 memcpy_fromiovec +EXPORT_SYMBOL vmlinux 0x9fbb96a5 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x9fc0021b blk_register_region +EXPORT_SYMBOL vmlinux 0x9fcb83eb udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff0acb9 pci_iounmap +EXPORT_SYMBOL vmlinux 0xa0104a55 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0xa0262366 posix_lock_file_wait +EXPORT_SYMBOL vmlinux 0xa02654c5 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa050a61a tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa064ce12 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xa06c1bb8 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa07fce06 simple_rename +EXPORT_SYMBOL vmlinux 0xa0a587dd of_node_get +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0ceef51 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f7f2f1 alloc_file +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa1015172 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa14f3d8c ewma_add +EXPORT_SYMBOL vmlinux 0xa15768a8 sk_alloc +EXPORT_SYMBOL vmlinux 0xa16220df tcp_sendpage +EXPORT_SYMBOL vmlinux 0xa166a6be blk_start_queue +EXPORT_SYMBOL vmlinux 0xa1715001 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa1745c7c __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xa179f77d ip_defrag +EXPORT_SYMBOL vmlinux 0xa1805d2a otg_put_transceiver +EXPORT_SYMBOL vmlinux 0xa1b14ac1 pci_target_state +EXPORT_SYMBOL vmlinux 0xa1b1ea3a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1ba2fdb vfsmount_lock_global_lock +EXPORT_SYMBOL vmlinux 0xa1c3884a dm_unregister_target +EXPORT_SYMBOL vmlinux 0xa1c4b6d2 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xa1c5a3b3 cleancache_enabled +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1cc0577 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xa1d0f842 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xa1e6e7c5 netpoll_setup +EXPORT_SYMBOL vmlinux 0xa1f578df agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xa1f61226 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xa20ce1b8 net_msg_warn +EXPORT_SYMBOL vmlinux 0xa2385740 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xa249799c shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xa2614108 skb_copy +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28a628e skb_insert +EXPORT_SYMBOL vmlinux 0xa2a5fd77 inet_ehash_secret +EXPORT_SYMBOL vmlinux 0xa2c02a33 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xa2c56c31 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa2e0d638 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xa2eacfea udplite_prot +EXPORT_SYMBOL vmlinux 0xa2ef34d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xa2f816b9 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xa32629f6 dns_query +EXPORT_SYMBOL vmlinux 0xa32a8af4 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xa332cdd1 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa34f1ef5 crc32_le +EXPORT_SYMBOL vmlinux 0xa3504378 rwsem_wake +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa35de80f ipv4_config +EXPORT_SYMBOL vmlinux 0xa363dab4 udp_table +EXPORT_SYMBOL vmlinux 0xa3719c7d tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xa380fb0b get_io_context +EXPORT_SYMBOL vmlinux 0xa39b38d5 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xa3a2108a mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xa3a43ee4 __scsi_put_command +EXPORT_SYMBOL vmlinux 0xa3b711bb nf_hook_slow +EXPORT_SYMBOL vmlinux 0xa3cea1a6 __put_cred +EXPORT_SYMBOL vmlinux 0xa3da3d34 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xa3dbf4dd pcim_iounmap +EXPORT_SYMBOL vmlinux 0xa40083ed agp_free_memory +EXPORT_SYMBOL vmlinux 0xa405663b mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xa411d1ab ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa43b9539 memcpy_fromiovecend +EXPORT_SYMBOL vmlinux 0xa43eacf0 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xa4671088 sg_miter_next +EXPORT_SYMBOL vmlinux 0xa476c191 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xa488271b skb_copy_and_csum_datagram_iovec +EXPORT_SYMBOL vmlinux 0xa48bd821 bdi_unregister +EXPORT_SYMBOL vmlinux 0xa49ae6da atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c7d6f0 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xa4d3053d ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4de33de ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xa4eb4eff _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa512ce02 pci_select_bars +EXPORT_SYMBOL vmlinux 0xa51cb039 netif_skb_features +EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP +EXPORT_SYMBOL vmlinux 0xa5246a03 thermal_zone_bind_cooling_device +EXPORT_SYMBOL vmlinux 0xa5753e1b flush_old_exec +EXPORT_SYMBOL vmlinux 0xa587e09d pcim_enable_device +EXPORT_SYMBOL vmlinux 0xa58dcee8 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xa59188bc abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last +EXPORT_SYMBOL vmlinux 0xa5ce5e4b dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource +EXPORT_SYMBOL vmlinux 0xa5d86424 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xa5da0abd acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0xa5fab9fe default_llseek +EXPORT_SYMBOL vmlinux 0xa6239722 tcp_v4_tw_get_peer +EXPORT_SYMBOL vmlinux 0xa62f1a08 sock_no_getname +EXPORT_SYMBOL vmlinux 0xa630d95c d_splice_alias +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa644cca7 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xa648d9ae of_i2c_register_devices +EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xa65ca904 __f_setown +EXPORT_SYMBOL vmlinux 0xa660fcc2 elv_rb_add +EXPORT_SYMBOL vmlinux 0xa671ceee end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67da660 mempool_alloc +EXPORT_SYMBOL vmlinux 0xa67e2845 dq_data_lock +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6940533 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xa6941570 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa69797a2 bio_map_kern +EXPORT_SYMBOL vmlinux 0xa699e541 elevator_exit +EXPORT_SYMBOL vmlinux 0xa6a07eab mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xa6af11b3 tcp_prot +EXPORT_SYMBOL vmlinux 0xa6b13658 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xa6b3c522 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xa6b68a4b eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xa6d68097 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xa6dcc773 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa6ff1f2d dev_set_drvdata +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa7146a0b inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xa71e7463 __first_cpu +EXPORT_SYMBOL vmlinux 0xa72bdda9 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xa72cb65c should_remove_suid +EXPORT_SYMBOL vmlinux 0xa734a7cb xfrm_cfg_mutex +EXPORT_SYMBOL vmlinux 0xa7389f6b inet6_getname +EXPORT_SYMBOL vmlinux 0xa74713de bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xa7657071 phy_find_first +EXPORT_SYMBOL vmlinux 0xa785fadd pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xa78e7109 inet_select_addr +EXPORT_SYMBOL vmlinux 0xa7a3e0b7 mca_device_read_pos +EXPORT_SYMBOL vmlinux 0xa7c4653f dentry_unhash +EXPORT_SYMBOL vmlinux 0xa7d62276 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0xa7e47f5a dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xa8223905 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa8232c78 strtobool +EXPORT_SYMBOL vmlinux 0xa83ef5cb skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xa857090d mca_unregister_driver +EXPORT_SYMBOL vmlinux 0xa8871370 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xa890cccd jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xa8bd818b fget +EXPORT_SYMBOL vmlinux 0xa8d0b51d of_device_alloc +EXPORT_SYMBOL vmlinux 0xa8d68abd acpi_warning +EXPORT_SYMBOL vmlinux 0xa8d93ea7 kill_fasync +EXPORT_SYMBOL vmlinux 0xa8eb4f68 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa906b31e alloc_fddidev +EXPORT_SYMBOL vmlinux 0xa913cf55 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xa91b5561 acpi_video_backlight_support +EXPORT_SYMBOL vmlinux 0xa95d8fc7 directly_mappable_cdev_bdi +EXPORT_SYMBOL vmlinux 0xa967df2e pci_assign_resource +EXPORT_SYMBOL vmlinux 0xa987c7a8 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xa9919f8b blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc +EXPORT_SYMBOL vmlinux 0xa9d3dd11 kill_pgrp +EXPORT_SYMBOL vmlinux 0xa9da9bcb md_integrity_register +EXPORT_SYMBOL vmlinux 0xa9e701b7 put_tty_driver +EXPORT_SYMBOL vmlinux 0xa9f008b3 ethtool_op_get_sg +EXPORT_SYMBOL vmlinux 0xaa3a4b23 submit_bio +EXPORT_SYMBOL vmlinux 0xaa46cb2b nla_put +EXPORT_SYMBOL vmlinux 0xaa4fad7b tcf_hash_search +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa84a8ae acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xaa8e5f3e skb_gro_reset_offset +EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xaaaaacd1 ioremap_wc +EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xaab9f7e7 node_states +EXPORT_SYMBOL vmlinux 0xaabae86d nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xaabdc726 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xaad6c439 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadf2d08 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaebe34f mca_write_pos +EXPORT_SYMBOL vmlinux 0xaaf45875 acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab28271c i8253_lock +EXPORT_SYMBOL vmlinux 0xab4edd21 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xab56d6dd mca_register_driver +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab6c378d bdi_destroy +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab8fd26c in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xab997f93 send_sig +EXPORT_SYMBOL vmlinux 0xabbb414d of_find_matching_node +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd0c91c rtc_time_to_tm +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0fe306 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xac269590 register_framebuffer +EXPORT_SYMBOL vmlinux 0xac2e972e current_task +EXPORT_SYMBOL vmlinux 0xac58ea5e acpi_unload_table_id +EXPORT_SYMBOL vmlinux 0xac6855b0 gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xac6878e4 atomic64_inc_return_cx8 +EXPORT_SYMBOL vmlinux 0xac6c4c00 ethtool_op_set_flags +EXPORT_SYMBOL vmlinux 0xac7380c8 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xac8801f9 do_munmap +EXPORT_SYMBOL vmlinux 0xac88c0bc pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xac8920e1 acpi_bus_start +EXPORT_SYMBOL vmlinux 0xaca1e9f4 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xacc25f6d pci_restore_state +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaceaee0f inode_needs_sync +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf7a13a neigh_update +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad07f027 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xad0ee31b uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xad13c689 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xad34919f alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xad466018 quota_send_warning +EXPORT_SYMBOL vmlinux 0xad498fa3 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xad5db8e5 take_over_console +EXPORT_SYMBOL vmlinux 0xad825ff1 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xadaa2657 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0xadcac4a3 vfsmount_lock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xadf39c7a call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region +EXPORT_SYMBOL vmlinux 0xadfdf5a5 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xae0820da input_unregister_handler +EXPORT_SYMBOL vmlinux 0xae2039c8 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xae51a697 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xae7d3215 unregister_key_type +EXPORT_SYMBOL vmlinux 0xae8befe9 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xaec427ae simple_transaction_set +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaf18936e tcp_close +EXPORT_SYMBOL vmlinux 0xaf2d3517 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf43ef7f fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xaf4f780b dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xaf5f7994 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf618050 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xaf6e3d8d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xaf836a3b mnt_unpin +EXPORT_SYMBOL vmlinux 0xaf91d89f __kernel_param_lock +EXPORT_SYMBOL vmlinux 0xafc3db95 of_find_node_by_path +EXPORT_SYMBOL vmlinux 0xafc98313 generic_writepages +EXPORT_SYMBOL vmlinux 0xafcf215e register_netdev +EXPORT_SYMBOL vmlinux 0xafed88cb mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xb00af3cb uart_get_divisor +EXPORT_SYMBOL vmlinux 0xb0103493 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xb0146c3a param_set_byte +EXPORT_SYMBOL vmlinux 0xb018c7ba tcp_gro_receive +EXPORT_SYMBOL vmlinux 0xb0207ecf ___ratelimit +EXPORT_SYMBOL vmlinux 0xb04c3904 mmc_card_awake +EXPORT_SYMBOL vmlinux 0xb05d1ef2 mmc_card_can_sleep +EXPORT_SYMBOL vmlinux 0xb077ef32 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xb0b847ac __bitmap_full +EXPORT_SYMBOL vmlinux 0xb0b9168c mem_map +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0f65874 padata_start +EXPORT_SYMBOL vmlinux 0xb11ae646 proc_net_netfilter +EXPORT_SYMBOL vmlinux 0xb11c4e4a force_sig +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb13f6fc0 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xb15de9b1 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xb19760c3 bitmap_onto +EXPORT_SYMBOL vmlinux 0xb1c21c36 tcp_child_process +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1d9523e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1e7bf51 dqput +EXPORT_SYMBOL vmlinux 0xb1ea27de pci_bus_type +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb232ef38 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xb236726c simple_dir_operations +EXPORT_SYMBOL vmlinux 0xb23ab6b5 locks_delete_block +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2744b36 down_write_trylock +EXPORT_SYMBOL vmlinux 0xb274869f ethtool_op_get_flags +EXPORT_SYMBOL vmlinux 0xb2d61f3f simple_write_begin +EXPORT_SYMBOL vmlinux 0xb2dd4713 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xb2e8d93f simple_release_fs +EXPORT_SYMBOL vmlinux 0xb2efb6be mca_read_stored_pos +EXPORT_SYMBOL vmlinux 0xb2f31b7b phy_driver_register +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb31526ee sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb3305d52 send_remote_softirq +EXPORT_SYMBOL vmlinux 0xb34d4c2e acpi_terminate +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3a307c6 si_meminfo +EXPORT_SYMBOL vmlinux 0xb3a43d70 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xb3d88d63 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0xb3fc091e tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xb40910e9 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xb412edcd ab8500_gpadc_read_raw +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb444fbf5 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xb4547e1a ethtool_op_get_tso +EXPORT_SYMBOL vmlinux 0xb45578b8 memscan +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4cfa5e9 eth_header +EXPORT_SYMBOL vmlinux 0xb4d8c46e migrate_page +EXPORT_SYMBOL vmlinux 0xb4d98470 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xb4f55b10 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xb5044271 vsscanf +EXPORT_SYMBOL vmlinux 0xb515575e skb_put +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5426e55 brioctl_set +EXPORT_SYMBOL vmlinux 0xb54533f7 usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xb54915ec tcp_parse_options +EXPORT_SYMBOL vmlinux 0xb550f865 make_bad_inode +EXPORT_SYMBOL vmlinux 0xb5665f21 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xb5765a07 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xb5a3e73e tty_throttle +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b98843 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5dc7c88 d_add_ci +EXPORT_SYMBOL vmlinux 0xb5f1f0e7 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xb5f310bb __bread +EXPORT_SYMBOL vmlinux 0xb5fb870b commit_creds +EXPORT_SYMBOL vmlinux 0xb628f715 files_lglock_local_lock +EXPORT_SYMBOL vmlinux 0xb6355253 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xb6588e7a idr_remove +EXPORT_SYMBOL vmlinux 0xb66e3e96 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xb6723455 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6822a33 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xb6845cc5 input_release_device +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb68e67f7 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xb68ed530 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xb6990ae2 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xb6a61a86 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b560ad d_drop +EXPORT_SYMBOL vmlinux 0xb6b99ea6 tc_classify +EXPORT_SYMBOL vmlinux 0xb6c5a973 scsi_show_result +EXPORT_SYMBOL vmlinux 0xb6e9282e nobh_writepage +EXPORT_SYMBOL vmlinux 0xb6e9d86b tcp_poll +EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy +EXPORT_SYMBOL vmlinux 0xb708e171 mutex_trylock +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb762c779 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xb7660369 con_is_bound +EXPORT_SYMBOL vmlinux 0xb76ba0ef scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xb7896a32 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xb78c61e8 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb79f223e xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xb7b61546 crc32_be +EXPORT_SYMBOL vmlinux 0xb7c336fc inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xb7e34175 inet6_release +EXPORT_SYMBOL vmlinux 0xb7f97b7d pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xb8020f43 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb82058c7 ____pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xb835b3e4 radix_tree_prev_hole +EXPORT_SYMBOL vmlinux 0xb83a1628 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xb84156f1 skb_pad +EXPORT_SYMBOL vmlinux 0xb848f639 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xb85f991e xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb863e8df seq_putc +EXPORT_SYMBOL vmlinux 0xb86e4ab9 random32 +EXPORT_SYMBOL vmlinux 0xb8759454 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xb894926d schedule_work_on +EXPORT_SYMBOL vmlinux 0xb89af9bf srandom32 +EXPORT_SYMBOL vmlinux 0xb8aa2342 __check_region +EXPORT_SYMBOL vmlinux 0xb8ccd4f7 vga_tryget +EXPORT_SYMBOL vmlinux 0xb8d4cb0a serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb902112b get_fs_type +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb91b2ad9 pnp_device_detach +EXPORT_SYMBOL vmlinux 0xb935b2e0 mount_subtree +EXPORT_SYMBOL vmlinux 0xb94904a0 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xb98a0185 rtc_tm_to_time +EXPORT_SYMBOL vmlinux 0xb99698f4 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xb99cf582 ida_get_new_above +EXPORT_SYMBOL vmlinux 0xb9b8c487 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xb9ebf801 scsi_nonblockable_ioctl +EXPORT_SYMBOL vmlinux 0xb9fd2205 add_efi_memmap +EXPORT_SYMBOL vmlinux 0xba1bd0cb vfs_unlink +EXPORT_SYMBOL vmlinux 0xba1ccb58 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba573379 dst_release +EXPORT_SYMBOL vmlinux 0xba8ea6ad rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xbaaab8ae timespec_to_jiffies +EXPORT_SYMBOL vmlinux 0xbaee2963 of_phy_connect_fixed_link +EXPORT_SYMBOL vmlinux 0xbaf21222 mca_device_set_claim +EXPORT_SYMBOL vmlinux 0xbb0d2cef dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xbb15925b agp_find_bridge +EXPORT_SYMBOL vmlinux 0xbb167766 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xbb188017 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xbb189cad disallow_signal +EXPORT_SYMBOL vmlinux 0xbb3264d1 replace_mount_options +EXPORT_SYMBOL vmlinux 0xbb3ecd9d pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xbb5a2fc1 netdev_class_create_file +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb71e815 simple_statfs +EXPORT_SYMBOL vmlinux 0xbb837d27 machine_real_restart +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba159e0 files_lglock_local_unlock +EXPORT_SYMBOL vmlinux 0xbba19b14 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xbba37b6d nf_register_hook +EXPORT_SYMBOL vmlinux 0xbba5de61 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xbbb30970 __getblk +EXPORT_SYMBOL vmlinux 0xbbd03609 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xbbd7a9ff xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xbbf91744 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xbc08dc08 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xbc1906ac ethtool_op_set_tso +EXPORT_SYMBOL vmlinux 0xbc1afedf up_write +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc4006b5 security_inode_readlink +EXPORT_SYMBOL vmlinux 0xbc4878ed skb_append +EXPORT_SYMBOL vmlinux 0xbc492a6c mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xbc52ce9d netdev_crit +EXPORT_SYMBOL vmlinux 0xbc5a259d security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xbc64ae71 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xbc746475 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xbc754a61 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xbc7d8b22 pci_find_bus +EXPORT_SYMBOL vmlinux 0xbc88e4ff blk_get_queue +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc42241 may_umount +EXPORT_SYMBOL vmlinux 0xbcc8fb18 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xbcdff7a3 unload_nls +EXPORT_SYMBOL vmlinux 0xbce829d6 journal_lock_updates +EXPORT_SYMBOL vmlinux 0xbce97800 try_to_release_page +EXPORT_SYMBOL vmlinux 0xbcf3309d set_bdi_congested +EXPORT_SYMBOL vmlinux 0xbd0654cb __breadahead +EXPORT_SYMBOL vmlinux 0xbd10166d dev_mc_del +EXPORT_SYMBOL vmlinux 0xbd11cc52 register_snap_client +EXPORT_SYMBOL vmlinux 0xbd2bc673 padata_alloc +EXPORT_SYMBOL vmlinux 0xbd2f3ab3 km_policy_notify +EXPORT_SYMBOL vmlinux 0xbd7315ee serio_reconnect +EXPORT_SYMBOL vmlinux 0xbd822bc2 dquot_destroy +EXPORT_SYMBOL vmlinux 0xbd8b8c14 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xbda243b0 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xbdbe7378 cookie_check_timestamp +EXPORT_SYMBOL vmlinux 0xbdc20c68 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xbdc6ad11 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xbddba74e pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xbdde1e0b inet_frags_init +EXPORT_SYMBOL vmlinux 0xbdf5c25c rb_next +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe15f9ba fb_validate_mode +EXPORT_SYMBOL vmlinux 0xbe1b7817 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xbe28c1a5 pci_set_mwi +EXPORT_SYMBOL vmlinux 0xbe2c0274 add_timer +EXPORT_SYMBOL vmlinux 0xbe2dc751 of_parse_phandle +EXPORT_SYMBOL vmlinux 0xbe3b797f pci_remove_bus +EXPORT_SYMBOL vmlinux 0xbe48607d __dst_free +EXPORT_SYMBOL vmlinux 0xbe4c6f15 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource +EXPORT_SYMBOL vmlinux 0xbe707135 write_inode_now +EXPORT_SYMBOL vmlinux 0xbe955432 bio_integrity_get_tag +EXPORT_SYMBOL vmlinux 0xbeacf82a tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xbeb40849 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xbeded4fe splice_from_pipe_begin +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbeeaf27c dquot_acquire +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefca150 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xbf2202e5 dev_notice +EXPORT_SYMBOL vmlinux 0xbf22fbd8 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xbf2c1684 set_device_ro +EXPORT_SYMBOL vmlinux 0xbf3df95c scsi_cmd_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xbf5875bb dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0xbf7cde7a abort_creds +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present +EXPORT_SYMBOL vmlinux 0xbf98943b netdev_set_bond_master +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb08460 default_file_splice_read +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc61674 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xbfdff814 of_get_address +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user +EXPORT_SYMBOL vmlinux 0xc0054ff7 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xc00ab062 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xc018964e tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xc01cf848 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero +EXPORT_SYMBOL vmlinux 0xc0265dc8 sk_wait_data +EXPORT_SYMBOL vmlinux 0xc0465a85 cdrom_release +EXPORT_SYMBOL vmlinux 0xc049eff2 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xc0580937 rb_erase +EXPORT_SYMBOL vmlinux 0xc05aa745 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xc06024b7 simple_rmdir +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a65b6d ip_nat_decode_session +EXPORT_SYMBOL vmlinux 0xc0a8ff16 acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xc0b03362 dma_find_channel +EXPORT_SYMBOL vmlinux 0xc0b2494c vfsmount_lock_lock_init +EXPORT_SYMBOL vmlinux 0xc0c5bbf6 address_space_init_once +EXPORT_SYMBOL vmlinux 0xc0cb7dd9 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xc0e5eb4f sock_no_bind +EXPORT_SYMBOL vmlinux 0xc0e8c66e vfs_read +EXPORT_SYMBOL vmlinux 0xc1016899 dquot_enable +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc16003e8 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xc162308c buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xc1634021 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xc164e5ba jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xc168693d fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xc16b412a blk_put_request +EXPORT_SYMBOL vmlinux 0xc1811465 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xc1c2dd09 __hw_addr_flush +EXPORT_SYMBOL vmlinux 0xc1c611bb inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc20330f1 pcibios_set_irq_routing +EXPORT_SYMBOL vmlinux 0xc233f439 i2c_smbus_process_call +EXPORT_SYMBOL vmlinux 0xc23dff09 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc256e762 __bitmap_equal +EXPORT_SYMBOL vmlinux 0xc278c00a ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll +EXPORT_SYMBOL vmlinux 0xc2891968 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xc295942e kernel_connect +EXPORT_SYMBOL vmlinux 0xc2a610e6 lock_super +EXPORT_SYMBOL vmlinux 0xc2ae03be path_put +EXPORT_SYMBOL vmlinux 0xc2d42771 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xc2d60cde fifo_set_limit +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e61e5e simple_empty +EXPORT_SYMBOL vmlinux 0xc2eb322a __elv_add_request +EXPORT_SYMBOL vmlinux 0xc2ff5bde sk_dst_check +EXPORT_SYMBOL vmlinux 0xc316b98c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0xc3187c23 generic_write_sync +EXPORT_SYMBOL vmlinux 0xc32e356b max8998_read_reg +EXPORT_SYMBOL vmlinux 0xc33298df kobject_put +EXPORT_SYMBOL vmlinux 0xc34ff14c dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xc3672557 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xc37a4998 do_splice_to +EXPORT_SYMBOL vmlinux 0xc37e5ba2 fd_install +EXPORT_SYMBOL vmlinux 0xc39b9571 pci_set_ltr +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3afade4 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc3b102ac udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xc3cf1128 in_group_p +EXPORT_SYMBOL vmlinux 0xc3dd3784 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xc3e364cd blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xc3e585d1 thermal_cooling_device_register +EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr +EXPORT_SYMBOL vmlinux 0xc3fe87c8 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc402cc99 register_acpi_notifier +EXPORT_SYMBOL vmlinux 0xc40a7261 unregister_con_driver +EXPORT_SYMBOL vmlinux 0xc41e8f7a wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xc42d6dae netdev_warn +EXPORT_SYMBOL vmlinux 0xc439effa intel_gtt_unmap_memory +EXPORT_SYMBOL vmlinux 0xc4554217 up +EXPORT_SYMBOL vmlinux 0xc45abe8a pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xc469a4c8 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xc4967edc jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4bd92cc invalidate_bdev +EXPORT_SYMBOL vmlinux 0xc4c34d3a pid_task +EXPORT_SYMBOL vmlinux 0xc4c6b2d3 bio_endio +EXPORT_SYMBOL vmlinux 0xc4c94d7f inet_register_protosw +EXPORT_SYMBOL vmlinux 0xc4cd6924 flock_lock_file_wait +EXPORT_SYMBOL vmlinux 0xc52f5714 fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0xc54fbf68 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc5590c20 mmc_suspend_host +EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xc57235be skb_set_dev +EXPORT_SYMBOL vmlinux 0xc582b737 acpi_bus_add +EXPORT_SYMBOL vmlinux 0xc5a37aa8 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xc5d5d7e5 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e354d4 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xc5ec82fe skb_dst_set_noref +EXPORT_SYMBOL vmlinux 0xc5f46566 rb_augment_insert +EXPORT_SYMBOL vmlinux 0xc60bce3c mdiobus_alloc +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63cc125 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc6414c25 sg_miter_start +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc6890ef3 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0xc68a23e6 register_exec_domain +EXPORT_SYMBOL vmlinux 0xc69b17cf ip_cmsg_recv +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cd90c8 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xc6dfc086 udp_seq_open +EXPORT_SYMBOL vmlinux 0xc7040649 tcp_tso_segment +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72ccace __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xc76088f6 tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xc76322e1 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc79c7e63 set_pages_uc +EXPORT_SYMBOL vmlinux 0xc7a2f653 set_binfmt +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7be70c7 blk_rq_init +EXPORT_SYMBOL vmlinux 0xc7ca7a67 key_validate +EXPORT_SYMBOL vmlinux 0xc7e9a028 put_io_context +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7eea848 x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0xc829eae5 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc83cdb7b put_mnt_ns +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc84e6a7e serio_open +EXPORT_SYMBOL vmlinux 0xc8897fe2 revalidate_disk +EXPORT_SYMBOL vmlinux 0xc899c1d2 netlink_unicast +EXPORT_SYMBOL vmlinux 0xc8a4accf posix_test_lock +EXPORT_SYMBOL vmlinux 0xc8b4126c inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8dc28b4 thermal_zone_device_update +EXPORT_SYMBOL vmlinux 0xc8e3d27b blk_free_tags +EXPORT_SYMBOL vmlinux 0xc8f2b699 locks_init_lock +EXPORT_SYMBOL vmlinux 0xc8ffcb55 bio_free +EXPORT_SYMBOL vmlinux 0xc9051a38 dev_alloc_skb +EXPORT_SYMBOL vmlinux 0xc94fa003 irq_stat +EXPORT_SYMBOL vmlinux 0xc9641711 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xc96c5fa4 dev_add_pack +EXPORT_SYMBOL vmlinux 0xc97d7750 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xc996d097 del_timer +EXPORT_SYMBOL vmlinux 0xc9ab2eef acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xc9bd4159 __vlan_find_dev_deep +EXPORT_SYMBOL vmlinux 0xc9cd1aed nf_register_hooks +EXPORT_SYMBOL vmlinux 0xc9d4d4a0 otg_get_transceiver +EXPORT_SYMBOL vmlinux 0xca18fd74 skb_queue_head +EXPORT_SYMBOL vmlinux 0xca1d21b4 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xca1da6f3 padata_free +EXPORT_SYMBOL vmlinux 0xca5dbc50 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xca83171c __break_lease +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca8c0298 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xca931b08 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xcaa05120 seq_lseek +EXPORT_SYMBOL vmlinux 0xcab33eb5 generic_pipe_buf_map +EXPORT_SYMBOL vmlinux 0xcabeebef file_remove_suid +EXPORT_SYMBOL vmlinux 0xcae9e151 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xcb3184b8 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xcb3cf8b4 names_cachep +EXPORT_SYMBOL vmlinux 0xcb451e56 idr_init +EXPORT_SYMBOL vmlinux 0xcb52d3ad __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xcb55487c skb_copy_expand +EXPORT_SYMBOL vmlinux 0xcb7131fb fb_get_options +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb906ecf elevator_init +EXPORT_SYMBOL vmlinux 0xcb99edb0 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd81d10 netlink_dump_start +EXPORT_SYMBOL vmlinux 0xcbd8625b tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xcbee706d dquot_free_inode +EXPORT_SYMBOL vmlinux 0xcbfce846 sock_no_listen +EXPORT_SYMBOL vmlinux 0xcc06c96a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xcc2277ca tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc36f32e fb_unregister_client +EXPORT_SYMBOL vmlinux 0xcc4737c4 sync_inode +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5b27b5 acpi_extract_package +EXPORT_SYMBOL vmlinux 0xcc75eb81 qdisc_watchdog_schedule +EXPORT_SYMBOL vmlinux 0xcc7fa952 local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0xcc83a8c6 of_get_parent +EXPORT_SYMBOL vmlinux 0xcc8e9542 key_link +EXPORT_SYMBOL vmlinux 0xcca375f4 vfs_readlink +EXPORT_SYMBOL vmlinux 0xccb0670c netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xccb95eec submit_bh +EXPORT_SYMBOL vmlinux 0xccc368f2 mca_device_transform_memory +EXPORT_SYMBOL vmlinux 0xccc7503e clip_tbl_hook +EXPORT_SYMBOL vmlinux 0xcd000798 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd4e9fd1 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xcd6338d4 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xcd8b1801 md_flush_request +EXPORT_SYMBOL vmlinux 0xcd9d1b60 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xcdcc29db d_alloc_root +EXPORT_SYMBOL vmlinux 0xcde172ac radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xcdf4185c dcb_setapp +EXPORT_SYMBOL vmlinux 0xcdfbd3c9 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xcdfc1855 is_container_init +EXPORT_SYMBOL vmlinux 0xcdfd2415 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xce19bac5 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3e1fc2 dev_warn +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5c8d83 scsi_finish_command +EXPORT_SYMBOL vmlinux 0xce7ce037 of_translate_address +EXPORT_SYMBOL vmlinux 0xce8529e1 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xcea18bcd journal_init_inode +EXPORT_SYMBOL vmlinux 0xceae3b63 mpage_readpages +EXPORT_SYMBOL vmlinux 0xcec1d3ee tty_port_open +EXPORT_SYMBOL vmlinux 0xcedd8319 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf015f7b do_settimeofday +EXPORT_SYMBOL vmlinux 0xcf1d28ab acpi_error +EXPORT_SYMBOL vmlinux 0xcf268377 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xcf2852b3 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xcf2c5780 dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xcf334743 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xcf3ca560 lro_receive_skb +EXPORT_SYMBOL vmlinux 0xcf3f3d87 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xcf61ea2d blk_stop_queue +EXPORT_SYMBOL vmlinux 0xcf640c18 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf755558 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xcf91a530 jbd2_journal_release_buffer +EXPORT_SYMBOL vmlinux 0xcfb9006e jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0xcfc47aa4 keyring_clear +EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe +EXPORT_SYMBOL vmlinux 0xcfeb0be9 rb_augment_erase_begin +EXPORT_SYMBOL vmlinux 0xd003bf05 netdev_err +EXPORT_SYMBOL vmlinux 0xd009173d md_unregister_thread +EXPORT_SYMBOL vmlinux 0xd00a65e0 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xd0181f4f __bitmap_xor +EXPORT_SYMBOL vmlinux 0xd021b639 seq_release_private +EXPORT_SYMBOL vmlinux 0xd04253e2 i2c_use_client +EXPORT_SYMBOL vmlinux 0xd069c028 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xd069cbb5 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xd06b25a8 md_error +EXPORT_SYMBOL vmlinux 0xd08197fa acpi_load_tables +EXPORT_SYMBOL vmlinux 0xd085185b pci_iomap +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0aa2860 console_stop +EXPORT_SYMBOL vmlinux 0xd0d0bb35 blk_queue_merge_bvec +EXPORT_SYMBOL vmlinux 0xd0d42c42 mod_timer_pending +EXPORT_SYMBOL vmlinux 0xd0d8621b strlen +EXPORT_SYMBOL vmlinux 0xd0ddfc96 tty_set_operations +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f0d945 down_read +EXPORT_SYMBOL vmlinux 0xd0f15ce2 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f53aec tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd11c0dc1 __kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xd1472061 acpi_pci_register_driver +EXPORT_SYMBOL vmlinux 0xd172cb8d netdev_increment_features +EXPORT_SYMBOL vmlinux 0xd177ccbb blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xd17aa133 ip_route_input_common +EXPORT_SYMBOL vmlinux 0xd18b6eb2 acpi_unmap_lsapic +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd19be9bc set_page_dirty +EXPORT_SYMBOL vmlinux 0xd1ae91cd xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2041af1 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xd22ed244 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xd2329de3 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xd23abc10 pnp_get_resource +EXPORT_SYMBOL vmlinux 0xd23e21fe ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25872b8 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xd2589ec4 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd266efe7 mempool_create +EXPORT_SYMBOL vmlinux 0xd26786ee pci_enable_bridges +EXPORT_SYMBOL vmlinux 0xd267f8bf acpi_lock_battery_dir +EXPORT_SYMBOL vmlinux 0xd276f795 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd27a25b8 arp_invalidate +EXPORT_SYMBOL vmlinux 0xd27ba9f1 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xd2965f6f kthread_should_stop +EXPORT_SYMBOL vmlinux 0xd2a75ee0 dmi_first_match +EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table +EXPORT_SYMBOL vmlinux 0xd2c2392d acpi_lock_ac_dir +EXPORT_SYMBOL vmlinux 0xd2d51180 of_gpio_count +EXPORT_SYMBOL vmlinux 0xd2dcae57 get_phy_device +EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd2fd7016 pci_enable_ltr +EXPORT_SYMBOL vmlinux 0xd30bc276 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xd3187da4 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd33a4fbf lro_receive_frags +EXPORT_SYMBOL vmlinux 0xd3434c3f kref_sub +EXPORT_SYMBOL vmlinux 0xd35204f3 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xd35e249a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xd38480a0 rb_augment_erase_end +EXPORT_SYMBOL vmlinux 0xd3893a3f phy_register_fixup +EXPORT_SYMBOL vmlinux 0xd3951da4 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xd3aca594 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0xd3c08471 gen_pool_create +EXPORT_SYMBOL vmlinux 0xd3dcab0b flex_array_alloc +EXPORT_SYMBOL vmlinux 0xd3e9795b __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd408f38f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xd40f7832 vfs_fsync +EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource +EXPORT_SYMBOL vmlinux 0xd4239c6f mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xd458ecb7 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xd4693bf9 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xd46a2332 mmc_start_req +EXPORT_SYMBOL vmlinux 0xd4d7b10d input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xd4d88e69 eth_header_cache +EXPORT_SYMBOL vmlinux 0xd506a1ba netdev_features_change +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd513364f blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xd52ffbd1 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xd547d2f7 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xd54c96c7 atomic64_add_unless_cx8 +EXPORT_SYMBOL vmlinux 0xd5573eff elv_abort_queue +EXPORT_SYMBOL vmlinux 0xd56d6a10 may_umount_tree +EXPORT_SYMBOL vmlinux 0xd57fe53a pci_disable_ltr +EXPORT_SYMBOL vmlinux 0xd596e02f acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xd5a384ef dev_alloc_name +EXPORT_SYMBOL vmlinux 0xd5a7b179 create_mnt_ns +EXPORT_SYMBOL vmlinux 0xd5ac5b65 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0xd5b037e1 kref_put +EXPORT_SYMBOL vmlinux 0xd5b1376d register_shrinker +EXPORT_SYMBOL vmlinux 0xd5b587fe dev_uc_add +EXPORT_SYMBOL vmlinux 0xd5c515d3 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xd5d80a08 tty_port_close +EXPORT_SYMBOL vmlinux 0xd5f2172f del_timer_sync +EXPORT_SYMBOL vmlinux 0xd601473d security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xd605ae07 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd628ff78 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xd629316a llc_sap_list_lock +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63bfb21 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xd66c8a28 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xd677bdd9 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xd6a13acc ethtool_op_set_sg +EXPORT_SYMBOL vmlinux 0xd6ad580d key_payload_reserve +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6b964fd i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xd6c25446 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xd6c6672f blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd72d26ed dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xd74fd39d __free_pages +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7796b7b d_delete +EXPORT_SYMBOL vmlinux 0xd77a5aa5 __bitmap_and +EXPORT_SYMBOL vmlinux 0xd79b5a02 allow_signal +EXPORT_SYMBOL vmlinux 0xd7aac17d path_get +EXPORT_SYMBOL vmlinux 0xd7b31db1 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xd7bd3af2 add_wait_queue +EXPORT_SYMBOL vmlinux 0xd7d70747 blk_get_request +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e5fbc6 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xd7eb08e7 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xd816bfad blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xd83fc5a9 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xd8478e40 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xd856493c inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xd85df7d4 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xd869a121 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xd86a81b7 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xd88fc4e5 md_check_recovery +EXPORT_SYMBOL vmlinux 0xd8996205 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xd8996ef2 kernel_read +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a2ab95 in_egroup_p +EXPORT_SYMBOL vmlinux 0xd8a60c09 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0xd8ad13ca request_key +EXPORT_SYMBOL vmlinux 0xd8ccfc1a key_task_permission +EXPORT_SYMBOL vmlinux 0xd8df0eb7 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f5a6a2 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd90ce423 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd919ef4c thaw_process +EXPORT_SYMBOL vmlinux 0xd92088bb generic_getxattr +EXPORT_SYMBOL vmlinux 0xd92afabe bitmap_clear +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd977f980 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd986129b of_phy_connect +EXPORT_SYMBOL vmlinux 0xd99bd6b3 mdiobus_register +EXPORT_SYMBOL vmlinux 0xd9b4c118 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xd9bd8eae dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xd9bef8e2 pipe_to_file +EXPORT_SYMBOL vmlinux 0xd9c272aa mca_mark_as_unused +EXPORT_SYMBOL vmlinux 0xd9c5de9a filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xd9e2eae6 block_write_begin +EXPORT_SYMBOL vmlinux 0xd9f7cd56 skb_copy_datagram_const_iovec +EXPORT_SYMBOL vmlinux 0xda05cc63 __skb_get_rxhash +EXPORT_SYMBOL vmlinux 0xda07303c fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xda0a6b0e acpi_map_lsapic +EXPORT_SYMBOL vmlinux 0xda43d454 arp_create +EXPORT_SYMBOL vmlinux 0xda499ec6 pskb_copy +EXPORT_SYMBOL vmlinux 0xda5c0143 pnp_possible_config +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda7f0e41 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte +EXPORT_SYMBOL vmlinux 0xda96f03b mii_nway_restart +EXPORT_SYMBOL vmlinux 0xdaa39903 dev_err +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaa95a35 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xdac7c1d8 d_rehash +EXPORT_SYMBOL vmlinux 0xdad43ba5 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xdae31960 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xdaf3bf4a generic_read_dir +EXPORT_SYMBOL vmlinux 0xdb154d5a security_file_mmap +EXPORT_SYMBOL vmlinux 0xdb2da55c thermal_cooling_device_unregister +EXPORT_SYMBOL vmlinux 0xdb357e17 alloc_pci_dev +EXPORT_SYMBOL vmlinux 0xdb422b1c i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xdb5a99e4 tr_type_trans +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6cc55a cdev_add +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7d2d15 bdget_disk +EXPORT_SYMBOL vmlinux 0xdb864d65 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xdb95ed1c pci_disable_ido +EXPORT_SYMBOL vmlinux 0xdb9e2c22 posix_acl_create +EXPORT_SYMBOL vmlinux 0xdbc3910c pci_request_regions +EXPORT_SYMBOL vmlinux 0xdbcd2a70 ps2_end_command +EXPORT_SYMBOL vmlinux 0xdbcd416e sysctl_ip_nonlocal_bind +EXPORT_SYMBOL vmlinux 0xdbe619bc fddi_type_trans +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc05523e iget_failed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc2519e0 param_set_ulong +EXPORT_SYMBOL vmlinux 0xdc2adb35 add_taint +EXPORT_SYMBOL vmlinux 0xdc379410 input_event +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc43a9c8 daemonize +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc70775f bio_integrity_set_tag +EXPORT_SYMBOL vmlinux 0xdc8c58b1 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xdc9c8ad4 skb_trim +EXPORT_SYMBOL vmlinux 0xdcb4290f pci_enable_msix +EXPORT_SYMBOL vmlinux 0xdcb84b8c max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xdccca046 override_creds +EXPORT_SYMBOL vmlinux 0xdce50416 sk_release_kernel +EXPORT_SYMBOL vmlinux 0xdce804e0 input_grab_device +EXPORT_SYMBOL vmlinux 0xdd0720f6 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd14dc9f mii_check_media +EXPORT_SYMBOL vmlinux 0xdd1a2871 down +EXPORT_SYMBOL vmlinux 0xdd1c65f6 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xdd2fccfc inet_frag_evictor +EXPORT_SYMBOL vmlinux 0xdd8b1703 __nla_reserve +EXPORT_SYMBOL vmlinux 0xdda7bdf3 textsearch_register +EXPORT_SYMBOL vmlinux 0xddd0756b mca_device_status +EXPORT_SYMBOL vmlinux 0xddd1f763 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xddf5b961 __cleancache_flush_fs +EXPORT_SYMBOL vmlinux 0xde09445f neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xde290110 dma_ops +EXPORT_SYMBOL vmlinux 0xde2aff20 inode_permission +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea58f83 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xdeab63a4 task_ns_capable +EXPORT_SYMBOL vmlinux 0xdec778f6 ida_get_new +EXPORT_SYMBOL vmlinux 0xded75589 del_gendisk +EXPORT_SYMBOL vmlinux 0xdedbb1d4 security_path_rmdir +EXPORT_SYMBOL vmlinux 0xdee1db8c set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xdee7016f agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xdf05e80a scsi_prep_state_check +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf15a54b release_sock +EXPORT_SYMBOL vmlinux 0xdf3b1de7 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xdf48a0eb flex_array_put +EXPORT_SYMBOL vmlinux 0xdf4c8767 ns_to_timeval +EXPORT_SYMBOL vmlinux 0xdf56c51e jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xdf59c250 bdevname +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf7063cd skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xdf861463 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfb5c9c3 bd_set_size +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfec4076 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xe0150028 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xe0156354 dquot_get_dqinfo +EXPORT_SYMBOL vmlinux 0xe023c98f skb_recycle +EXPORT_SYMBOL vmlinux 0xe041c868 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe0542bfd registered_fb +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0644b2f journal_start_commit +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe076a95c dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next +EXPORT_SYMBOL vmlinux 0xe09ba0cb dquot_commit +EXPORT_SYMBOL vmlinux 0xe0a059e6 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xe0a1cb9f pci_save_state +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0cce7f4 __register_chrdev +EXPORT_SYMBOL vmlinux 0xe0fc24aa param_set_int +EXPORT_SYMBOL vmlinux 0xe123e559 ps2_command +EXPORT_SYMBOL vmlinux 0xe127622c dev_uc_del +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe156bba5 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xe160b553 mdiobus_free +EXPORT_SYMBOL vmlinux 0xe169a838 dev_get_drvdata +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe177f005 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xe19f2c29 inet_sendpage +EXPORT_SYMBOL vmlinux 0xe1b9ca9a dma_supported +EXPORT_SYMBOL vmlinux 0xe1c37e7b inode_init_owner +EXPORT_SYMBOL vmlinux 0xe1c8cd2b arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0xe1e2a179 scsi_device_get +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20e6587 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xe22b1884 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xe22e2eaf bio_phys_segments +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe23dcb9f netdev_change_features +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2560304 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xe25eb55d vfs_writev +EXPORT_SYMBOL vmlinux 0xe28856fa dcb_getapp +EXPORT_SYMBOL vmlinux 0xe2a22740 page_put_link +EXPORT_SYMBOL vmlinux 0xe2b28266 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xe2bf55b4 dput +EXPORT_SYMBOL vmlinux 0xe2c9796d generic_listxattr +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f021f2 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe34e6eea phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xe383fc7a xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xe3bbddfa jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xe3c6079e atomic64_set_cx8 +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3d89d45 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xe3dc9a5d fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xe3df52f4 __ht_create_irq +EXPORT_SYMBOL vmlinux 0xe3e09d83 flush_signals +EXPORT_SYMBOL vmlinux 0xe3e24e50 dev_emerg +EXPORT_SYMBOL vmlinux 0xe3e70f60 ip_xfrm_me_harder +EXPORT_SYMBOL vmlinux 0xe3e77211 mmc_host_lazy_disable +EXPORT_SYMBOL vmlinux 0xe3f51fb8 neigh_table_init +EXPORT_SYMBOL vmlinux 0xe3fbe148 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xe409ca54 mca_device_transform_irq +EXPORT_SYMBOL vmlinux 0xe40af5d2 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xe414bb84 unregister_exec_domain +EXPORT_SYMBOL vmlinux 0xe43317e6 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xe43617f7 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0xe45f60d8 __wake_up +EXPORT_SYMBOL vmlinux 0xe468427e dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xe472099f udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4973160 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xe49775f9 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xe4cfaac7 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xe4db2ec0 __devm_request_region +EXPORT_SYMBOL vmlinux 0xe5042470 journal_revoke +EXPORT_SYMBOL vmlinux 0xe50aae64 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xe50c6148 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xe5122890 flow_cache_genid +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe54cde90 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xe55bb042 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xe5730c13 kern_unmount +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57fde6c kernel_sendpage +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58f62b5 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xe594eae1 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xe59db39b unregister_netdev +EXPORT_SYMBOL vmlinux 0xe5b3d2ba agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xe5bcece9 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xe5be0ae6 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f4c73f tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xe603b69d simple_write_end +EXPORT_SYMBOL vmlinux 0xe604923c splice_from_pipe_end +EXPORT_SYMBOL vmlinux 0xe6113013 __scm_destroy +EXPORT_SYMBOL vmlinux 0xe614c9b8 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xe61ce440 dev_crit +EXPORT_SYMBOL vmlinux 0xe624fdce __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xe627f1b7 vga_put +EXPORT_SYMBOL vmlinux 0xe62b17dd input_get_keycode +EXPORT_SYMBOL vmlinux 0xe64377b7 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xe6720e67 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xe67bfeff __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xe68a66b1 module_layout +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6b3fe21 interruptible_sleep_on_timeout +EXPORT_SYMBOL vmlinux 0xe6d41ccc tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe6d52079 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xe6ea164e input_unregister_device +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6f79f64 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xe6fa8e19 phy_scan_fixups +EXPORT_SYMBOL vmlinux 0xe6fad954 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe7609b0d generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe7722171 flex_array_free +EXPORT_SYMBOL vmlinux 0xe7a664c4 nf_hooks +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7ec1c55 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xe7ec9403 genl_unregister_mc_group +EXPORT_SYMBOL vmlinux 0xe7f75505 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xe80ce219 sysctl_tcp_dma_copybreak +EXPORT_SYMBOL vmlinux 0xe83ea961 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xe84fafbf locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xe8613f34 filp_close +EXPORT_SYMBOL vmlinux 0xe8711480 nf_reinject +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe881469d bio_init +EXPORT_SYMBOL vmlinux 0xe898f7d9 netdev_alert +EXPORT_SYMBOL vmlinux 0xe8b63ace radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xe8c17481 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xe8de8318 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xe8ebf346 ab8500_gpadc_ad_to_voltage +EXPORT_SYMBOL vmlinux 0xe90916ab filp_open +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9403e78 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9724b12 journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9b2c3d3 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xe9ba43b8 inet_bind +EXPORT_SYMBOL vmlinux 0xe9deb306 inet_put_port +EXPORT_SYMBOL vmlinux 0xe9f647e9 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xea02ae25 lease_modify +EXPORT_SYMBOL vmlinux 0xea039e28 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea10212a int_to_scsilun +EXPORT_SYMBOL vmlinux 0xea10655a __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xea1adf71 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xea29d672 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xea5cd711 netdev_bonding_change +EXPORT_SYMBOL vmlinux 0xea65c3d6 pci_release_region +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea8a6c75 param_ops_long +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea9855ae blk_limits_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xeabd18e2 kobject_set_name +EXPORT_SYMBOL vmlinux 0xeac15270 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xead6f596 block_write_end +EXPORT_SYMBOL vmlinux 0xead756ef flush_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaf6c504 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3b7504 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xeb585845 dump_trace +EXPORT_SYMBOL vmlinux 0xeb882a1c mca_register_driver_integrated +EXPORT_SYMBOL vmlinux 0xeb9ddbd6 input_reset_device +EXPORT_SYMBOL vmlinux 0xeba677bd posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xebbd0435 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xebc13cf5 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xebd7b6b6 get_user_pages +EXPORT_SYMBOL vmlinux 0xebd85d54 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xebdbe48c radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xebe2d939 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xec15f00a tcp_cookie_generator +EXPORT_SYMBOL vmlinux 0xec428005 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xec47eb6c ip_fragment +EXPORT_SYMBOL vmlinux 0xec4e50df free_user_ns +EXPORT_SYMBOL vmlinux 0xec535e4d tc_classify_compat +EXPORT_SYMBOL vmlinux 0xec8bd654 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xec935343 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xecb3a5e1 clocksource_register +EXPORT_SYMBOL vmlinux 0xecb624d2 journal_check_available_features +EXPORT_SYMBOL vmlinux 0xecb721f1 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xecf473a2 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xed022313 pci_disable_obff +EXPORT_SYMBOL vmlinux 0xed053da9 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xed07a451 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xed15703b pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xed2d3d18 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xed302f0f tty_lock +EXPORT_SYMBOL vmlinux 0xed4930b9 bdev_read_only +EXPORT_SYMBOL vmlinux 0xed606c2a __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xed747018 neigh_compat_output +EXPORT_SYMBOL vmlinux 0xed8f0dff max8998_update_reg +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xeda0d76e gen_estimator_active +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbb2c10 module_put +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedfb5159 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xee019497 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xee0be7c9 journal_get_write_access +EXPORT_SYMBOL vmlinux 0xee2cdb46 inet_accept +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3301ce journal_force_commit +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee3a137b cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xee3a97e8 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xee5228f9 tcf_em_register +EXPORT_SYMBOL vmlinux 0xee761068 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeed64ef7 kernel_listen +EXPORT_SYMBOL vmlinux 0xeed721c4 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xeedde7e8 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xeee5b54c linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xeefaa021 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xef1d35b7 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xef349ac3 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xef3b2a5e jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xef3bd862 mca_find_unused_adapter +EXPORT_SYMBOL vmlinux 0xef5cb6a4 kthread_bind +EXPORT_SYMBOL vmlinux 0xef9418df thaw_super +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xef9d7d80 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xefb68d48 journal_forget +EXPORT_SYMBOL vmlinux 0xefcc8c51 blk_integrity_is_initialized +EXPORT_SYMBOL vmlinux 0xefce6a03 user_revoke +EXPORT_SYMBOL vmlinux 0xefd1fa4a kmap_high +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe03003 scsi_release_buffers +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xeff14be9 ioremap_cache +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0040079 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xf043e0e1 udp_poll +EXPORT_SYMBOL vmlinux 0xf05d47ed mmc_try_claim_host +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf093a687 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xf0a3a9c3 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xf0ed0529 netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f1246c kvasprintf +EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf1216c75 prandom32 +EXPORT_SYMBOL vmlinux 0xf126285f dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xf1290864 drop_super +EXPORT_SYMBOL vmlinux 0xf12a5c83 idr_find +EXPORT_SYMBOL vmlinux 0xf1310488 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xf142aead __pagevec_release +EXPORT_SYMBOL vmlinux 0xf16868ee dquot_disable +EXPORT_SYMBOL vmlinux 0xf1757dab pci_disable_msi +EXPORT_SYMBOL vmlinux 0xf1765399 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xf17887a1 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xf17df82a blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xf17ffad7 netdev_emerg +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1bf3bc7 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xf1c721bf skb_push +EXPORT_SYMBOL vmlinux 0xf1cf3036 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1ec40e1 dquot_initialize +EXPORT_SYMBOL vmlinux 0xf1ee39a7 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xf1faac3a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xf201bddb vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xf202c5cb radix_tree_insert +EXPORT_SYMBOL vmlinux 0xf205af83 kill_pid +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf232d444 generic_pipe_buf_unmap +EXPORT_SYMBOL vmlinux 0xf2357254 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf240309d init_buffer +EXPORT_SYMBOL vmlinux 0xf251e3de ht_create_irq +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a4420b locks_remove_posix +EXPORT_SYMBOL vmlinux 0xf2e74040 mca_set_adapter_name +EXPORT_SYMBOL vmlinux 0xf2e868dd inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3191372 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xf32055e7 dev_base_lock +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf338d4c3 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf33b20ee pci_pme_active +EXPORT_SYMBOL vmlinux 0xf341a29a pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf365226c d_instantiate +EXPORT_SYMBOL vmlinux 0xf36e9113 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xf37260ab _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xf38881e8 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf39bf4d9 put_cmsg +EXPORT_SYMBOL vmlinux 0xf3a896d5 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xf3bf0bce __bitmap_complement +EXPORT_SYMBOL vmlinux 0xf3c885c0 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xf41e61aa agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xf431b0f1 setattr_copy +EXPORT_SYMBOL vmlinux 0xf4396555 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xf43cda0e inet_add_protocol +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf445069c padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xf463570c f_setown +EXPORT_SYMBOL vmlinux 0xf46c4ccf vc_resize +EXPORT_SYMBOL vmlinux 0xf48a2c4c MCA_bus +EXPORT_SYMBOL vmlinux 0xf48aaa1d vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xf48f6f6c phy_detach +EXPORT_SYMBOL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b1f7f5 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4dabdb1 mpage_writepage +EXPORT_SYMBOL vmlinux 0xf4ddad7f end_page_writeback +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f19e51 downgrade_write +EXPORT_SYMBOL vmlinux 0xf4fb4d41 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xf4ff772d sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf539996c pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf5538d29 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xf5732417 dst_destroy +EXPORT_SYMBOL vmlinux 0xf57a5fa2 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xf5848f79 skb_clone +EXPORT_SYMBOL vmlinux 0xf590c6ac acpi_root_dir +EXPORT_SYMBOL vmlinux 0xf59ad0ca blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xf5c05914 generic_segment_checks +EXPORT_SYMBOL vmlinux 0xf5c9012e timespec_trunc +EXPORT_SYMBOL vmlinux 0xf5cf326a param_ops_short +EXPORT_SYMBOL vmlinux 0xf5cfdcdf tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0xf5e0ea0d bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xf5e2a10b iget5_locked +EXPORT_SYMBOL vmlinux 0xf5e36353 splice_from_pipe_next +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf6063f95 ppp_input +EXPORT_SYMBOL vmlinux 0xf612809a param_get_int +EXPORT_SYMBOL vmlinux 0xf619efe3 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xf6202121 netif_napi_del +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf642e8c5 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xf6730445 filemap_fault +EXPORT_SYMBOL vmlinux 0xf683d700 dev_get_stats +EXPORT_SYMBOL vmlinux 0xf68b0a00 i8042_check_port_owner +EXPORT_SYMBOL vmlinux 0xf6b641be dev_disable_lro +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6bbfb08 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xf6bdfdc3 write_one_page +EXPORT_SYMBOL vmlinux 0xf6cf7a13 unlock_rename +EXPORT_SYMBOL vmlinux 0xf6d75858 pci_scan_slot +EXPORT_SYMBOL vmlinux 0xf6dcfa35 pnp_is_active +EXPORT_SYMBOL vmlinux 0xf6e08b57 mmc_release_host +EXPORT_SYMBOL vmlinux 0xf6e0f2bf inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xf6e1bb9f neigh_parms_release +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf70bb03b mmc_add_host +EXPORT_SYMBOL vmlinux 0xf747dd44 kstat +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf773f6f7 block_commit_write +EXPORT_SYMBOL vmlinux 0xf78d04ab netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xf79b3319 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xf79fd1f9 dev_deactivate +EXPORT_SYMBOL vmlinux 0xf7c56a68 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xf7d2ee5d qdisc_destroy +EXPORT_SYMBOL vmlinux 0xf7e37635 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xf7e6d78d __bio_clone +EXPORT_SYMBOL vmlinux 0xf7eaf97c xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xf7ef25af inode_init_always +EXPORT_SYMBOL vmlinux 0xf7f7f3e2 dquot_operations +EXPORT_SYMBOL vmlinux 0xf803fe39 bitmap_set +EXPORT_SYMBOL vmlinux 0xf80abfe3 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf826a9c5 bio_put +EXPORT_SYMBOL vmlinux 0xf827c1a9 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82e3d47 acpi_initialize_objects +EXPORT_SYMBOL vmlinux 0xf83b68e6 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xf8501b06 lock_may_write +EXPORT_SYMBOL vmlinux 0xf86954c7 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xf8803776 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xf8899ef3 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf890fe7f pm_idle +EXPORT_SYMBOL vmlinux 0xf899aa8c tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xf8ac8f27 tty_register_driver +EXPORT_SYMBOL vmlinux 0xf8cacd6f acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xf8ed6315 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xf9275da5 neigh_destroy +EXPORT_SYMBOL vmlinux 0xf92b8ee3 backlight_force_update +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf940a328 __next_cpu +EXPORT_SYMBOL vmlinux 0xf94d287f register_nls +EXPORT_SYMBOL vmlinux 0xf95dd25c mca_bus_type +EXPORT_SYMBOL vmlinux 0xf97456ea _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xf976228a inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xf986e24a inet_listen +EXPORT_SYMBOL vmlinux 0xf98fd421 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a8966b journal_restart +EXPORT_SYMBOL vmlinux 0xf9accf57 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xf9b6758c __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xf9c0365c uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xf9db43b6 kset_register +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9f3ecd3 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xf9f8513e md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xfa008209 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xfa240bf7 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xfa30957c mempool_free +EXPORT_SYMBOL vmlinux 0xfa3e4848 acpi_unlock_ac_dir +EXPORT_SYMBOL vmlinux 0xfa805ad1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xfa9d5b3a make_EII_client +EXPORT_SYMBOL vmlinux 0xfad4e8c2 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xfae057b6 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xfaf98462 bitrev32 +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb0b2ab1 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xfb1be686 ida_remove +EXPORT_SYMBOL vmlinux 0xfb3410fc security_path_chmod +EXPORT_SYMBOL vmlinux 0xfb49109d redraw_screen +EXPORT_SYMBOL vmlinux 0xfb4e45be pipe_lock +EXPORT_SYMBOL vmlinux 0xfb60f704 blk_start_request +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7d26f4 files_lglock_lock_init +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb85db0e netdev_notice +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbe27a1c rb_first +EXPORT_SYMBOL vmlinux 0xfbfb6416 revert_creds +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc13736a gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xfc323738 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc7ecc1e max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfcaa04a0 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb45c5e __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcd35070 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xfce23646 eth_type_trans +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd0209f9 do_sync_read +EXPORT_SYMBOL vmlinux 0xfd191737 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xfd3e0689 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xfd4c6b1b lro_flush_all +EXPORT_SYMBOL vmlinux 0xfd6293c2 boot_tvec_bases +EXPORT_SYMBOL vmlinux 0xfd6b3d0c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xfd6f4850 native_wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xfd7a0a2f ethtool_op_get_ufo +EXPORT_SYMBOL vmlinux 0xfd7d7713 acpi_exception +EXPORT_SYMBOL vmlinux 0xfd97beb0 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xfd980d7e journal_flush +EXPORT_SYMBOL vmlinux 0xfda0dbe8 ftrace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xfdb8f983 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdc1be87 __brelse +EXPORT_SYMBOL vmlinux 0xfdc7f3ba idr_replace +EXPORT_SYMBOL vmlinux 0xfdc8dfe7 writeback_inodes_sb_nr_if_idle +EXPORT_SYMBOL vmlinux 0xfde41ace journal_dirty_data +EXPORT_SYMBOL vmlinux 0xfdee7d42 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe0e731c fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xfe18a2af blk_fetch_request +EXPORT_SYMBOL vmlinux 0xfe46a54b sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xfe584568 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe678bfd d_set_d_op +EXPORT_SYMBOL vmlinux 0xfe6e40c5 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xfe769456 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe9ecfd1 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xfeacef5d vfs_mkdir +EXPORT_SYMBOL vmlinux 0xfec3c2f2 bcd2bin +EXPORT_SYMBOL vmlinux 0xfedd35fc console_suspend_enabled +EXPORT_SYMBOL vmlinux 0xfee9e867 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xfef96e23 __scsi_print_command +EXPORT_SYMBOL vmlinux 0xff0959e4 scsi_prep_fn +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2845dd free_buffer_head +EXPORT_SYMBOL vmlinux 0xff2c3263 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu +EXPORT_SYMBOL vmlinux 0xff4ba750 lro_flush_pkt +EXPORT_SYMBOL vmlinux 0xff66de75 qdisc_tree_decrease_qlen +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff900432 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa3c541 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/kernel/microcode 0xdf66ca81 ucode_cpu_info +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fe8e797 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1202e9d4 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x12eb0091 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14c2f2a5 hva_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x16e2f3c0 kvm_resched +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c26b336 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c7afd50 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cbad3e6 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cfe78d1 kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x203f5ed5 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x255814d7 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a25f022 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c6d0cfa __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e990f24 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f6a12a6 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x31136878 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38cf208a kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39272ad9 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3b52403d kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3be9a8ad kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c3e9ee4 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3de08404 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f6ab7f8 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x446bfc20 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4664a08d kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47cb99f2 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x47eaaab5 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f9f6c5c kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50bf357c fx_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x587aca9a kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f059e7d kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fae4e83 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6055971e is_error_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x60f78cd5 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62821d36 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x635fdbd2 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6439596f __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65f8ecb4 x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x677dc1a0 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67d89c67 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67f1953b kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6856b52f kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d3c4b96 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6db19e07 is_error_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6edde6f2 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ff51d54 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70cab919 kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74fbc94a is_fault_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7713a033 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79071b62 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a3cf6fb kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c9b19a5 is_noslot_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7d7bd77d kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e181c0c kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x822ed17d __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x89859daa kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8cb417c7 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8dd2bf3c kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9028f505 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x911a0226 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91937a6b kvm_mmu_get_spte_hierarchy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96930bfa kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ea0aa7a kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4aad58a gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7d818e8 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa91845be is_invalid_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa9ab59a5 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac09d7df kvm_set_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad8752f6 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafbf4783 kvm_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb027eeaf kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0392475 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb63b6605 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc16bdf2 kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc2b937d is_hwpoison_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd573ee6 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfafe0c3 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfb36cf7 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc16dd291 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc22183eb gfn_to_pfn_async +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2c583f1 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2f0cbdc kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc99e37ab kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcaaa54c2 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc02abd2 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2299905 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd296def9 kvm_is_error_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5350073 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5776fa4 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd77f10b7 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd91510c7 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd965a8b7 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb9afa60 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdc5ff672 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde507b1b kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfeb9ec3 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5bb79c8 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe773865d handle_mmio_page_fault_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeaffc9cc __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecb05d25 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee8ff414 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0ddde9d kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1083c5f kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3423fd9 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3708850 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4244d98 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf7e56f96 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8226425 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfab2550a kvm_get_rflags +EXPORT_SYMBOL_GPL crypto/af_alg 0x02f6ebe3 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x14e6b57e af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x23deee2f af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x5abd23e3 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x7e7cde9c af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xdb94e887 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xde98e2b4 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe4649fde af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xeb8c0192 af_alg_accept +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x76b31a36 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x39c9e554 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x9658dc6a async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x04a49252 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x1a9ced4f async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9d7047d4 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd2772ebf __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe3382903 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xfae219a4 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xc6c80b50 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xcf52e16a async_xor_val +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x4ebe4203 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x16b742d9 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x1c5bfa2d cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x22993fea cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x94dd30bb cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xbe03fe65 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xd00b6104 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xddda4807 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe62d3a41 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xf0638f8b cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf6f3d74f cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x0adcf80f twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x101b1557 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xa97e60f0 __pata_platform_remove +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1d22dcc8 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2ad378e1 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3465bf75 bcma_core_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x49cab368 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c8b74f0 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8641dd4a __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc08c4a56 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc131dd69 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc2513e9b bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcaf5ea2e bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xde964858 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe312d44e bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf06fc071 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x736d3197 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x84d06ae8 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa3cdd45 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbee47603 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf57c54f btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcb875cf0 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdfea001b btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe47729a4 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0x4bd72828 scx200_gpio_ops +EXPORT_SYMBOL_GPL drivers/dca/dca 0x175229cb free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x2e471f01 dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5d4700cb unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x8006c614 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x8373ac36 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x865eeeb1 register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xae6dc2a0 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xb9b4f276 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xee423355 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x012bb38b edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x103c916c edac_mc_handle_ce_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x13004d10 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x174c122e edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3b3a10d7 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x48046179 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x56e09ced edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x61ecabd8 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x62239cfd edac_mc_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x69259f22 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x81c73571 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x84fb27ee edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93293ea1 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93e37472 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x94bdc343 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9be0c196 edac_mc_handle_ue_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9f43d4af edac_mc_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa6caf8cd edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaf4ac1db edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc5fe6bd6 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdde047f2 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xed1f1d27 edac_mc_add_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf2bb7d9a edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf3d838cf edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfa41fe70 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfb062908 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0d38cee6 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0dc0b68c amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0f0ba55e ii_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x4b01887d pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x6d4e6991 amd_decode_nb_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x7509830f to_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb98537cb rrrr_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xc2b73a3a amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xe6ff7e0c ll_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xf8dec080 tt_msgs +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x3a3a94ff bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x71ee1113 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x29ca7859 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x4d0a4c69 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x788ec360 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe3c406f1 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0437416b hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x15a9583f hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1745a46c hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x247dbf94 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x34e3aa55 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x471073b2 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a5d3de6 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x557b75d7 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5723cda3 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x66fe90a5 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x68b9e252 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f0dfbc2 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72d5d7eb hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7c2dd7a5 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8dcc8382 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93576153 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a9c71ea hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9e42f6be hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4fcb395 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb5dd4f7 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc5d9956a hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd2b26c71 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd3cc60cb hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdb6c42ec hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xea287610 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xef1d38e5 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x139e16a1 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xaa70e02b roccat_common_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc58a456d roccat_common_send +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x14a12a52 usbhid_set_leds +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x3737e3b0 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x51296fe3 usbhid_wait_io +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xfb02afbf usbhid_submit_report +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0763432f vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0aa9d15c vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x54066a9c vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x99b80e2e vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9bff22b7 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa8aca74d vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb13890f vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcc878de1 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf0ccaf59 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf8a40233 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xf1ffbb38 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x90134715 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xde265bda i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x530efb3c i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xc120be64 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xa133c68c input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x716b00cc adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x07f08c6f wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x444900d7 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4ef521be wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x534b3ce4 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x57aafa6a wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70b60fca wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x70dbee49 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7b1d62bc wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x825f2120 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9551b449 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9a5009ad wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdd685c39 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x4de7b2d0 unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xb17b7c77 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x120aefbe gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x25658e07 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x60768bee gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x74053c36 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x840772b2 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8e5aab93 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x967f3286 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaa3b8f1e gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaca55a25 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb2e1e112 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb91058ad gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe3884777 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe42528a3 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe9f0fa1d gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xea89eba5 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf1f39e03 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf4fd3db0 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd842d5cb dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb11d486c dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xfe5ef69b dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3e2b808c dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4a55f52a dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6223a302 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7712b307 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x80bc0151 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xff53beb5 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x03ced457 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x08a936ca dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x24407b79 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x61c7c085 dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b2ff62 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80c89b3d dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa6aae3ea dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb7bad799 dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb967690a dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbaa513b0 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbc5fe7c1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca2bde4d dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xccaeb9ae dm_sm_checker_create_fresh +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd32479bc dm_sm_checker_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdb562135 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf99dc2cf dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/raid1 0xb98db594 md_raid1_congested +EXPORT_SYMBOL_GPL drivers/md/raid456 0xa12a93ce md_raid5_congested +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x1058a409 saa7146_devices_lock +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x202a45af saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x2fb405fc saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x4b80d10b saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x57c18d39 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x61acd4be saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xa86f2ef5 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xb5398733 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xbb5f5bc7 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xbe9983ff saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xcf683cf2 saa7146_devices +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xfcb4ad9a saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x4cfd4228 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x8909ea24 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x95300876 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xa060aff7 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xa4fe477c saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xedad5f4d saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xfe566f17 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mt20xx 0xc2210147 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mxl5007t 0x4fa1fa36 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda18271 0x430d48de tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda827x 0xebbe9e8f tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0x0fc3334d tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0x8469da2f tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda9887 0x25bbb30c tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x75af90c4 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0xf27376c5 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x0be852d1 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x6c58144d tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tuner-simple 0x34ce3289 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-demod 0x310b4d64 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-tuner 0x5c8161c3 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/frontends/tda18271c2dd 0xd8107282 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x0f0ee648 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x1636419c mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x1ebce95d mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x4c68cd94 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x4d14bf73 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x4f0be858 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x5d91103d mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x675221b0 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x78eb90f8 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x7f94b2ee mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x8a6be8d9 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x962c8b38 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x9dd05d76 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xa23d9199 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xb085bcc8 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xb38f9e8c mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xdbd35974 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x0c49e149 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x0cb9753b sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x11f931f5 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x17ecd91d smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x3a7d20bb smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x533f5620 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x644809df smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x76222253 sms_get_board +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7f6df13c smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x88b64980 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x9b06ce4a sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x9e00bcb3 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x9f617a27 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa3978838 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa7266b7c sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xac830849 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbcffb88d sms_board_event +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xfd478795 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x3d8650ef ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x528fb0c7 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x551d2d82 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x7ef62fee ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x906e8b00 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xa899fe1e ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xc4e2edd8 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1f7b45ca rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3a5fffdd rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4489fdc6 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x56afdc7d rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x57edd63f ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6c3892cc rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x72bd0dc7 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7399b254 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x75692141 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7973ee3a rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x970a7405 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9e1ae473 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4fcb11b rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbe396b38 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe14fba6e rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xecccf41b rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfec8cf8e rc_map_get +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x0d030ae1 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x29cd0738 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x312109e5 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x7a4ac1ea cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x7c037c65 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x7cf3bfa7 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x8858918e cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x89a3893e cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x94f4b87e cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x99b52508 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xa76cf31a cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xa869a29f cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xad0d609e cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xb4154c30 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xdc8a494b cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xdd28d690 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xde03e059 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xef02a972 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xf27ff03b cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx88/cx88xx 0xdfbd8e87 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x01597f3f em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x0f4d1826 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x28fd4d0e em28xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x4533c8ae em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x4cd9373e em28xx_isoc_dvb_max_packetsize +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x59effcc0 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x8bea01bc em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xaaffd2ae em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xb7e54f44 em28xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xdc22bcf5 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x46ef6285 saa7134_s_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x626da91d saa7134_g_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0xad785322 saa7134_s_std_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0xb4e0f688 saa7134_queryctrl +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0xd87cc403 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x36c28ce8 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x4ea51d17 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x6a11008e tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xd1dff4f1 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x38b8ff87 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x52dadec5 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x58216c42 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x94632f90 v4l_fill_dv_preset_info +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xa0865fac v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xb22aed6b v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf8f50529 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x05e426be v4l2_int_ioctl_1 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x0c001422 v4l2_int_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa5228b24 v4l2_int_device_try_attach_all +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa6e9c7a5 v4l2_int_ioctl_0 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xb683f8c3 v4l2_int_device_register +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x01004cc2 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x2373b384 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x2428abde v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x35c7787a v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x84b14b05 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x8d2eb3b4 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x9549c4ef v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x982a4d4f v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xb0b0d310 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xb922d3ef v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xfa7afe1d v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xfc7e9414 v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xfff90710 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x002cd7c0 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x0050ce3d videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x1dd48f29 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x2288b998 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x2467b640 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x29066806 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x35da535a videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x3d1118bd videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x49d9c593 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x4fc505a0 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x5a123f3c videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6c9e1e76 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6ee8edee videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x76f2c845 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7d34e323 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7d87433b videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x87b5ba1a videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xa0207e50 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xa6bb9867 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xaa60076d videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xabc6d08e videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xbb08ac01 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xcfd69bb7 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xf4e7a9af videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x52d8e7d4 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0xc318972a videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0xfd95644c videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x029f6b96 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x248ab06e videobuf_dma_map +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x3ad492eb videobuf_dma_init_kernel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x3d52eed9 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x591705f2 videobuf_dma_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xa3b54999 videobuf_dma_init_user +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xb3935f7c videobuf_dma_init_overlay +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xc10a9c28 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xf69f721a videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x1293ae6a videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0xc5c02b7f videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0xf799af36 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x0ffb831f vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x28d1b4d8 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x30e1f831 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x3c986971 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x474eb897 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x5e609dda vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x63b101db vb2_write +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x6eec9661 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x757f2a6b vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x8a4db6fc vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x934220f0 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xb1fe130c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xb5817288 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xbadb619a vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xc259f85c vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xdb97bd34 vb2_read +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xdec2bdfa vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xa5a6a2f7 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xce3aaf1d vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x185a0399 vb2_mmap_pfn_range +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x3cc81091 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x4aa28dc6 vb2_put_vma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xecc1023f vb2_get_contig_userptr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-vmalloc 0x6689944d vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x01c866c6 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0dd81ec0 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0efba2da v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x33e17442 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x3ecc6cbb v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x5868baaf v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x5926c5f0 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x65ce1650 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x699aaeca v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x6d4805d4 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x7e1949ee v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x86732dbe v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xa2166f6c v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xa7e47ad3 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xa9b72e32 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xc672a087 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xcb6ddb35 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xcd2f0f61 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xdf0847e0 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xe1d3109c v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xf10dda77 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xfce05b67 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x01a33859 i2o_pool_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x02aacf8b i2o_pool_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x188e759e i2o_dma_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x1ecd2a6c i2o_dma_map_single +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x30313ecd i2o_dma_realloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x35c608ba i2o_dma_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x558a0212 i2o_dma_map_sg +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xf3bef119 i2o_sg_tablesize +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29d1d107 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0589727d pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x117434c6 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x209fc419 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x30eb8074 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x50073734 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x563e1223 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5988b63f pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5c152d16 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x68f3aa38 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7eab8d7d pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc67296c8 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x38302eec pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xface3dae pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x18c94331 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x86d75cfd pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa27ddb1c pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc69699a7 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe6780525 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4de36fa9 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x93775b43 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xb5b3eeea sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbf13bb0a sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf8fb6ea6 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xdb6f8519 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x473cee6c wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x4fe7b5f5 wm8400_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xe07cdef9 wm8400_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xe473ab78 wm8400_block_read +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6586d294 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x66dfd898 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8f300cfe cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb11e1bce cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x2df115d4 eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d14d2f eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x11781930 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa3be7966 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xa7076e9d enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb52a726a enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc563c881 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xc8062b52 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xdcba9bef enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1c80e895 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb143c403 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc44929fd lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd3b0536c lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe5306502 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xe72524f5 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xea510169 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x5e7cb021 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xfdc926f6 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x05741430 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x11c6239c sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x14d0a97a sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x75813717 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xacade185 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb47751e9 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc09cae85 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc1c02c95 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc39e0d92 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5460e321 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x578ba765 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8e7ffd03 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc836a3a9 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcfcd0781 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xedfaa156 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x888b8b3e cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xdefb986b cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xf7e163c8 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0ed49d39 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5ce16a7f cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa3e65e14 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x68388e33 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6244147c cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9828c593 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xdda5a72a cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2000 0x97f7268c DoC2k_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001 0xdf12f008 DoCMil_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001plus 0x645100f1 DoCMilPlus_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/docecc 0x45937659 doc_decode_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ccb9b80 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51acec79 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x60518c9f mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66484246 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e1fe5d7 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7666599b register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x772b9b65 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b0acc34 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b58d386 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x80c5be5b deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8e03a791 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x952da73f default_mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e4154e4 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8db1a76 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac0c6326 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae860259 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb850541d __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc47075a3 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdfd80085 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2d1432f mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe46cfa0 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x40a294a9 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x417e7ffa register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4540f75d deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8f207015 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xeeabe3f6 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x6e4ef23e nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xab9c5fa3 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x2eb872ff sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xe2a9aab4 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xf6460eed onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0c8e32d7 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0e889da5 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x25b15b34 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x344493be ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x558f54e4 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x559358f8 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5c12c779 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6534cce8 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f09ba8a ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7d0cfc45 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe23c856b ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xef5ac04c ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf0631403 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfb14ea19 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd6f0ef9 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1ecc3626 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x72e77beb alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa6c5adc2 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf0626fad free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1ac1b3ff alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x28a1a4eb free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x325b87bb can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5aea1400 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7029d5b9 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x70a31556 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7c442d74 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9193c478 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc9ce0d43 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd937d42b alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xecc98f0c unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfe47eb94 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x0fe52b79 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa80f5e94 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xae1562cb free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xfeaf786f unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0054eaee mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x057b1b1c mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08bdc92d mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cddee73 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d13526a mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f1ffb30 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x165682ac mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17edff49 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19aad4c3 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ac3dddc mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cf8467d mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23538f15 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2891ddfe mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b5df093 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2bbfbdab mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d99a67f mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33dab3f8 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x347bb754 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37011b92 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37321e18 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3774f8cd mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37941a67 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x382cf973 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b55162e mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ce592bb mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d98f5d7 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ec80a57 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44b2f838 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d5fa80c mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4df48a7b mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53ab8d10 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54db3205 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5701622f mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a475855 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a7628ac mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d27158a mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f446802 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60b929aa mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6563bacd mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x755a9f41 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78351fe7 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8283a769 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8806c413 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9726861e mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98460de5 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99577a57 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c073482 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9eed212f __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3021cf1 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4e1ebb1 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7da465a mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8d2ac8c mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaeb16b0f mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf976fb9 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb16fd631 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5dfc879 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdc0f201 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7b13820 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc61d1e2 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0bb26b7 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2a7e2f2 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd4ec4141 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf456777 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8e290b7 mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf50a2934 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf53de5fe mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf57a24dd mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9fcd869 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0c0642c0 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x69f1c7cd macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb2f0cc0f macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe6da34ef macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xf6b84bf9 macvlan_start_xmit +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x4b4e9e55 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x782cc7cb usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa876a28b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xd49db835 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xec9dd385 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0cd1fdd2 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4c7e4315 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7f15f77e rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x868c1ebc rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x99dc5c8f rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa6a16fa8 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0fc17eca usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x14a99cd5 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30a91e8f usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3eb7fd73 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x42f4fb69 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4337807d usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5229d334 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x65281be0 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8219a57f usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9691b7ce usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97038e3b usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9e6f2beb usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa5d3f7c4 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa8158db9 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb2cd8506 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc020bd43 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc38dc1a0 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xccab4cd0 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd8faafc6 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda36fd29 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdcf3f7ad usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdef4efec usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3a573eb usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8f199ba usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0540454f i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x30b7e270 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x37251817 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x40a6f14c i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x566b5361 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5ffb6d9e i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x99491c75 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa5f69c3f i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa978f492 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xac75ea73 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xad0a66da i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbe0d72da i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe5115f89 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf43a74ea i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf81dc00c i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf832916d i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x0eb01eda libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x1c820b19 libipw_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x0fb0faf9 iwl_legacy_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x415fbb6b iwl_legacy_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x6648d7e0 iwl_legacy_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x8ce8036d iwl_legacy_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x12e05f51 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x28403b54 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x33281a32 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x439361fb __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4ea7328d lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x60a00dea lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x774fe0ac lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x955e595e lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa5412581 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc6cd47a2 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd13a5029 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd32b2b12 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd578feaf lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdaa9bdc2 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdb264191 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0b21395e lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x178a1245 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1952f0eb lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x19539f9b __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1e5732ac lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x31774e29 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x66b22803 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb9511adb lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0x67dc527b if_usb_prog_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0xfdffd743 if_usb_reset_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1c9975ac mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1dd0ff55 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2a5ce8e1 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x303b5091 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x55224663 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6b954e46 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7c8512c3 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc71b575f mwifiex_deauthenticate +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xeca2125f mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf0fda69d mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfd4a9e35 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x09cd3d98 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1f411528 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x256b64f5 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3c26e0ae p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3cb228e8 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7b7b3fcf p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x82ec9c6a p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x95fac40d p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb67a6bb4 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d5fa64b rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0e243a70 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0f72f8e0 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x141a8b4d rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x17cfedef rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1cb71600 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x25ab1c68 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x27652194 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x298d0708 rt2800_probe_hw_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2b953056 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c987c96 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x31ea381e rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4fd19afa rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x601ccc1b rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x68b71881 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6a0f2ace rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6da39b12 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6ff61544 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x734f3f68 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7dee5e08 rt2800_validate_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e81eb23 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x80e7852a rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x88f0d1da rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9e609544 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa4cadfa8 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa7b61e59 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaebbb2fc rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb0a30303 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb3be59e8 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc359dee0 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc7d4f455 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcb3fae25 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcfea021c rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd6de9111 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe661bab4 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf794e7c5 rt2800_init_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfbe0d76d rt2800_get_tkip_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x07660f03 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0d911f99 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x11166f5e rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x16c076ba rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x17745529 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x21eca0ea rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x26f08c65 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x271f36ce rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2c885bd2 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2f41d486 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x357e2983 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38d21489 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3b48fd16 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3b4e401e rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4183876e rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x472b0ebc rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4a5a174a rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x53e0b765 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5f0d79e9 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5f8016cf rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5fb43b60 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x64834801 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x65a3c002 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6b891561 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7277139b rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x79534d0a rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7f25cdbe rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x848a7e67 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x868ea027 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8ace1172 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8c9a0562 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8cdc2363 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8e4a560d rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9bd2ad91 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa0807d77 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa1e6fb92 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa91688f5 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xab16da89 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xac9bfd04 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbd8e72ee rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc9873b16 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcc259a41 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe097a8f9 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe6db8aa8 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xea02bf34 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeec6c4a0 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x00ae8b7a rt2x00pci_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x2a5e92c1 rt2x00pci_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x31953c1b rt2x00pci_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x438e6915 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x78609f65 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xa2932a70 rt2x00pci_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xb1f3675f rt2x00pci_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc412a2cf rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xcfc167e0 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x03267667 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1de32e94 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2ab69fb8 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4096bef7 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x45663eec rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x55ab7e32 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x68a36501 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x97f1803a rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb5293a64 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd0643697 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd1fc0431 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd39ab31f rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe2c0b964 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe3b979a8 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe8da77bd rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf4d31975 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x3a1d6584 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x466ae744 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xea9c10a3 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x24bce336 wl1271_unregister_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x29650aa3 wl1271_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x56550ad4 wl1271_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x7b63d8e6 wl1271_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x9e24a304 wl1271_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xa551fe68 wl1271_register_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xc5872812 wl1271_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xe795ba26 wl1271_irq +EXPORT_SYMBOL_GPL drivers/pci/hotplug/acpiphp 0x146f42d6 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL drivers/pci/hotplug/acpiphp 0x70a1fff4 acpiphp_register_attention +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xd0c8f465 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xd330519f asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x64ebe677 wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa9b7afd8 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc5e3dddf wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe2426710 wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x0043db16 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xa9975b18 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xc2637bb1 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x17f7553e mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x46e9dfdc mc13xxx_sw_regulator_is_enabled +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6d0192e2 mc13xxx_fixed_regulator_get_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x968a19fc mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb027c4a5 mc13xxx_get_best_voltage_index +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd48b6c5e mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xe68d913f mc13xxx_regulator_list_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x26196b01 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x63df772d wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x84ab2e0a wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xc5e44fad wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd0c3e973 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfa0b1522 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xfb7d59ed wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01a747e8 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x026f7d31 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x03b11caf cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1bf1dc17 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1dca5cc4 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x215a9f00 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21906c21 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22370af5 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x260a9100 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2fc79894 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x322395e5 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33bb52a5 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34e44405 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3bee3d12 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c36d9b6 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3dc181bf cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4a9eddfe cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e3365bc cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5133edc2 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5251a22e cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63487baa cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6b91546b cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7879ae92 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x856fc056 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8ac34504 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x970e2726 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97ffa4cb cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a2a6369 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a3a2d9b cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ebafc9f cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0213c2a cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa094e4c9 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9b8c654 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9d20d40 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0d954f1 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb0f293aa cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5014edf cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6f91d16 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbfb7e7c9 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc09c5ef4 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb65c3d3 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf07de5e2 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf5aa61dc cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf65f0cb5 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf7942f78 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2bd566f8 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2d14097c fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x328c1a6e __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x35cee1fb fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4f229ef8 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7854a0e4 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd3b34156 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe0ae65e1 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf2cf7667 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x17b72d1d iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x326112cd iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x41a14226 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4dc4668a iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8f7d9184 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc28a1258 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x138670cb iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14cebeb8 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1aef5c20 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1f4b3fe8 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x222d1256 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eafcb1e iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eb88f8b iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x32e11c69 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4015153c iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x47482c36 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2709b0 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4df88482 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5bcc4651 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x61334838 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69f9e47c iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6b507c30 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c3d37d6 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d08ee0f iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6da0d80e iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x703ed312 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x782ed7b8 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7962bb23 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x851170ad iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x885358cd iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x90500340 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x993af7c6 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4832cf0 iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa56f9f19 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xabf918b4 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xace07165 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb8066309 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc26e87c5 iscsi_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2c41031 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd04787a iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd8ead4c iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4fe643d iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5225c7f iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5bcfd27 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd6eef809 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd1b8a24 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf43355bf iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf86a21dd iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf92e8143 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb44c30b __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc196566 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc76f21f iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x08595b85 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f596f21 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1b01b922 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x31e7da28 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4c995fbf iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4efece79 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x568329d9 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6658e70f iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x753b7a51 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x75d8b620 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x937940d1 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x97089d52 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xba45ce91 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc42263b9 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xce74308c iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xceb54b32 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x021e13aa sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0676cb5e sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x101a31e5 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10c542b9 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x11625afd sas_change_queue_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1de7b5b8 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2573812b sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5577e4ee sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e264428 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6031e591 sas_slave_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7370cf60 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8297569e sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x83e0c8d6 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x874e9dbf sas_find_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98b25e70 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99ffb5c2 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaea71c83 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8bd5ead sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc4d8534 __sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbe511f9e sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd129d5f sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf4cb938 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xedc80595 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf02145b0 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6efb5f9 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x0df4b48a srp_iu_get +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x255a7efd srp_transfer_data +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x2e62a606 srp_target_free +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x96735f81 srp_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x9c799b06 srp_cmd_queue +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xba1faa1e srp_iu_put +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x0b734f74 scsi_tgt_queue_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x2e4ad805 scsi_tgt_it_nexus_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x535aa6f0 scsi_tgt_it_nexus_create +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x61967df6 scsi_host_put_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x65b31094 scsi_tgt_tsk_mgmt_request +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x896926df scsi_tgt_free_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x98f81533 scsi_tgt_alloc_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xb2ea4acc scsi_tgt_cmd_to_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xf11c2469 scsi_host_get_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x060f5cf8 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c093f78 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e0915d0 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b9da043 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1eb795d9 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x248e3793 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39d32d97 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a5f93c6 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4783291b iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5eeec9c5 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ab12d88 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x98a2ba26 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9af070a6 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa05d8b72 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa15a555d iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa7647653 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9428162 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3d737f0 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc79bd855 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd72d5f74 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbfb7e1e iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdeb6ea68 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe65ae3ae iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb8592aa iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec7f5a75 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4b5f3ab iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffd97cfe iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x522b3179 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7ef884a8 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x960f7abb sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x9c87a146 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x683191cf srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8bf90c98 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe057632e srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfa7e6d7b srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfb7bdaeb srp_rport_del +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1937c4b7 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1ca465c5 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3df57851 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7fdf94b2 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9bd8936b spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf3951253 spi_bitbang_transfer +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x04ff54a9 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x067e38c8 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c422018 comedi_get_device_file_info +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x42c7392b comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x90363a5c comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x652441c9 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x86fcde20 das08_cs_boards +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xe82db56c das08_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x085a0c2d labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x25e55b95 labpc_1200_is_unipolar +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x775923b6 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x8285332a range_labpc_1200_ai +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0xaf1e4347 labpc_1200_ai_gain_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x18cecefc ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1b2dba5b ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2400a4c4 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3cfd5d1d ni_tio_rinsn +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x56b5c887 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x92ece41a ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb05d901f ni_tio_winsn +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd887b603 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4a81381d ni_tio_acknowledge_and_confirm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9386c881 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd87d486b ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xdc293f39 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xedaf5c9c ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf9c7cfe2 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x2468ed34 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x579d2806 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x587711de oslec_create +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x882d5f27 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf828c15b oslec_flush +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf923a5b1 oslec_free +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xfabc3747 oslec_update +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x3730cb0f iio_scan_mask_set +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x41f3c760 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xc33c189a iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xc53fa0b6 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/rts5139/rts5139 0x35b85807 rts5139_usb_ids +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x260e1ab6 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5f23a9c8 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6d6bac75 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6e3ec0c4 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x71d87acf serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9fe5e77c spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb73a5748 get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xce56e8c5 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcf8492e1 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd3d3772e spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe4f95a5b synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xedda1b30 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf62d9d79 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x0204214f usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x0c39e1a1 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x21490c9c usbip_xmit +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x345b7359 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x474e5fc1 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x75515be3 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x8de9bb0c usbip_event_happened +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x8ec4795d usbip_event_add +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x961e766e usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xb03a224b dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd10d89a2 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xde67f11c usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe23ec6ad sockfd_to_socket +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x4e183198 max3107_resume +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x6259df50 max3107_rw +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xa471ba3f max3107_hw_susp +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xc2598f63 max3107_remove +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xd83e0a4e max3107_suspend +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xef53594e max3107_probe +EXPORT_SYMBOL_GPL drivers/uio/uio 0x101dd4d1 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x40a6c580 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x63630a60 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4a3a5cff usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xbcde7f8a usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x39552df9 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x91b774f5 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xe884dced usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xea0a8279 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x076d6a58 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x16f0fc56 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1fa7cae2 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x50599093 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x812d71e6 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x834c0339 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x881206cc usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd1f5d388 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf162c0a4 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0790b208 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0cb6686f usb_serial_generic_submit_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1417f1d5 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x18e94003 usb_serial_register +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1b3571c3 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2387a1e6 ezusb_writememory +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2447435f usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3619bf4b usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x507f3916 usb_serial_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x64826120 usb_serial_deregister +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6848a57f usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x829858ea usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9355f518 usb_serial_generic_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa0c6715b ezusb_set_reset +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbec9f31b usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc9ee6a0c usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xca3f917d usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5dd7050 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe0c8b474 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf85b3b73 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfcdea1b0 usb_serial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1180fa43 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x11a011a1 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x195b89b5 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1a7ead8d usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x63a7a9d7 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x63d1fbed usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x76a0af0c usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7d9cef65 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9022a9df usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x933abcf1 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x94c4aaec usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x96e8918e usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9bcc0863 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9dc7d077 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa11c8dba usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb322e36b usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc2571019 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd0f8fd4e usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd3f47cfc usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe8024bf1 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xee7b7748 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfdeca58a usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3116fec5 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x49f24299 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa6412ea0 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xca526080 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xff1a3bc2 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x035cb137 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x07c8ee7a wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x176187a4 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x20c605de wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x21dd0710 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x255c1376 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4a5b2e6d wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4bea03c1 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x55a0c15e wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6e376502 wusbhc_rh_suspend +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7bc913ab wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x90d76744 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xaa067c05 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcf152918 wusbhc_rh_resume +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdb3a7bfa wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdb4a1c9f wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x0f1c678c i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x26caf0cc i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x4deb0ccc i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0a6ce3dc umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x270ce002 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x28492128 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3876c0e9 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x624ab01d __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6b4c67fd umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x788b78d4 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xcd3c6d9e umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x07151ace uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x073053ee uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16b1d0a3 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1fbd03ca uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x21580d90 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2e03f3be uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x49f3a119 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4ccc648b uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d572401 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51fe4bfd uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x541325fe uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6515f73c uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x68cffd29 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6a6fcf4e uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x729d1d71 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7403b318 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x76213f1f __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x772569c8 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x776a79b9 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x80ad8857 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x841a32b3 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ed9a6a7 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x91fb1b5d uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa6c98ade uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac55a4c2 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xadc5ecb6 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbcce3fe2 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc0c2645f uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcff649c1 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd1615b90 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdc01dd12 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde41cfa8 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf4b6c16 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe07934e8 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9798d2b uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xecf1cbaa uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfd7baf0a uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xa2ab28d0 whci_wait_for +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0bfb21ca ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x48208331 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4ed6693d ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x634f86ee ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6b82668a ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x789e496d ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe100e864 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fb_ddc 0x9fc11b2b fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0x0c795ddc fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0xc33a1f3a fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0x06d937e3 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0x2ea61163 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x292da7a2 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x49f51a86 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x557efa1c viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x79e6190a viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x24ba8e1e w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3b95ff6c w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x51f83e9a w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x56bab5cb w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x872421ec w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x95bdab1a w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb1015ab1 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb318f73d w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xff92ba2a w1_touch_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0864c4a4 dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x8711e294 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xab09e652 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xd8449ac7 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fat/fat 0x056cb722 fat_getattr +EXPORT_SYMBOL_GPL fs/fat/fat 0x07528ce2 fat_build_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0x080c5715 fat_attach +EXPORT_SYMBOL_GPL fs/fat/fat 0x10909bc9 fat_add_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0x2a9f0cae fat_time_unix2fat +EXPORT_SYMBOL_GPL fs/fat/fat 0x2c24c45b fat_free_clusters +EXPORT_SYMBOL_GPL fs/fat/fat 0x30da73ca fat_scan +EXPORT_SYMBOL_GPL fs/fat/fat 0x349b8f55 fat_detach +EXPORT_SYMBOL_GPL fs/fat/fat 0x3a8c7b06 fat_fill_super +EXPORT_SYMBOL_GPL fs/fat/fat 0x3eabd771 fat_dir_empty +EXPORT_SYMBOL_GPL fs/fat/fat 0x463b81ad fat_alloc_new_dir +EXPORT_SYMBOL_GPL fs/fat/fat 0x4c700fe9 fat_flush_inodes +EXPORT_SYMBOL_GPL fs/fat/fat 0x8844a66f fat_get_dotdot_entry +EXPORT_SYMBOL_GPL fs/fat/fat 0x97c8d2af fat_remove_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0xa0f80924 fat_search_long +EXPORT_SYMBOL_GPL fs/fat/fat 0xd613cbc2 fat_sync_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0xdc797aba fat_setattr +EXPORT_SYMBOL_GPL fs/fat/fat 0xeda07b97 __fat_fs_error +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x17ce645d locks_end_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5da01bde nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f52af00 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f959b35 locks_in_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96877ac4 locks_start_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa7b91a7b lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xce1f3d2b nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd6393686 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6933c48 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf84d96d5 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x145754bb nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b5835c7 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f51c2ec nfs4_reset_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5379a730 nfs_commit_release_pages +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b0b3b79 nfs_commit_clear_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x867df090 nfs4_reset_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87a8ad19 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x96756345 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99e62944 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0dabc4d nfs_initiate_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5eabd7f nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf400b49 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc16edca nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb8a85ef nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefbbecf7 nfs_initiate_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5a87370 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdb5a620 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x8c4e8d4f nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xdcd8b4b4 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x608be363 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x77602b72 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8a8ee471 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x94d4ee05 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9b3991a9 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xcc897a48 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xede3fb04 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0d40c61c dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2724cabc dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x47d5ec4c dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x64513940 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbc0cff35 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd19d3f5c dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00b9f817 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x025e2d69 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0562c415 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x16b2e575 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5469ce31 ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5962934a ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7083dbd5 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89502fe7 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb4bd060c ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbebfe637 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdc823ea4 ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe2bd47db ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe417d940 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x05513b71 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0b8ef590 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x4a48d81c raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL net/802/garp 0x355c8b84 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x3c63c874 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x511bba35 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x758fcd0b garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x92ee73d4 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x9d28e4be garp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x47aa554d stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xe051da80 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x2a903dd1 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x2e9cecc1 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/atm/atm 0x50754510 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xe2c6bb26 unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x66bb54ea ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf302b5f5 bt_debugfs +EXPORT_SYMBOL_GPL net/dccp/dccp 0x00d3ad0c dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06a5e688 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x167de2c9 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1787d8fd dccp_insert_option_elapsed_time +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f004ffc inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x359bcab9 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x405d074d dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x48ee2502 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4bcff929 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4be8eed5 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x564db555 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ae09077 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6bf46e4d dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6cd46e54 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7046b7d9 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x818383ac dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8eb68a86 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x917152c2 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x947a155b dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c714adb dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f5e3930 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaccd4b9a dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad487bd5 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae8618be dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb31c0ff0 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb6b68a8d dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb8a22974 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb9d30a6a dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc05a3224 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3eb1054 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6bcb682 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb5de5ec dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb63b996 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb9e225b dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0158b11 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3017e21 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x12c1f1b9 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1cdd4945 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1fbf61dd dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x7a0871c0 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa363b454 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xea79c473 dccp_v4_connect +EXPORT_SYMBOL_GPL net/ipv4/gre 0x15eb8e8e gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xe4b040ac gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x06b320a9 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc70146a5 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xb9b3204d arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x37985d2a ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x670798e7 nf_nat_seq_adjust_hook +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x6d40a921 need_ipv4_conntrack +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x07ae60b6 nf_nat_proto_in_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x2b756456 nf_nat_get_offset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x4595df32 nf_nat_proto_range_to_nlattr +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x5aba93ca nf_nat_proto_unique_tuple +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x5d175a55 nf_nat_set_seq_adjust +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x916084c0 nf_nat_packet +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x94a08134 nf_nat_proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xb313ea79 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0a1e025f tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x786d1fce tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x85bdb09d tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xeae942ec tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xf9117fa4 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x9ca6c7a9 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x14b24c87 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x234b2bad l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x334cd087 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5c066fba l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6a5a6915 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6af29de7 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x84ac5882 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x958103c7 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb43d7000 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc5a0a133 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc81ced3b l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xca58a9ae l2tp_session_create +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x075b9c81 ieee80211_iterate_active_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1dcfc8c5 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3256d814 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x67cb71c7 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebde69a8 ieee80211_key_removed +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec6dc70a ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee2333a9 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeeba672e ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfb5f6064 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x02ffea39 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2a211cf6 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x30f7955e ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bd82539 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3fbee7ed ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x42c3caef ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x876415a5 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8aafdef9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ca6d85d ip_set_nfnl_get +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7f5c049 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5f9b62f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdbd1e345 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdd7730c0 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xde0f641f ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0a965b31 net_vs_ctl_path +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7128df97 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7ac1d283 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9db06d4a ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb33ec2ea register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ab01a36 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ad31326 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e023635 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x126919b7 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x12e86f2c __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d3eb871 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23f3424f nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25d4a1ac nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ebb8992 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33ce8cf6 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34eea095 nf_ct_delete_from_lists +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cdbbfc1 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d2b5615 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x409dc7d8 nf_conntrack_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41bac1b2 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x442029b2 nf_conntrack_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x551a578e nf_conntrack_hash_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55c78e52 nf_ct_insert_dying_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5672add2 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a51e898 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x649fb9bf nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65483f63 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6ae5c761 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6b4d8655 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cc106c4 nf_ct_nat_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75765694 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76055544 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x767857ad nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a889be4 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7fc43a21 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8267ac7b nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x885d64fc nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b2d61d6 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9324e454 nf_conntrack_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95e74844 __nf_conntrack_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cce168e __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d063f86 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e8dfc3a nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0e182b0 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa17874dd nf_ct_remove_userspace_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaefa05ac nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xafee8fd7 nf_conntrack_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb059c856 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3355f34 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb91b0354 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbde170db nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc07faf2a nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3614260 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40fc527 nf_conntrack_flush_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc447af82 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5134cc0 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc754595b nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8e887c8 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc08363a nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4278e9d nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2b387bd print_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf43d35ac nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc67afa8 nf_ct_l3proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfdaeeac8 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe3e54b8 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe550180 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x1f4b5810 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x05a2ee10 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x4462751b nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0363c39d set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x04a9a19c nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1b3b52a8 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x378ee8d2 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7a14d92b nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x806fdb90 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x833ea880 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8c281605 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8eca1e6e set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xec9f4956 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x2a5dfa21 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x28e423fc nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x48d01af2 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x85dcf44f nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc7a66797 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x38e70671 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x84478713 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0d56f466 nf_nat_sdp_media_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2d0d09c9 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3966ea72 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x45d523c8 nf_nat_sip_expect_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4bfe42f9 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x66fc9d9c nf_nat_sdp_port_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6f7cfb8a nf_nat_sdp_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x768a78a2 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x958417a7 nf_nat_sdp_session_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x96b7bcfd nf_nat_sip_seq_adjust_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc79dcc7e ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd5269e00 nf_nat_sip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xed9cf26f ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xbab2e17e nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xc19f3071 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tproxy_core 0xe191f8a5 nf_tproxy_assign_sock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f58e71b nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x21ea161d nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3895cd7a nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x50b1fded nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x52ba6701 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x56e82e63 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9442af1f nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9dc9d7bd nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xa418b5c5 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0d87460d xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x11a44ecd xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1f58f04b xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x345752f0 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4dda030a xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4e4c6e3a xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x69853a81 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6f95d5cf xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8a7b7a05 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9a1897d0 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1cde69c xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf524a012 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfcb39598 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x133e13b5 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf7b03908 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x05efe38f rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x17496ff5 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3119a283 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x346805cc rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x3eea224c rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x42efbda1 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x4f8a40f7 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5973d448 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x5b870651 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x61148714 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9e7a990b rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9e7d4c6c rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xa01ff187 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xae37d388 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc81ee6a0 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc91517fd rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xcc8c1107 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xd136e738 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xd82d9a98 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xe415cd47 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xe7b1d8c1 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xec91aa0a rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xfde1f092 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x438c9b25 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xeee7c3a9 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0bd248ea gss_mech_get +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x12b5de08 gss_mech_get_by_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x36bc9a29 gss_mech_list_pseudoflavors +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x52daab68 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x715cd1ea svc_gss_principal +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8e77e211 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x96671632 gss_service_to_auth_domain_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9ed9c4fe gss_mech_get_by_OID +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbb7be125 gss_pseudoflavor_to_service +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xc32ea129 gss_svc_to_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xdf5313c4 gss_mech_get_by_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xe6aab934 gss_mech_put +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xfa02bbda svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x010e6bc6 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x035f2b56 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04e2839c rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06047886 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0605285e rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06d791c7 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x091460b4 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09e04c9d xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12a16011 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e280e3 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14cab2b4 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x151c4497 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x157d1991 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1609c6c5 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16972a06 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b2276df rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cdf8a19 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ff01a38 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2016dc21 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2062ca4d rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x208bac88 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2178a772 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x234a249d auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26a83b45 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27508eaa rpc_queue_empty +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27f0226a rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x297d6b80 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29887d37 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b1d9657 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d28cfd3 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f91567b xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30b327a9 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3477cd0e svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x369eca16 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a366377 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aba17cc svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b7c93c9 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bc6bc26 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cb89e73 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3daa141d svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x409c6c2a rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41c04c8c rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42feb690 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ed046c rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45131bda xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x460f9e48 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46d2d5d4 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47e9d608 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x487502cf rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49c7f35f xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a37e3fc rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d3d7c07 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4efdfcee cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5106293b rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x542b083e rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b14ec1a rpc_put_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ba42348 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd26000 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e8cec23 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x603227c3 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x618bdbd6 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x626e0251 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64634083 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64c8d134 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64d6ee13 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64d73aa6 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65306a28 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66269629 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66423b9f xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x677d012a svc_sock_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x678052d8 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67abea1d rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68c07064 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a5046d0 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ab0d954 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b7c0b60 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eea229d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f984163 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73ec4454 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x755828ad __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76baf3da xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76cc2569 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77fc8deb rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7895b87a xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a88122e csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bb73c52 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cd907ce xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82b80469 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8456cbed rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x857d5922 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x888042cf xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a9f2677 rpc_get_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d45eda5 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8db9cde6 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ddd2abf _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x901a6dd0 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91c52fc3 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93071e0c rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93218754 rpc_mkpipe +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94333693 cache_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x968b2ec6 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97fae5b8 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x987012b9 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9be1b44e rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa125eb39 cache_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa297b691 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5ef8be3 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa82465fe svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab1f8161 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab3aef59 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac9cda47 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacb6ccd1 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1fdc4f3 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2f87ff7 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3a69334 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5064020 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5115b94 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb83b34e6 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9d91edf xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc974450 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd497b67 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe8c5653 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe9479dc rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf73eb5c xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2bc5462 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3318abb svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc34188ca rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8cdbdeb svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca8fb33b svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcad320d1 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc156edc xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd143350e rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd147b8a6 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd29983f3 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd33a57c7 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd424a060 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcde2c58 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde77c684 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfd33049 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe06f1db0 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe07bcc9a rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe15855f9 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe71eed3e sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7f10de6 xdr_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee375c77 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf03a7d75 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2e00dbe rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf410236b svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74f743b rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7caf94c xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9a888fb svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe158efb xdr_decode_array2 +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0b8af558 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0da6368d wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2b83f6ee wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5713c55f wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x57e0cab0 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6aa77830 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8e6858b3 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa754b0a3 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb092f39f wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbcf6e5f7 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe7cd5cbd wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xeb2d0f8c wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfb999c25 wimax_state_change +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x16a4aef2 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4915b6f9 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6224397f cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x62a48288 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6bfda52c cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8b222dfd cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xad674f2b cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbffce151 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc86f1b14 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe86373b7 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xefcc8035 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x138527b0 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3498db19 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x62b8043e ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xcd05c0b7 ipcomp_output +EXPORT_SYMBOL_GPL sound/core/snd 0x8d3f951f snd_kctl_jack_report +EXPORT_SYMBOL_GPL sound/core/snd 0xed45d3ff snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xf0fe9fc0 snd_kctl_jack_new +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x460e477b snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x200a1397 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4b96b2d4 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4df74c21 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x66cebef2 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8cf0a6e3 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xeb4116bb snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00a99dc4 snd_hda_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x056029cb snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e052793 snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e1bed04 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1345a908 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x169fd130 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x178ce67e snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19028a99 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x193a8bef snd_hda_check_board_codec_sid_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b5e1d4e snd_hda_codec_resume_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c8e7f02 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22f76f7b snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25158f51 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25a275a4 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28cddd32 snd_hda_codec_update_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2950b913 snd_hda_codec_amp_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d0c943a snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30e04d75 snd_hda_override_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36d8795b snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3982db43 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b62c76f snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c4cac5c snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ef87552 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44e7109b snd_hda_get_sub_nodes +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44ea5a74 snd_hda_resume +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47cb12b5 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b8a467c snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dab1f60 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e2bbf0a snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ea42a3c snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5014ec25 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x530460f9 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x539ddf2d snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58a96a26 snd_hda_ch_mode_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c980857 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f65fdbd snd_hda_query_supported_pcm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x624bb4a6 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62782e23 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62ad863f snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62dcc9e7 snd_hda_queue_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x634d1540 snd_hda_bus_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63e6fb8d snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6460beaf snd_hda_codec_resume_amp +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67a695b3 snd_hda_sequence_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a847d86 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cd2cc9d snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d7f477 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x740392d3 snd_hda_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7588a8d8 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77099377 snd_hda_codec_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7be6d9f4 snd_hda_check_board_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82041157 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82c241c1 snd_hda_power_down +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x86007b65 snd_hda_ch_mode_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87e4339d snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x886fd3c0 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b2f2130 snd_hda_is_supported_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c89c016 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4c6826 snd_hda_calc_stream_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f14e9fc snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9236a149 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94767b9c snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96fe7af3 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ca7395d snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ce171f5 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f301d7f snd_hda_codec_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9fce16de snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2827d76 snd_hda_get_jack_location +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa36ff2bd snd_hda_codec_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3d9d393 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5a08031 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa643b922 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6cb3d8c snd_hda_power_up +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6d58998 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaef4a747 snd_hda_bus_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf3c72ed snd_hda_create_spdif_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafb1c9fd snd_hda_ch_mode_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1c0d3c4 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5a9c3e6 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb60108db snd_hda_jack_tbl_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9356402 snd_hda_delete_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9c6339a snd_hda_suspend +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd05d8df snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbee45268 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf768c17 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc41f62c6 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc48398c0 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc652fd69 snd_hda_get_jack_connectivity +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7d0f517 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8a72340 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb301b6e snd_hda_get_jack_type +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5c70c1c snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb49d302 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd1c1f10 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0084cb3 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3d3d714 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5631e8c snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6d3cd44 snd_hda_query_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe785f6cf snd_hda_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb3b0b0b snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec4fb84e snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecbddd9b snd_hda_add_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed4e24d9 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf3efb768 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4e4ffac snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf77f863d snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf8c1b318 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa21eb1b snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb8bffc8 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x4e06feed pm860x_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0xf9cc815f pm860x_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cx20442 0x99ff6eda v253_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-l3 0x78c84c7e l3_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max9877 0x1b0d2368 max9877_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x28601ca6 aic3x_button_pressed +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xa892f167 aic3x_get_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xab4dbd83 aic3x_set_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xb30e24c6 aic3x_headset_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xd2939b35 aic3x_set_headset_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x1b39b5e8 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xd5ced2b4 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wl1273 0xbd0beb1b wl1273_get_format +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x0274fe0f wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xa2191473 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xcd119228 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm2000 0xde551846 wm2000_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x8c968eae wm8350_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0xaec637fd wm8350_hp_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x820af66b wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x0a2b65c8 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x007de6b6 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x8f51d352 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8996 0xdecd10d9 wm8996_detect +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00475323 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0395a91a snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0457cd25 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04d49eb6 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08e642b2 snd_soc_dapm_get_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b71857d snd_soc_default_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c4169c7 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d16b3b2 snd_soc_put_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d404248 snd_soc_put_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1078b10f snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13144754 snd_soc_dapm_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1354ee8c snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x153edc44 snd_soc_bulk_write_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a995f98 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b78e06a snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d923a74 snd_soc_codec_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f31b892 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23cff6f6 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24950f20 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26f2296e snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c6baf32 snd_soc_codec_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x304da659 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31af9b7a snd_soc_info_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33b195f1 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x343fbbf2 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34c81197 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e68f41d snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47754488 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b169b58 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c26ec9f snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4caac7b1 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dbdcd87 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50091314 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51190d00 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57ff2610 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b63d96d snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d0c2e37 snd_soc_cache_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62b8e1b7 snd_soc_info_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6335e318 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67624716 dapm_mark_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x694509ec snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6962ac61 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f3c7b1f snd_soc_dapm_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7855b657 snd_soc_default_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a6c14bf snd_soc_add_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b638c33 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ba1cd43 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bad6210 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bb9ebc6 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cb61ef7 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d604687 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e9a2a93 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81b7aed5 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89ad2f0b snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b94dbad snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c8ceaed snd_soc_unregister_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d301fd5 snd_soc_info_enum_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fc98610 snd_soc_register_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92ce943c snd_soc_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9451b47f snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x959915d9 snd_soc_codec_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x987f54f1 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c755108 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e49b751 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0dcf3eb snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0ee9112 snd_soc_get_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2a109cd snd_soc_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa66b96e1 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf72f51c snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xafe7de66 snd_soc_codec_set_cache_io +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3631c35 snd_soc_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb591258f snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7ee0400 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb90a64cd snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdc3330b snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc07d674f snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca781b9f snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcafb1b2f snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5a24d15 snd_soc_get_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6b50aed snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8ae89bb snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda068974 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc78f114 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcbb8781 snd_soc_cache_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdeaa0e37 snd_soc_cache_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf9c70f9 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfb7c8ae snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4f6fb2d snd_soc_update_bits_locked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe51d776e snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8f02e8b snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe97e69c5 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9a6f23c snd_soc_dapm_put_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec12f4cd snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefefc674 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf591f9f2 dapm_reg_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6b349a4 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7ccdceb snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8166262 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8fe039d snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb077e2c snd_soc_default_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbfd5954 snd_soc_info_volsw_ext +EXPORT_SYMBOL_GPL vmlinux 0x0031014a device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0067df75 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x0088a193 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x00c4dc87 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0126f0a0 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x0133670b raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x013fbdac cs5535_gpio_set +EXPORT_SYMBOL_GPL vmlinux 0x0165f051 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x017543f0 net_ipv6_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01a4ea6d unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x01af9e58 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x01dd800a task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0224de4e hrtimer_start +EXPORT_SYMBOL_GPL vmlinux 0x022ceea3 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x0259745f pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x029f2066 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x02e01466 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x02fb4f96 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x0314cb59 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x031cdcc8 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x0321a65c scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x033df29f get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03c66bf5 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x03da4168 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x03de2d2d pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x04479583 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x04486e88 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x044dae08 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x0466a93d usb_enable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x04ca2c8e key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x04ce5a66 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x04ef8a1b __clocksource_updatefreq_scale +EXPORT_SYMBOL_GPL vmlinux 0x051eaa74 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x0531dcb8 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0561aef3 crypto_rng_type +EXPORT_SYMBOL_GPL vmlinux 0x0570e38d scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x0578bc69 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x05a17732 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x05a6506c ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x05a6b900 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x05ae262e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05afcc66 wm8994_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x05f68d01 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x060d1064 set_memory_ro +EXPORT_SYMBOL_GPL vmlinux 0x0619ca8a getboottime +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06bc1ef3 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x06d2337d gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x076220cd sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x07a6452f fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x07a82403 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07f25fa8 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x081867ff pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x084396c9 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x0844c66d scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x086eb422 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x087ee4e3 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x088a9ed7 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x08a34c70 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x08daa2cd debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x08e3a447 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x08ef64c3 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x091429d7 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09227681 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x0927e164 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x094c0f60 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x09a35625 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x09b38453 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x09c11e3c adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x09cc613e unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x09eaf660 free_css_id +EXPORT_SYMBOL_GPL vmlinux 0x0a12478f usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x0a9118fa md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x0ad38c9f cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x0aed48eb css_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b19ed7c apei_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x0b28defb kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b45c22a pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0b5b4016 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0b8933d9 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x0b98b7f5 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0bd91f88 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x0be13004 usb_storage_usb_ids +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c18ad1f vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x0c2764a4 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c30c28f pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x0c4d7807 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c93e111 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x0cb4831d key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0d0c109d of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0d1eab09 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x0d3cc82c of_irq_map_one +EXPORT_SYMBOL_GPL vmlinux 0x0d6e4d10 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x0da205cf crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x0daaaa9a alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x0dd15af6 blk_abort_queue +EXPORT_SYMBOL_GPL vmlinux 0x0ddbd83a rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0deb0ade register_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0x0df9664b bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e3ddc89 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x0e8b39e0 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0ed2aa09 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x0f18a8c4 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x0f2099f9 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x0f2a896e exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x0f4e3b49 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0f66fde8 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x0f85bd47 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x0fb95824 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0fbed05d __rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x0fc740da md_run +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fde06b5 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x100c48a2 unregister_dock_notifier +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1016d516 register_efivars +EXPORT_SYMBOL_GPL vmlinux 0x1032b820 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1061d8ee kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x1069d867 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x106d63bd ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x10d78477 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x10e6d697 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x10eb63c6 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x110447c0 css_depth +EXPORT_SYMBOL_GPL vmlinux 0x1122ed2f crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x11653f44 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11732a94 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x11c0fb96 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x11cdae73 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x11f447ce __gpio_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x12198da1 md_trim_bio +EXPORT_SYMBOL_GPL vmlinux 0x121ed3f3 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x12250e48 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x123b4a20 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x12436a27 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1252bcf4 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x1258d9d9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x125ee483 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x125fd2ba skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126c0ab2 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x12866951 sysdev_class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x12cbd424 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x131a0223 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132b1f14 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x13354608 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x13574bbf nf_net_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0x13596c97 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x135b9fa1 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x13839320 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x13a0902d do_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x13ad9b72 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x13b2a946 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13db1b17 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x13f3e3fb klist_init +EXPORT_SYMBOL_GPL vmlinux 0x14387d16 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x14479889 sysfs_put +EXPORT_SYMBOL_GPL vmlinux 0x14513c63 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x14ecd0f9 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x150a696b usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x1515af83 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x1526cea4 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x153a0c91 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x15413fc3 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x1544652e add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x1556756b usermodehelper_is_disabled +EXPORT_SYMBOL_GPL vmlinux 0x15784d69 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1590b4c1 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x1598dc9d unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x15b00ef1 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15ce3e34 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1607cab9 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x161125dd user_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x16115539 cgroup_lock_live_group +EXPORT_SYMBOL_GPL vmlinux 0x163bc646 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1655bb05 queue_work_on +EXPORT_SYMBOL_GPL vmlinux 0x167f02bf __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x169a0c81 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16c57b0c unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x171b577b unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x172e72d4 vdso_enabled +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x17671dad olpc_ec_wakeup_set +EXPORT_SYMBOL_GPL vmlinux 0x176b436e blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x17d6905e transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17dc7ec1 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x17e43ec7 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x17f78860 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x183a1d7a blk_rq_check_limits +EXPORT_SYMBOL_GPL vmlinux 0x18434685 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x18503ff4 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18ab24f3 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x18e2c347 dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1925a8ce blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x192cef22 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x192e0c0c usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x19337783 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x193d48e0 trace_current_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x19496284 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1957cbb3 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x195afa58 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19c48fb0 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19e2ffba tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x19f569c8 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x19fc7f60 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1a10762c sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x1a2c36f6 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x1a323362 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x1a3a3bee ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x1a55592d crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x1a77f850 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1a968dcf ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x1ab7f916 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x1ad83009 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x1ae0e135 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x1af85a89 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b373a6a of_property_read_string_index +EXPORT_SYMBOL_GPL vmlinux 0x1b406905 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b543c67 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x1b81ab20 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x1b992987 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bae2a91 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x1bfaf367 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x1c307a5a kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x1c480427 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5dba15 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x1c852e7c xfrm_calg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c887b1a blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x1c8aef6c add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x1cc6d51f devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x1cdf6645 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x1ce16f45 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x1cf976b2 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x1d1ab72c pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x1d365b03 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d55f2fc ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x1d9496fc of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x1dcb5e33 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x1deba3d3 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x1df5b599 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1e0e82d0 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1e290fd6 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x1e314b21 regulator_use_dummy_regulator +EXPORT_SYMBOL_GPL vmlinux 0x1e3a88fb trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1eba928f ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ee2fcbb virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x1ee9814e irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x1ef58fb1 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x1f045f67 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x1f6f8095 find_module +EXPORT_SYMBOL_GPL vmlinux 0x1f748ba9 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8b9386 inet_csk_clone +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8ec1b3 acpi_get_pci_rootbridge_handle +EXPORT_SYMBOL_GPL vmlinux 0x1fb06d9c usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1fb5e3e8 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x1fcece42 inet_twdr_twcal_tick +EXPORT_SYMBOL_GPL vmlinux 0x1fdd0bf3 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x1ffb61c3 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x20042bd8 blkdev_aio_write +EXPORT_SYMBOL_GPL vmlinux 0x200e7ede ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x202ec171 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x20382633 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x205c5ffb sysdev_class_register +EXPORT_SYMBOL_GPL vmlinux 0x20af2be8 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x20bc3470 orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x20c549eb tpm_show_pubek +EXPORT_SYMBOL_GPL vmlinux 0x20c9f836 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x21778b50 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x218cfe8c blkiocg_del_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x2190c558 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x2193ec1c acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x21e9e76e virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x220403ca sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x222d68cb virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x223b2a85 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x22599cdb sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x225a7260 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x225c7208 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x227cfb2e ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2339680d dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x235a8767 class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x23679939 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x2370510d usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x237e1eed ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23ff3dd1 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2406dae3 pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0x240b739a iomap_create_wc +EXPORT_SYMBOL_GPL vmlinux 0x2422d1f5 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x24327a77 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2447533c ktime_get_real +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248720af tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b181a2 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x24e1307e flush_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x24e5a997 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24fc46b6 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x252e43b4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x25895b19 get_cpu_sysdev +EXPORT_SYMBOL_GPL vmlinux 0x259e1be4 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x25a6e07f spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x2616bee2 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26507c36 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26dffe2b cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x26f803e9 blkiocg_add_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x26fa8feb drop_file_write_access +EXPORT_SYMBOL_GPL vmlinux 0x271e3080 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x2722445d dw_spi_add_host +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x28314381 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x28a037f0 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x28a82da4 snmp_mib_init +EXPORT_SYMBOL_GPL vmlinux 0x28d032d2 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x28d664ff __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL vmlinux 0x28e25882 dm_underlying_device_busy +EXPORT_SYMBOL_GPL vmlinux 0x28eafeef tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x28ef96c3 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x28f98168 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2901a718 queue_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x29059b53 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x29159d76 inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x2968cde8 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x296fa2b8 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2a37c4aa fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x2a50b449 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x2a55b5b3 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a9f9702 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x2ae29b03 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x2b08b6c5 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2b3956a0 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x2b40155e __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x2b5e9742 blkiocg_update_io_add_stats +EXPORT_SYMBOL_GPL vmlinux 0x2b655abb watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2bc5793e i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x2be7fb8e disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2c098202 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2c0dc18b filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c301661 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x2c499cea sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x2c60b64c ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x2c6d66bc find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2c7829c2 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x2c9ad408 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x2ca4ebcd regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2cacface sysdev_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2cd912b7 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x2ce6421d spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d027935 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x2d316883 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL_GPL vmlinux 0x2d3a338c __class_register +EXPORT_SYMBOL_GPL vmlinux 0x2d46fa58 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d656035 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x2d78e051 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2dfa7610 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x2e1497e0 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x2e1ae0be __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e400707 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x2e45e488 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x2e47f677 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x2e61a824 inet6_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x2e96d73b rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x2ea00b62 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2eb91dfe scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x2ec45cd3 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x2f19c925 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f234ef3 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f47d8c7 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2f62ac9e ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x2f683d9f edac_put_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0x2f79f791 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x2f857551 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0x2f9c10c6 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x2fcd9e17 dpm_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2feed86c fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x2ff34796 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3013d13d pci_renumber_slot +EXPORT_SYMBOL_GPL vmlinux 0x302724eb wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x3054799f usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x307f7776 timecompare_offset +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30b1990b sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x30b782ae platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x30c90125 cgroup_unload_subsys +EXPORT_SYMBOL_GPL vmlinux 0x3108ea46 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x311a762f iommu_domain_has_cap +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31382596 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x314a4743 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x31579f43 scsi_dh_detach +EXPORT_SYMBOL_GPL vmlinux 0x316db187 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x318920b1 register_dock_notifier +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x3218899a inode_dio_done +EXPORT_SYMBOL_GPL vmlinux 0x32239269 device_del +EXPORT_SYMBOL_GPL vmlinux 0x322afb67 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x32528423 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x325c837f xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x3262114d platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x3274d05c sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x32b31a8c ktime_get_boottime +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c75242 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x32cbbbe2 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x32d25a01 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x32d5e7fc xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x32e702fb ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x32fd4b62 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x33156d1a rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x33543801 queue_work +EXPORT_SYMBOL_GPL vmlinux 0x33589e9b cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33726b16 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x337f359c usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x33b5c4fe cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33f77781 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x34104624 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x3418f3a8 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x3441c3d6 gpio_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x347a1b3f fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x348657af iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x34fd87b4 usb_is_intel_switchable_xhci +EXPORT_SYMBOL_GPL vmlinux 0x3534e2a3 system_nrt_wq +EXPORT_SYMBOL_GPL vmlinux 0x35627ca2 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x357679b8 get_driver +EXPORT_SYMBOL_GPL vmlinux 0x357b187b gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x35d843bc stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x361f91df device_move +EXPORT_SYMBOL_GPL vmlinux 0x362e23ec call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x363343df sysfs_get_dirent +EXPORT_SYMBOL_GPL vmlinux 0x36624754 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x36806b55 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x3681bfc0 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x36875389 __timecompare_update +EXPORT_SYMBOL_GPL vmlinux 0x36aa5179 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36e2c714 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x37665aca fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x37d3bef0 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x37f00094 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x38061519 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x380d151e usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x380e5e6e olpc_ec_mask_write +EXPORT_SYMBOL_GPL vmlinux 0x3829f042 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x3841ab01 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x388b56a1 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38ea936e __memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x395aabe3 regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x3966ab48 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x39c96139 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x39e15e5f trace_nowake_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2b62d4 wm8994_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3a3c672f usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5d01e0 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3a9c990d class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x3ab3e876 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x3ab47ba6 sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x3b013860 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x3b1746c1 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3b34101f ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x3b5f2278 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x3b62e259 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b7172f0 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x3b98eee9 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x3b98fafb dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x3bcf4443 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x3be89d3c usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x3c0fb2f2 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3c3bcf85 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x3c7afde9 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c942368 profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cac21b9 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cf63022 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x3cfedb3f register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d06b736 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d41f196 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x3d74eff6 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x3d8d2ff2 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x3dbc90ce sysfs_get +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3dde0e07 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df1f1b1 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x3e051b29 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x3e19c480 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x3e1b69b7 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x3e23e888 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x3e29dc71 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x3e43a30d sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e7f0dfc __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x3e9ca55f __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3edad223 usb_usual_clear_present +EXPORT_SYMBOL_GPL vmlinux 0x3ee746f7 tpm_dev_vendor_release +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f358f4e usb_string +EXPORT_SYMBOL_GPL vmlinux 0x3f3c08a3 pci_block_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x3f54548c wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x3ffb7488 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4009720f sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40747cfb fuse_conn_kill +EXPORT_SYMBOL_GPL vmlinux 0x407b82cb free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4080fbde ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x4095b7b6 iomap_atomic_prot_pfn +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40bee857 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x41d214a7 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x42321a0d blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x424f4dbf led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x425a331e usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x426c191e blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x426f13b9 e820_all_mapped +EXPORT_SYMBOL_GPL vmlinux 0x4274808b ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42b364ef scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42ba8c9e __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x42ccf95b file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x432d2f71 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x432fd7f6 __gpio_set_value +EXPORT_SYMBOL_GPL vmlinux 0x434fb953 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x435e6c6e crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x437bf587 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x439aab79 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x43e87dc2 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x4400d1d8 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x440fe529 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4411dfb7 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x443c389f posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x44404f11 kdb_register_repeat +EXPORT_SYMBOL_GPL vmlinux 0x4455e1b3 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x447cd7f6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bc5aef class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x44bcfa6d system_nrt_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x44cc9c55 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x44ff6a77 sysdev_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x450014e8 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4530004a ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x453379ed pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x45544ab8 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x45732c6f n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45a4afdd acpi_atomic_read +EXPORT_SYMBOL_GPL vmlinux 0x45aae0de sysdev_show_int +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c4be19 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x45c73aaf dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x45cc52f8 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x45d4b27f cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x46074c17 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x460df0fc usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x4672e88b __crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x46833198 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x469caa5c input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x474359b6 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x4744f5ed __inet_hash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x4792fb43 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x47953b93 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x479f0588 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x47ba0147 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x47c149ab queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x47c2e677 blkio_subsys +EXPORT_SYMBOL_GPL vmlinux 0x47e31020 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x4865f9b3 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x48a488a0 sysctl_tcp_cookie_size +EXPORT_SYMBOL_GPL vmlinux 0x48bbb74e rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x49112888 inet_csk_reqsk_queue_prune +EXPORT_SYMBOL_GPL vmlinux 0x4930a25d mddev_check_plugged +EXPORT_SYMBOL_GPL vmlinux 0x49416980 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x4958cdbe dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x4974ac1a ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49ae97f4 crypto_aead_type +EXPORT_SYMBOL_GPL vmlinux 0x49db8db4 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x49e390a7 dm_set_device_limits +EXPORT_SYMBOL_GPL vmlinux 0x49e3a774 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x49f799af pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x49fd003a tpm_open +EXPORT_SYMBOL_GPL vmlinux 0x4a0f1b09 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x4a4de83e usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x4a7bc844 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x4aac2332 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4abd1a3c dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x4b146d64 blkcg_get_weight +EXPORT_SYMBOL_GPL vmlinux 0x4b4c36cd __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x4b703e5c da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4b915faa rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x4bc62a81 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4c250fe0 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x4c3866c0 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x4c61395c platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c889000 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x4cf9a3b2 x86_mce_decoder_chain +EXPORT_SYMBOL_GPL vmlinux 0x4d11bae7 olpc_ec_wakeup_clear +EXPORT_SYMBOL_GPL vmlinux 0x4d12d27a init_fpu +EXPORT_SYMBOL_GPL vmlinux 0x4d2469ff __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d42095a crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x4d4fd5f1 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4d8be73f ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x4dc0683b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1fbd77 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x4e389f6f rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x4e6e8e07 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x4e7df11b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4ebe4555 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x4ec3dfd3 pci_configure_slot +EXPORT_SYMBOL_GPL vmlinux 0x4ed6e906 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x4eeb54ff tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef7a205 tcp_is_cwnd_limited +EXPORT_SYMBOL_GPL vmlinux 0x4f182790 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x4f1ccf7d dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f5ee6d4 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x4f9e77d8 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4fa29983 ftrace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x4fd4e89d ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x5013e6de pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x504aed61 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x5051b069 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50ba3bec acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f5e532 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x5108b3fc acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x51090b12 gpio_export_link +EXPORT_SYMBOL_GPL vmlinux 0x517ca357 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x518989bb simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x51c3d648 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x51eee3d9 scsi_nl_add_driver +EXPORT_SYMBOL_GPL vmlinux 0x51f439e9 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x522e3808 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x52354e9d pci_sriov_migration +EXPORT_SYMBOL_GPL vmlinux 0x5237b02e crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x52522caa ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x525e0eac scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x528967f4 tpm_show_enabled +EXPORT_SYMBOL_GPL vmlinux 0x52ab18b7 xv_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x52cc6971 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x53127404 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x5314eee5 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x531e034e init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5372dede unregister_acpi_bus_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5374bde0 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x537e7bf0 dw_spi_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x53986488 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x53a3e486 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x53b23392 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x53dc84ec isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x540f0413 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x543f9bec hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x5451fcc5 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x547f952d ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x550031fe spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5519b5df evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x552567c0 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x5588525d __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x55b436c2 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55d15171 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x55e74041 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x55f73b0f adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5614b824 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564f1dca klist_add_after +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5684cbaa rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56951789 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5699509a ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x571cc956 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x572a3de2 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x572bde61 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x574f45af pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x575a84a3 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x576650e7 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x5796bc6e vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57ca499d crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x57dfd223 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x57e57cc0 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x58103894 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x581510df fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x58545603 tpm_register_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5893c389 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x58967798 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x589abf1c blkio_alloc_blkg_stats +EXPORT_SYMBOL_GPL vmlinux 0x58bf783b usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x58df6900 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x59349d6d pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x593a36c2 scsi_dh_handler_exist +EXPORT_SYMBOL_GPL vmlinux 0x59b0409b usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x59bfcd9c usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x59d216fc dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a14939c ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x5a223912 dw_spi_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x5a2f187e pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x5a323d48 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5a48534a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5a664ef9 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x5a6ed399 xv_malloc +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a99f2dc ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x5ab45201 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x5abdcab7 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x5ad5271a task_current_syscall +EXPORT_SYMBOL_GPL vmlinux 0x5b394d6c unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x5b725085 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5b96cdd7 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x5bb906a7 wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bf2e123 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5bfc03c3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c165595 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x5c86c3fe anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x5d2bb005 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x5d2d333f led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x5d37c433 xv_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x5d730e7b raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d87c067 register_acpi_bus_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5db19d59 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x5db281f3 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x5db38d98 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x5dc3025b spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x5dc8f207 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x5dd67618 register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5dd76d11 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x5e0120a8 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x5e1a7b44 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x5e2fa199 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5e3a574e regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x5e48dbdb ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x5e54d0e9 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5e81cef2 driver_add_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5eacba1f ahci_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5ebace2d usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x5ee9f15e udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5f248f72 set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0x5f2876cd ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f46d244 of_irq_map_raw +EXPORT_SYMBOL_GPL vmlinux 0x5f9f3fd9 bsg_goose_queue +EXPORT_SYMBOL_GPL vmlinux 0x5fa4feeb devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x5fa62d6e sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x5fcdec5d xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x5fce76ee blkio_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fedd36b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60e2722e pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x61088473 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x6114d8a4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x61595393 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x61634f05 lock_flocks +EXPORT_SYMBOL_GPL vmlinux 0x61698c6b platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x61961708 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x61ba3c45 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x61deff18 tpm_read +EXPORT_SYMBOL_GPL vmlinux 0x620bc7fe wm8994_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x621d871e ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x6224d918 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x624289e0 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x624a6406 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x625053cb page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x626ec6a4 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x627d754e inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x6296b98d usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x62a11744 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x62a200b0 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x62cb1468 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x62cda436 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x6315a34c sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x63197308 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x63205de1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6347ee72 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x636d5b97 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x6381459f ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x63e6b63b ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x643b157b md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x647fe418 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x6550a92a sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x65591f74 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x657e4b10 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x6592c5e7 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x65b955f5 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d6d0f0 gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x65eca986 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x65fa533b usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x663ca461 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x663d134e max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x66702cc7 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x667a65ff blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66979ed5 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x669b62e9 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x66b2a859 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x6759f6dc fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67aeb712 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x67b8740d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x68241a47 devres_alloc +EXPORT_SYMBOL_GPL vmlinux 0x686c703f xfrm_count_auth_supported +EXPORT_SYMBOL_GPL vmlinux 0x6892088c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68cd2df4 blkiocg_update_timeslice_used +EXPORT_SYMBOL_GPL vmlinux 0x690080f7 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x694d3686 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698be398 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x69b8e6ee ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x69e9a2cb ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x6a2da027 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x6a36d5ab crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a66bd08 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a887e0c usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x6ab922b2 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6aba167a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6acc3214 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6b0f7a59 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b623da5 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x6b807a5f gpio_sysfs_set_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6b94c408 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6bb65e9b regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x6bbe8869 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x6bc8fd59 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x6bc927ab __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6bd8fef3 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6bdfb637 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c1e3145 dw_spi_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x6c49c4f2 clockevents_notify +EXPORT_SYMBOL_GPL vmlinux 0x6c6cbc92 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x6c75e362 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x6c8d5ae8 __gpio_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6cb20014 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x6cc5cc0b sysdev_register +EXPORT_SYMBOL_GPL vmlinux 0x6cd668b2 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d4cf8c7 sk_clone +EXPORT_SYMBOL_GPL vmlinux 0x6d68a777 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x6d883a5b tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x6d9936fe spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x6e343505 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x6e4db2c1 cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x6e59e658 sysfs_notify_dirent +EXPORT_SYMBOL_GPL vmlinux 0x6e5fb958 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e7474fc xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x6e7c84f0 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e8fb454 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x6e90a3d4 tpm_show_caps +EXPORT_SYMBOL_GPL vmlinux 0x6e92bb5d debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x6eb152b6 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6ecb0ae1 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6f03221f of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x6f0d327b crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f47264e wm8994_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x6f567d6a ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x6f608203 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x6f6821ea sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x6f998eee __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x6f9f1950 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x6faad904 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6fb5da19 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x6fc252cb usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x6fd75e1c uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff6e18b class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x70177482 sysdev_class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x701ba7df isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x703189d7 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x703f8734 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x706b3a33 cpufreq_frequency_table_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x706b3d48 ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7098185e usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cfd8d5 tpm_show_pcrs +EXPORT_SYMBOL_GPL vmlinux 0x70d56547 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x70f15b65 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x710774c8 tpm_store_cancel +EXPORT_SYMBOL_GPL vmlinux 0x712fa7a4 cgroup_add_files +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x718fa7e4 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x71b48f66 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x71b527a6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x720678f5 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x720d926d ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x7227a107 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7267db00 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x72787152 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7285f84f unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x728a3a44 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x72afc63d raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x72b212ff regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x72bbe924 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x72db56f8 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x72e8be28 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x730a2891 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x73295628 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x7333f5ed pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7373a566 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x73a26668 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a68137 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x73c14147 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x73c5a27b pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x73cccfe5 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73ed5ce9 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x73f3e692 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x74160d25 sysdev_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x744b277c ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x746dac62 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x74954462 timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x74972053 dm_dispatch_request +EXPORT_SYMBOL_GPL vmlinux 0x74abdafa task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74ebcab0 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75313377 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x753f5fb6 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x75609a2c ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x7560c3ca cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x75737b94 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x75a210bc tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x75b20f59 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x75b669df regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x75c8a11c inet_twdr_twkill_work +EXPORT_SYMBOL_GPL vmlinux 0x75e8f3c3 crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x75f12763 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7610af5e __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x761188fd dpm_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x76321957 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x76681e00 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x7676f532 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x769c7768 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x76a9b231 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x773be688 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x77433514 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x7764cfc5 tracepoint_iter_start +EXPORT_SYMBOL_GPL vmlinux 0x778659b8 tty_prepare_flip_string_flags +EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x77bbab8d bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x77c8fbf2 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x78671fd3 tracepoint_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x7868a492 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x7877645b trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x788ccff8 olpc_xo1_pm_wakeup_set +EXPORT_SYMBOL_GPL vmlinux 0x78c111ac class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x78ddf354 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x78e7ff33 acpi_post_unmap_gar +EXPORT_SYMBOL_GPL vmlinux 0x7915fd4e usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x792720e7 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79e73afa rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x79f8e182 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7a257c4c css_id +EXPORT_SYMBOL_GPL vmlinux 0x7a36523d ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7a4c1438 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x7a7c5175 amd_erratum_383 +EXPORT_SYMBOL_GPL vmlinux 0x7a92fb10 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ae1ae8e cpufreq_frequency_table_put_attr +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b64cad6 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x7b856d0a tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x7b9ab510 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7bae3f5c synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x7bb5fb89 pci_msi_off +EXPORT_SYMBOL_GPL vmlinux 0x7c020bab blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x7c4fe927 devm_kzalloc +EXPORT_SYMBOL_GPL vmlinux 0x7c551382 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cef4d6a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x7d0905f4 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7d44b407 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5c1a71 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dae4bc9 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x7dbbf8e1 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x7dbc898a max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x7dc5d0b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7deb3da2 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x7df3d91b mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x7e069a13 blkiocg_update_io_merged_stats +EXPORT_SYMBOL_GPL vmlinux 0x7e1183c9 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7e1ecdc5 register_hotplug_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x7e275ea8 scsi_complete_async_scans +EXPORT_SYMBOL_GPL vmlinux 0x7e29db08 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x7e3c8338 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7e4d2b88 blkio_root_cgroup +EXPORT_SYMBOL_GPL vmlinux 0x7e536dd8 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e693a78 generic_subsys_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7e74cb5a bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x7e8aa165 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x7ec22f9a apei_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x7ecaa075 sysdev_store_int +EXPORT_SYMBOL_GPL vmlinux 0x7ed77c6b inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7ef21915 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x7f4f43b3 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x7f691fcf raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7f926c70 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x7fb8f4b5 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7fbc7fcd tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7ff10ccf raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7ffc8718 gpio_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8014b6af input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x802393ef ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x8029cff4 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x803fd0c1 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x80701a3c seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x808958f2 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x808f8a97 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x809a5444 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x80a63d3c each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x80c481a4 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x80d04ec4 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x80dfead7 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x8114a805 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x812a0d92 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x812e5c84 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x81bb2242 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x81d1447d rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x8226642f __gpio_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8255c917 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x825e8d50 event_storage_mutex +EXPORT_SYMBOL_GPL vmlinux 0x825f0828 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x826476ca ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x82939ebd rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x82c5c199 tpm_show_durations +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82f776b7 gpio_export +EXPORT_SYMBOL_GPL vmlinux 0x8303ccfb sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x831536dc apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x831ac095 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x834644ce register_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x8347b50b sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x835e36ec rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x83601369 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x8385ff51 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83b6dd55 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x83c62f8c iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x83ce82eb get_monotonic_boottime +EXPORT_SYMBOL_GPL vmlinux 0x83ced575 user_read +EXPORT_SYMBOL_GPL vmlinux 0x83d0aa70 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x83f6cf5b scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x8400c655 proc_net_remove +EXPORT_SYMBOL_GPL vmlinux 0x84126c45 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x846c27ee tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x84a82e0a security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x84b314dc xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x84bd3552 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x84e55789 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x850f687c crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x852b7517 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x85478a0b inet6_hash_frag +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x85c10896 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x86289326 cgroup_load_subsys +EXPORT_SYMBOL_GPL vmlinux 0x86696834 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x867651c5 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86977da3 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x86a6398d rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x86aa16e6 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x86aff112 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x86c73481 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x86caee48 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x873766b6 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x873c1f54 pci_unblock_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87754115 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x8779180e wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x878dc78d tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x87bc05b3 nf_unregister_queue_handlers +EXPORT_SYMBOL_GPL vmlinux 0x87cf0a90 injectm +EXPORT_SYMBOL_GPL vmlinux 0x87ecaee7 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x880498a9 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn +EXPORT_SYMBOL_GPL vmlinux 0x883e4425 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x8853d4b9 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x886736fc olpc_platform_info +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b12c27 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x88d902bd crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x88e77ceb regcache_write +EXPORT_SYMBOL_GPL vmlinux 0x89074675 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x890c174d seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x891210f7 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89480a51 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x897d6e10 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x897d8616 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x897e756e device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x89b41c73 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x89d4dbaf usb_usual_check_type +EXPORT_SYMBOL_GPL vmlinux 0x89d62d79 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x89e956b4 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x89ff43f6 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a0ad14e tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x8a5c7a80 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad650ed mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x8b21f6d6 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x8b295b68 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b5ab818 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x8b752ac1 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x8b759344 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x8b9f6fc2 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x8bda2abf bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x8bfdc2d1 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c4db1b5 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8c63ceb5 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x8c6481ae crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x8c7123a3 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x8c75b989 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x8c80778a dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x8c8ac41a zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x8c9b61df wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8ce8b178 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x8ce8e5ac __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8cfde296 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x8d2753f6 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d2f3352 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x8d5dcc46 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x8dad55e8 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x8db1608b usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x8ddc9748 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x8dfec41a usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x8e252138 rtc_set_mmss +EXPORT_SYMBOL_GPL vmlinux 0x8e576353 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x8e76ec3d sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8ed09c39 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x8edd64d2 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8edfc605 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x8f071a10 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8f187f23 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x8f651221 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f8cd918 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f9d9b28 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x8fb050b0 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8fb576b8 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8feccf50 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x8ff0e1da dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906fbfb3 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x907213a4 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x907ada93 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b87df2 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x90d5bed8 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x90e2c668 device_register +EXPORT_SYMBOL_GPL vmlinux 0x90e50788 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x90f9070e lookup_instantiate_filp +EXPORT_SYMBOL_GPL vmlinux 0x9159b9d6 profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0x9180e6a4 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91e5bcfe olpc_ec_sci_query +EXPORT_SYMBOL_GPL vmlinux 0x92067fd5 task_xstate_cachep +EXPORT_SYMBOL_GPL vmlinux 0x9259dcdd md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x925a7a45 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x926effeb tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x932a3d14 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x933fe25d __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x934a74f8 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x939aaf08 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93d2422d snmp_mib_free +EXPORT_SYMBOL_GPL vmlinux 0x93f8fe67 cs5535_gpio_set_irq +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x945deec8 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x9482c816 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x94a2c102 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x94a5106b xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x94a68723 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94d65b44 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f8d4a0 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956a91ba gpio_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x95da94ca perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x95dd76c8 sysdev_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95fc1ee9 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x96269576 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x96303811 pci_pri_stopped +EXPORT_SYMBOL_GPL vmlinux 0x967622e4 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x9678ae6b fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x968034eb devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x969ffb64 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x96b0d352 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x96cbcf31 pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96cf73e1 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x9704a72d xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x9729eeef class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9756e9dd xv_free +EXPORT_SYMBOL_GPL vmlinux 0x977d3aa6 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x97bb872b bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x97bcaedf __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x97de5573 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x97f9c45a trace_nowake_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x980a7687 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9842f28e blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9869c822 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x98cc564a regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x98f8dc5f con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x98f9e29e cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9941e6a1 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x9977e5f4 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9985cf24 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x998aa9ba sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x99925709 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x99ac3b4f xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x99ddda7a simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x99e7baa3 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x99f8b30c crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a182eb1 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x9a31962c driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a4ba814 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x9a8ac7a1 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x9aa0dcf4 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9acd2a35 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x9adca26c tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b301d61 tpm_show_active +EXPORT_SYMBOL_GPL vmlinux 0x9b4263ab led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x9b4a10df pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x9b53e8f3 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x9b6524ef ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x9b90bbed wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x9b916e2f rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9b9d474b aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba0501e unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ba8159b ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x9bb12348 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x9bd5f2d7 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x9bdc0f85 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x9c204f31 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x9c4c59d7 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x9c588c06 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x9c769071 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x9c7fc8bd nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x9c9330d3 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x9cb8037b xfrm_count_enc_supported +EXPORT_SYMBOL_GPL vmlinux 0x9cc4d6ff wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x9cf6b6b9 cgroup_add_file +EXPORT_SYMBOL_GPL vmlinux 0x9d030b99 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x9d2ed6c6 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x9d68689d pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d922481 ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0x9dcfaf53 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e4f1cfb ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x9e59172a sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x9e74f7f6 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x9e7c98c9 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9e8b6874 generic_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x9e9baae6 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x9ea73a6b ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x9ee1dfed __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x9ee8e9b4 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9f0547db sysdev_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f29601a atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x9f2a6cb0 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x9f3b2344 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9f40a6d6 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd8aec5 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa0448121 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xa0ada93d ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xa0c14846 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa104d228 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa13d341d rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xa1404dac cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xa1472e20 __cpufreq_driver_getavg +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15ed14f locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xa1af37f0 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xa1b9139e rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa1c604f3 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa1c9aca4 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xa1cc2733 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xa1d4e896 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa21ea14a transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xa21f20e6 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xa25dfc1d devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xa29f8bd7 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xa2aeed64 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2d953bb of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa2e67f08 acpi_bus_generate_proc_event4 +EXPORT_SYMBOL_GPL vmlinux 0xa2f75db7 platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xa304c686 cred_to_ucred +EXPORT_SYMBOL_GPL vmlinux 0xa32404c8 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xa328088d unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa32f9ea2 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa3483e78 tcp_reno_min_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xa36b7b9f init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa36e5f22 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xa3819492 pci_pri_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa3b1f600 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa3cca9da usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xa3e56f49 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa40a8590 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa45ff7a4 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4ca0d4e unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa4cb383d tpm_bios_log_setup +EXPORT_SYMBOL_GPL vmlinux 0xa4cc12e9 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xa4d58669 math_state_restore +EXPORT_SYMBOL_GPL vmlinux 0xa4d6b5e3 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xa5065c8d tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xa562904b proc_net_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xa56bc04d tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xa5726192 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xa575139a simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xa577e458 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xa57f6975 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xa580278c __ip_route_output_key +EXPORT_SYMBOL_GPL vmlinux 0xa583b72d driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xa5845b98 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xa5b6be0b pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xa5e513dd ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa633a4a7 tpm_bios_log_teardown +EXPORT_SYMBOL_GPL vmlinux 0xa684bbd6 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa6ef6235 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa718f423 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa722a819 cpu_has_amd_erratum +EXPORT_SYMBOL_GPL vmlinux 0xa7470342 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xa7c1a669 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xa7ebcdfd acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xa7f92105 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0xa8016238 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xa80d5306 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xa823786a tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xa85cbf69 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xa85cefc1 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xa8667e78 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xa888acb3 tpm_show_caps_1_2 +EXPORT_SYMBOL_GPL vmlinux 0xa89449da __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xa8a9ed0d ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8d2fd53 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xa8da8f56 input_class +EXPORT_SYMBOL_GPL vmlinux 0xa8f16499 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xa8f59416 gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9a8728f security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xa9c1ded2 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xa9c530b8 unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9f3f261 net_ipv4_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0xa9fa8835 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xaa20304a scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa36e2de ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xaa3f13f7 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa585631 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xaa852c93 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaaee7582 sysdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaaf33330 pci_stop_bus_device +EXPORT_SYMBOL_GPL vmlinux 0xaafbbeb6 inet6_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0xaaff2d85 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xab4d974b bdi_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xab57603e tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xab5e693c pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xab68d15b regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab7af872 dw_spi_xfer_done +EXPORT_SYMBOL_GPL vmlinux 0xaba64078 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xabc47f60 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xabd5f8ce ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xabff9d4d of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xac03d37e pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xac2f4725 mmput +EXPORT_SYMBOL_GPL vmlinux 0xac3b0db4 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xac827021 default_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xac9674d3 tpm_continue_selftest +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacc0c0fd pxa_ssp_request +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfd81f6 work_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad440eb9 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xad5f1b39 nf_net_ipv4_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0xad73d523 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xad8bfbce bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xad93e6b0 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xad9472b5 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xada38534 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xada5d598 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadcfeaba crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xade6aa3d tcp_init_congestion_ops +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadf9c8e4 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xae0c87ee pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae26191b sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xae47e180 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xae7bf8cc dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xae7c5411 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0xaeea3073 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xaef448ac bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xaf14d5ec wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xaf2ad1f8 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xaf484829 of_irq_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xaf69699e xv_get_object_size +EXPORT_SYMBOL_GPL vmlinux 0xaf6f270a mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xaf725539 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xaf8b31b1 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xafa2b7b9 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xafa7de1a usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xafb7f97c mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xafc1578d inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xafc89ab2 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xafe110f2 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xafe13245 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xaff10421 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb047c226 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xb05fb734 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xb071c86d acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xb0852554 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xb095a5e0 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xb0ae5977 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0f9b77a attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xb10d55bc cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xb12e2bca dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb1327ce9 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xb1362e1c ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb17d2497 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xb1825428 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18506b9 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1cebed6 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xb1feabf5 put_device +EXPORT_SYMBOL_GPL vmlinux 0xb25b350e securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xb266ec9f filter_current_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xb267629f class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb26e5371 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xb282edf9 olpc_ec_wakeup_available +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f5558b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb306dc1e device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xb30be7af cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb38b51aa register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb39e9844 net_cls_subsys_id +EXPORT_SYMBOL_GPL vmlinux 0xb3ba381f usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb3d5eab7 acpi_atomic_write +EXPORT_SYMBOL_GPL vmlinux 0xb3f8cbce rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xb3f92240 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xb42248dc cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xb49a6ca4 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xb4b605da register_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f29e09 sysfs_rename_link +EXPORT_SYMBOL_GPL vmlinux 0xb50458d6 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xb50b0713 cpufreq_get_measured_perf +EXPORT_SYMBOL_GPL vmlinux 0xb5155ca9 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xb51ea255 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb525c15c pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53a17bf cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xb53ae573 cpu_idle_wait +EXPORT_SYMBOL_GPL vmlinux 0xb5846c2c unregister_efivars +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5d8913d register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb5da960d virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb633ecf8 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6d49ebd blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xb6e0350c blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xb701c800 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb7495fc8 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xb75bb719 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xb7d65e59 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e2eb91 mce_cpu_specific_poll +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb8098d23 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb813ce5a timecompare_transform +EXPORT_SYMBOL_GPL vmlinux 0xb84e4c47 iomap_free +EXPORT_SYMBOL_GPL vmlinux 0xb84fb076 aead_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xb86a2245 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xb86bcceb klist_next +EXPORT_SYMBOL_GPL vmlinux 0xb872682c inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb8f2d337 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xb91c1283 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xb9235292 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xb928cabd __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xb9732ecb iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xb987ace1 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xb98b65a6 dm_requeue_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0xb991c3e8 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb9af9b44 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xb9b5c923 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9da2997 snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0xb9deb7b3 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xba42104a unregister_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0xbab2e1f0 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbae34c27 scsi_nl_remove_transport +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb1b6b9e __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xbb617c2d hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbbb608a6 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbeda658 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xbbfce101 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xbc2bf721 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xbc456407 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xbc6c62bb device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xbc6f885b fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbc6f931b workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xbca6e08e sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbd26a6ce single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xbd4aade5 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xbd506a46 unregister_hotplug_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xbd5f2320 sysfs_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xbd98fd82 regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbe019753 virtqueue_add_buf_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbe0e9018 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xbe156fd1 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe2782db __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbe3bd89f wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xbe482639 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbe5883c4 pci_pri_status +EXPORT_SYMBOL_GPL vmlinux 0xbe8fdadd platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xbe936604 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xbeac3749 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbf25707a usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xbf5b2857 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xbf6bba43 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbfb69a8a bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbffcb3b7 acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc0174522 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xc0226c07 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc03ab504 setup_deferrable_timer_on_stack_key +EXPORT_SYMBOL_GPL vmlinux 0xc0449145 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xc0606720 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xc07367cd init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc08465d0 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0aa9e3c __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xc0bb404a cs5535_gpio_setup_event +EXPORT_SYMBOL_GPL vmlinux 0xc0bf6ead timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xc0f7991b invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xc102f17e ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc10f2b8e cgroup_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc11bd00f tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc127fa26 acpi_pre_map_gar +EXPORT_SYMBOL_GPL vmlinux 0xc139aa72 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xc1706c46 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17bf647 dm_kill_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0xc1a3cf2a pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xc1cb6a8e crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xc1cb97d6 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xc1d0a660 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xc1d161c7 user_match +EXPORT_SYMBOL_GPL vmlinux 0xc1f9318e inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc269d6db debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xc274341f usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2ba169f use_mm +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2f4565a regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc34efe27 snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37820ae usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xc399468f scsi_nl_remove_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3f42171 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc3fe0894 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc45c0675 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xc4820756 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc492795a i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xc4a312f1 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc4b0fd7d __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xc4c40c2d mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc51deabe rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc543ddb6 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xc5469498 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xc5589823 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xc56c9154 pxa_ssp_free +EXPORT_SYMBOL_GPL vmlinux 0xc57499af elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc58cdb60 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0xc5aad65f transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xc5c264a5 amd_erratum_400 +EXPORT_SYMBOL_GPL vmlinux 0xc5d9eade ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc5ed23f0 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc60f75ec __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc63ac00a adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xc650c208 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc67df73b blk_queue_bio +EXPORT_SYMBOL_GPL vmlinux 0xc6b3a79d blkiocg_update_completion_stats +EXPORT_SYMBOL_GPL vmlinux 0xc6d34b8a save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7442664 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xc74fb01c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xc78df2c5 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b7f62e crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xc80f6b69 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc82be0fd sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xc82cc719 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xc836231f raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xc859ca17 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc8838461 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xc884b8ba edac_get_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0xc88b7dc0 put_driver +EXPORT_SYMBOL_GPL vmlinux 0xc88f85a6 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xc894784a acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8ce4362 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xc8fd6181 tps65910_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9170bef bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xc9179a3a tracepoint_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xc92124f3 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xc9225aae bus_register +EXPORT_SYMBOL_GPL vmlinux 0xc947b76b inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc98b8977 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xc990c071 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xc9b42105 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9cc4d20 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc9e2e8c4 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca1201b1 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xca27a8c6 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xca5d1fc4 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xca657d03 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xca726c8b usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xca85d8cf tracepoint_probe_update_all +EXPORT_SYMBOL_GPL vmlinux 0xca8dc89f handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcb10e20c tpm_show_owned +EXPORT_SYMBOL_GPL vmlinux 0xcb1f9af4 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xcb51a084 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xcb79ec16 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xcba6b6ca md_stop +EXPORT_SYMBOL_GPL vmlinux 0xcbae92cb mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcbcc8702 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc0610e8 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xcc0e668f sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xcc17df57 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xcc1f1c3d inet_twdr_hangman +EXPORT_SYMBOL_GPL vmlinux 0xcc25b081 edac_class +EXPORT_SYMBOL_GPL vmlinux 0xcc26ada4 tpm_remove_hardware +EXPORT_SYMBOL_GPL vmlinux 0xcc3da32d aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xcc41bd7f apic +EXPORT_SYMBOL_GPL vmlinux 0xcc6ab305 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcce29e02 sysdev_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xcd3599eb synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xcd4c1460 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcd928417 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcd9991a9 usb_usual_set_present +EXPORT_SYMBOL_GPL vmlinux 0xcd9fa68f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xcdaa04aa posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde71954 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xce2a9649 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xce2ba65b clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce709f87 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xce74406e ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xce85980b ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xceab8f6b sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xceacb296 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xcec74551 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xcee4604d sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xcef1876e scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xcf73be22 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcfa2e0c8 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xcfb3db02 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcc83ad register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcfd63d25 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfd990b0 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xcfe236a1 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xcff41ced raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xd00362b2 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xd00b42b5 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd0312676 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0491645 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xd05dc2a3 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd07b2b99 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xd0a2f2f4 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c2d547 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xd0c8a6b6 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd0d2a7bf __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd0f2894f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xd0f2cb12 tpm_show_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xd11e8da3 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xd12ac59b olpc_ec_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd1399d49 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xd143b4e7 tpm_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1828e4e usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xd18df2b9 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd1b2db37 tracepoint_probe_register_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xd1c4d1a8 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xd1f7787c clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd270d24a perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd28094e0 inet_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0xd2970b8a __olpc_ofw +EXPORT_SYMBOL_GPL vmlinux 0xd29a69f4 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd2a6484f shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xd2a8caf0 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d3aa55 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd307e393 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd32fe193 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd350964f fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd35641e3 platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xd37e13b4 regulator_set_optimum_mode +EXPORT_SYMBOL_GPL vmlinux 0xd38ab2c6 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xd390f979 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xd39c0132 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xd39f5a44 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xd3bd9300 cs5535_gpio_isset +EXPORT_SYMBOL_GPL vmlinux 0xd3c42f1a inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40a778e scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd44b69c1 ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xd4870914 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd4876198 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd496f828 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd56b73f6 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd5803255 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xd59668e6 unlock_flocks +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5fab9c5 inode_dio_wait +EXPORT_SYMBOL_GPL vmlinux 0xd605be7f hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xd6170e9a cgroup_to_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6945882 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xd69b423f handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xd6a8a9ec task_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xd6c536d0 regcache_read +EXPORT_SYMBOL_GPL vmlinux 0xd6d166df get_device +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd759af0f __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77b904b ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd78664e1 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd8007312 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xd808989e usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd81c2f19 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xd81c9a3e __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd82636eb uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xd8525ea7 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xd85ac634 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd892f4af device_schedule_callback_owner +EXPORT_SYMBOL_GPL vmlinux 0xd8f1ddf6 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd9219ad4 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xd93e76a6 kbd_table +EXPORT_SYMBOL_GPL vmlinux 0xd940f022 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read +EXPORT_SYMBOL_GPL vmlinux 0xd977aae5 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xd9796dd3 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9994569 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xd9b3afef __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xd9c46ca6 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f34b16 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xda196c85 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xda1be8e1 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xda3a7ca9 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xda73d15b crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xda7d8c5b anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdaf2e50a tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb014916 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdb04cacc tracepoint_probe_unregister_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xdb089e58 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdb274e52 monotonic_to_bootbased +EXPORT_SYMBOL_GPL vmlinux 0xdb784940 sysdev_create_file +EXPORT_SYMBOL_GPL vmlinux 0xdb870932 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb8c45fd __css_put +EXPORT_SYMBOL_GPL vmlinux 0xdc060b0d ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xdc38dfee inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xdc3f3015 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xdc4ecfab pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xdc5ec808 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xdc714560 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdce57037 apei_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xdcf1b7fa sysfs_schedule_callback +EXPORT_SYMBOL_GPL vmlinux 0xdd1c1321 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd3925cd sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xdd80393f xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xdd8806bd scsi_nl_add_transport +EXPORT_SYMBOL_GPL vmlinux 0xddb1f6a5 usb_usual_ignore_device +EXPORT_SYMBOL_GPL vmlinux 0xddcca0f3 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde1e66f4 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xde2695a8 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xde26db91 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xde417b81 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xde50cf36 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xde6e93e8 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdebe5a54 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xdf15ef38 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xdf28983d stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xdf297c83 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xdf40d37d xv_get_total_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0xdf4fc423 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xdf6ee126 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xdfa1fd06 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdfae09bb user_update +EXPORT_SYMBOL_GPL vmlinux 0xdfe6d923 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xdff84ef2 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe01e8e19 blkiocg_lookup_group +EXPORT_SYMBOL_GPL vmlinux 0xe01fb39a rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xe022ee60 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0406dba device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xe077dacd crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe07c0954 cs5535_gpio_clear +EXPORT_SYMBOL_GPL vmlinux 0xe084ba74 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09ee068 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xe0bdf544 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0e21230 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe0f1f4bf ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xe102a9ba blkio_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1257185 pm_generic_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xe15a39fa sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xe1a03a26 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xe1d5a24e fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xe200cfe5 olpc_xo1_pm_wakeup_clear +EXPORT_SYMBOL_GPL vmlinux 0xe25b0453 crypto_nivaead_type +EXPORT_SYMBOL_GPL vmlinux 0xe280c8aa sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe2819d3d ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xe293fb4d unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2b5bfe0 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe2cba529 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2d64401 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xe2dd67e5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe2e75a80 blkiocg_update_io_remove_stats +EXPORT_SYMBOL_GPL vmlinux 0xe3043355 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe305cddc tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xe31b2a81 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe3212acc br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xe37ab4df ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xe384a102 usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3c11e11 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xe3caabf1 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xe3e5c8d6 of_property_count_strings +EXPORT_SYMBOL_GPL vmlinux 0xe4052cd0 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xe4145f09 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xe418fe27 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xe425c7ca i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4369ef3 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xe439cec7 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe481c08a sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xe4841597 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xe4b5d111 blkiocg_update_dispatch_stats +EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xe5230f3e blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xe52b341d tracepoint_iter_stop +EXPORT_SYMBOL_GPL vmlinux 0xe577d80a hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5ac86d9 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xe5d6a023 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe5e0ea97 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xe60b2c8c user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe61a6d2f gpio_unexport +EXPORT_SYMBOL_GPL vmlinux 0xe6331d20 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xe6488b47 cpufreq_notify_transition +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6564673 fpu_finit +EXPORT_SYMBOL_GPL vmlinux 0xe65d852b set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xe679272f wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe6a7fd7a pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe6ac9da9 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xe6b75579 tpm_write +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef93fa ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe74e9158 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xe76c0e2b xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xe7862630 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xe78a6b8b pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe78c2c87 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xe7baae96 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7c64d46 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xe7c874a6 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xe7e36afd device_add +EXPORT_SYMBOL_GPL vmlinux 0xe7f4837a generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81de700 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe8379d0a ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe850012f pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe874d39b elv_register +EXPORT_SYMBOL_GPL vmlinux 0xe8a120b0 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe8dffa31 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xe8f3b851 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9587909 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0xe99180b1 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xe9a52bdd max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xe9d89085 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xe9ed7c9e blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea065e01 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea2e936f iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xea335b2e inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea665573 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xeadd8a51 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeae74760 scsi_nl_send_transport_msg +EXPORT_SYMBOL_GPL vmlinux 0xeafab226 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeb2cbbad pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xeb2cbd49 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb42bcb2 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xeb5e8529 d_materialise_unique +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebd0bed3 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xebde1d7e i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec2082cf devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec3177e3 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xeca94956 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xece81276 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xecf39950 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xed13dc7a ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xed3b8be3 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xed4d43d8 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xed97571f rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xeda7be30 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xedbb03b2 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xede7d7e3 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xedf3f1f1 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xedfb3a19 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xee116ce9 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xee7ac76f ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xeebd9368 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xeec24d31 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xeedd3d43 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef23d470 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xef2d0ecd ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xef4402d5 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xef5941d4 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef83ec51 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef8d0346 tpm_show_temp_deactivated +EXPORT_SYMBOL_GPL vmlinux 0xef9531d0 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xefb72398 pstore_write +EXPORT_SYMBOL_GPL vmlinux 0xefd0adea ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xefdd5a63 ktime_get_ts +EXPORT_SYMBOL_GPL vmlinux 0xefede62d vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xefef0909 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xeff3732b ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf002898c devres_add +EXPORT_SYMBOL_GPL vmlinux 0xf00999f4 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf01d4d66 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xf025cead pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06c1cc7 unregister_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0xf0700b9b skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xf09e3a97 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xf0ebbfed debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xf0fbf6a1 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xf112fb27 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf1268a7c irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf1787a6e usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf190ca78 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1bed75b crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf1c348d5 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xf1d4667a led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1e48fff crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xf1f5eb20 register_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xf238ebcf pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf304dd18 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31c1261 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xf322a774 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xf34806ec hrtimer_get_res +EXPORT_SYMBOL_GPL vmlinux 0xf3572131 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xf379aea7 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b890e6 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xf3b93a97 cgroup_lock_is_held +EXPORT_SYMBOL_GPL vmlinux 0xf3cd9ce5 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xf3dd036d regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xf3e77ab9 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0xf43b39b2 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xf46832fc device_create +EXPORT_SYMBOL_GPL vmlinux 0xf49140fa __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5316e2e fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xf53f828b usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56c1dd0 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf56d9080 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xf57fd597 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf582a0b0 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5c499c3 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf5e25418 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xf6296ae4 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0xf629fe58 aead_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xf6464980 ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf650047c pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xf66328c1 sysfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf66cd3eb tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xf686485d __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xf6a72119 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xf6b7bf38 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xf6e04730 event_storage +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6efa0c0 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6f6f885 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xf717dfd3 platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xf7322bc8 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0xf756b9e8 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf7a0b6ef disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xf7a14f56 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf7a5ab25 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf839781c proc_net_fops_create +EXPORT_SYMBOL_GPL vmlinux 0xf8484609 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf853220f crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xf874c2d2 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8e85132 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf900d55f led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xf908ae36 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xf92b7724 __scsi_get_command +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf947c64d tpm_release +EXPORT_SYMBOL_GPL vmlinux 0xf95196ef tps65910_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf97666a0 set_memory_rw +EXPORT_SYMBOL_GPL vmlinux 0xf997d715 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9bd0b79 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xf9c3c5df devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xfa012fe7 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xfa025dc4 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfa091c93 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa76f507 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xfb0d0ffe olpc_ofw_present +EXPORT_SYMBOL_GPL vmlinux 0xfb19cbc8 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xfb28a1cb fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb377246 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xfb66b9d5 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xfb69f28f tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb87ba2c spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xfb897854 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xfbd180b7 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xfbf9be5d register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfc087b26 spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfc1388d4 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc7344a7 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xfc84d95c register_net_sysctl_rotable +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfcaa99fc regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xfcccdb1d tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xfcd6af8a crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xfcd7bc0b ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0xfcf5c3f8 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfcff626c ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xfd05464b klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xfd3013d1 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xfd322e6e ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xfd5be7f6 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xfd63551d class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd7100d2 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfdcb7964 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xfdcb925f wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xfddf172e vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xfde0b92c crypto_larval_error +EXPORT_SYMBOL_GPL vmlinux 0xfdef1483 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeba8b8b relay_open +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed7fa3b regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xfee08015 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff59f59c usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5f2b0e __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xffa176d6 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xffa4c4ec cgroup_lock +EXPORT_SYMBOL_GPL vmlinux 0xffbae6e1 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xffbce3a8 sysfs_remove_link --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/i386/generic-pae.modules +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/i386/generic-pae.modules @@ -0,0 +1,3526 @@ +3c359 +3c501 +3c503 +3c505 +3c507 +3c509 +3c515 +3c523 +3c527 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +53c700 +6lowpan +6pack +8021q +8139cp +8139too +8250_accent +8250_boca +8250_exar_st16c554 +8250_fourport +8250_hub6 +8250_mca +8255 +82596 +8390 +8390p +88pm860x_bl +88pm860x_onkey +88pm860x-ts +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a3d +a8293 +aacraid +aat2870_bl +aat2870-regulator +ab3100 +ab3100-otp +ab8500-ponkey +ab8500-usb +abituguru +abituguru3 +abyss +ac3200 +ac97_bus +acard-ahci +acecad +acenic +acerhdf +acer-wmi +acl7225b +acpi_ipmi +acpi_pad +acpiphp +acpiphp_ibm +acpi_power_meter +acquirewdt +act2000 +act200l-sir +act_csum +act_gact +act_ipt +actisys-sir +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5398 +ad5446 +ad5504 +ad5624r_spi +ad5686 +ad5791 +ad5930 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7280a +ad7291 +ad7298 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad799x +ad9832 +ad9834 +ad9850 +ad9852 +ad9910 +ad9951 +adcxx +addi_apci_035 +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2016 +addi_apci_2032 +addi_apci_2200 +addi_apci_3001 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adfs +adi +adis16060 +adis16080 +adis16130 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adl_pci6208 +adl_pci7230 +adl_pci7296 +adl_pci7432 +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm8211 +adm9240 +adp5520_bl +adp5520-keys +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adummy +adutux +adv7170 +adv7175 +adv7180 +advansys +advantechwdt +adv_pci1710 +adv_pci1723 +adv_pci_dio +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-i586 +aesni-intel +af_802154 +af9013 +af_alg +affs +af_key +af-rxrpc +ah4 +ah6 +aha152x +aha152x_cs +aha1542 +aha1740 +ahci_platform +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +ak8975 +alauda +algif_hash +algif_skcipher +ali-agp +ali-ircc +alim1535_wdt +alim7101_wdt +alphatrack +altera-ci +altera_jtaguart +altera_ps2 +altera-stapl +altera_uart +ambassador +amc6821 +amd5536udc +amd76x_edac +amd76xrom +amd8111e +amd-rng +amplc_dio200 +amplc_pc236 +amplc_pc263 +amplc_pci224 +amplc_pci230 +ams369fg06 +analog +ansi_cprng +anubis +aoe +apanel +apds9802als +apds990x +apm +apple_bl +appledisplay +apple-gmux +applesmc +appletalk +appletouch +applicom +ar7part +arc4 +arcfb +arcmsr +arcnet +arc-rawmode +arc-rimi +ark3116 +arkfb +arptable_filter +arp_tables +arpt_mangle +as5011 +asb100 +asc7621 +asix +asus_atk0110 +asus-laptop +asus-nb-wmi +asus_oled +asus-wmi +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at1700 +at24 +at25 +at76c50x-usb +atbm8830 +aten +ath +ath3k +ath5k +ath6kl +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati-agp +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atxp1 +aty128fb +atyfb +au0828 +au8522 +aufs +authenc +authencesn +auth_rpcgss +autofs4 +avma1_cs +avm_cs +avmfritz +ax25 +axnet_cs +b1 +b1dma +b1isa +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bch +bcm203x +bcm3510 +bcm5974 +bcma +bcm_wimax +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1770glc +bh1780gli +binfmt_aout +binfmt_misc +block2mtd +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bma150 +bmp085 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bonding +bpa10x +bpck +bpck6 +bpqether +bq20z75 +bq24022 +bq27x00_battery +br2684 +brcmfmac +brcmsmac +brcmutil +bridge +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btcx-risc +btmrvl +btmrvl_sdio +btrfs +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +BusLogic +bw-qcam +c101 +c2port-duramar2150 +c4 +c67x00 +c6xdigio +cachefiles +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +camellia +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5 +cast6 +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcidio +cb_pcimdas +cb_pcimdda +c_can +c_can_platform +cciss +ccm +cdc-acm +cdc_eem +cdc_ether +cdc_ncm +cdc-phonet +cdc_subset +cdc-wdm +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +chipreg +chnl_net +ci13xxx_pci +cifs +cirrusfb +ck804xrom +classmate-laptop +clearpad_tm1217 +clip +cls_basic +cls_cgroup +cls_flow +cls_fw +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmtp +cnic +cobra +coda +com20020 +com20020_cs +com20020-isa +com20020-pci +com90io +com90xx +comedi +comedi_bond +comedi_fc +comedi_parport +comedi_test +comm +compal-laptop +configfs +contec_pci_dio +cops +cordic +core +coretemp +cosa +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpqarray +cpqphp +cpu5wdt +cpuid +cpu-notifier-error-inject +c-qcam +cramfs +cr_bllcd +crc7 +crc8 +crc-ccitt +crc-itu-t +crvml +cryptd +cryptoloop +crypto_null +crypto_user +crystalhd +cs5345 +cs53l32a +cs5535-mfd +cs553x_nand +cs89x0 +ct82c710 +ctr +cts +cuse +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx8800 +cx8802 +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx88xx +cxacru +cxd2099 +cxd2820r +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxt1e1 +cy8ctmg110_ts +cyber2000fb +cyberjack +cyclades +cyclomx +cycx_drv +cypress_cy7c63 +cypress_m8 +cytherm +da9030_battery +da9034-ts +da903x +da903x_bl +DAC960 +daqboard2000 +das08 +das08_cs +das16 +das16m1 +das1800 +das6402 +das800 +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +de600 +de620 +decnet +deflate +defxx +dell-laptop +dell-led +dell_rbu +dell-wmi +dell-wmi-aio +denali +depca +des_generic +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +display +divacapi +divadidd +diva_idi +diva_mnt +divas +dl2k +dlci +dlm +dm1105 +dm9601 +dm-bufio +dm-crypt +dme1737 +dmfe +dmi-sysfs +dm-log +dmm32at +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-raid45 +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-thin-pool +dmx3191d +dm-zero +dnet +dn_rtmsg +doc2000 +doc2001 +doc2001plus +docecc +docg3 +docprobe +donauboe +dpt_i2o +drbd +drm +drm_kms_helper +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155v4l +dt9812 +dtc +dtl1_cs +dtlk +dummy +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-it913x +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dwc3 +dwc3-omap +dwc3-pci +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e2100 +e752x_edac +e7xxx_edac +earth-pt1 +easycap +eata +ebt_802_3 +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_ulog +ebt_vlan +ec100 +echo +econet +ec_sys +edac_core +edac_mce_amd +eeepc-laptop +eeepc-wmi +eepro +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +eexpress +efficeon-agp +efs +einj +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +emc1403 +emc2103 +emc6w201 +em_cmp +emi26 +emi62 +em_meta +em_nbyte +empeg +ems_pci +ems_pcmcia +ems_usb +em_text +emu10k1-gp +em_u32 +enc28j60 +enclosure +ene_ir +eni +enic +epat +epia +epic100 +eql +erst-dbg +es3210 +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +et131x +et61x251 +eth16i +ethoc +eurotechwdt +evbug +ewrk3 +exofs +ext2 +f71805f +f71808e_wdt +f71882fg +f75375s +fakephp +fam15h_power +farsync +fat +faulty +fb_ddc +fb_sys_fops +fcoe +fcrypt +fd_mcs +fdomain +fdomain_cs +fealnx +ff-memless +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +fit2 +fit3 +fixed +fl512 +floppy +fm801-gp +fm_drv +fmvj18x_cs +fnic +forcedeth +fore_200e +freevxfs +friq +frpw +fsa9480 +fsam7400 +fscache +fschmd +ft1000 +ft1000_pcmcia +ftdi-elan +ftdi_sio +ftl +fujitsu-laptop +fujitsu_ts +funsoft +g450_pll +g760a +g_acm_ms +gadgetfs +gamecon +gameport +garmin_gps +garp +g_audio +g_cdc +gcm +g_dbgp +gdth +generic +generic_bl +gen_probe +geode-aes +geode-rng +g_ether +gf128mul +gf2k +g_ffs +gfs2 +ghash-generic +g_hid +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +g_mass_storage +g_midi +g_ncm +g_NCR5380 +g_NCR5380_mmio +g_nokia +go7007 +go7007-usb +goku_udc +gpio-74x164 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-charger +gpio-cs5535 +gpio-fan +gpio-generic +gpio-i2cmux +gpio-it8761e +gpio-janz-ttl +gpio_keys +gpio_keys_polled +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio_mouse +gpio-pca953x +gpio-pcf857x +gpio-pch +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-tps65912 +gpio_vbus +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +g_printer +gre +grip +grip_mp +gsc_hpdi +g_serial +gspca_benq +gspca_conex +gspca_cpia1 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +g_webcam +gx1fb +gxfb +g_zero +hamachi +hampshire +hangcheck-timer +hanwang +hci_uart +hci_vhci +hdaps +hdlc +hdlc_cisco +hdlcdrv +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdpvr +he +hecubafb +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfcmulti +hfcpci +hfcsusb +hfc_usb +hfs +hfsplus +hgafb +hid +hid-a4tech +hid-apple +hid-axff +hid-belkin +hid-cherry +hid-chicony +hid-cypress +hid-dr +hid-elecom +hid-emsff +hid-ezkey +hid-gaff +hid-gyration +hid-holtekff +hid-hyperv +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-logitech +hid-logitech-dj +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hidp +hid-petalynx +hid-picolcd +hid-pl +hid-primax +hid-prodikeys +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-kovaplus +hid-roccat-pyra +hid-samsung +hid-sjoy +hid-sony +hid-speedlink +hid-sunplus +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-wacom +hid-waltop +hid-wiimote +hid-zpff +hid-zydacron +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hmc5843 +hmc6352 +hopper +horizon +hostap +hostap_cs +hostap_pci +hostap_plx +hostess_sv11 +hp +hp100 +hp4x +hp_accel +hpfs +hpilo +hp-plus +hpsa +hptiop +hp-wmi +hso +htc-pasic3 +htcpen +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-sdio +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-algo-pcf +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-designware-pci +i2c-dev +i2c-diolan-u2c +i2c-eg20t +i2c-gpio +i2c-i801 +i2c-intel-mid +i2c-isch +i2c-matroxfb +i2c-mux +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-isa +i2c-pca-platform +i2c-piix4 +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-xiic +i2o_block +i2o_bus +i2o_config +i2o_core +i2o_proc +i2o_scsi +i3000_edac +i3200_edac +i5000_edac +i5100_edac +i5400_edac +i5k_amb +i6300esb +i7300_edac +i7core_edac +i810 +i810fb +i82092 +i82365 +i82860_edac +i82875p_edac +i82975x_edac +i8k +i915 +ib700wdt +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_mad +ibmaem +ibmasm +ibmasr +ibmlana +ibmmca +ibmpex +ibmphp +ibm_rtl +ib_mthca +ibmtr +ibmtr_cs +ib_sa +ib_srp +ib_ucm +ib_umad +ib_uverbs +ichxrom +icn +icp_multi +ics932s401 +ideapad-laptop +idmouse +idt77252 +ieee802154 +ifb +iforce +igb +igbvf +iio_dummy +iio-trig-gpio +iio-trig-periodic-rtc +iio-trig-sysfs +ii_pci20kc +ili9320 +imm +imon +imx074 +in2000 +industrialio +inet_diag +inexio +inftl +initio +inport +input-polldev +int51x1 +intelfb +intel_ips +intel_menlow +intel_mid_dma +intel_oaktrail +intel-rng +intel_vr_nor +interact +ioatdma +ioc4 +io_edgeport +io_ti +iowarrior +ip6_queue +ip6table_filter +ip6table_mangle +ip6table_raw +ip6_tables +ip6table_security +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_LOG +ip6t_mh +ip6t_REJECT +ip6t_rt +ip6_tunnel +ipaq +ipcomp +ipcomp6 +ipddp +ipg +ip_gre +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_watchdog +ip_queue +ipr +ips +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netport +ip_set_list_set +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +ip_tables +iptable_security +ipt_ah +ipt_CLUSTERIP +ipt_ecn +ipt_ECN +ipt_LOG +ipt_MASQUERADE +ipt_NETMAP +ipt_REDIRECT +ipt_REJECT +ipt_ULOG +ip_vs +ip_vs_dh +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ircomm +ircomm-tty +irda +irda-usb +iris +ir-jvc-decoder +ir-kbd-i2c +irlan +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +irnet +ir-rc5-decoder +ir-rc5-sz-decoder +ir-rc6-decoder +ir-sony-decoder +irtty-sir +ir-usb +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x-fe +iTCO_vendor_support +iTCO_wdt +itd1000 +ite-cir +iuu_phoenix +ivtv +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iwl3945 +iwl4965 +iwl-legacy +iwlwifi +iwmc3200top +iwmc3200wifi +iw_nes +ix2505v +ixgb +ixgbe +ixgbevf +ixj +ixj_pcmcia +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsm +k10temp +k8temp +kafs +kalmia +kaweth +kb3886_bl +kbic +kbtab +kcomedilib +ke_counter +kernelcapi +keucr +keyspan +keyspan_pda +keyspan_remote +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvm +kvm-amd +kvm-intel +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lanai +lance +lanstreamer +lapb +lapbether +latch-addr-flash +lcd +ld9040 +ldusb +lec +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-clevo-mail +leds-da903x +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lt3593 +leds-mc13783 +leds-net48xx +leds-net5501 +leds-pca9532 +leds-pca955x +leds-regulator +leds-ss4200 +leds-wm831x-status +leds-wm8350 +leds-wrap +ledtrig-backlight +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-timer +legousbtower +lgdt3305 +lgdt330x +lgs8gxx +lg-vl600 +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libceph +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +libsrp +lightning +line6usb +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_igorplugusb +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_ttusbir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc2 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95241 +lm95245 +lmc +lms283gf05 +lnbp21 +lnbp22 +lne390 +lockd +logibm +lp +lp3971 +lp3972 +lp486e +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc4151 +ltc4215 +ltc4245 +ltc4261 +ltpc +ltv350qv +lxfb +lzo +m25p80 +m52790 +m66592-udc +ma600-sir +mac80211 +mac80211_hwsim +mac_hid +machzwd +macmodes +macvlan +macvtap +madgemc +magellan +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +matrix_keypad +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_DAC1064 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +matroxfb_Ti3026 +matrox_w1 +max1111 +max11801_ts +max1363 +max1586 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max2165 +max3100 +max3107 +max6639 +max6642 +max6650 +max6875 +max7359_keypad +max8649 +max8660 +max8903_charger +max8925_bl +max8925_onkey +max8925_power +max8925-regulator +max8952 +max8997 +max8997_charger +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-regulator-core +mc44s803 +mce_amd_inj +mce-inject +mceusb +mce-xeon75xx +mcp2120-sir +mcp251x +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md4 +mdacon +mdc800 +mdio +mdio-bitbang +mdio-gpio +me4000 +me_daq +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mem2mem_testdev +memstick +metronomefb +meye +mfd +mga +michael_mic +micrel +microcode +microtek +minix +mip6 +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +mite +mixcomwd +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mma8450 +mmc_block +mos7720 +mos7840 +moto_modem +moxa +mpc624 +mpoa +mpr121_touchkey +mpt2sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrst_max3110 +msdos +msi-laptop +msi-wmi +msp3400 +mspro_block +msr +mt2060 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtdblock +mtdblock_ro +mtdchar +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtouch +multipath +multiq3 +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwl8k +mxb +mxl111sf-demod +mxl111sf-tuner +mxl5005s +mxl5007t +mxm-wmi +mxser +myri10ge +n2 +n411 +nand +nand_bch +nand_ecc +nand_ids +nandsim +natsemi +navman +nbd +nci +ncpfs +NCR53c406a +NCR_D700 +NCR_Q720_mod +ne +ne2 +ne2k-pci +ne3210 +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netrom +netsc520 +nettel +netxen_nic +newtonkbd +nfc +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nfcwilink +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nfnetlink +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfsd +nftl +nf_tproxy_core +ngene +n_hdlc +ni52 +ni65 +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +nicstar +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_cs +nilfs2 +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +niu +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp437 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nop-usb-xceiv +nosy +nouveau +nozomi +n_r3964 +ns558 +ns83820 +nsc_gpio +nsc-ircc +nsp32 +nsp_cs +ntc_thermistor +ntfs +n_tracerouter +n_tracesink +nuvoton-cir +nvidiafb +nvram +nv_tco +nxt200x +nxt6000 +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stackglue +ocfs2_stack_o2cb +ocfs2_stack_user +old_belkin-sir +olympic +omfs +omninet +on20 +on26 +onenand +onenand_sim +opencores-kbd +oprofile +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +output +ov2640 +ov5642 +ov6650 +ov7670 +ov772x +ov9640 +ov9740 +overlayfs +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8023 +padlock-aes +padlock-sha +panasonic-laptop +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pas16 +pata_ali +pata_amd +pata_arasan_cf +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cs5520 +pata_cs5530 +pata_cs5535 +pata_cs5536 +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_isapnp +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sc1200 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc110pad +pc300too +pc87360 +pc8736x_gpio +pc87413_wdt +pc87427 +pca9541 +pca954x +pcbc +pcbit +pcc-cpufreq +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_can +pch_dma +pch_gbe +pch_phub +pch_uart +pch_udc +pci +pci200syn +pcips2 +pci_slot +pci-stub +pcl711 +pcl724 +pcl725 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcm3730 +pcmad +pcmcia +pcmcia_core +pcmciamtd +pcmcia_rsrc +pcm_common +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +peak_pci +pegasus +penmount +pf +pg +phantom +phison +phonedev +phonet +phram +physmap +pktcdvd +pktgen +pl2303 +platform_lcd +plat_nand +plat-ram +plip +plusb +pluto2 +plx_pci +pm2fb +pm3fb +pm8001 +pmc551 +pmcraid +pms +pn533 +pn544 +pn_pep +poc +pohmelfs +poseidon +powermate +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +pppoatm +pppoe +pppox +ppp_synctty +pps_core +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +prism54 +progear_bl +proteon +ps2mult +psb_gfx +psmouse +pt +pti +pvrusb2 +pwc +qcaux +qcserial +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas +qlogicfas408 +qnx4 +qt1010 +qt1070 +quatech_daqp_cs +quatech_usb2 +quickstart +quota_tree +quota_v1 +quota_v2 +r128 +r592 +r6040 +r8169 +r8187se +r8192e_pci +r8192u_usb +r82600_edac +r852 +r8712u +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-aimslab +radio-aztech +radio-cadet +radio-gemtek +radio-i2c-si470x +radio-maxiradio +radio-miropcm20 +radio-mr800 +radio-rtrack2 +radio-sf16fmi +radio-sf16fmr2 +radio-si4713 +radio-tea5764 +radio-terratec +radio-timb +radio-trust +radio-typhoon +radio-usb-si470x +radio-wl1273 +radio-zoltrix +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-em-terratec +rc-encore-enltv +rc-encore-enltv2 +rc-encore-enltv-fm53 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-kaiomy +rc-kworld-315u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-snapstream-firefly +rc-streamzap +rc-tbs-nec +rc-technisat-usb2 +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-trekstor +rc-tt-1500 +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +redboot +redrat3 +reed_solomon +reiserfs +renesas_usbhs +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-regulator +ring_sw +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rndis_host +rndis_wlan +rocket +romfs +rose +rotary_encoder +rpcsec_gss_krb5 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800pci +rt2800usb +rt2x00lib +rt2x00pci +rt2x00usb +rt61pci +rt73usb +rtc-88pm860x +rtc-ab3100 +rtc-ab8500 +rtc-bq32k +rtc-bq4802 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1742 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-isl12022 +rtc-isl1208 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8925 +rtc-max8998 +rtc-mc13xxx +rtc-msm6242 +rtc-pcf2123 +rtc-pcf50633 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-stk17ta8 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl8150 +rtl8180 +rtl8187 +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192se +rtlwifi +rts5139 +rts_pstor +rxkad +s1d13xxxfb +s2250 +s2250-loader +s2255drv +s2io +s3fb +s526 +s5h1409 +s5h1411 +s5h1420 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +salsa20-i586 +samsung-laptop +samsung-q10 +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sbc60xxwdt +sbc7240_wdt +sbc8360 +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbe-2t3e3 +sbni +sbs +sbshc +sc +sc1200wdt +sc520cdp +sc520_wdt +sc92031 +sca3000 +scb2_flash +scc +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_drr +sch_dsmark +sch_gred +sch_hfsc +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_tgt +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_srp +scsi_wait_scan +sctp +sctp_probe +scx200 +scx200_acb +scx200_docflash +scx200_gpio +scx200_hrt +scx200_i2c +scx200_wdt +sdhci +sdhci-pci +sdhci-pltfm +sdio_uart +sdla +sdricoh_cs +sealevel +sedlbauer_cs +seed +seeq8005 +sep_driver +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent +serport +serqt_usb2 +ses +sfc +sha512_generic +shpchp +sht15 +sht21 +si21xx +si4713-i2c +sidewinder +siemens_mpi +sierra +sierra_net +sil164 +sim710 +sir-dev +sis +sis190 +sis5595 +sis900 +sis-agp +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skel +skfp +skge +skisa +sky2 +sl811_cs +sl811-hcd +slcan +slicoss +slip +slram +sm501 +sm501fb +sm7xx +smc9194 +smc91c92_cs +smc-mca +sm_common +smctr +smc-ultra +smc-ultra32 +sm_ftl +smm665 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc9420 +smsc95xx +smsc-ircc2 +smscufx +smsdvb +smsmdtv +smssdio +smsusb +sn9c102 +snd +snd-ac97-codec +snd-ad1816a +snd-ad1848 +snd-ad1889 +snd-adlib +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als100 +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt1605 +snd-azt2316 +snd-azt2320 +snd-azt3328 +snd-bt87x +snd-ca0106 +snd-cmi8330 +snd-cmipci +snd-cs4231 +snd-cs4236 +snd-cs4281 +snd-cs46xx +snd-cs5530 +snd-cs5535audio +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emu8000-synth +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1688 +snd-es1688-lib +snd-es18xx +snd-es1938 +snd-es1968 +snd-firewire-lib +snd-firewire-speakers +snd-fm801 +snd-gina20 +snd-gina24 +snd-gusclassic +snd-gusextreme +snd-gus-lib +snd-gusmax +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-interwave +snd-interwave-stb +snd-isight +snd-jazz16 +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-miro +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-msnd-classic +snd-msnd-lib +snd-msnd-pinnacle +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3sa2 +snd-opl3-synth +snd-opl4-lib +snd-opl4-synth +snd-opti92x-ad1848 +snd-opti92x-cs4231 +snd-opti93x +snd-oxygen +snd-oxygen-lib +snd-page-alloc +snd-pcm +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb16 +snd-sb16-csp +snd-sb16-dsp +snd-sb8 +snd-sb8-dsp +snd-sbawe +snd-sb-common +snd-sc6000 +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-sis7019 +snd-soc-88pm860x +snd-soc-ad1836 +snd-soc-ad193x +snd-soc-ad73311 +snd-soc-adau1373 +snd-soc-adav80x +snd-soc-ads117x +snd-soc-ak4104 +snd-soc-ak4535 +snd-soc-ak4641 +snd-soc-ak4642 +snd-soc-ak4671 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs42l51 +snd-soc-cx20442 +snd-soc-da7210 +snd-soc-dfbmcs320 +snd-soc-jz4740-codec +snd-soc-l3 +snd-soc-lm4857 +snd-soc-max98088 +snd-soc-max98095 +snd-soc-max9850 +snd-soc-max9877 +snd-soc-pcm3008 +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-spdif +snd-soc-ssm2602 +snd-soc-sta32x +snd-soc-tlv320aic23 +snd-soc-tlv320aic26 +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic3x +snd-soc-tlv320dac33 +snd-soc-tpa6130a2 +snd-soc-uda134x +snd-soc-uda1380 +snd-soc-wl1273 +snd-soc-wm1250-ev1 +snd-soc-wm2000 +snd-soc-wm5100 +snd-soc-wm8350 +snd-soc-wm8400 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8727 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8900 +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8940 +snd-soc-wm8955 +snd-soc-wm8960 +snd-soc-wm8961 +snd-soc-wm8962 +snd-soc-wm8971 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8983 +snd-soc-wm8985 +snd-soc-wm8988 +snd-soc-wm8990 +snd-soc-wm8991 +snd-soc-wm8993 +snd-soc-wm8994 +snd-soc-wm8995 +snd-soc-wm8996 +snd-soc-wm9081 +snd-soc-wm9090 +snd-soc-wm-hubs +snd-sonicvibes +snd-sscape +snd-tea575x-tuner +snd-tea6330t +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usbmidi-lib +snd-usb-us122l +snd-usb-usx2y +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx222 +snd-vx-lib +snd-vxpocket +snd-wavefront +snd-wss-lib +snd-ymfpci +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solos-pci +sony-laptop +sonypi +soundcore +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spidev +spi-dw-midpci +spi-gpio +spi-lm70llp +spi-oc-tiny +spi-pxa2xx +spi-tle62x0 +spi-topcliff-pch +squashfs +ssb +ssfdc +sst25l +sstfb +ssu100 +ssv_dnp +st +st1232 +starfire +stb0899 +stb6000 +stb6100 +st_drv +stex +stinger +stir4200 +stkwebcam +stmmac +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +svcrdma +svgalib +sworks-agp +sx8 +sym53c416 +sym53c500_cs +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t128 +t1isa +t1pci +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +tc1100-wmi +tc3589x-keypad +tca6416-keypad +tcic +tcm_fc +tcm_loop +tcp_bic +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tdfx +tdfxfb +tdo24m +tea +tea5761 +tea5767 +tea6415c +tea6420 +tef6862 +tehuti +tekram-sir +teles_cs +test-kstrtox +test_power +tg3 +tgr192 +thinkpad_acpi +thmc50 +ti_dac7512 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timb_dma +timberdale +timblogiw +timbuart +timeriomem-rng +tipc +ti_usb_3410_5052 +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmiofb +tmp102 +tmp401 +tmp421 +tms380tr +tmscsim +tmspci +toim3232-sir +topstar-laptop +toshiba_acpi +toshiba_bluetooth +touchit213 +touchright +touchwin +tpm_atmel +tpm_infineon +tpm_nsc +tpm_tis +tps6105x +tps6105x-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +trancevibrator +tranzport +tridentfb +ts5500_flash +ts_bm +tsc2005 +tsc2007 +tsc40 +tscan1 +ts_fsm +ts_kmp +tsl2550 +tsl2563 +tsl2583 +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +tua6100 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw9910 +twidjoy +twofish_common +twofish_generic +twofish-i586 +typhoon +u132-hcd +u14-34f +uartlite +uas +ub +ubi +ubifs +ucb1400_core +ucb1400_ts +udc-core +udf +udlfb +ueagle-atm +ufs +uio +uio_aec +uio_cif +uio_netx +uio_pci_generic +uio_pdrv +uio_pdrv_genirq +uio_sercos3 +uli526x +ultrastor +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unioxx5 +upd64031a +upd64083 +uPD98402 +usb8xxx +usbatm +usb_debug +usbdux +usbduxfast +usbduxsigma +usb_gigaset +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmouse +usbnet +usbserial +usbsevseg +usb-storage +usbtest +usbtmc +usbtouchscreen +usbvision +usb_wwan +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-int-device +v4l2-mem2mem +vcan +ves1820 +ves1x93 +vesafb +veth +vfat +vga16fb +vgastate +vgg2432a4 +vhci-hcd +vhost_net +via +via686a +via-camera +via-cputemp +viafb +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +video +videobuf2-core +videobuf2-dma-contig +videobuf2-memops +videobuf2-vmalloc +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videocodec +videodev +virtio_balloon +virtio_console +virtio_mmio +virtio-rng +virtual +visor +vivi +vivopay-serial +vlsi_ir +vmac +vme +vme_ca91cx42 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmwgfx +vmw_pvscsi +vmxnet3 +vp27smpx +vpx3220 +vsxxxaa +vt1211 +vt8231 +vt8623fb +vub300 +vx855 +vxge +w1_bq27000 +w1_ds2408 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1-gpio +w1_smem +w1_therm +w35und +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83697hf_wdt +w83697ug_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +w9966 +wacom +wacom_w8001 +wafer5823wdt +walkera0701 +wanrouter +wanxl +warrior +wbsd +wd +wd7000 +wdt +wdt_pci +whci +whci-hcd +whc-rc +whiteheat +wimax +winbond-840 +winbond-cir +wire +wis-ov7640 +wis-saa7113 +wis-saa7115 +wis-sony-tuner +wistron_btns +wis-tw2804 +wis-tw9903 +wis-uda1342 +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl12xx_sdio +wl12xx_spi +wl3501_cs +wlags49_h25_cs +wlags49_h2_cs +wm831x_backup +wm831x_bl +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x_power +wm831x-ts +wm831x_wdt +wm8350-hwmon +wm8350_power +wm8350-regulator +wm8350_wdt +wm8400-core +wm8400-regulator +wm8739 +wm8775 +wm8994-regulator +wm97xx-ts +wmi +wp512 +wusb-cbaf +wusbcore +wusb-wa +x25 +x25_asy +x38_edac +xc4000 +xc5000 +xcbc +xen-blkback +xen-evtchn +xen-fbfront +xenfs +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xen-pcifront +xen_wdt +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_ipcomp +xfrm_user +xfs +xgifb +xilinx_uartps +xirc2ps_cs +xircom_cb +xo15-ebook +xor +xpad +xprtrdma +x_tables +xt_addrtype +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_cluster +xt_comment +xt_connbytes +xt_connlimit +xt_connmark +xt_CONNSECMARK +xt_conntrack +xt_cpu +xt_CT +xt_dccp +xt_devgroup +xt_dscp +xt_DSCP +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_HL +xt_IDLETIMER +xt_iprange +xt_ipvs +xtkbd +xt_LED +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_NFLOG +xt_NFQUEUE +xt_NOTRACK +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_RATEEST +xt_realm +xt_recent +xts +xt_sctp +xt_SECMARK +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_TCPMSS +xt_TCPOPTSTRIP +xt_tcpudp +xt_TEE +xt_time +xt_TPROXY +xt_TRACE +xt_u32 +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z85230 +zatm +zaurus +zcache +zd1201 +zd1211rw +zhenhua +zio +zl10036 +zl10039 +zl10353 +zlib +zlib_deflate +znet +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/i386/virtual.modules +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/i386/virtual.modules @@ -0,0 +1,573 @@ +6lowpan +8021q +8139cp +8139too +8390 +acpi_ipmi +acpi_pad +acpiphp +act_csum +act_gact +act_ipt +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +aes-i586 +aesni-intel +af_802154 +af_alg +af_key +af-rxrpc +ah4 +ah6 +algif_hash +algif_skcipher +ansi_cprng +anubis +apm +appletalk +arc4 +arptable_filter +arp_tables +arpt_mangle +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +atm +authenc +authencesn +auth_rpcgss +autofs4 +ax25 +bch +binfmt_misc +blowfish_common +blowfish_generic +bonding +br2684 +bridge +bsd_comp +btrfs +BusLogic +cachefiles +camellia +can +can-bcm +can-gw +can-raw +cast5 +cast6 +ccm +cfg80211 +cifs +cirrusfb +clip +cls_basic +cls_cgroup +cls_flow +cls_fw +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +configfs +cordic +cpuid +cpu-notifier-error-inject +crc7 +crc8 +crc-ccitt +crc-itu-t +cryptd +cryptoloop +crypto_null +crypto_user +ctr +cts +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +de2104x +de4x5 +decnet +deflate +des_generic +dm-bufio +dm-crypt +dmfe +dm-log +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-thin-pool +dm-zero +dn_rtmsg +dummy +e1000 +e1000e +ebt_802_3 +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_ulog +ebt_vlan +econet +ec_sys +einj +em_cmp +em_meta +em_nbyte +em_text +em_u32 +eql +erst-dbg +esp4 +esp6 +evbug +ext2 +fat +faulty +fb_sys_fops +fcrypt +floppy +fscache +gameport +garp +gcm +gf128mul +ghash-generic +gre +hangcheck-timer +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +ieee802154 +ifb +igbvf +inet_diag +ip6_queue +ip6table_filter +ip6table_mangle +ip6table_raw +ip6_tables +ip6table_security +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_LOG +ip6t_mh +ip6t_REJECT +ip6t_rt +ip6_tunnel +ipcomp +ipcomp6 +ipddp +ip_gre +ipip +ip_queue +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netport +ip_set_list_set +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +ip_tables +iptable_security +ipt_ah +ipt_CLUSTERIP +ipt_ecn +ipt_ECN +ipt_LOG +ipt_MASQUERADE +ipt_NETMAP +ipt_REDIRECT +ipt_REJECT +ipt_ULOG +ip_vs +ip_vs_dh +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ipx +ircomm +ircomm-tty +irda +irlan +irnet +iscsi_tcp +isofs +ixgbevf +joydev +khazad +lapb +lec +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libcrc32c +libiscsi +libiscsi_tcp +libsas +linear +llc2 +lockd +lp +lru_cache +lrw +lzo +mac80211 +macvlan +macvtap +mce-inject +mce-xeon75xx +md4 +michael_mic +microcode +mip6 +mpoa +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +msdos +msr +multipath +nbd +ne2k-pci +netconsole +netrom +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nfnetlink +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfsd +nf_tproxy_core +nls_cp437 +nls_iso8859-1 +nvram +oprofile +output +overlayfs +p8023 +parport +parport_pc +pcbc +pci_slot +pcnet32 +pcrypt +phonet +pktgen +pn_pep +ppdev +ppp_async +ppp_deflate +ppp_mppe +pppoatm +pppoe +pppox +ppp_synctty +pptp +psmouse +qla1280 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +raw +reed_solomon +rmd128 +rmd160 +rmd256 +rmd320 +rose +rxkad +salsa20_generic +salsa20-i586 +sbs +sbshc +sch_atm +sch_cbq +sch_choke +sch_drr +sch_dsmark +sch_gred +sch_hfsc +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_tgt +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_wait_scan +sctp +sctp_probe +seed +seqiv +serio_raw +serpent +serport +sha512_generic +sit +slip +snd +snd-ens1370 +snd-hrtimer +snd-hwdep +snd-mixer-oss +snd-page-alloc +snd-pcm +snd-pcsp +snd-rawmidi +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-timer +softdog +soundcore +squashfs +stp +sunrpc +syscopyarea +sysfillrect +sysimgblt +tcp_bic +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tea +test-kstrtox +tgr192 +tipc +ts_bm +ts_fsm +ts_kmp +tulip +tunnel4 +tunnel6 +twofish_common +twofish_generic +twofish-i586 +ufs +uli526x +usb-storage +usbtouchscreen +vesafb +veth +vfat +vga16fb +vgastate +video +virtio_balloon +vmac +vmw_balloon +vmw_pvscsi +vmxnet3 +wanrouter +winbond-840 +wp512 +x25 +xcbc +xen-evtchn +xen-fbfront +xenfs +xen-gntalloc +xen-gntdev +xen-kbdfront +xen-netback +xen-pciback +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_ipcomp +xfrm_user +xfs +xircom_cb +xor +x_tables +xt_addrtype +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_cluster +xt_comment +xt_connbytes +xt_connlimit +xt_connmark +xt_CONNSECMARK +xt_conntrack +xt_cpu +xt_CT +xt_dccp +xt_devgroup +xt_dscp +xt_DSCP +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_HL +xt_IDLETIMER +xt_iprange +xt_ipvs +xt_LED +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_NFLOG +xt_NFQUEUE +xt_NOTRACK +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_RATEEST +xt_realm +xt_recent +xts +xt_sctp +xt_SECMARK +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_TCPMSS +xt_TCPOPTSTRIP +xt_tcpudp +xt_TEE +xt_time +xt_TPROXY +xt_TRACE +xt_u32 +xz_dec_test +zlib +zlib_deflate --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/i386/virtual +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/i386/virtual @@ -0,0 +1,12623 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x7593c3f0 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/kvm/kvm 0x85c3ddb3 kvm_read_guest_atomic +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xf0fe832d acpi_video_get_edid +EXPORT_SYMBOL drivers/atm/suni 0x1b8c9964 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x7ff789b2 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0xb01957eb bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x5c165453 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x0751a520 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x09095786 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x179ccf43 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x2a5266c6 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x3ac7f273 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x3ea903cd pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x6ce0a677 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x72ff02b3 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x7def2899 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xc128ce83 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xd40eff48 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xe30e5bf3 pi_write_regr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2f1f95a6 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4222b94d ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x85dd4e3a ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9760033c ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa28a2ace ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xabd216cc ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nsc_gpio 0x1065caf9 nsc_gpio_dump +EXPORT_SYMBOL drivers/char/nsc_gpio 0x491e0c23 nsc_gpio_read +EXPORT_SYMBOL drivers/char/nsc_gpio 0xa8eaa681 nsc_gpio_write +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/edac/edac_core 0x1e16766d edac_mc_handle_fbd_ue +EXPORT_SYMBOL drivers/edac/edac_core 0x56931bd5 edac_mc_handle_fbd_ce +EXPORT_SYMBOL drivers/edac/edac_core 0x8f8a8472 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0b758c4c fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1461dfcd fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2b6b8133 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2be228c2 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x305f451e fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x45b305b5 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5100a742 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62d76ef6 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65d33a65 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x812f2f2c fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x910a395c fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa54ac24a fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa63e878a fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa6c5dcc7 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa994271f fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb1fd8b93 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb2aded29 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb99e698d fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb80eb45 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbdd6878b fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd2e010cb fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe5fc017b fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe9608a15 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xead4b7d5 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf3e228b4 fw_card_add +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01b3e7c1 drm_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01db7009 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03af3c9d drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x045bc5eb drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0668c7f7 drm_connector_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b5e21e drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bfa607b drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c3bb844 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x123b7f12 drm_mm_get_block_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c6276a drm_buffer_read_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c71790 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142b8b35 drm_buffer_copy_from_user +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f84161 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1595721c drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18b1a054 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18c2caec drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b8fba2c drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dbc231c drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e894e9a drm_connector_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1edc6476 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f072c59 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x200af7bf drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2552c8e3 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x298b696d drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29afd6ef drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c970fbd drm_core_reclaim_buffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x306a8068 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3074f033 drm_order +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3354e958 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e154ba drm_sman_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3465ed3d drm_mm_search_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x347c933b drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37be5778 drm_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a49ff77 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba0dd68 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bb33a7c drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3efdcca8 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4079ee97 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40a2926f drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41469c24 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41fe8795 drm_mm_pre_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42530d05 drm_platform_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43384bd9 drm_buffer_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x433a4fb1 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c9a91c drm_sman_set_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e64e4b drm_get_platform_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43eec892 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x440c533c drm_gem_object_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4786e7d4 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498dcb5e drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x499a2fa4 drm_mode_attachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b808aba drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d749bbf drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da37594 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dfb923b drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f01b8d3 drm_mode_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f2775b7 drm_fasync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x508cdb1c drm_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50af2d6f drm_mode_create_dithering_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5387b7e5 drm_mode_detachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x549b2c8d drm_mm_put_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55dce5e6 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c6894f drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580830f0 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x581c412a drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58fab0b0 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x590050fe drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x596758d7 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f8fc06 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ac70b77 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b0d3f65 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9e4ce3 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cfdced9 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d413248 drm_mm_insert_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e75af07 drm_sysfs_connector_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f098f77 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6cbc33 drm_find_cea_extension +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60162c6f drm_core_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ba5f95 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63e9dbfc drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66fcc908 drm_get_connector_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68921f31 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d7375 drm_timestamp_precision +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ba98789 drm_global_mutex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6edc3dcc drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b30afb drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70f7dc2d drm_core_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x720d32cc drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7404941d drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7415f136 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75144ef2 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7888c56e drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7924d2d6 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x794f05b1 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79d66c91 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a3eea71 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b4fd2ab drm_usb_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1fd6c8 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e13597a drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e1b407c drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e98ce36 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4cfa5d drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c10f42 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x841c47b9 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x852eeda4 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8591f065 drm_get_encoder_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c1e0f1 drm_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85de09f5 drm_mode_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86136af0 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87b8f3f1 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89a7c539 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a098599 drm_get_last_vbltimestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a5da2e5 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c6657dc drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfb019d drm_buffer_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e501a69 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c1a426 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x912c23fe drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9161e61b drm_mode_connector_detach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9269eb44 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f2d102 drm_sman_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932df43d drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x935696c2 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ad2c48 drm_mm_get_block_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ce2661 drm_mode_validate_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95979648 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9745d638 drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x975bfcd2 drm_connector_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e0b282 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e9236f drm_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97f722d0 drm_unbind_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bf647a5 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c684f62 drm_get_usb_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc25a34 drm_sman_owner_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e460f48 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1eabd87 drm_mode_list_concat +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa237e931 drm_sman_set_manager +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2faa05e drm_free_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa63f1e07 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f35cfa drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa87b8989 drm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa54231f drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa6d323f drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad5803be drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae80b07c drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb276f1a1 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dae291 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb68af226 drm_sysfs_connector_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a467b1 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3ee6e4 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbae03ba2 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc215faba drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc414c422 drm_vblank_offdelay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6ba9209 drm_usb_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6fee43d drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf2eff4 drm_mode_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08fa3f0 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ce28b3 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd12aa4a6 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2bd66e1 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a02a78 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd54e72fb drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f1ab84 drm_sman_owner_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd81a03c7 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda13fd06 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbfd14cf drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca8b983 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe256edfd drm_sman_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3553657 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5bdce7e drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d783b5 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f391cc drm_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe866f733 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe94234df drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea23b803 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccc9f7d drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed256cae drm_sman_free_key +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a0bf79 drm_sman_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf159fd33 drm_core_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f038d8 drm_mm_search_free_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf54cc433 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8fc0eb1 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4f8599 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc9eeaa1 drm_gem_object_handle_free +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00cd195e drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163ad7d9 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1af70b76 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2188a5e2 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23981227 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26ba0883 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a67dd44 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b08b609 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b96c995 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2df53082 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x350e11ca drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3564ad16 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39bfbb78 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cb14811 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46bc01ea drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x472bcade drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58cdf6aa drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62d8d9d9 drm_fb_helper_restore_fbdev_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x673bcc39 drm_fb_helper_single_fb_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d3bdf77 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89ff1960 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91a9a290 i2c_dp_aux_add_bus +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d251144 drm_fb_helper_panic +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fb2ff61 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf6877db drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc469c244 drm_fb_helper_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4bcb469 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbe8d9f6 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcc05f33 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe24f3e82 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe893f8bd drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed7e036c drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf36f59fd drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0331f283 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13119eba ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x145e6a73 ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1727bb6e ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2267db5f ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25392771 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266d8a60 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a412466 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b941579 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2db6dc62 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e423f99 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34c269a1 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f2ea2ae ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f4bd6c9 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x467d8a83 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4915fb8c ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ea2891e ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5df03ed4 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61bdb34f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61e92c30 ttm_bo_wait_cpu +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6617c7dd ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6622655d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x707e40b1 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73bede0d ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7586fb3a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ab5e843 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f05b5eb ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f78e398 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85477881 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86a4066d ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8832162b ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92da04e8 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cfbd484 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa13ee290 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb57417f4 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb841dedb ttm_bo_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaa2b414 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd5f95b6 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc07a4b6f ttm_bo_unreserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc16d768f ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc58c6887 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc786b2c8 ttm_agp_backend_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc404922 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd65acb7 ttm_bo_wait_unreserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd050d384 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0c29f4c ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6390acc ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdac88486 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd0f9feb ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd3eae35 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdfc66e34 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5417038 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeca576c9 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf10b4a8f ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2eaa709 ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4531d15 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa7b3a2d ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x0f3400bc vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdecfc641 vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xdb4acf4b i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xeae3c402 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x6b5be3df i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa1d465b8 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pcf 0x956725f9 i2c_pcf_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xeb050200 amd756_smbus +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x37838b44 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x69c911d4 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x8ed679ff rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d1f522d rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb93baf0d rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xc0bf4edc rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x41128c03 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x477fd1d9 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x49c658ca ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b4cd16e ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x574ce0a1 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7543447a ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b5603b4 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x860e0b90 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9373739 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb14d6b86 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc45ecfae ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcbddd5cf ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd23f4956 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdbe365de cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xebea7565 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xecbc5e0d ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xed61fb51 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x053e924f ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c82fcf mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e19f659 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e20e4bd ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x104f5f13 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1180fb86 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1246c176 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f84918 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171f99f1 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x173635bb rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17781468 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c764b50 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d0652a3 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eef0a0d ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x295fc400 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29eed200 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e554f6a ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ebda7be ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38beb10a ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a7ab748 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b50d29a ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49232470 ib_reg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c5a995b ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50f821ca ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5101443c ib_rereg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x525ba0bb ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b51de39 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62bdb84f ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x663dc103 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e61f60d ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74c26cf9 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81f4b348 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x826570cd ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f4fdcc ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88c863e3 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96ce6c46 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96d63a7f ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9952c3b6 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9abe0f2e ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c4a9b27 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0e71782 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5892f40 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacb9ad58 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae3e1124 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafa7ea85 ib_alloc_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb33b7b88 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3dd9729 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3e272bf ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7a6c23c ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdc36a49 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbde3208b ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc45dc51d ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc46f6028 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc623f357 ib_alloc_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7a52bc2 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7e72f63 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb387afb ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4642eb5 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6ca936a ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd79bd015 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8a0980f ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8e31856 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc735d6b ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf3a8235 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe47807cc ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a41b34 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe90b72e5 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe941518c ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe95f0e40 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe98ae42d ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2a49e0d ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5c008cf ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9ad47e2 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa0f18d0 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc46d0cd ib_free_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdb9552d ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfeec039d ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x01a9172d ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x272a0383 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4605a20e ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4d062f83 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8efd3bf2 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x909db400 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x93b14650 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x946d5d27 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa6de8527 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa70f2aaa ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xae9db2e4 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xafe0f15e ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfdd41daf ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x14c37095 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1c778fb6 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x25f8177e ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6e44fd9f ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8001438f ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9ec2fd34 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbd4fe1d4 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdf4888f7 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf6b6444b ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f847bc ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07cf5a51 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18382f6a ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x184f3575 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x396176d5 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99d23c40 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa1c90dc7 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb1c6725c iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc399ed40 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd28091f8 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe4ff9ba4 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe75dfa1d iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1972f5c7 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26729cb9 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x42a6d04a rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x53f448ad rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a6b05d0 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74b3abc6 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x794ebdcd rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f154fef rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80688862 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf129b25 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb798e4ca rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb14e430 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc20866a9 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb584659 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf65a103a rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6f2f73a rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf82da5cc rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfdb25b25 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe616804 rdma_resolve_addr +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1e827d40 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x32279e0b __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x52e063e3 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9c2fe821 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa866c341 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb45be806 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe799f26f gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf3a360dc gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf5b7d802 gameport_stop_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x1f6193b8 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x21e7dae0 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc0b1c728 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xd809dd77 input_free_polled_device +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0eea5670 ad714x_remove +EXPORT_SYMBOL drivers/input/misc/ad714x 0x25e42ae9 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9120f9e4 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xfa59e97e ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xe4afa83c cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3a69d5b9 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3f66d73e sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3fde14aa sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x764ec481 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa4e3a482 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xaf1dabfa sparse_keymap_free +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x1bd1f498 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbc9dc160 ad7879_suspend +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf3bd1692 ad7879_resume +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x10450e84 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x29b9bb38 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47d3fc51 capi_info2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5b3b6ec3 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x80b7d48c capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x90dbec0f capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x91f991ae attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa038ca9f detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd55487d9 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd7a06809 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xea99db03 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed061606 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x17282b7f b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x255a0ff9 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x37b05f3b b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5ccc79cf b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6754db48 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x705618c4 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x749e4f1c avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x83b86868 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x90c9091c b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xab967cd9 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xadd2ee57 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbeae8a63 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc0afaae4 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc145cd83 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe39d0154 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x19f8fc9a b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x23194b8b b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2f8744f3 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4ccd8db0 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x560e225d b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7251e58d t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc5b38538 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd410ae6d b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xea4dcb0f b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x82aa99b6 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x00cce2f1 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x13e3a08a mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x57d1148c mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa085357d mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0a5a4a52 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x653b46b4 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x4a41686f hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7f29ce36 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe227344e FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xff2db2cf FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x2c595bbe isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6048a94f isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x824f4d54 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xcb40f534 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd6d495f9 isac_init +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x2d8f565b register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x354570a6 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xbab9a22a isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0e4b63d1 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1800002e mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29b6ddba mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2c41b96d queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x318e6364 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b0ed1e7 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44ec755a confirm_Bsend +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51634e9c mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x53bcc6cf dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54451388 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x57549d13 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5bf45d63 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dc7400a mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x614ede30 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x632b961b recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x686ccb1b create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x93c50127 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9445daa5 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96309324 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99044baf recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf7fb9ad mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb500e393 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb89905bd mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbde96dcb mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe87943cf mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf504cfca mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/dm-log 0x2d30f73f dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x6f5af0e9 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xdf64510c dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xeef2db43 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2e961edb dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x61ef9c5b dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x87ef5e62 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8ca931c1 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x989eea77 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xeef7d17c dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0xb7a23b99 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/tuners/max2165 0xbde8b5d4 max2165_attach +EXPORT_SYMBOL drivers/media/common/tuners/mc44s803 0x9ba77d2b mc44s803_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2060 0xf596b406 mt2060_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2131 0xd3b28b40 mt2131_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2266 0xcebda9e2 mt2266_attach +EXPORT_SYMBOL drivers/media/common/tuners/mxl5005s 0xc7be9a5c mxl5005s_attach +EXPORT_SYMBOL drivers/media/common/tuners/qt1010 0x32188c62 qt1010_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18212 0x724607bd tda18212_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18218 0x9d595ab4 tda18218_attach +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/common/tuners/tuner-xc2028 0x6292eacc xc2028_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc4000 0x849288db xc4000_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc5000 0x8159ac26 xc5000_attach +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x151a3976 flexcop_device_exit +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x154d35ee flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x33de76b7 flexcop_dma_free +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x5e69836f flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x7297955b flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x8971c563 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x91fab559 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x93ae83cb flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xa7eca00b flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xaeb86c3d flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xb8c6ebf4 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xbae4bb2a flexcop_i2c_request +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc1d7b8fe flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc2c30594 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xd22a9471 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xd3faba4c flexcop_dma_config +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xdc4c2b9d flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xded65c40 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xee2d9ed7 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xee50abc9 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x3e5c0ac3 bt878_stop +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x92c7b2e4 bt878_start +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xa515b905 bt878 +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xa9d19830 bt878_device_control +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x01fec230 dst_error_bailout +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x26c02636 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x2a18675a rdc_reset_state +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x6cc6411a dst_attach +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x9ad85435 dst_comm_init +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xc1b3bf87 write_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xc69f2d51 dst_error_recovery +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xf7b9e6d1 dst_pio_disable +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xf8f35aff read_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst_ca 0x4fa19e75 dst_ca_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0381a962 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0536b83f dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0c4d4a14 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x101a29b8 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x196f1ac1 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x20731e18 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x237f7910 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x300f2abb dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x438ba2ec dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4911af47 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4c70c35a dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x51d4035a dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x5a1eb4d1 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x5aedbc3e dvb_net_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6007cf5f dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x70367989 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x84ffcdfd dvb_register_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x987dcfde dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x9983c814 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x9be2edd2 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xa37d37c2 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xa7df2818 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xad733c53 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xb72b5fa0 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbc0d91e1 timeval_usec_diff +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc0d593f4 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc5b53187 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xcb8a5e2b dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xd3ee7530 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xdeb9e8e8 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xdfb4302b dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe2a5e19d dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe8a2bb5a dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf84d6911 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xfa610d62 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xfcc0ed9c dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x057f2f5a dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x49f2fd92 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x5a939cf7 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x8eb3cc6d dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xb878a5c6 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xd91f8941 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xda0b45a6 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x6f8a744d af9005_rc_decode +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x015f056e dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x1d1089b9 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x66a44586 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x6a56e17d dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x70efca3f dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xa6fc3bea dibusb_rc_query +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xa999c66f dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb99ef4d4 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xc75ce93d dibusb_pid_filter +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xc9b967fd dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xea953b67 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/a8293 0xe510bbbb a8293_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/af9013 0xf44d538d af9013_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/atbm8830 0xb221818f atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/au8522 0x14d55758 au8522_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/bcm3510 0x32591425 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22700 0x283f9505 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22702 0x6ef5be85 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24110 0x6790f89b cx24110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x1e2223cd cx24113_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x48731b6e cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24116 0x719d601f cx24116_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x00ca4b1e cx24123_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0xb4febd95 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/cxd2820r 0x2d09f58a cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x6fd34101 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xb47afda5 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xbd4493a8 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xe445625e dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xf9d9d15d dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x0b6416e6 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x18e1b537 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x2281441a dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x2c04400d dib0090_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x2d44ea62 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x5fba68ce dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x693af338 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x8e4f4141 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xe6c006b7 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mb 0xc56a8de7 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x03bd1f70 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x1d7887ae dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x44e88fc4 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x701532c5 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x74356a4a dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xdacd2354 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x20fe57cc dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x7b5dd8f5 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x8b4bec73 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x99593f44 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x1da20663 dib7000p_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x2a5f9b42 dib7090_tuner_sleep +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x379a0907 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x550cae93 dib7000p_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x61cf7c9f dib7000p_ctrl_timf +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x70013e91 dib7090_agc_restart +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x7b0fd823 dib7090_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x89f914d0 dib7000pc_detection +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x913034cd dib7090_slave_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xa289461d dib7000p_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xa348c9cc dib7000p_update_pll +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xa404a9b8 dib7000p_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xed9553ca dib7000p_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xfa218e84 dib7090_get_i2c_tuner +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xfe15053c dib7000p_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x1d0f8442 dib8000_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x20606e55 dib8000_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x261d3d7f dib8000_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x325fd549 dib8000_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x3fc62945 dib8000_pwm_agc_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x4eabe039 dib8000_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x50210fcc dib8000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x72a58524 dib8000_remove_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x868826c9 dib8000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xac566f1b dib8000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb2a19a3c dib8000_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb6cca348 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xd7c08b7e dib8000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xf1be70e4 dib8000_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x38950e27 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x499c9122 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x6cc53cf8 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xb59929f6 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xf1fd2d0f dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x02d16dd5 drxd_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x40fe5762 drxd_config_i2c +EXPORT_SYMBOL drivers/media/dvb/frontends/drxk 0xb73cfc7d drxk_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ds3000 0x5836da0f ds3000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dvb-pll 0x980546fa dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ec100 0xcd774f4e ec100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6405 0x7f610f12 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6421 0x89dc7bd0 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6423 0x79f2bf7f isl6423_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/it913x-fe 0xabaff25b it913x_fe_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/itd1000 0xb0488f6a itd1000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ix2505v 0x2b6f1b71 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/l64781 0x7e12497a l64781_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt3305 0x29fc2c32 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt330x 0x5b87d9d1 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgs8gxx 0x2bd62a72 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0xaf2f8cfd lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0xd00a2943 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp22 0xdcac1b61 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a16 0x29b89431 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a20s 0xb61df96c mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt312 0xc3d3481d mt312_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt352 0xe07dbdcd mt352_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt200x 0x1019d401 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt6000 0x3f9ddf71 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51132 0x8c5e5194 or51132_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51211 0x38feeb73 or51211_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1409 0x0029c13e s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1411 0x86708b0a s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x17efc18c s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x360f12dd s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s921 0xc20a049e s921_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/si21xx 0x4c00bf3d si21xx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp8870 0xb979149d sp8870_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp887x 0x1ed9bd28 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb0899 0x25870503 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6000 0x9fe0b781 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6100 0x65826e76 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0288 0x951ed0fc stv0288_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0297 0x1ec71423 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0299 0xbc215d3b stv0299_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0x374f0419 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0xad859c36 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0900 0xad4a788f stv0900_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0x995630a4 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0x9b42f9b1 stv090x_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110 0x1cf17d54 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110x 0x5dbf727c stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10021 0xef15c09d tda10021_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10023 0xa1928d13 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10048 0xd072deb1 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x349ae0ba tda10046_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x54a3a935 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10071 0x8f820cca tda10071_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10086 0xaf52d6c4 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda665x 0xcebe88ad tda665x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8083 0xa7c72841 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8261 0x792c758a tda8261_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda826x 0xc5b95633 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tua6100 0xd72ca644 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1820 0x13578c00 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1x93 0x440fcba2 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10036 0xb500f699 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10039 0x282a5b6f zl10039_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10353 0xd3a033eb zl10353_attach +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0x1964980d ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x511de28c ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x7adae346 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x23c461e7 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3e8c448e lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x508fbb84 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x68286133 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9b10b921 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9df34408 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc80e0bea lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe24ef037 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2cae3074 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x97b07b80 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x1c6dfc26 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x3ad5536c bttv_get_pcidev +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xe4c83939 bttv_sub_register +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x3523167b btcx_riscmem_alloc +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x495e4b0c btcx_calc_skips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xad2fe38b btcx_sort_clips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xbb21ade7 btcx_riscmem_free +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xc368f8e6 btcx_align +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xcda0ded2 btcx_screen_clips +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2fe94528 cx18_release_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x67a673e3 cx18_ext_init +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x964341b1 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x9e9d2071 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xeeade5c6 cx18_claim_stream +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0x573b9b8a cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0x8bc36e48 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/video/cx2341x 0x0da7e7ff cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/video/cx2341x 0x0e45778a cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/video/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/video/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5b88faf6 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0x676ed443 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx2341x 0x7dc2bf3a cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/video/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0xffb04ae1 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x9247b72f altera_hw_filt_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x9d313947 altera_ci_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xab2127ff altera_hw_filt_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xfbecb29e altera_pid_feed_control +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x07268aea cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x471e1cfb cx25821_devlist +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x4c8bc3ef cx25821_devlist_mutex +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x67cc5b8b cx25821_sram_channels +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x7e1e23c3 cx25821_dev_get +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x84710255 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xabc59f16 cx25821_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xbe6d69ef cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xe927d7dd cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xf1fa8a34 cx25821_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xfed62e5f cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0x5b47efc7 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0xcc988279 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x2bb9edd3 cx88_set_freq +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x337a933b cx8800_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x52f289b3 cx88_video_mux +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xa9976b3d cx88_set_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xac4e53b9 cx88_user_ctrls +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xafef1b44 cx88_get_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xce506a99 cx88_enum_input +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x11abba12 cx8802_get_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x1ef82e5b cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x3138f5a1 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x8b35c1fa cx8802_register_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xb0f99fe2 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xc71cd6b0 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x0504015e cx88_ir_start +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x1479737d cx88_core_irq +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x1e05a425 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x202667e0 cx88_set_scale +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x22f58a79 cx88_wakeup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x30e6f1f6 cx88_core_get +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x33f46e9c cx88_set_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4a5355a2 cx88_vdev_init +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4adff098 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4ebdd2ba cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x55d9b7a7 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x57ad8045 cx88_shutdown +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x5e7ba642 cx88_free_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x8592768e cx88_reset +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x9466f513 cx88_newstation +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x9774d46d cx88_ir_stop +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb2134c2f cx88_sram_channels +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb3d92986 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xc2aa3ae1 cx88_get_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xcbeb4f6d cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xd980c1e5 cx88_core_put +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xe6af32f7 cx88_risc_stopper +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xff87fc09 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0x79e5cc6b em28xx_register_extension +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0xc656714a em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x10b6661c gspca_disconnect +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x2774d2e9 gspca_suspend +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x7c720ca4 gspca_auto_gain_n_exposure +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x92e657aa gspca_resume +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xa0190d40 gspca_frame_add +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xc9aa201f gspca_dev_probe +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xf770da49 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x20bbc2da ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x2121cc31 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x2855eae7 ivtv_api +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x8aba3f45 ivtv_vapi +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x8bc9dcff ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x8cd3722f ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x929ce1b1 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x9a6fd8ee ivtv_udma_setup +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xd68333c1 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xd72e6088 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xf3542588 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xf6e4600b ivtv_vapi_result +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x14dfecc6 saa7134_boards +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x2eae17ad saa7134_ts_register +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x5a28db23 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x877e80bc saa_dsp_writel +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x94bd64a3 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xb21ddc78 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xc4903f51 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xcac54072 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xe193a0fb saa7134_set_gpio +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xe36f3478 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xeb15c105 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xf0ad3c62 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xff072e8a saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/video/soc_camera 0x300de695 soc_camera_host_register +EXPORT_SYMBOL drivers/media/video/soc_camera 0x3b0e43ff soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/video/soc_camera 0x63c51bac soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/video/soc_camera 0x68570da5 soc_camera_unlock +EXPORT_SYMBOL drivers/media/video/soc_camera 0x8b468b86 soc_camera_lock +EXPORT_SYMBOL drivers/media/video/soc_camera 0xe530deb6 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x433952ab soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x6951757b soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x85d52182 soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xcb4b96ae soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x810fe344 tm6000_register_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0xa8689db6 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0xbfc1bf27 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/video/tveeprom 0x72de35de tveeprom_read +EXPORT_SYMBOL drivers/media/video/tveeprom 0xadadaf05 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x30747772 v4l2_chip_ident_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x42c8e001 v4l2_ctrl_next +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x4c9fd0bd v4l2_chip_match_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x4ed5e0d7 v4l2_chip_match_host +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x50766d69 v4l2_ctrl_query_menu_valid_items +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x791ab099 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xc0699aac v4l2_ctrl_check +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xf052e6db v4l2_ctrl_query_menu +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x1e7c85b8 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x24921697 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0xb3189292 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x42b01f39 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x8d2a6e13 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xc79a6952 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xcc0381a9 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xcd29753e videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xda35bb41 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/video/videobuf2-core 0xef2cb030 vb2_querybuf +EXPORT_SYMBOL drivers/media/video/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/video/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/video/videodev 0x12726da8 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/video/videodev 0x1cdc8bde v4l2_ctrl_add_event +EXPORT_SYMBOL drivers/media/video/videodev 0x22c062a6 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/video/videodev 0x269097e9 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x2a00ce3c video_usercopy +EXPORT_SYMBOL drivers/media/video/videodev 0x2dcd2e5b v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x31c0eaea v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x3a52ec29 video_device_release_empty +EXPORT_SYMBOL drivers/media/video/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/video/videodev 0x3b713d85 video_device_alloc +EXPORT_SYMBOL drivers/media/video/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/video/videodev 0x424a2985 video_unregister_device +EXPORT_SYMBOL drivers/media/video/videodev 0x43f9eca1 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/video/videodev 0x4d360cb9 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/video/videodev 0x5137e42f video_device_release +EXPORT_SYMBOL drivers/media/video/videodev 0x533c16c0 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/video/videodev 0x5ebefe4b v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/video/videodev 0x6016747f video_devdata +EXPORT_SYMBOL drivers/media/video/videodev 0x6456a197 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x6db76e00 v4l2_ctrl_del_event +EXPORT_SYMBOL drivers/media/video/videodev 0x6ece7853 __video_register_device +EXPORT_SYMBOL drivers/media/video/videodev 0x76ca6e43 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x7936d64f v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/video/videodev 0x828e89d2 video_ioctl2 +EXPORT_SYMBOL drivers/media/video/videodev 0x8465ea27 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x8b7973d6 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x91b1e615 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/video/videodev 0x96827c2a v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/video/videodev 0xa0761a68 v4l2_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0xad1bf5bf v4l2_ctrl_handler_init +EXPORT_SYMBOL drivers/media/video/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/video/videodev 0xc61ba318 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0xcb96bcf3 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/video/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/video/videodev 0xd4bf05c4 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/video/videodev 0xd99b07bf v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xda6dc93f v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/video/videodev 0xdb3229be v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xdb70329f v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xe12e18f8 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/video/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/video/videodev 0xe3719f5c v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/video/videodev 0xe734bd9c v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/video/videodev 0xe83006ee v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0xe9fd110f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/video/videodev 0xf09c0c86 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/video/videodev 0xf4d3333c v4l2_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xf8b09388 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x1d82051d videocodec_attach +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x811f3d40 videocodec_register +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0xb55532fd videocodec_unregister +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0xbc3cfdb5 videocodec_detach +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0f031d9e memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1b657be9 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x218a9cc8 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x29919ac0 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x540d36f9 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x96998c24 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb9eed918 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2efe697 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc30421b8 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xea5bec6d memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf29da97f memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfb6f266d memstick_register_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x037a4870 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13825992 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c3d1f35 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x271da99e mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x309439cd mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32524171 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x399dc565 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a1ffeab mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b8b4cc8 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x41fbd088 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4474373b mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48af6569 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b60f6c1 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4eb6f259 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x73958b37 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d6f2d77 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x82bbdb20 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x83a7e05f mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x861609fc mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4d4c1fa mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc1de9457 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc8bad4e8 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcab727eb mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb5a6834 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe88716ae mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf08fac9a mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf66ac6f7 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6763834 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf800c9f6 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x059cb5d5 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f93c883 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35375a54 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b014ac1 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3cd5b807 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3df19943 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50b39626 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56d71768 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e07d88e mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65a4027d mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66c5853d mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7bbdb4cb mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e017354 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x889515de mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ad769c1 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ae910be mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9aff1cc6 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c236a12 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d57f74e mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8cb731d mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb62f2a7 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc48a027e mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xce76b6c4 mptscsih_proc_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd9acc4e5 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdca4c5c2 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2480286 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfbcc13f0 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x19181377 i2o_status_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x208b7ffa i2o_event_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x2a843bef i2o_dump_message +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x32a08603 i2o_parm_table_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x4f7f874c i2o_driver_unregister +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x5b8fcf34 i2o_parm_field_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x655449e7 i2o_driver_notify_controller_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x6686ab71 i2o_iop_find_device +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x9f3828e1 i2o_exec_lct_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xa0ebfc34 i2o_parm_issue +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xa327f9d1 i2o_device_claim +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb2ac4e50 i2o_msg_get_wait +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb4c00dcf i2o_controllers +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xbeed2339 i2o_driver_notify_device_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xbf3bfc81 i2o_find_iop +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xc67567a8 i2o_driver_notify_controller_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xccdee908 i2o_device_claim_release +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xcf0bcaf8 i2o_driver_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xd0d838da i2o_driver_notify_device_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xe3ad7b79 i2o_msg_post_wait_mem +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x66204660 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd668749c pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0a0f0fa1 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19f1f7a8 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x304d2b09 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x648f3e82 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c8289a3 mc13xxx_irq_request_nounmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x81e0f888 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x908760bc mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9bc42b70 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa83c26ee mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad06449f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb3dae053 mc13xxx_irq_ack +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc60a9247 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdc5799c mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/tps6105x 0x217ea530 tps6105x_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0x78d8cd6b tps6105x_mask_and_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0xb6507ae5 tps6105x_get +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x4148482d ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xf1ad9c20 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xeafaf244 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x3916cb3b c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xf57c9420 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x154188e9 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x7b50fd87 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x17260fd9 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x25d6a6a9 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2708231e tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x7dab90e0 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9db802be tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xa1ff4ecc tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xa616dd5b tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xbdfedc67 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xc310b986 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xe98dc4e4 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xee782320 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf353bafa tifm_alloc_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xc2b815dc mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x25fb2caf cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x72188998 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9f462ebd cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x454d49f6 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4f6b15c0 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb637d15d map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xbc7c2002 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x060c89cb mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf1c8cfbe lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x194c4478 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x48abeb64 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xbe95aa3a mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0666e293 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x094fed09 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5478d613 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x58b27256 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x6c71a619 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x918358b1 nand_default_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb698ac31 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x129d4bb3 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x3f2d22f2 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x621f69e3 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x0f309dcd nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xaae8bc34 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x836bdb72 nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x15dbaf37 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1ada142c flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x8220fdc7 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd05da64a onenand_scan_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1511e5ab alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x29581d4e arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x98a512cc arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbe6416fd arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc6df0e69 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc83cfcb1 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe3686676 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe55f21d5 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe652a604 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfd2f0b4c arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x42d9d322 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x455e80c5 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa394f293 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x29976101 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3215a294 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x455ff663 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4d6dc39b ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x79c8aa94 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9a5242d6 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb1ae4102 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd9c8d344 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfa1dc986 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfed5e70b ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x035ca422 eip_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x182c21d8 NS8390p_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x625dcefe eip_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x73899c3a eip_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x998e6aa2 eip_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb0ca2b24 eip_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb46156d4 __alloc_eip_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xc2cc0648 eip_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xf1084c07 eip_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xf16aa70f eip_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2 0xce3464b3 bnx2_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x64317cfa bnx2x_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa019b5a6 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0823d394 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x189d52c3 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3013085a cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x328544c3 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x389c3710 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d1353f6 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x77d8e9b0 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x93ffd6d9 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0277408 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb60f8767 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc50fa473 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd0986aea cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd13de06d cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe308e1b1 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf04b1bfa cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfd57da78 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0741b856 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x314974c3 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32a98dc4 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34ac6762 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c3719fd cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b78aa04 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57af989f cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x680d264f cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f29477a cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa595b027 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb4d24129 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd4f18f3 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe490fb1f cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe92c9d66 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb28c104 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xed156fce cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf698ea93 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0040c956 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa689eb5d mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda6b3df6 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x154194e3 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6645ed16 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x724f3830 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x79925b74 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb032be4a hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2a73234c sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x41212019 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7a2a189c sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7e259b6a sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x91bb7884 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x923ffc30 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x949851e5 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xae711e27 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe5838c1e sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe9241a13 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/mdio 0x0f934475 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xb34a7575 mdio45_ethtool_spauseparam_an +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2a0d67e0 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xee123686 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd03ff743 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe2c0ba5c pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xff770c6b pppox_unbind_sock +EXPORT_SYMBOL drivers/net/sungem_phy 0xaef88c5a sungem_phy_probe +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x278c7687 tms380tr_open +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x2a93593e tms380tr_netdev_ops +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x3d65f3ac tmsdev_init +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x6d63f739 tmsdev_term +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xbcd23793 tms380tr_interrupt +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xd2328794 tms380tr_wait +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xed55ad69 tms380tr_close +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x38da4725 cycx_intr +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x62be23ea cycx_setup +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x66a4c4e6 cycx_down +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x968458a6 cycx_peek +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xb6f383de cycx_poke +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xfe7cd576 cycx_exec +EXPORT_SYMBOL drivers/net/wan/hdlc 0x05e881f0 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x079e8a69 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x184354bf hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x22a25682 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3d2c7f40 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x598bc738 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7d43b747 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbb38bd91 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe88fd82a hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe9fb86b0 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xeafd8cd3 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/z85230 0x0120a4d0 z8530_sync_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port +EXPORT_SYMBOL drivers/net/wan/z85230 0x183cb8ef z8530_sync_dma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x4e74e723 z8530_sync_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream +EXPORT_SYMBOL drivers/net/wan/z85230 0x8495ece0 z8530_init +EXPORT_SYMBOL drivers/net/wan/z85230 0x89887595 z8530_sync +EXPORT_SYMBOL drivers/net/wan/z85230 0x93a46214 z8530_sync_dma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x966610a8 z8530_sync_txdma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x998537e0 z8530_shutdown +EXPORT_SYMBOL drivers/net/wan/z85230 0xa04b7c50 z8530_null_rx +EXPORT_SYMBOL drivers/net/wan/z85230 0xb722a225 z8530_queue_xmit +EXPORT_SYMBOL drivers/net/wan/z85230 0xc7085237 z8530_channel_load +EXPORT_SYMBOL drivers/net/wan/z85230 0xc8dfbcf5 z8530_describe +EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt +EXPORT_SYMBOL drivers/net/wan/z85230 0xd5787aea z8530_nop +EXPORT_SYMBOL drivers/net/wan/z85230 0xda191728 z8530_sync_txdma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x24b89bff i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x117a18c1 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x732748a5 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x761f6c4a init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x08260c22 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1de57e15 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x30665d51 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3d0c6a96 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x41b711cd ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e2481d5 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7ae09782 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x900d9db9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9f4475e3 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1a9f65b ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdcf9c121 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfcdad40c ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40d3a2e4 ath9k_cmn_update_ichannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4da09299 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6daddf52 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xafaa3200 ath9k_cmn_get_curchannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb2e484c ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf59eadf3 ath9k_cmn_padpos +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0155fbda ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02a25f94 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x043f5457 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04be716f ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x096e4384 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e697c4a ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x113e2537 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x138ee8e0 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1427f5ce ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19abf00c ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19bf67ae ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ba8cba3 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e9aa221 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23be9eb4 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25961a3f ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x262b837e ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x289bb208 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28a94218 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2acca7da ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b55fc92 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b68018a ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30d7d1a5 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32b4f0f7 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x364c9428 ath9k_hw_getdefantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37cb4171 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3aa3a67d ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b53e260 ath9k_hw_gettxintrtxqs +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e249ed9 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40483a19 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40722c90 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4078b2a3 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x444048f1 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46fc550a ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x477e41b7 ath9k_hw_htc_resetinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dfa8c3c ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5180bc8c ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x529e90ba ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53b030b9 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55346558 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a88cb63 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b0cc065 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x614d8f1a ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63a018dd ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65325be7 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67594083 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68666b66 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a234c16 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x727adf01 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7514627b ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7772d30a ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78493c34 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7db91629 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f36a1b9 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80fe6a3f ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85912ef4 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87b472e0 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9216513b ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9223063f ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9524ac6d ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9db20903 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9db6ae6b ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa19e5a30 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa304007f ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa830e04d ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabe7b440 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae51e727 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb21967cb ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6e88659 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb858a107 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc94bce2 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf5cbddf ath9k_hw_proc_mib_event +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaa4df0f ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf752416 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcffca102 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd15b24fc ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1a8bdfa ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2e37847 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd38ac02f ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd608a279 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd819dc33 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcb48be3 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfa3f815 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf257403d ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2af858b ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf300dfb7 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7111fe7 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd6bca51 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff81286a ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/atmel 0xac7325e7 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xb68a3d9d atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xe349aba0 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x9452f4b2 brcmf_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0xdf0aee73 brcmf_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x04e349d2 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x15d55a47 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1846abe6 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x23c3e873 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2c2c3535 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x38159d31 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x583f6337 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x66f40550 brcmu_pktfrombuf +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x78aef01e brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7d543134 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8948c730 brcmu_pkttotlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa0d194d8 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa5d65eef brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe5485e11 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ae16c33 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0c9201c2 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2f11657e hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2f26d356 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x38f53266 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x44acbdcc hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4615ed09 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x46502376 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x52b22bbe hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x55cf320f hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x652c7308 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x66446508 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6ceb5d3f hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6d934856 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7a985bcc hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7f9a5809 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x91dd0e5c hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x963570d8 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa68a2479 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb1bff31b hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbf2b1da9 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbfaf1ea0 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcad5b77a hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd24ac28c hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfcd6eb28 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0e248de2 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0f237bb5 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0f4c8910 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x114e2dd8 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x11d1ce15 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x237562e4 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2412a71d libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x27db7a4f libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3bdf0a15 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4b84af7d libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5304c5f1 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7052e74c libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7f775465 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x94139af6 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x999ce135 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb654dd06 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xce83680a libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd4aaea15 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd509adf4 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xda903c8b libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe4ade2b1 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x009f6b99 iwl_legacy_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x030186b0 iwl_legacy_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0598025c iwl_legacy_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x065a3d31 iwl_legacy_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0f69ac89 iwl_legacy_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x107861a1 iwl_legacy_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x11aeef9c iwl_legacy_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x13e9e26f iwl_legacy_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1d3db703 iwl_legacy_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1d673a71 iwl_legacy_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1d7bc70c iwl_legacy_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x201a5c96 iwl_legacy_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x21e930bb iwl_legacy_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x24cb7a2c iwl_legacy_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x274aa1cb iwl_legacy_rx_pm_sleep_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2d5e61fe iwl_legacy_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3099ff48 iwl_legacy_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x33c16b76 iwl_legacy_pci_resume +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3572e239 iwl_legacy_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x35da155c iwl_legacy_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3696af3e iwl_legacy_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3de65604 iwl_legacy_rx_pm_debug_statistics_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3e653578 iwl_legacy_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3f909142 iwl_legacy_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4402d540 iwl_legacy_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x45d0bcee iwl_legacy_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x460f910e iwl_legacy_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x461741d6 iwl_legacy_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x46daee50 iwl_legacy_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x46fbb1f0 iwl_legacy_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x495bf603 iwl_legacy_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x499cfe2f iwl_legacy_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4ba07af4 iwl_legacy_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x50988ccf iwl_legacy_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x54ac187e iwl_legacy_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5755a332 iwl_legacy_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x57f06ffe iwl_legacy_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5e7d1113 iwl_legacy_rx_reply_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x656f67e0 iwlegacy_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6578b9fc iwl_legacy_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x69723cef iwl_legacy_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6cc3d208 iwl_legacy_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x79918c13 iwl_legacy_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7a75a842 iwl_legacy_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7b4eb5cc iwl_legacy_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7fee54f0 iwl_legacy_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7ff0a17b iwl_legacy_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x848727bc iwl_legacy_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x89f7026f iwl_legacy_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8a15a592 iwl_legacy_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8a26ae5e iwl_legacy_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8c393757 iwl_legacy_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8e660f28 iwl_legacy_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9333642b iwl_legacy_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9ae927de iwl_legacy_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9c6f4120 iwl_legacy_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa618c0c2 iwl_legacy_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa6196ae4 iwl_legacy_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa7ff73a9 iwl_legacy_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xab3a46a9 iwl_legacy_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xabe48768 iwl_legacy_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xae019207 iwlegacy_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xae49a122 iwl_legacy_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xaf3cbe93 iwl_legacy_get_free_ucode_key_index +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb8c4c520 iwl_legacy_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb91ca282 iwl_legacy_rx_spectrum_measure_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb9328ee3 iwl_legacy_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xbbc54593 iwl_legacy_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xbf228213 iwl_legacy_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc1203645 iwl_legacy_rx_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc661a9f8 iwl_legacy_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc8230955 iwl_legacy_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc8b33682 iwl_legacy_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc9e95888 iwl_legacy_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xcd884ebb iwl_legacy_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xcff6a289 iwl_legacy_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd1abb047 iwl_legacy_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd33471b5 iwl_legacy_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd8460803 iwl_legacy_alloc_all +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xdd32ea2b iwl_legacy_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe19ce2f3 iwl_legacy_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe3c5a4db iwl_legacy_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xeb4dc7f8 iwl_legacy_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xefdcb3a2 iwl_legacy_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf503a882 iwl_legacy_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf67572ba iwl_legacy_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf67d1a86 iwl_legacy_send_statistics_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf8713844 iwl_legacy_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf9abaf18 iwl_legacy_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfb326431 iwl_legacy_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfd43b848 iwl_legacy_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfdb7b2ac iwl_legacy_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfec47ec4 iwl_legacy_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x60faee03 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x61c5e32e __tracepoint_iwlwifi_dev_tx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x65489f9c __tracepoint_iwlwifi_dev_rx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x726d9621 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb6c345da __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcc312d73 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd1d62dbf __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd915418d __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xf7769239 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x03553723 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2c7abb73 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x34a22836 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5a9f218a orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8a83429d orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x96a9e253 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9d0b87b4 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9de08fdb orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xac8f935c orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xae3b54c1 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb0cf7ee3 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb4efa122 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc282e42f alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe7c5f74c __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xee90268b orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf20b36b8 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf8551703 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x008e5b01 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x0194fc20 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1d4c4daf rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2d4e6bf1 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3b89943a rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3f9e76d3 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x444ba1b1 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x49b458da rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x4af6c684 rtl92c_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x4e31c4cd _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x512e3c4d rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5bb7cd41 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x630acd90 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x63cb2c92 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x651a7f67 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6ffef43c rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x70ffb29d rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x736a2c95 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x76e150fb rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7850b37e rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x815d60c4 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x81c7e263 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x934de448 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x9abbebff _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa1ad9fba _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa69f1620 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xba2972b8 _rtl92c_phy_dbm_to_txpwr_Idx +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xba9bccb6 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbcccc200 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbe60179f rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbff81f4d rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc377f361 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc593771f rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xcbc3e7f7 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xcfd9ae64 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd433eacf rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xdd8b041d rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe9b44a24 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xec98f596 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf7e52a4e rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf80b68aa _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xfb1a2afd rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x0a3e7c21 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x0b7589e3 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x1154e2a2 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x1e26c65b rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x1f1d6916 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2242cdae rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x28631952 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x286cab63 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2907c4ed rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2bfb569c efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x37cd7e7e rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x412cf6a1 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x4416064e rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x59432697 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x84fc58c5 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x92a4859b rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xa3337539 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xb2bfe7be rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd13a6e8c rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd7590e86 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xf7b0c9d0 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xf97b9c4f rtl_pci_disconnect +EXPORT_SYMBOL drivers/parport/parport 0x0090606a parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x0c1c6ca7 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x215f1188 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x2ab91332 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x2b0a53ac parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x2fa73093 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x33342428 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x409fd9b3 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x46b55469 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x4a82c9ca parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5a4290e9 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5fbdf89a parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x648b6cc3 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x68138f00 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x6c11ea1d parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6d916f2c parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x7b306aab parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x84c0bed2 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x89cb9408 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xa723134a parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xa8dae25f parport_read +EXPORT_SYMBOL drivers/parport/parport 0xb37617ec parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xb4779251 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xba856e0b parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xbe70538d parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xc85a3294 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xca91515a parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xcbb19f4e parport_write +EXPORT_SYMBOL drivers/parport/parport 0xdb9b1941 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xf883574d parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x4c7a4af0 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xcb84d1ba parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0173a8e5 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x07453593 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x491e236d pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x57c86c01 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x74d3d8fa pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x77d512eb __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x785197f0 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x84b8c4e1 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8b4f7106 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9094d62e pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb1d1cffe pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc692a0fc pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd2c390d4 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe2746bc1 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe75e7228 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf0b27fa0 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf566c55d pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfdbfd1b0 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfeb25c8f pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x07689f15 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a70cdf3 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x381f1b7b pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3c578b5d pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x747900fa pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x760974bb pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7c44b0e4 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x99c357f3 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaa2a8638 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb01b122e pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xca108a5c pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7b13f859 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa63c0733 pccard_static_ops +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x3b7e994a pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x593232b0 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xd331db8b pps_event +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x55fb5943 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0x91eb5d57 NCR_700_release +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x120f9586 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x14ee97c9 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3d5f00ff fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3e47c5ae fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x60005e2a fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7c6714fd fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa5447514 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xce007704 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd2eb035d fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00271e22 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x022759b1 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x030e1db3 fc_change_queue_type +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x032cff07 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0723480f fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b2b4a65 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11985e9e fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1841717f fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x195c1ce5 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26da240c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27bcc347 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b34a746 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c5cd1e4 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30b52a35 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35902826 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39e02cab fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3faeb975 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x424fe101 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fef9ecf fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58540a29 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x639d9006 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b68d9b5 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x723d9c0a fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cb68d9d fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7eae00a3 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ebd10c1 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f607e44 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x860b2bf1 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8759aa7d fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9454ba9c fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7c1f678 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1ec219b fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb330aed0 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb84f69e3 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbac7f82f fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbfb533e1 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc15684c2 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5d58179 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5e343c6 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc3b0598 fc_change_queue_depth +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcde4d00d fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0c4b281 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xddbe6881 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0d4c1bd fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe169d884 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1d81c65 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea186a8c _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea7752a0 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea7885af fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed9c7e3b fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x514b6f20 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1c026531 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e904ce3 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x255d06e7 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2664d08a osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x313f3773 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34ec97d2 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x378f54b1 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x44fb9b77 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4638b8cc osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b936a4d osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x51ebb8e7 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x58e78aa4 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6689438d osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x684de33e osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6a7c98d6 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c0af531 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x700646a2 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x747c33a9 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x74eed53e osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x79c03b97 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7b51e49b osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7cfff8f0 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8b0c6ae6 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d02c6b3 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8f77ddcc osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc78194be osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc85975d0 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcb5ccd46 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xce9f87b0 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcec62f93 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xea4a4d55 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf4385ad1 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf7bc979f osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfb978b04 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff2d60bf osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff57d2f8 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/osd 0x05ad5298 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2050d058 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2d29d0b6 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7252c8f1 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd9e2b2e6 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xeb8c2a9b osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x06058bae qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2ceef1c2 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x61acbbaa qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x76fcd24e qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xcf756a87 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd0c25751 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x32fc81a7 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x3a0a5e2d raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xb8743da7 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x19190fb6 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3d89ce9b fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43d9ddd2 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x45c241f5 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5a89feca fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5c56ad5e fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5c81f2b5 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x690c9306 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x743c9a0c fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9d184bb6 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaf47a191 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbbd750fc fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc1de6b12 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x15d0d6ab sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x19b6213d sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20b8f9d2 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x248b93bb sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3347d209 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3507b63e sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36fec073 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39931891 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ac904ac sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68d60659 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ea00779 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x83e14d7a sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9055565b sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9060e75a scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x908e2687 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97746b5c sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa70e5062 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7858afd sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4ffd7d1 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbbe47c21 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1db6ac7 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6a1f4a0 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcea77061 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0dee3de sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf2613f8d sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf49524e4 sas_remove_host +EXPORT_SYMBOL drivers/ssb/ssb 0x2505a9d0 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x2ce6fff0 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x320c1207 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x32fc928c ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x49422c4e ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4e6ee641 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x503d87eb ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x5f795901 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x6f677d51 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8c3daa9c ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x8ea8204b ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x95c35654 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xa2c29c3b ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xa72a57a3 ssb_bus_pcibus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa947817c ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xbdac6b03 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xbfe66771 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc8729194 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xce4e7b26 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xea20c112 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xf7c41bc3 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x095ee088 comedi_driver_register +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x0e816dcb comedi_error +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x100898b6 comedi_buf_write_alloc +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x2e6c260f comedi_buf_write_free +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x2e9db883 comedi_buf_read_n_available +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x4d2912f7 comedi_buf_memcpy_to +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x6376589f comedi_check_chanlist +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x791ddf96 comedi_buf_read_free +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x901fa3ae comedi_buf_put +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x951ad79b comedi_get_subdevice_runflags +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xafb151c4 comedi_driver_unregister +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xb7699d49 comedi_buf_memcpy_from +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xc2f7885d comedi_event +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xd71bfa61 comedi_buf_get +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xfe4ada5b comedi_buf_read_alloc +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x0d561af7 subdev_8255_init +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x9d86429f subdev_8255_init_irq +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x9d98e769 subdev_8255_cleanup +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0xf8b4e7a2 subdev_8255_interrupt +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0x41431f64 cfc_read_array_from_buffer +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0x5831b847 cfc_write_array_to_buffer +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0xb979ae12 cfc_handle_events +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x06ed5c59 mite_devices +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x1168e001 mite_get_status +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x11877c36 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x2d1c2e53 mite_dma_disarm +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x315ff7a2 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x46054c73 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x49ea01ee mite_prep_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x55eb0773 mite_buf_change +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x5bef3d2e mite_sync_output_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x5c67f61c mite_setup2 +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x61ddd9c0 mite_sync_input_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x6254b9a5 mite_done +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x66ddc7e7 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x7b16c3f9 mite_setup +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x92170fb7 mite_unsetup +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xa7bd925b mite_release_channel +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xa7e1c3ce mite_dma_tcr +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xd195172d mite_dma_arm +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xd920a2e7 mite_request_channel_in_range +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xdbd504bc mite_bytes_in_transit +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xfb3ba025 mite_list_devices +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0x003d58e8 subdev_700_init +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0x4b696340 subdev_700_cleanup +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0xa7c92512 subdev_700_interrupt +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0xe666b442 subdev_700_init_irq +EXPORT_SYMBOL drivers/staging/comedi/drivers/pcm_common 0x1f77e883 comedi_pcm_cmdtest +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x3cf5c9cb comedi_get_n_channels +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x783739d5 comedi_open +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x7a9826f4 comedi_find_subdevice_by_type +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xb497212b comedi_close +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xc554bff4 comedi_dio_bitfield +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xd0a9d687 comedi_dio_config +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x4ba53ba0 adt7316_remove +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x51a3977d adt7316_enable +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x596460ae adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xc967fe70 adt7316_disable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x16b1b6d8 iio_free_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x1ee8800a iio_device_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4b6f1ccb iio_buffer_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4b842512 iio_trigger_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x5cb858c6 iio_buffer_init +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x68008e1e iio_trigger_notify_done +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x70beab5f iio_allocate_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x7436cf11 iio_trigger_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x8492465f iio_buffer_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x8c28c545 iio_bus_type +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x909e4127 iio_buffer_write_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x9df2c259 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xa29a110e iio_trigger_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xafa977e4 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb8a12686 iio_buffer_read_bytes_per_datum +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xbca0a481 iio_read_const_attr +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xc1a42f8e iio_buffer_read_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xca07442d iio_buffer_store_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd1382cf0 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xda530984 iio_allocate_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xe673ec7b iio_buffer_show_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf2d5aa2e iio_sw_buffer_preenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf5cf0edd iio_free_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf744c541 iio_push_event +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xfcc496d0 iio_device_unregister +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x6d944788 kfifo_access_funcs +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xb686c01c iio_kfifo_allocate +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xc5938aab iio_kfifo_free +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x849fb87a ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb6707693 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x0e49bf12 ring_sw_access_funcs +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x1dfb4ede iio_sw_rb_allocate +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x23a10b8c iio_sw_rb_free +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xa9141764 cxd2099_attach +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x4e51b162 go7007_boot_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x52440dc7 go7007_alloc +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x679d3345 go7007_snd_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x75665da0 go7007_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xb9e8ed2a go7007_register_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xbc907aaa go7007_snd_init +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xd1a97ad6 go7007_read_interrupt +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xf863f0c4 go7007_parse_video_stream +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xf93b4e0d go7007_read_addr +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07d4f4d6 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0decfc09 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f2564b1 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23f58c0a ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d6b26a0 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f9262c7 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3185770b ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x360802da ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3981d477 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3af0813d ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cbb989d ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41c32d6b ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d6865c1 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x505bd57a ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x523d874d ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54ae36f5 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x596fed6d IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d6951f9 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x627801c0 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63738f02 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6545e7dd ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x699e4474 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c32c8b5 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71897a71 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78ff9320 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x795a1441 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a80e519 ieee80211_send_probe_requests_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a91160a ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e89c212 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x927e51d3 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92edd6d8 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94abb0e3 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9681ccc8 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97b5802a Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98287aa3 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9836fb43 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa039b837 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6b77272 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6c44a45 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7e64ad9 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaaf0a7e1 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xac93bcef ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf6dce64 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0936579 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcf7973f ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbee347ee ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc145b769 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd0ee61f ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd4d1e9e ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd502b992 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5526c0f ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd89374aa ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee366fe4 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef3c4ef6 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0da2cbc ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf354065f ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/vme/vme 0x00d7e722 vme_lm_count +EXPORT_SYMBOL drivers/staging/vme/vme 0x072f901c vme_master_rmw +EXPORT_SYMBOL drivers/staging/vme/vme 0x08954c08 vme_slot_get +EXPORT_SYMBOL drivers/staging/vme/vme 0x0e10859d vme_lm_get +EXPORT_SYMBOL drivers/staging/vme/vme 0x0ec5babe vme_dma_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x190b1ac4 vme_bus_type +EXPORT_SYMBOL drivers/staging/vme/vme 0x1c3e507b vme_irq_request +EXPORT_SYMBOL drivers/staging/vme/vme 0x3f68d4cf vme_lm_set +EXPORT_SYMBOL drivers/staging/vme/vme 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL drivers/staging/vme/vme 0x48b99a13 vme_lm_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x4aaa21a7 vme_irq_generate +EXPORT_SYMBOL drivers/staging/vme/vme 0x585739f6 vme_new_dma_list +EXPORT_SYMBOL drivers/staging/vme/vme 0x6666140f vme_dma_pci_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0x71b2e866 vme_unregister_driver +EXPORT_SYMBOL drivers/staging/vme/vme 0x75c7d93e vme_dma_list_exec +EXPORT_SYMBOL drivers/staging/vme/vme 0x76bab4d4 vme_master_set +EXPORT_SYMBOL drivers/staging/vme/vme 0x7797a741 vme_dma_vme_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0x7cf35220 vme_master_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x7fde2edb vme_master_read +EXPORT_SYMBOL drivers/staging/vme/vme 0x82431623 vme_register_driver +EXPORT_SYMBOL drivers/staging/vme/vme 0x9037c61c vme_irq_handler +EXPORT_SYMBOL drivers/staging/vme/vme 0x90695906 vme_free_consistent +EXPORT_SYMBOL drivers/staging/vme/vme 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL drivers/staging/vme/vme 0x944f78a0 vme_dma_list_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL drivers/staging/vme/vme 0xa1575637 vme_register_bridge +EXPORT_SYMBOL drivers/staging/vme/vme 0xa1f57dc5 vme_dma_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xaf3efe45 vme_unregister_bridge +EXPORT_SYMBOL drivers/staging/vme/vme 0xc8352002 vme_dma_pattern_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0xcc5b0af0 vme_slave_set +EXPORT_SYMBOL drivers/staging/vme/vme 0xd797b9a5 vme_master_write +EXPORT_SYMBOL drivers/staging/vme/vme 0xdff905e5 vme_slave_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xe003aeec vme_irq_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xe60cbb2f vme_master_get +EXPORT_SYMBOL drivers/staging/vme/vme 0xe61b1e0b vme_slave_get +EXPORT_SYMBOL drivers/staging/vme/vme 0xe693a6ce vme_get_size +EXPORT_SYMBOL drivers/staging/vme/vme 0xeccbeafc vme_dma_free_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0xee6dd95b vme_slave_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xf16b7972 vme_dma_list_add +EXPORT_SYMBOL drivers/staging/vme/vme 0xf37ea464 vme_lm_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xf876ce53 vme_master_request +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x03afd844 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x040ede68 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a638643 transport_init_queue_obj +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c8395fc fc_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x21134dee core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x24960eb1 target_get_task_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x27d24445 sas_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x29e20f0c core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ff81f83 transport_generic_allocate_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x303bdf16 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f8ae800 transport_do_task_sg_chain +EXPORT_SYMBOL drivers/target/target_core_mod 0x558e4926 fc_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x56c61c91 transport_generic_process_write +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c2bac58 transport_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f2569ba sas_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x6420a2d2 transport_subsystem_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x654cf690 target_fabric_configfs_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x65b26c78 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x714f0d6e transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7474bb36 fc_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x791dfc3f transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dcfab3b fc_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x83e34ef6 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x88cd1932 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x890e779d transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ec2ff5a core_tpg_clear_object_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x981e158b target_fabric_configfs_init +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b06549c transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9bdfd6ea iscsi_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e3f7b88 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e8bfba2 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2d23d32 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6f162da transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa70f43c4 transport_generic_handle_cdb_map +EXPORT_SYMBOL drivers/target/target_core_mod 0xb490c66b target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5b0d013 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb60f1fd8 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7243b42 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xbaa614f8 core_tpg_add_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc58f8ca transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xbeaefa70 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1bfa540 sas_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4db051a iscsi_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5ba12e6 transport_complete_task +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc0b4ad3 iscsi_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc31dfd9 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc585936 transport_generic_handle_data +EXPORT_SYMBOL drivers/target/target_core_mod 0xccbe054b target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf9cebe9 target_fabric_configfs_free +EXPORT_SYMBOL drivers/target/target_core_mod 0xd09c82ad core_tpg_del_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5c594ed core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd69b38bb target_splice_sess_cmd_list +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7478683 transport_subsystem_release +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8a533b5 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xda4bb360 sas_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0092ac5 target_fabric_configfs_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xe30eed6b iscsi_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xe665590c transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe712d21e transport_add_device_to_core_hba +EXPORT_SYMBOL drivers/target/target_core_mod 0xec8fd1f1 transport_complete_sync_cache +EXPORT_SYMBOL drivers/target/target_core_mod 0xedc6774f transport_generic_map_mem_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/telephony/ixj 0x8f1f10e4 ixj_pcmcia_probe +EXPORT_SYMBOL drivers/telephony/phonedev 0x85bc040e phone_register_device +EXPORT_SYMBOL drivers/telephony/phonedev 0xac9cc9ce phone_unregister_device +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x536e8fe6 sl811h_driver +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xa64a4cea usb_nop_xceiv_unregister +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xd0e43207 usb_nop_xceiv_register +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0f23dd37 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x227441e5 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x243e87be usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2f75d82e usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x408ec27d usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4dc3fb86 usb_wwan_set_termios +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4fd581ab usb_wwan_disconnect +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x59fc6156 usb_wwan_startup +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x757c2fab usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x79b7a7c0 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbedf76f2 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd0de3a23 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdb6fc3e4 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf303af65 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf916c277 usb_wwan_release +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3df0b586 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6b80832b usb_serial_suspend +EXPORT_SYMBOL drivers/video/backlight/generic_bl 0x366d19ef genericbl_limit_intensity +EXPORT_SYMBOL drivers/video/backlight/lcd 0x026b4b9b lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7a955e95 lcd_device_unregister +EXPORT_SYMBOL drivers/video/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/cyber2000fb 0x18822624 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/display/display 0x78ead886 display_device_unregister +EXPORT_SYMBOL drivers/video/display/display 0x816ab89e display_device_register +EXPORT_SYMBOL drivers/video/macmodes 0x08ed0b62 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/macmodes 0x8eddeb91 mac_find_mode +EXPORT_SYMBOL drivers/video/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x350a99b5 g450_mnp2f +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x95bfdffd matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x9f93ce71 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x20e68eb3 DAC1064_global_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x2b124e89 matrox_G100 +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xaa30ab96 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xe46a115f matrox_mystique +EXPORT_SYMBOL drivers/video/matrox/matroxfb_Ti3026 0x044fab42 matrox_millennium +EXPORT_SYMBOL drivers/video/matrox/matroxfb_accel 0xe5ffb42f matrox_cfbX_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x01d5c090 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x050764f6 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x77dd33c8 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0xf4f888ae matroxfb_register_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0x400ad7f9 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0xf5fbfb43 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x0491aaa9 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x14ada4a5 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xabd8e427 matroxfb_var2my +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xb8db8272 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xcf16bb51 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xea183b1a matroxfb_read_pins +EXPORT_SYMBOL drivers/video/mb862xx/mb862xxfb 0x3e0c977b mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/output 0xb6a0590f video_output_register +EXPORT_SYMBOL drivers/video/output 0xe57ae791 video_output_unregister +EXPORT_SYMBOL drivers/video/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/svgalib 0x1b95c56a svga_check_timings +EXPORT_SYMBOL drivers/video/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/svgalib 0x24ecb783 svga_tilecursor +EXPORT_SYMBOL drivers/video/svgalib 0x2dd51e01 svga_settile +EXPORT_SYMBOL drivers/video/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/svgalib 0x549b03a1 svga_set_timings +EXPORT_SYMBOL drivers/video/svgalib 0x59a90e90 svga_get_caps +EXPORT_SYMBOL drivers/video/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/svgalib 0x91de7b25 svga_tilecopy +EXPORT_SYMBOL drivers/video/svgalib 0x92d304b2 svga_get_tilemax +EXPORT_SYMBOL drivers/video/svgalib 0xb3aae661 svga_tilefill +EXPORT_SYMBOL drivers/video/svgalib 0xc5c90dca svga_tileblit +EXPORT_SYMBOL drivers/video/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/svgalib 0xec83c473 svga_match_format +EXPORT_SYMBOL drivers/video/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/syscopyarea 0x1f36ef64 sys_copyarea +EXPORT_SYMBOL drivers/video/sysfillrect 0x48320068 sys_fillrect +EXPORT_SYMBOL drivers/video/sysimgblt 0x175492af sys_imageblit +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x0c4b4d44 w1_bq27000_read +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x3a83ba96 w1_bq27000_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x48d4e191 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xaf6ae20f w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xd5765c7d w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe8147d4c w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x1c44384f w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb15ae9fb w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xdae6187f w1_ds2780_io_nolock +EXPORT_SYMBOL drivers/w1/wire 0x2db041ef w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x5e0591c9 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x76080274 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xf9ac037d w1_remove_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x672c9d44 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa8d6daac iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xd0efe320 iTCO_vendor_pre_stop +EXPORT_SYMBOL fs/configfs/configfs 0x080b70c3 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x16c7f88d configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x2aecead4 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x32546054 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x354100c3 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x672411d5 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x70410f6d config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x7f7de5fa configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x93c0c7bd config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xac8a910d config_item_init +EXPORT_SYMBOL fs/configfs/configfs 0xafa43599 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xaff44656 config_item_init_type_name +EXPORT_SYMBOL fs/exofs/libore 0x011500ad ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x012a06c5 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x3a7d8bb8 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x47eab3f6 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x5fabcae5 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x643c9eb0 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x9a27732a ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xaaa2a9b4 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xdd147f47 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xe3ec95ae ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xf050b162 ore_put_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x07d9b576 fscache_wait_bit_interruptible +EXPORT_SYMBOL fs/fscache/fscache 0x0dd34499 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x10a0b4ca __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x255daa67 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x2ea14e05 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x3d983600 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x3fc23318 fscache_wait_bit +EXPORT_SYMBOL fs/fscache/fscache 0x45add4d0 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x47074186 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x486f5210 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4d70b43a __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x56c14db5 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x599b03e5 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x66489b4f __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x675dd1c1 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x73abeb42 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x86f8894f fscache_object_states +EXPORT_SYMBOL fs/fscache/fscache 0x8e893056 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x9533a36e fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x9899299d __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x9a0789f8 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9d702e3c fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xabcc49cb fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xabd679a3 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xaec320d5 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc80c2371 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xd697d453 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xd81157d5 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xde4fc950 fscache_object_work_func +EXPORT_SYMBOL fs/fscache/fscache 0xe9002c32 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfb4d077d __fscache_register_netfs +EXPORT_SYMBOL fs/nfsd/nfsd 0x0c8d6829 nfs4_acl_nfsv4_to_posix +EXPORT_SYMBOL fs/nfsd/nfsd 0x2095976a nfs4_acl_new +EXPORT_SYMBOL fs/nfsd/nfsd 0x35e33c1e nfs4_acl_write_who +EXPORT_SYMBOL fs/nfsd/nfsd 0x5a157ae4 nfs4_acl_get_whotype +EXPORT_SYMBOL fs/nfsd/nfsd 0xcbb738be nfs4_acl_posix_to_nfsv4 +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x53faaad6 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x57f208af qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7605fe74 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe5854a48 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xee20aa56 qtree_read_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0xa7587646 crc7 +EXPORT_SYMBOL lib/crc7 0xd80c3603 crc7_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0b32de39 lc_del +EXPORT_SYMBOL lib/lru_cache 0x210f1ee2 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2646306c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x2b2226bb lc_get +EXPORT_SYMBOL lib/lru_cache 0x529f72c2 lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x5e941862 lc_reset +EXPORT_SYMBOL lib/lru_cache 0x6b3233cc lc_set +EXPORT_SYMBOL lib/lru_cache 0xb2cd4f4d lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xbbc51b84 lc_create +EXPORT_SYMBOL lib/lru_cache 0xd146d9a5 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xd3bb6860 lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xdf43d805 lc_changed +EXPORT_SYMBOL lib/lru_cache 0xe5aa47bc lc_put +EXPORT_SYMBOL lib/lru_cache 0xf933aa17 lc_find +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x315c65fd zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x48034724 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xaf64ad0d zlib_deflate +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf741c793 zlib_deflateEnd +EXPORT_SYMBOL net/802/p8023 0xbdf551f8 make_8023_client +EXPORT_SYMBOL net/802/p8023 0xf4ad3e65 destroy_8023_client +EXPORT_SYMBOL net/9p/9pnet 0x0b22b36c p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x0b54878d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x122cd350 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x17e72163 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x20383386 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x247c33bf p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x26f1a499 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x2818bc31 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x28a095a4 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2c024f44 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x3150101d p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x31efebe3 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x40d3e4df v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x4ee3c782 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x600c951b p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x676335cf p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x721c64db p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x795cca35 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x80ab0b5d p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x81e6ba08 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8227ae7a p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x851d9f4c p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x8b768c19 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x8cd2b0c7 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x977a0030 p9_nr_pages +EXPORT_SYMBOL net/9p/9pnet 0x9c964743 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xa11209f6 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xa5aa3586 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xb3b1c84e p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb4a67b30 p9_payload_gup +EXPORT_SYMBOL net/9p/9pnet 0xbc8e6698 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xc050937f p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc708de39 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xcc1971e1 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xcca844d6 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd841caf8 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd8eda45e p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xda3ff577 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xda84cce3 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xecba3557 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xef533e4b p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf1fef8b7 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf793e3b8 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd384c54 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x01edde38 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xa6ba4d36 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xf0b53cf2 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xf17537dc alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x06deee94 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x11686c82 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x42573f11 atm_charge +EXPORT_SYMBOL net/atm/atm 0x5ae5af5e atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x681a3bc3 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x6d28cb18 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x765c46a8 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x81f25bb1 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x93136f41 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb04fb740 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xc19e8f84 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xd7590764 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xd8649aa5 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfc23e6b6 atm_dev_signal_change +EXPORT_SYMBOL net/ax25/ax25 0x026c1368 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x080be947 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x114f2f58 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3fe4b855 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x49ab5314 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x6a4274c4 ax25_hard_header +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9ccedb5d ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xbfd8790c ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd39b72dd ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xeb3b1740 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xf464510c ax25_rebuild_header +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0362d14b hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09efa05e hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c1d53bf hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1102f750 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14a6ebff hci_le_conn_update +EXPORT_SYMBOL net/bluetooth/bluetooth 0x178a9810 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b3c6361 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21435fa1 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x253a10f8 hci_unregister_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2684aed2 hci_conn_put_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x28d5430d hci_find_link_key_type +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a04a1bb hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2bcf3b33 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2cab31c7 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e543c57 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fa82e5d hci_conn_check_link_mode +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b599289 bt_printk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x512a0572 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x54ae2c26 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x574fb58e bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x587a3e07 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ba1c7dd bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f9b002f hci_le_start_enc +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60ed7523 hci_send_acl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63f60a01 hci_recv_stream_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7261cdaf hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x92842513 hci_connect +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa016ab6f hci_recv_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1ff0ec1 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9b0b746 hci_conn_change_link_key +EXPORT_SYMBOL net/bluetooth/bluetooth 0xab7e2369 hci_send_sco +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7130b1f bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2066af0 batostr +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc485aae4 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xca0f6a71 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb014139 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce163a75 hci_register_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcff76321 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0d16e61 hci_find_ltk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed067a1d hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf19294db bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4900d7b hci_le_ltk_reply +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd86dce2 hci_conn_hold_device +EXPORT_SYMBOL net/bridge/bridge 0x1ef246c4 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7a860afb ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb8dd69f9 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf1e46c97 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x229502d9 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x2f849ffc caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x35b49017 caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x504da5e8 cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x5807d88d caif_free_client +EXPORT_SYMBOL net/caif/caif 0x63e9812a cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x7de1b6c0 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xf972b1a8 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x43819269 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x71accacf can_send +EXPORT_SYMBOL net/can/can 0x99497d5d can_proto_register +EXPORT_SYMBOL net/can/can 0xc79909d9 can_ioctl +EXPORT_SYMBOL net/can/can 0xd3cc5b40 can_rx_register +EXPORT_SYMBOL net/can/can 0xdb12e5f0 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x07d1bf72 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0e3d0216 ceph_calc_object_layout +EXPORT_SYMBOL net/ceph/libceph 0x0f8c65f3 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x0f9cd412 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x105f682f ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x10751dc4 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x10940306 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x197effcb ceph_osdc_release_request +EXPORT_SYMBOL net/ceph/libceph 0x1d77d157 ceph_messenger_destroy +EXPORT_SYMBOL net/ceph/libceph 0x1ef9d5fc ceph_monc_create_snapid +EXPORT_SYMBOL net/ceph/libceph 0x210e2d96 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x2504658c ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x2ec63a58 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x3158173e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x3199565b ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x3274508e ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x33f2d647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x350f6449 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3b93ade0 ceph_messenger_create +EXPORT_SYMBOL net/ceph/libceph 0x3cd64f95 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x3dcb0b8e ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3e1f462a ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x41b024b0 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x43c8d341 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x43e0a968 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x4c64923d ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x4d38f6ca ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x5040a3cf ceph_osdc_wait_event +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5f5c5dd9 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x5fe4b2fa ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x608d5ce4 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x6332f31b ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x64c8eeca ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x652c8f48 ceph_osdc_unregister_linger_request +EXPORT_SYMBOL net/ceph/libceph 0x6d2d06a1 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x6ed41be2 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x74daee66 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x77692acb ceph_msg_last_put +EXPORT_SYMBOL net/ceph/libceph 0x77e5e457 ceph_calc_raw_layout +EXPORT_SYMBOL net/ceph/libceph 0x868dcceb ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x86c8b766 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x87a06ede ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9187fb6e ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x93f2834a ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa40bd703 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb0f10299 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xb1a6c9ff ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xb40b6326 ceph_osdc_init +EXPORT_SYMBOL net/ceph/libceph 0xb5411b64 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5537cda ceph_osdc_stop +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xba95d3cb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcd7268d2 ceph_copy_page_vector_to_user +EXPORT_SYMBOL net/ceph/libceph 0xd01b645a ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd36a5032 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xd4d04f85 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd55d054e ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd83968da ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe09c9108 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xe1373a4e ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xeee82d6a ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xf4d85ba0 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xf693c81d __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf99f0d75 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xff210f20 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ieee802154/ieee802154 0x43dd2918 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4e5e3b85 ieee802154_nl_disassoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x625a7825 ieee802154_nl_scan_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8b30f0d9 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x99098ac9 ieee802154_nl_assoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xaee41b2b ieee802154_nl_beacon_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb7b2a660 ieee802154_nl_assoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc08553c5 ieee802154_nl_start_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdb224c67 ieee802154_nl_disassoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdd453396 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe5fcaf7b wpan_phy_alloc +EXPORT_SYMBOL net/ieee802154/ieee802154 0xef154403 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xff7d2a5f wpan_phy_register +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6bc01853 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x93ab744b arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xedf21289 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0b5c4b69 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5becdaa6 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd3ce7ab9 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x28e4d8c5 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x5ad660b6 nf_nat_used_tuple +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x8f760caa nf_nat_follow_master +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xac60091d nf_nat_protocol_unregister +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xb06ac3fe nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xc1949f36 nf_nat_protocol_register +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xf8c6ab6a nf_nat_setup_info +EXPORT_SYMBOL net/ipv4/tunnel4 0x47d198b3 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x8b2242c8 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x45f04eab ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5c37e424 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8c6739ad ipv6_find_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8bddf33 ip6t_ext_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xeb79e8fb ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x073941c1 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xc37f9628 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3f9b0ff1 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb2ccd782 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x028206fb ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x07f2d88a ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2d088c2c ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x965e0812 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb7b5b546 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe0959884 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe2052e64 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfe14ea1d ircomm_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x00898238 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x01dbeb0e irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x079954af irlap_close +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0bab6037 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x1df8552d irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x2036ad06 irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x23a2eee7 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x2770d6fe irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x3366cf1f irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x359de411 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x36c57f0d irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x37605e3f async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x38a20e5b irda_debug +EXPORT_SYMBOL net/irda/irda 0x3b0a2ab6 irias_find_object +EXPORT_SYMBOL net/irda/irda 0x3b9bdefe irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x428321fa hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x48d17824 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x4dbd7efb irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x5055cc31 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x62acf28c irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x63121210 iriap_close +EXPORT_SYMBOL net/irda/irda 0x648c7478 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x74c75573 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7acb9ae4 iriap_open +EXPORT_SYMBOL net/irda/irda 0x7d54adaf irias_new_object +EXPORT_SYMBOL net/irda/irda 0x7ff509a2 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x855c77a9 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x858d90c1 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x86c1f2b6 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x893001b0 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x8cd99be0 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x95a7a9a7 irlap_open +EXPORT_SYMBOL net/irda/irda 0x963029a0 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x993ad14b irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9e326eb3 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa370c681 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc0bee29c hashbin_new +EXPORT_SYMBOL net/irda/irda 0xc4107220 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xc9e70146 proc_irda +EXPORT_SYMBOL net/irda/irda 0xcceccb85 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xced9e654 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xd7683bd7 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe767e22c irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xeb2bfeb8 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf81eef77 irda_notify_init +EXPORT_SYMBOL net/l2tp/l2tp_core 0xab2d90ea l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x536a0090 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x620de11e lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x789a5559 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x96c07c1a lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x9b5fd58a lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x9f9fb487 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xb1dab96d lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xbd965cc7 lapb_connect_request +EXPORT_SYMBOL net/mac80211/mac80211 0x089c3796 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x15359cb0 ieee80211_napi_schedule +EXPORT_SYMBOL net/mac80211/mac80211 0x15cdcfac ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x16382647 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x17217a33 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x17261942 ieee80211_alloc_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1c9992ab ieee80211_get_operstate +EXPORT_SYMBOL net/mac80211/mac80211 0x1f73aadd ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x20c42e17 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x26e23468 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x27fd8765 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x2839aec2 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x2eab6685 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2ec66c42 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x30ba2455 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x35a58353 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3c4bdf89 ieee80211_enable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x43d80a8c ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x46a274fe ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x4cf689a3 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4fb39646 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5613d701 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x5c28cca5 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x5d64ede4 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5d93a3f9 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x63814d1c __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x63caa554 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x63f90848 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6503ef71 ieee80211_sta_eosp_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x67f3ca6c ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x6a131db0 ieee80211_disable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x6bc7d002 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x6c50c1e5 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x6e7b9bb6 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x75379bef ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x7591f031 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x778a2c88 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x786c0cac ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x82297f2f ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x8273190a ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x867d6533 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x8aa991de ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x93151804 ieee80211_rx +EXPORT_SYMBOL net/mac80211/mac80211 0x9b4a59b3 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xa4241970 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xa51e2940 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa7a9764d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xaa157485 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xaa2ab377 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xbb618557 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xc06602ac ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xc7e9782e ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xc9aacbd0 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xca3396e9 ieee80211_napi_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xd5271e4f ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xddb47d52 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xdddc2645 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xdfaaa44e ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe09462b9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe38acd3e ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xe7a0eb02 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xe94578e0 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xeba14d72 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xebc20f57 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xeea08278 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf1cbf565 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf5593a0e ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xfb3e00e4 ieee80211_send_bar +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0aa2b88d ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x18c459dd ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1a123270 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ad871eb ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x413540a3 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x586f0e29 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x698988f2 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa1dbc2d8 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbc862a0f unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcd68876d ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd23b3458 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xda1b72b6 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe17a5376 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe28f1909 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfff8dc53 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x0b7bec43 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2622c25e nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x53c1de4b __nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_proto_gre 0x5b4edf74 nf_ct_gre_keymap_flush +EXPORT_SYMBOL net/netfilter/x_tables 0x08c473b7 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x119ae819 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1e021939 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x668d728a xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x8ea7215b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xb28f5ef1 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xbc98d0df xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd5b01950 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe44fb937 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xedf0876e xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xf4e561f1 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xfd4430c3 xt_find_match +EXPORT_SYMBOL net/nfc/nci/nci 0x6f41b504 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8659558d nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x94fd9763 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xd9be5ea4 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe56d60db nci_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x1a308ccc nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x2323d173 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x2cf1913e nfc_printk +EXPORT_SYMBOL net/nfc/nfc 0x43675b14 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x5db263a1 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xa23b5013 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xb6ab932e nfc_alloc_skb +EXPORT_SYMBOL net/nfc/nfc 0xbfcc15ba nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xcf9a1899 nfc_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x409b8087 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x5a843bfa phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x65b2ea01 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xa797c0e2 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xaebf0e44 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xd82ac839 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xe34fc348 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xfdfc9be3 pn_sock_unhash +EXPORT_SYMBOL net/rds/rds 0x5031b8c5 rds_str_array +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1117c001 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x14dc0340 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2d3465b3 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3392cd45 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x353d84cb rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4b9529f9 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x54760d0c rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5d3b40fb rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9a2110e5 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb10b73e9 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc6e92225 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcb840372 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfa61f99a rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xff442f8a key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xff81679e rxrpc_kernel_reject_call +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb3744590 svc_pool_stats_open +EXPORT_SYMBOL net/wanrouter/wanrouter 0x0ebe03d1 unregister_wan_device +EXPORT_SYMBOL net/wanrouter/wanrouter 0xd5b6d27c register_wan_device +EXPORT_SYMBOL net/wimax/wimax 0x1bf1e70c wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x58dbb62f wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x026438e0 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x077f8b30 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x080b9d4c __cfg80211_auth_canceled +EXPORT_SYMBOL net/wireless/cfg80211 0x08416f75 cfg80211_send_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x0993671e __cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x10411a86 ieee802_11_parse_elems_crc +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19ecc7ec ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x1a8048dd ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x1be4eb5a wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x204d1aa7 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x2c6b6924 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x2edf7d69 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x32968c14 cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x33dbebba ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x38628cd5 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x431cb40f cfg80211_get_mesh +EXPORT_SYMBOL net/wireless/cfg80211 0x4378d47d cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x4709b3bd cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5105f1fc wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x54620254 cfg80211_testmode_event +EXPORT_SYMBOL net/wireless/cfg80211 0x56adad28 wiphy_new +EXPORT_SYMBOL net/wireless/cfg80211 0x56b320f7 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x5a7b7208 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5d18c477 cfg80211_send_rx_auth +EXPORT_SYMBOL net/wireless/cfg80211 0x5e17703d cfg80211_del_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x7513e94e ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x75e2538b cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x76c8b2a9 cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x79603bf9 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x7c1ffb5b cfg80211_send_unprot_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x7d7708b5 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x807d155e cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x84a6918c cfg80211_testmode_reply +EXPORT_SYMBOL net/wireless/cfg80211 0x8bcdf9ff cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x8c65f263 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x8ddd3aa1 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x9030b4fa cfg80211_send_rx_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x905ec583 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x93655657 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9ce6ac18 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xabb7c43d freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xb02d3b8d regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xbbff5ad6 __cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0xbe5078f1 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xc16da7b3 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xc2372456 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xc3d48c55 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xc4817c93 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xcf484b75 cfg80211_send_unprot_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0xd0688bf3 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xd6d090ce cfg80211_inform_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd7779230 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdf649a10 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xdfb9f67c cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xdfe0ca55 cfg80211_testmode_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe67dfbea cfg80211_testmode_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xed1089db cfg80211_inform_bss_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xfc15e302 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xfcab81c1 cfg80211_send_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xfe241eb1 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x0e903c01 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2d0f99e5 print_ssid +EXPORT_SYMBOL net/wireless/lib80211 0x63995d71 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x8a1a23f1 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x9b1c1b6c lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xdf16e187 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xf68ecd2b lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x16f2be2f ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x1ec1ac3f snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1cadef6d snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x4cc7ee26 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xaeabbaf2 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe58e947a snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x112744c2 snd_seq_device_register_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x35d468dd snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3a57f235 snd_seq_autoload_unlock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xb90668b2 snd_seq_autoload_lock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xc622fb29 snd_seq_device_unregister_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2b51b084 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x350963b4 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7f62d029 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x83914b9a snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x92ee6bb0 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x9e7d3f0f snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xbc141dfc snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf2bf1549 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x78664e7e snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x025c2b5c snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x0c8c00a7 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x0f3c4f5a snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x104178cf snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x19a78c26 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x19f93dea snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x1ab41828 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x20dfabbc snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x246873ed snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x27b6d13c snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2b20a978 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x30fc5820 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3fc5e04d snd_card_register +EXPORT_SYMBOL sound/core/snd 0x44a26709 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x499346eb snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b015768 snd_iprintf +EXPORT_SYMBOL sound/core/snd 0x5177ee51 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x5760584f snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x5b61a1dc _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x5fb724cc snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x697bf23d snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7351d13d snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x7cd93b1d snd_device_free +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x83c5362f snd_card_create +EXPORT_SYMBOL sound/core/snd 0x867a3092 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x8a7aaff9 snd_add_device_sysfs_file +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x92508cae snd_cards +EXPORT_SYMBOL sound/core/snd 0x942d53ad snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x95d530dd snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x97ddd5d3 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x9b81af30 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa301fe91 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xa354bd7f snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xaeb9579f snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xb2524336 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xba9c1687 snd_card_proc_new +EXPORT_SYMBOL sound/core/snd 0xbe31523f snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xc6d72d66 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd3d310b7 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xd7acddb2 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xd998b6d5 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xde2ce4d9 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xe1588855 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xeeeafe39 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xf12ec967 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xf74a0596 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xf7e86ea6 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xfac1b622 snd_register_device_for_dev +EXPORT_SYMBOL sound/core/snd-hwdep 0x9ca5f846 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-page-alloc 0x1f89e1ba snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x34496d1f snd_dma_reserve_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x63768fb6 snd_dma_get_reserved_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0x6ec10a0c snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x9346b2c8 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-page-alloc 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x03a1d4ec snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x07f64e2c snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x13a99f76 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x20baf715 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x25205600 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x29d17a33 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x2dd5f4d3 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x2e79b644 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b5e33be snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3c89c7cc snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x414b800a snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x46ab45a3 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x46e6832d snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x49980418 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x4a075f61 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x57e636d7 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x582b70fa snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x5df62706 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x686e3b09 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7f3e744f snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x86ac30a5 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x881a95d7 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x8a49f62d snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x911ca9f1 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x97211580 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x97f2f1c2 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa6ad9eb9 snd_pcm_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xa7a2d296 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xa8569e41 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa9adc229 snd_pcm_link_rwlock +EXPORT_SYMBOL sound/core/snd-pcm 0xad985599 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb197940b snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xb9bd978a snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xba103fb7 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xbb83658d snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xbed973a4 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xc1cbad66 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b9b8b8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd75bfa90 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xd997b580 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xdb244c8c snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe7782a1b snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xecd1102b snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xf3797152 snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xf432d469 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xf6676912 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-rawmidi 0x06389f2b snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x07e9e14c snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1f9270c7 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x38b65dc5 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4c41e7af snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7dd28dd2 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x879517d2 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaeff7275 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb2079dad snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbfaf29c7 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc3222124 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc69f3229 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xce970315 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd63e4b8d snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe0441856 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf2c8c6d3 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf5f8ae41 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-timer 0x024990c2 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x074709fc snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x0c8124dc snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x3d5d19b4 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x5a5153b1 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x8a46277b snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x8b63fee7 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xa42cc667 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xc974ff61 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xd15d2078 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xd6145f57 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xe7be3854 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xf335a144 snd_timer_notify +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xedefdac1 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0b0c239f snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1c04899d snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5e799130 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x60cccbe4 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7481e80b snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9e398db7 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa3255d1a snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdd4bb62a snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe01fc1d0 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x0185d020 snd_opl4_read_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x333ceceb snd_opl4_read +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x4c11d658 snd_opl4_write_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x77fdad77 snd_opl4_create +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xdc8949f7 snd_opl4_write +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x05ccfd4d snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x19153952 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x198faa2c snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x28f55ac2 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2d9e36db snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x45222034 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x627c09db snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf12b759d snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xff2cbb94 snd_vx_resume +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08981e15 amdtp_out_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1625d939 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19968d3e amdtp_out_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a6e8adc snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2d67d4f1 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2fcfe589 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x57dc7810 amdtp_out_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f8eb369 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6018a3e7 amdtp_out_stream_set_pcm_format +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6689b4d2 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81e2e8a3 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x93fd593f fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x95085808 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9f046824 amdtp_out_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb508a590 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb64680c3 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba581b25 amdtp_out_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf1efe83 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc441edc2 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd20ad98a fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdc73958f amdtp_out_stream_set_rate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd74bc7a rcode_string +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xee6c67f3 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf28be54d amdtp_out_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf9832f88 amdtp_out_stream_update +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x02e60929 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x048ad3e0 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x53bae5b0 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7bf121ac snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcce182d3 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf082c1ff snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5f480e68 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8395d705 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x956a1f71 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd2893ae9 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xdb508840 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfb2983af snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4065ebb0 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x528bda6e snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8ba1ae9d snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc0f14251 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x726e61b2 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe2859880 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0x6fb327e9 snd_tea575x_exit +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0xd4e1301c snd_tea575x_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x193391e9 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc74719cc snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe05f1d42 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe148f2e8 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xea5a4b05 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x50e817c2 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x525469f6 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5dfa983c snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc2ea4f37 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc8ce7a30 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd3546acc snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x042028df snd_tea6330t_update_mixer +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x61fa58fe snd_tea6330t_detect +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x486c4e65 snd_es1688_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x55bcd9d1 snd_es1688_create +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x7248ebf7 snd_es1688_reset +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xd38d397e snd_es1688_pcm +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xdd5b82ff snd_es1688_mixer_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0f2a4971 snd_gf1_mem_xfree +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0f4293e1 snd_gus_use_dec +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1289f853 snd_gf1_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x136e8a50 snd_gf1_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1ad9068a snd_gf1_mem_lock +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1f0b6806 snd_gf1_peek +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x20a2697e snd_gf1_i_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x2c1a446a snd_gf1_pcm_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x31871843 snd_gf1_write16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x33bd8732 snd_gf1_free_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x365bb740 snd_gf1_write_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x38986331 snd_gus_dram_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3a3fd4ad snd_gus_dram_read +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3d4e4d7f snd_gf1_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x49ffab9b snd_gf1_i_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5b540593 snd_gf1_ctrl_stop +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6a43e180 snd_gf1_delay +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x70a4936f snd_gf1_poke +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x729a320c snd_gus_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x7f407955 snd_gf1_translate_freq +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x82c22210 snd_gf1_dram_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8a0107fe snd_gf1_new_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9de24a02 snd_gf1_i_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa208a5a2 snd_gf1_alloc_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb116e3a7 snd_gf1_rawmidi_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc29d8c13 snd_gf1_mem_alloc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe18af7ad snd_gus_use_inc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe261788a snd_gf1_stop_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xefd0dfcd snd_gus_initialize +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf3518cb2 snd_gf1_mem_free +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x015da2ea snd_msnd_dsp_halt +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x2786f6cc snd_msnd_DAPQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x4a910017 snd_msndmix_setup +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x611c31ed snd_msnd_send_word +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x63bd39e4 snd_msnd_pcm +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x81606027 snd_msnd_upload_host +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x945e92da snd_msnd_send_dsp_cmd +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x9941bdfc snd_msndmix_new +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xd85f1b01 snd_msnd_enable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xe7433ad3 snd_msnd_DARQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf250bbf6 snd_msndmix_force_recsrc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf6eff03a snd_msnd_disable_irq +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x898ef1cc snd_aci_get_aci +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xbfbdc7ce snd_aci_cmd +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x117b130b snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x146c388f snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x267833de snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2b6a555e snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x30d69298 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x564b771e snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7a548c24 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa5607f2b snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa7514cc8 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfcae6cb2 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0xc95af83c snd_sb_csp_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x53c08aa9 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xa691cca2 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xc6795e9e snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x3ff434fd snd_sb8dsp_midi_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x50d71d9b snd_sb8dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x521d0f16 snd_sb8dsp_midi +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x83f3834f snd_sb8dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x0464b8e0 snd_emu8000_poke +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x05fc07c4 snd_emu8000_peek_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x32cd9e9c snd_emu8000_load_chorus_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x3f148815 snd_emu8000_peek +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x612eb1cd snd_emu8000_update_reverb_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x7be69b29 snd_emu8000_update_equalizer +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x9a2565e2 snd_emu8000_poke_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xac675531 snd_emu8000_load_reverb_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xc7019a1e snd_emu8000_update_chorus_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xd192919e snd_emu8000_dma_chan +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xe932c4fc snd_emu8000_init_fm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x016e8aa6 snd_wss_chip_id +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x06bd53b1 snd_wss_get_pcm_ops +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1a455692 snd_cs4236_ext_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1b0f4229 snd_wss_mce_up +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x22cf1475 snd_wss_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x3787e18b snd_wss_info_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x3b3c8dd3 snd_wss_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x503d9704 snd_wss_get_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x67637368 snd_wss_put_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x70ee5bf5 snd_wss_overrange +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x81598fbf snd_cs4236_ext_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x85650360 snd_wss_mce_down +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xa12e7076 snd_wss_pcm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xbb899f0b snd_wss_create +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xbcbd9337 snd_wss_mixer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xc42535bd snd_wss_put_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcdc140e9 snd_wss_info_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf2136ae6 snd_wss_timer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf37bd1d1 snd_wss_get_single +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0379731c snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x058e5587 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x12a450af snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x255f3e04 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5e1df651 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7bbaee28 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x823f0f83 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x85cedfab snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xae32169e snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb55bd9be snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc0c54b3f snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd2b90512 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda3e7b0b snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe7c04ecc snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeada0e91 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf0b8c646 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfe5ce39b snd_ac97_bus +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x6fc770b8 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x065eb8d2 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4276ddc6 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x44c1837c snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x605df198 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x69bb924a snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8bd3a0bd snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x96f3ed09 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xafabed8f snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc35303e7 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/hda/snd-hda-codec 0x37752383 snd_hda_parse_generic_codec +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9968c76b snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xafc173a7 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc0f0de02 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0489fb52 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0eacc3cd oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2cc3e75e oxygen_pci_resume +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d758f02 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5496c50a oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5f5d2807 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x63a1708a oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6656c400 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x688a1e83 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x69ca6534 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6dbee492 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6e0cad94 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6f983745 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7343bf2f oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x87b8b526 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9201db64 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9d65fe10 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad1f0608 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe764cd90 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xed74c652 oxygen_pci_suspend +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf9a99b20 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x26968fb4 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4918c2e6 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbe2c1829 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc2106386 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd242e113 snd_trident_start_voice +EXPORT_SYMBOL sound/soundcore 0x08772733 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x22e770c6 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x66fa9774 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x93db2764 sound_class +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xba71d8a0 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd7a5d9de register_sound_special +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x41bc7225 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5154f1e2 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x60ea5e78 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x648a5fe1 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6e3aa367 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd1d7dcc3 snd_emux_register +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2469cd30 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4d21ae38 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4e9ac83a snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5a70bdf3 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x74a85847 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xae7f363b __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xbf658877 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xfe8d7a85 snd_util_memhdr_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x20a0049f snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x25682ccb dm_mem_cache_free +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x35c95b1b dm_mem_cache_client_create +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x86e5acf9 dm_mem_cache_grow +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x8abe6ab9 dm_mem_cache_alloc +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x920a7a41 dm_message_parse +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xa43471b6 dm_mem_cache_shrink +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xd55b290c dm_mem_cache_client_destroy +EXPORT_SYMBOL vmlinux 0x00000000 softirq_work_list +EXPORT_SYMBOL vmlinux 0x00129f6e pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x0026be34 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x002de09c vfsmount_lock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x00424894 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x0054071c dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x0059a6c2 dquot_destroy +EXPORT_SYMBOL vmlinux 0x00676fc6 vfs_writev +EXPORT_SYMBOL vmlinux 0x00741467 init_net +EXPORT_SYMBOL vmlinux 0x007f7734 mca_device_status +EXPORT_SYMBOL vmlinux 0x00801678 flush_scheduled_work +EXPORT_SYMBOL vmlinux 0x0084e86d unregister_shrinker +EXPORT_SYMBOL vmlinux 0x00898047 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL vmlinux 0x008a86eb cpu_sysdev_class +EXPORT_SYMBOL vmlinux 0x00e8097b csum_partial_copy_fromiovecend +EXPORT_SYMBOL vmlinux 0x00f42699 files_lglock_global_unlock +EXPORT_SYMBOL vmlinux 0x00f9a999 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x015a58af max8925_reg_write +EXPORT_SYMBOL vmlinux 0x0169f70f eth_header_parse +EXPORT_SYMBOL vmlinux 0x017f04ca inet_csk_accept +EXPORT_SYMBOL vmlinux 0x01902adf netpoll_trap +EXPORT_SYMBOL vmlinux 0x019126fc __nla_put +EXPORT_SYMBOL vmlinux 0x01b7572b __locks_copy_lock +EXPORT_SYMBOL vmlinux 0x01d19038 acpi_enable_subsystem +EXPORT_SYMBOL vmlinux 0x0209976b md_unregister_thread +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x0250ab08 __vlan_find_dev_deep +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x02775662 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x029444f0 native_read_tsc +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02c4abd8 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x02d3be0c alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x02d81845 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x03165ec4 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034f9e73 param_ops_byte +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035acb43 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x0363d293 bio_alloc +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03a90757 vfs_create +EXPORT_SYMBOL vmlinux 0x03af5f65 scsi_release_buffers +EXPORT_SYMBOL vmlinux 0x03b580eb wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x03b9a394 skb_recycle_check +EXPORT_SYMBOL vmlinux 0x03c06156 bitmap_fold +EXPORT_SYMBOL vmlinux 0x03e23d69 bdget_disk +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x041228db migrate_page +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0424ae2c skb_push +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04a3e96b i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x04b19a3d unregister_qdisc +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f1f7e9 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x04f91a87 tty_set_operations +EXPORT_SYMBOL vmlinux 0x051155fe max8998_read_reg +EXPORT_SYMBOL vmlinux 0x0521b2ee set_current_groups +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x054434d6 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x057aa0d3 tcp_v4_get_peer +EXPORT_SYMBOL vmlinux 0x057ce975 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x05895e82 netdev_notice +EXPORT_SYMBOL vmlinux 0x05a60c0a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x05c9f774 block_truncate_page +EXPORT_SYMBOL vmlinux 0x05f16cb5 have_submounts +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06468ccc pci_enable_device +EXPORT_SYMBOL vmlinux 0x065a9c98 generic_removexattr +EXPORT_SYMBOL vmlinux 0x066401ee __bforget +EXPORT_SYMBOL vmlinux 0x0668b93d blk_requeue_request +EXPORT_SYMBOL vmlinux 0x06720a1f in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06865f0f pci_disable_ltr +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x06b6b6ae dump_seek +EXPORT_SYMBOL vmlinux 0x06b83fa5 mount_subtree +EXPORT_SYMBOL vmlinux 0x06c0dbc6 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x06d2f086 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x06d3acd2 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x06d96136 ip_fragment +EXPORT_SYMBOL vmlinux 0x06de73ce jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x06e72a10 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x06eab781 igrab +EXPORT_SYMBOL vmlinux 0x06f4bf00 seq_escape +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0708b54f alloc_fcdev +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072b9e64 set_page_dirty +EXPORT_SYMBOL vmlinux 0x073186a0 d_delete +EXPORT_SYMBOL vmlinux 0x073264c4 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x073dfa12 generate_resume_trace +EXPORT_SYMBOL vmlinux 0x073e3d58 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x0747f1f5 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x074fc226 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x0757c0e1 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x075cd04c tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x076ebea8 pv_lock_ops +EXPORT_SYMBOL vmlinux 0x077d6636 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x07971662 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x0799aca4 local_bh_enable +EXPORT_SYMBOL vmlinux 0x079fc1d8 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c7d582 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial +EXPORT_SYMBOL vmlinux 0x07d9b783 scsi_nl_send_vendor_msg +EXPORT_SYMBOL vmlinux 0x07e84c53 elv_rb_del +EXPORT_SYMBOL vmlinux 0x07f80aa1 skb_dst_set_noref +EXPORT_SYMBOL vmlinux 0x080bc5df i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x08100f4a __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x082337c8 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0842433e pci_select_bars +EXPORT_SYMBOL vmlinux 0x086a7b3a nf_getsockopt +EXPORT_SYMBOL vmlinux 0x089129d8 tty_throttle +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08a7d970 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x08bed6d9 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x08bf826c _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x08c5475f inode_init_always +EXPORT_SYMBOL vmlinux 0x08d0ba6b netlink_ack +EXPORT_SYMBOL vmlinux 0x08d66df0 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x0933aae1 efi_enabled +EXPORT_SYMBOL vmlinux 0x0946f160 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x0948cde9 num_physpages +EXPORT_SYMBOL vmlinux 0x095585fd sk_release_kernel +EXPORT_SYMBOL vmlinux 0x09596e75 unregister_con_driver +EXPORT_SYMBOL vmlinux 0x09775cdc kref_get +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099f1d7e bio_integrity_split +EXPORT_SYMBOL vmlinux 0x09ae41c4 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x09b49fcb __ht_create_irq +EXPORT_SYMBOL vmlinux 0x09ba81be max8925_reg_read +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cd0bc4 vga_client_register +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x0a178102 __ps2_command +EXPORT_SYMBOL vmlinux 0x0a2487e0 unblock_all_signals +EXPORT_SYMBOL vmlinux 0x0a2a2f7c is_container_init +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a37f021 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x0a38e551 set_bh_page +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a6c8566 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x0a730d1d phy_scan_fixups +EXPORT_SYMBOL vmlinux 0x0a9205c3 set_pages_nx +EXPORT_SYMBOL vmlinux 0x0a95d4ff mmc_resume_host +EXPORT_SYMBOL vmlinux 0x0a9f3e0b alloc_disk_node +EXPORT_SYMBOL vmlinux 0x0acb1a3c __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad0263d log_start_commit +EXPORT_SYMBOL vmlinux 0x0adfb0d3 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x0afacb36 skb_seq_read +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b179f87 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b39d10d fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b602bd8 udp_poll +EXPORT_SYMBOL vmlinux 0x0b61a1c8 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x0b673f8a xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0b7086d9 param_get_short +EXPORT_SYMBOL vmlinux 0x0b72d5d1 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b79f3c2 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x0b9ecc09 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcaf2f4 block_commit_write +EXPORT_SYMBOL vmlinux 0x0be5870d netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x0c0668fd kernel_bind +EXPORT_SYMBOL vmlinux 0x0c119645 pci_disable_obff +EXPORT_SYMBOL vmlinux 0x0c1ef469 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x0c528ebe textsearch_destroy +EXPORT_SYMBOL vmlinux 0x0c57bf0a security_path_chown +EXPORT_SYMBOL vmlinux 0x0c65e73c scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x0c6c5d73 journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x0c716727 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x0c73c732 input_set_keycode +EXPORT_SYMBOL vmlinux 0x0c855e1f lock_may_read +EXPORT_SYMBOL vmlinux 0x0c8a42e5 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x0c8c9e99 scsi_show_extd_sense +EXPORT_SYMBOL vmlinux 0x0ca6870f netdev_set_master +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb20d35 dma_find_channel +EXPORT_SYMBOL vmlinux 0x0cbcf188 dm_io +EXPORT_SYMBOL vmlinux 0x0cda93a4 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x0cfa9896 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x0d073dd3 register_8022_client +EXPORT_SYMBOL vmlinux 0x0d16a992 llc_sap_find +EXPORT_SYMBOL vmlinux 0x0d24db2d do_sync_write +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d798c21 sock_wfree +EXPORT_SYMBOL vmlinux 0x0d7f118f skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x0d920c42 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dfa7706 vm_insert_page +EXPORT_SYMBOL vmlinux 0x0e43194e tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x0e52592a panic +EXPORT_SYMBOL vmlinux 0x0e6875b7 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x0ebeb69e notify_change +EXPORT_SYMBOL vmlinux 0x0eef556b tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x0f022ca1 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x0f15bf95 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x0f22e479 skb_make_writable +EXPORT_SYMBOL vmlinux 0x0f5137a8 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x0f59f197 param_array_ops +EXPORT_SYMBOL vmlinux 0x0f5dadbd key_reject_and_link +EXPORT_SYMBOL vmlinux 0x0f62c5f8 iov_iter_copy_from_user +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb0e29f init_timer_key +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0febc316 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff6e32a blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x10004cda tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x102c56de irq_regs +EXPORT_SYMBOL vmlinux 0x103e6210 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x104634f8 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x10671fe5 input_register_device +EXPORT_SYMBOL vmlinux 0x1085b463 load_nls +EXPORT_SYMBOL vmlinux 0x109c67b6 posix_lock_file +EXPORT_SYMBOL vmlinux 0x109d9ca4 md_check_recovery +EXPORT_SYMBOL vmlinux 0x10ab7e68 down_killable +EXPORT_SYMBOL vmlinux 0x10b075c2 pcibios_set_irq_routing +EXPORT_SYMBOL vmlinux 0x10d8d106 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x10d9d048 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x10e84ba4 input_free_device +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f6bf28 dm_register_target +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11267875 scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x112a4063 ip_mc_rejoin_groups +EXPORT_SYMBOL vmlinux 0x113bf6e2 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x114fd19c fb_set_cmap +EXPORT_SYMBOL vmlinux 0x115021dc ip6_route_output +EXPORT_SYMBOL vmlinux 0x115fb6cd tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x11633870 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116ccd8c vfs_fstatat +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118f01ea putname +EXPORT_SYMBOL vmlinux 0x119b9f73 alloc_disk +EXPORT_SYMBOL vmlinux 0x119e6122 con_is_bound +EXPORT_SYMBOL vmlinux 0x11dba971 unregister_nls +EXPORT_SYMBOL vmlinux 0x11e2ec12 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x11f1f552 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120ae944 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x1211a352 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x123d8e16 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x1277f375 journal_dirty_data +EXPORT_SYMBOL vmlinux 0x127f1cf8 vfs_lstat +EXPORT_SYMBOL vmlinux 0x128a5cf9 complete_all +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12c52f5a xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12f99022 inet_frags_init_net +EXPORT_SYMBOL vmlinux 0x131ff057 current_task +EXPORT_SYMBOL vmlinux 0x1323dfe2 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x134f4242 isapnp_protocol +EXPORT_SYMBOL vmlinux 0x136ea195 register_exec_domain +EXPORT_SYMBOL vmlinux 0x137bc712 d_rehash +EXPORT_SYMBOL vmlinux 0x137c62b7 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x138694dc d_path +EXPORT_SYMBOL vmlinux 0x138f3ef8 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x13b65a01 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x13baf5a2 skb_gro_reset_offset +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d7454d d_validate +EXPORT_SYMBOL vmlinux 0x13ec80f3 param_set_short +EXPORT_SYMBOL vmlinux 0x13eef89d dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x14091a96 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x141b5bb7 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1430e6e0 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x1433d1f5 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x143b6940 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x145a9a89 call_usermodehelper_setfns +EXPORT_SYMBOL vmlinux 0x14754717 bdi_unregister +EXPORT_SYMBOL vmlinux 0x148080dc find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x14d6ccb6 unregister_console +EXPORT_SYMBOL vmlinux 0x14dd839e dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x14e7ca7c alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x1520c73d sk_reset_txq +EXPORT_SYMBOL vmlinux 0x15350762 tr_type_trans +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154dd0bf nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x1551dc51 bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x1572502a mutex_trylock +EXPORT_SYMBOL vmlinux 0x15b0dd4f max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x15ba638c set_groups +EXPORT_SYMBOL vmlinux 0x15ca47da acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x15ed7ad3 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x15f56dfd dm_get_device +EXPORT_SYMBOL vmlinux 0x15fec9d4 registered_fb +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x161a5803 load_nls_default +EXPORT_SYMBOL vmlinux 0x16232820 rt6_lookup +EXPORT_SYMBOL vmlinux 0x1627ed72 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x164e2f40 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x168f1082 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x1697b269 __register_chrdev +EXPORT_SYMBOL vmlinux 0x16b4c340 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x16b84fa9 end_writeback +EXPORT_SYMBOL vmlinux 0x16c42197 init_timer_deferrable_key +EXPORT_SYMBOL vmlinux 0x16cb5cdf dma_supported +EXPORT_SYMBOL vmlinux 0x16d7a769 cont_write_begin +EXPORT_SYMBOL vmlinux 0x16e260a3 splice_from_pipe_next +EXPORT_SYMBOL vmlinux 0x16ecaa44 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x16f8a0cd proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x1708ace9 journal_ack_err +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x171b3d9a ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x171f50cf simple_getattr +EXPORT_SYMBOL vmlinux 0x1725800a pnp_device_attach +EXPORT_SYMBOL vmlinux 0x173028b7 netdev_features_change +EXPORT_SYMBOL vmlinux 0x1737bf6a send_sig +EXPORT_SYMBOL vmlinux 0x173995ea end_page_writeback +EXPORT_SYMBOL vmlinux 0x175a6169 udp_ioctl +EXPORT_SYMBOL vmlinux 0x1790d76b _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x17ab27fd tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x17abaa3e jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x17aeff3f lock_fb_info +EXPORT_SYMBOL vmlinux 0x17d53e99 security_path_rename +EXPORT_SYMBOL vmlinux 0x17df17bc sysctl_tcp_ecn +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17fe53a4 vfs_open +EXPORT_SYMBOL vmlinux 0x18091dae kernel_getpeername +EXPORT_SYMBOL vmlinux 0x181f67dd eth_header_cache +EXPORT_SYMBOL vmlinux 0x183c2f38 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1840388a sock_register +EXPORT_SYMBOL vmlinux 0x18411aa8 netlink_set_err +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184e6c85 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x18507e4d mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x185a43ab dquot_acquire +EXPORT_SYMBOL vmlinux 0x186632b6 pid_task +EXPORT_SYMBOL vmlinux 0x18905b16 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x18967459 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x18d75918 key_unlink +EXPORT_SYMBOL vmlinux 0x18dbbb87 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x18ec89a7 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x18f18da8 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x191cb870 tty_name +EXPORT_SYMBOL vmlinux 0x19206ec1 pci_request_region +EXPORT_SYMBOL vmlinux 0x1959a953 scsi_print_result +EXPORT_SYMBOL vmlinux 0x197a90c5 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x198bf518 dump_write +EXPORT_SYMBOL vmlinux 0x19912407 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a9e62b complete +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ef4403 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x19ef6cd6 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x1a037b53 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x1a08c0fc mark_page_accessed +EXPORT_SYMBOL vmlinux 0x1a1d0b06 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x1a22cb56 dma_async_memcpy_pg_to_pg +EXPORT_SYMBOL vmlinux 0x1a261286 inet6_release +EXPORT_SYMBOL vmlinux 0x1a297672 nla_append +EXPORT_SYMBOL vmlinux 0x1a2b4891 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a61e8a5 security_file_permission +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a85721a netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x1ab659bb __cleancache_flush_inode +EXPORT_SYMBOL vmlinux 0x1ac94cca arp_tbl +EXPORT_SYMBOL vmlinux 0x1ace138d bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x1adca17e i2c_release_client +EXPORT_SYMBOL vmlinux 0x1ae14ef5 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x1aea40e1 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b544578 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b875c7a prepare_binprm +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b9e0ff1 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x1bc8585b idr_remove_all +EXPORT_SYMBOL vmlinux 0x1c0776cc phy_stop +EXPORT_SYMBOL vmlinux 0x1c1af916 set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x1c20e823 napi_complete +EXPORT_SYMBOL vmlinux 0x1c489dcf bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x1c54ae67 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x1c65509d simple_fill_super +EXPORT_SYMBOL vmlinux 0x1c820980 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c9576cb nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x1cc6719a register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x1cf7fab1 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x1d0c1b88 dev_err +EXPORT_SYMBOL vmlinux 0x1d21d158 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x1d25c6dd key_revoke +EXPORT_SYMBOL vmlinux 0x1d2e87c6 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x1d3865da param_get_invbool +EXPORT_SYMBOL vmlinux 0x1d389146 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x1d57c85d qdisc_destroy +EXPORT_SYMBOL vmlinux 0x1d5ab6b7 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x1d848a1c scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x1d8fe27e inet_shutdown +EXPORT_SYMBOL vmlinux 0x1d9fe079 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x1dbdc782 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc53295 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x1dca321c llc_sap_close +EXPORT_SYMBOL vmlinux 0x1dcae2b8 file_open_root +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de95880 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x1e046695 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e268fcc tcf_hash_search +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3a047a neigh_connected_output +EXPORT_SYMBOL vmlinux 0x1e3b9851 ethtool_op_set_tso +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e90c178 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ec4eb34 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x1ed1f8e5 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x1edb5e45 test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x1ef1f75f posix_acl_valid +EXPORT_SYMBOL vmlinux 0x1f17cf20 __cleancache_flush_page +EXPORT_SYMBOL vmlinux 0x1f65fd3a tty_check_change +EXPORT_SYMBOL vmlinux 0x1f748a43 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f9b5f95 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x1faab2d7 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x1fba6e0f ps2_handle_response +EXPORT_SYMBOL vmlinux 0x1fc95e6b register_filesystem +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd0f0ad scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x2049af5b locks_remove_posix +EXPORT_SYMBOL vmlinux 0x204c4a75 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x205623af input_release_device +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207e7827 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x208162e0 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20bfe34f dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x20c0ce77 eth_type_trans +EXPORT_SYMBOL vmlinux 0x20c81526 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x20d55623 inet6_getname +EXPORT_SYMBOL vmlinux 0x20e95a28 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x210154f1 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x21163375 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x2118c72e dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x21198a90 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x211fc853 replace_mount_options +EXPORT_SYMBOL vmlinux 0x212cb78e __pci_register_driver +EXPORT_SYMBOL vmlinux 0x21358e9f netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x215d09c2 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x215ebd78 bitrev16 +EXPORT_SYMBOL vmlinux 0x217dda13 flex_array_get +EXPORT_SYMBOL vmlinux 0x2181dd57 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x21926d81 mem_cgroup_count_vm_event +EXPORT_SYMBOL vmlinux 0x2193f75e blk_recount_segments +EXPORT_SYMBOL vmlinux 0x2199337a down_timeout +EXPORT_SYMBOL vmlinux 0x219f42d0 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x21dd049c __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x21e0ea22 acpi_get_id +EXPORT_SYMBOL vmlinux 0x21f63b44 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x21f9038a x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x21f90d2d arp_create +EXPORT_SYMBOL vmlinux 0x21f9d0d7 journal_flush +EXPORT_SYMBOL vmlinux 0x21fb443e _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x21fd2b43 nonseekable_open +EXPORT_SYMBOL vmlinux 0x22250b67 dev_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ed0c2 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x225e6e39 inet_release +EXPORT_SYMBOL vmlinux 0x225e909e schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x226b9304 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2288378f system_state +EXPORT_SYMBOL vmlinux 0x228928c6 __scsi_put_command +EXPORT_SYMBOL vmlinux 0x228f46d8 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x22986108 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x22a53a68 sock_map_fd +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22e2c64c add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x231d3c74 dev_printk +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23532c4d ftrace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x235c4040 dst_release +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23bc5ae5 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240fb765 dget_parent +EXPORT_SYMBOL vmlinux 0x24121851 __kmap_atomic +EXPORT_SYMBOL vmlinux 0x2420e917 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x2423aedc mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x243cdd82 journal_clear_err +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24813d8b netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24b565b1 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x24b8b909 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x24d71518 md_flush_request +EXPORT_SYMBOL vmlinux 0x24f169fc down_read_trylock +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25088936 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x2511771d x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x25250bd9 journal_start_commit +EXPORT_SYMBOL vmlinux 0x2525b132 llc_build_and_send_ui_pkt +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25309427 skb_copy_datagram_const_iovec +EXPORT_SYMBOL vmlinux 0x2535638c blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x254311e8 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x254965e2 sock_create +EXPORT_SYMBOL vmlinux 0x2550c798 mdiobus_register +EXPORT_SYMBOL vmlinux 0x255487e7 d_alloc +EXPORT_SYMBOL vmlinux 0x2563f926 cdev_alloc +EXPORT_SYMBOL vmlinux 0x256c70c0 devm_free_irq +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258355b4 fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x25a4af72 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x25a50920 mmc_try_claim_host +EXPORT_SYMBOL vmlinux 0x25c677c4 mac_pton +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2644eb13 netdev_change_features +EXPORT_SYMBOL vmlinux 0x26486335 do_splice_direct +EXPORT_SYMBOL vmlinux 0x264d3c3d idr_get_next +EXPORT_SYMBOL vmlinux 0x2683fed6 skb_pad +EXPORT_SYMBOL vmlinux 0x2685c3d7 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close +EXPORT_SYMBOL vmlinux 0x26af6fcb ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x271587d3 d_instantiate +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27258688 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x272d394e mtrr_del +EXPORT_SYMBOL vmlinux 0x27414d4b sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x27483ff6 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27881237 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x279b183c generic_getxattr +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c78c0e __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x27d7d9db dev_add_pack +EXPORT_SYMBOL vmlinux 0x27d9d859 ata_link_printk +EXPORT_SYMBOL vmlinux 0x27e1d482 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x27fc42ec tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x27fe6390 inet_addr_type +EXPORT_SYMBOL vmlinux 0x280b8120 dst_discard +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x283dec14 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x28411869 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x284db105 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x285d7f18 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x28764674 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x2881cab2 sock_create_kern +EXPORT_SYMBOL vmlinux 0x2893d50e simple_transaction_set +EXPORT_SYMBOL vmlinux 0x28946e0b dquot_initialize +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end +EXPORT_SYMBOL vmlinux 0x28c4adaa mmc_remove_host +EXPORT_SYMBOL vmlinux 0x28cc5129 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x28d258c0 mca_device_transform_irq +EXPORT_SYMBOL vmlinux 0x28d5eba4 may_umount +EXPORT_SYMBOL vmlinux 0x28e18435 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x292093f4 native_rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295b85a2 sock_release +EXPORT_SYMBOL vmlinux 0x295bd539 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x295db419 x86_hyper +EXPORT_SYMBOL vmlinux 0x29a83af3 user_path_create +EXPORT_SYMBOL vmlinux 0x29b96a8a inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x29f0c766 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a1a9f29 dm_get_mapinfo +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a330ea8 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a52caf2 agp_copy_info +EXPORT_SYMBOL vmlinux 0x2a5ecdea generic_file_fsync +EXPORT_SYMBOL vmlinux 0x2a9936e2 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x2aa07140 dst_alloc +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa67a7e skb_copy +EXPORT_SYMBOL vmlinux 0x2aba563b is_bad_inode +EXPORT_SYMBOL vmlinux 0x2acf3c93 sk_dst_check +EXPORT_SYMBOL vmlinux 0x2ae47764 vfs_follow_link +EXPORT_SYMBOL vmlinux 0x2b064ce8 agp_backend_release +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b1b7a98 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b322337 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x2b36898c scsi_prep_state_check +EXPORT_SYMBOL vmlinux 0x2b4c0989 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x2b54522b swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x2b646069 set_security_override +EXPORT_SYMBOL vmlinux 0x2b680fc8 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x2b69f3f5 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x2b6fa2ed lock_rename +EXPORT_SYMBOL vmlinux 0x2b7343b1 blk_free_tags +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba002e5 serio_reconnect +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bc95bd4 memset +EXPORT_SYMBOL vmlinux 0x2bd84663 tcp_prot +EXPORT_SYMBOL vmlinux 0x2be4c6e6 lro_receive_frags +EXPORT_SYMBOL vmlinux 0x2bf555d0 log_wait_commit +EXPORT_SYMBOL vmlinux 0x2bf8d577 sleep_on_timeout +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c294d6a bio_integrity_alloc_bioset +EXPORT_SYMBOL vmlinux 0x2c30f8e3 mca_device_transform_memory +EXPORT_SYMBOL vmlinux 0x2c3bf0a6 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x2c48a98d nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x2c4d662b dquot_drop +EXPORT_SYMBOL vmlinux 0x2c4e60d8 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x2c5101ea keyring_clear +EXPORT_SYMBOL vmlinux 0x2c6a6930 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x2cfc6c8d soft_cursor +EXPORT_SYMBOL vmlinux 0x2d127cdb tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d198db5 __breadahead +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d72bde9 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x2d89342a scsi_show_sense_hdr +EXPORT_SYMBOL vmlinux 0x2d896be7 iget5_locked +EXPORT_SYMBOL vmlinux 0x2d92f414 blk_put_queue +EXPORT_SYMBOL vmlinux 0x2da7946e mmc_do_release_host +EXPORT_SYMBOL vmlinux 0x2da90cee sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x2dc050c6 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x2dcb2e8d mdiobus_read +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df9a27c proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x2e03d27a ns_capable +EXPORT_SYMBOL vmlinux 0x2e147dfc sock_i_uid +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e3320ee dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x2e37a099 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x2e50f638 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x2e59fc7a ab8500_gpadc_get +EXPORT_SYMBOL vmlinux 0x2e60bace memcpy +EXPORT_SYMBOL vmlinux 0x2e895bbc inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x2ea67e30 path_is_under +EXPORT_SYMBOL vmlinux 0x2ea7d424 gen_pool_free +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec66891 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x2ed517f8 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x2eda301a iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x2eeceb42 sk_chk_filter +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2efdf979 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f3058f9 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x2f38c2db sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2f752732 tty_shutdown +EXPORT_SYMBOL vmlinux 0x2f976f3d phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x2fa9bca9 put_disk +EXPORT_SYMBOL vmlinux 0x2fcde7cd mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x2fe37f2c acpi_root_dir +EXPORT_SYMBOL vmlinux 0x2fe48ea7 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x2fe78f99 follow_down +EXPORT_SYMBOL vmlinux 0x2ff95dda dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x302b865b x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x302ce62e dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x30380bd7 scsi_adjust_queue_depth +EXPORT_SYMBOL vmlinux 0x304c3b91 kmap_high +EXPORT_SYMBOL vmlinux 0x305bac15 bio_free +EXPORT_SYMBOL vmlinux 0x305bed90 netif_notify_peers +EXPORT_SYMBOL vmlinux 0x305e392d get_user_pages +EXPORT_SYMBOL vmlinux 0x3065c3cb jbd2_journal_release_buffer +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x30a06192 pci_request_regions +EXPORT_SYMBOL vmlinux 0x30a13c9b scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x30a20388 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30cada8f radix_tree_next_hole +EXPORT_SYMBOL vmlinux 0x30dfb2a2 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x30e6cda6 page_symlink +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f1fa20 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x31236beb scm_fp_dup +EXPORT_SYMBOL vmlinux 0x312d7d35 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x31513fb7 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31bedf50 kill_litter_super +EXPORT_SYMBOL vmlinux 0x31d26e79 input_reset_device +EXPORT_SYMBOL vmlinux 0x31d8432b blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x31d8903b __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31f48ccf vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x3202f6ee kthread_bind +EXPORT_SYMBOL vmlinux 0x32178be6 unlock_buffer +EXPORT_SYMBOL vmlinux 0x32230b01 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x3240c65b files_lglock_global_lock_online +EXPORT_SYMBOL vmlinux 0x325fca48 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32a6b179 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x32c038ce backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x32cca020 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x32ccc25a scsi_prep_fn +EXPORT_SYMBOL vmlinux 0x32cea339 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x32cf68de neigh_create +EXPORT_SYMBOL vmlinux 0x32d843ba md_done_sync +EXPORT_SYMBOL vmlinux 0x32eeaded _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x32f0c886 __break_lease +EXPORT_SYMBOL vmlinux 0x3312a2a4 mntput +EXPORT_SYMBOL vmlinux 0x331a8967 genl_unregister_mc_group +EXPORT_SYMBOL vmlinux 0x331bd55b bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x3357abc6 dentry_open +EXPORT_SYMBOL vmlinux 0x335fabc0 I_BDEV +EXPORT_SYMBOL vmlinux 0x336bac73 skb_append +EXPORT_SYMBOL vmlinux 0x33d722a0 tty_port_put +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33eba79f kthread_stop +EXPORT_SYMBOL vmlinux 0x33f00aef xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x340be685 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x342e32e3 ida_simple_get +EXPORT_SYMBOL vmlinux 0x342f60fe apm_info +EXPORT_SYMBOL vmlinux 0x34332a3d udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x34586b73 dev_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347a02b0 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x34824aa9 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x34908c14 print_hex_dump_bytes +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34c265bf atomic64_dec_if_positive_cx8 +EXPORT_SYMBOL vmlinux 0x34fb8ff2 filp_open +EXPORT_SYMBOL vmlinux 0x3500daf4 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x35061475 arp_xmit +EXPORT_SYMBOL vmlinux 0x352e21f2 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x35357c05 d_add_ci +EXPORT_SYMBOL vmlinux 0x3537ac50 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x353c7867 aio_complete +EXPORT_SYMBOL vmlinux 0x354a3f7d set_trace_device +EXPORT_SYMBOL vmlinux 0x3554ff1a balance_dirty_pages_ratelimited_nr +EXPORT_SYMBOL vmlinux 0x357c0ab5 genphy_update_link +EXPORT_SYMBOL vmlinux 0x357c90d2 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0x358c07bd generic_delete_inode +EXPORT_SYMBOL vmlinux 0x35af86fa call_usermodehelper_freeinfo +EXPORT_SYMBOL vmlinux 0x35c2ba9e refrigerator +EXPORT_SYMBOL vmlinux 0x35ca8cfa dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x35df1591 udplite_prot +EXPORT_SYMBOL vmlinux 0x35e3351e __netdev_printk +EXPORT_SYMBOL vmlinux 0x35ed4f17 dquot_release +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x362ef408 _copy_from_user +EXPORT_SYMBOL vmlinux 0x36370e90 lookup_hash +EXPORT_SYMBOL vmlinux 0x363feb87 blk_make_request +EXPORT_SYMBOL vmlinux 0x36837bd7 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x3686ea09 spi_print_msg +EXPORT_SYMBOL vmlinux 0x36a6ee20 kill_block_super +EXPORT_SYMBOL vmlinux 0x36aad357 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x36ba19f0 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x36ca773d jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x36e360e3 __hw_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x371fce2a tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x372e8a8d tcf_register_action +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x379f5837 param_set_invbool +EXPORT_SYMBOL vmlinux 0x37aa5e09 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37ce8c85 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37ea921e vfsmount_lock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37ff4c06 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x380e3fcb phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x381112ca neigh_direct_output +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x38329931 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x3858e372 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x3864901e phy_find_first +EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x388f9128 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x38911bb5 dma_pool_create +EXPORT_SYMBOL vmlinux 0x38b21a7a free_task +EXPORT_SYMBOL vmlinux 0x38b92846 llc_remove_pack +EXPORT_SYMBOL vmlinux 0x38dd7f9f pci_disable_device +EXPORT_SYMBOL vmlinux 0x390cc126 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x393073eb kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x3969ee11 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x396ae2a8 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x397ab28e security_inode_permission +EXPORT_SYMBOL vmlinux 0x397ef978 arp_find +EXPORT_SYMBOL vmlinux 0x3980aac1 unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x39970ad2 nf_reinject +EXPORT_SYMBOL vmlinux 0x399f34dd freeze_super +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39c08aac backlight_force_update +EXPORT_SYMBOL vmlinux 0x39c29a9e __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x3a013b7d remove_wait_queue +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a2204c6 security_netlink_recv +EXPORT_SYMBOL vmlinux 0x3a2c8da1 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a469a66 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x3a699f26 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x3a7b57e8 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x3a86e88a __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa2eb19 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x3aab90cd tty_pair_get_tty +EXPORT_SYMBOL vmlinux 0x3ac496b3 __quota_error +EXPORT_SYMBOL vmlinux 0x3acc8711 get_write_access +EXPORT_SYMBOL vmlinux 0x3ad06240 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x3ad35abf bmap +EXPORT_SYMBOL vmlinux 0x3ad66aec inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x3ae9cef5 unlock_super +EXPORT_SYMBOL vmlinux 0x3b012518 poll_initwait +EXPORT_SYMBOL vmlinux 0x3b21b39b neigh_lookup +EXPORT_SYMBOL vmlinux 0x3b2c3235 journal_get_write_access +EXPORT_SYMBOL vmlinux 0x3b3016d3 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3b356931 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x3b361043 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x3b58c5ec unlock_rename +EXPORT_SYMBOL vmlinux 0x3b8ae6c7 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x3b9514da dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x3b9dbde3 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x3bab7fc9 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x3babfdc8 request_key +EXPORT_SYMBOL vmlinux 0x3bd1b1f6 msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x3bd9d729 dquot_alloc +EXPORT_SYMBOL vmlinux 0x3beb5dad md_write_end +EXPORT_SYMBOL vmlinux 0x3c114fd8 bdi_destroy +EXPORT_SYMBOL vmlinux 0x3c13deed __devm_release_region +EXPORT_SYMBOL vmlinux 0x3c16b391 consume_skb +EXPORT_SYMBOL vmlinux 0x3c1a496b blkdev_get +EXPORT_SYMBOL vmlinux 0x3c2caead seq_bitmap_list +EXPORT_SYMBOL vmlinux 0x3c3e0d3a clip_tbl_hook +EXPORT_SYMBOL vmlinux 0x3c414ebf blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x3c688ef6 make_bad_inode +EXPORT_SYMBOL vmlinux 0x3c690103 km_policy_expired +EXPORT_SYMBOL vmlinux 0x3c7c64b9 tty_pair_get_pty +EXPORT_SYMBOL vmlinux 0x3c7f4bd6 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c880174 md_integrity_register +EXPORT_SYMBOL vmlinux 0x3c9d1211 string_get_size +EXPORT_SYMBOL vmlinux 0x3cadc7a4 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x3cafe321 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cb74fb8 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x3cdfc138 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d38a758 skb_checksum +EXPORT_SYMBOL vmlinux 0x3d3a2601 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x3d496541 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x3d4c9b87 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x3d67fd96 phy_driver_register +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d86c3a0 netdev_crit +EXPORT_SYMBOL vmlinux 0x3d93ee61 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x3d950c46 user_path_at +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dbc7c29 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x3dc14845 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcd3105 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x3dd8f107 fget_raw +EXPORT_SYMBOL vmlinux 0x3df9e4b1 open_exec +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0e9023 param_set_long +EXPORT_SYMBOL vmlinux 0x3e1f6c95 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e45e9ff register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x3e534d88 thaw_super +EXPORT_SYMBOL vmlinux 0x3e7f3ff3 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3ea2990c uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x3ea5ce0b alloc_trdev +EXPORT_SYMBOL vmlinux 0x3ec8886f param_ops_int +EXPORT_SYMBOL vmlinux 0x3ed63055 zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x3ede5055 init_buffer +EXPORT_SYMBOL vmlinux 0x3ef78d80 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3efa4cf4 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x3eff3fbb keyring_search +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0990eb journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x3f1a49dd mpage_writepage +EXPORT_SYMBOL vmlinux 0x3f1ed40a __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x3f35c91e dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3f3ce480 __cleancache_flush_fs +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f5070a7 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x3f55aa75 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0x3f5689df __get_page_tail +EXPORT_SYMBOL vmlinux 0x3f637ff5 input_event +EXPORT_SYMBOL vmlinux 0x3f692b5e __blk_end_request +EXPORT_SYMBOL vmlinux 0x3f89d02d mmc_hw_reset_check +EXPORT_SYMBOL vmlinux 0x3f9f868f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x3fa36d8c tc_classify_compat +EXPORT_SYMBOL vmlinux 0x3fa58ef8 wait_for_completion +EXPORT_SYMBOL vmlinux 0x3face808 pci_enable_msi_block +EXPORT_SYMBOL vmlinux 0x3fb31576 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x3fb32483 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x3fd400cd vfs_unlink +EXPORT_SYMBOL vmlinux 0x3fe33741 i2c_smbus_process_call +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff1195b journal_destroy +EXPORT_SYMBOL vmlinux 0x3ff62317 local_bh_disable +EXPORT_SYMBOL vmlinux 0x3ff9e144 setattr_copy +EXPORT_SYMBOL vmlinux 0x4012a5d2 dev_alert +EXPORT_SYMBOL vmlinux 0x4029d238 param_set_copystring +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40310c3e thermal_zone_device_unregister +EXPORT_SYMBOL vmlinux 0x403aca81 fb_pan_display +EXPORT_SYMBOL vmlinux 0x4044d469 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b86d24 proc_symlink +EXPORT_SYMBOL vmlinux 0x40be830a phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x40c0f0de proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40cb3bcb inode_permission +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40e00b35 unregister_key_type +EXPORT_SYMBOL vmlinux 0x4108e69a fb_match_mode +EXPORT_SYMBOL vmlinux 0x4137cb99 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x4144a4f4 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x41466e6d mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4155b48a i2c_master_recv +EXPORT_SYMBOL vmlinux 0x416163d4 dcache_readdir +EXPORT_SYMBOL vmlinux 0x41702759 km_new_mapping +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x419ee6e8 idr_pre_get +EXPORT_SYMBOL vmlinux 0x41ab4941 lookup_bdev +EXPORT_SYMBOL vmlinux 0x41d4a2e9 dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x41d7987f security_inode_readlink +EXPORT_SYMBOL vmlinux 0x41dddae9 kernel_connect +EXPORT_SYMBOL vmlinux 0x41f503ce genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x4211c3c1 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x42224298 sscanf +EXPORT_SYMBOL vmlinux 0x42368290 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x4239de63 ida_init +EXPORT_SYMBOL vmlinux 0x423f1957 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x427d22c8 skb_store_bits +EXPORT_SYMBOL vmlinux 0x428626b1 bio_copy_user +EXPORT_SYMBOL vmlinux 0x4292364c schedule +EXPORT_SYMBOL vmlinux 0x42977ad4 __hw_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x429db727 bio_split +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42cc7371 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x42fc71b1 xfrm_cfg_mutex +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430c7d12 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x4318b3d3 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x43319e7c scsi_setup_blk_pc_cmnd +EXPORT_SYMBOL vmlinux 0x43385ad9 acpi_pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437b86d4 fasync_helper +EXPORT_SYMBOL vmlinux 0x437fcc93 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x4387a6c5 tty_get_baud_rate +EXPORT_SYMBOL vmlinux 0x4392e024 nf_register_hook +EXPORT_SYMBOL vmlinux 0x43a0458b blk_start_plug +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x440124ab scsi_cmd_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x4418e5c7 sock_no_accept +EXPORT_SYMBOL vmlinux 0x4421b5ac update_region +EXPORT_SYMBOL vmlinux 0x443535b3 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44402b6f param_get_ulong +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x4455e0d4 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x44607399 save_mount_options +EXPORT_SYMBOL vmlinux 0x44613d99 create_mnt_ns +EXPORT_SYMBOL vmlinux 0x44787ede ata_port_printk +EXPORT_SYMBOL vmlinux 0x447db6ca elevator_init +EXPORT_SYMBOL vmlinux 0x4497ef82 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b911c3 rb_replace_node +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f1606d down_trylock +EXPORT_SYMBOL vmlinux 0x44f9d175 simple_rename +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x4539cc7a scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454de98c netif_carrier_off +EXPORT_SYMBOL vmlinux 0x4550ba8a register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x4553422b inet_sendmsg +EXPORT_SYMBOL vmlinux 0x45583fe7 fget +EXPORT_SYMBOL vmlinux 0x4558fc54 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x4578661a _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457c3c44 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x457defd3 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x4587c888 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x459409aa netdev_alert +EXPORT_SYMBOL vmlinux 0x45bd9efd dm_table_put +EXPORT_SYMBOL vmlinux 0x45d216b9 tcp_put_md5sig_pool +EXPORT_SYMBOL vmlinux 0x4617c890 mca_device_transform_ioport +EXPORT_SYMBOL vmlinux 0x46214106 files_lglock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x46261d51 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x462977b5 mii_link_ok +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x468fb3e8 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x46928102 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x46be30f2 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x46de1fc9 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x46de509d vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x46e385a0 dev_addr_add +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4704f2b5 get_unmapped_area_prot +EXPORT_SYMBOL vmlinux 0x4723e887 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x4747b193 processors +EXPORT_SYMBOL vmlinux 0x474accb3 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x475100c2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x475cb2ac filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x47732bcd mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x47812d1e skb_queue_tail +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x4792c572 down_interruptible +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47b3f862 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x47b6a10f ftrace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x47c7b0d2 cpu_number +EXPORT_SYMBOL vmlinux 0x47d001db nla_reserve +EXPORT_SYMBOL vmlinux 0x47e120cd blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x47f57830 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x481e5c49 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x4848a53d blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485befd2 __getblk +EXPORT_SYMBOL vmlinux 0x486d2f29 dqstats +EXPORT_SYMBOL vmlinux 0x486d75c2 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x48700850 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x48976adb security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map +EXPORT_SYMBOL vmlinux 0x48be6a4c pagecache_write_end +EXPORT_SYMBOL vmlinux 0x48c3d5f3 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x48c97dda mnt_pin +EXPORT_SYMBOL vmlinux 0x48cdc818 init_task +EXPORT_SYMBOL vmlinux 0x48e5d7dd blk_init_tags +EXPORT_SYMBOL vmlinux 0x48eb0c0d __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x48fae041 pm860x_page_set_bits +EXPORT_SYMBOL vmlinux 0x48fcc1dd dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x49193b56 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x49249dbc bio_get_nr_vecs +EXPORT_SYMBOL vmlinux 0x4926b4cd phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x49284197 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x494fb1cf pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x4954211f inet_sendpage +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x496b6166 generic_show_options +EXPORT_SYMBOL vmlinux 0x49701389 neigh_for_each +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49cc2ad8 ps2_drain +EXPORT_SYMBOL vmlinux 0x49f0ca2b jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x4a0d25a7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x4a358252 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x4a619c7c napi_gro_frags +EXPORT_SYMBOL vmlinux 0x4a73b7c9 mmc_release_host +EXPORT_SYMBOL vmlinux 0x4a76bc26 inode_init_owner +EXPORT_SYMBOL vmlinux 0x4a881fb1 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x4aaab2b1 groups_alloc +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0dad8d led_blink_set +EXPORT_SYMBOL vmlinux 0x4b0ff1ce lease_get_mtime +EXPORT_SYMBOL vmlinux 0x4b142f51 devm_iounmap +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b253787 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x4b2b9357 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x4b34fbf5 block_all_signals +EXPORT_SYMBOL vmlinux 0x4b39d1f0 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b709bd3 follow_down_one +EXPORT_SYMBOL vmlinux 0x4ba651b0 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x4bb057ef key_put +EXPORT_SYMBOL vmlinux 0x4bc4d5a5 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x4bc96635 ifla_policy +EXPORT_SYMBOL vmlinux 0x4be36f8e serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x4be3b128 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x4bf7b27d inode_sb_list_lock +EXPORT_SYMBOL vmlinux 0x4c1182cb bitmap_scnprintf +EXPORT_SYMBOL vmlinux 0x4c11ca9f efi +EXPORT_SYMBOL vmlinux 0x4c17ee88 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2b91f5 __rta_fill +EXPORT_SYMBOL vmlinux 0x4c6b7257 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x4c7cc70c single_open +EXPORT_SYMBOL vmlinux 0x4c9ab88a misc_register +EXPORT_SYMBOL vmlinux 0x4cb2082d bio_put +EXPORT_SYMBOL vmlinux 0x4cbbd171 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x4cbf16c9 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x4ccb822d sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x4ce774c3 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x4d025d04 vfs_stat +EXPORT_SYMBOL vmlinux 0x4d20ddbc atomic64_inc_not_zero_cx8 +EXPORT_SYMBOL vmlinux 0x4d2425e6 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x4d268a3c kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x4d29f664 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d594caf get_phy_device +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9d2857 noop_qdisc +EXPORT_SYMBOL vmlinux 0x4da972f6 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x4dc45be9 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x4dca5ab4 __devm_request_region +EXPORT_SYMBOL vmlinux 0x4ddad4ca scsi_finish_command +EXPORT_SYMBOL vmlinux 0x4dee8af5 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df265ad ps2_end_command +EXPORT_SYMBOL vmlinux 0x4dfa1d95 vmap +EXPORT_SYMBOL vmlinux 0x4e069249 security_tun_dev_post_create +EXPORT_SYMBOL vmlinux 0x4e21999c acpi_get_child +EXPORT_SYMBOL vmlinux 0x4e255f95 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x4e29c7cb idr_for_each +EXPORT_SYMBOL vmlinux 0x4e316a39 drop_super +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e830a3e strnicmp +EXPORT_SYMBOL vmlinux 0x4e8a4a0b blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x4eb11f1f seq_bitmap +EXPORT_SYMBOL vmlinux 0x4ebb5a59 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x4ec597e1 sock_i_ino +EXPORT_SYMBOL vmlinux 0x4eca6c89 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x4ee1b912 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x4eece3c7 tty_port_open +EXPORT_SYMBOL vmlinux 0x4f18467b pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2f6111 elv_abort_queue +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3c13d5 scsi_execute_req +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f6a6be1 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x4f6ca567 simple_write_end +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f8e3af7 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x4f977143 generic_pipe_buf_map +EXPORT_SYMBOL vmlinux 0x4fa46012 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x4fbf9184 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff0b0ba pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x4ff1c9bc populate_rootfs_wait +EXPORT_SYMBOL vmlinux 0x4ffa3c71 inet_frag_find +EXPORT_SYMBOL vmlinux 0x4ffec096 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x5012dfb3 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x50211ee3 tcp_free_md5sig_pool +EXPORT_SYMBOL vmlinux 0x504fb5ea neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x5055a3f0 key_link +EXPORT_SYMBOL vmlinux 0x506746b6 getrawmonotonic +EXPORT_SYMBOL vmlinux 0x507981c6 journal_lock_updates +EXPORT_SYMBOL vmlinux 0x507f5b40 vfs_readdir +EXPORT_SYMBOL vmlinux 0x50aa2412 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x50ab4c6d files_lglock_global_lock +EXPORT_SYMBOL vmlinux 0x50b11475 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x50c2b2db llc_add_pack +EXPORT_SYMBOL vmlinux 0x50c993c6 input_grab_device +EXPORT_SYMBOL vmlinux 0x50cb4248 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x50cd4c20 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x50d3123c intel_gtt_map_memory +EXPORT_SYMBOL vmlinux 0x50e4a867 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x50eedeb8 printk +EXPORT_SYMBOL vmlinux 0x5117581e tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511f0349 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x513dd910 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x5152e605 memcmp +EXPORT_SYMBOL vmlinux 0x51542f3b padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x5158a54a i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x515d7d1a scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x51632e4d tcp_syn_flood_action +EXPORT_SYMBOL vmlinux 0x517390e9 ethtool_invalid_flags +EXPORT_SYMBOL vmlinux 0x5174a32b dev_disable_lro +EXPORT_SYMBOL vmlinux 0x517c9b81 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x5180c9f5 dev_uc_del +EXPORT_SYMBOL vmlinux 0x5186518f profile_pc +EXPORT_SYMBOL vmlinux 0x51b2fb10 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x51c2c03e dev_load +EXPORT_SYMBOL vmlinux 0x51ce5ad3 files_lglock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d60092 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x51d816e4 seq_write +EXPORT_SYMBOL vmlinux 0x51d93718 register_gifconf +EXPORT_SYMBOL vmlinux 0x51dce73b xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51ff522a mdio_bus_type +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520696e5 bio_sector_offset +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x5232fbb9 i2c_transfer +EXPORT_SYMBOL vmlinux 0x52423a0c ida_pre_get +EXPORT_SYMBOL vmlinux 0x525a649e console_start +EXPORT_SYMBOL vmlinux 0x52760ca9 getnstimeofday +EXPORT_SYMBOL vmlinux 0x528643be tc_classify +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52ce2390 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x52d2090f skb_dequeue +EXPORT_SYMBOL vmlinux 0x52d4d1fe key_alloc +EXPORT_SYMBOL vmlinux 0x52d71999 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL vmlinux 0x52d93744 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x52e27fc2 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x52ebf701 cap_netlink_recv +EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530d02c0 find_lock_page +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x533183cf pci_get_subsys +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533455c5 get_agp_version +EXPORT_SYMBOL vmlinux 0x533b7736 dump_trace +EXPORT_SYMBOL vmlinux 0x533fd46f simple_transaction_read +EXPORT_SYMBOL vmlinux 0x538383c0 unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x5383f34b _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x5397f2d3 posix_acl_init +EXPORT_SYMBOL vmlinux 0x53a1cecb inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x53b0dba7 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x53bf7b71 journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x53dd7ef9 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x53f2ef10 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x53f9649b uart_suspend_port +EXPORT_SYMBOL vmlinux 0x54135829 datagram_poll +EXPORT_SYMBOL vmlinux 0x54152e04 percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x54352c56 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544d4ea7 iget_locked +EXPORT_SYMBOL vmlinux 0x5467c572 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x54856515 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x548fc005 netpoll_setup +EXPORT_SYMBOL vmlinux 0x54935666 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0x54a285c5 atomic64_dec_return_cx8 +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c57ab9 bio_init +EXPORT_SYMBOL vmlinux 0x54d90576 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x55034c2a seq_open_private +EXPORT_SYMBOL vmlinux 0x55086c33 netdev_set_bond_master +EXPORT_SYMBOL vmlinux 0x5512b83d check_disk_change +EXPORT_SYMBOL vmlinux 0x55149dad xfrm_init_state +EXPORT_SYMBOL vmlinux 0x5534f500 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55529d1c simple_empty +EXPORT_SYMBOL vmlinux 0x5594be03 bitmap_remap +EXPORT_SYMBOL vmlinux 0x55964f43 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x55afabac poll_freewait +EXPORT_SYMBOL vmlinux 0x55b17e1f lock_sock_nested +EXPORT_SYMBOL vmlinux 0x55fe28e3 ip6_xmit +EXPORT_SYMBOL vmlinux 0x5600904f fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x5614b010 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x561c4b80 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x56250cb0 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5642793a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x5664aea8 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x56672246 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x567c4fe4 __brelse +EXPORT_SYMBOL vmlinux 0x5684d94e __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x568b7542 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0x56ba394b set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x56c5e093 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573555af netif_device_detach +EXPORT_SYMBOL vmlinux 0x5736244c acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x5740c1d2 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5773aa31 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x5792853f mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x57979332 proto_unregister +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57b4a8b3 netdev_bonding_change +EXPORT_SYMBOL vmlinux 0x57b57ebe jiffies_to_timespec +EXPORT_SYMBOL vmlinux 0x57b74ec9 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x57db7242 mangle_path +EXPORT_SYMBOL vmlinux 0x57e3223e fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x57e830bd register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x57e99ab3 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x58192c98 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583af874 scsi_execute +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x58517ca9 ip_nat_decode_session +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x586b58e8 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x58780077 journal_forget +EXPORT_SYMBOL vmlinux 0x5892d54c acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x5897c163 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x5899a6f2 elevator_exit +EXPORT_SYMBOL vmlinux 0x58a2c24b fb_get_mode +EXPORT_SYMBOL vmlinux 0x58baf9e2 dev_uc_add +EXPORT_SYMBOL vmlinux 0x58be7509 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x58c909d7 write_inode_now +EXPORT_SYMBOL vmlinux 0x58e9de58 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x58ec7980 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info +EXPORT_SYMBOL vmlinux 0x59188c7e sock_init_data +EXPORT_SYMBOL vmlinux 0x59212e92 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x592b59af acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x5934392b fb_register_client +EXPORT_SYMBOL vmlinux 0x59377504 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x59393600 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x593b9e4e bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594f6650 input_unregister_device +EXPORT_SYMBOL vmlinux 0x59528ec6 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x595ea73c d_obtain_alias +EXPORT_SYMBOL vmlinux 0x595f2649 get_super +EXPORT_SYMBOL vmlinux 0x5977b1a4 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x59aa43be simple_rmdir +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59be07b2 set_user_nice +EXPORT_SYMBOL vmlinux 0x59d696b6 register_module_notifier +EXPORT_SYMBOL vmlinux 0x59e70f93 __send_remote_softirq +EXPORT_SYMBOL vmlinux 0x59f930e5 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x5a0caf4a mmc_start_req +EXPORT_SYMBOL vmlinux 0x5a2aa62e __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x5a373a87 acpi_bus_start +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a744b86 netlink_set_nonroot +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ae3f4a9 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x5afa4e7f sock_no_mmap +EXPORT_SYMBOL vmlinux 0x5b028742 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b2641dc sg_miter_stop +EXPORT_SYMBOL vmlinux 0x5b26bea8 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x5b31eb1f pci_get_class +EXPORT_SYMBOL vmlinux 0x5b3cc0ba ppp_input +EXPORT_SYMBOL vmlinux 0x5b51c6a7 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x5b54e311 __lru_cache_add +EXPORT_SYMBOL vmlinux 0x5b56804a acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x5b63fcbc generic_readlink +EXPORT_SYMBOL vmlinux 0x5b7831b3 bio_integrity_set_tag +EXPORT_SYMBOL vmlinux 0x5b88e8c9 atomic64_sub_return_cx8 +EXPORT_SYMBOL vmlinux 0x5ba748da spi_schedule_dv_device +EXPORT_SYMBOL vmlinux 0x5bbeb1ae remap_pfn_range +EXPORT_SYMBOL vmlinux 0x5bf9d5a1 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x5bff5b07 inet_bind +EXPORT_SYMBOL vmlinux 0x5c009c38 bio_clone +EXPORT_SYMBOL vmlinux 0x5c100372 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x5c24d43d iput +EXPORT_SYMBOL vmlinux 0x5c31907a blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x5c3edd59 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x5c4ac01e tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x5c68705b mca_read_pos +EXPORT_SYMBOL vmlinux 0x5c79558c fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x5c9dca60 kunmap_high +EXPORT_SYMBOL vmlinux 0x5cbd23dd i2c_register_driver +EXPORT_SYMBOL vmlinux 0x5cd10b98 should_remove_suid +EXPORT_SYMBOL vmlinux 0x5cf6695b __inet6_hash +EXPORT_SYMBOL vmlinux 0x5cfbf855 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x5d0b1f39 napi_frags_finish +EXPORT_SYMBOL vmlinux 0x5d2d23f9 icmp_send +EXPORT_SYMBOL vmlinux 0x5d2dc00a netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x5d44818e journal_get_create_access +EXPORT_SYMBOL vmlinux 0x5d47d433 blk_integrity_is_initialized +EXPORT_SYMBOL vmlinux 0x5d4ff060 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x5d5b5a16 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x5d73a318 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d922611 kmap_atomic_to_page +EXPORT_SYMBOL vmlinux 0x5d980d2f dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x5da41452 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x5dbb6293 kobject_get +EXPORT_SYMBOL vmlinux 0x5dc4930c generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x5dc7843b mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x5dce6b75 complete_and_exit +EXPORT_SYMBOL vmlinux 0x5de037e5 scsi_free_command +EXPORT_SYMBOL vmlinux 0x5e0e60be pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x5e2473d4 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x5e416fc0 force_sig +EXPORT_SYMBOL vmlinux 0x5e44a944 sk_run_filter +EXPORT_SYMBOL vmlinux 0x5e5e36fd ip6_frag_match +EXPORT_SYMBOL vmlinux 0x5e6947f7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x5e8dae4a dquot_commit_info +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a3c5b set_create_files_as +EXPORT_SYMBOL vmlinux 0x5eadf54a module_layout +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed5be8b vfs_statfs +EXPORT_SYMBOL vmlinux 0x5edd0762 bin2bcd +EXPORT_SYMBOL vmlinux 0x5eed5408 tty_free_termios +EXPORT_SYMBOL vmlinux 0x5ef306a1 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x5ef33802 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f12014b contig_page_data +EXPORT_SYMBOL vmlinux 0x5f17dd52 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5f1bd579 mca_find_adapter +EXPORT_SYMBOL vmlinux 0x5f20677c dquot_scan_active +EXPORT_SYMBOL vmlinux 0x5f242241 tcp_child_process +EXPORT_SYMBOL vmlinux 0x5f27544a mempool_destroy +EXPORT_SYMBOL vmlinux 0x5f287716 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x5f45170c cdrom_open +EXPORT_SYMBOL vmlinux 0x5f53a31a inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5f58f676 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x5f84e33a tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x5fa17c73 sk_filter_release_rcu +EXPORT_SYMBOL vmlinux 0x5fba263a bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x5fd05345 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x5fe41fb6 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x5ff42b08 acpi_video_get_capabilities +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6027fa09 iunique +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60450aa3 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x605da13f empty_aops +EXPORT_SYMBOL vmlinux 0x606ba2a6 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x606cf978 llc_sap_open +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b2e38a rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x60fefbc1 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x60ff388b input_set_abs_params +EXPORT_SYMBOL vmlinux 0x612390ad netpoll_set_trap +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612e6013 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x6151c407 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x61536865 idr_destroy +EXPORT_SYMBOL vmlinux 0x6191735b __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x619b187b add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x61ac182e sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x61b5ade0 down_write +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61e1e99d swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x6217b161 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x621d77a0 sleep_on +EXPORT_SYMBOL vmlinux 0x621ee779 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622fa02a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x62411e0d __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache +EXPORT_SYMBOL vmlinux 0x625024da would_dump +EXPORT_SYMBOL vmlinux 0x6256cf13 __seq_open_private +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6279d762 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x627cb15b dev_get_flags +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x6285179d dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x6290e59b dma_sync_wait +EXPORT_SYMBOL vmlinux 0x62c3c2e8 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x62cb4cee interruptible_sleep_on +EXPORT_SYMBOL vmlinux 0x62cd8754 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x62d3be22 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x62f974d0 directly_mappable_cdev_bdi +EXPORT_SYMBOL vmlinux 0x63048c30 blk_register_region +EXPORT_SYMBOL vmlinux 0x630dd0ae fddi_type_trans +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6320727d iterate_supers_type +EXPORT_SYMBOL vmlinux 0x6322993f get_fs_type +EXPORT_SYMBOL vmlinux 0x6326972f ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x6332cc1a audit_log_start +EXPORT_SYMBOL vmlinux 0x6337dfce ab8500_gpadc_convert +EXPORT_SYMBOL vmlinux 0x6346c9bb input_register_handler +EXPORT_SYMBOL vmlinux 0x635932c0 search_binary_handler +EXPORT_SYMBOL vmlinux 0x635ef0f8 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x63bd5175 pci_map_rom +EXPORT_SYMBOL vmlinux 0x63c0a402 security_path_chmod +EXPORT_SYMBOL vmlinux 0x63cccbb9 __d_drop +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ecad53 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x63f11f72 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x641341e8 splice_from_pipe_feed +EXPORT_SYMBOL vmlinux 0x64327d3a release_pages +EXPORT_SYMBOL vmlinux 0x643eaec8 param_get_string +EXPORT_SYMBOL vmlinux 0x64474cac i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x64557fa2 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x6478134c ec_burst_enable +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64b4ed8b d_lookup +EXPORT_SYMBOL vmlinux 0x64c2ce7a xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x64d3d482 __kfree_skb +EXPORT_SYMBOL vmlinux 0x64e3143e genl_unregister_ops +EXPORT_SYMBOL vmlinux 0x64e72579 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65220759 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6527e8bf gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x65291cff timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0x6535acc6 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x653a14af vfs_link +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65414e67 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6555cdae tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x657879ce __init_rwsem +EXPORT_SYMBOL vmlinux 0x6585e310 alloc_pages_exact_nid +EXPORT_SYMBOL vmlinux 0x65897a64 skb_gso_segment +EXPORT_SYMBOL vmlinux 0x6599d885 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x659eea60 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x65adb684 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x65bcc1f6 devm_ioremap +EXPORT_SYMBOL vmlinux 0x65be039e scsi_unregister +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65df2272 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x65e095f8 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x65ef5276 cap_file_mmap +EXPORT_SYMBOL vmlinux 0x65f9a470 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x6605f97f flex_array_clear +EXPORT_SYMBOL vmlinux 0x6620797a insert_inode_locked +EXPORT_SYMBOL vmlinux 0x66355efc vprintk +EXPORT_SYMBOL vmlinux 0x6644ab88 pnpbios_protocol +EXPORT_SYMBOL vmlinux 0x66458bdd tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x664d7ba5 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x66731167 md_register_thread +EXPORT_SYMBOL vmlinux 0x667cd4cb __invalidate_device +EXPORT_SYMBOL vmlinux 0x668da8d5 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x669dd28a posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x66a67dab flex_array_shrink +EXPORT_SYMBOL vmlinux 0x66b80a6d phy_connect_direct +EXPORT_SYMBOL vmlinux 0x66cd1c8d register_snap_client +EXPORT_SYMBOL vmlinux 0x66d0ee54 vfsmount_lock_global_unlock +EXPORT_SYMBOL vmlinux 0x66e9fdc2 generic_read_dir +EXPORT_SYMBOL vmlinux 0x66ee316d skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x67053080 current_kernel_time +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67528d12 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x677cf6d7 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x67804a19 __any_online_cpu +EXPORT_SYMBOL vmlinux 0x6793fc12 phy_device_register +EXPORT_SYMBOL vmlinux 0x67a4a2bd rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x67ab6b74 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b30aca napi_gro_flush +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bba76b pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x67dcdf0e blk_rq_init +EXPORT_SYMBOL vmlinux 0x67e3f800 may_umount_tree +EXPORT_SYMBOL vmlinux 0x67f7403e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x67fdc02a pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x6801ead4 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x682768f1 register_qdisc +EXPORT_SYMBOL vmlinux 0x6849e7a8 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x68531e9c pci_get_slot +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68ac7418 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x69170414 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x6918b935 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x692a568a dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x693395b7 sync_blockdev +EXPORT_SYMBOL vmlinux 0x69502e3e phy_print_status +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697e50a4 sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x698d0a84 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69d38ed9 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x69da5d1e bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x69df0380 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x69e27c7a bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x69e404b3 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x69e598f9 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x69e8dfd3 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x6a48e16b percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a8c03ea jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x6a90c961 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x6a9423c9 generic_pipe_buf_unmap +EXPORT_SYMBOL vmlinux 0x6a99e793 ppp_input_error +EXPORT_SYMBOL vmlinux 0x6aae2acb call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x6abf920c seq_open +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6acffd49 blk_put_request +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aea13b6 pm860x_page_reg_read +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b1f833c sk_receive_skb +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b334c20 sg_miter_next +EXPORT_SYMBOL vmlinux 0x6b3a6190 journal_init_inode +EXPORT_SYMBOL vmlinux 0x6b52657b dput +EXPORT_SYMBOL vmlinux 0x6b646332 elv_add_request +EXPORT_SYMBOL vmlinux 0x6b89b2bd simple_unlink +EXPORT_SYMBOL vmlinux 0x6b937ffb mca_mark_as_used +EXPORT_SYMBOL vmlinux 0x6ba4db6e padata_add_cpu +EXPORT_SYMBOL vmlinux 0x6baae653 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd178fd __blk_run_queue +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be9ffcd free_buffer_head +EXPORT_SYMBOL vmlinux 0x6bf0f389 mmc_host_disable +EXPORT_SYMBOL vmlinux 0x6bf70fc4 pci_find_capability +EXPORT_SYMBOL vmlinux 0x6c06b929 inet_getname +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c26229d tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x6c2b3e01 elv_register_queue +EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp +EXPORT_SYMBOL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL vmlinux 0x6c5e861a dev_uc_init +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8b020f mca_device_read_pos +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cf8d3e4 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d13be61 skb_recycle +EXPORT_SYMBOL vmlinux 0x6d1e7312 lock_super +EXPORT_SYMBOL vmlinux 0x6d27ef64 __bitmap_empty +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d5bfec4 x86_hyper_xen_hvm +EXPORT_SYMBOL vmlinux 0x6d6b06a8 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x6d6cbadc rb_last +EXPORT_SYMBOL vmlinux 0x6d765aac touch_atime +EXPORT_SYMBOL vmlinux 0x6d7982f4 seq_release_private +EXPORT_SYMBOL vmlinux 0x6d7d978d inet6_bind +EXPORT_SYMBOL vmlinux 0x6d9cd52f blk_run_queue +EXPORT_SYMBOL vmlinux 0x6db7c23a unregister_exec_domain +EXPORT_SYMBOL vmlinux 0x6de645f9 bd_set_size +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6e01ebcc dev_uc_sync +EXPORT_SYMBOL vmlinux 0x6e15d316 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x6e2f8333 ihold +EXPORT_SYMBOL vmlinux 0x6e3e20d1 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x6e4311ef tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x6e51ac2e _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x6e65f2dc rtc_lock +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e80e1e1 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x6e8dd78f pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x6e980bf5 skb_put +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb82da7 fail_migrate_page +EXPORT_SYMBOL vmlinux 0x6ef14279 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x6ef7e8c3 register_quota_format +EXPORT_SYMBOL vmlinux 0x6f2cdcb0 uart_resume_port +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f7b4765 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x6f8238fd __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x6fa707b6 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x6fbe36b7 splice_from_pipe_begin +EXPORT_SYMBOL vmlinux 0x6fc2d0a4 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6fee0619 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x6fee765d dev_addr_del +EXPORT_SYMBOL vmlinux 0x6fff393f time_to_tm +EXPORT_SYMBOL vmlinux 0x700cd7c7 mmc_card_can_sleep +EXPORT_SYMBOL vmlinux 0x70236c3f filp_close +EXPORT_SYMBOL vmlinux 0x702e7f8e udp_sendmsg +EXPORT_SYMBOL vmlinux 0x703b4352 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70720f8d generic_file_splice_write +EXPORT_SYMBOL vmlinux 0x70bc17d7 inode_wait +EXPORT_SYMBOL vmlinux 0x70ced997 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x70d053fd try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70ea6faf iterate_mounts +EXPORT_SYMBOL vmlinux 0x7114a71f bit_waitqueue +EXPORT_SYMBOL vmlinux 0x71202709 pci_disable_ido +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x71429fb7 fb_class +EXPORT_SYMBOL vmlinux 0x7164a895 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x7165ee69 inet_frag_evictor +EXPORT_SYMBOL vmlinux 0x716a3f1e inode_change_ok +EXPORT_SYMBOL vmlinux 0x716cf2a0 proto_register +EXPORT_SYMBOL vmlinux 0x716f1cb7 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718c497c block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c144f7 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x71c873e9 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x7234eafb otg_state_string +EXPORT_SYMBOL vmlinux 0x72670ff7 wake_up_process +EXPORT_SYMBOL vmlinux 0x72689ab6 pci_iounmap +EXPORT_SYMBOL vmlinux 0x726c7a31 set_pages_uc +EXPORT_SYMBOL vmlinux 0x727bdb2e skb_trim +EXPORT_SYMBOL vmlinux 0x728223fb blkdev_fsync +EXPORT_SYMBOL vmlinux 0x72aa82c6 param_ops_charp +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72bec8d4 register_console +EXPORT_SYMBOL vmlinux 0x72bf2140 mtrr_add +EXPORT_SYMBOL vmlinux 0x72cf0ace skb_checksum_help +EXPORT_SYMBOL vmlinux 0x72d544f8 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72d77f22 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x72df2f2a up_read +EXPORT_SYMBOL vmlinux 0x72e2bc4f input_close_device +EXPORT_SYMBOL vmlinux 0x72e50086 vm_stat +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ebda65 journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x730a1a58 irq_set_chip +EXPORT_SYMBOL vmlinux 0x730ff363 param_set_uint +EXPORT_SYMBOL vmlinux 0x731e35af rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x73260931 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x732b7833 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x7362dd1e vfs_fstat +EXPORT_SYMBOL vmlinux 0x736c79dc param_get_byte +EXPORT_SYMBOL vmlinux 0x73767b71 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x737de5e9 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x7383a455 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x7384ee47 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x738803e6 strnlen +EXPORT_SYMBOL vmlinux 0x73a903c4 vfsmount_lock_local_lock +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e3c9ea free_netdev +EXPORT_SYMBOL vmlinux 0x73f11212 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x74042b19 dev_set_group +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x741a6e22 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x745b50ae netdev_class_create_file +EXPORT_SYMBOL vmlinux 0x7469fcfe radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74a45b64 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x74c0b10f address_space_init_once +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cc1cbe unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x74d80856 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x74fa53a8 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x75057721 inet_twsk_deschedule +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x750d5538 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x751b2247 param_get_bool +EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754a5d82 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x754c8c5d make_EII_client +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75ab991e input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x75bb675a finish_wait +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d77139 genl_register_family_with_ops +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760b437a unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x761dc9ae __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x7628f3c7 this_cpu_off +EXPORT_SYMBOL vmlinux 0x762c6b49 __mutex_init +EXPORT_SYMBOL vmlinux 0x763758a1 register_cdrom +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x76584577 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x7661f32b netdev_info +EXPORT_SYMBOL vmlinux 0x7674715c xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76bf656d __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e96ecf jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x76fb8c7a vsc824x_add_skew +EXPORT_SYMBOL vmlinux 0x77075596 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772f9eec __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x773a9c94 blk_iopoll_enabled +EXPORT_SYMBOL vmlinux 0x773a9f2e names_cachep +EXPORT_SYMBOL vmlinux 0x777539b7 cpu_info +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a2dd5d mca_bus_type +EXPORT_SYMBOL vmlinux 0x77a335c7 redraw_screen +EXPORT_SYMBOL vmlinux 0x77a59839 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77df0847 __set_personality +EXPORT_SYMBOL vmlinux 0x77e63364 softnet_data +EXPORT_SYMBOL vmlinux 0x77ecac9f zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x77edf722 schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x77fa5d1f ns_to_timespec +EXPORT_SYMBOL vmlinux 0x7812f095 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x7820dae7 netif_rx +EXPORT_SYMBOL vmlinux 0x784a3587 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x7853b053 sk_common_release +EXPORT_SYMBOL vmlinux 0x785bec2c jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x785daa5c register_con_driver +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788f6b3d security_path_symlink +EXPORT_SYMBOL vmlinux 0x7893dca6 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x78af506d padata_stop +EXPORT_SYMBOL vmlinux 0x78bb2011 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x790d80f5 kdb_current_task +EXPORT_SYMBOL vmlinux 0x790ecdb0 km_query +EXPORT_SYMBOL vmlinux 0x7921a0e0 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x7931aafc __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x7933d24d sock_no_poll +EXPORT_SYMBOL vmlinux 0x793d4fe6 __serio_register_port +EXPORT_SYMBOL vmlinux 0x7942f452 generic_writepages +EXPORT_SYMBOL vmlinux 0x794487ee disable_hlt +EXPORT_SYMBOL vmlinux 0x7961b08b jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x796c3d87 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79a3ba98 journal_init_dev +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79bb809e pci_read_vpd +EXPORT_SYMBOL vmlinux 0x79c80a32 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x79d47df6 tcp_v4_tw_get_peer +EXPORT_SYMBOL vmlinux 0x79e6e7e8 vfs_read +EXPORT_SYMBOL vmlinux 0x79f612e9 module_refcount +EXPORT_SYMBOL vmlinux 0x7a0af4ac __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7a1390f7 param_set_bool +EXPORT_SYMBOL vmlinux 0x7a1f7948 skb_unlink +EXPORT_SYMBOL vmlinux 0x7a23d3e0 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x7a27c184 ewma_init +EXPORT_SYMBOL vmlinux 0x7a375bfa blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x7a3845f6 writeback_inodes_sb_if_idle +EXPORT_SYMBOL vmlinux 0x7a3b002e journal_restart +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a50a315 files_lglock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x7a64108a set_anon_super +EXPORT_SYMBOL vmlinux 0x7a6efd10 tty_port_init +EXPORT_SYMBOL vmlinux 0x7a9bf88d udplite_table +EXPORT_SYMBOL vmlinux 0x7aa81449 tcf_hash_release +EXPORT_SYMBOL vmlinux 0x7adf6613 input_allocate_device +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b03848a verify_mem_not_deleted +EXPORT_SYMBOL vmlinux 0x7b0c84c4 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7b0dc466 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name +EXPORT_SYMBOL vmlinux 0x7b149010 kern_path +EXPORT_SYMBOL vmlinux 0x7b1a0332 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x7b203e1d abx500_register_ops +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b553e35 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x7b56bd05 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x7b5b5a2b tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7b5b7779 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x7b65a80f jbd2_journal_update_format +EXPORT_SYMBOL vmlinux 0x7b9263ea ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x7b9a6116 intel_agp_enabled +EXPORT_SYMBOL vmlinux 0x7ba04629 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x7ba94f95 d_move +EXPORT_SYMBOL vmlinux 0x7bd79cb6 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7befa88d udp_seq_open +EXPORT_SYMBOL vmlinux 0x7bf1e073 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x7c104d7e pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x7c206e46 generic_write_sync +EXPORT_SYMBOL vmlinux 0x7c210f56 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7c219aee __alloc_skb +EXPORT_SYMBOL vmlinux 0x7c35200d netdev_warn +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4cf418 ip_cmsg_recv +EXPORT_SYMBOL vmlinux 0x7c60d66e getname +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c8f22dc __napi_schedule +EXPORT_SYMBOL vmlinux 0x7c904ded unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x7c97b35d ethtool_op_set_flags +EXPORT_SYMBOL vmlinux 0x7ca6d90c pci_match_id +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7ce0ae7c param_get_long +EXPORT_SYMBOL vmlinux 0x7cf94bcb padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x7d0f56d6 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d12119c dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x7d3e8b75 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x7d469c9d fb_show_logo +EXPORT_SYMBOL vmlinux 0x7d5242fd alloc_fddidev +EXPORT_SYMBOL vmlinux 0x7d6c1c74 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x7d8140b7 uart_match_port +EXPORT_SYMBOL vmlinux 0x7d97e1a3 current_fs_time +EXPORT_SYMBOL vmlinux 0x7dadd457 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x7dbb4c1d scsi_put_command +EXPORT_SYMBOL vmlinux 0x7dbc1600 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dc206df blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x7de866c7 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df9ab41 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x7e1805b7 create_proc_entry +EXPORT_SYMBOL vmlinux 0x7e1d17cf atomic64_read_cx8 +EXPORT_SYMBOL vmlinux 0x7e394c4e sysctl_local_reserved_ports +EXPORT_SYMBOL vmlinux 0x7e565f9c bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x7e6364e1 get_disk +EXPORT_SYMBOL vmlinux 0x7e9da58a __page_symlink +EXPORT_SYMBOL vmlinux 0x7e9ebb05 kernel_thread +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7efc4eb0 dma_ops +EXPORT_SYMBOL vmlinux 0x7f18b194 kacpi_hotplug_wq +EXPORT_SYMBOL vmlinux 0x7f2254ed bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f54e718 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x7f658e80 _raw_write_lock +EXPORT_SYMBOL vmlinux 0x7f669992 qdisc_tree_decrease_qlen +EXPORT_SYMBOL vmlinux 0x7fc9bf15 phy_connect +EXPORT_SYMBOL vmlinux 0x7fd0f954 sock_no_getname +EXPORT_SYMBOL vmlinux 0x800df1d7 groups_free +EXPORT_SYMBOL vmlinux 0x8015ee50 sock_rfree +EXPORT_SYMBOL vmlinux 0x801cf88b swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x802255e3 __block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x80301096 acpi_bus_add +EXPORT_SYMBOL vmlinux 0x80387db8 vc_resize +EXPORT_SYMBOL vmlinux 0x806472cf bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x806964cb nf_log_packet +EXPORT_SYMBOL vmlinux 0x808af8d4 pnp_find_card +EXPORT_SYMBOL vmlinux 0x8096b59e register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x80a3449f xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x80a35a77 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x80af5790 mca_device_set_name +EXPORT_SYMBOL vmlinux 0x80becf24 ip_xfrm_me_harder +EXPORT_SYMBOL vmlinux 0x80ec445c get_gendisk +EXPORT_SYMBOL vmlinux 0x80fd08f9 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x80fd1887 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x810b3618 param_ops_string +EXPORT_SYMBOL vmlinux 0x81129869 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x812fdb7e jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x8130d791 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x81317012 tmem_enabled +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x8150c0ba mempool_resize +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x815f8bea __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x8173455f inet_frags_fini +EXPORT_SYMBOL vmlinux 0x818bd5bf read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x819e1c25 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x81a386e1 kobject_init +EXPORT_SYMBOL vmlinux 0x81a5e22a kobject_del +EXPORT_SYMBOL vmlinux 0x81a705a7 input_register_handle +EXPORT_SYMBOL vmlinux 0x81d0ec74 kill_fasync +EXPORT_SYMBOL vmlinux 0x81d10f5f trace_seq_putc +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82034bdc posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820b4aa0 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x8235805b memmove +EXPORT_SYMBOL vmlinux 0x8251bcc3 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x8256666e dcache_dir_close +EXPORT_SYMBOL vmlinux 0x8258d6d8 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x8260686f bitmap_find_next_zero_area +EXPORT_SYMBOL vmlinux 0x827b75f9 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x82a078a3 llc_set_station_handler +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b83592 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x82d5ccb0 journal_update_format +EXPORT_SYMBOL vmlinux 0x82de5d3b pci_release_regions +EXPORT_SYMBOL vmlinux 0x82dff540 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x82e8f3f3 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x82ff5b87 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x83079b24 __dev_printk +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x833112a9 km_policy_notify +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x8343cd74 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x836873a2 proc_dointvec +EXPORT_SYMBOL vmlinux 0x83699014 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x836c9690 dev_mc_add +EXPORT_SYMBOL vmlinux 0x837b4371 agp_free_memory +EXPORT_SYMBOL vmlinux 0x83800bfa kref_init +EXPORT_SYMBOL vmlinux 0x8384a2c5 tty_unlock +EXPORT_SYMBOL vmlinux 0x83880e9c dev_deactivate +EXPORT_SYMBOL vmlinux 0x838c65ca inode_get_bytes +EXPORT_SYMBOL vmlinux 0x83a476ce bitmap_scnlistprintf +EXPORT_SYMBOL vmlinux 0x83dde02f spi_attach_transport +EXPORT_SYMBOL vmlinux 0x83e44af7 bioset_free +EXPORT_SYMBOL vmlinux 0x83f65711 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x84208767 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x842cc160 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x8436f8e3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x8446b626 tty_kref_put +EXPORT_SYMBOL vmlinux 0x8446cf50 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x8461ad69 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x8467d01c jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x846bcc01 dm_table_get +EXPORT_SYMBOL vmlinux 0x8473bd9c jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x849be2bf pci_pme_capable +EXPORT_SYMBOL vmlinux 0x84bacf0d __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x84bd813c rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x84be886f completion_done +EXPORT_SYMBOL vmlinux 0x84d4e850 tcp_check_req +EXPORT_SYMBOL vmlinux 0x84fcc5fc inet_add_protocol +EXPORT_SYMBOL vmlinux 0x85047b1f xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x850c4ddd genl_unregister_family +EXPORT_SYMBOL vmlinux 0x851cd796 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x852617b5 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x85476883 __lock_buffer +EXPORT_SYMBOL vmlinux 0x854da01a scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85822bbf dquot_commit +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bc4a3b nobh_writepage +EXPORT_SYMBOL vmlinux 0x85c183d1 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x85c377bc netif_receive_skb +EXPORT_SYMBOL vmlinux 0x85cef45d kern_unmount +EXPORT_SYMBOL vmlinux 0x85d16790 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85dfb05b __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x85e6dc7d genl_register_family +EXPORT_SYMBOL vmlinux 0x85e7deb2 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x85e90336 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x860f14e6 __nla_reserve +EXPORT_SYMBOL vmlinux 0x86285bb7 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x86319e85 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x86346e1f kmem_cache_free +EXPORT_SYMBOL vmlinux 0x86348e1a generic_permission +EXPORT_SYMBOL vmlinux 0x8640a237 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x867bfbb7 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8699933a unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x869f5152 arp_invalidate +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86b428b1 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x86b9c0ef textsearch_prepare +EXPORT_SYMBOL vmlinux 0x86bf43c1 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x86bfae20 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x86c2b124 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x86d5255f _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8707e1ea ether_setup +EXPORT_SYMBOL vmlinux 0x870bf928 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872ffc82 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x8734723e blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x8738fb6c thermal_zone_device_update +EXPORT_SYMBOL vmlinux 0x87392639 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x87560435 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x875e7014 simple_link +EXPORT_SYMBOL vmlinux 0x8760c343 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87f6ea06 user_revoke +EXPORT_SYMBOL vmlinux 0x881039d0 zlib_inflate +EXPORT_SYMBOL vmlinux 0x8834396c mod_timer +EXPORT_SYMBOL vmlinux 0x88646107 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x886f7770 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x889a5f62 fib_default_rule_pref +EXPORT_SYMBOL vmlinux 0x88b9b37a blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x88c9e553 scsi_device_put +EXPORT_SYMBOL vmlinux 0x88e181da __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x88ed0505 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x890ffaed security_path_unlink +EXPORT_SYMBOL vmlinux 0x891449a6 secpath_dup +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x8931d996 skb_insert +EXPORT_SYMBOL vmlinux 0x8949858b schedule_work +EXPORT_SYMBOL vmlinux 0x895e47ba max8998_write_reg +EXPORT_SYMBOL vmlinux 0x897473df mktime +EXPORT_SYMBOL vmlinux 0x897a5350 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b09af7 pci_release_region +EXPORT_SYMBOL vmlinux 0x89b140a7 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d66811 build_ehash_secret +EXPORT_SYMBOL vmlinux 0x8a1615d6 mempool_create_node +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a56a687 dev_mc_del +EXPORT_SYMBOL vmlinux 0x8a5e05b4 tcf_hash_lookup +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a82e578 proc_create_data +EXPORT_SYMBOL vmlinux 0x8a93b57a ida_destroy +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9d8b5e pcim_pin_device +EXPORT_SYMBOL vmlinux 0x8ad7ad2d amd_northbridges +EXPORT_SYMBOL vmlinux 0x8ada173c blk_queue_merge_bvec +EXPORT_SYMBOL vmlinux 0x8ada7e0a skb_pull +EXPORT_SYMBOL vmlinux 0x8affa976 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll +EXPORT_SYMBOL vmlinux 0x8b1a7a66 pcie_aspm_enabled +EXPORT_SYMBOL vmlinux 0x8b1d488b pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x8b217b16 ps2_command +EXPORT_SYMBOL vmlinux 0x8b278406 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x8b299456 nobh_write_end +EXPORT_SYMBOL vmlinux 0x8b2dfffc filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b5f4a2e IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b626645 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x8b6456ae nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x8b8e23c4 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x8b912441 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8ba61c8d xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x8bb599f6 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x8bb92f21 md_error +EXPORT_SYMBOL vmlinux 0x8bfcbc35 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c279627 generic_file_open +EXPORT_SYMBOL vmlinux 0x8c2f77b3 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x8c39d215 generic_file_buffered_write +EXPORT_SYMBOL vmlinux 0x8c4dbcc2 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x8c52123c bdi_register_dev +EXPORT_SYMBOL vmlinux 0x8c592a3c skb_queue_head +EXPORT_SYMBOL vmlinux 0x8c83ad40 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x8c90c2c9 intel_gtt_insert_pages +EXPORT_SYMBOL vmlinux 0x8c93df8e gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8cc4f7fd tcf_hash_destroy +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cd8523b fb_set_suspend +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ce302db generic_file_aio_read +EXPORT_SYMBOL vmlinux 0x8d06f36c tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x8d546088 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d5aa2cc do_splice_from +EXPORT_SYMBOL vmlinux 0x8d662712 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d8ab3e4 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d9e62fd locks_delete_block +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8dbd2eb8 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e08db26 generic_listxattr +EXPORT_SYMBOL vmlinux 0x8e0a2785 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x8e0b7743 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x8e1d32b6 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x8e2208d4 fsync_bdev +EXPORT_SYMBOL vmlinux 0x8e4e6488 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x8e555738 param_get_uint +EXPORT_SYMBOL vmlinux 0x8e75a30b kset_unregister +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8eb141f1 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x8ebe90a1 register_key_type +EXPORT_SYMBOL vmlinux 0x8edf2abb mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x8ee69235 timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8ee7bc1b i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x8f040051 pnp_is_active +EXPORT_SYMBOL vmlinux 0x8f110738 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f27339c mca_device_read_stored_pos +EXPORT_SYMBOL vmlinux 0x8f4575cd vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x8f48679a rb_prev +EXPORT_SYMBOL vmlinux 0x8f4c445f __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x8f993d30 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fc7f839 param_set_charp +EXPORT_SYMBOL vmlinux 0x8fc86799 genl_register_ops +EXPORT_SYMBOL vmlinux 0x8fd0af7c blk_get_queue +EXPORT_SYMBOL vmlinux 0x8fe64ba3 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops +EXPORT_SYMBOL vmlinux 0x8ff66782 param_get_ushort +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x900ebc9b pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x9088e0cb __dst_free +EXPORT_SYMBOL vmlinux 0x908d1867 security_path_mknod +EXPORT_SYMBOL vmlinux 0x90a1601f dmi_check_system +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90cbf0e7 d_set_d_op +EXPORT_SYMBOL vmlinux 0x90e8f9df tty_unthrottle +EXPORT_SYMBOL vmlinux 0x90f13632 proc_dostring +EXPORT_SYMBOL vmlinux 0x90f50e85 ps2_init +EXPORT_SYMBOL vmlinux 0x9133b3a6 ip_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x913a3330 mpage_readpage +EXPORT_SYMBOL vmlinux 0x9144a8e2 ec_burst_disable +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x916d68e8 dcb_getapp +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x919e0654 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x91d5a808 serio_interrupt +EXPORT_SYMBOL vmlinux 0x91e61b65 pci_dev_get +EXPORT_SYMBOL vmlinux 0x921bb6d3 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x9221433c abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x922c1c3d generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924030b4 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x924dd7a6 register_framebuffer +EXPORT_SYMBOL vmlinux 0x9274e6b7 fb_find_mode +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x92a05f3d idr_get_new +EXPORT_SYMBOL vmlinux 0x92a87fa5 journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x92b00c57 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x92bb2e74 tty_write_room +EXPORT_SYMBOL vmlinux 0x92d1e190 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x92f8022c phy_start_aneg +EXPORT_SYMBOL vmlinux 0x930559e2 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931eff4d mmc_detect_change +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9323ebc3 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x9331365d proc_mkdir +EXPORT_SYMBOL vmlinux 0x93448c57 screen_info +EXPORT_SYMBOL vmlinux 0x93762d54 key_task_permission +EXPORT_SYMBOL vmlinux 0x93953182 tcf_em_register +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93c3f0a0 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x93c651be acpi_info +EXPORT_SYMBOL vmlinux 0x93c9cb50 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x94078b96 generic_file_aio_write +EXPORT_SYMBOL vmlinux 0x941dcfcb nlmsg_notify +EXPORT_SYMBOL vmlinux 0x941ed3f8 prepare_creds +EXPORT_SYMBOL vmlinux 0x945e824e put_mnt_ns +EXPORT_SYMBOL vmlinux 0x946a2972 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x946a5b4d kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x946abbe3 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x948413d8 fb_blank +EXPORT_SYMBOL vmlinux 0x94864c7a wl12xx_get_platform_data +EXPORT_SYMBOL vmlinux 0x94892821 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94975774 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x94a689f3 thermal_cooling_device_register +EXPORT_SYMBOL vmlinux 0x94aabb06 journal_force_commit +EXPORT_SYMBOL vmlinux 0x94af87c2 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94c8c66d pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x94fcd2c1 account_page_writeback +EXPORT_SYMBOL vmlinux 0x950c7e5f scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x952e760e dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x953db383 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x954488a4 syncookie_secret +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95660fc5 find_vma +EXPORT_SYMBOL vmlinux 0x956d34e4 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x9580f7bc vm_event_states +EXPORT_SYMBOL vmlinux 0x95aecce7 lease_modify +EXPORT_SYMBOL vmlinux 0x95b78685 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x95d601ea tcp_shutdown +EXPORT_SYMBOL vmlinux 0x95f82c37 vfs_symlink +EXPORT_SYMBOL vmlinux 0x95f89a33 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x9600168c kobject_add +EXPORT_SYMBOL vmlinux 0x9607b206 do_SAK +EXPORT_SYMBOL vmlinux 0x960a3c1c find_inode_number +EXPORT_SYMBOL vmlinux 0x96110091 padata_alloc +EXPORT_SYMBOL vmlinux 0x962317d0 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x962bcbac invalidate_partition +EXPORT_SYMBOL vmlinux 0x962c314f km_state_notify +EXPORT_SYMBOL vmlinux 0x963d79bb netif_napi_add +EXPORT_SYMBOL vmlinux 0x9644bb6f xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x9657a61c check_disk_size_change +EXPORT_SYMBOL vmlinux 0x96597bce filemap_flush +EXPORT_SYMBOL vmlinux 0x965b1415 d_clear_need_lookup +EXPORT_SYMBOL vmlinux 0x9661408b sock_create_lite +EXPORT_SYMBOL vmlinux 0x9668217e scsi_get_command +EXPORT_SYMBOL vmlinux 0x967760f5 padata_start +EXPORT_SYMBOL vmlinux 0x96805377 acpi_bus_generate_proc_event +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x9695e479 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x9696ac72 rename_lock +EXPORT_SYMBOL vmlinux 0x96a592f6 seq_puts +EXPORT_SYMBOL vmlinux 0x96c37fb5 tcp_v4_md5_do_add +EXPORT_SYMBOL vmlinux 0x96c5574e phy_disconnect +EXPORT_SYMBOL vmlinux 0x96c7e43b seq_printf +EXPORT_SYMBOL vmlinux 0x96ca9fbe dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d07ecf sk_wait_data +EXPORT_SYMBOL vmlinux 0x96d1f2a7 mmc_assume_removable +EXPORT_SYMBOL vmlinux 0x96d3e1e8 xfrm_input +EXPORT_SYMBOL vmlinux 0x96e79739 idr_get_new_above +EXPORT_SYMBOL vmlinux 0x96fd3db7 netif_device_attach +EXPORT_SYMBOL vmlinux 0x96fe9699 block_write_end +EXPORT_SYMBOL vmlinux 0x97069598 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x971eb5ba journal_abort +EXPORT_SYMBOL vmlinux 0x9726063f sk_filter +EXPORT_SYMBOL vmlinux 0x9738c7e7 mount_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97738525 thaw_bdev +EXPORT_SYMBOL vmlinux 0x9787e2ee xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x978b756f ilookup +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97aa037a ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x97b4497a block_write_full_page_endio +EXPORT_SYMBOL vmlinux 0x97bdea2a phy_detach +EXPORT_SYMBOL vmlinux 0x97cf8823 d_find_alias +EXPORT_SYMBOL vmlinux 0x97dcef29 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x9801f8cc vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x98488596 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x9852172f neigh_compat_output +EXPORT_SYMBOL vmlinux 0x986578e9 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x986ad43b neigh_destroy +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9879932f udp_disconnect +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98a7cda5 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x98aa5b1f scsi_print_sense +EXPORT_SYMBOL vmlinux 0x98ad9224 alloc_tty_driver +EXPORT_SYMBOL vmlinux 0x98b1d7b6 journal_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x98c1cb3a simple_release_fs +EXPORT_SYMBOL vmlinux 0x98fa21b0 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x98fab251 vm_map_ram +EXPORT_SYMBOL vmlinux 0x9903ab4c locks_free_lock +EXPORT_SYMBOL vmlinux 0x99052a84 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x9933beb2 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x994a2d2a bdget +EXPORT_SYMBOL vmlinux 0x99525e3a vfsmount_lock_local_unlock +EXPORT_SYMBOL vmlinux 0x995aeda1 vga_put +EXPORT_SYMBOL vmlinux 0x995fc7bb kick_iocb +EXPORT_SYMBOL vmlinux 0x99601c95 block_read_full_page +EXPORT_SYMBOL vmlinux 0x996464ab scsi_remove_host +EXPORT_SYMBOL vmlinux 0x997e77de bitmap_unplug +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a3b02d dentry_unhash +EXPORT_SYMBOL vmlinux 0x99ac2c96 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x99bfbe39 get_unused_fd +EXPORT_SYMBOL vmlinux 0x99c61e6b path_put +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x9a1794e2 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a47f201 revalidate_disk +EXPORT_SYMBOL vmlinux 0x9a57534d blk_get_request +EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock +EXPORT_SYMBOL vmlinux 0x9a87f92e netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x9aa56d4e spi_dv_device +EXPORT_SYMBOL vmlinux 0x9ab8808c param_get_charp +EXPORT_SYMBOL vmlinux 0x9b0dfa29 __netif_schedule +EXPORT_SYMBOL vmlinux 0x9b0e7bd7 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x9b2f48e4 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x9b32be35 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b5f43b4 fput +EXPORT_SYMBOL vmlinux 0x9b604f4c cdev_add +EXPORT_SYMBOL vmlinux 0x9b6735f2 skb_copy_datagram_from_iovec +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b7553ed serio_open +EXPORT_SYMBOL vmlinux 0x9b75cb81 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x9b7db57d noop_llseek +EXPORT_SYMBOL vmlinux 0x9ba4efa4 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bcd1c34 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x9bea5682 md_write_start +EXPORT_SYMBOL vmlinux 0x9bf68e21 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x9c012508 fb_parse_edid +EXPORT_SYMBOL vmlinux 0x9c07bb26 dev_warn +EXPORT_SYMBOL vmlinux 0x9c11d36c acpi_device_hid +EXPORT_SYMBOL vmlinux 0x9c23a8ba journal_check_used_features +EXPORT_SYMBOL vmlinux 0x9c23bcba atomic64_add_return_cx8 +EXPORT_SYMBOL vmlinux 0x9c28f5bb pci_set_mwi +EXPORT_SYMBOL vmlinux 0x9c2ae854 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero +EXPORT_SYMBOL vmlinux 0x9c388c50 pci_iomap +EXPORT_SYMBOL vmlinux 0x9c416858 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x9c468320 wireless_send_event +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5f81da cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x9c60b306 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x9c6ca133 mdiobus_free +EXPORT_SYMBOL vmlinux 0x9c7077bd enable_hlt +EXPORT_SYMBOL vmlinux 0x9c7de1ef blkdev_put +EXPORT_SYMBOL vmlinux 0x9c8bafc8 set_binfmt +EXPORT_SYMBOL vmlinux 0x9c8ecd26 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0x9c99668b vmtruncate +EXPORT_SYMBOL vmlinux 0x9c9a1284 sk_free +EXPORT_SYMBOL vmlinux 0x9c9dd324 neigh_update +EXPORT_SYMBOL vmlinux 0x9cb96e92 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x9cbe32ee page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x9cca8299 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x9cdf0ec5 vfsmount_lock_global_lock_online +EXPORT_SYMBOL vmlinux 0x9ceb163c memcpy_toiovec +EXPORT_SYMBOL vmlinux 0x9cf977d7 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x9cfd56c5 scsi_print_status +EXPORT_SYMBOL vmlinux 0x9d09026d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x9d227349 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d44a233 bh_submit_read +EXPORT_SYMBOL vmlinux 0x9d46e197 scsi_host_put +EXPORT_SYMBOL vmlinux 0x9d49103b blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x9d5175fa ip_setsockopt +EXPORT_SYMBOL vmlinux 0x9d7e96d3 elv_rb_add +EXPORT_SYMBOL vmlinux 0x9d831567 mmc_regulator_set_ocr +EXPORT_SYMBOL vmlinux 0x9dc08199 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x9dcb6748 atomic64_xchg_cx8 +EXPORT_SYMBOL vmlinux 0x9dfeb2df pci_do_scan_bus +EXPORT_SYMBOL vmlinux 0x9e097ae4 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0d49db poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x9e2000a7 memcpy_toiovecend +EXPORT_SYMBOL vmlinux 0x9e20eaf0 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4133c3 neigh_table_init +EXPORT_SYMBOL vmlinux 0x9e4b3747 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e607910 audit_log +EXPORT_SYMBOL vmlinux 0x9e617cbb ab3100_event_register +EXPORT_SYMBOL vmlinux 0x9e621907 no_llseek +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e915aea ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x9e9f1714 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x9ea0ad49 __sg_free_table +EXPORT_SYMBOL vmlinux 0x9eb0f7e0 pm860x_page_bulk_write +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ed48b86 vfs_llseek +EXPORT_SYMBOL vmlinux 0x9ed685ee iov_iter_advance +EXPORT_SYMBOL vmlinux 0x9ee26cce bio_integrity_tag_size +EXPORT_SYMBOL vmlinux 0x9eecde16 do_brk +EXPORT_SYMBOL vmlinux 0x9f2bdaac __bitmap_or +EXPORT_SYMBOL vmlinux 0x9f2d4bfb __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f491e5d ftrace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x9f5f15ce __free_pages +EXPORT_SYMBOL vmlinux 0x9f838b41 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x9f86494c scsi_reset_provider +EXPORT_SYMBOL vmlinux 0x9f90b565 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x9f939fa8 file_remove_suid +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9c1cfd skb_set_dev +EXPORT_SYMBOL vmlinux 0x9fa851d0 lookup_one_len +EXPORT_SYMBOL vmlinux 0x9fb2aa48 otg_set_transceiver +EXPORT_SYMBOL vmlinux 0x9fb3dd30 memcpy_fromiovec +EXPORT_SYMBOL vmlinux 0x9fbb57d2 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x9fcd7f53 netdev_state_change +EXPORT_SYMBOL vmlinux 0x9fd29b6b pci_vpd_truncate +EXPORT_SYMBOL vmlinux 0x9fd9d400 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff8adda vfs_mkdir +EXPORT_SYMBOL vmlinux 0xa02d6774 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04b245e simple_setattr +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa072c77d writeback_inodes_sb_nr_if_idle +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa0a83c6c tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xa0aa710b mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c14dee mmc_can_reset +EXPORT_SYMBOL vmlinux 0xa0ceef51 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xa0e11bdf agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1176147 pci_clear_master +EXPORT_SYMBOL vmlinux 0xa118c60f cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12b43ba qdisc_watchdog_schedule +EXPORT_SYMBOL vmlinux 0xa1326b10 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xa14f3d8c ewma_add +EXPORT_SYMBOL vmlinux 0xa16b1085 scsi_init_io +EXPORT_SYMBOL vmlinux 0xa1715001 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa1805d2a otg_put_transceiver +EXPORT_SYMBOL vmlinux 0xa19eda5e nf_afinfo +EXPORT_SYMBOL vmlinux 0xa1a2bba2 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xa1a8e7dd locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xa1b1ea3a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xa1b26357 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1b85a07 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xa1ba2fdb vfsmount_lock_global_lock +EXPORT_SYMBOL vmlinux 0xa1c4632a dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xa1c5a3b3 cleancache_enabled +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d31239 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xa1f61226 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xa20ce1b8 net_msg_warn +EXPORT_SYMBOL vmlinux 0xa2233988 scsi_setup_fs_cmnd +EXPORT_SYMBOL vmlinux 0xa23861c5 dquot_transfer +EXPORT_SYMBOL vmlinux 0xa26f6f4a pci_choose_state +EXPORT_SYMBOL vmlinux 0xa27484e7 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa290feb9 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xa2a5fd77 inet_ehash_secret +EXPORT_SYMBOL vmlinux 0xa2a8c8c2 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xa2abe2c2 dev_gro_receive +EXPORT_SYMBOL vmlinux 0xa2c56c31 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa2da7af4 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xa2dcea84 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xa2ef34d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xa32629f6 dns_query +EXPORT_SYMBOL vmlinux 0xa332cdd1 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa336e637 agp_bridge +EXPORT_SYMBOL vmlinux 0xa3438ba1 bdev_read_only +EXPORT_SYMBOL vmlinux 0xa34f1ef5 crc32_le +EXPORT_SYMBOL vmlinux 0xa3504378 rwsem_wake +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa3516645 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xa3586c41 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xa35de80f ipv4_config +EXPORT_SYMBOL vmlinux 0xa363dab4 udp_table +EXPORT_SYMBOL vmlinux 0xa3794560 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xa380fb0b get_io_context +EXPORT_SYMBOL vmlinux 0xa3a9f975 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xa3b71417 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xa3cea1a6 __put_cred +EXPORT_SYMBOL vmlinux 0xa3d08a5a tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xa3de105c pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xa3f52e9a crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xa40f4a12 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xa415aff8 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xa425be23 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xa42a774b ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa43b9539 memcpy_fromiovecend +EXPORT_SYMBOL vmlinux 0xa47a5bb0 path_get +EXPORT_SYMBOL vmlinux 0xa47dbe56 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xa49d81e6 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xa49f504a netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xa4a05eae rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c7d6f0 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4eb4eff _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa4f44685 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xa4fdfe10 write_cache_pages +EXPORT_SYMBOL vmlinux 0xa51596a5 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP +EXPORT_SYMBOL vmlinux 0xa5208416 pipe_lock +EXPORT_SYMBOL vmlinux 0xa52343f1 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xa5365f38 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xa56619f4 mmc_cache_ctrl +EXPORT_SYMBOL vmlinux 0xa57d31bc generic_fillattr +EXPORT_SYMBOL vmlinux 0xa5869f5c pci_fixup_device +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5aec8b2 input_set_capability +EXPORT_SYMBOL vmlinux 0xa5c77234 release_firmware +EXPORT_SYMBOL vmlinux 0xa5d7f962 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xa5da0abd acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0xa5de081b inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa6064db5 dma_async_memcpy_buf_to_pg +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa65ef254 km_report +EXPORT_SYMBOL vmlinux 0xa6603c22 blk_init_queue +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67da660 mempool_alloc +EXPORT_SYMBOL vmlinux 0xa67e2845 dq_data_lock +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6b13658 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xa6ba939f pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xa6dcc773 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa6f8ecc7 sock_no_bind +EXPORT_SYMBOL vmlinux 0xa70ad971 ethtool_op_get_ufo +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa71b2c72 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xa71e7463 __first_cpu +EXPORT_SYMBOL vmlinux 0xa7259c42 ethtool_op_get_tx_csum +EXPORT_SYMBOL vmlinux 0xa730817c jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xa7515ade md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xa759563d kill_anon_super +EXPORT_SYMBOL vmlinux 0xa76075fa file_update_time +EXPORT_SYMBOL vmlinux 0xa773cfb6 ata_print_version +EXPORT_SYMBOL vmlinux 0xa7a8d53e bdevname +EXPORT_SYMBOL vmlinux 0xa813dec2 vfs_readv +EXPORT_SYMBOL vmlinux 0xa813e328 bio_pair_release +EXPORT_SYMBOL vmlinux 0xa8223905 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa8232c78 strtobool +EXPORT_SYMBOL vmlinux 0xa82349f7 journal_extend +EXPORT_SYMBOL vmlinux 0xa8371bae add_disk +EXPORT_SYMBOL vmlinux 0xa83c6858 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xa8417b5e truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xa843e6c3 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xa85eda9c swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xa8a6f639 __check_region +EXPORT_SYMBOL vmlinux 0xa8b461aa kernel_getsockname +EXPORT_SYMBOL vmlinux 0xa8bfbc3c i2c_use_client +EXPORT_SYMBOL vmlinux 0xa8d68abd acpi_warning +EXPORT_SYMBOL vmlinux 0xa8d9f571 lro_flush_pkt +EXPORT_SYMBOL vmlinux 0xa8e89f17 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xa8f4ac3f neigh_seq_start +EXPORT_SYMBOL vmlinux 0xa8fb6345 pnp_find_dev +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa918c518 read_cache_pages +EXPORT_SYMBOL vmlinux 0xa91b5561 acpi_video_backlight_support +EXPORT_SYMBOL vmlinux 0xa9405fd3 input_get_keycode +EXPORT_SYMBOL vmlinux 0xa956118b nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xa967eb14 mmc_erase +EXPORT_SYMBOL vmlinux 0xa96caa11 pcim_iomap +EXPORT_SYMBOL vmlinux 0xa96f9535 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xa971103b seq_path +EXPORT_SYMBOL vmlinux 0xa9aa1170 vfs_readlink +EXPORT_SYMBOL vmlinux 0xa9c1b627 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xa9d87dbd scsi_scan_host +EXPORT_SYMBOL vmlinux 0xa9da541c ethtool_op_get_flags +EXPORT_SYMBOL vmlinux 0xa9e37dc5 i2c_master_send +EXPORT_SYMBOL vmlinux 0xa9f2fbe6 ipv4_specific +EXPORT_SYMBOL vmlinux 0xaa130e36 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xaa1a416b do_sync_read +EXPORT_SYMBOL vmlinux 0xaa36fb07 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xaa42713a iget_failed +EXPORT_SYMBOL vmlinux 0xaa4806e1 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xaa6388a5 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa84a8ae acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xaa8ea24b dev_get_by_flags_rcu +EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xaab9f7e7 node_states +EXPORT_SYMBOL vmlinux 0xaac18794 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xaac94312 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadc7e3e in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaebe34f mca_write_pos +EXPORT_SYMBOL vmlinux 0xaaf45875 acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab20cbe7 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xab28271c i8253_lock +EXPORT_SYMBOL vmlinux 0xab53630f dcache_dir_open +EXPORT_SYMBOL vmlinux 0xab585dd0 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab644581 ip_route_input_common +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab7d3e57 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xab81e093 write_one_page +EXPORT_SYMBOL vmlinux 0xab8c3b82 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xaba4cb63 generic_make_request +EXPORT_SYMBOL vmlinux 0xaba7ed15 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xabb9ad25 generic_write_checks +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcc0148 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xabd0c91c rtc_time_to_tm +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac17b6bd napi_skb_finish +EXPORT_SYMBOL vmlinux 0xac2fc3d5 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xac35daa6 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xac406045 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xac51a435 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xac58ea5e acpi_unload_table_id +EXPORT_SYMBOL vmlinux 0xac5e039f input_flush_device +EXPORT_SYMBOL vmlinux 0xac6855b0 gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xac6878e4 atomic64_inc_return_cx8 +EXPORT_SYMBOL vmlinux 0xac78f3e3 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xac98093c blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xaca7f36a skb_free_datagram +EXPORT_SYMBOL vmlinux 0xacb7ca1c release_sock +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xace3dac4 follow_up +EXPORT_SYMBOL vmlinux 0xacee9829 dev_notice +EXPORT_SYMBOL vmlinux 0xacf151db eth_header +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf5f80f scsi_host_get +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad07f027 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xad13c689 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xad466018 quota_send_warning +EXPORT_SYMBOL vmlinux 0xad60745b inet_del_protocol +EXPORT_SYMBOL vmlinux 0xad7480b5 mca_device_claimed +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xadaa2657 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0xadcac4a3 vfsmount_lock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xade453a2 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xade59272 journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xadebc32c thermal_zone_device_register +EXPORT_SYMBOL vmlinux 0xadf39c7a call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xae1109fc kfree_skb +EXPORT_SYMBOL vmlinux 0xae46e385 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xae71b01b scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xae7e9742 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xae932e6a udp_proc_register +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaeaa1e95 sk_stream_error +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaf359df7 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xaf3b0db2 elv_rb_find +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf402345 kill_pgrp +EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xaf56d9c2 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf91d89f __kernel_param_lock +EXPORT_SYMBOL vmlinux 0xaf936d60 sock_wake_async +EXPORT_SYMBOL vmlinux 0xafce4b61 genphy_read_status +EXPORT_SYMBOL vmlinux 0xafdc1ffd __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xafe32976 flock_lock_file_wait +EXPORT_SYMBOL vmlinux 0xafed441b kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xb00b11cf agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xb0146c3a param_set_byte +EXPORT_SYMBOL vmlinux 0xb016ad8b unregister_cdrom +EXPORT_SYMBOL vmlinux 0xb0207ecf ___ratelimit +EXPORT_SYMBOL vmlinux 0xb02b2967 input_inject_event +EXPORT_SYMBOL vmlinux 0xb077ef32 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xb08f7d80 bio_map_user +EXPORT_SYMBOL vmlinux 0xb0a81357 sk_alloc +EXPORT_SYMBOL vmlinux 0xb0a8fd0a intel_gtt_unmap_memory +EXPORT_SYMBOL vmlinux 0xb0b847ac __bitmap_full +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0fa8fdc ip_options_compile +EXPORT_SYMBOL vmlinux 0xb11a6ba9 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb13ebc21 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb16a3d15 find_get_page +EXPORT_SYMBOL vmlinux 0xb172d9b7 framebuffer_release +EXPORT_SYMBOL vmlinux 0xb1813162 ethtool_op_get_sg +EXPORT_SYMBOL vmlinux 0xb19760c3 bitmap_onto +EXPORT_SYMBOL vmlinux 0xb19b5229 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xb1a7c28e inet_listen +EXPORT_SYMBOL vmlinux 0xb1b2f10f mca_device_write_pos +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c4765f tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0xb1cc1c10 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xb1cdc8a1 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xb1ceccbb unbind_con_driver +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1d9523e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb2182d06 ll_rw_block +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb23a2b80 del_gendisk +EXPORT_SYMBOL vmlinux 0xb246f5ec agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xb2670153 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2744b36 down_write_trylock +EXPORT_SYMBOL vmlinux 0xb2abeb43 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xb2bf99bf vga_tryget +EXPORT_SYMBOL vmlinux 0xb2ef12f1 tty_register_device +EXPORT_SYMBOL vmlinux 0xb2efb6be mca_read_stored_pos +EXPORT_SYMBOL vmlinux 0xb2f01c66 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb32139dd blk_start_request +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb3305d52 send_remote_softirq +EXPORT_SYMBOL vmlinux 0xb333ed22 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xb33af6ee jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xb34d4c2e acpi_terminate +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb35a367d acpi_unlock_ac_dir +EXPORT_SYMBOL vmlinux 0xb35c1b10 dev_mc_init +EXPORT_SYMBOL vmlinux 0xb38f1a06 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xb3a307c6 si_meminfo +EXPORT_SYMBOL vmlinux 0xb3b55038 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xb3b7dd5c dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0xb3e3cf6f cdrom_release +EXPORT_SYMBOL vmlinux 0xb3f3ddee __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xb412edcd ab8500_gpadc_read_raw +EXPORT_SYMBOL vmlinux 0xb41a430c blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xb41fb075 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4372f24 pci_save_state +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb43c0568 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xb43c8124 pci_enable_obff +EXPORT_SYMBOL vmlinux 0xb443c438 dev_alloc_skb +EXPORT_SYMBOL vmlinux 0xb449db38 generic_setxattr +EXPORT_SYMBOL vmlinux 0xb45578b8 memscan +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb470bcc4 __get_user_pages +EXPORT_SYMBOL vmlinux 0xb47d138a locks_init_lock +EXPORT_SYMBOL vmlinux 0xb496cbf8 set_disk_ro +EXPORT_SYMBOL vmlinux 0xb5044271 vsscanf +EXPORT_SYMBOL vmlinux 0xb514aac0 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xb5277728 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5327ccc submit_bio +EXPORT_SYMBOL vmlinux 0xb538bc96 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xb54533f7 usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xb54715d6 pci_remove_behind_bridge +EXPORT_SYMBOL vmlinux 0xb5477f4b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xb5492e27 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xb5665f21 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xb57f8992 journal_revoke +EXPORT_SYMBOL vmlinux 0xb58356cf pci_dev_put +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d35ec0 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xb5f50765 dev_get_drvdata +EXPORT_SYMBOL vmlinux 0xb5fb870b commit_creds +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb628f715 files_lglock_local_lock +EXPORT_SYMBOL vmlinux 0xb632d3c3 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xb6588e7a idr_remove +EXPORT_SYMBOL vmlinux 0xb66e1b25 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6822a33 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xb685f234 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xb68633b3 scsi_allocate_command +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb68b2078 acpi_lock_battery_dir +EXPORT_SYMBOL vmlinux 0xb68e72d1 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xb691fd96 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xb6a61a86 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6c1ba15 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xb6c5a973 scsi_show_result +EXPORT_SYMBOL vmlinux 0xb6e40869 blk_start_queue +EXPORT_SYMBOL vmlinux 0xb6e88ed5 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy +EXPORT_SYMBOL vmlinux 0xb6f4478a acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xb6f7e63d journal_stop +EXPORT_SYMBOL vmlinux 0xb714e933 cdev_del +EXPORT_SYMBOL vmlinux 0xb726ff32 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xb737cfbb blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xb73c6b81 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xb74d8cad pnp_get_resource +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb7666d1c bio_map_kern +EXPORT_SYMBOL vmlinux 0xb78c61e8 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb7b61546 crc32_be +EXPORT_SYMBOL vmlinux 0xb7e51729 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xb7ec2c4b tcp_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xb7ecb7e7 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xb7fcccae sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb835b3e4 radix_tree_prev_hole +EXPORT_SYMBOL vmlinux 0xb863e8df seq_putc +EXPORT_SYMBOL vmlinux 0xb86e4ab9 random32 +EXPORT_SYMBOL vmlinux 0xb8759454 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xb894926d schedule_work_on +EXPORT_SYMBOL vmlinux 0xb898e4a5 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xb8992eec tcp_proc_register +EXPORT_SYMBOL vmlinux 0xb89af9bf srandom32 +EXPORT_SYMBOL vmlinux 0xb89e9802 dev_addr_init +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb904c2d6 freeze_bdev +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb94675ca jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xb95a1bb2 mii_check_link +EXPORT_SYMBOL vmlinux 0xb96145c9 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xb9805e25 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xb98a0185 rtc_tm_to_time +EXPORT_SYMBOL vmlinux 0xb99cf582 ida_get_new_above +EXPORT_SYMBOL vmlinux 0xb9a71c72 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xb9b63ca5 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xb9fd2205 add_efi_memmap +EXPORT_SYMBOL vmlinux 0xba0a6a3c brioctl_set +EXPORT_SYMBOL vmlinux 0xba12f4b1 scsi_calculate_bounce_limit +EXPORT_SYMBOL vmlinux 0xba25d13b ilookup5 +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba45d078 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xba489ed5 generic_setlease +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba75f6eb inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xba81b7d5 serio_rescan +EXPORT_SYMBOL vmlinux 0xba8ea6ad rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xba9fd3be register_md_personality +EXPORT_SYMBOL vmlinux 0xbaaab8ae timespec_to_jiffies +EXPORT_SYMBOL vmlinux 0xbab342dd input_unregister_handler +EXPORT_SYMBOL vmlinux 0xbab46816 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xbac32cee tcp_close +EXPORT_SYMBOL vmlinux 0xbad986f9 kill_pid +EXPORT_SYMBOL vmlinux 0xbb167766 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xbb189cad disallow_signal +EXPORT_SYMBOL vmlinux 0xbb18c887 follow_pfn +EXPORT_SYMBOL vmlinux 0xbb3f17c4 tcp_valid_rtt_meas +EXPORT_SYMBOL vmlinux 0xbb44d351 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6fd870 vfs_getattr +EXPORT_SYMBOL vmlinux 0xbb7a1bd0 send_sig_info +EXPORT_SYMBOL vmlinux 0xbb7c97c9 first_ec +EXPORT_SYMBOL vmlinux 0xbb837d27 machine_real_restart +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba159e0 files_lglock_local_unlock +EXPORT_SYMBOL vmlinux 0xbbcbc383 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xbbd48677 napi_get_frags +EXPORT_SYMBOL vmlinux 0xbc1afedf up_write +EXPORT_SYMBOL vmlinux 0xbc1ffa96 read_dev_sector +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc333412 file_sb_list_del +EXPORT_SYMBOL vmlinux 0xbc5076e2 __generic_file_aio_write +EXPORT_SYMBOL vmlinux 0xbc619dbd generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xbc6a9d10 netlink_unicast +EXPORT_SYMBOL vmlinux 0xbc9f7c4a qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xbca183e6 alloc_pci_dev +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd7a481 journal_wipe +EXPORT_SYMBOL vmlinux 0xbcdff7a3 unload_nls +EXPORT_SYMBOL vmlinux 0xbcec6a80 ethtool_op_set_tx_csum +EXPORT_SYMBOL vmlinux 0xbcf0cc69 complete_request_key +EXPORT_SYMBOL vmlinux 0xbcf18ec7 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xbcfac7c7 __destroy_inode +EXPORT_SYMBOL vmlinux 0xbd0d867d ____pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xbd25a113 module_put +EXPORT_SYMBOL vmlinux 0xbd2dd1f4 fd_install +EXPORT_SYMBOL vmlinux 0xbd365e53 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xbd5a4b29 tcp_connect +EXPORT_SYMBOL vmlinux 0xbd9bec40 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xbda8ae24 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xbdbe7378 cookie_check_timestamp +EXPORT_SYMBOL vmlinux 0xbdc20c68 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xbdd72307 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xbdf5c25c rb_next +EXPORT_SYMBOL vmlinux 0xbe018cb0 tty_vhangup +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1dd791 scsi_nonblockable_ioctl +EXPORT_SYMBOL vmlinux 0xbe2c0274 add_timer +EXPORT_SYMBOL vmlinux 0xbe2db109 init_special_inode +EXPORT_SYMBOL vmlinux 0xbe524634 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xbeae91b4 genphy_resume +EXPORT_SYMBOL vmlinux 0xbec49960 pci_remove_bus_device +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefc1578 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xbf04060b inet_put_port +EXPORT_SYMBOL vmlinux 0xbf236723 padata_do_serial +EXPORT_SYMBOL vmlinux 0xbf25c25d netif_napi_del +EXPORT_SYMBOL vmlinux 0xbf3ab671 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xbf61e641 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xbf68f06e register_netdev +EXPORT_SYMBOL vmlinux 0xbf710199 mpage_writepages +EXPORT_SYMBOL vmlinux 0xbf7cde7a abort_creds +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present +EXPORT_SYMBOL vmlinux 0xbf8f9e98 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa20e21 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xbfa44bee phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xbfb05567 set_pages_x +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe1d2b4 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user +EXPORT_SYMBOL vmlinux 0xc0083bf4 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xc00ecd91 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xc017e816 alloc_file +EXPORT_SYMBOL vmlinux 0xc01cf848 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero +EXPORT_SYMBOL vmlinux 0xc020faef lock_sock_fast +EXPORT_SYMBOL vmlinux 0xc04377af simple_readpage +EXPORT_SYMBOL vmlinux 0xc043c147 read_cache_page +EXPORT_SYMBOL vmlinux 0xc04ef815 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xc056c7f4 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xc0580937 rb_erase +EXPORT_SYMBOL vmlinux 0xc05f8ede pci_enable_bridges +EXPORT_SYMBOL vmlinux 0xc05fa63d skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07c5f81 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xc0820efd bio_integrity_free +EXPORT_SYMBOL vmlinux 0xc085df30 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a595d3 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xc0a6e49e d_genocide +EXPORT_SYMBOL vmlinux 0xc0a8ff16 acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xc0b2494c vfsmount_lock_lock_init +EXPORT_SYMBOL vmlinux 0xc0c02cd4 netdev_class_remove_file +EXPORT_SYMBOL vmlinux 0xc0d39b77 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0xc0ed6fac ip_ct_attach +EXPORT_SYMBOL vmlinux 0xc0f56ee6 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc1372b81 pci_target_state +EXPORT_SYMBOL vmlinux 0xc1418576 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xc15cbab2 vc_cons +EXPORT_SYMBOL vmlinux 0xc18b0d86 pci_set_master +EXPORT_SYMBOL vmlinux 0xc1aca562 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xc1c2dd09 __hw_addr_flush +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2435276 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xc256e762 __bitmap_equal +EXPORT_SYMBOL vmlinux 0xc26ac30c mnt_unpin +EXPORT_SYMBOL vmlinux 0xc26cce9d inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xc26d8ae3 sget +EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll +EXPORT_SYMBOL vmlinux 0xc2ba729a vfs_write +EXPORT_SYMBOL vmlinux 0xc2c4346e install_exec_creds +EXPORT_SYMBOL vmlinux 0xc2cd003c udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xc2d13126 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e316e6 security_path_rmdir +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ef4098 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xc310451f generic_write_end +EXPORT_SYMBOL vmlinux 0xc3146282 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xc316b98c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0xc33298df kobject_put +EXPORT_SYMBOL vmlinux 0xc336ef4e pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xc3415042 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xc34e386d ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xc36cbb4a sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xc37c81b2 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3cf1128 in_group_p +EXPORT_SYMBOL vmlinux 0xc3eec4e4 d_alloc_root +EXPORT_SYMBOL vmlinux 0xc3f3a0cf tty_devnum +EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr +EXPORT_SYMBOL vmlinux 0xc3fe87c8 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc3fec705 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xc402cc99 register_acpi_notifier +EXPORT_SYMBOL vmlinux 0xc4115ef9 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xc41e8f7a wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xc4554217 up +EXPORT_SYMBOL vmlinux 0xc4669e5c md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4c7ebd9 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xc4e4270b unlock_page +EXPORT_SYMBOL vmlinux 0xc508d690 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xc51b5cbf inet_accept +EXPORT_SYMBOL vmlinux 0xc52f5714 fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0xc542b145 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xc543bbcb tcp_gro_receive +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc56e05e3 mmc_free_host +EXPORT_SYMBOL vmlinux 0xc58c0b17 mdiobus_write +EXPORT_SYMBOL vmlinux 0xc598b7e9 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xc5a37aa8 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xc5cbd2ed __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xc5d41e39 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5f46566 rb_augment_insert +EXPORT_SYMBOL vmlinux 0xc5feecdb vfs_mknod +EXPORT_SYMBOL vmlinux 0xc6064f6a pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xc6178280 scsi_register +EXPORT_SYMBOL vmlinux 0xc61b1d36 journal_load +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63cc125 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc6479e4c do_munmap +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc66e8008 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xc67a511e ping_prot +EXPORT_SYMBOL vmlinux 0xc67f910c mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xc6848c32 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xc6890ef3 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0xc6aec70b pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xc6b22384 d_invalidate +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d77b34 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xc6dc64d7 netdev_printk +EXPORT_SYMBOL vmlinux 0xc6eb2c73 nf_log_register +EXPORT_SYMBOL vmlinux 0xc6feb828 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xc709d979 __sock_create +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc738239e pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xc73ac435 i8042_check_port_owner +EXPORT_SYMBOL vmlinux 0xc7484497 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xc75da6f9 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7987905 kmap +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a20cc8 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7cab7e9 mii_check_media +EXPORT_SYMBOL vmlinux 0xc7db1413 dquot_disable +EXPORT_SYMBOL vmlinux 0xc7e9a028 put_io_context +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7fae1a0 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xc8020f29 blk_insert_request +EXPORT_SYMBOL vmlinux 0xc811aa8c task_ns_capable +EXPORT_SYMBOL vmlinux 0xc829eae5 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc84715b8 netlink_dump_start +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc853ce63 serio_close +EXPORT_SYMBOL vmlinux 0xc856156a remove_arg_zero +EXPORT_SYMBOL vmlinux 0xc85d9fb2 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc90cd6d1 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xc9347ea9 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xc939f54e security_path_link +EXPORT_SYMBOL vmlinux 0xc94fa003 irq_stat +EXPORT_SYMBOL vmlinux 0xc996d097 del_timer +EXPORT_SYMBOL vmlinux 0xc9ab2eef acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0xc9be9210 agp_create_memory +EXPORT_SYMBOL vmlinux 0xc9c6f737 dst_destroy +EXPORT_SYMBOL vmlinux 0xc9d4d4a0 otg_get_transceiver +EXPORT_SYMBOL vmlinux 0xc9dadd06 put_tty_driver +EXPORT_SYMBOL vmlinux 0xca19102b ht_create_irq +EXPORT_SYMBOL vmlinux 0xca3302d4 mount_pseudo +EXPORT_SYMBOL vmlinux 0xca5dbc50 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xca678be1 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xca7ce9c5 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xca84176f dquot_enable +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca8c80d4 phy_start +EXPORT_SYMBOL vmlinux 0xcac31815 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xcac6fcb9 __scm_destroy +EXPORT_SYMBOL vmlinux 0xcad0b637 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xcae9d996 pipe_to_file +EXPORT_SYMBOL vmlinux 0xcb1a10f8 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xcb2f9f8b dev_crit +EXPORT_SYMBOL vmlinux 0xcb39f99d generic_block_bmap +EXPORT_SYMBOL vmlinux 0xcb4322dc kernel_read +EXPORT_SYMBOL vmlinux 0xcb451e56 idr_init +EXPORT_SYMBOL vmlinux 0xcb48a677 pci_find_bus +EXPORT_SYMBOL vmlinux 0xcb502c92 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0xcb7131fb fb_get_options +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb99edb0 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0xcbb1e0fa bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xcbb65e12 bioset_create +EXPORT_SYMBOL vmlinux 0xcbb7ebdd ip_defrag +EXPORT_SYMBOL vmlinux 0xcbc331c3 tty_port_close +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd76abb skb_copy_bits +EXPORT_SYMBOL vmlinux 0xcbddffc7 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xcbe963fa mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc28fb05 sock_no_connect +EXPORT_SYMBOL vmlinux 0xcc36f32e fb_unregister_client +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5b27b5 acpi_extract_package +EXPORT_SYMBOL vmlinux 0xcc602267 seq_lseek +EXPORT_SYMBOL vmlinux 0xcc6f39a4 pci_scan_bus_parented +EXPORT_SYMBOL vmlinux 0xcc7fa952 local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0xcc8e3287 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xcd255c8e pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd3d1bc0 km_state_expired +EXPORT_SYMBOL vmlinux 0xcd4bf0db kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0xcd757666 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xcd79037c flush_old_exec +EXPORT_SYMBOL vmlinux 0xcd8f35f4 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xcd9b6243 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xcdaa8c9d md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xcdb9a7e5 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0xcdc28f33 dqget +EXPORT_SYMBOL vmlinux 0xcddcd2ea dentry_path_raw +EXPORT_SYMBOL vmlinux 0xcde172ac radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xcdffbcd1 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xce19bac5 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0xce24d483 kunmap +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce4a14a4 security_file_mmap +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce67a7f9 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xce8367d6 console_stop +EXPORT_SYMBOL vmlinux 0xce8625cf mmc_suspend_host +EXPORT_SYMBOL vmlinux 0xce937f3a splice_from_pipe_end +EXPORT_SYMBOL vmlinux 0xceaaf781 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xcecdd34c get_phy_id +EXPORT_SYMBOL vmlinux 0xcedd95c1 default_llseek +EXPORT_SYMBOL vmlinux 0xcee1ac61 uart_register_driver +EXPORT_SYMBOL vmlinux 0xcef13d3d security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xcef2376c page_address +EXPORT_SYMBOL vmlinux 0xcef33cad arp_send +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf015f7b do_settimeofday +EXPORT_SYMBOL vmlinux 0xcf1d28ab acpi_error +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcfacaae2 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xcfb9006e jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0xcfbb3f6e dev_open +EXPORT_SYMBOL vmlinux 0xcfd9c546 put_page +EXPORT_SYMBOL vmlinux 0xcfdff9e9 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe +EXPORT_SYMBOL vmlinux 0xcfeb0be9 rb_augment_erase_begin +EXPORT_SYMBOL vmlinux 0xd016feda skb_copy_and_csum_datagram_iovec +EXPORT_SYMBOL vmlinux 0xd0181f4f __bitmap_xor +EXPORT_SYMBOL vmlinux 0xd060cfce __serio_register_driver +EXPORT_SYMBOL vmlinux 0xd070b09b dma_async_memcpy_buf_to_buf +EXPORT_SYMBOL vmlinux 0xd07c782a bdput +EXPORT_SYMBOL vmlinux 0xd08197fa acpi_load_tables +EXPORT_SYMBOL vmlinux 0xd0a12887 mmc_card_awake +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0d42c42 mod_timer_pending +EXPORT_SYMBOL vmlinux 0xd0d8621b strlen +EXPORT_SYMBOL vmlinux 0xd0da71dc take_over_console +EXPORT_SYMBOL vmlinux 0xd0dda8b2 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xd0ea3780 x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f0d945 down_read +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f91701 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd11c0dc1 __kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xd12dbbc6 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xd1472061 acpi_pci_register_driver +EXPORT_SYMBOL vmlinux 0xd157e229 journal_start +EXPORT_SYMBOL vmlinux 0xd15b9927 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xd172cb8d netdev_increment_features +EXPORT_SYMBOL vmlinux 0xd18b6eb2 acpi_unmap_lsapic +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd212cdf0 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xd2139e94 unregister_snap_client +EXPORT_SYMBOL vmlinux 0xd22dee7a jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xd2329de3 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25f2fd4 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd2656b7a mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xd266efe7 mempool_create +EXPORT_SYMBOL vmlinux 0xd276f795 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd2965f6f kthread_should_stop +EXPORT_SYMBOL vmlinux 0xd2a75ee0 dmi_first_match +EXPORT_SYMBOL vmlinux 0xd2b161b0 dquot_get_dqinfo +EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd30c6636 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xd318ac74 proc_net_netfilter +EXPORT_SYMBOL vmlinux 0xd3434c3f kref_sub +EXPORT_SYMBOL vmlinux 0xd35e249a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xd36632d7 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xd36b2952 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xd38480a0 rb_augment_erase_end +EXPORT_SYMBOL vmlinux 0xd3926926 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd3951da4 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xd3bf22bd tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xd3c08471 gen_pool_create +EXPORT_SYMBOL vmlinux 0xd3c7fc52 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xd3dcab0b flex_array_alloc +EXPORT_SYMBOL vmlinux 0xd3e9f340 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xd42c6c29 d_drop +EXPORT_SYMBOL vmlinux 0xd431c13b set_device_ro +EXPORT_SYMBOL vmlinux 0xd4391057 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xd46ba5fe do_mmap_pgoff +EXPORT_SYMBOL vmlinux 0xd47f5a5d block_write_begin +EXPORT_SYMBOL vmlinux 0xd490f95a agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xd4b8b160 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xd4c51be7 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xd4ccfc9e sock_update_classid +EXPORT_SYMBOL vmlinux 0xd4d7b10d input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xd4db11f1 tcp_v4_md5_do_del +EXPORT_SYMBOL vmlinux 0xd4dd7380 skb_split +EXPORT_SYMBOL vmlinux 0xd50ebf04 journal_set_features +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd51c60e5 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xd54c96c7 atomic64_add_unless_cx8 +EXPORT_SYMBOL vmlinux 0xd57f7cb2 mount_single +EXPORT_SYMBOL vmlinux 0xd5ab46ff dev_get_stats +EXPORT_SYMBOL vmlinux 0xd5b037e1 kref_put +EXPORT_SYMBOL vmlinux 0xd5b1376d register_shrinker +EXPORT_SYMBOL vmlinux 0xd5b1b1a4 simple_statfs +EXPORT_SYMBOL vmlinux 0xd5e8977b ethtool_op_set_tx_hw_csum +EXPORT_SYMBOL vmlinux 0xd5f2172f del_timer_sync +EXPORT_SYMBOL vmlinux 0xd6109bba nf_setsockopt +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd629316a llc_sap_list_lock +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd62e11e7 __register_binfmt +EXPORT_SYMBOL vmlinux 0xd63b3a6e skb_clone +EXPORT_SYMBOL vmlinux 0xd65dcfc9 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xd68c6562 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xd6a1e57a agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f14a92 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xd6ffaef5 cad_pid +EXPORT_SYMBOL vmlinux 0xd7001850 pci_restore_state +EXPORT_SYMBOL vmlinux 0xd71296a6 mmc_host_lazy_disable +EXPORT_SYMBOL vmlinux 0xd7580af5 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd774170f dquot_file_open +EXPORT_SYMBOL vmlinux 0xd77a5aa5 __bitmap_and +EXPORT_SYMBOL vmlinux 0xd79b5a02 allow_signal +EXPORT_SYMBOL vmlinux 0xd7b61d9f bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xd7bd3af2 add_wait_queue +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd8047aeb skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xd81c60c6 wait_on_sync_kiocb +EXPORT_SYMBOL vmlinux 0xd82ba9b1 mii_nway_restart +EXPORT_SYMBOL vmlinux 0xd83758d0 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xd83eb79c invalidate_bdev +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85df7d4 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xd86f4b2e netif_skb_features +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd89e94d5 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd8a2ab95 in_egroup_p +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f3045c blk_end_request_all +EXPORT_SYMBOL vmlinux 0xd8f6ddd6 tcp_tso_segment +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd9123b5d skb_find_text +EXPORT_SYMBOL vmlinux 0xd92afabe bitmap_clear +EXPORT_SYMBOL vmlinux 0xd92e6791 napi_frags_skb +EXPORT_SYMBOL vmlinux 0xd94f0bfd sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd998a029 dev_driver_string +EXPORT_SYMBOL vmlinux 0xd99e6c03 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xd9a6ca21 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xd9b764c4 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xd9c272aa mca_mark_as_unused +EXPORT_SYMBOL vmlinux 0xd9f7abfb dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xda0a6b0e acpi_map_lsapic +EXPORT_SYMBOL vmlinux 0xda236f90 __lock_page +EXPORT_SYMBOL vmlinux 0xda66c1b6 security_path_truncate +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte +EXPORT_SYMBOL vmlinux 0xda953c03 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdab4a998 grab_cache_page_nowait +EXPORT_SYMBOL vmlinux 0xdab5883b mca_device_set_claim +EXPORT_SYMBOL vmlinux 0xdacbb538 mmc_host_enable +EXPORT_SYMBOL vmlinux 0xdb1aa8cf insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xdb316e64 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xdb663a06 thermal_cooling_device_unregister +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6e35a0 unregister_8022_client +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb777f4a __elv_add_request +EXPORT_SYMBOL vmlinux 0xdb864d65 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xdb8fa4f2 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xdb9e2c22 posix_acl_create +EXPORT_SYMBOL vmlinux 0xdba6cc7f journal_errno +EXPORT_SYMBOL vmlinux 0xdbcd416e sysctl_ip_nonlocal_bind +EXPORT_SYMBOL vmlinux 0xdbcf6ba5 try_to_release_page +EXPORT_SYMBOL vmlinux 0xdbd268ac scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xdbf60ca9 setup_new_exec +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0ade3a tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc224ef5 request_firmware +EXPORT_SYMBOL vmlinux 0xdc2519e0 param_set_ulong +EXPORT_SYMBOL vmlinux 0xdc2adb35 add_taint +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc43a9c8 daemonize +EXPORT_SYMBOL vmlinux 0xdc45c56c sg_miter_start +EXPORT_SYMBOL vmlinux 0xdc4a3c90 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xdc4f61e4 bio_integrity_get_tag +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc6b7020 elevator_change +EXPORT_SYMBOL vmlinux 0xdc8bb395 scsi_add_device +EXPORT_SYMBOL vmlinux 0xdcb7f731 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xdcc5eb79 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xdccca046 override_creds +EXPORT_SYMBOL vmlinux 0xdcd4c773 lro_flush_all +EXPORT_SYMBOL vmlinux 0xdce16b58 eth_rebuild_header +EXPORT_SYMBOL vmlinux 0xdcef81ac ethtool_op_set_tx_ipv6_csum +EXPORT_SYMBOL vmlinux 0xdcf7540e find_or_create_page +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd0ec91f dev_activate +EXPORT_SYMBOL vmlinux 0xdd14e874 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xdd1a2871 down +EXPORT_SYMBOL vmlinux 0xdd1c65f6 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xdd2d2c5d neigh_parms_release +EXPORT_SYMBOL vmlinux 0xdd35d8d8 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xdd3764b0 mmc_card_sleep +EXPORT_SYMBOL vmlinux 0xdd38b87c blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xdd7aa091 acpi_get_physical_device +EXPORT_SYMBOL vmlinux 0xdd81085c i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xdd9cbc3d elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xdda658d6 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xdda7bdf3 textsearch_register +EXPORT_SYMBOL vmlinux 0xddaa735a jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xddb0769a d_alloc_name +EXPORT_SYMBOL vmlinux 0xddd740df pci_get_device +EXPORT_SYMBOL vmlinux 0xddf2511c scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xde1da321 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xde794ce7 tty_register_driver +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde964398 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdebda43d new_inode +EXPORT_SYMBOL vmlinux 0xdec778f6 ida_get_new +EXPORT_SYMBOL vmlinux 0xdecbc167 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xdeed5e80 mca_unregister_driver +EXPORT_SYMBOL vmlinux 0xdef6b65a set_blocksize +EXPORT_SYMBOL vmlinux 0xdefc3217 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf199ff9 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xdf1c89b0 bio_endio +EXPORT_SYMBOL vmlinux 0xdf48161c i2c_del_driver +EXPORT_SYMBOL vmlinux 0xdf48a0eb flex_array_put +EXPORT_SYMBOL vmlinux 0xdf4c8767 ns_to_timeval +EXPORT_SYMBOL vmlinux 0xdf5defb4 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf92cb81 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xdf937635 icmpv6_send +EXPORT_SYMBOL vmlinux 0xdfa684cf eth_validate_addr +EXPORT_SYMBOL vmlinux 0xdfb4c816 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfc899f8 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xdfc8c051 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xe04a5be7 acpi_unlock_battery_dir +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0ee0b00 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0xe0fc24aa param_set_int +EXPORT_SYMBOL vmlinux 0xe10a2799 pci_set_ltr +EXPORT_SYMBOL vmlinux 0xe10d6a2f n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xe10fbdc0 __f_setown +EXPORT_SYMBOL vmlinux 0xe127d8dd tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xe134f124 dev_close +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe16df5a1 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1f1a264 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2079de4 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xe2195aef mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0xe2296c9c truncate_setsize +EXPORT_SYMBOL vmlinux 0xe22feb1a pipe_unlock +EXPORT_SYMBOL vmlinux 0xe236a29b blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xe2383b17 page_readlink +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe23b8b38 inet_ioctl +EXPORT_SYMBOL vmlinux 0xe23bea43 llc_mac_hdr_init +EXPORT_SYMBOL vmlinux 0xe23c84c5 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe24f516b rtnl_notify +EXPORT_SYMBOL vmlinux 0xe2573870 mutex_lock +EXPORT_SYMBOL vmlinux 0xe29a6b8a bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xe2b28266 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xe2c565c9 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xe2caaae4 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xe2d038fa __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e3ac41 sync_inode +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f6346a fb_set_var +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe3161e82 sock_no_listen +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe31a0dca xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xe33de5ff locks_copy_lock +EXPORT_SYMBOL vmlinux 0xe3476e0b phy_device_free +EXPORT_SYMBOL vmlinux 0xe3a13588 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xe3c6079e atomic64_set_cx8 +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3df2c67 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xe3e68a89 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xe3fbe148 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xe40fd9ab f_setown +EXPORT_SYMBOL vmlinux 0xe4113311 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xe4173d5a pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xe41b8ba6 cdev_init +EXPORT_SYMBOL vmlinux 0xe41bcec9 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xe43617f7 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0xe4391150 journal_create +EXPORT_SYMBOL vmlinux 0xe45025d4 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xe45f60d8 __wake_up +EXPORT_SYMBOL vmlinux 0xe464faa9 __bread +EXPORT_SYMBOL vmlinux 0xe469914c tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xe46bb263 __bio_clone +EXPORT_SYMBOL vmlinux 0xe46d7859 do_splice_to +EXPORT_SYMBOL vmlinux 0xe4721d2d set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xe479a6b9 netdev_emerg +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe49775f9 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xe498b537 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xe4d3b568 page_put_link +EXPORT_SYMBOL vmlinux 0xe4ed7a7f tcf_hash_create +EXPORT_SYMBOL vmlinux 0xe50464b6 tty_hangup +EXPORT_SYMBOL vmlinux 0xe5092261 kern_path_create +EXPORT_SYMBOL vmlinux 0xe5122890 flow_cache_genid +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe555a060 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xe567f86d pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xe56d8509 deactivate_super +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5b42a76 tcp_poll +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5eb7fef thaw_process +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe615cc19 mem_cgroup_update_page_stat +EXPORT_SYMBOL vmlinux 0xe617e30f mddev_congested +EXPORT_SYMBOL vmlinux 0xe61e9841 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xe6236e26 input_open_device +EXPORT_SYMBOL vmlinux 0xe628fe9f ppp_channel_index +EXPORT_SYMBOL vmlinux 0xe63229ce bio_add_page +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6adec21 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0xe6b3fe21 interruptible_sleep_on_timeout +EXPORT_SYMBOL vmlinux 0xe6be6ce5 posix_test_lock +EXPORT_SYMBOL vmlinux 0xe6c3c4e6 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xe6e31c07 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe73e8afc elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xe7609b0d generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe76445ee unregister_netdev +EXPORT_SYMBOL vmlinux 0xe7722171 flex_array_free +EXPORT_SYMBOL vmlinux 0xe7798a92 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xe7a664c4 nf_hooks +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7c84646 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d8980c pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xe80cabfd __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe80ce219 sysctl_tcp_dma_copybreak +EXPORT_SYMBOL vmlinux 0xe8130ff9 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe81a6149 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xe8485de3 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xe85c74a5 key_type_keyring +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe88d3cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0xe8a02646 seq_read +EXPORT_SYMBOL vmlinux 0xe8b00879 stop_tty +EXPORT_SYMBOL vmlinux 0xe8b63ace radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xe8ebf346 ab8500_gpadc_ad_to_voltage +EXPORT_SYMBOL vmlinux 0xe8f1143b tcp_read_sock +EXPORT_SYMBOL vmlinux 0xe8f92dee kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91d9b6c tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xe9259cce simple_lookup +EXPORT_SYMBOL vmlinux 0xe92c25b9 mutex_unlock +EXPORT_SYMBOL vmlinux 0xe933e922 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe987d793 kernel_accept +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe99d9a41 udp_prot +EXPORT_SYMBOL vmlinux 0xe9c5a3eb pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xe9c86eeb request_key_async +EXPORT_SYMBOL vmlinux 0xe9cb1aa7 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xe9eea6b4 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xe9f8812c mca_register_driver_integrated +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea06e55d tty_mutex +EXPORT_SYMBOL vmlinux 0xea10212a int_to_scsilun +EXPORT_SYMBOL vmlinux 0xea10655a __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xea535724 skb_copy_datagram_iovec +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea884b5c genphy_suspend +EXPORT_SYMBOL vmlinux 0xea8a6c75 param_ops_long +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea9855ae blk_limits_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xeaa96952 dev_set_drvdata +EXPORT_SYMBOL vmlinux 0xeabd18e2 kobject_set_name +EXPORT_SYMBOL vmlinux 0xeacc4a81 task_nice +EXPORT_SYMBOL vmlinux 0xeaceeff4 dm_put_device +EXPORT_SYMBOL vmlinux 0xead01d4f pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xead756ef flush_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaee4b5f acpi_lock_ac_dir +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb382a52 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xeb4a55d8 single_release +EXPORT_SYMBOL vmlinux 0xeb5489b8 netdev_update_features +EXPORT_SYMBOL vmlinux 0xeb568a33 pci_pme_active +EXPORT_SYMBOL vmlinux 0xeb5c69f2 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xeb83214d pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xeba677bd posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xebcf4bf4 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xebdbe48c radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xec15f00a tcp_cookie_generator +EXPORT_SYMBOL vmlinux 0xec338535 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xec36f855 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xec3edba1 ethtool_op_set_ufo +EXPORT_SYMBOL vmlinux 0xec4e50df free_user_ns +EXPORT_SYMBOL vmlinux 0xec57e401 dev_trans_start +EXPORT_SYMBOL vmlinux 0xec968b8f gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xecab68bc bdi_register +EXPORT_SYMBOL vmlinux 0xecb3a5e1 clocksource_register +EXPORT_SYMBOL vmlinux 0xecb721f1 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xecedfa24 simple_write_begin +EXPORT_SYMBOL vmlinux 0xed302f0f tty_lock +EXPORT_SYMBOL vmlinux 0xed304266 lock_may_write +EXPORT_SYMBOL vmlinux 0xed3d130f misc_deregister +EXPORT_SYMBOL vmlinux 0xed5b9e43 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xed720660 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xed82eaf7 dquot_operations +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed98e7c1 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xeda0d76e gen_estimator_active +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc14fa0 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0xedcf0d4d filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xedd354b3 ethtool_op_set_sg +EXPORT_SYMBOL vmlinux 0xedde3f34 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xedfb5159 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3a137b cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xee649b94 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xee66167b blk_execute_rq +EXPORT_SYMBOL vmlinux 0xee772052 spi_display_xfer_agreement +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee940370 thermal_zone_bind_cooling_device +EXPORT_SYMBOL vmlinux 0xeea4fb86 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeac4479 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xeeb4713e journal_check_available_features +EXPORT_SYMBOL vmlinux 0xeec019b3 dev_emerg +EXPORT_SYMBOL vmlinux 0xef00686a tcp_sendpage +EXPORT_SYMBOL vmlinux 0xef1d35b7 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xef3bd862 mca_find_unused_adapter +EXPORT_SYMBOL vmlinux 0xef5adc37 mount_nodev +EXPORT_SYMBOL vmlinux 0xef655908 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xef67ec5d inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xef7e7641 blk_end_request +EXPORT_SYMBOL vmlinux 0xef92dd07 mdiobus_alloc +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefbfc3c7 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xefcb63da skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0040079 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xf04d9982 da903x_query_status +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf07ba3cd mpage_readpages +EXPORT_SYMBOL vmlinux 0xf0852ba9 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xf08ada45 blk_complete_request +EXPORT_SYMBOL vmlinux 0xf08f624b mapping_tagged +EXPORT_SYMBOL vmlinux 0xf0d8b9a9 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f1246c kvasprintf +EXPORT_SYMBOL vmlinux 0xf0f928d0 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xf100416a remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xf10d4f12 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf1216c75 prandom32 +EXPORT_SYMBOL vmlinux 0xf1252127 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xf12a5c83 idr_find +EXPORT_SYMBOL vmlinux 0xf1333431 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xf1354f2f blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xf1362ad2 qdisc_reset +EXPORT_SYMBOL vmlinux 0xf148276f scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xf16e7840 nla_put +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1b4987b backlight_device_register +EXPORT_SYMBOL vmlinux 0xf1cf3036 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1faac3a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xf202c5cb radix_tree_insert +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2357254 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0xf238a385 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25c28ee xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xf26b8df4 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xf274e933 mntget +EXPORT_SYMBOL vmlinux 0xf2769b6b scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xf27fc816 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf29df3f0 __skb_get_rxhash +EXPORT_SYMBOL vmlinux 0xf2d3964e netdev_err +EXPORT_SYMBOL vmlinux 0xf2e74040 mca_set_adapter_name +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf32055e7 dev_base_lock +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf338d4c3 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34c5b2b serio_unregister_port +EXPORT_SYMBOL vmlinux 0xf37260ab _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xf387fa39 ethtool_op_get_tso +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf394a68c xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf39bf4d9 put_cmsg +EXPORT_SYMBOL vmlinux 0xf3b1d267 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xf3bf0bce __bitmap_complement +EXPORT_SYMBOL vmlinux 0xf3e69c79 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xf42017ea i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf462f70c __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xf47b33b8 phy_attach +EXPORT_SYMBOL vmlinux 0xf48a2c4c MCA_bus +EXPORT_SYMBOL vmlinux 0xf48ee255 pci_enable_ltr +EXPORT_SYMBOL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL vmlinux 0xf4a10662 mmc_request_done +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b1c64a i2c_verify_client +EXPORT_SYMBOL vmlinux 0xf4b5aba2 __scm_send +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4e1b181 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f19e51 downgrade_write +EXPORT_SYMBOL vmlinux 0xf4f6e688 set_pages_wb +EXPORT_SYMBOL vmlinux 0xf4fda350 mem_map +EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf531e9d0 pci_ltr_supported +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf541c615 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xf55445b2 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xf562f0b8 posix_lock_file_wait +EXPORT_SYMBOL vmlinux 0xf57c99eb mmc_add_host +EXPORT_SYMBOL vmlinux 0xf586a56f inode_init_once +EXPORT_SYMBOL vmlinux 0xf58eb3e5 led_brightness_set +EXPORT_SYMBOL vmlinux 0xf5a1736a key_validate +EXPORT_SYMBOL vmlinux 0xf5a85bd0 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xf5aa59cb tty_port_close_end +EXPORT_SYMBOL vmlinux 0xf5b96c9e pcim_enable_device +EXPORT_SYMBOL vmlinux 0xf5c05914 generic_segment_checks +EXPORT_SYMBOL vmlinux 0xf5c9012e timespec_trunc +EXPORT_SYMBOL vmlinux 0xf5cf326a param_ops_short +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5f54e38 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xf612809a param_get_int +EXPORT_SYMBOL vmlinux 0xf61bdd81 neigh_table_init_no_netlink +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf66bb943 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xf6760364 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xf682ed26 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xf69822d7 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xf6abffde read_cache_page_async +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6d769b6 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xf6d932d5 spi_release_transport +EXPORT_SYMBOL vmlinux 0xf6e40dd5 journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf70ada07 give_up_console +EXPORT_SYMBOL vmlinux 0xf711ee67 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xf722db4c agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xf735e622 dqput +EXPORT_SYMBOL vmlinux 0xf747dd44 kstat +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf768bc3d submit_bh +EXPORT_SYMBOL vmlinux 0xf78d04ab netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xf7b7260c dcb_setapp +EXPORT_SYMBOL vmlinux 0xf7bdc9ff netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xf7de84d5 agp_free_page_array +EXPORT_SYMBOL vmlinux 0xf7e0a236 dquot_resume +EXPORT_SYMBOL vmlinux 0xf7e37635 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xf7f34ead ata_dev_printk +EXPORT_SYMBOL vmlinux 0xf803fe39 bitmap_set +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82e3d47 acpi_initialize_objects +EXPORT_SYMBOL vmlinux 0xf84c0d19 blk_peek_request +EXPORT_SYMBOL vmlinux 0xf851a7a6 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xf86992f5 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf890fe7f pm_idle +EXPORT_SYMBOL vmlinux 0xf8aac2cc register_netdevice +EXPORT_SYMBOL vmlinux 0xf8b782be max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xf8c5e83f __find_get_block +EXPORT_SYMBOL vmlinux 0xf8dbe769 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xf8f0ea48 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xf8f6f628 mca_register_driver +EXPORT_SYMBOL vmlinux 0xf8f866cc journal_release_buffer +EXPORT_SYMBOL vmlinux 0xf907c72c dev_set_mtu +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf93589d5 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xf940a328 __next_cpu +EXPORT_SYMBOL vmlinux 0xf94153a2 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xf94bcf09 aio_put_req +EXPORT_SYMBOL vmlinux 0xf94d287f register_nls +EXPORT_SYMBOL vmlinux 0xf96cdb8d bdi_init +EXPORT_SYMBOL vmlinux 0xf97456ea _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xf97a784e cfb_fillrect +EXPORT_SYMBOL vmlinux 0xf9853889 mount_bdev +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a7547c noop_fsync +EXPORT_SYMBOL vmlinux 0xf9ab7741 inet_select_addr +EXPORT_SYMBOL vmlinux 0xf9ac227b serial8250_register_port +EXPORT_SYMBOL vmlinux 0xf9bd9c96 _dev_info +EXPORT_SYMBOL vmlinux 0xf9c9f1b3 block_write_full_page +EXPORT_SYMBOL vmlinux 0xf9db43b6 kset_register +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9f40ef3 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xf9f62bd1 pskb_copy +EXPORT_SYMBOL vmlinux 0xfa1f1284 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xfa21d429 ndisc_build_skb +EXPORT_SYMBOL vmlinux 0xfa262895 pci_bus_type +EXPORT_SYMBOL vmlinux 0xfa2b8294 do_truncate +EXPORT_SYMBOL vmlinux 0xfa30957c mempool_free +EXPORT_SYMBOL vmlinux 0xfa4bcd25 flush_signals +EXPORT_SYMBOL vmlinux 0xfa4f7cbd cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xfa58c375 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xfa62b22d vfs_fsync +EXPORT_SYMBOL vmlinux 0xfa698195 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xfa898e08 __pagevec_release +EXPORT_SYMBOL vmlinux 0xfab68782 filemap_fault +EXPORT_SYMBOL vmlinux 0xfac137c2 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xfad4dab8 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xfae04d7d scsi_device_get +EXPORT_SYMBOL vmlinux 0xfaeb1989 seq_release +EXPORT_SYMBOL vmlinux 0xfaf98462 bitrev32 +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb173c55 __napi_complete +EXPORT_SYMBOL vmlinux 0xfb1be686 ida_remove +EXPORT_SYMBOL vmlinux 0xfb1cde20 agp_enable +EXPORT_SYMBOL vmlinux 0xfb506c98 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb752cef framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xfb7d26f4 files_lglock_lock_init +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc2e196 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xfbe27a1c rb_first +EXPORT_SYMBOL vmlinux 0xfbecf596 destroy_EII_client +EXPORT_SYMBOL vmlinux 0xfbfb6416 revert_creds +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc263537 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc508e97 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xfc5e7d5d eisa_bus_type +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc973075 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xfcaa04a0 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb891d7 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcd305ef jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xfcd35070 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcee9544 scsi_print_command +EXPORT_SYMBOL vmlinux 0xfcf37374 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xfcf4dbad nobh_write_begin +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd041b05 vfs_rename +EXPORT_SYMBOL vmlinux 0xfd071c6f elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xfd08cbc5 scsi_prep_return +EXPORT_SYMBOL vmlinux 0xfd1933bb lro_receive_skb +EXPORT_SYMBOL vmlinux 0xfd1befac agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xfd454fff ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xfd59240c padata_free +EXPORT_SYMBOL vmlinux 0xfd6293c2 boot_tvec_bases +EXPORT_SYMBOL vmlinux 0xfd6b3d0c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xfd6f4850 native_wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xfd76df31 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xfd7d7713 acpi_exception +EXPORT_SYMBOL vmlinux 0xfd91a2dd pci_enable_ido +EXPORT_SYMBOL vmlinux 0xfd96756e inet_frags_init +EXPORT_SYMBOL vmlinux 0xfd9b5393 dev_change_flags +EXPORT_SYMBOL vmlinux 0xfda0dbe8 ftrace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdc7f3ba idr_replace +EXPORT_SYMBOL vmlinux 0xfdee7d42 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe13dfa8 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xfe14705b end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xfe3487e4 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xfe48fcb2 genl_register_mc_group +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe769456 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe81a32e pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xfec3c2f2 bcd2bin +EXPORT_SYMBOL vmlinux 0xfecfafc2 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xfed3c3c1 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xfedd35fc console_suspend_enabled +EXPORT_SYMBOL vmlinux 0xfef96e23 __scsi_print_command +EXPORT_SYMBOL vmlinux 0xff00fdf3 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xff12f54f vga_get +EXPORT_SYMBOL vmlinux 0xff1c306e start_tty +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2c3263 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu +EXPORT_SYMBOL vmlinux 0xff60d2d4 dma_set_mask +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff7f3d01 netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xff89ce4f clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xff95ab25 d_splice_alias +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffc37ee6 kernel_listen +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdd2acd xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xfff66302 __block_write_begin +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/kernel/microcode 0xdf66ca81 ucode_cpu_info +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04506cee x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b599714 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fe8e797 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1202e9d4 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1493d4b4 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c4ff99 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18eb957b kvm_mmu_get_spte_hierarchy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c7afd50 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cfe78d1 kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d285d2d kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dfb8005 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2856cc4d kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29906d5f kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c04fc06 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c6d0cfa __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d4dcb16 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d6ca12c kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x335e4795 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33780114 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38df4dfb gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3996e72f kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bbae617 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3de08404 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f0eb8db load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f285a4d kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f5fd8d3 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45506ff6 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46490727 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d77f286 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4fde61e0 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52b105fa kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x596b684b kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x613e4372 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62821d36 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62ed01a7 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6439596f __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65c128c9 fx_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x660c0586 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66245056 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a103430 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a560c6e kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b6d3fbc gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6db19e07 is_error_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74fbc94a is_fault_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7949f1ba kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79c387d6 kvm_resched +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7adcefad kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b05a03c kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bbd6027 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c9b19a5 is_noslot_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x822ed17d __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87da4f6c kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87e0a257 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bab62d3 hva_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c31943f handle_mmio_page_fault_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91960da8 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91a5db3b kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96414d5d gfn_to_pfn_async +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9744134e gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a40d8bc kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d2f2a3b kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f4f2464 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1b579f6 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa35a619e kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa79b7f74 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa91845be is_invalid_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad473158 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb337a2d6 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb34ffb11 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb63b6605 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6c87a13 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7532ec7 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8ce1b3c kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba6c3400 kvm_set_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb996b03 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc2b937d is_hwpoison_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc88898a kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfafe0c3 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc02778a3 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc553b0fb kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc564b18d is_error_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca2498b9 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbd8313b kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc15df8f kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf132048 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd296def9 kvm_is_error_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd29b9c16 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4249a80 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd91510c7 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9d5768b kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda42e243 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbdcc4f4 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf931d80 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe09ace16 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0b77521 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe65158cb kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe85abe83 kvm_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeaffc9cc __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee8ff414 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0ab9991 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2912335 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3423fd9 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3708850 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4208d80 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4b5cdf3 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9a68f80 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9fdf4a9 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe8f5c80 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffa23ff2 kvm_is_linear_rip +EXPORT_SYMBOL_GPL crypto/af_alg 0x0103d84a af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x5b055768 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x717215f9 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x73521dcd af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7e7cde9c af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x821628cd af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xe4649fde af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xe7f9e0af af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xfe3307c8 af_alg_accept +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x7c8769a6 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8cf7e871 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x97be206c async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x20b3fd46 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x92e68b36 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x541792d0 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb5297d10 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbf71100e __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd728ad78 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7fbcb578 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa4c2696c async_xor +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x4ebe4203 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x0f13e19d cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x15439c5f cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x34beb85d cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x65fcdd76 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7268a25d cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x749c08b5 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x763d2e2a cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7cf75011 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x82202cd7 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x8dd49bd5 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x0adcf80f twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x059e83b2 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x7cc4734f __pata_platform_remove +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x03097225 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x037635df bcma_core_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x05e02866 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12f303ee bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x44906bf1 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x96e04d5c bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc5f3328c bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd2d9255f bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd3a57bb6 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd5b41167 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda0c6062 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf1c6db91 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf24da4c4 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x070290f2 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x57f4ad5e btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5bd3edcc btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6221b12c btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9acbdacf btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa0ac5d5 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe42aae36 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe7c082f0 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0x1a17e17c scx200_gpio_ops +EXPORT_SYMBOL_GPL drivers/dca/dca 0x17b88b87 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x2e471f01 dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x559116b0 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x591f7b73 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x8006c614 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x98c877e2 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xb88f18ed register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xc962dde9 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xdc1ec698 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0949b8ca edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1bb84772 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2e69945d edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3700f78f edac_mc_handle_ce_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x39a828c5 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x51e94291 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5b70195e edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x664402f8 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x69259f22 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x71988aa3 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x71e0d4f8 edac_mc_add_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x756c5b30 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x76359e05 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7c3eaf82 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x87ba0e7e edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x896106e9 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8ac27d23 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x92d5d2e5 edac_mc_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x99124997 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbcbb6ca7 edac_mc_handle_ue_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd1fae542 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd56878d8 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe5d11535 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe627d0bc edac_mc_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xeaa63ef0 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf16a4961 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0d38cee6 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0dc0b68c amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0f0ba55e ii_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x4b01887d pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x6d4e6991 amd_decode_nb_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x7509830f to_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb98537cb rrrr_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xc2b73a3a amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xe6ff7e0c ll_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xf8dec080 tt_msgs +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x9354e783 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xd4d3e19e bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xf0f96b84 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xfffc4988 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x12de045d drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd2a89684 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x094adeb5 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1334de71 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24ebb068 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x27e54f36 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x37b2f986 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b0829db hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4020b2d5 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x462bbd4e hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x46aa422d hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x530e1b5c hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5faf4ada hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x636a9e58 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x67f340ae hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ef43a4f __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c964d7b hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb23c028e hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb378b954 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7ae9d7e hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb718196 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd2f42b3 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce1b9032 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0e9c2d7 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd199570a hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd94e5a7a hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd60e3c7 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeafddb44 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xa3b0842d roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x03eae000 roccat_common_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fd2d588 roccat_common_receive +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x30bed4ac usbhid_wait_io +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x5193314f usbhid_submit_report +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa70966cc usbhid_set_leds +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xde0ab6ab hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0aa9d15c vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1456028a vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x40107a4f vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x434a8609 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5b6a8e80 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6e654357 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x77f63939 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c10906e vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x92335eaa vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd0d53576 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xf4cef116 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x93754df0 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd0a3de10 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x20cd3bc8 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd8cbf006 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x4e2cb419 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe6bcbc64 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x04660c10 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0dbc35da wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0e35cadb wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3f00ecfe wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4cd7d254 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x51bedfff wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6a6b0e21 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x72be8524 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbfe3f80d wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc8cc0c8e wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd57211d4 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf2e03cac wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x4de7b2d0 unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xb17b7c77 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x082636fe gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0aa11d21 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x170ddc18 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x309d7b0b gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x36d69438 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4c2b15fb gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4d76cf94 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6a38d769 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x700be257 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x73d8e82f gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x83ade652 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8c5b57bb gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9321a7a9 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb0b32d05 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbb3f6bad gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcc8fa6e8 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe64a6e05 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x1f27b98b dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x58c642f0 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xfa1cd757 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x47ca8998 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x63151b10 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x70b8a2e2 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9a7a780b dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd7e2c6bb dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf17a7b16 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x03ced457 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x08a936ca dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x61c7c085 dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b2ff62 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80c89b3d dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa6aae3ea dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb7bad799 dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb967690a dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbaa513b0 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbc5fe7c1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca2bde4d dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xccaeb9ae dm_sm_checker_create_fresh +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd32479bc dm_sm_checker_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdb562135 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe142ead5 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf99dc2cf dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/raid1 0x70b5beb1 md_raid1_congested +EXPORT_SYMBOL_GPL drivers/md/raid456 0x13b0be2b md_raid5_congested +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x08ba4a47 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x0d80ffd2 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x3a8d3646 saa7146_devices_lock +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x4a2b0d7f saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x4a42b403 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x6a8896b1 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x819897ad saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x89254977 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xb0376a19 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xcf683cf2 saa7146_devices +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xdd5c5c23 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xf3d2a031 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x005e16b6 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x5db7f0e1 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x7ee9ed0e saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xa9c77e27 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xc2bffc64 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xccb050f8 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xd24ac372 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mt20xx 0x32186d1f microtune_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mxl5007t 0x24e499af mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda18271 0xd276f240 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda827x 0xa267a38e tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0x6491aacc tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0xe379af20 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda9887 0x0de28f3d tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x0e25106f tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x7a8827bb tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x3de3c0e4 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x900e72e7 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tuner-simple 0xda02e669 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-demod 0xa1ab22a4 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-tuner 0x2a8eb344 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/frontends/tda18271c2dd 0x2cf2a1d9 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x0aa7a851 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x1893a945 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x26b7372d mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x2e682ad1 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x3d83a774 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x459bcc0b mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x483cb230 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x4de33c7a mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x50a80289 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x61aa4619 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x97901226 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xa2e77115 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xad3d01a8 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xba73c1ac mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xea419e0a mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xf25c0e37 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xf2d52eb3 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x09fbc036 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x13aa8620 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x17cf58b2 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x21fbeb6f smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x2e88ee4e smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x4dcbbe6b sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x56caa226 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x637b6368 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x69e5aaac smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x6d861920 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x76222253 sms_get_board +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x82de3745 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbded33f2 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xc10991bf sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xcf5faf0a smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xd5bd9f58 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xdeae54c5 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xe50272b5 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x0d13dcc7 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x11e2fb7e ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x1b48763c ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x4baa1435 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x4e27dabd ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xaa0c61fa ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xc00baf01 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1f7b45ca rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2cb8ca47 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3c3782bb rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x43b6c9e0 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x477ce737 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x511cdb4a rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6659013c rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6bb0f636 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7ea7bd75 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x88be6674 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9527f2c3 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x99a968ef rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9ef996e0 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa4e66011 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4fcb11b rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe702b20b rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfec8cf8e rc_map_get +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x1013119b cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x11ab54f3 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x1b0fb06b cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x279a629d cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x30fbeb69 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x337eff13 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x492bfeeb cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x499febfc is_fw_load +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x4b45916b cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x4dc9658c cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x5804c7d7 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x6251d39a cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x75f3b337 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x77f95da7 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x83c5d357 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xd7f19563 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xef219b6a cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xef5758bd cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xf0d4d129 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx88/cx88xx 0xb84a6967 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x00f0b4cf em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x3ceab970 em28xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x4ccbf7f0 em28xx_isoc_dvb_max_packetsize +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x776ab939 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x88763559 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x920b19bb em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xab07e330 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xe70306a9 em28xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xea202eca em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xf9ffb3a2 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x100cfadd saa7134_s_std_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x17ae4d9c saa7134_s_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x583e0643 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x968cf5c7 saa7134_g_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0xdd5294ca saa7134_queryctrl +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x0a00cfbc tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x2a8f1593 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x4e872a98 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xffaad8d2 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x32c7de90 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x487af161 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x50c53198 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x94632f90 v4l_fill_dv_preset_info +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xaf980ce3 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xd395f6e5 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xe5932d53 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x05e426be v4l2_int_ioctl_1 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x0c001422 v4l2_int_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa5228b24 v4l2_int_device_try_attach_all +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa6e9c7a5 v4l2_int_ioctl_0 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xb683f8c3 v4l2_int_device_register +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x0967bfd2 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x19d8356e v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x545d8631 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x58968dd4 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x69133fad v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x715fe4ed v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x8f16c006 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x8f36c0d8 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xad3f4146 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xca87fa05 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xcaf0337a v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xda43a0ff v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xfc7e9414 v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x035a0223 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x2089ab6d videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x2f534e89 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x319844fe videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x4729382f videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x546bc7e5 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x5bc144be videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x64254f93 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6aa1b1b5 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6c704799 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6df81640 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x87e2608c videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8c68924c videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8c9cf0af videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x91d3a025 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x9e2536e1 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xa31cd208 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xabcf0804 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xb62ee7ee videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xc3f061ce videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xce1a0753 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xdb36055d videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xe168b934 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xe277218b videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x0d748eb0 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x3959d400 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x90347922 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x12b63547 videobuf_dma_init_overlay +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x764514af videobuf_dma_map +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x7f9521e0 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x85f9fc3d videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x8b647f93 videobuf_dma_init_kernel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xce2f26e8 videobuf_dma_init_user +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xd6ecfd6d videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xd97e9eaa videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xff33b6fc videobuf_dma_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x2b06f3c9 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x66ec6c2a videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x75e19a1a videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x03120d81 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x12a33ee6 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x1e6a9890 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x44a34104 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x4ce3912e vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x5eb10877 vb2_read +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x637d0828 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x813626a2 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x8648aeb3 vb2_write +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xa11a14a1 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xa7983aa5 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xab58496e vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xb046623f vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xbb6c2edc vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xca803845 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xf0295994 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xf90fdcdd vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0x0b9b4496 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xc738e23d vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x70d4d419 vb2_mmap_pfn_range +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x90e55704 vb2_put_vma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xd3329149 vb2_get_contig_userptr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xf221fa76 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-vmalloc 0xd31c4fc3 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x01d402f8 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0721c4b5 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x09b53e51 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0d438e8c v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0efba2da v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x1122aceb v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x18ab4407 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x33e17442 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x4f184613 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x6a3a9b06 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x7d251143 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x892c47ef v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x89ebd081 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x95026a16 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xa7e47ad3 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xab64b391 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xcb6ddb35 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xcf966b65 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xdf0847e0 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xf10dda77 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xfce05b67 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xfef72999 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x01a33859 i2o_pool_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x02aacf8b i2o_pool_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x3a7a656a i2o_dma_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x44a81056 i2o_dma_map_single +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x50f72ced i2o_dma_realloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x5c5b8961 i2o_sg_tablesize +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xe40c043b i2o_dma_map_sg +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xf956e257 i2o_dma_free +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29d1d107 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5ef7a514 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6a3bb580 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8a09bbac pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x986e2f66 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x99f7c700 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb24ed699 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb94fdd81 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc1e4af53 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe9781653 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xecc6f397 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xff58e2f6 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0ab966c3 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x863ec439 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0226dc4c pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x11560de9 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x336b8da7 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3810b948 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3db41246 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1bb065ce sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x3e667941 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x42ddd7ae sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xcc61bfe9 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdd8ec797 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x8032a07c ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x1cedee6b wm8400_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x3f01762b wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x43f9a2ea wm8400_block_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xad40c2db wm8400_reg_read +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x28d84af0 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5c1231ef cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x874ce2c9 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf60eabc1 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x2df115d4 eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d14d2f eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2a66e60b enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x311ca093 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6b96abc4 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7ffc4c26 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcd619db2 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xefb47de3 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf9b76ae6 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2cb182fd lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x51b07b0d lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x58fc6f0f lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8eaf66aa lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc6bf50f2 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd6233b4b lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf81843d5 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x5e7cb021 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xfdc926f6 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x09f7dabc sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2f7d2f0f sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x50546a9a sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa8603787 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc149d98d sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xde0cd150 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe9426676 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf0eb5375 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf9cf570a sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x09eb507c sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x262fec40 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x47117d1a sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x49f2024c sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4cfc4aaa sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x75137fda sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x30b0d2f1 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4fda3a07 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x66c0c1a4 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1bdd07db cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb6efc4f6 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe4da33b0 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xd003d7fc cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x27b39274 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x40a1b78d cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa247d927 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2000 0x5ed966d2 DoC2k_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001 0x7fd44457 DoCMil_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001plus 0x44f40751 DoCMilPlus_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/docecc 0x45937659 doc_decode_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x291464a7 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2a406bd2 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f3b7845 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30e4b2dc mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39e124f6 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a264ffd default_mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49adb42b unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c48d62a mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c5b82eb mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4faa0d61 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63874dc8 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67ba8ba9 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6cc01adb mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f75282a kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9640477e mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9840a2cc mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a95bb7e __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b7def8b register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9db1359b deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9077ab8 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd231d52b get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x13a1c2b1 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3ad2dafa deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7f5f7f74 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x93f51fbf add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe364aae8 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x045d7500 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x82d5ab25 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xc5c15da1 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x07db5099 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xed57c105 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0841b095 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0b9a77f4 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3be74f7d ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3d5a1fbc ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x44f464c5 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ff22cda ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f09ba8a ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7a071909 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8b50d1e4 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8f65bca3 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x90719d77 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc7d831ea ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe0efacf4 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe576ed28 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd6f0ef9 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x41e257fe unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x73adaca8 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8eb96692 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xebab6d84 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x19c741d0 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2b2a9537 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x41afb149 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x829a8c2b free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9ce2de1b open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xafd3be46 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb7c8098e alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc65efb21 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc7992753 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd529df50 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd71bab39 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdba8faea alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x19061742 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x193a6fa4 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4086d4c0 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x71d54205 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0188e500 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04379dbe mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06fecb33 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x096408b9 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a18c3d9 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dbe8fa6 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13de1054 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x244f408a mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x253f9f05 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31a2d58f mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x322896bf mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x340d6200 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35e81131 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36093b44 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x379ef8d0 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a581aee mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dddd608 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f7e8bb0 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x448205fe mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4974fdfc mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a124c63 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x514734c3 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52b24593 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54e0a95d mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e2bd520 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e82e417 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68606d17 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68973372 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x691e1e79 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a894253 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bc68b8e mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d365021 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e907ae4 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b522a63 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80353a71 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81018489 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ce87cbc mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d0d08be mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95fdc041 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b2362ee mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ba22818 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cf64022 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dad3ff3 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f7d6cc4 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa07299f2 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa32635a6 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4aedb4f mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa730fad1 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8535b71 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaae2076b mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad4d2780 mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xada71845 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf2dcfbf mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb312ee0e mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5bb25ed mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb623e277 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb86ed92b mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc29cc49d mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc443c090 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd015693f mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd07bd4ba mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0b9ea2f __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd30ea038 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0c15ded mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed21f5fa mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedf7e3c5 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2886d3d mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2e37153 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x09e7d664 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6bcb5e7d macvlan_start_xmit +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb299ea4a macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc7e66c5d macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xee9f5d58 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xe3c19bae macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1b0c697b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4b2ce059 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x92c9be3e usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb98b484e usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x03bdf9aa generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0b60970d rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x261c10a9 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x33c706ae rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa9cf2573 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xac974c33 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x027d3268 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a70da6e usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c6d9195 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d70a72b usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f927d1c usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5bbb9f9a usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71c34ba7 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72f82b9a usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74ef0c4b usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8060d86b usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x898acd01 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91335832 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93d015da usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c2bf579 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8cf9c7d usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc17a984d usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc54501b7 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd4eed27c usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd5c5e47a usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde4a479b usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe36f514a usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6f59592 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed39ddb6 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed444486 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0fce0ac2 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1954755f i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1e39a60c i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2e3dfbf5 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x50db8161 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5c2a35f9 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7193003c i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x816ed3ce i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8da02c7c i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb469efc5 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc416763d i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc8fbe709 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd79a8f92 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe1813a79 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xeec7cc3a i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfb462589 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x1c820b19 libipw_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x972efcbb libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x2e5c8ae4 iwl_legacy_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x320e1b8b iwl_legacy_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x43a1d706 iwl_legacy_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0xe3f891ca iwl_legacy_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0015460f lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x27c7907a lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x32d27be4 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4c0165f3 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7387e557 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x91c0356d lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa2c67f88 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa5e0e530 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa9a2dcef lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xafb190f4 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc2150afa lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xea49999e lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xedbbc94d lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xeeb589fa lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfebb3edd __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2c63f131 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2ffe9b69 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x390c8314 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4d353940 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x59dc14c9 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6d5b3fd2 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd5eb5c5d lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xed01bdbf lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0x2eab2d09 if_usb_prog_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0x70a486a9 if_usb_reset_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x217f6d60 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3ba823bf mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x63702f69 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x67fad8af mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8440e510 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8d6a8b24 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9015c849 mwifiex_deauthenticate +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9681d007 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc6f7e8c7 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcb2c73f6 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf38985bd mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5ac67011 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7962f8a8 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa6dfa083 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaa5ddbcd p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaba71f63 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc88b5d37 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xccf12195 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe20ac740 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xecc12c49 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x011a36bb rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x013e1024 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b9d3cfe rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0f2daf8f rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x13933cf7 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x148fcb4c rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x18aabc54 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1b34893f rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x21ec6933 rt2800_get_tkip_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x25fc1c89 rt2800_probe_hw_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2730a49a rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c2b9f59 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5c7b51ba rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5d0e6f50 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6796a085 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c5473fe rt2800_init_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x79293952 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7955041d rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7ff3e1b4 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x86d57703 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8c262eb2 rt2800_validate_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x91250fb4 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa74a7ea4 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa84dc562 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaf785c18 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb305ffa5 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb4d57b61 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbca8bf11 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc16c26d7 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc6067315 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc8672660 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcf17be68 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdb91345c rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe7a0e59d rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe93130dc rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf60d16ec rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf6a7aef1 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x03ea348a rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x09dd78ff rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x11fc2d97 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15851f73 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1c5534b1 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2aff8258 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2b5617fa rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2ba4000e rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2d2b5459 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x30a5c7a7 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x37838c4f rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x384c1ff4 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3df8a779 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3fd251eb rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x48835154 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x493b01e6 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5efd5cc1 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5f9fe7d3 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6596673d rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a3229b2 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6bcc2c07 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e058094 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x70efcd97 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7325d9d9 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c961207 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8b4dd211 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x900e9701 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x92cbb882 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9e4297ce rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa159504f rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa9de6c41 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4ebda3b rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb82a8906 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbdc7e55f rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0acc811 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc2c3225e rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc8eb2bd5 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcda30383 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcf200354 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcfd4beac rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd7837ff0 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda8b68cd rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdaa3d8d3 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe4b9ee95 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xee87c859 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf1f70d71 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x12182deb rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x3242397a rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x6cd6f78c rt2x00pci_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x81f67aaa rt2x00pci_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xa3e5901b rt2x00pci_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc339690c rt2x00pci_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc734c21d rt2x00pci_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf3ca9214 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf70fda50 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x09695df9 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x13c66e0c rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1b5bfff6 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x22a2ee86 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2d8e294d rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3fa5e8c2 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x52e10756 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5a8afe40 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6c54b2e6 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x978268c7 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa48520e0 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd99e5c31 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdf0fe782 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xee473533 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf7dd8906 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xff4db2fe rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x7f3a841b wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x9bf17860 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xd2d06b8a wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x092ee4b6 wl1271_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x1072527a wl1271_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x20152f36 wl1271_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x2ea6b086 wl1271_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x87e8d994 wl1271_unregister_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x91b39f89 wl1271_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x9e07aa1d wl1271_register_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xe795ba26 wl1271_irq +EXPORT_SYMBOL_GPL drivers/pci/hotplug/acpiphp 0x372d8718 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL drivers/pci/hotplug/acpiphp 0xbbd75fe2 acpiphp_register_attention +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xaa668243 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xffc5bb50 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x64ebe677 wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa9b7afd8 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc5e3dddf wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe2426710 wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x0a162f51 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x3218ff7b pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5d9f990f pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x37c77e84 mc13xxx_sw_regulator_is_enabled +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4465d216 mc13xxx_regulator_list_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7a8b9638 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9e456d10 mc13xxx_fixed_regulator_get_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa1a96922 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc9a8a123 mc13xxx_get_best_voltage_index +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf24600c7 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x897967c6 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xae13a16e wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd3e555d2 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd73ac44f wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe19f0eb0 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf83e9d21 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x4b11fae7 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x03e53d79 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06c3e2d7 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08b87035 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c8e411d cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d88dc69 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1be9b57d cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x275167f4 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x320465db cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x331b2dea cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34e44405 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x38848a4f cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x425a0ebe cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x438a007f cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47672005 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4926f43d cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e522c11 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51bcc6c8 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c61d122 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6151c689 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6589f593 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66f43435 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70a574e9 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x758319e0 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75b0b502 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7703c0e8 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77a644ff cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x789a41ae cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86b08b7d cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x923b887b cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9511036f cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95bd9601 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e4f214f cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac792bb8 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3fa6aa7 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc51a8691 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd0c0e2a4 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1cad41b cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6b8d36c cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7d9e08f cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec47bbd7 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0b74536 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb0989dd cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd071e8c cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfddf4f57 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe7a0860 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05cd4d6b fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x08f243ed fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x245c5a3d fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x74238a5f fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7535ec3f fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdfcd5c32 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe1984f3a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe36f347b fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe9bdf72b fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x17b72d1d iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x326112cd iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x41a14226 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4dc4668a iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8f7d9184 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc28a1258 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x004f72ae iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0171da38 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01cb33ab iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0aab74da iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0be6e780 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e54b49f iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14c24fe4 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23f1ae65 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24423968 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x276d855f iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eb88f8b iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x345f12a3 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43076f48 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x442f533b iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46da4daa iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2709b0 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x592ed3cd iscsi_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d7468ad iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6086faab iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63949ffd iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6408e5a2 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x662301cf iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c13ebf0 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x782f8a11 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c50cfea iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92928fce iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94324235 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x963cb94b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b7d76c6 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fce9728 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4832cf0 iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5dedf87 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa81621c9 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb67f6f1f iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7822651 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc42658c7 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5624fd4 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7dfd4a4 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb9f810a iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd113e51 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9304ceb __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe35f8266 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb724605 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc491175 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdd09144 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdfb7d30 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0ec061d5 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10fb7fbd iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x25248392 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x326cb75c iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3f743aa3 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x48036ede iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x50046cdd iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6f8b7a6c iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x73c04ed9 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x79717a2c iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x871e1ff6 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xac77c618 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaf094678 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6696c85 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xea1a3d9a iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xefec6a4e iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0cc87194 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2857a467 sas_change_queue_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a13db66 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35e69e0d __sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37c14b20 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41625a93 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x527fef3b sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x605e74a4 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b087397 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6bd2b6e8 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c363a8b sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81c914c4 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9518102d sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a9cf68f sas_find_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f32dda3 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2087b77 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa5281fb6 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xabfeeac8 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xafdb4c3c sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb1a6b3a0 sas_slave_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb0a9ac3 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc827b16 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8a53771 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf00b5d7f sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfbeda9e5 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x1a9d1dc2 srp_transfer_data +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x8615c7a4 srp_target_free +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x8ac287d6 srp_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xc695f7ba srp_iu_put +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xd5e2b1d1 srp_iu_get +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xe39a61a0 srp_cmd_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x2a318908 scsi_host_put_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x5feb3f9f scsi_tgt_it_nexus_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x6142fe2d scsi_tgt_cmd_to_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x6363ee54 scsi_tgt_it_nexus_create +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x73eb8fc1 scsi_tgt_queue_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x93764f07 scsi_tgt_alloc_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xb9698cc2 scsi_host_get_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xf2389671 scsi_tgt_tsk_mgmt_request +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xf60d9849 scsi_tgt_free_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07e9cf7b iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f1ebea6 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x229e754f iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x427b0c90 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76a513ec iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x785ac966 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cf9f99c iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82c20810 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87f13e35 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92172f34 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x988724f8 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ec954da iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9efa510d iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1070b3d iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa40ec200 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa97b109a iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb14bc0ef iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0eaa57a iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9290c0a iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcdec9f45 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfb8c41d iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd88c245a iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5b39806 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea4b3002 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xece55fa5 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf1763608 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf661dd83 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x307b7d63 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd307918a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd3bf668e sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd7ba75b0 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x14c4de62 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7ce903bb srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9927a646 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xaf20bbbd srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfc0aa873 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1a80ec3d spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x426ede38 spi_bitbang_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4b08cf02 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4bbe5b5f spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbf78697b spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf49a29c4 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x157ec62a comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x31eafeca comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3ad77861 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x55d9eb1f comedi_get_device_file_info +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb9445ab comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x2ad71bdb das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x86fcde20 das08_cs_boards +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xfa71f734 das08_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x25e55b95 labpc_1200_is_unipolar +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x2bb8f9b2 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x8285332a range_labpc_1200_ai +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0xaf1e4347 labpc_1200_ai_gain_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0xc30f2dde labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x07801192 ni_tio_winsn +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x144b31a3 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2f035997 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x313e2aa9 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4a7d05c1 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5a118543 ni_tio_rinsn +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbbf3cc64 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd61f58dd ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1cacdbeb ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x53372dee ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6e23c3db ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x8adbf5a3 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9c2b25fc ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc5cc38e5 ni_tio_acknowledge_and_confirm +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x2468ed34 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x579d2806 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x587711de oslec_create +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x882d5f27 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf828c15b oslec_flush +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf923a5b1 oslec_free +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xfabc3747 oslec_update +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x3730cb0f iio_scan_mask_set +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x41f3c760 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x6d427fc9 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x75e653ab iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/rts5139/rts5139 0x35b85807 rts5139_usb_ids +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x260e1ab6 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5f23a9c8 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6d6bac75 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6e3ec0c4 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x71d87acf serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9fe5e77c spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb73a5748 get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xce56e8c5 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcf8492e1 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd3d3772e spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe4f95a5b synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xedda1b30 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf62d9d79 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x104210cd usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x2484c97a usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x87de8b68 sockfd_to_socket +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xb65e7b66 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xbd049bd0 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xc222fb05 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xc8bcbc1e dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xcb80f9cd usbip_start_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xccfe1200 usbip_xmit +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xcf443b24 usbip_event_add +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xdfd6ec22 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xeed57ba3 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xf50de1bf usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x046cb8f3 max3107_suspend +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x10b3898e max3107_remove +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x76d96f3c max3107_rw +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x966ed4ab max3107_resume +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xac8df938 max3107_hw_susp +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xf5017cc9 max3107_probe +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0d0ce6c0 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x68366ba8 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9a82c19c uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x799169e4 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8742de84 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x3cda182e usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x40605ed5 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xa2a8f2af usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xc2b771bc usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x172881a1 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6243bc96 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x632c2f7b usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8321f2a0 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x843aa307 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xba3b102a usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc28d814d usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd6d948aa usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfca72a93 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0ffeb3f9 usb_serial_generic_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x25c93d73 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x30b0e751 usb_serial_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x47fc5651 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x50361f8e usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x51a32d7e usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x585594a6 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6d9810c3 usb_serial_register +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6dc5e746 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6f5eea7c usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x717dcf84 usb_serial_deregister +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x84d36049 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8654e58a usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa19ce493 usb_serial_generic_submit_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf1885e0 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd337f59f usb_serial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd47c89b7 ezusb_set_reset +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5bec867 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd996f526 ezusb_writememory +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe9d1cc26 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfc4073f0 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x07fc5f72 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x12aa8c36 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1aeb1d97 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2e1c4764 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3076e258 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3adc7b13 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x447988aa usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4ded5eb0 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x547e90dd usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5e982d99 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8767f641 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9cc95010 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa1c17730 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xae50dcc6 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb1519ab3 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc1dcfebc usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc71f6b0b usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcd03053c usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe073a6f2 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe0d2870f usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe3f30ea0 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfb1aeaf0 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x41278138 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x69e26f7b __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6c2148da wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8ce9c6fb wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa3f999e2 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x091d3e34 wusbhc_rh_resume +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x149fa989 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2a520709 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x32e27dd7 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x33d7dbec wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3ef2a7cb wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x42dddf84 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5187f3a5 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x69f71e8c wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6f6739fc __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa6158bf1 wusbhc_rh_suspend +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbd798a57 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xebf31993 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf47e999c wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf7d045cc wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfcf782ca wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1d504059 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x4b6bbe02 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6d1c5d9f i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5b57bbc7 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5d48be13 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7855ec10 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x85ef9db4 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x964b0013 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9d26b216 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd1570775 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd791a3d4 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x07151ace uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16b1d0a3 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1fbd03ca uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x21580d90 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2e03f3be uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x37976b22 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3cc0e594 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x400bf5de uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x49f3a119 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51fe4bfd uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x541325fe uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6515f73c uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x68cffd29 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6a6fcf4e uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x729d1d71 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x73dc323a uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7403b318 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x772569c8 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x776a79b9 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x841a32b3 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x88639b8c uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ed9a6a7 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac55a4c2 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xadc5ecb6 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbcce3fe2 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc5ed03e2 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcd064e40 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcd820395 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcff649c1 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd1615b90 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd759aaa5 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdc01dd12 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde41cfa8 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe07934e8 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9798d2b uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xede5cf7e uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfd7baf0a uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xded4070e whci_wait_for +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0d7fc322 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x21c2cc24 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x27ddce4b ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x60f41bb5 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7f483abf ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf608473d ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfbcf7926 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fb_ddc 0xa26b2e0b fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0x6915d082 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0x7323ca90 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0x1e379129 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0x51212fc0 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x292da7a2 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x79e6190a viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xcba55132 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x02b2796b w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0fa1cf24 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2591b74d w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x393ec7c7 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x55e44298 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x700faa0c w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9fbfda9c w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa4eddaa1 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb2778a4e w1_touch_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0864c4a4 dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4816042e dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x987250c6 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe5ef307a dlm_posix_get +EXPORT_SYMBOL_GPL fs/fat/fat 0x18d10301 fat_search_long +EXPORT_SYMBOL_GPL fs/fat/fat 0x240c5d23 fat_build_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0x360592a2 fat_dir_empty +EXPORT_SYMBOL_GPL fs/fat/fat 0x413103d8 fat_fill_super +EXPORT_SYMBOL_GPL fs/fat/fat 0x5f34a02b fat_alloc_new_dir +EXPORT_SYMBOL_GPL fs/fat/fat 0x600d65e4 fat_remove_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0x72463526 __fat_fs_error +EXPORT_SYMBOL_GPL fs/fat/fat 0x7b8a9659 fat_add_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0x91f617b5 fat_time_unix2fat +EXPORT_SYMBOL_GPL fs/fat/fat 0x9cc5a578 fat_flush_inodes +EXPORT_SYMBOL_GPL fs/fat/fat 0xad644674 fat_scan +EXPORT_SYMBOL_GPL fs/fat/fat 0xbc8e4286 fat_detach +EXPORT_SYMBOL_GPL fs/fat/fat 0xc4011f14 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL fs/fat/fat 0xc90b699e fat_setattr +EXPORT_SYMBOL_GPL fs/fat/fat 0xe1a01ad9 fat_sync_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0xea7bb624 fat_attach +EXPORT_SYMBOL_GPL fs/fat/fat 0xef24a632 fat_free_clusters +EXPORT_SYMBOL_GPL fs/fat/fat 0xf42e0b57 fat_getattr +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x17ce645d locks_end_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x42813bfe nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f959b35 locks_in_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8d72c11c nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96877ac4 locks_start_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x97c155f7 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa7b91a7b lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb8005f2b nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe2d053e5 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6933c48 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33e1f485 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41719c33 nfs_initiate_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x457a433b nfs4_reset_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ab0ad6f nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x593084e7 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a2d65f6 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x626281c4 nfs_initiate_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x735af091 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x747f4f7a nfs4_reset_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a246a04 nfs_commit_release_pages +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80ea174d nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87a8ad19 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb16ad484 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8bdba3f nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb5b908e nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd64caa6e nfs_commit_clear_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5a87370 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe6e90f2c nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xec15f900 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x08fca8d2 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x21cec364 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x23cf2028 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xadf9f11e o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb09284e0 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbbc16f86 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc69d5fc4 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0a3a5213 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x29cc7cbc dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x414b48d7 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x44ef6d85 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc484dbfd dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd502fd75 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x025e2d69 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0562c415 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x05959145 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x16b2e575 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2b4ac6ab ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5469ce31 ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7083dbd5 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89502fe7 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb4bd060c ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc1b20d07 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdc823ea4 ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe2bd47db ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe417d940 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x05513b71 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0b8ef590 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x4a48d81c raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL net/802/garp 0x7c136b0b garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x7f3d7941 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xa9a15b60 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xab4ea10f garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xc52d6fb3 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xde24a58b garp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0xa3d31292 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xd0d1448f stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x267fa5e8 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x9ca5ae59 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0x50754510 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xe2c6bb26 unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x2b21af90 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd40ba892 bt_debugfs +EXPORT_SYMBOL_GPL net/dccp/dccp 0x017921b5 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x125249b5 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x17502c1d dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f8b9beb dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1fba8e29 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x285810ed dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x348d833c dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3525c0a3 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3556ee61 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3571ea3d dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x381cfd0e dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d87e1dc dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4220ebe9 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45fde28d dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x465c01e7 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e4452c2 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59ff5457 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f1cd994 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x62c49492 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a4787fa dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b4b9ad8 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x763af0de dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x85d187d4 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8eb68a86 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x90ca459e dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94c5ce6d dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d86a236 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0b20c98 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa50c7e13 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xab705ba9 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae900df8 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf5cd502 dccp_insert_option_elapsed_time +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe050ec5b dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xef34fe32 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf03bf970 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3017e21 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x12eedd22 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x22f114ce dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x67ea11a7 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9311eaab dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9a65cf8b dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa47e08a3 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/ipv4/gre 0x16d4d197 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x77a299a8 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7c2101e0 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x88472b43 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x5aa568f5 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xc3a6818d ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x44134353 nf_nat_seq_adjust_hook +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x6d40a921 need_ipv4_conntrack +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x07ae60b6 nf_nat_proto_in_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x275229c4 nf_nat_proto_unique_tuple +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x6b527630 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x94a08134 nf_nat_proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xb94bedf5 nf_nat_get_offset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xd7d45665 nf_nat_set_seq_adjust +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xedb13b7c nf_nat_packet +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xf34b1b12 nf_nat_proto_range_to_nlattr +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x32bb634f tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x78a0d042 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x851b1ee3 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x985693e3 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfa1540ab tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x6b382b9d ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x02b1dd80 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x249cae71 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3afe36b9 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x42d135f3 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4642d106 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5516f862 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x78f3309a l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8abe3e0f l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaf9dfc6c l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2f5f068 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe58e228c l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xffc665ac l2tp_session_delete +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d045716 ieee80211_iterate_active_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xae4997d4 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbb29e71c ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbf88c6a0 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebde69a8 ieee80211_key_removed +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec6dc70a ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee2333a9 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfad03705 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfb5f6064 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bd82539 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4872ed40 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5aa0f832 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6e5013f5 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73234c44 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8aafdef9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ca6d85d ip_set_nfnl_get +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7f5c049 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5f9b62f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0c35243 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdc0301d8 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeba6cf16 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf0124175 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf94f1d4f ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0a965b31 net_vs_ctl_path +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x190d1b57 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x50dcb904 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9eebaa6f unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc1130f76 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x036f36a7 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03a8dff5 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x066fff72 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a3b9c7d nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a4994cd nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc10036 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d6d5338 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21e439a8 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a76241c nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ad58278 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cc26f49 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cdcafa7 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ed4c048 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3369b90c __nf_conntrack_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39fc1ded nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c30c1c4 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49458631 nf_ct_insert_dying_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4aebb71d nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b3aa89d nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x528b9342 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5672add2 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b4b1b72 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64dc04fd nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bf38bb5 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x744b0147 print_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x744fb408 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75568f3c nf_conntrack_hash_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75f5c9de nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a889be4 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cc95ea4 nf_conntrack_flush_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ed36c3f __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x834e512e nf_ct_nat_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x884dd291 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a474849 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92982965 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93e80b0a nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97b42f89 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b412165 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f8cd8c5 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa17874dd nf_ct_remove_userspace_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1de6988 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad674e10 nf_conntrack_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadbaba47 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae683311 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3ab1519 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6bba863 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb859ffb4 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2b22c7b __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc47ddbbe nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9e04f8c nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9eb3a08 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca6d700c nf_conntrack_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccff65e4 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3dfcac0 nf_ct_delete_from_lists +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd69c031f nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdef06f4a __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf813723 nf_conntrack_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea74af2c nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed4de8e9 nf_ct_l3proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee907105 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa3d8247 nf_conntrack_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x21e8910a nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc13339da nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x7db1a2c1 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0029e4c6 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4034e15d set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5f288aab set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x821849c1 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x89a2a8a4 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xceb9b00a nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd6fe9075 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd995c8ce nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdabd8462 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xff928fb9 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xe8ed8a82 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x01c5b78b nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6585154c nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9deabf8b nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc59ef068 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x84d5bbe5 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xb44c9fd1 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0cda40df nf_nat_sip_expect_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1437d4ff ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x19b2f844 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x27e27ded ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2a770d29 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5af38465 nf_nat_sip_seq_adjust_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8aa86200 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8bc3207b nf_nat_sip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa0092250 nf_nat_sdp_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbb6a8c23 nf_nat_sdp_media_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc21a45e5 nf_nat_sdp_session_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xde490b07 nf_nat_sdp_port_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe95f197f ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x7c343535 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x16b78c67 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tproxy_core 0x7ac96b35 nf_tproxy_assign_sock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f58e71b nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x25e1d11d nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x27e6c1fb nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3895cd7a nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x40c374fd nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x76308477 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbe24d3b0 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xce0e5006 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x7939ccf3 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x21f5bea6 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29c57b0b xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3681e5c8 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c0e319f xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x439e6aab xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5ab35e22 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x83f4e303 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad888be3 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4f6d187 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd007d648 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb5d6c2b xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdc7d1ec8 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeccfc99a xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x133e13b5 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf7b03908 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x1aa6fcd2 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x262e1dc2 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3a5fca54 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3ca22e6e rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x4464e098 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x4df443ca rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5797330e rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x623a6ac5 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x64766775 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7794dce0 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x7c3f4bd5 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x80cdfca1 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x84f70a32 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x85fef96f rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x93a00680 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x93c9b7c5 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9b06d77d rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xb5b93766 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc9e55bb7 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xcc8c1107 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe0bb7f7a rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xefc2f4ab rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xf228054a rds_message_put +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x066a4c6f rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x103b17f1 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x01fa99c2 gss_svc_to_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1494fb1f gss_mech_get_by_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3111e325 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x36bc9a29 gss_mech_list_pseudoflavors +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3785996b gss_mech_put +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x37b5b415 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x45551e1a gss_mech_get +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5c86b726 gss_mech_get_by_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x699a2104 gss_service_to_auth_domain_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6fbf34f3 gss_pseudoflavor_to_service +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xabf810fe svc_gss_principal +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb20bab53 gss_mech_get_by_OID +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbab4e3e0 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00606bf1 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0079fafc svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0349e969 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04f15233 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x072d779c rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x089007d4 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x098a2c93 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac6a6ad svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103bdbfa svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10a383eb xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10fa2de8 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x114ec89c rpc_mkpipe +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e280e3 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13e639bc rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14e940af rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14eeb95a xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16bdd974 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16bddc04 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17e2a592 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b7d112 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a2a653c sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a57dc9b rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af087f1 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f111ad1 cache_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2020621c rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20b56f9a sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2418ac0f rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25f492c4 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26b6c271 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27508eaa rpc_queue_empty +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x278cb528 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x289cb438 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2932c38d cache_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x297d6b80 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29f53429 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a14c8cd rpc_get_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6b0c8e xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb23c73 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x312dad55 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x326d7a29 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36a8a0ee cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37829902 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39a50051 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b2132b4 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b54bd7c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c58b3ee rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d3f553c xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e75f932 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41d2d9af xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c8e4e1 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x430bbd2d svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ed046c rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48a5e829 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ba47d3b xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d3d7c07 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d72afe7 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5106293b rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57707455 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b14ec1a rpc_put_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd26000 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cfa8bd6 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec44c63 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec7ace1 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ef13aed rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x618bdbd6 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62edd99d rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63261bc1 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66747699 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x693ffd8e auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c3d13d xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b7c0b60 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c192ef6 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c26ce2d rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cdd8608 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e126334 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eea229d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f825199 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7600606a rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76ab9c1c read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7769d98b auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79d53d18 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79f90a61 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d89122b rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e19bbac xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80540cc1 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x815e70c6 xdr_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82aa882a svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83d069f4 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x845efee5 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x845f3973 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84cb9c87 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8523cccd svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86b64d87 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87287cf0 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ab36719 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d8fc2f1 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e6ae665 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90e03205 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91c5a59a rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x937927d5 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95e3c0db unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x978f74e4 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99ea7930 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b11c9c0 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c020b25 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d3a2aec rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1c27c36 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2baa6f8 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa631a67d rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7bfa253 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab66684a rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacc82de2 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad40e292 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf9d9c92 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafe36504 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafef7650 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0fe5f4f xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1b20b51 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2bcf202 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb38febe0 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4d73d7c xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8c552d0 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe33ca3a rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe9479dc rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2401ced auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc796e5e8 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb179623 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc454c38 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd040b9e xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcea88b40 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd24abcbe sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd43f33c8 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd648f743 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6e25d3e svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd70e20a1 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7a00e42 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd2ada76 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf6a2d83 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1321f5d xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1770b4f xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2477313 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4a6fafc svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe830638f sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8c805de svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0b06ae svc_sock_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec96630d rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeff3dae1 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c9a232 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf534f751 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf67cb530 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74f743b rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf885e528 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/wimax/wimax 0x18afb818 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2675163d wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x72b8aa6b wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x79a26d0d wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xaa3ed9e5 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xacbdb388 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb3a27786 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc9a06e13 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcaaa0f13 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd9f4ae7e wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xeadacac6 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf157c1b2 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf4ba5431 wimax_state_change +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0c4b0d3b cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1de3f972 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3f6c564f cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x69173c93 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6d7322d7 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6fdec6e5 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8faec5ed cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9b549692 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaff938c6 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xddd72693 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xee52baaf cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0a4f9ab8 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0d7f51d2 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x253669c1 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8e26d65c ipcomp_init_state +EXPORT_SYMBOL_GPL sound/core/snd 0x0b5a2ca7 snd_kctl_jack_new +EXPORT_SYMBOL_GPL sound/core/snd 0x2ba2e164 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xd60a2751 snd_kctl_jack_report +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x10e88524 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0a40a627 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0f3f4e5f snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x21c3daac snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb4ff724c snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe7fc3ead snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf8e3c75d snd_ak4113_build +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x092c50c0 snd_hda_queue_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c187984 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e2dd697 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0eaa096b snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1579d733 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15c39d31 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16a20dd5 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17ab7bb9 snd_hda_codec_resume_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1922f43d snd_hda_codec_amp_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c6e8dfc snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ca31b59 snd_hda_query_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fc6154b snd_hda_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30c923df snd_hda_delete_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x346525cf snd_hda_is_supported_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x399d5d4d snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c2e6a01 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e3808fb snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f2c26af snd_hda_check_board_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fd764f3 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43c326fd snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43e7a3a0 snd_hda_override_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4484740b snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49e8e553 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a077ba0 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bd491af snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cf24826 snd_hda_get_sub_nodes +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cf33dbe snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dab1f60 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x513528cb snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x526b092c snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x593a3836 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a8a8f9a snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ad6b8d4 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c366c01 snd_hda_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x651d72f1 snd_hda_codec_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ca6940a snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x719ec17c hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73371735 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74ba6cf5 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78b3fe8e snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dc16f5f snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e5cd54e snd_hda_resume +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x804bfe20 snd_hda_bus_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8106e3e1 snd_hda_ch_mode_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x813f9e99 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89e33676 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4c6826 snd_hda_calc_stream_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8eb7f490 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x907820b3 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90dfc63d snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90fd7a41 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9171f167 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x928fd0a1 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93225024 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x933259e6 snd_hda_codec_update_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9531599e snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98290595 snd_hda_bus_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bbdacd8 snd_hda_create_spdif_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e40e6d5 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa02aeaba snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa20f3126 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2537eee snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2827d76 snd_hda_get_jack_location +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3d181d4 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa48791f3 snd_hda_codec_resume_amp +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9889187 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac6a2010 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf9a8e0d snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0a6b9ef snd_hda_sequence_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1450559 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2166c04 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb34e8628 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb59172ef snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb59c63ac snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6cd5da9 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb954cfd4 snd_hda_query_supported_pcm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb60fc33 snd_hda_suspend +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd2a49e8 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc08beaa8 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc170891b snd_hda_power_up +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3e91085 snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4030c5a snd_hda_ch_mode_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc62584ae snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc652fd69 snd_hda_get_jack_connectivity +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc967964e snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb17a288 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb301b6e snd_hda_get_jack_type +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd05f52a4 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd226c6f0 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4f38cf3 snd_hda_codec_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd72eba1c snd_hda_jack_tbl_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7368d97 snd_hda_check_board_codec_sid_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd81d398d snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd95ef72b snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda9ed8b6 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb427530 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0815f35 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe08c597f snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe37ddd2d snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe57cfc82 snd_hda_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe860d2ee __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaa199c3 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed43747f snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda8ec2a snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee709d3f snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf37e3494 snd_hda_ch_mode_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb7b6e38 snd_hda_add_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdf2432e snd_hda_codec_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe5e0579 snd_hda_power_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x02a01ee3 pm860x_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x470791fb pm860x_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cx20442 0xdddb09f1 v253_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-l3 0x78c84c7e l3_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max9877 0xcd525d6e max9877_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x18672139 aic3x_set_headset_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x773926a3 aic3x_set_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xa45f797d aic3x_headset_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xacf0aa04 aic3x_button_pressed +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xb912d68e aic3x_get_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x1ab9c421 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x8585ad19 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wl1273 0xa8ed4b9f wl1273_get_format +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x292070c8 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x381412a4 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe0e0e44f wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm2000 0xbca279e9 wm2000_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x55bb640e wm8350_hp_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x87ba25b6 wm8350_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x45d910a8 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x0a97daf3 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x6bcc9ff6 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xa4396383 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8996 0xfb1c4d23 wm8996_detect +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02ddbe6c snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04f3cbbb snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05335017 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x075ae60f snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x094b0bea snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bf7f430 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ce056f2 snd_soc_unregister_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d84d129 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dff8630 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e33fa92 snd_soc_dapm_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12e864d3 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13b70b6c dapm_mark_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15ae06cd snd_soc_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d754c75 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28e4d34c snd_soc_get_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x328f1b85 snd_soc_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3795fb8c snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x398d1a02 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a8d19d0 dapm_reg_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3acc53cb snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bc6f8bf snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d2224f3 snd_soc_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d6ea5ad snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e0a3001 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e0a363c snd_soc_info_enum_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40c16b17 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x431dbd54 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43eeda53 snd_soc_info_volsw_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45272785 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x452fcf1d snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4786eb8f snd_soc_cache_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47ba47e0 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a026884 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d5b2fdb snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f5b0bcf snd_soc_dapm_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x536854cf snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x574d8043 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57cd86bd snd_soc_codec_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ac9ade2 snd_soc_cache_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ad7d6b6 snd_soc_bulk_write_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bc5a7f9 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e1a7f9e snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ec7bfe8 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fddca26 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66f2f960 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69f28c4f snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ad42a14 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x705c874d snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x705f1f0c snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71002ce1 snd_soc_info_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71b7e09c snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71fcdf82 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7391c401 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74e4bfad snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x752c6be2 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77384f29 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ca05546 snd_soc_put_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f70e93f snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a18c986 snd_soc_info_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b9862ee snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c09afa5 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c6b19ee snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96f4e4f9 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a63a315 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa017c15c snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3b196e9 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa49bacb1 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5129461 snd_soc_dapm_get_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa561cc1f snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6139877 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5930371 snd_soc_codec_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5ec484c snd_soc_dapm_put_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7aa81eb snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8cb02ca snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8f4dbbc snd_soc_codec_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb972c5a snd_soc_cache_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3ecf3c2 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc50af11d snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc710b8ca snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc902c141 snd_soc_put_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9b57f72 snd_soc_default_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb456467 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd4b3706 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd21571a7 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3f39f93 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4a9e268 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8fdfe87 snd_soc_get_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda848bf7 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaba5ba1 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc81f398 snd_soc_update_bits_locked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2c728d1 snd_soc_add_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe821bc3b snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe997c1fd snd_soc_default_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea68f36b snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee3d8883 snd_soc_default_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee4ed8aa snd_soc_register_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee85d9b2 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeebfcd72 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef6fd077 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2652342 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf41a1edd snd_soc_codec_set_cache_io +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0067df75 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x0088a193 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x00a8a4cc regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x00c4dc87 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x00cff5e6 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f1d0dd mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0118cfd8 __rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x011bf418 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0121be88 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x012ebba1 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01441e85 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x01496489 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x017543f0 net_ipv6_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x0188d95a inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x018ab07d dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x01a4ea6d unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x01d5d269 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01f294cd da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x020cc735 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x0224de4e hrtimer_start +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x026676d0 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x027b0fad page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x02c0e605 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x02da88d0 tpm_remove_hardware +EXPORT_SYMBOL_GPL vmlinux 0x03292357 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03448461 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x0394d162 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x03ad7c20 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x03b74ca3 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x03ccd70c xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0x03e1f703 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x04007109 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x0408b2d0 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x04253483 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x04486e88 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x044dae08 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x046370e7 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x04b07d7e bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x04bf26af ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04d64d27 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x04ef8a1b __clocksource_updatefreq_scale +EXPORT_SYMBOL_GPL vmlinux 0x05057d0f cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x052a3522 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0531dcb8 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x056ab0d0 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x05890c57 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x058dd04a xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x05ae262e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05b0c446 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x05c1048c xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x05c3b733 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x05dc42e4 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x05f30345 scsi_nl_add_driver +EXPORT_SYMBOL_GPL vmlinux 0x05fe1cf3 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x060d1064 set_memory_ro +EXPORT_SYMBOL_GPL vmlinux 0x0619ca8a getboottime +EXPORT_SYMBOL_GPL vmlinux 0x062fc169 xen_hvm_resume_frames +EXPORT_SYMBOL_GPL vmlinux 0x06307e43 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x0631c47c ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0652c206 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x0655b499 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x0673e573 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x06b346c8 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x06d2b975 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x072e6c8a pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x074d6a47 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x075ef444 sysfs_schedule_callback +EXPORT_SYMBOL_GPL vmlinux 0x07aba93f dw_spi_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x07ff4aea xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x08046f41 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x08232b4b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x082b2ed5 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x087ee4e3 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x08904f20 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x08f5471c led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0927e164 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x093b586a crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x098aae89 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x09a2868b fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x09a52e75 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x0a5b419b ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x0aa3103e pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x0aaf497e fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x0ab29d60 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b19ed7c apei_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x0b21e30e tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x0b28defb kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b34e266 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x0b5e86be da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x0b98b7f5 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0bb792c3 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x0bd40102 user_update +EXPORT_SYMBOL_GPL vmlinux 0x0be13004 usb_storage_usb_ids +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c1b7edd pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c5c383c usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0c5d0d77 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c9202be ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x0cb26551 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x0cb4831d key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc39d7b crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0cc5303e input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x0ce16b20 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x0ce4c184 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0d00bb6c usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x0d1daceb attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x0d23c708 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x0d51d3b3 scsi_nl_add_transport +EXPORT_SYMBOL_GPL vmlinux 0x0d5800bf shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x0d826d48 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0ddc7295 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x0deb0ade register_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0x0e0623b0 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x0e0ab07f ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e162740 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0e2f2e69 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x0e3cd724 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x0e49f993 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0ec210b8 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL vmlinux 0x0f06b9b5 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x0f48e6a4 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fb95824 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0fbd2094 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fde06b5 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x10005132 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x100c48a2 unregister_dock_notifier +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101f8c29 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x10299082 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x102b09c6 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x104478e5 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x104dacc5 tpm_bios_log_teardown +EXPORT_SYMBOL_GPL vmlinux 0x105d6d8c devres_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1060a1d1 sysfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1061d8ee kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x10726a12 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x109120fa rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x112952e8 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x11411818 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x115f7a90 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x116c60ee sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117ab552 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x119fa681 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x11dd74a1 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x11f447ce __gpio_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x12016adf tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x1212a69c dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x121ed3f3 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x12311d0e perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x1234c315 crypto_aead_type +EXPORT_SYMBOL_GPL vmlinux 0x12436a27 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x124ae1a3 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1258d9d9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x126375df devres_get +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12866951 sysdev_class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x131a73e8 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x133215b6 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x13574bbf nf_net_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13a58e65 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x13b2a946 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13f3e3fb klist_init +EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x14683770 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x14af3f3f pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x14f7daf8 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x151d5fd8 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x1525cb1f blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x153a0c91 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x1556756b usermodehelper_is_disabled +EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x155a08ab inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1598dc9d unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x159e8b5d init_fpu +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15e77835 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x160fbb9d ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1616d335 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x163bc646 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1655bb05 queue_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1679b4d2 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x16a05246 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x16b5dcaf sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x16c57b0c unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x171b577b unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x172e72d4 vdso_enabled +EXPORT_SYMBOL_GPL vmlinux 0x17456a48 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x17987f96 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x17a650fa rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x17cd03b4 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x17d6905e transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17f78860 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x182245e7 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x18310a9d vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x1840a3ac pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x186a519f usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18c55834 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18e2c347 dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x18eac2c9 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x18ffbeec ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x192cef22 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x193d48e0 trace_current_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x19496284 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x195264ee sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x19711643 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x1993c415 swiotlb_bounce +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19c48fb0 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19ded266 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x19ece584 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x19f80702 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x19fc7f60 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1a1d5e74 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1a323362 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x1a6b29ca scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x1a790211 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x1a7c356d simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1a958f66 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1aa865c6 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ad83009 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x1ae0e135 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x1aece301 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x1af85a89 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b308f9d ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x1b34b3a4 blk_queue_bio +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b648179 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bb59be6 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1bd10446 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x1bf604cb rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x1c16990d cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1c34156f ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x1c464082 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x1c513ca2 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c6c110b tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x1c6ddf45 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x1c852e7c xfrm_calg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cc74e11 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x1d0759f3 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x1d365b03 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d52e9d7 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d7e87af rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1d95fdb7 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1da817b7 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x1deba3d3 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x1df16d9e rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x1e0e82d0 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1e2a38b9 tpm_store_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1e314b21 regulator_use_dummy_regulator +EXPORT_SYMBOL_GPL vmlinux 0x1e317267 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1e3a88fb trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1eaec2ea tpm_show_caps_1_2 +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1eba928f ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1f017b4c crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8ec1b3 acpi_get_pci_rootbridge_handle +EXPORT_SYMBOL_GPL vmlinux 0x1fcece42 inet_twdr_twcal_tick +EXPORT_SYMBOL_GPL vmlinux 0x1fe134fd driver_add_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1ff2cab8 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x1ffb61c3 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x20105ca6 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x2038d014 tps65910_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2040e3c0 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x204be5ad max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x205c5ffb sysdev_class_register +EXPORT_SYMBOL_GPL vmlinux 0x20761c64 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x20856882 proc_net_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x20bc3470 orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x20f7b153 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x2101345f xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x218cfe8c blkiocg_del_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x2196f937 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x21a21ea4 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2203f383 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x220b3121 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x220bb1a4 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x22277d96 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x224f2ca5 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299b8fe scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x22ced020 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x23679939 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x2368a8bc vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x239ca1ca pci_pri_enabled +EXPORT_SYMBOL_GPL vmlinux 0x23a3efb3 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x23a9f76a crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x23b86a4d usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x23bcac9a i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x2400ee84 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0x24208b01 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x2431ead4 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x24377f77 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x2447533c ktime_get_real +EXPORT_SYMBOL_GPL vmlinux 0x24537e3c dm_requeue_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x2465e664 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x246be5f1 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b9777a swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x24bc4dae __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24e1307e flush_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x24e9de3d perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x24eaa2e0 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24efe3c4 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x24fc46b6 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x252e43b4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x2580711e rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2584972e input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x25895b19 get_cpu_sysdev +EXPORT_SYMBOL_GPL vmlinux 0x25d417ba tpm_show_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x260c5d2d skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26652e2b wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c4eafb ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ef00ad sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0x274a1894 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x276a303c rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x276fb42f da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27760f7a cgroup_add_file +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x278e3660 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x279d92bb unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x2826afca ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x283ee1a3 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x289a8d2c driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x289d28d5 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x28a26891 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x28a82da4 snmp_mib_init +EXPORT_SYMBOL_GPL vmlinux 0x28ab8a1b relay_close +EXPORT_SYMBOL_GPL vmlinux 0x28d664ff __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x28d83590 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL vmlinux 0x2901a718 queue_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x29059b53 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x29104d18 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x29bab166 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x29bdcf60 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x29c3a5de fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2a29cd4f rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2aa8ee12 dw_spi_add_host +EXPORT_SYMBOL_GPL vmlinux 0x2b088152 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x2b1178a6 __scsi_get_command +EXPORT_SYMBOL_GPL vmlinux 0x2b3582da invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x2b42ff3b class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2b48b9e8 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x2b5e9742 blkiocg_update_io_add_stats +EXPORT_SYMBOL_GPL vmlinux 0x2b655abb watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2ba59704 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x2bb262d4 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x2bbd52d8 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x2bdf02c0 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x2be7fb8e disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2c0dc18b filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2ca4ebcd regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2cabd222 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x2cacface sysdev_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cef12ec fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL_GPL vmlinux 0x2d35199f fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x2d471c3a fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2de1c62f ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e287e80 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e3dc05b pxa_ssp_free +EXPORT_SYMBOL_GPL vmlinux 0x2e3ea949 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2e400707 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x2e45e488 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x2e47f677 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x2ea00b62 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2ef86505 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2f286d3c device_add +EXPORT_SYMBOL_GPL vmlinux 0x2f38e40a devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f47d8c7 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2f683d9f edac_put_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0x2f79f791 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x2f7fbcae platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2f857551 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0x2f896eba free_css_id +EXPORT_SYMBOL_GPL vmlinux 0x2faee1a3 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x2fcd9e17 dpm_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x304f23e8 register_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x306fd9bb con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x307f7776 timecompare_offset +EXPORT_SYMBOL_GPL vmlinux 0x30857841 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30a619c2 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x30b464f8 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x30e26237 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3108ea46 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31176a91 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x316af212 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x316db187 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x318920b1 register_dock_notifier +EXPORT_SYMBOL_GPL vmlinux 0x318a65a1 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x31a8f8c6 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31df9eff md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x31fc162c usb_string +EXPORT_SYMBOL_GPL vmlinux 0x325da3da debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x32612803 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x3278ff91 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x327f8685 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x329006f1 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x32b31a8c ktime_get_boottime +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d254d9 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x32d5e7fc xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x32dfc8f9 proc_net_fops_create +EXPORT_SYMBOL_GPL vmlinux 0x32e44cae inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x32fd4b62 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x330544fa ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x3331b0a4 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x334f2f66 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x33543801 queue_work +EXPORT_SYMBOL_GPL vmlinux 0x33589e9b cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33a25985 sysfs_rename_link +EXPORT_SYMBOL_GPL vmlinux 0x33b5c4fe cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33c3a5eb debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x33ce6b57 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x341824f6 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x3441c3d6 gpio_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x34787498 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34db7dcc crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x34f64e44 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x350eb1de wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x351199a4 blkiocg_add_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x3534d2f4 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x3534e2a3 system_nrt_wq +EXPORT_SYMBOL_GPL vmlinux 0x357b187b gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x35ac5043 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x35ccfe09 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x3619a195 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3624a4bd usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x362e23ec call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x363304b3 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x366402f8 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x367cf52b usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x36875389 __timecompare_update +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36b71ab2 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x36e1d101 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x36e91c16 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x374ebbe9 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x37788daa tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x37948546 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x37ca422c ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x37f696ca pci_block_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x3841ab01 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x38748a22 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x38848bec ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x38968a18 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38e3aa5c xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x38ea936e __memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x38f2bea5 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x38f943d7 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x394a2fee ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x399383e1 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x39b09cd3 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x39e15e5f trace_nowake_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x39e653d5 gpio_export_link +EXPORT_SYMBOL_GPL vmlinux 0x39ea6c06 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3a02a6e4 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x3a11e91a skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5c6857 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x3aba6085 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x3ac0e0da devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x3b05f0c3 xen_swiotlb_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x3b1746c1 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3b4d3dc9 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x3b5f2278 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b81b9a7 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x3bc7bc18 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x3be89d3c usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x3bf67c22 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x3c0642f9 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x3c28bd98 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x3c917de2 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c942368 profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cac21b9 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3cc74f8f class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cfedb3f register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3cff6774 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3cff93df debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3d078023 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d40d58a rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d7ed1ff tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x3d84d51f mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3d8bb472 dw_spi_xfer_done +EXPORT_SYMBOL_GPL vmlinux 0x3daa0982 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3ddce652 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x3dde0e07 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfdda89 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3dfe014a usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e0807ae ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3e195714 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x3e267d6f page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x3e27326b devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e7eaf73 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3e7f0dfc __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x3e9bfc1d ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3e9ca55f __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ec131d2 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x3edad223 usb_usual_clear_present +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f12e8e8 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f22d7b8 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x3f25a1da tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3f54548c wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f8f723b md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x3fca765f usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x402e5db5 pci_renumber_slot +EXPORT_SYMBOL_GPL vmlinux 0x40333e3a usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40491f72 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c24ec6 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e562f3 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x40e58319 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x40e96b71 usb_usual_ignore_device +EXPORT_SYMBOL_GPL vmlinux 0x4147e832 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x41d21746 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420e12df bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x42389121 default_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x426f13b9 e820_all_mapped +EXPORT_SYMBOL_GPL vmlinux 0x4274b2b7 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42ba8c9e __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn +EXPORT_SYMBOL_GPL vmlinux 0x432327a2 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x4323447b sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x432fd7f6 __gpio_set_value +EXPORT_SYMBOL_GPL vmlinux 0x434fb953 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x435e6c6e crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x43b3c046 xv_malloc +EXPORT_SYMBOL_GPL vmlinux 0x43d66d2b usb_is_intel_switchable_xhci +EXPORT_SYMBOL_GPL vmlinux 0x43de5ae7 virtqueue_add_buf_gfp +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x443172fe rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x44404f11 kdb_register_repeat +EXPORT_SYMBOL_GPL vmlinux 0x4455c8a0 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x4455e1b3 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4467f6bc blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x446e6bbe crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x447cd7f6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4488edad crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x44a1ff5f sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x44bcfa6d system_nrt_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x44c359a2 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x44cc9c55 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x44db8ae3 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x44ff6a77 sysdev_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x450a2709 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x4531e988 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x453379ed pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x45700f6b pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45800f4b scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x45a4afdd acpi_atomic_read +EXPORT_SYMBOL_GPL vmlinux 0x45aae0de sysdev_show_int +EXPORT_SYMBOL_GPL vmlinux 0x45acf6c8 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c73aaf dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x45cec1cb pci_msi_off +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d4b27f cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x46074c17 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x4663dfd9 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x4672e88b __crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x4685b648 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x46983149 usb_enable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x46992748 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x46b06bab vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4708e27f bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x474359b6 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x474d4fef proc_net_remove +EXPORT_SYMBOL_GPL vmlinux 0x4782f699 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x478ef95d debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4792d66e blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x47a168d3 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x47c149ab queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x47ce8e9d pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x480ab0d1 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x4865f9b3 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x48a488a0 sysctl_tcp_cookie_size +EXPORT_SYMBOL_GPL vmlinux 0x48a61c99 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x48b1d0dc device_schedule_callback_owner +EXPORT_SYMBOL_GPL vmlinux 0x48b671ea usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x48e1b597 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x48e94e04 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x48ef3d0d sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x48f44e16 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x48f5fc30 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x491fe225 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x49578b8a tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4958cdbe dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49db8db4 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x49e3a774 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x4a2b764d wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4a4940ba usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x4a7bc844 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab0d413 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x4b05d05d crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x4b0fa9e5 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b20df78 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x4b384e3e crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x4bc62a81 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4bd08d0c regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4c3866c0 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x4c41a179 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x4c4b2f53 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c8ee6e1 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c940300 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x4ce89003 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4cf9a3b2 x86_mce_decoder_chain +EXPORT_SYMBOL_GPL vmlinux 0x4d2469ff __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d374f30 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x4d3e7ae7 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x4d45ff75 blkdev_aio_write +EXPORT_SYMBOL_GPL vmlinux 0x4d4f53b2 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x4d4fd5f1 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4d56da68 dm_kill_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x4d7ecba1 tpm_show_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4d9b75ee bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4da02742 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4dab0344 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4dc0683b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x4dfa4fe3 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1fbd77 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x4e36a389 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x4e462cfa inode_dio_done +EXPORT_SYMBOL_GPL vmlinux 0x4ec24c1f xv_get_total_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4ed6e906 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x4ed9bdb7 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x4edc1f8a scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4eeced13 task_current_syscall +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f0bbc18 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x4f1ccf7d dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f3da9ef securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x4fbdc8ca class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4fcc08f3 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x4fd4e89d ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4fdb66e3 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x5013e6de pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x504d16fa dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x50551d5d tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x507d79cd scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x508c5f96 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50b6dc35 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x50b71412 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x50ba3bec acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d52fdf rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x50e6c676 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f5e532 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51009ae4 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x5108b3fc acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x51327b8e wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x514a4437 xenbus_bind_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x514ec89e __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x515fcb90 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518b5e29 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x51d061fb ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x5226306b skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x522c52dc blkcg_get_weight +EXPORT_SYMBOL_GPL vmlinux 0x522e3808 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5245f8e8 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x52694311 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x52bcd19d rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x52d0905b ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x52dba066 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x530db919 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x53134bbf disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x531e034e init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5372dede unregister_acpi_bus_notifier +EXPORT_SYMBOL_GPL vmlinux 0x538e51ee ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x5394bdd8 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x53986488 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x53a05d4c dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x53a3e486 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x53a84ced pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x53c916b7 sysfs_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x53e69a21 pci_unblock_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x54025d5d ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x541047fe ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5451fcc5 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5474f69d anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5499e4bc stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x54acd050 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x54e579f7 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x551605b9 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x551619fd driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5520f588 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x552567c0 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x55698ed9 blkiocg_lookup_group +EXPORT_SYMBOL_GPL vmlinux 0x557f3954 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x559ae708 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x56065ef9 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564f1dca klist_add_after +EXPORT_SYMBOL_GPL vmlinux 0x5654ea93 device_move +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56781aff usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x567b53db blk_abort_queue +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x5723e2ac rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x574f665b crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x576650e7 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x57843f26 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x57888f51 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x57989481 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b0fc99 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x57bb8a13 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x57c1b136 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x57d98c6f put_device +EXPORT_SYMBOL_GPL vmlinux 0x582a2cac inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x58421c30 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x584f0a87 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x58565536 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x585a003b __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x587862bc platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x58938fa4 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x589abf1c blkio_alloc_blkg_stats +EXPORT_SYMBOL_GPL vmlinux 0x58fc4742 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x5916e0c9 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x593a36c2 scsi_dh_handler_exist +EXPORT_SYMBOL_GPL vmlinux 0x595ee5b5 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a2f77ed ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x5a33f0ab inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x5a476799 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x5a48534a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8a024c crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x5ae9c4f8 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b024929 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x5b0848fb mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x5b1112ee vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x5b39049f netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x5b7b81eb crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x5b972fd5 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x5b9fe0ec ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x5baaccbc part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x5bb906a7 wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdeb510 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5bf52d00 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x5bfc03c3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c0e2b14 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x5c165595 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x5c3d09ba eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x5c5f79e8 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x5c86c3fe anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x5c8da76a srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5ccf550e swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x5cd36455 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5d0bc22b put_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d188330 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d48a650 m2p_find_override_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5d6adca4 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d730e7b raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d87c067 register_acpi_bus_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5da7840b bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5db99687 d_materialise_unique +EXPORT_SYMBOL_GPL vmlinux 0x5dd67618 register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5e0120a8 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x5e94d3bf __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x5eacba1f ahci_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5ec42252 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5ec43660 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x5ee3a942 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5eebaffe ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x5ef44c07 fuse_conn_kill +EXPORT_SYMBOL_GPL vmlinux 0x5f1b194b tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5f248f72 set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f7791b5 crypto_rng_type +EXPORT_SYMBOL_GPL vmlinux 0x5f9009b4 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x5fcdec5d xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x5fce76ee blkio_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fd67c15 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5ffbd191 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x5fffef1a sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x600a869c unregister_efivars +EXPORT_SYMBOL_GPL vmlinux 0x603e17ee inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60713a4f swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x6087f2fa ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60d579aa ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x60e2722e pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x60e79ba7 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6114d8a4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x61286995 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x61595393 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x61634f05 lock_flocks +EXPORT_SYMBOL_GPL vmlinux 0x61ebbde1 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x62121fe0 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x62491c32 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x624a6406 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6267cae2 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6271f780 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x628716d4 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x62cb1468 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x62e13686 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x63197308 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x63205de1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6347ee72 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x63602b9f gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x6373fd03 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x63b0dcb9 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x63c670f9 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x63d7e93f rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6437391b usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x643b157b md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x643df807 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x6449c9d4 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x64533eb0 xenbus_dev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x647fe418 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x648feda9 pci_stop_bus_device +EXPORT_SYMBOL_GPL vmlinux 0x64a9d082 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x64fca172 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6517e463 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x655bbc8d __css_put +EXPORT_SYMBOL_GPL vmlinux 0x6564891b bdi_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x657ffe30 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x659010bf remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x6592c5e7 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x65978342 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x65b6b0f4 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c68f6f ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d6d0f0 gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x65fa533b usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x663108ab blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x663c53b2 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6658e0e7 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66b2a859 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x6732559d spi_async +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x6770cce5 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67af8505 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x67b2d424 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67b4242f bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x682d0196 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x684ec6fd ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x686c703f xfrm_count_auth_supported +EXPORT_SYMBOL_GPL vmlinux 0x6892088c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68a1c480 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x68a317bc trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x68cd16c0 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x68cd2df4 blkiocg_update_timeslice_used +EXPORT_SYMBOL_GPL vmlinux 0x68e1805e ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x68e97a77 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x694f2094 tpm_write +EXPORT_SYMBOL_GPL vmlinux 0x6967b4f9 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x697053da __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x698286c4 tps65910_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698be398 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x698f0c87 sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x69ad743e input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x69e9a2cb ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x69fcde28 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x6a0db025 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x6a365bca crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x6a36d5ab crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x6a52c91f virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a642308 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a9c745d crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6ab922b2 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6aba167a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6ac898a7 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ad0897d ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x6af373df ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b807a5f gpio_sysfs_set_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6b8a5413 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6b94c408 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6bc92d3e ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c1bc7af crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x6c243c9c spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x6c490c32 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x6c49c4f2 clockevents_notify +EXPORT_SYMBOL_GPL vmlinux 0x6c51ca91 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x6c8d5ae8 __gpio_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6c917205 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x6cbb4d6b generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x6cc5cc0b sysdev_register +EXPORT_SYMBOL_GPL vmlinux 0x6ced8e2e devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3ea540 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x6d6ce046 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6d8048e4 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6d9f817a crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6dbc7f14 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x6e1be9f5 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x6e2d3db7 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x6e393b29 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x6e3b944f sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x6e4fbe20 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e7474fc xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x6e782c23 iomap_create_wc +EXPORT_SYMBOL_GPL vmlinux 0x6e86a3c9 dm_dispatch_request +EXPORT_SYMBOL_GPL vmlinux 0x6e901a58 scsi_dh_detach +EXPORT_SYMBOL_GPL vmlinux 0x6e91a409 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x6f051b8d ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f41570b da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x6f608203 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x6f654ad2 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x6f997eb2 inode_dio_wait +EXPORT_SYMBOL_GPL vmlinux 0x6f998eee __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x6fb5c6c1 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70177482 sysdev_class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x701d7180 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x703189d7 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x704cc19e user_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x706b3a33 cpufreq_frequency_table_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x706c0ef8 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7080ca46 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x70c38c72 md_run +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d82cd8 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x7154f861 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7169d83c stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x716c24d1 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x719d5ddf kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x719e58bd mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71f21b49 tpm_dev_vendor_release +EXPORT_SYMBOL_GPL vmlinux 0x7207a15a zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x7267db00 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7285f84f unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x72b212ff regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x72bf62a2 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x72cc696e wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x730a2891 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x73273711 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x7333f5ed pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x73347e72 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x733d3ad3 cgroup_unload_subsys +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ad49ab device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73ed5ce9 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x73f57f8e elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74160d25 sysdev_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7432db04 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x74954462 timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x749a50be disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x74a1f120 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x74aaf6f5 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x74abdafa task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74c2865d fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x74c981ec mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x75178dba blk_rq_check_limits +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x753ebc9e device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7560c3ca cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x756a8a2b __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x757c6127 device_del +EXPORT_SYMBOL_GPL vmlinux 0x75b20f59 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x75c8a11c inet_twdr_twkill_work +EXPORT_SYMBOL_GPL vmlinux 0x75cd9bfa pci_pri_status +EXPORT_SYMBOL_GPL vmlinux 0x75d548a0 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x75e8f3c3 crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x761188fd dpm_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x76b5f36e hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76cea58e crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7733ac10 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x7764cfc5 tracepoint_iter_start +EXPORT_SYMBOL_GPL vmlinux 0x7785561b perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x778d69a8 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x77b22e94 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x77c1db42 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x78000c2b adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x78019a2c pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x784da5f6 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x78668389 __ip_route_output_key +EXPORT_SYMBOL_GPL vmlinux 0x78671fd3 tracepoint_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x78898bb0 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x788ca168 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x788f3eec bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x78d9697b da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x78dcffbc inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x78e7ff33 acpi_post_unmap_gar +EXPORT_SYMBOL_GPL vmlinux 0x78ec7e49 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x790588a0 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x79073bf0 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x79132b08 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x7966a1a9 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x796783fa xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x798ee133 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x7997bb96 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x79a558fc mmput +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x7a0349ed ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x7a05d42a srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a4c1438 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x7a51b353 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x7a5670a1 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x7a7c5175 amd_erratum_383 +EXPORT_SYMBOL_GPL vmlinux 0x7aafdb50 wm8994_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ab77abe tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad0900b ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x7ade84f5 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7ae1ae8e cpufreq_frequency_table_put_attr +EXPORT_SYMBOL_GPL vmlinux 0x7b0a3cad crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7baeafb1 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x7be60a7e wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7c0513a7 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x7c808266 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ca868f0 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x7caef4b3 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7cc2301d debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x7ce1912b md_stop +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cef4d6a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x7d32702e save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x7d44b407 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d7d9a22 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x7da0ebe4 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x7da10856 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dabb8f8 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7dc5d0b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e069a13 blkiocg_update_io_merged_stats +EXPORT_SYMBOL_GPL vmlinux 0x7e0802f7 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x7e0e609b preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e1183c9 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7e1ecdc5 register_hotplug_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x7e2258d4 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7e275ea8 scsi_complete_async_scans +EXPORT_SYMBOL_GPL vmlinux 0x7e40ab55 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e693a78 generic_subsys_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7e69b649 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x7e7225a7 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x7ea9cb30 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x7eb1095f fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x7ec22f9a apei_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x7ecaa075 sysdev_store_int +EXPORT_SYMBOL_GPL vmlinux 0x7ecea749 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x7f04e593 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x7f2b2e0f ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x7f6e1a0a __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x7f7fb88c usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fb8f4b5 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7fcda031 aead_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fe922c5 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x7ff10ccf raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7ffc8718 gpio_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8014b6af input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x803d2bf2 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x803fd0c1 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8048bc89 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8069edc6 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x806b1aba pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x806d7f6b xv_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x8075b27e crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x808958f2 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x81101ab7 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814a889d bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x81582730 aead_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x815abf99 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x818f670b xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x8198a90e rtc_set_mmss +EXPORT_SYMBOL_GPL vmlinux 0x81ef8b1f spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x81f98dca ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x8226642f __gpio_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8259be1d tpm_show_owned +EXPORT_SYMBOL_GPL vmlinux 0x825f0828 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x82939ebd rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x82cd19f3 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82f776b7 gpio_export +EXPORT_SYMBOL_GPL vmlinux 0x835300e8 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x83661c92 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x836d574b rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83a43898 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x83ce82eb get_monotonic_boottime +EXPORT_SYMBOL_GPL vmlinux 0x841a2c09 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84765c95 crypto_nivaead_type +EXPORT_SYMBOL_GPL vmlinux 0x84ab042c spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85478a0b inet6_hash_frag +EXPORT_SYMBOL_GPL vmlinux 0x856f43d4 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x85c10896 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0x85c4d941 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85ccadbb tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x85ccb9d5 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x85d022d2 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x85d607c1 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85f1847d regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x862f98a3 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8677cb69 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86aa16e6 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x86ebba55 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x86f4a924 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871393d3 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8731c5cc led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87754115 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x87a77031 user_read +EXPORT_SYMBOL_GPL vmlinux 0x87c36a44 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87c79ca5 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x87cf0a90 injectm +EXPORT_SYMBOL_GPL vmlinux 0x880de7bd iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn +EXPORT_SYMBOL_GPL vmlinux 0x883e4425 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x884eebb3 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x885e45a1 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8890f04f invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88e77ceb regcache_write +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x898c10c5 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x89b41c73 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x89d4dbaf usb_usual_check_type +EXPORT_SYMBOL_GPL vmlinux 0x89f81dac tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x89ff43f6 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a12068f inet_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0x8a1b1378 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x8a3da8d0 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8a40099c bsg_goose_queue +EXPORT_SYMBOL_GPL vmlinux 0x8a5c7a80 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8aaf3cde map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ae0218f unregister_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x8af664e7 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b07b096 sysfs_put +EXPORT_SYMBOL_GPL vmlinux 0x8b27d2c1 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x8b319cc7 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b5fd294 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8b66f9e0 xen_platform_pci_unplug +EXPORT_SYMBOL_GPL vmlinux 0x8b706ee8 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x8b707b13 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8b752ac1 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x8b77d9d5 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b82fae6 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x8bb1baec ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x8bc57a61 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c1f256e hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x8c38074a unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8c4127f7 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x8c47e013 platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8c4c3c0e sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8c4db1b5 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8c503111 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8c97333e pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8ca7c0c1 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8ceca0cc ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x8d240826 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x8d38a6fb ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x8d5c3bec ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x8da2894f fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8dc4d0d1 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x8dd2fa67 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x8e038225 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x8e20f5e9 __inet_hash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x8e76d89e usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8e809c31 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x8eaec42d __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x8ed09c39 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x8edfc605 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x8f099a9e fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8f3ce840 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f780ce7 sk_clone +EXPORT_SYMBOL_GPL vmlinux 0x8fb46551 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8fb576b8 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8fd06898 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x8ff47380 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x90053592 tpm_bios_log_setup +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x904f7399 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9085171e free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x9085be8a raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x912da829 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x9159b9d6 profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91dd75d9 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x92240e40 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9228e852 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x9259dcdd md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x925f8bfc pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x9270adb7 pci_sriov_migration +EXPORT_SYMBOL_GPL vmlinux 0x928d80cb ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x92a737f4 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d77ab0 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x9330ff56 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x936b6d46 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x93824f84 input_class +EXPORT_SYMBOL_GPL vmlinux 0x9398d1ec device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x93abd34b lookup_instantiate_filp +EXPORT_SYMBOL_GPL vmlinux 0x93c15421 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x93c95029 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x93d0dc16 tpm_show_pubek +EXPORT_SYMBOL_GPL vmlinux 0x93d2422d snmp_mib_free +EXPORT_SYMBOL_GPL vmlinux 0x93e07260 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x93e172d0 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425952e pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9431f62a blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94434975 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x945af1db ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x94780167 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x947f04e7 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x94a68723 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95469c94 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956a91ba gpio_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x95a40792 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x95b3f36b mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x95d073d4 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x95da94ca perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x95dd76c8 sysdev_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9642eec9 wm8994_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x9650b933 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x967c647c usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x969ece77 cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x96cbcf31 pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96f35200 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x970c6156 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x975b6989 xv_free +EXPORT_SYMBOL_GPL vmlinux 0x977d3aa6 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x97f317e4 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x97f9c45a trace_nowake_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x982067bc vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9842f28e blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9850082c usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x98568748 css_id +EXPORT_SYMBOL_GPL vmlinux 0x987eca81 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x98a2b948 task_xstate_cachep +EXPORT_SYMBOL_GPL vmlinux 0x98b11ebf sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x98cc564a regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x98f693cc crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x98f9e29e cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x991747be __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99273df5 dm_set_device_limits +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99aa710f xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x99e7baa3 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x99f7387e usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1fcb38 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x9a48d642 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x9a4ba814 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x9a78a635 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x9a906c3f power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x9a99f8fc get_device +EXPORT_SYMBOL_GPL vmlinux 0x9aae96c3 tcp_is_cwnd_limited +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b071740 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9b33d71f i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9b455e52 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9b504568 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba0501e unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ba60ab3 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9baaf1a9 inet6_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0x9bd3a7cf init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9bf5590d usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x9c4c59d7 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x9c8952cc crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9cb8037b xfrm_count_enc_supported +EXPORT_SYMBOL_GPL vmlinux 0x9ce31f84 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x9cf2ee19 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x9d030b99 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d136a15 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x9d1e56d8 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9d2ed6c6 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d3d9e36 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9d672851 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x9d828482 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9dcfaf53 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9de22b31 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x9deb7abf pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x9df47c31 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e07c70f pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x9e0ccdb5 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9e1e9ecc dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x9e288d48 mddev_check_plugged +EXPORT_SYMBOL_GPL vmlinux 0x9e2a69a1 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x9e31f3b3 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x9e475778 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x9e4f1cfb ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x9e78f7d5 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x9e8527b7 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x9eeae6c2 tpm_release +EXPORT_SYMBOL_GPL vmlinux 0x9eed9169 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x9f0547db sysdev_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f07eac2 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x9f29601a atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x9f2cf365 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x9f40a6d6 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x9f7ffd4b __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x9f97f556 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x9fc3f62b css_depth +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa030d4c3 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xa0ac86ff register_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL vmlinux 0xa1308907 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xa1472e20 __cpufreq_driver_getavg +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15e48f2 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa1623c00 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xa16a49a0 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xa1c986b2 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xa1e5cd86 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xa21ea14a transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xa2366db0 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xa24873d9 register_net_sysctl_rotable +EXPORT_SYMBOL_GPL vmlinux 0xa268f4ff device_rename +EXPORT_SYMBOL_GPL vmlinux 0xa279653e xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa28ed9fb pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa2aeed64 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2e67f08 acpi_bus_generate_proc_event4 +EXPORT_SYMBOL_GPL vmlinux 0xa304c686 cred_to_ucred +EXPORT_SYMBOL_GPL vmlinux 0xa30c5f99 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xa3460d77 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38d5b6e cgroup_load_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa3b8d4dc virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa40a8590 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa40f0ada inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4837914 tcp_reno_min_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xa4988730 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xa4adb394 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa4aeaf3e synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xa4c66659 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xa4c93273 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xa4ca0d4e unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa4d58669 math_state_restore +EXPORT_SYMBOL_GPL vmlinux 0xa50e6080 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xa55ddfc9 tpm_show_durations +EXPORT_SYMBOL_GPL vmlinux 0xa5726192 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xa5845b98 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xa58cc99b cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xa5976d72 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa5bb5afb __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa66c9bc2 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa6daf1d3 tpm_show_active +EXPORT_SYMBOL_GPL vmlinux 0xa7070470 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa722a819 cpu_has_amd_erratum +EXPORT_SYMBOL_GPL vmlinux 0xa774e0b8 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xa78447a0 tpm_continue_selftest +EXPORT_SYMBOL_GPL vmlinux 0xa7a14080 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xa7f410da debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xa7f92105 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0xa80d5306 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xa81f73b8 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xa83d973a led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xa856ca9e rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa85cefc6 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xa862f0ac xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xa899635e __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xa8a6f8fc dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xa8b82a53 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa8f59416 gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xa8f92405 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xa9094516 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9183b29 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xa964e084 sysfs_get_dirent +EXPORT_SYMBOL_GPL vmlinux 0xa9c530b8 unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9f3f261 net_ipv4_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0xaa0943a6 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xaa0ec165 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xaa2558ac m2p_add_override +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa3f13f7 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa48b458 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xaa48bba9 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xaa60f3f1 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xaa68e30b ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaa70bef5 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xaa7e6e6d rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa852c93 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa8e404b simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xaaafee3c wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xaabffe73 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xaacce043 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaad3aa12 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xaaee7582 sysdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaaf04873 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xaaf8f4eb pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab17082a device_attach +EXPORT_SYMBOL_GPL vmlinux 0xab4cc635 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xab68d15b regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab90007c xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xabc47f60 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xac130000 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xac936d89 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xace0f1e8 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfd81f6 work_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad239f1b device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad3a7c48 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xad5f1b39 nf_net_ipv4_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0xada38534 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xada70663 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf009b3 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae0c87ee pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae1a0921 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xae54cee1 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xae57d7e8 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xae5a34d4 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xae7c5411 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0xae98e5c9 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xae9a8874 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xaea5fb64 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xaee6cf94 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xaeea3073 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xaf037391 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xaf093f21 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xaf14d5ec wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xaf2fcc73 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xaf69699e xv_get_object_size +EXPORT_SYMBOL_GPL vmlinux 0xaf6a4d02 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xafa2b7b9 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xafe110f2 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xafe74d0d usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xb00743c2 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xb0663978 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb06dda35 tpm_open +EXPORT_SYMBOL_GPL vmlinux 0xb0769532 dw_spi_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xb0ae5977 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xb0b40a3d crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb106d82c inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb10d55bc cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xb123e841 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14e0a1a debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xb14e144c vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xb1521056 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xb17cc12d user_match +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18506b9 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xb19fe84b platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb1a124b6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb20403dc ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xb220fcf1 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xb22287d4 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xb227eded __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb241b26e user_describe +EXPORT_SYMBOL_GPL vmlinux 0xb2674e26 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xb27ba73a unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb2add0b6 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xb2b89a18 tcp_init_congestion_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f5558b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb30b8cac ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb30be7af cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb32eb69a find_module +EXPORT_SYMBOL_GPL vmlinux 0xb341989e __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xb375a1a4 sysfs_notify_dirent +EXPORT_SYMBOL_GPL vmlinux 0xb3767928 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xb39e9844 net_cls_subsys_id +EXPORT_SYMBOL_GPL vmlinux 0xb3a67a1f xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xb3addc3b mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xb3d3e15b pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xb3d5eab7 acpi_atomic_write +EXPORT_SYMBOL_GPL vmlinux 0xb4374240 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xb45fd4db adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xb47497df ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xb47ef9d7 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb48b57e8 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xb4af8831 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb4b4ced3 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4c198a3 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb50b0713 cpufreq_get_measured_perf +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53461e9 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53a17bf cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xb53ae573 cpu_idle_wait +EXPORT_SYMBOL_GPL vmlinux 0xb53efbc5 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb54bd5dc flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xb56f98ad cgroup_add_files +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5c744f9 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xb5d8913d register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6327cd6 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xb68970b6 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xb6cbc1bc power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xb6daa7e4 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb7111dd7 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb7606c0c devres_add +EXPORT_SYMBOL_GPL vmlinux 0xb7661f7d simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xb76be079 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xb793ef2e skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xb7ce7329 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb7d36cc8 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e2eb91 mce_cpu_specific_poll +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb813ce5a timecompare_transform +EXPORT_SYMBOL_GPL vmlinux 0xb824fb48 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xb8440280 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xb86bcceb klist_next +EXPORT_SYMBOL_GPL vmlinux 0xb8823309 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xb885ae2f xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb89467ef blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb89e8ad9 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8e03409 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xb8f15fbd inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb9010c76 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9171501 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xb91d790b ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xb928cabd __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xb92e66b9 devm_kzalloc +EXPORT_SYMBOL_GPL vmlinux 0xb93ce960 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9abb5af pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9da2997 snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0xb9fa271f blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xbaaeb90e led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xbab8f014 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbae34c27 scsi_nl_remove_transport +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb04248e crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xbb068792 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xbb09fc70 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0dde07 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbb3b4bd2 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xbb3be524 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xbb46b72c tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free +EXPORT_SYMBOL_GPL vmlinux 0xbb617c2d hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbb87a40b __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xbbb1b59e uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc53d78 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xbbfce101 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xbc2bf721 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xbc456407 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xbc6f931b workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbce0b538 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbceb0ad3 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0xbd506a46 unregister_hotplug_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xbd740e90 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xbd7ed6f3 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xbda451a8 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbdbc6182 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbdf44a30 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xbdf9b317 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xbe032b1c dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe91111d usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xbeac3749 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbee39033 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xbf22c42b xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xbf26b59e nf_unregister_queue_handlers +EXPORT_SYMBOL_GPL vmlinux 0xbf713b4d aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbf76d458 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbfa7c318 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbfb2578a xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd0c759 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xbfd4db10 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xbffcb3b7 acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc00554f6 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xc023f4af usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xc03ab504 setup_deferrable_timer_on_stack_key +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc09a7542 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xc0bcac87 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xc0bf6ead timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xc0c495b9 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xc0c4f43a __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xc0c687bf pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xc0d0fbc0 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xc0dd15a5 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xc0e45175 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xc0f0a32c pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xc10f2b8e cgroup_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc11b4470 balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0xc11bd00f tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc127fa26 acpi_pre_map_gar +EXPORT_SYMBOL_GPL vmlinux 0xc13264ef regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xc14ee6bc crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xc1590141 css_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1b4dd1d class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xc1d61d4a usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xc1d86f03 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc1e09e7c inet6_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc24a044b rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xc256f815 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xc25f6e7f each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2881613 tpm_show_temp_deactivated +EXPORT_SYMBOL_GPL vmlinux 0xc28cecfb ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2b0626d sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e954aa xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xc30c87f8 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xc3134d6c rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc34efe27 snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc376ed80 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xc3792967 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc399468f scsi_nl_remove_driver +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4554c7f shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xc45fa075 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xc4615b22 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc4820756 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc48aebcb regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4b0fd7d __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xc4d1ce0e ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc525d5aa sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc5305644 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc5728e3e sysfs_get +EXPORT_SYMBOL_GPL vmlinux 0xc5aad65f transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xc5afe502 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xc5c264a5 amd_erratum_400 +EXPORT_SYMBOL_GPL vmlinux 0xc60f75ec __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66656ca ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xc6669dc8 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xc6719bdf gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xc67a4edd xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xc68c9784 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xc6a5a5b8 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6b3a79d blkiocg_update_completion_stats +EXPORT_SYMBOL_GPL vmlinux 0xc6c35040 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xc6ddfed8 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc6e1bf41 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc742a412 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc74f9340 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc77a5f98 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7aaba32 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xc7bec743 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xc7c560f1 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xc7d94807 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xc7e08f42 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xc80311cb sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc803b4ba mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xc80f6b69 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc84060c1 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xc84b9dec crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc84ce6ba spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87ddf1d ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc884b8ba edac_get_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8bf0ef4 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xc8fe2876 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9179a3a tracepoint_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xc919e942 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xc9296983 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc969b54f ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xc9b04d19 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc9b9a38a adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9c9ecb7 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xc9e8c162 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f033cd usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xca0fe11b __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xca6d8004 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xca72c729 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca85d8cf tracepoint_probe_update_all +EXPORT_SYMBOL_GPL vmlinux 0xca8dc89f handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xcaa63bd1 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xcab3fdaa crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae03956 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xcb0821ba skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xcb5d31a9 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xcb824bc3 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xcb879415 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xcbb82d63 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc1f1c3d inet_twdr_hangman +EXPORT_SYMBOL_GPL vmlinux 0xcc25b081 edac_class +EXPORT_SYMBOL_GPL vmlinux 0xcc3da32d aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xcc41bd7f apic +EXPORT_SYMBOL_GPL vmlinux 0xcc44aa5e inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcc6ab305 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xcc960f15 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xcc9d3a9d usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccdd3552 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xcce29e02 sysdev_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xcd2bedb6 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xcd34c413 dw_spi_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xcd437b22 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xcd441c54 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xcd501367 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xcd52b354 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xcd9991a9 usb_usual_set_present +EXPORT_SYMBOL_GPL vmlinux 0xcdb7a58e crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcddf43c8 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xce138ac3 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xce2ba65b clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xce2fb536 dm_underlying_device_busy +EXPORT_SYMBOL_GPL vmlinux 0xce5dca79 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce738c19 m2p_remove_override +EXPORT_SYMBOL_GPL vmlinux 0xcead6cdd rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xced5421d get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xcf16515b securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xcf7be850 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc2cd38 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcc83ad register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcfd4a33a posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL vmlinux 0xcffc3cce hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04a3269 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xd0548f40 filter_current_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xd05be652 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xd05dc2a3 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd068cf7b usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xd08d5897 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xd0a83a00 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0e80ba4 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xd0f2894f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xd10eb675 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd11190eb seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xd13522f6 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xd13fbf3f xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1b2db37 tracepoint_probe_register_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xd1f7787c clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd23cf296 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27a9d32 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xd2a8caf0 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2eed2ae vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xd3076f22 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd32fe193 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd35ed577 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xd36c3b96 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd37e13b4 regulator_set_optimum_mode +EXPORT_SYMBOL_GPL vmlinux 0xd3a1787f pci_configure_slot +EXPORT_SYMBOL_GPL vmlinux 0xd3b3abe0 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xd3c81231 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd3c9553e tpm_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xd3c9567a single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xd3cbd639 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd3ead55f sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd3f5516b fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40496f1 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xd45b6944 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd46d645b vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xd46f4db5 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xd4a6fe0d register_efivars +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd51ec607 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xd542de55 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xd5444762 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0xd57dd97c add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd57f7576 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xd59668e6 unlock_flocks +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5d8bcbd ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xd5f3eacd ftrace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xd605be7f hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xd64b5d71 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xd65157a9 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd69b423f handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xd6b8c064 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xd6c536d0 regcache_read +EXPORT_SYMBOL_GPL vmlinux 0xd6e17aa6 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xd6e8bfee inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7385a05 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xd7558420 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76fe5da blkio_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd808989e usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd81cfc19 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd84bd4b9 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd8525ea7 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xd85ac634 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd85bcbe4 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd8a8a5ae pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd8e246f1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd8f2c054 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xd9042fa8 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xd9073441 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd928760f __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd93e76a6 kbd_table +EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read +EXPORT_SYMBOL_GPL vmlinux 0xd96c4ff3 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd9796dd3 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9bed593 cgroup_lock_live_group +EXPORT_SYMBOL_GPL vmlinux 0xd9db52d6 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xd9e38e87 pci_pri_stopped +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9ed7baa kick_process +EXPORT_SYMBOL_GPL vmlinux 0xd9f34b16 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xda1be8e1 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xda3a7ca9 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xda444f43 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xda6840f5 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xda7d8c5b anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdabd7398 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xdadc0a93 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb04cacc tracepoint_probe_unregister_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xdb151252 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xdb274e52 monotonic_to_bootbased +EXPORT_SYMBOL_GPL vmlinux 0xdb3f7d26 tty_prepare_flip_string_flags +EXPORT_SYMBOL_GPL vmlinux 0xdb784940 sysdev_create_file +EXPORT_SYMBOL_GPL vmlinux 0xdbaee710 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xdbb6aa18 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xdbd3ac5f ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc56e7af ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xdc6a858e get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xdc714560 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc82ee52 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9e62df led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xdcce8d89 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xdcdbd365 do_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xdce57037 apei_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xdcfa331d adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xdd2a7aaf xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd5a6fae ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xddd021fd iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf4d717 blkio_root_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xde051d58 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xde0769a6 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xde36ba5e module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xde417b81 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xde94855a regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xdf2a7d30 md_trim_bio +EXPORT_SYMBOL_GPL vmlinux 0xdf78a005 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xdf8e73bb usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xdfa1fd06 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdfadc84f regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe014c018 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe03ea795 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09f4004 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xe0b1053a rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xe0b62da1 event_storage_mutex +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe102a9ba blkio_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1257185 pm_generic_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xe134b9be usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xe1459ea6 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xe1506c5d spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xe1cf7cb7 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xe1d487f1 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xe1dca1ae bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xe21e841e device_register +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2a6bd2a device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xe2b5bfe0 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe2cba529 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2dd67e5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe2e75a80 blkiocg_update_io_remove_stats +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe36276bc skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe37478ae tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xe37ab4df ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xe384a102 usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3c55173 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe434da55 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xe44945fe power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xe4b0f75a raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xe4b5d111 blkiocg_update_dispatch_stats +EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xe4f3c6c8 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4f73585 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xe52b341d tracepoint_iter_stop +EXPORT_SYMBOL_GPL vmlinux 0xe544d1de exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe56da222 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xe57c1d22 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5ae4765 tpm_show_pcrs +EXPORT_SYMBOL_GPL vmlinux 0xe5bc350d relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xe5d6f1cc tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xe61a6d2f gpio_unexport +EXPORT_SYMBOL_GPL vmlinux 0xe6488b47 cpufreq_notify_transition +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6564673 fpu_finit +EXPORT_SYMBOL_GPL vmlinux 0xe6a45f33 inet_csk_clone +EXPORT_SYMBOL_GPL vmlinux 0xe6a7fd7a pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe6bda64e crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe73bb4ab iommu_domain_has_cap +EXPORT_SYMBOL_GPL vmlinux 0xe74914d4 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xe763fb77 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xe767ac3b sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xe76f894c pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe78a6b8b pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe794a8f6 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe79a3631 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8a120b0 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe8b830e8 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xe8d72751 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xe8ffbb84 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xe9144abb usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xe9317ffb wm8994_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe93acad1 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9587909 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0xe96da303 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xe98e4b6f hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xe9965ca4 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xe9ed7c9e blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea065e01 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea33f5e3 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xeae74760 scsi_nl_send_transport_msg +EXPORT_SYMBOL_GPL vmlinux 0xeb2cbbad pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xeb3442e3 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb3f080d pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xeb407c70 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebcfb545 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xecb9b31d iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xecf39950 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xed112bb6 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xed2b3c8c virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xed536613 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xed706b06 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xed7ac4d1 task_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedc563a7 cgroup_to_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xedd01cf1 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xeddf743d tpm_show_caps +EXPORT_SYMBOL_GPL vmlinux 0xedf31b15 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xedf3f1f1 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xee02fead cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xee116ce9 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xee4d6bf3 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee5be111 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xee6c25d6 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xee91d81e tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xeeb193ab fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xeec24d31 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xeed7fbe7 xv_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef23d470 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xef4166ac regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef92f5c1 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xefa447e3 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xefb72398 pstore_write +EXPORT_SYMBOL_GPL vmlinux 0xefd56fa6 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xefdd5a63 ktime_get_ts +EXPORT_SYMBOL_GPL vmlinux 0xefef0909 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xeff3732b ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf03bf41a ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xf061250b bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06c1cc7 unregister_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0xf07bb260 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xf09c0233 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xf0b33643 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xf0eae756 xen_remap_domain_mfn_range +EXPORT_SYMBOL_GPL vmlinux 0xf0f1d3cd ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xf1268a7c irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf1630fcc kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf19c7813 pxa_ssp_request +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1f5eb20 register_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xf1faf509 device_create +EXPORT_SYMBOL_GPL vmlinux 0xf2168581 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf221bca3 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xf2481da9 drop_file_write_access +EXPORT_SYMBOL_GPL vmlinux 0xf26436be ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf2723880 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf2b58dac inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xf2bb941f bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf2dbec92 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf2e204da usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf300dc0a crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf301da9e inet_csk_reqsk_queue_prune +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31fb530 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xf3216139 xen_swiotlb_unmap_sg +EXPORT_SYMBOL_GPL vmlinux 0xf34806ec hrtimer_get_res +EXPORT_SYMBOL_GPL vmlinux 0xf36189f3 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf3659cd4 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xf37df669 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b93a97 cgroup_lock_is_held +EXPORT_SYMBOL_GPL vmlinux 0xf3c740ce ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xf3dd036d regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xf3e4918c ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xf429a88d unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xf42e0659 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf469014e ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xf494cbfe generic_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf502de86 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf506d372 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xf5145333 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xf52f9e59 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54e7fe9 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5655b46 platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b187b7 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xf5de2c58 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xf6137b92 class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf614d88f wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xf62d269d class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf63d3a9d get_driver +EXPORT_SYMBOL_GPL vmlinux 0xf646165c usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xf6464980 ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf651671e crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf67c2821 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xf69620fa set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xf6b74db5 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xf6bb33ab tpm_read +EXPORT_SYMBOL_GPL vmlinux 0xf6cc6e71 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6e04730 event_storage +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf7322bc8 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0xf73b5f6a tpm_register_hardware +EXPORT_SYMBOL_GPL vmlinux 0xf756b9e8 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf78abf5d rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xf7a14f56 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf7a5ab25 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xf7aa18de hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c17d34 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf7c81a9f ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xf81d16c4 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xf82e0099 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf83c4578 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xf84102af tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xf84d79fe pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xf8671fd0 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf874c2d2 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8bf2971 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xf8bfa3b7 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xf8c2237d platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xf8c82d36 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf902ccfd usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf905023e tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xf92ac034 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf947a901 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf95c4af8 platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf96446c1 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf97666a0 set_memory_rw +EXPORT_SYMBOL_GPL vmlinux 0xf983f4cd xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xf9855eaa alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf997d715 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf99f864d sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a91bbd hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d7ffeb gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xf9effd44 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xfa012fe7 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xfa05dfca crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa28313e ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xfa8e2ae6 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xfad0d0a4 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xfad369a1 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xfb00cdab ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xfb230e86 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xfb2a50da sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfbabf22e debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xfbb950a7 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xfbbe7bbe attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfbd1033f fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xfbddcac3 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xfbf95809 wm8994_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfbf9be5d register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4e0d6b xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xfc6a4461 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfc9b44cc dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xfcaa28b6 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfcd7bc0b ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0xfcdb229c register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xfcdd641a usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xfcefcdbf ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xfd05464b klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xfd0aec6c inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd54ddb5 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xfd675b3d raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xfd7100d2 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfdb61a1c rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xfdcf8593 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xfde0b92c crypto_larval_error +EXPORT_SYMBOL_GPL vmlinux 0xfe0a6a48 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe899476 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xfe907013 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff04acf5 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0e81d3 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xff46f057 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5f2b0e __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xff75e976 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xff7d2ec7 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xff7e2114 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xff851a5d fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xffa4c4ec cgroup_lock +EXPORT_SYMBOL_GPL vmlinux 0xffd046fb ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xffe62ae6 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xffeecc36 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xfffc0f8b crypto_drop_spawn --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/i386/generic-pae +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/i386/generic-pae @@ -0,0 +1,12623 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x7593c3f0 kvm_cpu_has_pending_timer +EXPORT_SYMBOL arch/x86/kvm/kvm 0x85c3ddb3 kvm_read_guest_atomic +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x254e5667 scx200_gpio_base +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x35a3c008 scx200_gpio_configure +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x8cfa375c scx200_gpio_shadow +EXPORT_SYMBOL arch/x86/platform/scx200/scx200 0x907665bd scx200_cb_base +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/acpi/video 0x7a45377b acpi_video_unregister +EXPORT_SYMBOL drivers/acpi/video 0x8826c13b acpi_video_register +EXPORT_SYMBOL drivers/acpi/video 0xf0fe832d acpi_video_get_edid +EXPORT_SYMBOL drivers/atm/suni 0x1b8c9964 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x7ff789b2 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0xb01957eb bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x5c165453 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/block/paride/paride 0x0751a520 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x09095786 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x179ccf43 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x2a5266c6 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x3ac7f273 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x3ea903cd pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x6ce0a677 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x72ff02b3 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x7def2899 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xc128ce83 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xd40eff48 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xe30e5bf3 pi_write_regr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x2f1f95a6 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4222b94d ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x85dd4e3a ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9760033c ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa28a2ace ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xabd216cc ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nsc_gpio 0x1065caf9 nsc_gpio_dump +EXPORT_SYMBOL drivers/char/nsc_gpio 0x491e0c23 nsc_gpio_read +EXPORT_SYMBOL drivers/char/nsc_gpio 0xa8eaa681 nsc_gpio_write +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/edac/edac_core 0x1e16766d edac_mc_handle_fbd_ue +EXPORT_SYMBOL drivers/edac/edac_core 0x56931bd5 edac_mc_handle_fbd_ce +EXPORT_SYMBOL drivers/edac/edac_core 0x8f8a8472 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0b758c4c fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1461dfcd fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2b6b8133 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2be228c2 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x305f451e fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x45b305b5 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5100a742 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62d76ef6 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65d33a65 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x812f2f2c fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x910a395c fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa54ac24a fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa63e878a fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa6c5dcc7 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa994271f fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb1fd8b93 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb2aded29 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb99e698d fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbb80eb45 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbdd6878b fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd2e010cb fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe5fc017b fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe9608a15 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xead4b7d5 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf3e228b4 fw_card_add +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01b3e7c1 drm_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01db7009 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03af3c9d drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x045bc5eb drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0668c7f7 drm_connector_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b5e21e drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bfa607b drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c3bb844 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x123b7f12 drm_mm_get_block_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c6276a drm_buffer_read_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c71790 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142b8b35 drm_buffer_copy_from_user +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14f84161 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1595721c drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18b1a054 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18c2caec drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b8fba2c drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dbc231c drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e894e9a drm_connector_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1edc6476 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f072c59 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x200af7bf drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2552c8e3 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x298b696d drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29afd6ef drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c970fbd drm_core_reclaim_buffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x306a8068 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3074f033 drm_order +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3354e958 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e154ba drm_sman_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3465ed3d drm_mm_search_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x347c933b drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37be5778 drm_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a49ff77 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ba0dd68 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bb33a7c drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3efdcca8 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4079ee97 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40a2926f drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41469c24 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41fe8795 drm_mm_pre_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42530d05 drm_platform_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43384bd9 drm_buffer_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x433a4fb1 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c9a91c drm_sman_set_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43e64e4b drm_get_platform_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43eec892 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x440c533c drm_gem_object_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4786e7d4 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498dcb5e drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x499a2fa4 drm_mode_attachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b808aba drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d749bbf drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4da37594 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dfb923b drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f01b8d3 drm_mode_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f2775b7 drm_fasync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x508cdb1c drm_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50af2d6f drm_mode_create_dithering_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5387b7e5 drm_mode_detachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x549b2c8d drm_mm_put_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55dce5e6 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c6894f drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580830f0 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x581c412a drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58fab0b0 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x590050fe drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x596758d7 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59f8fc06 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ac70b77 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b0d3f65 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9e4ce3 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cfdced9 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d413248 drm_mm_insert_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e75af07 drm_sysfs_connector_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f098f77 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6cbc33 drm_find_cea_extension +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60162c6f drm_core_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ba5f95 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63e9dbfc drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66fcc908 drm_get_connector_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68921f31 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d7375 drm_timestamp_precision +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ba98789 drm_global_mutex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6edc3dcc drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b30afb drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70f7dc2d drm_core_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x720d32cc drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7404941d drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7415f136 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75144ef2 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7888c56e drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7924d2d6 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x794f05b1 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79d66c91 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a3eea71 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b4fd2ab drm_usb_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1fd6c8 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e13597a drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e1b407c drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e98ce36 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4cfa5d drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c10f42 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x841c47b9 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x852eeda4 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8591f065 drm_get_encoder_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c1e0f1 drm_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85de09f5 drm_mode_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86136af0 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87b8f3f1 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89a7c539 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a098599 drm_get_last_vbltimestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a5da2e5 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c6657dc drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfb019d drm_buffer_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e501a69 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90c1a426 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x912c23fe drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9161e61b drm_mode_connector_detach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9269eb44 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f2d102 drm_sman_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932df43d drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x935696c2 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ad2c48 drm_mm_get_block_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ce2661 drm_mode_validate_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95979648 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9745d638 drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x975bfcd2 drm_connector_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e0b282 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97e9236f drm_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97f722d0 drm_unbind_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bf647a5 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c684f62 drm_get_usb_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc25a34 drm_sman_owner_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e460f48 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1eabd87 drm_mode_list_concat +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa237e931 drm_sman_set_manager +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2faa05e drm_free_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa63f1e07 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6f35cfa drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa87b8989 drm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa54231f drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa6d323f drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad5803be drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae80b07c drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb276f1a1 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dae291 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb68af226 drm_sysfs_connector_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a467b1 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3ee6e4 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbae03ba2 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc215faba drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc414c422 drm_vblank_offdelay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6ba9209 drm_usb_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6fee43d drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf2eff4 drm_mode_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08fa3f0 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ce28b3 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd12aa4a6 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2bd66e1 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4a02a78 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd54e72fb drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f1ab84 drm_sman_owner_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd81a03c7 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda13fd06 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbfd14cf drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdca8b983 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe256edfd drm_sman_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3553657 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5bdce7e drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7d783b5 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7f391cc drm_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe866f733 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe94234df drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea23b803 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccc9f7d drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed256cae drm_sman_free_key +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a0bf79 drm_sman_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf159fd33 drm_core_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3f038d8 drm_mm_search_free_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf54cc433 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8fc0eb1 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4f8599 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc9eeaa1 drm_gem_object_handle_free +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00cd195e drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163ad7d9 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1af70b76 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2188a5e2 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23981227 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26ba0883 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a67dd44 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b08b609 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b96c995 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2df53082 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x350e11ca drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3564ad16 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39bfbb78 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cb14811 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46bc01ea drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x472bcade drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58cdf6aa drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62d8d9d9 drm_fb_helper_restore_fbdev_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x673bcc39 drm_fb_helper_single_fb_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d3bdf77 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89ff1960 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91a9a290 i2c_dp_aux_add_bus +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d251144 drm_fb_helper_panic +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fb2ff61 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf6877db drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc469c244 drm_fb_helper_restore +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4bcb469 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbe8d9f6 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcc05f33 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe24f3e82 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe893f8bd drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed7e036c drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf36f59fd drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0331f283 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13119eba ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x145e6a73 ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1727bb6e ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2267db5f ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25392771 ttm_ref_object_add +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x266d8a60 ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a412466 ttm_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b941579 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2db6dc62 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e423f99 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x34c269a1 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f2ea2ae ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3f4bd6c9 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x467d8a83 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4915fb8c ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ea2891e ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5df03ed4 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61bdb34f ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x61e92c30 ttm_bo_wait_cpu +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6617c7dd ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6622655d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x707e40b1 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73bede0d ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7586fb3a ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ab5e843 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f05b5eb ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f78e398 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85477881 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86a4066d ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8832162b ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x92da04e8 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x998e45c0 ttm_ref_object_base_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9cfbd484 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa13ee290 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb57417f4 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb841dedb ttm_bo_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaa2b414 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd5f95b6 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc07a4b6f ttm_bo_unreserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc16d768f ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc58c6887 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc786b2c8 ttm_agp_backend_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc404922 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd65acb7 ttm_bo_wait_unreserved +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd050d384 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0c29f4c ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd6390acc ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdac88486 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd0f9feb ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd3eae35 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdfc66e34 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe5417038 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeca576c9 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf10b4a8f ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2eaa709 ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4531d15 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa7b3a2d ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x0f3400bc vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xdecfc641 vmbus_recvpacket +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xdb4acf4b i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xeae3c402 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x6b5be3df i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa1d465b8 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pcf 0x956725f9 i2c_pcf_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xeb050200 amd756_smbus +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x37838b44 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x69c911d4 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x8ed679ff rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d1f522d rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb93baf0d rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xc0bf4edc rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x41128c03 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x477fd1d9 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x49c658ca ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b4cd16e ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x574ce0a1 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7543447a ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b5603b4 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x860e0b90 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9373739 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb14d6b86 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc45ecfae ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcbddd5cf ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd23f4956 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdbe365de cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xebea7565 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xecbc5e0d ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xed61fb51 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x053e924f ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06c82fcf mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e19f659 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e20e4bd ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x104f5f13 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1180fb86 ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1246c176 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14f84918 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171f99f1 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x173635bb rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17781468 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c764b50 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d0652a3 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eef0a0d ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x295fc400 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29eed200 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e554f6a ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ebda7be ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x38beb10a ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a7ab748 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b50d29a ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49232470 ib_reg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c5a995b ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50f821ca ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5101443c ib_rereg_phys_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x525ba0bb ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b51de39 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62bdb84f ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x663dc103 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e61f60d ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74c26cf9 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81f4b348 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x826570cd ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87f4fdcc ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88c863e3 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96ce6c46 rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96d63a7f ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9952c3b6 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9abe0f2e ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c4a9b27 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0e71782 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5892f40 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacb9ad58 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae3e1124 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafa7ea85 ib_alloc_fast_reg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb33b7b88 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3dd9729 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3e272bf ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7a6c23c ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbdc36a49 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbde3208b ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc45dc51d ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc46f6028 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc623f357 ib_alloc_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7a52bc2 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7e72f63 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb387afb ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4642eb5 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6ca936a ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd79bd015 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8a0980f ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8e31856 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc735d6b ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdf3a8235 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe47807cc ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7a41b34 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe90b72e5 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe941518c ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe95f0e40 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe98ae42d ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2a49e0d ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5c008cf ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9ad47e2 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa0f18d0 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc46d0cd ib_free_fast_reg_page_list +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdb9552d ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfeec039d ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x01a9172d ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x272a0383 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4605a20e ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4d062f83 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8efd3bf2 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x909db400 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x93b14650 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x946d5d27 ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa6de8527 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa70f2aaa ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xae9db2e4 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xafe0f15e ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfdd41daf ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x14c37095 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1c778fb6 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x25f8177e ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x576fdbac ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6e44fd9f ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8001438f ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9ec2fd34 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbd4fe1d4 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xdf4888f7 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf6b6444b ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x02f847bc ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x07cf5a51 ib_copy_ah_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18382f6a ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x184f3575 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x396176d5 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99d23c40 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa1c90dc7 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb1c6725c iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc399ed40 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd28091f8 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe4ff9ba4 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe75dfa1d iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1972f5c7 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x26729cb9 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x42a6d04a rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x53f448ad rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a6b05d0 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74b3abc6 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x794ebdcd rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7f154fef rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x80688862 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf129b25 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb798e4ca rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbb14e430 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc20866a9 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xdb584659 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf65a103a rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6f2f73a rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf82da5cc rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfdb25b25 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfe616804 rdma_resolve_addr +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1e827d40 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x32279e0b __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x52e063e3 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9c2fe821 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa866c341 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb45be806 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe799f26f gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf3a360dc gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf5b7d802 gameport_stop_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x1f6193b8 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x21e7dae0 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc0b1c728 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xd809dd77 input_free_polled_device +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0eea5670 ad714x_remove +EXPORT_SYMBOL drivers/input/misc/ad714x 0x25e42ae9 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x9120f9e4 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xfa59e97e ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xe4afa83c cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3a69d5b9 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3f66d73e sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3fde14aa sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x764ec481 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa4e3a482 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xaf1dabfa sparse_keymap_free +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x1bd1f498 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbc9dc160 ad7879_suspend +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf3bd1692 ad7879_resume +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x10450e84 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x29b9bb38 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47d3fc51 capi_info2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5b3b6ec3 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x80b7d48c capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x90dbec0f capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x91f991ae attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa038ca9f detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd55487d9 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd7a06809 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xea99db03 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed061606 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x17282b7f b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x255a0ff9 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x37b05f3b b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5ccc79cf b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6754db48 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x705618c4 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x749e4f1c avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x83b86868 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x90c9091c b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xab967cd9 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xadd2ee57 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbeae8a63 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc0afaae4 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc145cd83 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe39d0154 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x19f8fc9a b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x23194b8b b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2f8744f3 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4ccd8db0 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x560e225d b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7251e58d t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc5b38538 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd410ae6d b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xea4dcb0f b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0x29562993 b1pcmcia_delcard +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xaec3240e b1pcmcia_addcard_m1 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xea620116 b1pcmcia_addcard_m2 +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1pcmcia 0xf14bf8b1 b1pcmcia_addcard_b1 +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x2974ead1 DIVA_DIDD_Read +EXPORT_SYMBOL drivers/isdn/hardware/eicon/divadidd 0x82aa99b6 proc_net_eicon +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x00cce2f1 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x13e3a08a mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x57d1148c mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa085357d mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0a5a4a52 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x653b46b4 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x4a41686f hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7f29ce36 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe227344e FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xff2db2cf FsmDelTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x2c595bbe isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6048a94f isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x824f4d54 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xcb40f534 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd6d495f9 isac_init +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x2d8f565b register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x354570a6 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xbab9a22a isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0e4b63d1 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1800002e mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29b6ddba mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2c41b96d queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x318e6364 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b0ed1e7 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x44ec755a confirm_Bsend +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51634e9c mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x53bcc6cf dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54451388 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x57549d13 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5bf45d63 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dc7400a mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x614ede30 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x632b961b recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x686ccb1b create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x93c50127 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9445daa5 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96309324 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x99044baf recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf7fb9ad mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb500e393 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb89905bd mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbde96dcb mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe87943cf mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf504cfca mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/dm-log 0x2d30f73f dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x6f5af0e9 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xdf64510c dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xeef2db43 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2e961edb dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x61ef9c5b dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x87ef5e62 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8ca931c1 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x989eea77 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xeef7d17c dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/raid456 0xb7a23b99 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/tuners/max2165 0xbde8b5d4 max2165_attach +EXPORT_SYMBOL drivers/media/common/tuners/mc44s803 0x9ba77d2b mc44s803_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2060 0xf596b406 mt2060_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2131 0xd3b28b40 mt2131_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2266 0xcebda9e2 mt2266_attach +EXPORT_SYMBOL drivers/media/common/tuners/mxl5005s 0xc7be9a5c mxl5005s_attach +EXPORT_SYMBOL drivers/media/common/tuners/qt1010 0x32188c62 qt1010_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18212 0x724607bd tda18212_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18218 0x9d595ab4 tda18218_attach +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/common/tuners/tuner-xc2028 0x6292eacc xc2028_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc4000 0x849288db xc4000_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc5000 0x8159ac26 xc5000_attach +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x151a3976 flexcop_device_exit +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x154d35ee flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x33de76b7 flexcop_dma_free +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x5e69836f flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x7297955b flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x8971c563 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x91fab559 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x93ae83cb flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xa7eca00b flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xaeb86c3d flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xb8c6ebf4 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xbae4bb2a flexcop_i2c_request +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc1d7b8fe flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc2c30594 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xd22a9471 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xd3faba4c flexcop_dma_config +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xdc4c2b9d flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xded65c40 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xee2d9ed7 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xee50abc9 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x3e5c0ac3 bt878_stop +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0x92c7b2e4 bt878_start +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xa515b905 bt878 +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xa9d19830 bt878_device_control +EXPORT_SYMBOL drivers/media/dvb/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x01fec230 dst_error_bailout +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x26c02636 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x2a18675a rdc_reset_state +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x6cc6411a dst_attach +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0x9ad85435 dst_comm_init +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xc1b3bf87 write_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xc69f2d51 dst_error_recovery +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xf7b9e6d1 dst_pio_disable +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst 0xf8f35aff read_dst +EXPORT_SYMBOL drivers/media/dvb/bt8xx/dst_ca 0x4fa19e75 dst_ca_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0381a962 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0536b83f dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0c4d4a14 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x101a29b8 dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x196f1ac1 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x20731e18 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x237f7910 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x300f2abb dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x438ba2ec dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4911af47 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x4c70c35a dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x51d4035a dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x5a1eb4d1 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x5aedbc3e dvb_net_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6007cf5f dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x70367989 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x84ffcdfd dvb_register_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x987dcfde dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x9983c814 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x9be2edd2 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xa37d37c2 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xa7df2818 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xad733c53 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xb72b5fa0 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbc0d91e1 timeval_usec_diff +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc0d593f4 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc5b53187 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xcb8a5e2b dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xd3ee7530 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xdeb9e8e8 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xdfb4302b dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe2a5e19d dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe8a2bb5a dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf84d6911 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xfa610d62 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xfcc0ed9c dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x057f2f5a dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x49f2fd92 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x5a939cf7 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x8eb3cc6d dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xb878a5c6 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xd91f8941 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xda0b45a6 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x6f8a744d af9005_rc_decode +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x015f056e dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x1d1089b9 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x66a44586 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x6a56e17d dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x70efca3f dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xa6fc3bea dibusb_rc_query +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xa999c66f dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb99ef4d4 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xc75ce93d dibusb_pid_filter +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xc9b967fd dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xea953b67 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/a8293 0xe510bbbb a8293_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/af9013 0xf44d538d af9013_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/atbm8830 0xb221818f atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/au8522 0x14d55758 au8522_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/bcm3510 0x32591425 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22700 0x283f9505 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22702 0x6ef5be85 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24110 0x6790f89b cx24110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x1e2223cd cx24113_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x48731b6e cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24116 0x719d601f cx24116_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0x00ca4b1e cx24123_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0xb4febd95 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/cxd2820r 0x2d09f58a cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x6fd34101 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xb47afda5 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xbd4493a8 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xe445625e dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xf9d9d15d dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x0b6416e6 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x18e1b537 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x2281441a dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x2c04400d dib0090_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x2d44ea62 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x5fba68ce dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x693af338 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x8e4f4141 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xe6c006b7 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mb 0xc56a8de7 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x03bd1f70 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x1d7887ae dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x44e88fc4 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x701532c5 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x74356a4a dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xdacd2354 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x20fe57cc dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x7b5dd8f5 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x8b4bec73 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x99593f44 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x1da20663 dib7000p_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x2a5f9b42 dib7090_tuner_sleep +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x379a0907 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x550cae93 dib7000p_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x61cf7c9f dib7000p_ctrl_timf +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x70013e91 dib7090_agc_restart +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x7b0fd823 dib7090_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x89f914d0 dib7000pc_detection +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x913034cd dib7090_slave_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xa289461d dib7000p_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xa348c9cc dib7000p_update_pll +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xa404a9b8 dib7000p_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xed9553ca dib7000p_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xfa218e84 dib7090_get_i2c_tuner +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xfe15053c dib7000p_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x1d0f8442 dib8000_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x20606e55 dib8000_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x261d3d7f dib8000_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x325fd549 dib8000_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x3fc62945 dib8000_pwm_agc_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x4eabe039 dib8000_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x50210fcc dib8000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x72a58524 dib8000_remove_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x868826c9 dib8000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xac566f1b dib8000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb2a19a3c dib8000_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb6cca348 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xd7c08b7e dib8000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xf1be70e4 dib8000_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x38950e27 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x499c9122 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x6cc53cf8 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xb59929f6 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xf1fd2d0f dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x02d16dd5 drxd_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x40fe5762 drxd_config_i2c +EXPORT_SYMBOL drivers/media/dvb/frontends/drxk 0xb73cfc7d drxk_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ds3000 0x5836da0f ds3000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dvb-pll 0x980546fa dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ec100 0xcd774f4e ec100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6405 0x7f610f12 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6421 0x89dc7bd0 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6423 0x79f2bf7f isl6423_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/it913x-fe 0xabaff25b it913x_fe_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/itd1000 0xb0488f6a itd1000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ix2505v 0x2b6f1b71 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/l64781 0x7e12497a l64781_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt3305 0x29fc2c32 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt330x 0x5b87d9d1 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgs8gxx 0x2bd62a72 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0xaf2f8cfd lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0xd00a2943 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp22 0xdcac1b61 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a16 0x29b89431 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a20s 0xb61df96c mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt312 0xc3d3481d mt312_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt352 0xe07dbdcd mt352_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt200x 0x1019d401 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt6000 0x3f9ddf71 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51132 0x8c5e5194 or51132_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51211 0x38feeb73 or51211_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1409 0x0029c13e s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1411 0x86708b0a s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x17efc18c s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x360f12dd s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s921 0xc20a049e s921_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/si21xx 0x4c00bf3d si21xx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp8870 0xb979149d sp8870_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp887x 0x1ed9bd28 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb0899 0x25870503 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6000 0x9fe0b781 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6100 0x65826e76 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0288 0x951ed0fc stv0288_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0297 0x1ec71423 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0299 0xbc215d3b stv0299_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0x374f0419 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0xad859c36 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0900 0xad4a788f stv0900_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0x995630a4 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0x9b42f9b1 stv090x_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110 0x1cf17d54 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110x 0x5dbf727c stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10021 0xef15c09d tda10021_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10023 0xa1928d13 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10048 0xd072deb1 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x349ae0ba tda10046_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x54a3a935 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10071 0x8f820cca tda10071_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10086 0xaf52d6c4 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda665x 0xcebe88ad tda665x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8083 0xa7c72841 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8261 0x792c758a tda8261_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda826x 0xc5b95633 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tua6100 0xd72ca644 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1820 0x13578c00 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1x93 0x440fcba2 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10036 0xb500f699 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10039 0x282a5b6f zl10039_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10353 0xd3a033eb zl10353_attach +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0x1964980d ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x511de28c ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/dvb/ttusb-dec/ttusbdecfe 0x7adae346 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x23c461e7 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3e8c448e lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x508fbb84 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x68286133 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9b10b921 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9df34408 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc80e0bea lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe24ef037 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2cae3074 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x97b07b80 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x1c6dfc26 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x3ad5536c bttv_get_pcidev +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/video/bt8xx/bttv 0xe4c83939 bttv_sub_register +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x3523167b btcx_riscmem_alloc +EXPORT_SYMBOL drivers/media/video/btcx-risc 0x495e4b0c btcx_calc_skips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xad2fe38b btcx_sort_clips +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xbb21ade7 btcx_riscmem_free +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xc368f8e6 btcx_align +EXPORT_SYMBOL drivers/media/video/btcx-risc 0xcda0ded2 btcx_screen_clips +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x2fe94528 cx18_release_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x67a673e3 cx18_ext_init +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x964341b1 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0x9e9d2071 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/video/cx18/cx18 0xeeade5c6 cx18_claim_stream +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0x573b9b8a cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0x8bc36e48 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/video/cx2341x 0x0da7e7ff cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/video/cx2341x 0x0e45778a cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/video/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/video/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5b88faf6 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0x676ed443 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx2341x 0x7dc2bf3a cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/video/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0xffb04ae1 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x9247b72f altera_hw_filt_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0x9d313947 altera_ci_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xab2127ff altera_hw_filt_init +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xdb3faf38 altera_ci_release +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/video/cx23885/altera-ci 0xfbecb29e altera_pid_feed_control +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x07268aea cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x471e1cfb cx25821_devlist +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x4c8bc3ef cx25821_devlist_mutex +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x67cc5b8b cx25821_sram_channels +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x7e1e23c3 cx25821_dev_get +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0x84710255 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xabc59f16 cx25821_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xbe6d69ef cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xe927d7dd cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xf1fa8a34 cx25821_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/cx25821/cx25821 0xfed62e5f cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0x5b47efc7 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/video/cx88/cx88-vp3054-i2c 0xcc988279 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x2bb9edd3 cx88_set_freq +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x337a933b cx8800_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0x52f289b3 cx88_video_mux +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xa9976b3d cx88_set_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xac4e53b9 cx88_user_ctrls +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xafef1b44 cx88_get_control +EXPORT_SYMBOL drivers/media/video/cx88/cx8800 0xce506a99 cx88_enum_input +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x11abba12 cx8802_get_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x1ef82e5b cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x3138f5a1 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0x8b35c1fa cx8802_register_driver +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xb0f99fe2 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/video/cx88/cx8802 0xc71cd6b0 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x0504015e cx88_ir_start +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x1479737d cx88_core_irq +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x1e05a425 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x202667e0 cx88_set_scale +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x22f58a79 cx88_wakeup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x30e6f1f6 cx88_core_get +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x33f46e9c cx88_set_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4a5355a2 cx88_vdev_init +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4adff098 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x4ebdd2ba cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x55d9b7a7 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x57ad8045 cx88_shutdown +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x5e7ba642 cx88_free_buffer +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x8592768e cx88_reset +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x9466f513 cx88_newstation +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0x9774d46d cx88_ir_stop +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb2134c2f cx88_sram_channels +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xb3d92986 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xc2aa3ae1 cx88_get_stereo +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xcbeb4f6d cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xd980c1e5 cx88_core_put +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xe6af32f7 cx88_risc_stopper +EXPORT_SYMBOL drivers/media/video/cx88/cx88xx 0xff87fc09 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0x79e5cc6b em28xx_register_extension +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0xc656714a em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x10b6661c gspca_disconnect +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x2774d2e9 gspca_suspend +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x7c720ca4 gspca_auto_gain_n_exposure +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x92e657aa gspca_resume +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xa0190d40 gspca_frame_add +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xc9aa201f gspca_dev_probe +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xf770da49 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x20bbc2da ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x2121cc31 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x2855eae7 ivtv_api +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x8aba3f45 ivtv_vapi +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x8bc9dcff ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x8cd3722f ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x929ce1b1 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0x9a6fd8ee ivtv_udma_setup +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xd68333c1 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xd72e6088 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xf3542588 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/video/ivtv/ivtv 0xf6e4600b ivtv_vapi_result +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x14dfecc6 saa7134_boards +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x2eae17ad saa7134_ts_register +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x5a28db23 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x877e80bc saa_dsp_writel +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0x94bd64a3 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xb21ddc78 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xc4903f51 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xcac54072 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xe193a0fb saa7134_set_gpio +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xe36f3478 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xeb15c105 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xf0ad3c62 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/video/saa7134/saa7134 0xff072e8a saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/video/soc_camera 0x300de695 soc_camera_host_register +EXPORT_SYMBOL drivers/media/video/soc_camera 0x3b0e43ff soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/video/soc_camera 0x63c51bac soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/video/soc_camera 0x68570da5 soc_camera_unlock +EXPORT_SYMBOL drivers/media/video/soc_camera 0x8b468b86 soc_camera_lock +EXPORT_SYMBOL drivers/media/video/soc_camera 0xe530deb6 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x433952ab soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x6951757b soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x85d52182 soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xcb4b96ae soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x810fe344 tm6000_register_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0xa8689db6 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0xbfc1bf27 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/video/tveeprom 0x72de35de tveeprom_read +EXPORT_SYMBOL drivers/media/video/tveeprom 0xadadaf05 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x30747772 v4l2_chip_ident_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x42c8e001 v4l2_ctrl_next +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x4c9fd0bd v4l2_chip_match_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x4ed5e0d7 v4l2_chip_match_host +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x50766d69 v4l2_ctrl_query_menu_valid_items +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x791ab099 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xc0699aac v4l2_ctrl_check +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xf052e6db v4l2_ctrl_query_menu +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x1e7c85b8 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x24921697 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0xb3189292 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x42b01f39 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x8d2a6e13 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xc79a6952 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xcc0381a9 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xcd29753e videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xda35bb41 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/video/videobuf2-core 0xef2cb030 vb2_querybuf +EXPORT_SYMBOL drivers/media/video/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/video/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/video/videodev 0x12726da8 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/video/videodev 0x1cdc8bde v4l2_ctrl_add_event +EXPORT_SYMBOL drivers/media/video/videodev 0x22c062a6 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/video/videodev 0x269097e9 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x2a00ce3c video_usercopy +EXPORT_SYMBOL drivers/media/video/videodev 0x2dcd2e5b v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x31c0eaea v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x3a52ec29 video_device_release_empty +EXPORT_SYMBOL drivers/media/video/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/video/videodev 0x3b713d85 video_device_alloc +EXPORT_SYMBOL drivers/media/video/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/video/videodev 0x424a2985 video_unregister_device +EXPORT_SYMBOL drivers/media/video/videodev 0x43f9eca1 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/video/videodev 0x4d360cb9 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/video/videodev 0x5137e42f video_device_release +EXPORT_SYMBOL drivers/media/video/videodev 0x533c16c0 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/video/videodev 0x5ebefe4b v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/video/videodev 0x6016747f video_devdata +EXPORT_SYMBOL drivers/media/video/videodev 0x6456a197 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x6db76e00 v4l2_ctrl_del_event +EXPORT_SYMBOL drivers/media/video/videodev 0x6ece7853 __video_register_device +EXPORT_SYMBOL drivers/media/video/videodev 0x76ca6e43 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x7936d64f v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/video/videodev 0x828e89d2 video_ioctl2 +EXPORT_SYMBOL drivers/media/video/videodev 0x8465ea27 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x8b7973d6 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x91b1e615 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/video/videodev 0x96827c2a v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/video/videodev 0xa0761a68 v4l2_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0xad1bf5bf v4l2_ctrl_handler_init +EXPORT_SYMBOL drivers/media/video/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/video/videodev 0xc61ba318 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0xcb96bcf3 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/video/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/video/videodev 0xd4bf05c4 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/video/videodev 0xd99b07bf v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xda6dc93f v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/video/videodev 0xdb3229be v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xdb70329f v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xe12e18f8 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/video/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/video/videodev 0xe3719f5c v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/video/videodev 0xe734bd9c v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/video/videodev 0xe83006ee v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0xe9fd110f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/video/videodev 0xf09c0c86 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/video/videodev 0xf4d3333c v4l2_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xf8b09388 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x1d82051d videocodec_attach +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0x811f3d40 videocodec_register +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0xb55532fd videocodec_unregister +EXPORT_SYMBOL drivers/media/video/zoran/videocodec 0xbc3cfdb5 videocodec_detach +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0f031d9e memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1b657be9 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x218a9cc8 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x29919ac0 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x540d36f9 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x96998c24 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb9eed918 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc2efe697 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc30421b8 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xea5bec6d memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf29da97f memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfb6f266d memstick_register_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x037a4870 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x13825992 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1c3d1f35 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x271da99e mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x309439cd mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x32524171 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x399dc565 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a1ffeab mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3b8b4cc8 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x41fbd088 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4474373b mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48af6569 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b60f6c1 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4eb6f259 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x73958b37 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d6f2d77 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x82bbdb20 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x83a7e05f mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x861609fc mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa4d4c1fa mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc1de9457 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc8bad4e8 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcab727eb mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdb5a6834 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe88716ae mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf08fac9a mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf66ac6f7 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf6763834 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf800c9f6 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x059cb5d5 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2f93c883 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x35375a54 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b014ac1 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3cd5b807 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3df19943 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50b39626 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56d71768 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e07d88e mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x65a4027d mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x66c5853d mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7bbdb4cb mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7e017354 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x889515de mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ad769c1 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9ae910be mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9aff1cc6 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c236a12 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9d57f74e mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb8cb731d mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb62f2a7 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc48a027e mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xce76b6c4 mptscsih_proc_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd9acc4e5 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdca4c5c2 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe2480286 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfbcc13f0 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x19181377 i2o_status_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x208b7ffa i2o_event_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x2a843bef i2o_dump_message +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x32a08603 i2o_parm_table_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x4f7f874c i2o_driver_unregister +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x5b8fcf34 i2o_parm_field_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x655449e7 i2o_driver_notify_controller_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x6686ab71 i2o_iop_find_device +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0x9f3828e1 i2o_exec_lct_get +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xa0ebfc34 i2o_parm_issue +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xa327f9d1 i2o_device_claim +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb2ac4e50 i2o_msg_get_wait +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xb4c00dcf i2o_controllers +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xbeed2339 i2o_driver_notify_device_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xbf3bfc81 i2o_find_iop +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xc67567a8 i2o_driver_notify_controller_add_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xccdee908 i2o_device_claim_release +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xcf0bcaf8 i2o_driver_register +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xd0d838da i2o_driver_notify_device_remove_all +EXPORT_SYMBOL drivers/message/i2o/i2o_core 0xe3ad7b79 i2o_msg_post_wait_mem +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x66204660 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd668749c pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0a0f0fa1 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19f1f7a8 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x304d2b09 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x648f3e82 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c8289a3 mc13xxx_irq_request_nounmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x81e0f888 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x908760bc mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9bc42b70 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa83c26ee mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad06449f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb3dae053 mc13xxx_irq_ack +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc60a9247 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdc5799c mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/tps6105x 0x217ea530 tps6105x_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0x78d8cd6b tps6105x_mask_and_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0xb6507ae5 tps6105x_get +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x4148482d ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xf1ad9c20 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xeafaf244 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x3916cb3b c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xf57c9420 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x154188e9 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x7b50fd87 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x17260fd9 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x25d6a6a9 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x2708231e tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x7dab90e0 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x9db802be tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xa1ff4ecc tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xa616dd5b tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xbdfedc67 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xc310b986 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xe98dc4e4 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xee782320 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf353bafa tifm_alloc_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xc2b815dc mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x25fb2caf cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x72188998 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9f462ebd cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x454d49f6 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4f6b15c0 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb637d15d map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xbc7c2002 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x060c89cb mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xf1c8cfbe lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x194c4478 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x48abeb64 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xbe95aa3a mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0666e293 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x094fed09 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5478d613 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x58b27256 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x6c71a619 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x918358b1 nand_default_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb698ac31 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x129d4bb3 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x3f2d22f2 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x621f69e3 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x0f309dcd nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xaae8bc34 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0x836bdb72 nand_flash_ids +EXPORT_SYMBOL drivers/mtd/nand/nand_ids 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x15dbaf37 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1ada142c flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x8220fdc7 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd05da64a onenand_scan_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x1511e5ab alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x29581d4e arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x98a512cc arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbe6416fd arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc6df0e69 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc83cfcb1 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe3686676 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe55f21d5 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe652a604 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfd2f0b4c arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x42d9d322 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x455e80c5 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa394f293 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x29976101 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3215a294 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x455ff663 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4d6dc39b ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x79c8aa94 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9a5242d6 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb1ae4102 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd9c8d344 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfa1dc986 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfed5e70b ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x035ca422 eip_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x182c21d8 NS8390p_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x625dcefe eip_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x73899c3a eip_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x998e6aa2 eip_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb0ca2b24 eip_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb46156d4 __alloc_eip_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xc2cc0648 eip_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xf1084c07 eip_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xf16aa70f eip_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2 0xce3464b3 bnx2_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x64317cfa bnx2x_cnic_probe +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa019b5a6 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0823d394 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x189d52c3 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3013085a cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x328544c3 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x389c3710 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d1353f6 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x77d8e9b0 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x93ffd6d9 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0277408 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb60f8767 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc50fa473 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd0986aea cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd13de06d cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe308e1b1 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf04b1bfa cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfd57da78 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0741b856 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x314974c3 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32a98dc4 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x34ac6762 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c3719fd cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b78aa04 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57af989f cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x680d264f cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f29477a cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa595b027 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb4d24129 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd4f18f3 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe490fb1f cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe92c9d66 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xeb28c104 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xed156fce cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf698ea93 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0040c956 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa689eb5d mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda6b3df6 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x154194e3 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6645ed16 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x724f3830 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x79925b74 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb032be4a hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2a73234c sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x41212019 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7a2a189c sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7e259b6a sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x91bb7884 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x923ffc30 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x949851e5 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xae711e27 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe5838c1e sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe9241a13 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/mdio 0x0f934475 mdio45_ethtool_gset_npage +EXPORT_SYMBOL drivers/net/mdio 0x22bce513 mdio_mii_ioctl +EXPORT_SYMBOL drivers/net/mdio 0x43e4defc mdio45_nway_restart +EXPORT_SYMBOL drivers/net/mdio 0x7577f992 mdio_set_flag +EXPORT_SYMBOL drivers/net/mdio 0xa1a29548 mdio45_probe +EXPORT_SYMBOL drivers/net/mdio 0xb34a7575 mdio45_ethtool_spauseparam_an +EXPORT_SYMBOL drivers/net/mdio 0xc6b1163f mdio45_links_ok +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2a0d67e0 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xee123686 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd03ff743 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe2c0ba5c pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xff770c6b pppox_unbind_sock +EXPORT_SYMBOL drivers/net/sungem_phy 0xaef88c5a sungem_phy_probe +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x278c7687 tms380tr_open +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x2a93593e tms380tr_netdev_ops +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x3d65f3ac tmsdev_init +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0x6d63f739 tmsdev_term +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xbcd23793 tms380tr_interrupt +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xd2328794 tms380tr_wait +EXPORT_SYMBOL drivers/net/tokenring/tms380tr 0xed55ad69 tms380tr_close +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x38da4725 cycx_intr +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x62be23ea cycx_setup +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x66a4c4e6 cycx_down +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0x968458a6 cycx_peek +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xb6f383de cycx_poke +EXPORT_SYMBOL drivers/net/wan/cycx_drv 0xfe7cd576 cycx_exec +EXPORT_SYMBOL drivers/net/wan/hdlc 0x05e881f0 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x079e8a69 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x184354bf hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x22a25682 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3d2c7f40 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x598bc738 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7d43b747 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbb38bd91 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe88fd82a hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe9fb86b0 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xeafd8cd3 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/z85230 0x0120a4d0 z8530_sync_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port +EXPORT_SYMBOL drivers/net/wan/z85230 0x183cb8ef z8530_sync_dma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x4e74e723 z8530_sync_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream +EXPORT_SYMBOL drivers/net/wan/z85230 0x8495ece0 z8530_init +EXPORT_SYMBOL drivers/net/wan/z85230 0x89887595 z8530_sync +EXPORT_SYMBOL drivers/net/wan/z85230 0x93a46214 z8530_sync_dma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x966610a8 z8530_sync_txdma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x998537e0 z8530_shutdown +EXPORT_SYMBOL drivers/net/wan/z85230 0xa04b7c50 z8530_null_rx +EXPORT_SYMBOL drivers/net/wan/z85230 0xb722a225 z8530_queue_xmit +EXPORT_SYMBOL drivers/net/wan/z85230 0xc7085237 z8530_channel_load +EXPORT_SYMBOL drivers/net/wan/z85230 0xc8dfbcf5 z8530_describe +EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt +EXPORT_SYMBOL drivers/net/wan/z85230 0xd5787aea z8530_nop +EXPORT_SYMBOL drivers/net/wan/z85230 0xda191728 z8530_sync_txdma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x24b89bff i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x117a18c1 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x732748a5 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x761f6c4a init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x08260c22 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1de57e15 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x30665d51 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3d0c6a96 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x41b711cd ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e2481d5 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7ae09782 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x900d9db9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9f4475e3 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1a9f65b ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdcf9c121 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfcdad40c ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40d3a2e4 ath9k_cmn_update_ichannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4da09299 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6daddf52 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xafaa3200 ath9k_cmn_get_curchannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcb2e484c ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf59eadf3 ath9k_cmn_padpos +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0155fbda ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02a25f94 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x043f5457 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04be716f ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x096e4384 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e697c4a ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x113e2537 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x138ee8e0 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1427f5ce ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19abf00c ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19bf67ae ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ba8cba3 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e9aa221 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23be9eb4 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x25961a3f ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x262b837e ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x289bb208 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28a94218 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2acca7da ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b55fc92 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b68018a ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30d7d1a5 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32b4f0f7 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x364c9428 ath9k_hw_getdefantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37cb4171 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3aa3a67d ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b53e260 ath9k_hw_gettxintrtxqs +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e249ed9 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40483a19 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40722c90 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4078b2a3 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x444048f1 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46fc550a ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x477e41b7 ath9k_hw_htc_resetinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dfa8c3c ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5180bc8c ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x529e90ba ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53b030b9 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55346558 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a88cb63 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b0cc065 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x614d8f1a ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63a018dd ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65325be7 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67594083 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68666b66 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a234c16 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x727adf01 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7514627b ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7772d30a ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78493c34 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7db91629 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f36a1b9 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x80fe6a3f ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85912ef4 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87b472e0 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9216513b ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9223063f ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9524ac6d ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9db20903 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9db6ae6b ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa19e5a30 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa304007f ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa830e04d ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabe7b440 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae51e727 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb21967cb ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6e88659 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb858a107 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc94bce2 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbf5cbddf ath9k_hw_proc_mib_event +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcaa4df0f ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf752416 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcffca102 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd15b24fc ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1a8bdfa ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2e37847 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd38ac02f ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd608a279 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd819dc33 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcb48be3 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfa3f815 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf257403d ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2af858b ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf300dfb7 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7111fe7 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd6bca51 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff81286a ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/atmel 0xac7325e7 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xb68a3d9d atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xe349aba0 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x9452f4b2 brcmf_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0xdf0aee73 brcmf_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x04e349d2 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x15d55a47 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1846abe6 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x23c3e873 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2c2c3535 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x38159d31 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x583f6337 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x66f40550 brcmu_pktfrombuf +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x78aef01e brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7d543134 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8948c730 brcmu_pkttotlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa0d194d8 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa5d65eef brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xe5485e11 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ae16c33 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0c9201c2 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2f11657e hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2f26d356 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x38f53266 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x44acbdcc hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4615ed09 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x46502376 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x52b22bbe hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x55cf320f hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x652c7308 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x66446508 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6ceb5d3f hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6d934856 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7a985bcc hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7f9a5809 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x91dd0e5c hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x963570d8 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa68a2479 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb1bff31b hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbf2b1da9 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbfaf1ea0 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcad5b77a hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd24ac28c hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfcd6eb28 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0e248de2 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0f237bb5 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0f4c8910 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x114e2dd8 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x11d1ce15 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x237562e4 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2412a71d libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x27db7a4f libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3bdf0a15 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4b84af7d libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5304c5f1 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7052e74c libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7f775465 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x94139af6 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x999ce135 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb654dd06 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xce83680a libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd4aaea15 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd509adf4 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xda903c8b libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe4ade2b1 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x009f6b99 iwl_legacy_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x030186b0 iwl_legacy_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0598025c iwl_legacy_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x065a3d31 iwl_legacy_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x0f69ac89 iwl_legacy_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x107861a1 iwl_legacy_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x11aeef9c iwl_legacy_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x13e9e26f iwl_legacy_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1d3db703 iwl_legacy_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1d673a71 iwl_legacy_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x1d7bc70c iwl_legacy_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x201a5c96 iwl_legacy_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x21e930bb iwl_legacy_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x24cb7a2c iwl_legacy_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x274aa1cb iwl_legacy_rx_pm_sleep_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x2d5e61fe iwl_legacy_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3099ff48 iwl_legacy_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x33c16b76 iwl_legacy_pci_resume +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3572e239 iwl_legacy_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x35da155c iwl_legacy_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3696af3e iwl_legacy_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3de65604 iwl_legacy_rx_pm_debug_statistics_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3e653578 iwl_legacy_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x3f909142 iwl_legacy_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4402d540 iwl_legacy_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x45d0bcee iwl_legacy_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x460f910e iwl_legacy_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x461741d6 iwl_legacy_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x46daee50 iwl_legacy_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x46fbb1f0 iwl_legacy_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x495bf603 iwl_legacy_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x499cfe2f iwl_legacy_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x4ba07af4 iwl_legacy_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x50988ccf iwl_legacy_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x54ac187e iwl_legacy_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5755a332 iwl_legacy_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x57f06ffe iwl_legacy_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x5e7d1113 iwl_legacy_rx_reply_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x656f67e0 iwlegacy_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6578b9fc iwl_legacy_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x69723cef iwl_legacy_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x6cc3d208 iwl_legacy_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x79918c13 iwl_legacy_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7a75a842 iwl_legacy_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7b4eb5cc iwl_legacy_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7fee54f0 iwl_legacy_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x7ff0a17b iwl_legacy_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x848727bc iwl_legacy_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x89f7026f iwl_legacy_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8a15a592 iwl_legacy_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8a26ae5e iwl_legacy_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8c393757 iwl_legacy_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x8e660f28 iwl_legacy_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9333642b iwl_legacy_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9ae927de iwl_legacy_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0x9c6f4120 iwl_legacy_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa618c0c2 iwl_legacy_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa6196ae4 iwl_legacy_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xa7ff73a9 iwl_legacy_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xab3a46a9 iwl_legacy_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xabe48768 iwl_legacy_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xae019207 iwlegacy_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xae49a122 iwl_legacy_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xaf3cbe93 iwl_legacy_get_free_ucode_key_index +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb8c4c520 iwl_legacy_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb91ca282 iwl_legacy_rx_spectrum_measure_notif +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xb9328ee3 iwl_legacy_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xbbc54593 iwl_legacy_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xbf228213 iwl_legacy_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc1203645 iwl_legacy_rx_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc661a9f8 iwl_legacy_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc8230955 iwl_legacy_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc8b33682 iwl_legacy_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xc9e95888 iwl_legacy_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xcd884ebb iwl_legacy_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xcff6a289 iwl_legacy_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd1abb047 iwl_legacy_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd33471b5 iwl_legacy_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xd8460803 iwl_legacy_alloc_all +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xdd32ea2b iwl_legacy_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe19ce2f3 iwl_legacy_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xe3c5a4db iwl_legacy_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xeb4dc7f8 iwl_legacy_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xefdcb3a2 iwl_legacy_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf503a882 iwl_legacy_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf67572ba iwl_legacy_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf67d1a86 iwl_legacy_send_statistics_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf8713844 iwl_legacy_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xf9abaf18 iwl_legacy_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfb326431 iwl_legacy_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfd43b848 iwl_legacy_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfdb7b2ac iwl_legacy_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwl-legacy 0xfec47ec4 iwl_legacy_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x60faee03 __tracepoint_iwlwifi_dev_ucode_cont_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x61c5e32e __tracepoint_iwlwifi_dev_tx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x65489f9c __tracepoint_iwlwifi_dev_rx +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0x726d9621 __tracepoint_iwlwifi_dev_iowrite8 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xb6c345da __tracepoint_iwlwifi_dev_ucode_error +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xcc312d73 __tracepoint_iwlwifi_dev_ioread32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd1d62dbf __tracepoint_iwlwifi_dev_iowrite32 +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xd915418d __tracepoint_iwlwifi_dev_ucode_event +EXPORT_SYMBOL drivers/net/wireless/iwlwifi/iwlwifi 0xf7769239 __tracepoint_iwlwifi_dev_ucode_wrap_event +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x03553723 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2c7abb73 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x34a22836 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5a9f218a orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8a83429d orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x96a9e253 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9d0b87b4 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9de08fdb orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xac8f935c orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xae3b54c1 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb0cf7ee3 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb4efa122 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc282e42f alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe7c5f74c __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xee90268b orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf20b36b8 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf8551703 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x008e5b01 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x0194fc20 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1d4c4daf rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2d4e6bf1 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3b89943a rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3f9e76d3 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x444ba1b1 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x49b458da rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x4af6c684 rtl92c_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x4e31c4cd _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x512e3c4d rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5bb7cd41 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x630acd90 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x63cb2c92 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x651a7f67 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6ffef43c rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x70ffb29d rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x736a2c95 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x76e150fb rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7850b37e rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x815d60c4 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x81c7e263 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x934de448 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x9abbebff _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa1ad9fba _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa69f1620 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xba2972b8 _rtl92c_phy_dbm_to_txpwr_Idx +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xba9bccb6 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbcccc200 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbe60179f rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbff81f4d rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc377f361 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc593771f rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xcbc3e7f7 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xcfd9ae64 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd433eacf rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xdd8b041d rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe9b44a24 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xec98f596 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf7e52a4e rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf80b68aa _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xfb1a2afd rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x0a3e7c21 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x0b7589e3 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x1154e2a2 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x1e26c65b rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x1f1d6916 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2242cdae rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x28631952 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x286cab63 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2907c4ed rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2bfb569c efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x37cd7e7e rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x412cf6a1 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x4416064e rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x59432697 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x84fc58c5 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x92a4859b rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xa3337539 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xb2bfe7be rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd13a6e8c rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xd7590e86 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xf7b0c9d0 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xf97b9c4f rtl_pci_disconnect +EXPORT_SYMBOL drivers/parport/parport 0x0090606a parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x0c1c6ca7 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x215f1188 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x2ab91332 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x2b0a53ac parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x2fa73093 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x33342428 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x409fd9b3 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x46b55469 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x4a82c9ca parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5a4290e9 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5fbdf89a parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x648b6cc3 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x68138f00 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x6c11ea1d parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x6d916f2c parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x7b306aab parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x84c0bed2 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x89cb9408 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xa723134a parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xa8dae25f parport_read +EXPORT_SYMBOL drivers/parport/parport 0xb37617ec parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xb4779251 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xba856e0b parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xbe70538d parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xc85a3294 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xca91515a parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xcbb19f4e parport_write +EXPORT_SYMBOL drivers/parport/parport 0xdb9b1941 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xf883574d parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x4c7a4af0 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xcb84d1ba parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0173a8e5 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x07453593 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x491e236d pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x57c86c01 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x74d3d8fa pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x77d512eb __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x785197f0 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x84b8c4e1 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8b4f7106 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9094d62e pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb1d1cffe pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc692a0fc pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd2c390d4 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe2746bc1 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe75e7228 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf0b27fa0 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf566c55d pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfdbfd1b0 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfeb25c8f pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x07689f15 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2a70cdf3 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x381f1b7b pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3c578b5d pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x747900fa pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x760974bb pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7c44b0e4 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x99c357f3 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaa2a8638 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb01b122e pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xca108a5c pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x7b13f859 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa63c0733 pccard_static_ops +EXPORT_SYMBOL drivers/platform/x86/sony-laptop 0x5bb1e117 sony_pic_camera_command +EXPORT_SYMBOL drivers/pps/pps_core 0x3b7e994a pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x593232b0 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xd331db8b pps_event +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x55fb5943 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/53c700 0x91eb5d57 NCR_700_release +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x120f9586 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x14ee97c9 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3d5f00ff fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3e47c5ae fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x60005e2a fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7c6714fd fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa5447514 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xce007704 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd2eb035d fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00271e22 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x022759b1 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x030e1db3 fc_change_queue_type +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x032cff07 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0723480f fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b2b4a65 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11985e9e fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1841717f fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x195c1ce5 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26da240c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27bcc347 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2b34a746 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c5cd1e4 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30b52a35 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x35902826 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39e02cab fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3faeb975 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x424fe101 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4fef9ecf fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x58540a29 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x639d9006 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b68d9b5 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x723d9c0a fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7cb68d9d fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7eae00a3 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ebd10c1 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f607e44 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x860b2bf1 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8759aa7d fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9454ba9c fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7c1f678 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1ec219b fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb330aed0 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb84f69e3 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbac7f82f fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbfb533e1 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc15684c2 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5d58179 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5e343c6 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc3b0598 fc_change_queue_depth +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcde4d00d fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0c4b281 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xddbe6881 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0d4c1bd fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe169d884 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1d81c65 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea186a8c _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea7752a0 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea7885af fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed9c7e3b fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x512c956d mraid_mm_unregister_adp +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x514b6f20 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1c026531 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e904ce3 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x255d06e7 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2664d08a osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x313f3773 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34ec97d2 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x378f54b1 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x44fb9b77 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4638b8cc osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b936a4d osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x51ebb8e7 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x58e78aa4 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6689438d osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x684de33e osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6a7c98d6 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c0af531 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x700646a2 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x747c33a9 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x74eed53e osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x79c03b97 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7b51e49b osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7cfff8f0 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8b0c6ae6 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d02c6b3 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8f77ddcc osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc78194be osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc85975d0 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcb5ccd46 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xce9f87b0 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcec62f93 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xea4a4d55 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf4385ad1 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf7bc979f osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfb978b04 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff2d60bf osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff57d2f8 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/osd 0x05ad5298 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2050d058 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2d29d0b6 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7252c8f1 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd9e2b2e6 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xeb8c2a9b osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x06058bae qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2ceef1c2 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x61acbbaa qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x76fcd24e qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xcf756a87 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd0c25751 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x32fc81a7 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x3a0a5e2d raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xb8743da7 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x19190fb6 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3d89ce9b fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43d9ddd2 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x45c241f5 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5a89feca fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5c56ad5e fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5c81f2b5 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x690c9306 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x743c9a0c fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9d184bb6 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xaf47a191 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbbd750fc fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc1de6b12 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x15d0d6ab sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x19b6213d sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x20b8f9d2 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x248b93bb sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3347d209 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3507b63e sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36fec073 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39931891 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3ac904ac sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68d60659 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ea00779 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x83e14d7a sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9055565b sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9060e75a scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x908e2687 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x97746b5c sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa70e5062 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa7858afd sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4ffd7d1 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbbe47c21 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1db6ac7 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6a1f4a0 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcea77061 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0dee3de sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf2613f8d sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf49524e4 sas_remove_host +EXPORT_SYMBOL drivers/ssb/ssb 0x2505a9d0 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x2ce6fff0 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x320c1207 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x32fc928c ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x49422c4e ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x4e6ee641 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x503d87eb ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x5f795901 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x6f677d51 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8c3daa9c ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x8ea8204b ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x95c35654 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xa2c29c3b ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xa72a57a3 ssb_bus_pcibus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa947817c ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xbdac6b03 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xbfe66771 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc8729194 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xce4e7b26 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xea20c112 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xf7c41bc3 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x095ee088 comedi_driver_register +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x0e816dcb comedi_error +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x100898b6 comedi_buf_write_alloc +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x2e6c260f comedi_buf_write_free +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x2e9db883 comedi_buf_read_n_available +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x4d2912f7 comedi_buf_memcpy_to +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x6376589f comedi_check_chanlist +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x791ddf96 comedi_buf_read_free +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x901fa3ae comedi_buf_put +EXPORT_SYMBOL drivers/staging/comedi/comedi 0x951ad79b comedi_get_subdevice_runflags +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xafb151c4 comedi_driver_unregister +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xb7699d49 comedi_buf_memcpy_from +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xc2f7885d comedi_event +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xd71bfa61 comedi_buf_get +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL drivers/staging/comedi/comedi 0xfe4ada5b comedi_buf_read_alloc +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x0d561af7 subdev_8255_init +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x9d86429f subdev_8255_init_irq +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0x9d98e769 subdev_8255_cleanup +EXPORT_SYMBOL drivers/staging/comedi/drivers/8255 0xf8b4e7a2 subdev_8255_interrupt +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0x41431f64 cfc_read_array_from_buffer +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0x5831b847 cfc_write_array_to_buffer +EXPORT_SYMBOL drivers/staging/comedi/drivers/comedi_fc 0xb979ae12 cfc_handle_events +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x06ed5c59 mite_devices +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x1168e001 mite_get_status +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x11877c36 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x2d1c2e53 mite_dma_disarm +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x315ff7a2 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x46054c73 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x49ea01ee mite_prep_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x55eb0773 mite_buf_change +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x5bef3d2e mite_sync_output_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x5c67f61c mite_setup2 +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x61ddd9c0 mite_sync_input_dma +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x6254b9a5 mite_done +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x66ddc7e7 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x7b16c3f9 mite_setup +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0x92170fb7 mite_unsetup +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xa7bd925b mite_release_channel +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xa7e1c3ce mite_dma_tcr +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xd195172d mite_dma_arm +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xd920a2e7 mite_request_channel_in_range +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xdbd504bc mite_bytes_in_transit +EXPORT_SYMBOL drivers/staging/comedi/drivers/mite 0xfb3ba025 mite_list_devices +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0x003d58e8 subdev_700_init +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0x4b696340 subdev_700_cleanup +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0xa7c92512 subdev_700_interrupt +EXPORT_SYMBOL drivers/staging/comedi/drivers/ni_daq_700 0xe666b442 subdev_700_init_irq +EXPORT_SYMBOL drivers/staging/comedi/drivers/pcm_common 0x1f77e883 comedi_pcm_cmdtest +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x3cf5c9cb comedi_get_n_channels +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x783739d5 comedi_open +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0x7a9826f4 comedi_find_subdevice_by_type +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xb497212b comedi_close +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xc554bff4 comedi_dio_bitfield +EXPORT_SYMBOL drivers/staging/comedi/kcomedilib/kcomedilib 0xd0a9d687 comedi_dio_config +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x4ba53ba0 adt7316_remove +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x51a3977d adt7316_enable +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x596460ae adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xc967fe70 adt7316_disable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x16b1b6d8 iio_free_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x1ee8800a iio_device_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4b6f1ccb iio_buffer_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4b842512 iio_trigger_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x5cb858c6 iio_buffer_init +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x68008e1e iio_trigger_notify_done +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x70beab5f iio_allocate_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x7436cf11 iio_trigger_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x8492465f iio_buffer_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x8c28c545 iio_bus_type +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x909e4127 iio_buffer_write_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x9df2c259 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xa29a110e iio_trigger_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xafa977e4 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb8a12686 iio_buffer_read_bytes_per_datum +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xbca0a481 iio_read_const_attr +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xc1a42f8e iio_buffer_read_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xca07442d iio_buffer_store_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd1382cf0 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xda530984 iio_allocate_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xe673ec7b iio_buffer_show_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf2d5aa2e iio_sw_buffer_preenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf5cf0edd iio_free_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xf744c541 iio_push_event +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xfcc496d0 iio_device_unregister +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x6d944788 kfifo_access_funcs +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xb686c01c iio_kfifo_allocate +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xc5938aab iio_kfifo_free +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x849fb87a ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb6707693 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x0e49bf12 ring_sw_access_funcs +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x1dfb4ede iio_sw_rb_allocate +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x23a10b8c iio_sw_rb_free +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xa9141764 cxd2099_attach +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x4e51b162 go7007_boot_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x52440dc7 go7007_alloc +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x679d3345 go7007_snd_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0x75665da0 go7007_remove +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xb9e8ed2a go7007_register_encoder +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xbc907aaa go7007_snd_init +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xd1a97ad6 go7007_read_interrupt +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xf863f0c4 go7007_parse_video_stream +EXPORT_SYMBOL drivers/staging/media/go7007/go7007 0xf93b4e0d go7007_read_addr +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x07d4f4d6 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0decfc09 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f2564b1 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23f58c0a ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d6b26a0 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f9262c7 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3185770b ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x360802da ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3981d477 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3af0813d ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3cbb989d ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41c32d6b ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d6865c1 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x505bd57a ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x523d874d ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54ae36f5 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x596fed6d IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5d6951f9 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x627801c0 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63738f02 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6545e7dd ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x699e4474 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6c32c8b5 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71897a71 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x78ff9320 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x795a1441 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a80e519 ieee80211_send_probe_requests_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8a91160a ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e89c212 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x927e51d3 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92edd6d8 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94abb0e3 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9681ccc8 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97b5802a Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x98287aa3 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9836fb43 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa039b837 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6b77272 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa6c44a45 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7e64ad9 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaaf0a7e1 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xac93bcef ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf6dce64 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0936579 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbcf7973f ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbee347ee ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc145b769 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd0ee61f ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd4d1e9e ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd502b992 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd5526c0f ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd89374aa ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee366fe4 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef3c4ef6 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf0da2cbc ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf354065f ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/vme/vme 0x00d7e722 vme_lm_count +EXPORT_SYMBOL drivers/staging/vme/vme 0x072f901c vme_master_rmw +EXPORT_SYMBOL drivers/staging/vme/vme 0x08954c08 vme_slot_get +EXPORT_SYMBOL drivers/staging/vme/vme 0x0e10859d vme_lm_get +EXPORT_SYMBOL drivers/staging/vme/vme 0x0ec5babe vme_dma_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x190b1ac4 vme_bus_type +EXPORT_SYMBOL drivers/staging/vme/vme 0x1c3e507b vme_irq_request +EXPORT_SYMBOL drivers/staging/vme/vme 0x3f68d4cf vme_lm_set +EXPORT_SYMBOL drivers/staging/vme/vme 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL drivers/staging/vme/vme 0x48b99a13 vme_lm_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x4aaa21a7 vme_irq_generate +EXPORT_SYMBOL drivers/staging/vme/vme 0x585739f6 vme_new_dma_list +EXPORT_SYMBOL drivers/staging/vme/vme 0x6666140f vme_dma_pci_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0x71b2e866 vme_unregister_driver +EXPORT_SYMBOL drivers/staging/vme/vme 0x75c7d93e vme_dma_list_exec +EXPORT_SYMBOL drivers/staging/vme/vme 0x76bab4d4 vme_master_set +EXPORT_SYMBOL drivers/staging/vme/vme 0x7797a741 vme_dma_vme_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0x7cf35220 vme_master_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x7fde2edb vme_master_read +EXPORT_SYMBOL drivers/staging/vme/vme 0x82431623 vme_register_driver +EXPORT_SYMBOL drivers/staging/vme/vme 0x9037c61c vme_irq_handler +EXPORT_SYMBOL drivers/staging/vme/vme 0x90695906 vme_free_consistent +EXPORT_SYMBOL drivers/staging/vme/vme 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL drivers/staging/vme/vme 0x944f78a0 vme_dma_list_free +EXPORT_SYMBOL drivers/staging/vme/vme 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL drivers/staging/vme/vme 0xa1575637 vme_register_bridge +EXPORT_SYMBOL drivers/staging/vme/vme 0xa1f57dc5 vme_dma_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xaf3efe45 vme_unregister_bridge +EXPORT_SYMBOL drivers/staging/vme/vme 0xc8352002 vme_dma_pattern_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0xcc5b0af0 vme_slave_set +EXPORT_SYMBOL drivers/staging/vme/vme 0xd797b9a5 vme_master_write +EXPORT_SYMBOL drivers/staging/vme/vme 0xdff905e5 vme_slave_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xe003aeec vme_irq_free +EXPORT_SYMBOL drivers/staging/vme/vme 0xe60cbb2f vme_master_get +EXPORT_SYMBOL drivers/staging/vme/vme 0xe61b1e0b vme_slave_get +EXPORT_SYMBOL drivers/staging/vme/vme 0xe693a6ce vme_get_size +EXPORT_SYMBOL drivers/staging/vme/vme 0xeccbeafc vme_dma_free_attribute +EXPORT_SYMBOL drivers/staging/vme/vme 0xee6dd95b vme_slave_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xf16b7972 vme_dma_list_add +EXPORT_SYMBOL drivers/staging/vme/vme 0xf37ea464 vme_lm_request +EXPORT_SYMBOL drivers/staging/vme/vme 0xf876ce53 vme_master_request +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x03afd844 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x040ede68 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a638643 transport_init_queue_obj +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c8395fc fc_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x21134dee core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x24960eb1 target_get_task_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x27d24445 sas_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x29e20f0c core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ff81f83 transport_generic_allocate_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x303bdf16 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f8ae800 transport_do_task_sg_chain +EXPORT_SYMBOL drivers/target/target_core_mod 0x558e4926 fc_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x56c61c91 transport_generic_process_write +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c2bac58 transport_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f2569ba sas_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x6420a2d2 transport_subsystem_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x654cf690 target_fabric_configfs_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x65b26c78 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x714f0d6e transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7474bb36 fc_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x791dfc3f transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dcfab3b fc_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x83e34ef6 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x88cd1932 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x890e779d transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ec2ff5a core_tpg_clear_object_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x981e158b target_fabric_configfs_init +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b06549c transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9bdfd6ea iscsi_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e3f7b88 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e8bfba2 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2d23d32 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6f162da transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa70f43c4 transport_generic_handle_cdb_map +EXPORT_SYMBOL drivers/target/target_core_mod 0xb490c66b target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5b0d013 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb60f1fd8 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7243b42 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xbaa614f8 core_tpg_add_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc58f8ca transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xbeaefa70 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1bfa540 sas_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4db051a iscsi_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5ba12e6 transport_complete_task +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc0b4ad3 iscsi_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc31dfd9 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc585936 transport_generic_handle_data +EXPORT_SYMBOL drivers/target/target_core_mod 0xccbe054b target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf9cebe9 target_fabric_configfs_free +EXPORT_SYMBOL drivers/target/target_core_mod 0xd09c82ad core_tpg_del_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5c594ed core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd69b38bb target_splice_sess_cmd_list +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7478683 transport_subsystem_release +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8a533b5 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xda4bb360 sas_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0092ac5 target_fabric_configfs_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xe30eed6b iscsi_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xe665590c transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe712d21e transport_add_device_to_core_hba +EXPORT_SYMBOL drivers/target/target_core_mod 0xec8fd1f1 transport_complete_sync_cache +EXPORT_SYMBOL drivers/target/target_core_mod 0xedc6774f transport_generic_map_mem_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/telephony/ixj 0x8f1f10e4 ixj_pcmcia_probe +EXPORT_SYMBOL drivers/telephony/phonedev 0x85bc040e phone_register_device +EXPORT_SYMBOL drivers/telephony/phonedev 0xac9cc9ce phone_unregister_device +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x536e8fe6 sl811h_driver +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xa64a4cea usb_nop_xceiv_unregister +EXPORT_SYMBOL drivers/usb/otg/nop-usb-xceiv 0xd0e43207 usb_nop_xceiv_register +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0f23dd37 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x227441e5 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x243e87be usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2f75d82e usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x408ec27d usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4dc3fb86 usb_wwan_set_termios +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4fd581ab usb_wwan_disconnect +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x59fc6156 usb_wwan_startup +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x757c2fab usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x79b7a7c0 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbedf76f2 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd0de3a23 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdb6fc3e4 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf303af65 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf916c277 usb_wwan_release +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x3df0b586 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6b80832b usb_serial_suspend +EXPORT_SYMBOL drivers/video/backlight/generic_bl 0x366d19ef genericbl_limit_intensity +EXPORT_SYMBOL drivers/video/backlight/lcd 0x026b4b9b lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x7a955e95 lcd_device_unregister +EXPORT_SYMBOL drivers/video/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/cyber2000fb 0x18822624 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/cyber2000fb 0x534b6f18 cyber2000fb_disable_extregs +EXPORT_SYMBOL drivers/video/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/display/display 0x78ead886 display_device_unregister +EXPORT_SYMBOL drivers/video/display/display 0x816ab89e display_device_register +EXPORT_SYMBOL drivers/video/macmodes 0x08ed0b62 mac_vmode_to_var +EXPORT_SYMBOL drivers/video/macmodes 0x8eddeb91 mac_find_mode +EXPORT_SYMBOL drivers/video/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x350a99b5 g450_mnp2f +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x95bfdffd matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/matrox/g450_pll 0x9f93ce71 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x20e68eb3 DAC1064_global_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0x2b124e89 matrox_G100 +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xaa30ab96 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_DAC1064 0xe46a115f matrox_mystique +EXPORT_SYMBOL drivers/video/matrox/matroxfb_Ti3026 0x044fab42 matrox_millennium +EXPORT_SYMBOL drivers/video/matrox/matroxfb_accel 0xe5ffb42f matrox_cfbX_init +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x01d5c090 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x050764f6 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0x77dd33c8 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/matrox/matroxfb_base 0xf4f888ae matroxfb_register_driver +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0x400ad7f9 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/matrox/matroxfb_g450 0xf5fbfb43 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x0491aaa9 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x14ada4a5 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xabd8e427 matroxfb_var2my +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xb8db8272 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xcf16bb51 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/matrox/matroxfb_misc 0xea183b1a matroxfb_read_pins +EXPORT_SYMBOL drivers/video/mb862xx/mb862xxfb 0x3e0c977b mb862xxfb_init_accel +EXPORT_SYMBOL drivers/video/output 0xb6a0590f video_output_register +EXPORT_SYMBOL drivers/video/output 0xe57ae791 video_output_unregister +EXPORT_SYMBOL drivers/video/sis/sisfb 0x3037658e sis_malloc +EXPORT_SYMBOL drivers/video/sis/sisfb 0x454a3cf0 sis_free +EXPORT_SYMBOL drivers/video/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/svgalib 0x1b95c56a svga_check_timings +EXPORT_SYMBOL drivers/video/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/svgalib 0x24ecb783 svga_tilecursor +EXPORT_SYMBOL drivers/video/svgalib 0x2dd51e01 svga_settile +EXPORT_SYMBOL drivers/video/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/svgalib 0x549b03a1 svga_set_timings +EXPORT_SYMBOL drivers/video/svgalib 0x59a90e90 svga_get_caps +EXPORT_SYMBOL drivers/video/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/svgalib 0x91de7b25 svga_tilecopy +EXPORT_SYMBOL drivers/video/svgalib 0x92d304b2 svga_get_tilemax +EXPORT_SYMBOL drivers/video/svgalib 0xb3aae661 svga_tilefill +EXPORT_SYMBOL drivers/video/svgalib 0xc5c90dca svga_tileblit +EXPORT_SYMBOL drivers/video/svgalib 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/svgalib 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/svgalib 0xec83c473 svga_match_format +EXPORT_SYMBOL drivers/video/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/syscopyarea 0x1f36ef64 sys_copyarea +EXPORT_SYMBOL drivers/video/sysfillrect 0x48320068 sys_fillrect +EXPORT_SYMBOL drivers/video/sysimgblt 0x175492af sys_imageblit +EXPORT_SYMBOL drivers/video/vgastate 0x686de290 restore_vga +EXPORT_SYMBOL drivers/video/vgastate 0xe7a2620e save_vga +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x0c4b4d44 w1_bq27000_read +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x3a83ba96 w1_bq27000_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x48d4e191 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xaf6ae20f w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xd5765c7d w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe8147d4c w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x1c44384f w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb15ae9fb w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xdae6187f w1_ds2780_io_nolock +EXPORT_SYMBOL drivers/w1/wire 0x2db041ef w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x5e0591c9 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x76080274 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xf9ac037d w1_remove_master_device +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x04e133fc iTCO_vendor_check_noreboot_on +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0x672c9d44 iTCO_vendor_pre_keepalive +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa78bd894 iTCO_vendor_pre_set_heartbeat +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xa8d6daac iTCO_vendor_pre_start +EXPORT_SYMBOL drivers/watchdog/iTCO_vendor_support 0xd0efe320 iTCO_vendor_pre_stop +EXPORT_SYMBOL fs/configfs/configfs 0x080b70c3 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x16c7f88d configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x2aecead4 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x32546054 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x354100c3 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x672411d5 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x70410f6d config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x7f7de5fa configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x93c0c7bd config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0xac8a910d config_item_init +EXPORT_SYMBOL fs/configfs/configfs 0xafa43599 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xaff44656 config_item_init_type_name +EXPORT_SYMBOL fs/exofs/libore 0x011500ad ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x012a06c5 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x3a7d8bb8 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x47eab3f6 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x5fabcae5 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x643c9eb0 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x9a27732a ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xaaa2a9b4 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xdd147f47 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xe3ec95ae ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xf050b162 ore_put_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x07d9b576 fscache_wait_bit_interruptible +EXPORT_SYMBOL fs/fscache/fscache 0x0dd34499 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x10a0b4ca __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x255daa67 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x2ea14e05 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x3d983600 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x3fc23318 fscache_wait_bit +EXPORT_SYMBOL fs/fscache/fscache 0x45add4d0 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x47074186 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x486f5210 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x4d70b43a __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x56c14db5 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x599b03e5 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x66489b4f __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x675dd1c1 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x73abeb42 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x86f8894f fscache_object_states +EXPORT_SYMBOL fs/fscache/fscache 0x8e893056 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x9533a36e fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x9899299d __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x9a0789f8 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9d702e3c fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xabcc49cb fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xabd679a3 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xaec320d5 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc80c2371 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xd697d453 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xd81157d5 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xde4fc950 fscache_object_work_func +EXPORT_SYMBOL fs/fscache/fscache 0xe9002c32 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfb4d077d __fscache_register_netfs +EXPORT_SYMBOL fs/nfsd/nfsd 0x0c8d6829 nfs4_acl_nfsv4_to_posix +EXPORT_SYMBOL fs/nfsd/nfsd 0x2095976a nfs4_acl_new +EXPORT_SYMBOL fs/nfsd/nfsd 0x35e33c1e nfs4_acl_write_who +EXPORT_SYMBOL fs/nfsd/nfsd 0x5a157ae4 nfs4_acl_get_whotype +EXPORT_SYMBOL fs/nfsd/nfsd 0xcbb738be nfs4_acl_posix_to_nfsv4 +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x53faaad6 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x57f208af qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7605fe74 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xe5854a48 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xee20aa56 qtree_read_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0xa7587646 crc7 +EXPORT_SYMBOL lib/crc7 0xd80c3603 crc7_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0b32de39 lc_del +EXPORT_SYMBOL lib/lru_cache 0x210f1ee2 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x2646306c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x2b2226bb lc_get +EXPORT_SYMBOL lib/lru_cache 0x529f72c2 lc_destroy +EXPORT_SYMBOL lib/lru_cache 0x5e941862 lc_reset +EXPORT_SYMBOL lib/lru_cache 0x6b3233cc lc_set +EXPORT_SYMBOL lib/lru_cache 0xb2cd4f4d lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xbbc51b84 lc_create +EXPORT_SYMBOL lib/lru_cache 0xd146d9a5 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0xd3bb6860 lc_index_of +EXPORT_SYMBOL lib/lru_cache 0xdf43d805 lc_changed +EXPORT_SYMBOL lib/lru_cache 0xe5aa47bc lc_put +EXPORT_SYMBOL lib/lru_cache 0xf933aa17 lc_find +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x315c65fd zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x48034724 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xaf64ad0d zlib_deflate +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf741c793 zlib_deflateEnd +EXPORT_SYMBOL net/802/p8023 0xbdf551f8 make_8023_client +EXPORT_SYMBOL net/802/p8023 0xf4ad3e65 destroy_8023_client +EXPORT_SYMBOL net/9p/9pnet 0x0b22b36c p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x0b54878d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x122cd350 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x17e72163 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x20383386 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x247c33bf p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x26f1a499 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x2818bc31 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x28a095a4 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2c024f44 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x3150101d p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x31efebe3 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x40d3e4df v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x4ee3c782 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x600c951b p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x676335cf p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x721c64db p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x795cca35 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x80ab0b5d p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x81e6ba08 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8227ae7a p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x851d9f4c p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x8b768c19 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x8cd2b0c7 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x977a0030 p9_nr_pages +EXPORT_SYMBOL net/9p/9pnet 0x9c964743 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0xa11209f6 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xa5aa3586 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xb3b1c84e p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb4a67b30 p9_payload_gup +EXPORT_SYMBOL net/9p/9pnet 0xbc8e6698 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xc050937f p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc708de39 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xcc1971e1 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xcca844d6 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd841caf8 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd8eda45e p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xda3ff577 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xda84cce3 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xecba3557 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xef533e4b p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf1fef8b7 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf793e3b8 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd384c54 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x01edde38 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xa6ba4d36 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xf0b53cf2 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xf17537dc alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x06deee94 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x11686c82 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x42573f11 atm_charge +EXPORT_SYMBOL net/atm/atm 0x5ae5af5e atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x681a3bc3 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x6d28cb18 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x765c46a8 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x81f25bb1 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x93136f41 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb04fb740 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xc19e8f84 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xd7590764 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xd8649aa5 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xfc23e6b6 atm_dev_signal_change +EXPORT_SYMBOL net/ax25/ax25 0x026c1368 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x080be947 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x114f2f58 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3fe4b855 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x49ab5314 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x6a4274c4 ax25_hard_header +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9ccedb5d ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xbfd8790c ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd39b72dd ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xeb3b1740 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xf464510c ax25_rebuild_header +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0362d14b hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09efa05e hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c1d53bf hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1102f750 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14a6ebff hci_le_conn_update +EXPORT_SYMBOL net/bluetooth/bluetooth 0x178a9810 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b3c6361 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21435fa1 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x253a10f8 hci_unregister_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2684aed2 hci_conn_put_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x28d5430d hci_find_link_key_type +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a04a1bb hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2bcf3b33 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2cab31c7 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e543c57 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fa82e5d hci_conn_check_link_mode +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b599289 bt_printk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x512a0572 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x54ae2c26 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x574fb58e bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x587a3e07 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5ba1c7dd bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f9b002f hci_le_start_enc +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60ed7523 hci_send_acl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x63f60a01 hci_recv_stream_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7261cdaf hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x92842513 hci_connect +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa016ab6f hci_recv_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa1ff0ec1 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa9b0b746 hci_conn_change_link_key +EXPORT_SYMBOL net/bluetooth/bluetooth 0xab7e2369 hci_send_sco +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb7130b1f bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2066af0 batostr +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc485aae4 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xca0f6a71 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb014139 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce163a75 hci_register_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcff76321 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd0d16e61 hci_find_ltk +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed067a1d hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf19294db bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf4900d7b hci_le_ltk_reply +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfd86dce2 hci_conn_hold_device +EXPORT_SYMBOL net/bridge/bridge 0x1ef246c4 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7a860afb ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb8dd69f9 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf1e46c97 ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x229502d9 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x2f849ffc caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x35b49017 caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x504da5e8 cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x5807d88d caif_free_client +EXPORT_SYMBOL net/caif/caif 0x63e9812a cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x7de1b6c0 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xf972b1a8 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x43819269 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x71accacf can_send +EXPORT_SYMBOL net/can/can 0x99497d5d can_proto_register +EXPORT_SYMBOL net/can/can 0xc79909d9 can_ioctl +EXPORT_SYMBOL net/can/can 0xd3cc5b40 can_rx_register +EXPORT_SYMBOL net/can/can 0xdb12e5f0 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x07d1bf72 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0e3d0216 ceph_calc_object_layout +EXPORT_SYMBOL net/ceph/libceph 0x0f8c65f3 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x0f9cd412 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x105f682f ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x10751dc4 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x10940306 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x197effcb ceph_osdc_release_request +EXPORT_SYMBOL net/ceph/libceph 0x1d77d157 ceph_messenger_destroy +EXPORT_SYMBOL net/ceph/libceph 0x1ef9d5fc ceph_monc_create_snapid +EXPORT_SYMBOL net/ceph/libceph 0x210e2d96 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x2504658c ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x2ec63a58 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x3158173e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x3199565b ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x3274508e ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x33f2d647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x350f6449 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3b93ade0 ceph_messenger_create +EXPORT_SYMBOL net/ceph/libceph 0x3cd64f95 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x3dcb0b8e ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3e1f462a ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x41b024b0 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x43c8d341 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x43e0a968 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x4c64923d ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x4d38f6ca ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x5040a3cf ceph_osdc_wait_event +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5f5c5dd9 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x5fe4b2fa ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x608d5ce4 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x6332f31b ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x64c8eeca ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x652c8f48 ceph_osdc_unregister_linger_request +EXPORT_SYMBOL net/ceph/libceph 0x6d2d06a1 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x6ed41be2 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x74daee66 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x77692acb ceph_msg_last_put +EXPORT_SYMBOL net/ceph/libceph 0x77e5e457 ceph_calc_raw_layout +EXPORT_SYMBOL net/ceph/libceph 0x868dcceb ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x86c8b766 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x87a06ede ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9187fb6e ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x93f2834a ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa40bd703 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb0f10299 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xb1a6c9ff ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xb40b6326 ceph_osdc_init +EXPORT_SYMBOL net/ceph/libceph 0xb5411b64 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb5537cda ceph_osdc_stop +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xba95d3cb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcd7268d2 ceph_copy_page_vector_to_user +EXPORT_SYMBOL net/ceph/libceph 0xd01b645a ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd36a5032 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xd4d04f85 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd55d054e ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd83968da ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe09c9108 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xe1373a4e ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xeee82d6a ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xf4d85ba0 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xf693c81d __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xf99f0d75 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xff210f20 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ieee802154/ieee802154 0x43dd2918 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4e5e3b85 ieee802154_nl_disassoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x625a7825 ieee802154_nl_scan_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8b30f0d9 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x99098ac9 ieee802154_nl_assoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xaee41b2b ieee802154_nl_beacon_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb7b2a660 ieee802154_nl_assoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xc08553c5 ieee802154_nl_start_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdb224c67 ieee802154_nl_disassoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdd453396 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe5fcaf7b wpan_phy_alloc +EXPORT_SYMBOL net/ieee802154/ieee802154 0xef154403 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xff7d2a5f wpan_phy_register +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6bc01853 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x93ab744b arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xedf21289 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0b5c4b69 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x5becdaa6 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd3ce7ab9 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x28e4d8c5 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x5ad660b6 nf_nat_used_tuple +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x8f760caa nf_nat_follow_master +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xac60091d nf_nat_protocol_unregister +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xb06ac3fe nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xc1949f36 nf_nat_protocol_register +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xf8c6ab6a nf_nat_setup_info +EXPORT_SYMBOL net/ipv4/tunnel4 0x47d198b3 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x8b2242c8 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x45f04eab ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5c37e424 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8c6739ad ipv6_find_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8bddf33 ip6t_ext_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xeb79e8fb ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x073941c1 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xc37f9628 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3f9b0ff1 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xb2ccd782 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x028206fb ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x07f2d88a ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2d088c2c ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x965e0812 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb7b5b546 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe0959884 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe2052e64 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfe14ea1d ircomm_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x00898238 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x01dbeb0e irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x079954af irlap_close +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0bab6037 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x1df8552d irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x2036ad06 irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x23a2eee7 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x2770d6fe irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x3366cf1f irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x359de411 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x36c57f0d irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x37605e3f async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x38a20e5b irda_debug +EXPORT_SYMBOL net/irda/irda 0x3b0a2ab6 irias_find_object +EXPORT_SYMBOL net/irda/irda 0x3b9bdefe irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x428321fa hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x48d17824 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x4dbd7efb irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x5055cc31 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x62acf28c irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x63121210 iriap_close +EXPORT_SYMBOL net/irda/irda 0x648c7478 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x74c75573 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7acb9ae4 iriap_open +EXPORT_SYMBOL net/irda/irda 0x7d54adaf irias_new_object +EXPORT_SYMBOL net/irda/irda 0x7ff509a2 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0x855c77a9 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x858d90c1 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x86c1f2b6 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x893001b0 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x8cd99be0 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x95a7a9a7 irlap_open +EXPORT_SYMBOL net/irda/irda 0x963029a0 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x993ad14b irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9e326eb3 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa370c681 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc0bee29c hashbin_new +EXPORT_SYMBOL net/irda/irda 0xc4107220 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xc9e70146 proc_irda +EXPORT_SYMBOL net/irda/irda 0xcceccb85 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xced9e654 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xd7683bd7 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe767e22c irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xeb2bfeb8 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf81eef77 irda_notify_init +EXPORT_SYMBOL net/l2tp/l2tp_core 0xab2d90ea l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x536a0090 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x620de11e lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x789a5559 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x96c07c1a lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x9b5fd58a lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x9f9fb487 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xb1dab96d lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xbd965cc7 lapb_connect_request +EXPORT_SYMBOL net/mac80211/mac80211 0x089c3796 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x15359cb0 ieee80211_napi_schedule +EXPORT_SYMBOL net/mac80211/mac80211 0x15cdcfac ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x16382647 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x17217a33 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x17261942 ieee80211_alloc_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1c9992ab ieee80211_get_operstate +EXPORT_SYMBOL net/mac80211/mac80211 0x1f73aadd ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x20c42e17 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x26e23468 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x27fd8765 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x2839aec2 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x2eab6685 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2ec66c42 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x30ba2455 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x35a58353 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3c4bdf89 ieee80211_enable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x43d80a8c ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x46a274fe ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x4cf689a3 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4fb39646 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5613d701 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x5c28cca5 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x5d64ede4 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5d93a3f9 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x63814d1c __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x63caa554 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x63f90848 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6503ef71 ieee80211_sta_eosp_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x67f3ca6c ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x6a131db0 ieee80211_disable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x6bc7d002 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x6c50c1e5 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x6e7b9bb6 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x75379bef ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x7591f031 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x778a2c88 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x786c0cac ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x82297f2f ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x8273190a ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x867d6533 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x8aa991de ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x93151804 ieee80211_rx +EXPORT_SYMBOL net/mac80211/mac80211 0x9b4a59b3 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xa4241970 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xa51e2940 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa7a9764d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xaa157485 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xaa2ab377 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xbb618557 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xc06602ac ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xc7e9782e ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xc9aacbd0 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xca3396e9 ieee80211_napi_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xd5271e4f ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xddb47d52 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xdddc2645 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xdfaaa44e ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe09462b9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe38acd3e ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xe7a0eb02 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xe94578e0 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xeba14d72 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xebc20f57 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xeea08278 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf1cbf565 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf5593a0e ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xfb3e00e4 ieee80211_send_bar +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0aa2b88d ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x18c459dd ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1a123270 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1ad871eb ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x413540a3 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x586f0e29 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x698988f2 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa1dbc2d8 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbc862a0f unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcd68876d ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd23b3458 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xda1b72b6 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe17a5376 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe28f1909 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfff8dc53 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x0b7bec43 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2622c25e nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x53c1de4b __nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack_proto_gre 0x5b4edf74 nf_ct_gre_keymap_flush +EXPORT_SYMBOL net/netfilter/x_tables 0x08c473b7 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x119ae819 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1e021939 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x668d728a xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x8ea7215b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xb28f5ef1 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xbc98d0df xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd5b01950 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe44fb937 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xedf0876e xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xf4e561f1 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xfd4430c3 xt_find_match +EXPORT_SYMBOL net/nfc/nci/nci 0x6f41b504 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x8659558d nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x94fd9763 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xd9be5ea4 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe56d60db nci_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x1a308ccc nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x2323d173 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x2cf1913e nfc_printk +EXPORT_SYMBOL net/nfc/nfc 0x43675b14 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x5db263a1 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xa23b5013 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xb6ab932e nfc_alloc_skb +EXPORT_SYMBOL net/nfc/nfc 0xbfcc15ba nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xcf9a1899 nfc_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x409b8087 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x5a843bfa phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x65b2ea01 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xa797c0e2 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xaebf0e44 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xd82ac839 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xe34fc348 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xfdfc9be3 pn_sock_unhash +EXPORT_SYMBOL net/rds/rds 0x5031b8c5 rds_str_array +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1117c001 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x14dc0340 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2d3465b3 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3392cd45 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x353d84cb rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4b9529f9 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x54760d0c rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5d3b40fb rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9a2110e5 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb10b73e9 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc6e92225 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcb840372 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfa61f99a rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xff442f8a key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xff81679e rxrpc_kernel_reject_call +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb3744590 svc_pool_stats_open +EXPORT_SYMBOL net/wanrouter/wanrouter 0x0ebe03d1 unregister_wan_device +EXPORT_SYMBOL net/wanrouter/wanrouter 0xd5b6d27c register_wan_device +EXPORT_SYMBOL net/wimax/wimax 0x1bf1e70c wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x58dbb62f wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x026438e0 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x077f8b30 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x080b9d4c __cfg80211_auth_canceled +EXPORT_SYMBOL net/wireless/cfg80211 0x08416f75 cfg80211_send_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x0993671e __cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x10411a86 ieee802_11_parse_elems_crc +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19ecc7ec ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x1a8048dd ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x1be4eb5a wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x204d1aa7 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x2c6b6924 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x2edf7d69 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x32968c14 cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x33dbebba ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x38628cd5 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x431cb40f cfg80211_get_mesh +EXPORT_SYMBOL net/wireless/cfg80211 0x4378d47d cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x4709b3bd cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5105f1fc wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x54620254 cfg80211_testmode_event +EXPORT_SYMBOL net/wireless/cfg80211 0x56adad28 wiphy_new +EXPORT_SYMBOL net/wireless/cfg80211 0x56b320f7 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x5a7b7208 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5d18c477 cfg80211_send_rx_auth +EXPORT_SYMBOL net/wireless/cfg80211 0x5e17703d cfg80211_del_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x7513e94e ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x75e2538b cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x76c8b2a9 cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x79603bf9 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x7c1ffb5b cfg80211_send_unprot_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0x7d7708b5 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x807d155e cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x84a6918c cfg80211_testmode_reply +EXPORT_SYMBOL net/wireless/cfg80211 0x8bcdf9ff cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x8c65f263 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x8ddd3aa1 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x9030b4fa cfg80211_send_rx_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x905ec583 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x93655657 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9ce6ac18 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xabb7c43d freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xb02d3b8d regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xbbff5ad6 __cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0xbe5078f1 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xc16da7b3 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xc2372456 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xc3d48c55 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xc4817c93 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xcf484b75 cfg80211_send_unprot_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0xd0688bf3 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xd6d090ce cfg80211_inform_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd7779230 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdf649a10 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xdfb9f67c cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xdfe0ca55 cfg80211_testmode_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe67dfbea cfg80211_testmode_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xed1089db cfg80211_inform_bss_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xfc15e302 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xfcab81c1 cfg80211_send_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xfe241eb1 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x0e903c01 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2d0f99e5 print_ssid +EXPORT_SYMBOL net/wireless/lib80211 0x63995d71 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x8a1a23f1 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x9b1c1b6c lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xdf16e187 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xf68ecd2b lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x16f2be2f ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x1ec1ac3f snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1cadef6d snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3061c52d snd_use_lock_sync_helper +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x4cc7ee26 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xaeabbaf2 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe58e947a snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x112744c2 snd_seq_device_register_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x35d468dd snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3a57f235 snd_seq_autoload_unlock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xb90668b2 snd_seq_autoload_lock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xc622fb29 snd_seq_device_unregister_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x6ea09972 snd_midi_channel_alloc_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0x833a3e07 snd_midi_channel_set_clear +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xb9948d2c snd_midi_channel_free_set +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-emul 0xf0a1fdb3 snd_midi_process_event +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x2b51b084 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x350963b4 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7f62d029 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x83914b9a snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x92ee6bb0 snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x9e7d3f0f snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xbc141dfc snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xf2bf1549 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0x78664e7e snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x025c2b5c snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x0c8c00a7 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x0f3c4f5a snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x104178cf snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x18e1683f snd_dma_program +EXPORT_SYMBOL sound/core/snd 0x191e88cf snd_dma_pointer +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x19a78c26 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x19f93dea snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x1ab41828 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x20dfabbc snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x246873ed snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x27b6d13c snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2b20a978 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x30fc5820 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3fc5e04d snd_card_register +EXPORT_SYMBOL sound/core/snd 0x44a26709 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x499346eb snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b015768 snd_iprintf +EXPORT_SYMBOL sound/core/snd 0x5177ee51 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x5760584f snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x5b61a1dc _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x5fb724cc snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x697bf23d snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7351d13d snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x7cd93b1d snd_device_free +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x83c5362f snd_card_create +EXPORT_SYMBOL sound/core/snd 0x867a3092 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x8a7aaff9 snd_add_device_sysfs_file +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x92508cae snd_cards +EXPORT_SYMBOL sound/core/snd 0x942d53ad snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x95d530dd snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x97ddd5d3 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x9b81af30 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa301fe91 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xa354bd7f snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xaeb9579f snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xb2524336 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xba9c1687 snd_card_proc_new +EXPORT_SYMBOL sound/core/snd 0xbe31523f snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xc6d72d66 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd3d310b7 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xd7acddb2 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xd998b6d5 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xde2ce4d9 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xe1588855 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xeeeafe39 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xf12ec967 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xf74a0596 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xf7e86ea6 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xfac1b622 snd_register_device_for_dev +EXPORT_SYMBOL sound/core/snd-hwdep 0x9ca5f846 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-page-alloc 0x1f89e1ba snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x34496d1f snd_dma_reserve_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x63768fb6 snd_dma_get_reserved_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0x6ec10a0c snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x9346b2c8 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-page-alloc 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x03a1d4ec snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x07f64e2c snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x13a99f76 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x20baf715 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x25205600 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x29d17a33 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x2dd5f4d3 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x2e79b644 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3b5e33be snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3c89c7cc snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x414b800a snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x46ab45a3 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x46e6832d snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x49980418 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x4a075f61 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x57e636d7 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x582b70fa snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x5df62706 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x686e3b09 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7f3e744f snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x86ac30a5 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x881a95d7 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x8a49f62d snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x911ca9f1 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x97211580 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x97f2f1c2 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa6ad9eb9 snd_pcm_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xa7a2d296 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xa8569e41 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa9adc229 snd_pcm_link_rwlock +EXPORT_SYMBOL sound/core/snd-pcm 0xad985599 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb197940b snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xb9bd978a snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xba103fb7 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xbb83658d snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xbed973a4 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xc1cbad66 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b9b8b8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd75bfa90 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xd997b580 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xdb244c8c snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe7782a1b snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xecd1102b snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xf3797152 snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xf432d469 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xf6676912 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-rawmidi 0x06389f2b snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x07e9e14c snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1f9270c7 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x38b65dc5 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4c41e7af snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7dd28dd2 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x879517d2 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaeff7275 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb2079dad snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbfaf29c7 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc3222124 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc69f3229 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xce970315 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd63e4b8d snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe0441856 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf2c8c6d3 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf5f8ae41 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-timer 0x024990c2 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x074709fc snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x0c8124dc snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x3d5d19b4 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x5a5153b1 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x8a46277b snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x8b63fee7 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xa42cc667 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xc974ff61 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xd15d2078 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xd6145f57 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xe7be3854 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xf335a144 snd_timer_notify +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xedefdac1 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0b0c239f snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1c04899d snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5e799130 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x60cccbe4 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7481e80b snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9e398db7 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa3255d1a snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdd4bb62a snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xe01fc1d0 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x0185d020 snd_opl4_read_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x333ceceb snd_opl4_read +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x4c11d658 snd_opl4_write_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x77fdad77 snd_opl4_create +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xdc8949f7 snd_opl4_write +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x05ccfd4d snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x19153952 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x198faa2c snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x28f55ac2 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2d9e36db snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x45222034 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x627c09db snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf12b759d snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xff2cbb94 snd_vx_resume +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x08981e15 amdtp_out_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1625d939 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19968d3e amdtp_out_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1a6e8adc snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2d67d4f1 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2fcfe589 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x57dc7810 amdtp_out_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5f8eb369 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6018a3e7 amdtp_out_stream_set_pcm_format +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6689b4d2 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81e2e8a3 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x93fd593f fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x95085808 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9f046824 amdtp_out_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb508a590 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb64680c3 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba581b25 amdtp_out_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf1efe83 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc441edc2 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd20ad98a fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdc73958f amdtp_out_stream_set_rate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd74bc7a rcode_string +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xee6c67f3 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf28be54d amdtp_out_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf9832f88 amdtp_out_stream_update +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x02e60929 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x048ad3e0 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x53bae5b0 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7bf121ac snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcce182d3 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf082c1ff snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5f480e68 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8395d705 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x956a1f71 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xd2893ae9 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xdb508840 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xfb2983af snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4065ebb0 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x528bda6e snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8ba1ae9d snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xc0f14251 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x726e61b2 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe2859880 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0x6fb327e9 snd_tea575x_exit +EXPORT_SYMBOL sound/i2c/other/snd-tea575x-tuner 0xd4e1301c snd_tea575x_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x193391e9 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc74719cc snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe05f1d42 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe148f2e8 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xea5a4b05 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x50e817c2 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x525469f6 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5dfa983c snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc2ea4f37 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc8ce7a30 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd3546acc snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x042028df snd_tea6330t_update_mixer +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x61fa58fe snd_tea6330t_detect +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x486c4e65 snd_es1688_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x55bcd9d1 snd_es1688_create +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x7248ebf7 snd_es1688_reset +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xd38d397e snd_es1688_pcm +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xdd5b82ff snd_es1688_mixer_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0f2a4971 snd_gf1_mem_xfree +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0f4293e1 snd_gus_use_dec +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1289f853 snd_gf1_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x136e8a50 snd_gf1_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1ad9068a snd_gf1_mem_lock +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1f0b6806 snd_gf1_peek +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x20a2697e snd_gf1_i_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x2c1a446a snd_gf1_pcm_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x31871843 snd_gf1_write16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x33bd8732 snd_gf1_free_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x365bb740 snd_gf1_write_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x38986331 snd_gus_dram_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3a3fd4ad snd_gus_dram_read +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3d4e4d7f snd_gf1_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x49ffab9b snd_gf1_i_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x5b540593 snd_gf1_ctrl_stop +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6a43e180 snd_gf1_delay +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x70a4936f snd_gf1_poke +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x729a320c snd_gus_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x7f407955 snd_gf1_translate_freq +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x82c22210 snd_gf1_dram_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8a0107fe snd_gf1_new_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9de24a02 snd_gf1_i_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa208a5a2 snd_gf1_alloc_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb116e3a7 snd_gf1_rawmidi_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc29d8c13 snd_gf1_mem_alloc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe18af7ad snd_gus_use_inc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe261788a snd_gf1_stop_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xefd0dfcd snd_gus_initialize +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf3518cb2 snd_gf1_mem_free +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x015da2ea snd_msnd_dsp_halt +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x2786f6cc snd_msnd_DAPQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x4a910017 snd_msndmix_setup +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x611c31ed snd_msnd_send_word +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x63bd39e4 snd_msnd_pcm +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x81606027 snd_msnd_upload_host +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x945e92da snd_msnd_send_dsp_cmd +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x9941bdfc snd_msndmix_new +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xd85f1b01 snd_msnd_enable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xe7433ad3 snd_msnd_DARQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf250bbf6 snd_msndmix_force_recsrc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xf6eff03a snd_msnd_disable_irq +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x898ef1cc snd_aci_get_aci +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xbfbdc7ce snd_aci_cmd +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x117b130b snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x146c388f snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x267833de snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2b6a555e snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x30d69298 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x564b771e snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7a548c24 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa5607f2b snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa7514cc8 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfcae6cb2 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0xc95af83c snd_sb_csp_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x53c08aa9 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xa691cca2 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xc6795e9e snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x3ff434fd snd_sb8dsp_midi_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x50d71d9b snd_sb8dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x521d0f16 snd_sb8dsp_midi +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x83f3834f snd_sb8dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x0464b8e0 snd_emu8000_poke +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x05fc07c4 snd_emu8000_peek_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x32cd9e9c snd_emu8000_load_chorus_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x3f148815 snd_emu8000_peek +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x612eb1cd snd_emu8000_update_reverb_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x7be69b29 snd_emu8000_update_equalizer +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x9a2565e2 snd_emu8000_poke_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xac675531 snd_emu8000_load_reverb_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xc7019a1e snd_emu8000_update_chorus_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xd192919e snd_emu8000_dma_chan +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xe932c4fc snd_emu8000_init_fm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x016e8aa6 snd_wss_chip_id +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x06bd53b1 snd_wss_get_pcm_ops +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1a455692 snd_cs4236_ext_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1b0f4229 snd_wss_mce_up +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x22cf1475 snd_wss_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x3787e18b snd_wss_info_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x3b3c8dd3 snd_wss_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x503d9704 snd_wss_get_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x67637368 snd_wss_put_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x70ee5bf5 snd_wss_overrange +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x81598fbf snd_cs4236_ext_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x85650360 snd_wss_mce_down +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xa12e7076 snd_wss_pcm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xbb899f0b snd_wss_create +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xbcbd9337 snd_wss_mixer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xc42535bd snd_wss_put_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcdc140e9 snd_wss_info_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf2136ae6 snd_wss_timer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf37bd1d1 snd_wss_get_single +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0379731c snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x058e5587 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x12a450af snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x255f3e04 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5e1df651 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7bbaee28 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x823f0f83 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x85cedfab snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xae32169e snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb55bd9be snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc0c54b3f snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd2b90512 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xda3e7b0b snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe7c04ecc snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeada0e91 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf0b8c646 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfe5ce39b snd_ac97_bus +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x6fc770b8 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x065eb8d2 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4276ddc6 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x44c1837c snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x605df198 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x69bb924a snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8bd3a0bd snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x96f3ed09 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xafabed8f snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc35303e7 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/hda/snd-hda-codec 0x37752383 snd_hda_parse_generic_codec +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x9968c76b snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xafc173a7 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc0f0de02 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0489fb52 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0eacc3cd oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2cc3e75e oxygen_pci_resume +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3d758f02 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5496c50a oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5f5d2807 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x63a1708a oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6656c400 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x688a1e83 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x69ca6534 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6dbee492 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6e0cad94 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6f983745 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7343bf2f oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x87b8b526 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9201db64 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9d65fe10 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad1f0608 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe764cd90 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xed74c652 oxygen_pci_suspend +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf9a99b20 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x26968fb4 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4918c2e6 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbe2c1829 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc2106386 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd242e113 snd_trident_start_voice +EXPORT_SYMBOL sound/soundcore 0x08772733 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x22e770c6 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x66fa9774 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x93db2764 sound_class +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xba71d8a0 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd7a5d9de register_sound_special +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x41bc7225 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5154f1e2 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x60ea5e78 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x648a5fe1 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6e3aa367 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd1d7dcc3 snd_emux_register +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2469cd30 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4d21ae38 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4e9ac83a snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5a70bdf3 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x74a85847 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xae7f363b __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xbf658877 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xfe8d7a85 snd_util_memhdr_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x20a0049f snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x25682ccb dm_mem_cache_free +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x35c95b1b dm_mem_cache_client_create +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x86e5acf9 dm_mem_cache_grow +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x8abe6ab9 dm_mem_cache_alloc +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0x920a7a41 dm_message_parse +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xa43471b6 dm_mem_cache_shrink +EXPORT_SYMBOL ubuntu/dm-raid4-5/dm-raid45 0xd55b290c dm_mem_cache_client_destroy +EXPORT_SYMBOL vmlinux 0x00000000 softirq_work_list +EXPORT_SYMBOL vmlinux 0x00129f6e pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x0026be34 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x002de09c vfsmount_lock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x00424894 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x0054071c dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x0059a6c2 dquot_destroy +EXPORT_SYMBOL vmlinux 0x00676fc6 vfs_writev +EXPORT_SYMBOL vmlinux 0x00741467 init_net +EXPORT_SYMBOL vmlinux 0x007f7734 mca_device_status +EXPORT_SYMBOL vmlinux 0x00801678 flush_scheduled_work +EXPORT_SYMBOL vmlinux 0x0084e86d unregister_shrinker +EXPORT_SYMBOL vmlinux 0x00898047 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL vmlinux 0x008a86eb cpu_sysdev_class +EXPORT_SYMBOL vmlinux 0x00e8097b csum_partial_copy_fromiovecend +EXPORT_SYMBOL vmlinux 0x00f42699 files_lglock_global_unlock +EXPORT_SYMBOL vmlinux 0x00f9a999 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x015a58af max8925_reg_write +EXPORT_SYMBOL vmlinux 0x0169f70f eth_header_parse +EXPORT_SYMBOL vmlinux 0x017f04ca inet_csk_accept +EXPORT_SYMBOL vmlinux 0x01902adf netpoll_trap +EXPORT_SYMBOL vmlinux 0x019126fc __nla_put +EXPORT_SYMBOL vmlinux 0x01b7572b __locks_copy_lock +EXPORT_SYMBOL vmlinux 0x01d19038 acpi_enable_subsystem +EXPORT_SYMBOL vmlinux 0x0209976b md_unregister_thread +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x0250ab08 __vlan_find_dev_deep +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x02775662 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x029444f0 native_read_tsc +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02c4abd8 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x02d3be0c alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x02d81845 audit_log_task_context +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x03165ec4 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034f9e73 param_ops_byte +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035acb43 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x0363d293 bio_alloc +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03a90757 vfs_create +EXPORT_SYMBOL vmlinux 0x03af5f65 scsi_release_buffers +EXPORT_SYMBOL vmlinux 0x03b580eb wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x03b9a394 skb_recycle_check +EXPORT_SYMBOL vmlinux 0x03c06156 bitmap_fold +EXPORT_SYMBOL vmlinux 0x03e23d69 bdget_disk +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x041228db migrate_page +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0424ae2c skb_push +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04a3e96b i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x04b19a3d unregister_qdisc +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f1f7e9 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x04f91a87 tty_set_operations +EXPORT_SYMBOL vmlinux 0x051155fe max8998_read_reg +EXPORT_SYMBOL vmlinux 0x0521b2ee set_current_groups +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x054434d6 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x057aa0d3 tcp_v4_get_peer +EXPORT_SYMBOL vmlinux 0x057ce975 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x05895e82 netdev_notice +EXPORT_SYMBOL vmlinux 0x05a60c0a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x05c9f774 block_truncate_page +EXPORT_SYMBOL vmlinux 0x05f16cb5 have_submounts +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06468ccc pci_enable_device +EXPORT_SYMBOL vmlinux 0x065a9c98 generic_removexattr +EXPORT_SYMBOL vmlinux 0x066401ee __bforget +EXPORT_SYMBOL vmlinux 0x0668b93d blk_requeue_request +EXPORT_SYMBOL vmlinux 0x06720a1f in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06865f0f pci_disable_ltr +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x06b6b6ae dump_seek +EXPORT_SYMBOL vmlinux 0x06b83fa5 mount_subtree +EXPORT_SYMBOL vmlinux 0x06c0dbc6 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x06d2f086 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x06d3acd2 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x06d96136 ip_fragment +EXPORT_SYMBOL vmlinux 0x06de73ce jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x06e72a10 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x06eab781 igrab +EXPORT_SYMBOL vmlinux 0x06f4bf00 seq_escape +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0708b54f alloc_fcdev +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072b9e64 set_page_dirty +EXPORT_SYMBOL vmlinux 0x073186a0 d_delete +EXPORT_SYMBOL vmlinux 0x073264c4 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x073dfa12 generate_resume_trace +EXPORT_SYMBOL vmlinux 0x073e3d58 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x0747f1f5 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x074fc226 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x0757c0e1 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x075cd04c tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x076ebea8 pv_lock_ops +EXPORT_SYMBOL vmlinux 0x077d6636 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x07971662 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x0799aca4 local_bh_enable +EXPORT_SYMBOL vmlinux 0x079fc1d8 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c7d582 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial +EXPORT_SYMBOL vmlinux 0x07d9b783 scsi_nl_send_vendor_msg +EXPORT_SYMBOL vmlinux 0x07e84c53 elv_rb_del +EXPORT_SYMBOL vmlinux 0x07f80aa1 skb_dst_set_noref +EXPORT_SYMBOL vmlinux 0x080bc5df i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x08100f4a __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x082337c8 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0842433e pci_select_bars +EXPORT_SYMBOL vmlinux 0x086a7b3a nf_getsockopt +EXPORT_SYMBOL vmlinux 0x089129d8 tty_throttle +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08a7d970 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x08bed6d9 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x08bf826c _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x08c5475f inode_init_always +EXPORT_SYMBOL vmlinux 0x08d0ba6b netlink_ack +EXPORT_SYMBOL vmlinux 0x08d66df0 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x0933aae1 efi_enabled +EXPORT_SYMBOL vmlinux 0x0946f160 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x0948cde9 num_physpages +EXPORT_SYMBOL vmlinux 0x095585fd sk_release_kernel +EXPORT_SYMBOL vmlinux 0x09596e75 unregister_con_driver +EXPORT_SYMBOL vmlinux 0x09775cdc kref_get +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099f1d7e bio_integrity_split +EXPORT_SYMBOL vmlinux 0x09ae41c4 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x09b49fcb __ht_create_irq +EXPORT_SYMBOL vmlinux 0x09ba81be max8925_reg_read +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cd0bc4 vga_client_register +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x0a178102 __ps2_command +EXPORT_SYMBOL vmlinux 0x0a2487e0 unblock_all_signals +EXPORT_SYMBOL vmlinux 0x0a2a2f7c is_container_init +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a37f021 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x0a38e551 set_bh_page +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a6c8566 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x0a730d1d phy_scan_fixups +EXPORT_SYMBOL vmlinux 0x0a9205c3 set_pages_nx +EXPORT_SYMBOL vmlinux 0x0a95d4ff mmc_resume_host +EXPORT_SYMBOL vmlinux 0x0a9f3e0b alloc_disk_node +EXPORT_SYMBOL vmlinux 0x0acb1a3c __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad0263d log_start_commit +EXPORT_SYMBOL vmlinux 0x0adfb0d3 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x0afacb36 skb_seq_read +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b179f87 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b39d10d fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b602bd8 udp_poll +EXPORT_SYMBOL vmlinux 0x0b61a1c8 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x0b673f8a xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0b7086d9 param_get_short +EXPORT_SYMBOL vmlinux 0x0b72d5d1 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b79f3c2 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x0b9ecc09 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bcaf2f4 block_commit_write +EXPORT_SYMBOL vmlinux 0x0be5870d netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x0c0668fd kernel_bind +EXPORT_SYMBOL vmlinux 0x0c119645 pci_disable_obff +EXPORT_SYMBOL vmlinux 0x0c1ef469 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x0c528ebe textsearch_destroy +EXPORT_SYMBOL vmlinux 0x0c57bf0a security_path_chown +EXPORT_SYMBOL vmlinux 0x0c65e73c scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x0c6c5d73 journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x0c716727 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x0c73c732 input_set_keycode +EXPORT_SYMBOL vmlinux 0x0c855e1f lock_may_read +EXPORT_SYMBOL vmlinux 0x0c8a42e5 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x0c8c9e99 scsi_show_extd_sense +EXPORT_SYMBOL vmlinux 0x0ca6870f netdev_set_master +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb20d35 dma_find_channel +EXPORT_SYMBOL vmlinux 0x0cbcf188 dm_io +EXPORT_SYMBOL vmlinux 0x0cda93a4 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x0cfa9896 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x0d073dd3 register_8022_client +EXPORT_SYMBOL vmlinux 0x0d16a992 llc_sap_find +EXPORT_SYMBOL vmlinux 0x0d24db2d do_sync_write +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d798c21 sock_wfree +EXPORT_SYMBOL vmlinux 0x0d7f118f skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x0d920c42 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dfa7706 vm_insert_page +EXPORT_SYMBOL vmlinux 0x0e43194e tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x0e52592a panic +EXPORT_SYMBOL vmlinux 0x0e6875b7 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x0ebeb69e notify_change +EXPORT_SYMBOL vmlinux 0x0eef556b tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x0f022ca1 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x0f15bf95 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x0f22e479 skb_make_writable +EXPORT_SYMBOL vmlinux 0x0f5137a8 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x0f59f197 param_array_ops +EXPORT_SYMBOL vmlinux 0x0f5dadbd key_reject_and_link +EXPORT_SYMBOL vmlinux 0x0f62c5f8 iov_iter_copy_from_user +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb0e29f init_timer_key +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0febc316 mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff6e32a blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x10004cda tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x102c56de irq_regs +EXPORT_SYMBOL vmlinux 0x103e6210 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x104634f8 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x10671fe5 input_register_device +EXPORT_SYMBOL vmlinux 0x1085b463 load_nls +EXPORT_SYMBOL vmlinux 0x109c67b6 posix_lock_file +EXPORT_SYMBOL vmlinux 0x109d9ca4 md_check_recovery +EXPORT_SYMBOL vmlinux 0x10ab7e68 down_killable +EXPORT_SYMBOL vmlinux 0x10b075c2 pcibios_set_irq_routing +EXPORT_SYMBOL vmlinux 0x10d8d106 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x10d9d048 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x10e84ba4 input_free_device +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f6bf28 dm_register_target +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11267875 scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x112a4063 ip_mc_rejoin_groups +EXPORT_SYMBOL vmlinux 0x113bf6e2 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x114fd19c fb_set_cmap +EXPORT_SYMBOL vmlinux 0x115021dc ip6_route_output +EXPORT_SYMBOL vmlinux 0x115fb6cd tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x11633870 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116ccd8c vfs_fstatat +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x118f01ea putname +EXPORT_SYMBOL vmlinux 0x119b9f73 alloc_disk +EXPORT_SYMBOL vmlinux 0x119e6122 con_is_bound +EXPORT_SYMBOL vmlinux 0x11dba971 unregister_nls +EXPORT_SYMBOL vmlinux 0x11e2ec12 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x11f1f552 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120ae944 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x1211a352 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x123d8e16 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x1277f375 journal_dirty_data +EXPORT_SYMBOL vmlinux 0x127f1cf8 vfs_lstat +EXPORT_SYMBOL vmlinux 0x128a5cf9 complete_all +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12c52f5a xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12f99022 inet_frags_init_net +EXPORT_SYMBOL vmlinux 0x131ff057 current_task +EXPORT_SYMBOL vmlinux 0x1323dfe2 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x134f4242 isapnp_protocol +EXPORT_SYMBOL vmlinux 0x136ea195 register_exec_domain +EXPORT_SYMBOL vmlinux 0x137bc712 d_rehash +EXPORT_SYMBOL vmlinux 0x137c62b7 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x138694dc d_path +EXPORT_SYMBOL vmlinux 0x138f3ef8 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x13b65a01 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x13baf5a2 skb_gro_reset_offset +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d7454d d_validate +EXPORT_SYMBOL vmlinux 0x13ec80f3 param_set_short +EXPORT_SYMBOL vmlinux 0x13eef89d dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x14091a96 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x141b5bb7 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1430e6e0 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x1433d1f5 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x143b6940 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x145a9a89 call_usermodehelper_setfns +EXPORT_SYMBOL vmlinux 0x14754717 bdi_unregister +EXPORT_SYMBOL vmlinux 0x148080dc find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x14d6ccb6 unregister_console +EXPORT_SYMBOL vmlinux 0x14dd839e dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x14e7ca7c alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x1520c73d sk_reset_txq +EXPORT_SYMBOL vmlinux 0x15350762 tr_type_trans +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154dd0bf nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x1551dc51 bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x1572502a mutex_trylock +EXPORT_SYMBOL vmlinux 0x15b0dd4f max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x15ba638c set_groups +EXPORT_SYMBOL vmlinux 0x15ca47da acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x15ed7ad3 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x15f56dfd dm_get_device +EXPORT_SYMBOL vmlinux 0x15fec9d4 registered_fb +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x161a5803 load_nls_default +EXPORT_SYMBOL vmlinux 0x16232820 rt6_lookup +EXPORT_SYMBOL vmlinux 0x1627ed72 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x164e2f40 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x168f1082 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x1697b269 __register_chrdev +EXPORT_SYMBOL vmlinux 0x16b4c340 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x16b84fa9 end_writeback +EXPORT_SYMBOL vmlinux 0x16c42197 init_timer_deferrable_key +EXPORT_SYMBOL vmlinux 0x16cb5cdf dma_supported +EXPORT_SYMBOL vmlinux 0x16d7a769 cont_write_begin +EXPORT_SYMBOL vmlinux 0x16e260a3 splice_from_pipe_next +EXPORT_SYMBOL vmlinux 0x16ecaa44 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x16f8a0cd proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x1708ace9 journal_ack_err +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x171b3d9a ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x171f50cf simple_getattr +EXPORT_SYMBOL vmlinux 0x1725800a pnp_device_attach +EXPORT_SYMBOL vmlinux 0x173028b7 netdev_features_change +EXPORT_SYMBOL vmlinux 0x1737bf6a send_sig +EXPORT_SYMBOL vmlinux 0x173995ea end_page_writeback +EXPORT_SYMBOL vmlinux 0x175a6169 udp_ioctl +EXPORT_SYMBOL vmlinux 0x1790d76b _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x17ab27fd tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x17abaa3e jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x17aeff3f lock_fb_info +EXPORT_SYMBOL vmlinux 0x17d53e99 security_path_rename +EXPORT_SYMBOL vmlinux 0x17df17bc sysctl_tcp_ecn +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17fe53a4 vfs_open +EXPORT_SYMBOL vmlinux 0x18091dae kernel_getpeername +EXPORT_SYMBOL vmlinux 0x181f67dd eth_header_cache +EXPORT_SYMBOL vmlinux 0x183c2f38 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1840388a sock_register +EXPORT_SYMBOL vmlinux 0x18411aa8 netlink_set_err +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184e6c85 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x18507e4d mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x185a43ab dquot_acquire +EXPORT_SYMBOL vmlinux 0x186632b6 pid_task +EXPORT_SYMBOL vmlinux 0x18905b16 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x18967459 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x18d75918 key_unlink +EXPORT_SYMBOL vmlinux 0x18dbbb87 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x18ec89a7 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x18f18da8 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x191cb870 tty_name +EXPORT_SYMBOL vmlinux 0x19206ec1 pci_request_region +EXPORT_SYMBOL vmlinux 0x1959a953 scsi_print_result +EXPORT_SYMBOL vmlinux 0x197a90c5 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x198bf518 dump_write +EXPORT_SYMBOL vmlinux 0x19912407 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a9e62b complete +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ef4403 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x19ef6cd6 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x1a037b53 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x1a08c0fc mark_page_accessed +EXPORT_SYMBOL vmlinux 0x1a1d0b06 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x1a22cb56 dma_async_memcpy_pg_to_pg +EXPORT_SYMBOL vmlinux 0x1a261286 inet6_release +EXPORT_SYMBOL vmlinux 0x1a297672 nla_append +EXPORT_SYMBOL vmlinux 0x1a2b4891 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a61e8a5 security_file_permission +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a85721a netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x1ab659bb __cleancache_flush_inode +EXPORT_SYMBOL vmlinux 0x1ac94cca arp_tbl +EXPORT_SYMBOL vmlinux 0x1ace138d bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x1adca17e i2c_release_client +EXPORT_SYMBOL vmlinux 0x1ae14ef5 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x1aea40e1 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b544578 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b875c7a prepare_binprm +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b9e0ff1 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x1bc8585b idr_remove_all +EXPORT_SYMBOL vmlinux 0x1c0776cc phy_stop +EXPORT_SYMBOL vmlinux 0x1c1af916 set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x1c20e823 napi_complete +EXPORT_SYMBOL vmlinux 0x1c489dcf bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x1c54ae67 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x1c65509d simple_fill_super +EXPORT_SYMBOL vmlinux 0x1c820980 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c9576cb nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x1cc6719a register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x1cf7fab1 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x1d0c1b88 dev_err +EXPORT_SYMBOL vmlinux 0x1d21d158 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x1d25c6dd key_revoke +EXPORT_SYMBOL vmlinux 0x1d2e87c6 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x1d3865da param_get_invbool +EXPORT_SYMBOL vmlinux 0x1d389146 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x1d57c85d qdisc_destroy +EXPORT_SYMBOL vmlinux 0x1d5ab6b7 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x1d848a1c scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x1d8fe27e inet_shutdown +EXPORT_SYMBOL vmlinux 0x1d9fe079 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x1dbdc782 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc53295 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x1dca321c llc_sap_close +EXPORT_SYMBOL vmlinux 0x1dcae2b8 file_open_root +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de95880 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x1e046695 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e268fcc tcf_hash_search +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3a047a neigh_connected_output +EXPORT_SYMBOL vmlinux 0x1e3b9851 ethtool_op_set_tso +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e90c178 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ec4eb34 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x1ed1f8e5 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x1edb5e45 test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x1ef1f75f posix_acl_valid +EXPORT_SYMBOL vmlinux 0x1f17cf20 __cleancache_flush_page +EXPORT_SYMBOL vmlinux 0x1f65fd3a tty_check_change +EXPORT_SYMBOL vmlinux 0x1f748a43 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f9b5f95 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x1faab2d7 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x1fba6e0f ps2_handle_response +EXPORT_SYMBOL vmlinux 0x1fc95e6b register_filesystem +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd0f0ad scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2005e68a acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x2049af5b locks_remove_posix +EXPORT_SYMBOL vmlinux 0x204c4a75 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x205623af input_release_device +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207e7827 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x208162e0 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20bfe34f dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x20c0ce77 eth_type_trans +EXPORT_SYMBOL vmlinux 0x20c81526 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x20d55623 inet6_getname +EXPORT_SYMBOL vmlinux 0x20e95a28 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x210154f1 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x21163375 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x2118c72e dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x21198a90 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x211fc853 replace_mount_options +EXPORT_SYMBOL vmlinux 0x212cb78e __pci_register_driver +EXPORT_SYMBOL vmlinux 0x21358e9f netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x215d09c2 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x215ebd78 bitrev16 +EXPORT_SYMBOL vmlinux 0x217dda13 flex_array_get +EXPORT_SYMBOL vmlinux 0x2181dd57 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x21926d81 mem_cgroup_count_vm_event +EXPORT_SYMBOL vmlinux 0x2193f75e blk_recount_segments +EXPORT_SYMBOL vmlinux 0x2199337a down_timeout +EXPORT_SYMBOL vmlinux 0x219f42d0 set_bdi_congested +EXPORT_SYMBOL vmlinux 0x21dd049c __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x21e0ea22 acpi_get_id +EXPORT_SYMBOL vmlinux 0x21f63b44 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x21f9038a x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x21f90d2d arp_create +EXPORT_SYMBOL vmlinux 0x21f9d0d7 journal_flush +EXPORT_SYMBOL vmlinux 0x21fb443e _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x21fd2b43 nonseekable_open +EXPORT_SYMBOL vmlinux 0x22250b67 dev_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ed0c2 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x225e6e39 inet_release +EXPORT_SYMBOL vmlinux 0x225e909e schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x226b9304 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2288378f system_state +EXPORT_SYMBOL vmlinux 0x228928c6 __scsi_put_command +EXPORT_SYMBOL vmlinux 0x228f46d8 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x22986108 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x22a53a68 sock_map_fd +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22e2c64c add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x231d3c74 dev_printk +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23532c4d ftrace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x235c4040 dst_release +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23bc5ae5 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240fb765 dget_parent +EXPORT_SYMBOL vmlinux 0x24121851 __kmap_atomic +EXPORT_SYMBOL vmlinux 0x2420e917 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x2423aedc mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x243cdd82 journal_clear_err +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24813d8b netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24b565b1 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x24b8b909 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x24d71518 md_flush_request +EXPORT_SYMBOL vmlinux 0x24f169fc down_read_trylock +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25088936 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x2511771d x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x25250bd9 journal_start_commit +EXPORT_SYMBOL vmlinux 0x2525b132 llc_build_and_send_ui_pkt +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25309427 skb_copy_datagram_const_iovec +EXPORT_SYMBOL vmlinux 0x2535638c blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x254311e8 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x254965e2 sock_create +EXPORT_SYMBOL vmlinux 0x2550c798 mdiobus_register +EXPORT_SYMBOL vmlinux 0x255487e7 d_alloc +EXPORT_SYMBOL vmlinux 0x2563f926 cdev_alloc +EXPORT_SYMBOL vmlinux 0x256c70c0 devm_free_irq +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258355b4 fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x25a4af72 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x25a50920 mmc_try_claim_host +EXPORT_SYMBOL vmlinux 0x25c677c4 mac_pton +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2644eb13 netdev_change_features +EXPORT_SYMBOL vmlinux 0x26486335 do_splice_direct +EXPORT_SYMBOL vmlinux 0x264d3c3d idr_get_next +EXPORT_SYMBOL vmlinux 0x2683fed6 skb_pad +EXPORT_SYMBOL vmlinux 0x2685c3d7 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close +EXPORT_SYMBOL vmlinux 0x26af6fcb ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x271587d3 d_instantiate +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x27258688 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x272d394e mtrr_del +EXPORT_SYMBOL vmlinux 0x27414d4b sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x27483ff6 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27881237 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x279b183c generic_getxattr +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c78c0e __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x27d7d9db dev_add_pack +EXPORT_SYMBOL vmlinux 0x27d9d859 ata_link_printk +EXPORT_SYMBOL vmlinux 0x27e1d482 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x27fc42ec tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x27fe6390 inet_addr_type +EXPORT_SYMBOL vmlinux 0x280b8120 dst_discard +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x283dec14 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x28411869 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x284db105 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x285d7f18 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x28764674 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x2881cab2 sock_create_kern +EXPORT_SYMBOL vmlinux 0x2893d50e simple_transaction_set +EXPORT_SYMBOL vmlinux 0x28946e0b dquot_initialize +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end +EXPORT_SYMBOL vmlinux 0x28c4adaa mmc_remove_host +EXPORT_SYMBOL vmlinux 0x28cc5129 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x28d258c0 mca_device_transform_irq +EXPORT_SYMBOL vmlinux 0x28d5eba4 may_umount +EXPORT_SYMBOL vmlinux 0x28e18435 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x292093f4 native_rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295b85a2 sock_release +EXPORT_SYMBOL vmlinux 0x295bd539 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x295db419 x86_hyper +EXPORT_SYMBOL vmlinux 0x29a83af3 user_path_create +EXPORT_SYMBOL vmlinux 0x29b96a8a inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x29f0c766 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a1a9f29 dm_get_mapinfo +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a330ea8 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a52caf2 agp_copy_info +EXPORT_SYMBOL vmlinux 0x2a5ecdea generic_file_fsync +EXPORT_SYMBOL vmlinux 0x2a9936e2 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x2aa07140 dst_alloc +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa67a7e skb_copy +EXPORT_SYMBOL vmlinux 0x2aba563b is_bad_inode +EXPORT_SYMBOL vmlinux 0x2acf3c93 sk_dst_check +EXPORT_SYMBOL vmlinux 0x2ae47764 vfs_follow_link +EXPORT_SYMBOL vmlinux 0x2b064ce8 agp_backend_release +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b1b7a98 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b322337 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x2b36898c scsi_prep_state_check +EXPORT_SYMBOL vmlinux 0x2b4c0989 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x2b54522b swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x2b646069 set_security_override +EXPORT_SYMBOL vmlinux 0x2b680fc8 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x2b69f3f5 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0x2b6fa2ed lock_rename +EXPORT_SYMBOL vmlinux 0x2b7343b1 blk_free_tags +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba002e5 serio_reconnect +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bc95bd4 memset +EXPORT_SYMBOL vmlinux 0x2bd84663 tcp_prot +EXPORT_SYMBOL vmlinux 0x2be4c6e6 lro_receive_frags +EXPORT_SYMBOL vmlinux 0x2bf555d0 log_wait_commit +EXPORT_SYMBOL vmlinux 0x2bf8d577 sleep_on_timeout +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c294d6a bio_integrity_alloc_bioset +EXPORT_SYMBOL vmlinux 0x2c30f8e3 mca_device_transform_memory +EXPORT_SYMBOL vmlinux 0x2c3bf0a6 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x2c48a98d nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x2c4d662b dquot_drop +EXPORT_SYMBOL vmlinux 0x2c4e60d8 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x2c5101ea keyring_clear +EXPORT_SYMBOL vmlinux 0x2c6a6930 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x2cfc6c8d soft_cursor +EXPORT_SYMBOL vmlinux 0x2d127cdb tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d198db5 __breadahead +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d72bde9 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x2d89342a scsi_show_sense_hdr +EXPORT_SYMBOL vmlinux 0x2d896be7 iget5_locked +EXPORT_SYMBOL vmlinux 0x2d92f414 blk_put_queue +EXPORT_SYMBOL vmlinux 0x2da7946e mmc_do_release_host +EXPORT_SYMBOL vmlinux 0x2da90cee sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x2dc050c6 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x2dcb2e8d mdiobus_read +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2df9a27c proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x2e03d27a ns_capable +EXPORT_SYMBOL vmlinux 0x2e147dfc sock_i_uid +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e3320ee dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x2e37a099 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x2e50f638 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x2e59fc7a ab8500_gpadc_get +EXPORT_SYMBOL vmlinux 0x2e60bace memcpy +EXPORT_SYMBOL vmlinux 0x2e895bbc inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x2ea67e30 path_is_under +EXPORT_SYMBOL vmlinux 0x2ea7d424 gen_pool_free +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec66891 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x2ed517f8 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x2eda301a iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x2eeceb42 sk_chk_filter +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2efdf979 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f3058f9 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x2f38c2db sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2f752732 tty_shutdown +EXPORT_SYMBOL vmlinux 0x2f976f3d phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x2fa9bca9 put_disk +EXPORT_SYMBOL vmlinux 0x2fcde7cd mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x2fe37f2c acpi_root_dir +EXPORT_SYMBOL vmlinux 0x2fe48ea7 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x2fe78f99 follow_down +EXPORT_SYMBOL vmlinux 0x2ff95dda dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x302b865b x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x302ce62e dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x30380bd7 scsi_adjust_queue_depth +EXPORT_SYMBOL vmlinux 0x304c3b91 kmap_high +EXPORT_SYMBOL vmlinux 0x305bac15 bio_free +EXPORT_SYMBOL vmlinux 0x305bed90 netif_notify_peers +EXPORT_SYMBOL vmlinux 0x305e392d get_user_pages +EXPORT_SYMBOL vmlinux 0x3065c3cb jbd2_journal_release_buffer +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x30a06192 pci_request_regions +EXPORT_SYMBOL vmlinux 0x30a13c9b scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x30a20388 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30cada8f radix_tree_next_hole +EXPORT_SYMBOL vmlinux 0x30dfb2a2 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x30e6cda6 page_symlink +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f1fa20 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x31236beb scm_fp_dup +EXPORT_SYMBOL vmlinux 0x312d7d35 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x31513fb7 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31bedf50 kill_litter_super +EXPORT_SYMBOL vmlinux 0x31d26e79 input_reset_device +EXPORT_SYMBOL vmlinux 0x31d8432b blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x31d8903b __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31f48ccf vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x3202f6ee kthread_bind +EXPORT_SYMBOL vmlinux 0x32178be6 unlock_buffer +EXPORT_SYMBOL vmlinux 0x32230b01 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x3240c65b files_lglock_global_lock_online +EXPORT_SYMBOL vmlinux 0x325fca48 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32a6b179 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x32c038ce backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x32cca020 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x32ccc25a scsi_prep_fn +EXPORT_SYMBOL vmlinux 0x32cea339 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x32cf68de neigh_create +EXPORT_SYMBOL vmlinux 0x32d843ba md_done_sync +EXPORT_SYMBOL vmlinux 0x32eeaded _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x32f0c886 __break_lease +EXPORT_SYMBOL vmlinux 0x3312a2a4 mntput +EXPORT_SYMBOL vmlinux 0x331a8967 genl_unregister_mc_group +EXPORT_SYMBOL vmlinux 0x331bd55b bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x3357abc6 dentry_open +EXPORT_SYMBOL vmlinux 0x335fabc0 I_BDEV +EXPORT_SYMBOL vmlinux 0x336bac73 skb_append +EXPORT_SYMBOL vmlinux 0x33d722a0 tty_port_put +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33eba79f kthread_stop +EXPORT_SYMBOL vmlinux 0x33f00aef xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x340be685 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x342e32e3 ida_simple_get +EXPORT_SYMBOL vmlinux 0x342f60fe apm_info +EXPORT_SYMBOL vmlinux 0x34332a3d udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x34586b73 dev_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347a02b0 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x34824aa9 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x34908c14 print_hex_dump_bytes +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34c265bf atomic64_dec_if_positive_cx8 +EXPORT_SYMBOL vmlinux 0x34fb8ff2 filp_open +EXPORT_SYMBOL vmlinux 0x3500daf4 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x35061475 arp_xmit +EXPORT_SYMBOL vmlinux 0x352e21f2 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x35357c05 d_add_ci +EXPORT_SYMBOL vmlinux 0x3537ac50 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x353c7867 aio_complete +EXPORT_SYMBOL vmlinux 0x354a3f7d set_trace_device +EXPORT_SYMBOL vmlinux 0x3554ff1a balance_dirty_pages_ratelimited_nr +EXPORT_SYMBOL vmlinux 0x357c0ab5 genphy_update_link +EXPORT_SYMBOL vmlinux 0x357c90d2 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0x358c07bd generic_delete_inode +EXPORT_SYMBOL vmlinux 0x35af86fa call_usermodehelper_freeinfo +EXPORT_SYMBOL vmlinux 0x35c2ba9e refrigerator +EXPORT_SYMBOL vmlinux 0x35ca8cfa dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x35df1591 udplite_prot +EXPORT_SYMBOL vmlinux 0x35e3351e __netdev_printk +EXPORT_SYMBOL vmlinux 0x35ed4f17 dquot_release +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x362ef408 _copy_from_user +EXPORT_SYMBOL vmlinux 0x36370e90 lookup_hash +EXPORT_SYMBOL vmlinux 0x363feb87 blk_make_request +EXPORT_SYMBOL vmlinux 0x36837bd7 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x3686ea09 spi_print_msg +EXPORT_SYMBOL vmlinux 0x36a6ee20 kill_block_super +EXPORT_SYMBOL vmlinux 0x36aad357 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x36ba19f0 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x36ca773d jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x36e360e3 __hw_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x371fce2a tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x372e8a8d tcf_register_action +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x379f5837 param_set_invbool +EXPORT_SYMBOL vmlinux 0x37aa5e09 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37ce8c85 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37ea921e vfsmount_lock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37ff4c06 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x380e3fcb phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x381112ca neigh_direct_output +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x38329931 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x3858e372 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x3864901e phy_find_first +EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x388f9128 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x38911bb5 dma_pool_create +EXPORT_SYMBOL vmlinux 0x38b21a7a free_task +EXPORT_SYMBOL vmlinux 0x38b92846 llc_remove_pack +EXPORT_SYMBOL vmlinux 0x38dd7f9f pci_disable_device +EXPORT_SYMBOL vmlinux 0x390cc126 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x393073eb kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x3969ee11 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x396ae2a8 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x397ab28e security_inode_permission +EXPORT_SYMBOL vmlinux 0x397ef978 arp_find +EXPORT_SYMBOL vmlinux 0x3980aac1 unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x39970ad2 nf_reinject +EXPORT_SYMBOL vmlinux 0x399f34dd freeze_super +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39c08aac backlight_force_update +EXPORT_SYMBOL vmlinux 0x39c29a9e __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x3a013b7d remove_wait_queue +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a2204c6 security_netlink_recv +EXPORT_SYMBOL vmlinux 0x3a2c8da1 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a469a66 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x3a699f26 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x3a7b57e8 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x3a86e88a __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa2eb19 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x3aab90cd tty_pair_get_tty +EXPORT_SYMBOL vmlinux 0x3ac496b3 __quota_error +EXPORT_SYMBOL vmlinux 0x3acc8711 get_write_access +EXPORT_SYMBOL vmlinux 0x3ad06240 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x3ad35abf bmap +EXPORT_SYMBOL vmlinux 0x3ad66aec inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x3ae9cef5 unlock_super +EXPORT_SYMBOL vmlinux 0x3b012518 poll_initwait +EXPORT_SYMBOL vmlinux 0x3b21b39b neigh_lookup +EXPORT_SYMBOL vmlinux 0x3b2c3235 journal_get_write_access +EXPORT_SYMBOL vmlinux 0x3b3016d3 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3b356931 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x3b361043 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x3b58c5ec unlock_rename +EXPORT_SYMBOL vmlinux 0x3b8ae6c7 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x3b9514da dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x3b9dbde3 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x3bab7fc9 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x3babfdc8 request_key +EXPORT_SYMBOL vmlinux 0x3bd1b1f6 msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x3bd9d729 dquot_alloc +EXPORT_SYMBOL vmlinux 0x3beb5dad md_write_end +EXPORT_SYMBOL vmlinux 0x3c114fd8 bdi_destroy +EXPORT_SYMBOL vmlinux 0x3c13deed __devm_release_region +EXPORT_SYMBOL vmlinux 0x3c16b391 consume_skb +EXPORT_SYMBOL vmlinux 0x3c1a496b blkdev_get +EXPORT_SYMBOL vmlinux 0x3c2caead seq_bitmap_list +EXPORT_SYMBOL vmlinux 0x3c3e0d3a clip_tbl_hook +EXPORT_SYMBOL vmlinux 0x3c414ebf blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x3c688ef6 make_bad_inode +EXPORT_SYMBOL vmlinux 0x3c690103 km_policy_expired +EXPORT_SYMBOL vmlinux 0x3c7c64b9 tty_pair_get_pty +EXPORT_SYMBOL vmlinux 0x3c7f4bd6 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c880174 md_integrity_register +EXPORT_SYMBOL vmlinux 0x3c9d1211 string_get_size +EXPORT_SYMBOL vmlinux 0x3cadc7a4 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x3cafe321 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cb74fb8 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x3cdfc138 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d38a758 skb_checksum +EXPORT_SYMBOL vmlinux 0x3d3a2601 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x3d496541 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x3d4c9b87 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x3d67fd96 phy_driver_register +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d86c3a0 netdev_crit +EXPORT_SYMBOL vmlinux 0x3d93ee61 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x3d950c46 user_path_at +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3dbc7c29 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x3dc14845 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcd3105 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x3dd8f107 fget_raw +EXPORT_SYMBOL vmlinux 0x3df9e4b1 open_exec +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0e9023 param_set_long +EXPORT_SYMBOL vmlinux 0x3e1f6c95 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e45e9ff register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x3e534d88 thaw_super +EXPORT_SYMBOL vmlinux 0x3e7f3ff3 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3ea2990c uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x3ea5ce0b alloc_trdev +EXPORT_SYMBOL vmlinux 0x3ec8886f param_ops_int +EXPORT_SYMBOL vmlinux 0x3ed63055 zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x3ede5055 init_buffer +EXPORT_SYMBOL vmlinux 0x3ef78d80 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3efa4cf4 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x3eff3fbb keyring_search +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0990eb journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x3f1a49dd mpage_writepage +EXPORT_SYMBOL vmlinux 0x3f1ed40a __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x3f35c91e dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3f3ce480 __cleancache_flush_fs +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f5070a7 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x3f55aa75 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0x3f5689df __get_page_tail +EXPORT_SYMBOL vmlinux 0x3f637ff5 input_event +EXPORT_SYMBOL vmlinux 0x3f692b5e __blk_end_request +EXPORT_SYMBOL vmlinux 0x3f89d02d mmc_hw_reset_check +EXPORT_SYMBOL vmlinux 0x3f9f868f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x3fa36d8c tc_classify_compat +EXPORT_SYMBOL vmlinux 0x3fa58ef8 wait_for_completion +EXPORT_SYMBOL vmlinux 0x3face808 pci_enable_msi_block +EXPORT_SYMBOL vmlinux 0x3fb31576 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x3fb32483 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x3fd400cd vfs_unlink +EXPORT_SYMBOL vmlinux 0x3fe33741 i2c_smbus_process_call +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff1195b journal_destroy +EXPORT_SYMBOL vmlinux 0x3ff62317 local_bh_disable +EXPORT_SYMBOL vmlinux 0x3ff9e144 setattr_copy +EXPORT_SYMBOL vmlinux 0x4012a5d2 dev_alert +EXPORT_SYMBOL vmlinux 0x4029d238 param_set_copystring +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40310c3e thermal_zone_device_unregister +EXPORT_SYMBOL vmlinux 0x403aca81 fb_pan_display +EXPORT_SYMBOL vmlinux 0x4044d469 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4097fa45 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b86d24 proc_symlink +EXPORT_SYMBOL vmlinux 0x40be830a phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x40c0f0de proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40cb3bcb inode_permission +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40e00b35 unregister_key_type +EXPORT_SYMBOL vmlinux 0x4108e69a fb_match_mode +EXPORT_SYMBOL vmlinux 0x4137cb99 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x4144a4f4 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x41466e6d mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4155b48a i2c_master_recv +EXPORT_SYMBOL vmlinux 0x416163d4 dcache_readdir +EXPORT_SYMBOL vmlinux 0x41702759 km_new_mapping +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x419ee6e8 idr_pre_get +EXPORT_SYMBOL vmlinux 0x41ab4941 lookup_bdev +EXPORT_SYMBOL vmlinux 0x41d4a2e9 dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x41d7987f security_inode_readlink +EXPORT_SYMBOL vmlinux 0x41dddae9 kernel_connect +EXPORT_SYMBOL vmlinux 0x41f503ce genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x4211c3c1 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x42224298 sscanf +EXPORT_SYMBOL vmlinux 0x42368290 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x4239de63 ida_init +EXPORT_SYMBOL vmlinux 0x423f1957 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x427d22c8 skb_store_bits +EXPORT_SYMBOL vmlinux 0x428626b1 bio_copy_user +EXPORT_SYMBOL vmlinux 0x4292364c schedule +EXPORT_SYMBOL vmlinux 0x42977ad4 __hw_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x429db727 bio_split +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42cc7371 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x42fc71b1 xfrm_cfg_mutex +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430c7d12 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x4318b3d3 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x43319e7c scsi_setup_blk_pc_cmnd +EXPORT_SYMBOL vmlinux 0x43385ad9 acpi_pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437b86d4 fasync_helper +EXPORT_SYMBOL vmlinux 0x437fcc93 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x4387a6c5 tty_get_baud_rate +EXPORT_SYMBOL vmlinux 0x4392e024 nf_register_hook +EXPORT_SYMBOL vmlinux 0x43a0458b blk_start_plug +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x440124ab scsi_cmd_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x4418e5c7 sock_no_accept +EXPORT_SYMBOL vmlinux 0x4421b5ac update_region +EXPORT_SYMBOL vmlinux 0x443535b3 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44402b6f param_get_ulong +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x4455e0d4 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x44607399 save_mount_options +EXPORT_SYMBOL vmlinux 0x44613d99 create_mnt_ns +EXPORT_SYMBOL vmlinux 0x44787ede ata_port_printk +EXPORT_SYMBOL vmlinux 0x447db6ca elevator_init +EXPORT_SYMBOL vmlinux 0x4497ef82 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b911c3 rb_replace_node +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f1606d down_trylock +EXPORT_SYMBOL vmlinux 0x44f9d175 simple_rename +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x4539cc7a scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454de98c netif_carrier_off +EXPORT_SYMBOL vmlinux 0x4550ba8a register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x4553422b inet_sendmsg +EXPORT_SYMBOL vmlinux 0x45583fe7 fget +EXPORT_SYMBOL vmlinux 0x4558fc54 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x4578661a _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457c3c44 blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0x457defd3 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x4587c888 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x459409aa netdev_alert +EXPORT_SYMBOL vmlinux 0x45bd9efd dm_table_put +EXPORT_SYMBOL vmlinux 0x45d216b9 tcp_put_md5sig_pool +EXPORT_SYMBOL vmlinux 0x4617c890 mca_device_transform_ioport +EXPORT_SYMBOL vmlinux 0x46214106 files_lglock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x46261d51 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x462977b5 mii_link_ok +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x468fb3e8 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x46928102 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x46be30f2 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x46de1fc9 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x46de509d vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x46e385a0 dev_addr_add +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4704f2b5 get_unmapped_area_prot +EXPORT_SYMBOL vmlinux 0x4723e887 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x4747b193 processors +EXPORT_SYMBOL vmlinux 0x474accb3 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x475100c2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x475cb2ac filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x47732bcd mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x47812d1e skb_queue_tail +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x4792c572 down_interruptible +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47b3f862 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x47b6a10f ftrace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x47c7b0d2 cpu_number +EXPORT_SYMBOL vmlinux 0x47d001db nla_reserve +EXPORT_SYMBOL vmlinux 0x47e120cd blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x47f57830 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x481e5c49 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x4848a53d blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485befd2 __getblk +EXPORT_SYMBOL vmlinux 0x486d2f29 dqstats +EXPORT_SYMBOL vmlinux 0x486d75c2 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x48700850 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x48976adb security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map +EXPORT_SYMBOL vmlinux 0x48be6a4c pagecache_write_end +EXPORT_SYMBOL vmlinux 0x48c3d5f3 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x48c97dda mnt_pin +EXPORT_SYMBOL vmlinux 0x48cdc818 init_task +EXPORT_SYMBOL vmlinux 0x48e5d7dd blk_init_tags +EXPORT_SYMBOL vmlinux 0x48eb0c0d __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x48fae041 pm860x_page_set_bits +EXPORT_SYMBOL vmlinux 0x48fcc1dd dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x49193b56 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x49249dbc bio_get_nr_vecs +EXPORT_SYMBOL vmlinux 0x4926b4cd phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x49284197 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x494fb1cf pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x4954211f inet_sendpage +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x496b6166 generic_show_options +EXPORT_SYMBOL vmlinux 0x49701389 neigh_for_each +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49cc2ad8 ps2_drain +EXPORT_SYMBOL vmlinux 0x49f0ca2b jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x4a0d25a7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x4a358252 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x4a619c7c napi_gro_frags +EXPORT_SYMBOL vmlinux 0x4a73b7c9 mmc_release_host +EXPORT_SYMBOL vmlinux 0x4a76bc26 inode_init_owner +EXPORT_SYMBOL vmlinux 0x4a881fb1 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x4aaab2b1 groups_alloc +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0dad8d led_blink_set +EXPORT_SYMBOL vmlinux 0x4b0ff1ce lease_get_mtime +EXPORT_SYMBOL vmlinux 0x4b142f51 devm_iounmap +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b253787 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x4b2b9357 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x4b34fbf5 block_all_signals +EXPORT_SYMBOL vmlinux 0x4b39d1f0 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b709bd3 follow_down_one +EXPORT_SYMBOL vmlinux 0x4ba651b0 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x4bb057ef key_put +EXPORT_SYMBOL vmlinux 0x4bc4d5a5 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x4bc96635 ifla_policy +EXPORT_SYMBOL vmlinux 0x4be36f8e serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x4be3b128 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x4bf7b27d inode_sb_list_lock +EXPORT_SYMBOL vmlinux 0x4c1182cb bitmap_scnprintf +EXPORT_SYMBOL vmlinux 0x4c11ca9f efi +EXPORT_SYMBOL vmlinux 0x4c17ee88 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2b91f5 __rta_fill +EXPORT_SYMBOL vmlinux 0x4c6b7257 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x4c7cc70c single_open +EXPORT_SYMBOL vmlinux 0x4c9ab88a misc_register +EXPORT_SYMBOL vmlinux 0x4cb2082d bio_put +EXPORT_SYMBOL vmlinux 0x4cbbd171 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x4cbf16c9 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x4ccb822d sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x4ce774c3 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x4d025d04 vfs_stat +EXPORT_SYMBOL vmlinux 0x4d20ddbc atomic64_inc_not_zero_cx8 +EXPORT_SYMBOL vmlinux 0x4d2425e6 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x4d268a3c kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x4d29f664 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d594caf get_phy_device +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9d2857 noop_qdisc +EXPORT_SYMBOL vmlinux 0x4da972f6 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x4dc45be9 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x4dca5ab4 __devm_request_region +EXPORT_SYMBOL vmlinux 0x4ddad4ca scsi_finish_command +EXPORT_SYMBOL vmlinux 0x4dee8af5 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df265ad ps2_end_command +EXPORT_SYMBOL vmlinux 0x4dfa1d95 vmap +EXPORT_SYMBOL vmlinux 0x4e069249 security_tun_dev_post_create +EXPORT_SYMBOL vmlinux 0x4e21999c acpi_get_child +EXPORT_SYMBOL vmlinux 0x4e255f95 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x4e29c7cb idr_for_each +EXPORT_SYMBOL vmlinux 0x4e316a39 drop_super +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e830a3e strnicmp +EXPORT_SYMBOL vmlinux 0x4e8a4a0b blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x4eb11f1f seq_bitmap +EXPORT_SYMBOL vmlinux 0x4ebb5a59 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x4ec597e1 sock_i_ino +EXPORT_SYMBOL vmlinux 0x4eca6c89 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x4ee1b912 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x4eece3c7 tty_port_open +EXPORT_SYMBOL vmlinux 0x4f18467b pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2f6111 elv_abort_queue +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3c13d5 scsi_execute_req +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f6a6be1 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x4f6ca567 simple_write_end +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f8e3af7 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x4f977143 generic_pipe_buf_map +EXPORT_SYMBOL vmlinux 0x4fa46012 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x4fbf9184 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff0b0ba pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x4ff1c9bc populate_rootfs_wait +EXPORT_SYMBOL vmlinux 0x4ffa3c71 inet_frag_find +EXPORT_SYMBOL vmlinux 0x4ffec096 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x5012dfb3 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x50211ee3 tcp_free_md5sig_pool +EXPORT_SYMBOL vmlinux 0x504fb5ea neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x5055a3f0 key_link +EXPORT_SYMBOL vmlinux 0x506746b6 getrawmonotonic +EXPORT_SYMBOL vmlinux 0x507981c6 journal_lock_updates +EXPORT_SYMBOL vmlinux 0x507f5b40 vfs_readdir +EXPORT_SYMBOL vmlinux 0x50aa2412 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x50ab4c6d files_lglock_global_lock +EXPORT_SYMBOL vmlinux 0x50b11475 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x50c2b2db llc_add_pack +EXPORT_SYMBOL vmlinux 0x50c993c6 input_grab_device +EXPORT_SYMBOL vmlinux 0x50cb4248 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x50cd4c20 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x50d3123c intel_gtt_map_memory +EXPORT_SYMBOL vmlinux 0x50e4a867 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x50eedeb8 printk +EXPORT_SYMBOL vmlinux 0x5117581e tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511f0349 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x513dd910 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x5152e605 memcmp +EXPORT_SYMBOL vmlinux 0x51542f3b padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x5158a54a i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x515d7d1a scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x51632e4d tcp_syn_flood_action +EXPORT_SYMBOL vmlinux 0x517390e9 ethtool_invalid_flags +EXPORT_SYMBOL vmlinux 0x5174a32b dev_disable_lro +EXPORT_SYMBOL vmlinux 0x517c9b81 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x5180c9f5 dev_uc_del +EXPORT_SYMBOL vmlinux 0x5186518f profile_pc +EXPORT_SYMBOL vmlinux 0x51b2fb10 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x51c2c03e dev_load +EXPORT_SYMBOL vmlinux 0x51ce5ad3 files_lglock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d60092 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x51d816e4 seq_write +EXPORT_SYMBOL vmlinux 0x51d93718 register_gifconf +EXPORT_SYMBOL vmlinux 0x51dce73b xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51ff522a mdio_bus_type +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520696e5 bio_sector_offset +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x5232fbb9 i2c_transfer +EXPORT_SYMBOL vmlinux 0x52423a0c ida_pre_get +EXPORT_SYMBOL vmlinux 0x525a649e console_start +EXPORT_SYMBOL vmlinux 0x52760ca9 getnstimeofday +EXPORT_SYMBOL vmlinux 0x528643be tc_classify +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52ce2390 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x52d2090f skb_dequeue +EXPORT_SYMBOL vmlinux 0x52d4d1fe key_alloc +EXPORT_SYMBOL vmlinux 0x52d71999 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL vmlinux 0x52d93744 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x52e27fc2 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x52ebf701 cap_netlink_recv +EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x530d02c0 find_lock_page +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x533183cf pci_get_subsys +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533455c5 get_agp_version +EXPORT_SYMBOL vmlinux 0x533b7736 dump_trace +EXPORT_SYMBOL vmlinux 0x533fd46f simple_transaction_read +EXPORT_SYMBOL vmlinux 0x538383c0 unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x5383f34b _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x5397f2d3 posix_acl_init +EXPORT_SYMBOL vmlinux 0x53a1cecb inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x53b0dba7 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x53bf7b71 journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x53dd7ef9 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x53f2ef10 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x53f9649b uart_suspend_port +EXPORT_SYMBOL vmlinux 0x54135829 datagram_poll +EXPORT_SYMBOL vmlinux 0x54152e04 percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x54352c56 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544d4ea7 iget_locked +EXPORT_SYMBOL vmlinux 0x5467c572 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x54856515 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x548fc005 netpoll_setup +EXPORT_SYMBOL vmlinux 0x54935666 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0x54a285c5 atomic64_dec_return_cx8 +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c57ab9 bio_init +EXPORT_SYMBOL vmlinux 0x54d90576 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x55034c2a seq_open_private +EXPORT_SYMBOL vmlinux 0x55086c33 netdev_set_bond_master +EXPORT_SYMBOL vmlinux 0x5512b83d check_disk_change +EXPORT_SYMBOL vmlinux 0x55149dad xfrm_init_state +EXPORT_SYMBOL vmlinux 0x5534f500 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55529d1c simple_empty +EXPORT_SYMBOL vmlinux 0x5594be03 bitmap_remap +EXPORT_SYMBOL vmlinux 0x55964f43 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x55afabac poll_freewait +EXPORT_SYMBOL vmlinux 0x55b17e1f lock_sock_nested +EXPORT_SYMBOL vmlinux 0x55fe28e3 ip6_xmit +EXPORT_SYMBOL vmlinux 0x5600904f fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x5614b010 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x561c4b80 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x56250cb0 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5642793a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x5664aea8 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x56672246 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x567c4fe4 __brelse +EXPORT_SYMBOL vmlinux 0x5684d94e __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x568b7542 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0x56ba394b set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x56c5e093 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573555af netif_device_detach +EXPORT_SYMBOL vmlinux 0x5736244c acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x5740c1d2 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5773aa31 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x5792853f mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x57979332 proto_unregister +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57b4a8b3 netdev_bonding_change +EXPORT_SYMBOL vmlinux 0x57b57ebe jiffies_to_timespec +EXPORT_SYMBOL vmlinux 0x57b74ec9 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x57db7242 mangle_path +EXPORT_SYMBOL vmlinux 0x57e3223e fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x57e830bd register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x57e99ab3 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x58192c98 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583af874 scsi_execute +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x58517ca9 ip_nat_decode_session +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x586103be acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x586b58e8 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x58780077 journal_forget +EXPORT_SYMBOL vmlinux 0x5892d54c acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x5897c163 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x5899a6f2 elevator_exit +EXPORT_SYMBOL vmlinux 0x58a2c24b fb_get_mode +EXPORT_SYMBOL vmlinux 0x58baf9e2 dev_uc_add +EXPORT_SYMBOL vmlinux 0x58be7509 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x58c909d7 write_inode_now +EXPORT_SYMBOL vmlinux 0x58e9de58 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x58ec7980 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info +EXPORT_SYMBOL vmlinux 0x59188c7e sock_init_data +EXPORT_SYMBOL vmlinux 0x59212e92 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x592b59af acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x5934392b fb_register_client +EXPORT_SYMBOL vmlinux 0x59377504 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x59393600 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x593b9e4e bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594f6650 input_unregister_device +EXPORT_SYMBOL vmlinux 0x59528ec6 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x595ea73c d_obtain_alias +EXPORT_SYMBOL vmlinux 0x595f2649 get_super +EXPORT_SYMBOL vmlinux 0x5977b1a4 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x59aa43be simple_rmdir +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59be07b2 set_user_nice +EXPORT_SYMBOL vmlinux 0x59d696b6 register_module_notifier +EXPORT_SYMBOL vmlinux 0x59e70f93 __send_remote_softirq +EXPORT_SYMBOL vmlinux 0x59f930e5 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x5a0caf4a mmc_start_req +EXPORT_SYMBOL vmlinux 0x5a2aa62e __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x5a373a87 acpi_bus_start +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a744b86 netlink_set_nonroot +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ae3f4a9 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x5afa4e7f sock_no_mmap +EXPORT_SYMBOL vmlinux 0x5b028742 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b2641dc sg_miter_stop +EXPORT_SYMBOL vmlinux 0x5b26bea8 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x5b31eb1f pci_get_class +EXPORT_SYMBOL vmlinux 0x5b3cc0ba ppp_input +EXPORT_SYMBOL vmlinux 0x5b51c6a7 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x5b54e311 __lru_cache_add +EXPORT_SYMBOL vmlinux 0x5b56804a acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x5b63fcbc generic_readlink +EXPORT_SYMBOL vmlinux 0x5b7831b3 bio_integrity_set_tag +EXPORT_SYMBOL vmlinux 0x5b88e8c9 atomic64_sub_return_cx8 +EXPORT_SYMBOL vmlinux 0x5ba748da spi_schedule_dv_device +EXPORT_SYMBOL vmlinux 0x5bbeb1ae remap_pfn_range +EXPORT_SYMBOL vmlinux 0x5bf9d5a1 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x5bff5b07 inet_bind +EXPORT_SYMBOL vmlinux 0x5c009c38 bio_clone +EXPORT_SYMBOL vmlinux 0x5c100372 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x5c24d43d iput +EXPORT_SYMBOL vmlinux 0x5c31907a blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x5c3edd59 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x5c4ac01e tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x5c68705b mca_read_pos +EXPORT_SYMBOL vmlinux 0x5c79558c fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x5c9dca60 kunmap_high +EXPORT_SYMBOL vmlinux 0x5cbd23dd i2c_register_driver +EXPORT_SYMBOL vmlinux 0x5cd10b98 should_remove_suid +EXPORT_SYMBOL vmlinux 0x5cf6695b __inet6_hash +EXPORT_SYMBOL vmlinux 0x5cfbf855 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x5d0b1f39 napi_frags_finish +EXPORT_SYMBOL vmlinux 0x5d2d23f9 icmp_send +EXPORT_SYMBOL vmlinux 0x5d2dc00a netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x5d44818e journal_get_create_access +EXPORT_SYMBOL vmlinux 0x5d47d433 blk_integrity_is_initialized +EXPORT_SYMBOL vmlinux 0x5d4ff060 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x5d5b5a16 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x5d73a318 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d922611 kmap_atomic_to_page +EXPORT_SYMBOL vmlinux 0x5d980d2f dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x5da41452 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x5dbb6293 kobject_get +EXPORT_SYMBOL vmlinux 0x5dc4930c generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x5dc7843b mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x5dce6b75 complete_and_exit +EXPORT_SYMBOL vmlinux 0x5de037e5 scsi_free_command +EXPORT_SYMBOL vmlinux 0x5e0e60be pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x5e2473d4 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x5e416fc0 force_sig +EXPORT_SYMBOL vmlinux 0x5e44a944 sk_run_filter +EXPORT_SYMBOL vmlinux 0x5e5e36fd ip6_frag_match +EXPORT_SYMBOL vmlinux 0x5e6947f7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x5e8dae4a dquot_commit_info +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e9a3c5b set_create_files_as +EXPORT_SYMBOL vmlinux 0x5eadf54a module_layout +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed5be8b vfs_statfs +EXPORT_SYMBOL vmlinux 0x5edd0762 bin2bcd +EXPORT_SYMBOL vmlinux 0x5eed5408 tty_free_termios +EXPORT_SYMBOL vmlinux 0x5ef306a1 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x5ef33802 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f12014b contig_page_data +EXPORT_SYMBOL vmlinux 0x5f17dd52 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5f1bd579 mca_find_adapter +EXPORT_SYMBOL vmlinux 0x5f20677c dquot_scan_active +EXPORT_SYMBOL vmlinux 0x5f242241 tcp_child_process +EXPORT_SYMBOL vmlinux 0x5f27544a mempool_destroy +EXPORT_SYMBOL vmlinux 0x5f287716 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x5f45170c cdrom_open +EXPORT_SYMBOL vmlinux 0x5f53a31a inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x5f58f676 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x5f84e33a tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x5fa17c73 sk_filter_release_rcu +EXPORT_SYMBOL vmlinux 0x5fba263a bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x5fd05345 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x5fe41fb6 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x5ff42b08 acpi_video_get_capabilities +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6027fa09 iunique +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60450aa3 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x605da13f empty_aops +EXPORT_SYMBOL vmlinux 0x606ba2a6 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x606cf978 llc_sap_open +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b2e38a rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x60fefbc1 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x60ff388b input_set_abs_params +EXPORT_SYMBOL vmlinux 0x612390ad netpoll_set_trap +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612e6013 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x6151c407 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x61536865 idr_destroy +EXPORT_SYMBOL vmlinux 0x6191735b __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x619b187b add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x61ac182e sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x61b5ade0 down_write +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61e1e99d swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x6217b161 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x621d77a0 sleep_on +EXPORT_SYMBOL vmlinux 0x621ee779 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6226b9fa machine_to_phys_mapping +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622fa02a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x62411e0d __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache +EXPORT_SYMBOL vmlinux 0x625024da would_dump +EXPORT_SYMBOL vmlinux 0x6256cf13 __seq_open_private +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6279d762 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x627cb15b dev_get_flags +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x6285179d dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x6290e59b dma_sync_wait +EXPORT_SYMBOL vmlinux 0x62c3c2e8 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x62cb4cee interruptible_sleep_on +EXPORT_SYMBOL vmlinux 0x62cd8754 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x62d3be22 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x62f974d0 directly_mappable_cdev_bdi +EXPORT_SYMBOL vmlinux 0x63048c30 blk_register_region +EXPORT_SYMBOL vmlinux 0x630dd0ae fddi_type_trans +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6320727d iterate_supers_type +EXPORT_SYMBOL vmlinux 0x6322993f get_fs_type +EXPORT_SYMBOL vmlinux 0x6326972f ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x6332cc1a audit_log_start +EXPORT_SYMBOL vmlinux 0x6337dfce ab8500_gpadc_convert +EXPORT_SYMBOL vmlinux 0x6346c9bb input_register_handler +EXPORT_SYMBOL vmlinux 0x635932c0 search_binary_handler +EXPORT_SYMBOL vmlinux 0x635ef0f8 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x63bd5175 pci_map_rom +EXPORT_SYMBOL vmlinux 0x63c0a402 security_path_chmod +EXPORT_SYMBOL vmlinux 0x63cccbb9 __d_drop +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ecad53 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x63f11f72 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x641341e8 splice_from_pipe_feed +EXPORT_SYMBOL vmlinux 0x64327d3a release_pages +EXPORT_SYMBOL vmlinux 0x643eaec8 param_get_string +EXPORT_SYMBOL vmlinux 0x64474cac i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x64557fa2 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x6478134c ec_burst_enable +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64b4ed8b d_lookup +EXPORT_SYMBOL vmlinux 0x64c2ce7a xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x64d3d482 __kfree_skb +EXPORT_SYMBOL vmlinux 0x64e3143e genl_unregister_ops +EXPORT_SYMBOL vmlinux 0x64e72579 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65220759 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6527e8bf gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x65291cff timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0x6535acc6 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x653a14af vfs_link +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65414e67 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6555cdae tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x657879ce __init_rwsem +EXPORT_SYMBOL vmlinux 0x6585e310 alloc_pages_exact_nid +EXPORT_SYMBOL vmlinux 0x65897a64 skb_gso_segment +EXPORT_SYMBOL vmlinux 0x6599d885 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x659eea60 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x65adb684 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x65bcc1f6 devm_ioremap +EXPORT_SYMBOL vmlinux 0x65be039e scsi_unregister +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65df2272 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x65e095f8 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x65ef5276 cap_file_mmap +EXPORT_SYMBOL vmlinux 0x65f9a470 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x6605f97f flex_array_clear +EXPORT_SYMBOL vmlinux 0x6620797a insert_inode_locked +EXPORT_SYMBOL vmlinux 0x66355efc vprintk +EXPORT_SYMBOL vmlinux 0x6644ab88 pnpbios_protocol +EXPORT_SYMBOL vmlinux 0x66458bdd tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x664d7ba5 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x66731167 md_register_thread +EXPORT_SYMBOL vmlinux 0x667cd4cb __invalidate_device +EXPORT_SYMBOL vmlinux 0x668da8d5 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x669dd28a posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x66a67dab flex_array_shrink +EXPORT_SYMBOL vmlinux 0x66b80a6d phy_connect_direct +EXPORT_SYMBOL vmlinux 0x66cd1c8d register_snap_client +EXPORT_SYMBOL vmlinux 0x66d0ee54 vfsmount_lock_global_unlock +EXPORT_SYMBOL vmlinux 0x66e9fdc2 generic_read_dir +EXPORT_SYMBOL vmlinux 0x66ee316d skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x67053080 current_kernel_time +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67528d12 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x677cf6d7 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x67804a19 __any_online_cpu +EXPORT_SYMBOL vmlinux 0x6793fc12 phy_device_register +EXPORT_SYMBOL vmlinux 0x67a4a2bd rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x67ab6b74 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b30aca napi_gro_flush +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bba76b pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x67dcdf0e blk_rq_init +EXPORT_SYMBOL vmlinux 0x67e3f800 may_umount_tree +EXPORT_SYMBOL vmlinux 0x67f7403e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x67fdc02a pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x6801ead4 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x682768f1 register_qdisc +EXPORT_SYMBOL vmlinux 0x6849e7a8 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x68531e9c pci_get_slot +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68ac7418 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x69170414 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x6918b935 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x692a568a dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x693395b7 sync_blockdev +EXPORT_SYMBOL vmlinux 0x69502e3e phy_print_status +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697e50a4 sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x698d0a84 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69d38ed9 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x69da5d1e bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x69df0380 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x69e27c7a bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x69e404b3 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x69e598f9 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x69e8dfd3 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x6a48e16b percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a8c03ea jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x6a90c961 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x6a9423c9 generic_pipe_buf_unmap +EXPORT_SYMBOL vmlinux 0x6a99e793 ppp_input_error +EXPORT_SYMBOL vmlinux 0x6aae2acb call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x6abf920c seq_open +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6acffd49 blk_put_request +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aea13b6 pm860x_page_reg_read +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b1f833c sk_receive_skb +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b334c20 sg_miter_next +EXPORT_SYMBOL vmlinux 0x6b3a6190 journal_init_inode +EXPORT_SYMBOL vmlinux 0x6b52657b dput +EXPORT_SYMBOL vmlinux 0x6b646332 elv_add_request +EXPORT_SYMBOL vmlinux 0x6b89b2bd simple_unlink +EXPORT_SYMBOL vmlinux 0x6b937ffb mca_mark_as_used +EXPORT_SYMBOL vmlinux 0x6ba4db6e padata_add_cpu +EXPORT_SYMBOL vmlinux 0x6baae653 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd178fd __blk_run_queue +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be9ffcd free_buffer_head +EXPORT_SYMBOL vmlinux 0x6bf0f389 mmc_host_disable +EXPORT_SYMBOL vmlinux 0x6bf70fc4 pci_find_capability +EXPORT_SYMBOL vmlinux 0x6c06b929 inet_getname +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c26229d tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x6c2b3e01 elv_register_queue +EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp +EXPORT_SYMBOL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL vmlinux 0x6c5e861a dev_uc_init +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8b020f mca_device_read_pos +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cf8d3e4 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d13be61 skb_recycle +EXPORT_SYMBOL vmlinux 0x6d1e7312 lock_super +EXPORT_SYMBOL vmlinux 0x6d27ef64 __bitmap_empty +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d5bfec4 x86_hyper_xen_hvm +EXPORT_SYMBOL vmlinux 0x6d6b06a8 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x6d6cbadc rb_last +EXPORT_SYMBOL vmlinux 0x6d765aac touch_atime +EXPORT_SYMBOL vmlinux 0x6d7982f4 seq_release_private +EXPORT_SYMBOL vmlinux 0x6d7d978d inet6_bind +EXPORT_SYMBOL vmlinux 0x6d9cd52f blk_run_queue +EXPORT_SYMBOL vmlinux 0x6db7c23a unregister_exec_domain +EXPORT_SYMBOL vmlinux 0x6de645f9 bd_set_size +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6e01ebcc dev_uc_sync +EXPORT_SYMBOL vmlinux 0x6e15d316 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x6e2f8333 ihold +EXPORT_SYMBOL vmlinux 0x6e3e20d1 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x6e4311ef tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x6e51ac2e _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x6e65f2dc rtc_lock +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e80e1e1 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x6e8dd78f pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x6e980bf5 skb_put +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb82da7 fail_migrate_page +EXPORT_SYMBOL vmlinux 0x6ef14279 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x6ef7e8c3 register_quota_format +EXPORT_SYMBOL vmlinux 0x6f2cdcb0 uart_resume_port +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f7b4765 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x6f8238fd __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x6fa707b6 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x6fbe36b7 splice_from_pipe_begin +EXPORT_SYMBOL vmlinux 0x6fc2d0a4 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6fee0619 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x6fee765d dev_addr_del +EXPORT_SYMBOL vmlinux 0x6fff393f time_to_tm +EXPORT_SYMBOL vmlinux 0x700cd7c7 mmc_card_can_sleep +EXPORT_SYMBOL vmlinux 0x70236c3f filp_close +EXPORT_SYMBOL vmlinux 0x702e7f8e udp_sendmsg +EXPORT_SYMBOL vmlinux 0x703b4352 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70720f8d generic_file_splice_write +EXPORT_SYMBOL vmlinux 0x70bc17d7 inode_wait +EXPORT_SYMBOL vmlinux 0x70ced997 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x70d053fd try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70ea6faf iterate_mounts +EXPORT_SYMBOL vmlinux 0x7114a71f bit_waitqueue +EXPORT_SYMBOL vmlinux 0x71202709 pci_disable_ido +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x71429fb7 fb_class +EXPORT_SYMBOL vmlinux 0x7164a895 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x7165ee69 inet_frag_evictor +EXPORT_SYMBOL vmlinux 0x716a3f1e inode_change_ok +EXPORT_SYMBOL vmlinux 0x716cf2a0 proto_register +EXPORT_SYMBOL vmlinux 0x716f1cb7 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718c497c block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c144f7 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x71c873e9 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x7234eafb otg_state_string +EXPORT_SYMBOL vmlinux 0x72670ff7 wake_up_process +EXPORT_SYMBOL vmlinux 0x72689ab6 pci_iounmap +EXPORT_SYMBOL vmlinux 0x726c7a31 set_pages_uc +EXPORT_SYMBOL vmlinux 0x727bdb2e skb_trim +EXPORT_SYMBOL vmlinux 0x728223fb blkdev_fsync +EXPORT_SYMBOL vmlinux 0x72aa82c6 param_ops_charp +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72bec8d4 register_console +EXPORT_SYMBOL vmlinux 0x72bf2140 mtrr_add +EXPORT_SYMBOL vmlinux 0x72cf0ace skb_checksum_help +EXPORT_SYMBOL vmlinux 0x72d544f8 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72d77f22 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x72df2f2a up_read +EXPORT_SYMBOL vmlinux 0x72e2bc4f input_close_device +EXPORT_SYMBOL vmlinux 0x72e50086 vm_stat +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ebda65 journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x730a1a58 irq_set_chip +EXPORT_SYMBOL vmlinux 0x730ff363 param_set_uint +EXPORT_SYMBOL vmlinux 0x731e35af rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x73260931 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x732b7833 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x7362dd1e vfs_fstat +EXPORT_SYMBOL vmlinux 0x736c79dc param_get_byte +EXPORT_SYMBOL vmlinux 0x73767b71 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x737de5e9 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x7383a455 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x7384ee47 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x738803e6 strnlen +EXPORT_SYMBOL vmlinux 0x73a903c4 vfsmount_lock_local_lock +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e3c9ea free_netdev +EXPORT_SYMBOL vmlinux 0x73f11212 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x74042b19 dev_set_group +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x741a6e22 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x745b50ae netdev_class_create_file +EXPORT_SYMBOL vmlinux 0x7469fcfe radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74a45b64 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x74c0b10f address_space_init_once +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cc1cbe unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x74d80856 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x74fa53a8 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x75057721 inet_twsk_deschedule +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x750d5538 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x751b2247 param_get_bool +EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754a5d82 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x754c8c5d make_EII_client +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75ab991e input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x75bb675a finish_wait +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d77139 genl_register_family_with_ops +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760b437a unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x761dc9ae __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x7628f3c7 this_cpu_off +EXPORT_SYMBOL vmlinux 0x762c6b49 __mutex_init +EXPORT_SYMBOL vmlinux 0x763758a1 register_cdrom +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x76584577 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x7661f32b netdev_info +EXPORT_SYMBOL vmlinux 0x7674715c xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76bf656d __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76e96ecf jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x76fb8c7a vsc824x_add_skew +EXPORT_SYMBOL vmlinux 0x77075596 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772f9eec __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x773a9c94 blk_iopoll_enabled +EXPORT_SYMBOL vmlinux 0x773a9f2e names_cachep +EXPORT_SYMBOL vmlinux 0x777539b7 cpu_info +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a2dd5d mca_bus_type +EXPORT_SYMBOL vmlinux 0x77a335c7 redraw_screen +EXPORT_SYMBOL vmlinux 0x77a59839 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77df0847 __set_personality +EXPORT_SYMBOL vmlinux 0x77e63364 softnet_data +EXPORT_SYMBOL vmlinux 0x77ecac9f zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x77edf722 schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x77fa5d1f ns_to_timespec +EXPORT_SYMBOL vmlinux 0x7812f095 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x7820dae7 netif_rx +EXPORT_SYMBOL vmlinux 0x784a3587 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x7853b053 sk_common_release +EXPORT_SYMBOL vmlinux 0x785bec2c jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x785daa5c register_con_driver +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788f6b3d security_path_symlink +EXPORT_SYMBOL vmlinux 0x7893dca6 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x78af506d padata_stop +EXPORT_SYMBOL vmlinux 0x78bb2011 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x790d80f5 kdb_current_task +EXPORT_SYMBOL vmlinux 0x790ecdb0 km_query +EXPORT_SYMBOL vmlinux 0x7921a0e0 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x7931aafc __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x7933d24d sock_no_poll +EXPORT_SYMBOL vmlinux 0x793d4fe6 __serio_register_port +EXPORT_SYMBOL vmlinux 0x7942f452 generic_writepages +EXPORT_SYMBOL vmlinux 0x794487ee disable_hlt +EXPORT_SYMBOL vmlinux 0x7961b08b jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x796c3d87 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79a3ba98 journal_init_dev +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79bb809e pci_read_vpd +EXPORT_SYMBOL vmlinux 0x79c80a32 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x79d47df6 tcp_v4_tw_get_peer +EXPORT_SYMBOL vmlinux 0x79e6e7e8 vfs_read +EXPORT_SYMBOL vmlinux 0x79f612e9 module_refcount +EXPORT_SYMBOL vmlinux 0x7a0af4ac __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7a1390f7 param_set_bool +EXPORT_SYMBOL vmlinux 0x7a1f7948 skb_unlink +EXPORT_SYMBOL vmlinux 0x7a23d3e0 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x7a27c184 ewma_init +EXPORT_SYMBOL vmlinux 0x7a375bfa blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x7a3845f6 writeback_inodes_sb_if_idle +EXPORT_SYMBOL vmlinux 0x7a3b002e journal_restart +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a50a315 files_lglock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x7a64108a set_anon_super +EXPORT_SYMBOL vmlinux 0x7a6efd10 tty_port_init +EXPORT_SYMBOL vmlinux 0x7a9bf88d udplite_table +EXPORT_SYMBOL vmlinux 0x7aa81449 tcf_hash_release +EXPORT_SYMBOL vmlinux 0x7adf6613 input_allocate_device +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b03848a verify_mem_not_deleted +EXPORT_SYMBOL vmlinux 0x7b0c84c4 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7b0dc466 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name +EXPORT_SYMBOL vmlinux 0x7b149010 kern_path +EXPORT_SYMBOL vmlinux 0x7b1a0332 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x7b203e1d abx500_register_ops +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b553e35 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x7b56bd05 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x7b5b5a2b tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x7b5b7779 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x7b65a80f jbd2_journal_update_format +EXPORT_SYMBOL vmlinux 0x7b9263ea ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x7b9a6116 intel_agp_enabled +EXPORT_SYMBOL vmlinux 0x7ba04629 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x7ba94f95 d_move +EXPORT_SYMBOL vmlinux 0x7bd79cb6 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7befa88d udp_seq_open +EXPORT_SYMBOL vmlinux 0x7bf1e073 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x7c104d7e pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x7c206e46 generic_write_sync +EXPORT_SYMBOL vmlinux 0x7c210f56 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x7c219aee __alloc_skb +EXPORT_SYMBOL vmlinux 0x7c35200d netdev_warn +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4cf418 ip_cmsg_recv +EXPORT_SYMBOL vmlinux 0x7c60d66e getname +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c8f22dc __napi_schedule +EXPORT_SYMBOL vmlinux 0x7c904ded unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x7c97b35d ethtool_op_set_flags +EXPORT_SYMBOL vmlinux 0x7ca6d90c pci_match_id +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7ce0ae7c param_get_long +EXPORT_SYMBOL vmlinux 0x7cf94bcb padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x7d0f56d6 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d12119c dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x7d3e8b75 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x7d469c9d fb_show_logo +EXPORT_SYMBOL vmlinux 0x7d5242fd alloc_fddidev +EXPORT_SYMBOL vmlinux 0x7d6c1c74 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x7d8140b7 uart_match_port +EXPORT_SYMBOL vmlinux 0x7d97e1a3 current_fs_time +EXPORT_SYMBOL vmlinux 0x7dadd457 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x7dbb4c1d scsi_put_command +EXPORT_SYMBOL vmlinux 0x7dbc1600 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dc206df blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x7de866c7 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df9ab41 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x7e1805b7 create_proc_entry +EXPORT_SYMBOL vmlinux 0x7e1d17cf atomic64_read_cx8 +EXPORT_SYMBOL vmlinux 0x7e394c4e sysctl_local_reserved_ports +EXPORT_SYMBOL vmlinux 0x7e565f9c bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x7e6364e1 get_disk +EXPORT_SYMBOL vmlinux 0x7e9da58a __page_symlink +EXPORT_SYMBOL vmlinux 0x7e9ebb05 kernel_thread +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7efc4eb0 dma_ops +EXPORT_SYMBOL vmlinux 0x7f18b194 kacpi_hotplug_wq +EXPORT_SYMBOL vmlinux 0x7f2254ed bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f54e718 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x7f658e80 _raw_write_lock +EXPORT_SYMBOL vmlinux 0x7f669992 qdisc_tree_decrease_qlen +EXPORT_SYMBOL vmlinux 0x7fc9bf15 phy_connect +EXPORT_SYMBOL vmlinux 0x7fd0f954 sock_no_getname +EXPORT_SYMBOL vmlinux 0x800df1d7 groups_free +EXPORT_SYMBOL vmlinux 0x8015ee50 sock_rfree +EXPORT_SYMBOL vmlinux 0x801cf88b swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x802255e3 __block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x80301096 acpi_bus_add +EXPORT_SYMBOL vmlinux 0x80387db8 vc_resize +EXPORT_SYMBOL vmlinux 0x806472cf bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x806964cb nf_log_packet +EXPORT_SYMBOL vmlinux 0x808af8d4 pnp_find_card +EXPORT_SYMBOL vmlinux 0x8096b59e register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x80a3449f xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x80a35a77 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x80af5790 mca_device_set_name +EXPORT_SYMBOL vmlinux 0x80becf24 ip_xfrm_me_harder +EXPORT_SYMBOL vmlinux 0x80ec445c get_gendisk +EXPORT_SYMBOL vmlinux 0x80fd08f9 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x80fd1887 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x810b3618 param_ops_string +EXPORT_SYMBOL vmlinux 0x81129869 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x812fdb7e jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x8130d791 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x81317012 tmem_enabled +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x8150c0ba mempool_resize +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x815f8bea __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x8173455f inet_frags_fini +EXPORT_SYMBOL vmlinux 0x818bd5bf read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x819e1c25 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x81a386e1 kobject_init +EXPORT_SYMBOL vmlinux 0x81a5e22a kobject_del +EXPORT_SYMBOL vmlinux 0x81a705a7 input_register_handle +EXPORT_SYMBOL vmlinux 0x81d0ec74 kill_fasync +EXPORT_SYMBOL vmlinux 0x81d10f5f trace_seq_putc +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82034bdc posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820b4aa0 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x8235805b memmove +EXPORT_SYMBOL vmlinux 0x8251bcc3 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x8256666e dcache_dir_close +EXPORT_SYMBOL vmlinux 0x8258d6d8 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x8260686f bitmap_find_next_zero_area +EXPORT_SYMBOL vmlinux 0x827b75f9 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x82a078a3 llc_set_station_handler +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b83592 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x82d5ccb0 journal_update_format +EXPORT_SYMBOL vmlinux 0x82de5d3b pci_release_regions +EXPORT_SYMBOL vmlinux 0x82dff540 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x82e8f3f3 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x82ff5b87 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x83079b24 __dev_printk +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x833112a9 km_policy_notify +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x8343cd74 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x836873a2 proc_dointvec +EXPORT_SYMBOL vmlinux 0x83699014 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x836c9690 dev_mc_add +EXPORT_SYMBOL vmlinux 0x837b4371 agp_free_memory +EXPORT_SYMBOL vmlinux 0x83800bfa kref_init +EXPORT_SYMBOL vmlinux 0x8384a2c5 tty_unlock +EXPORT_SYMBOL vmlinux 0x83880e9c dev_deactivate +EXPORT_SYMBOL vmlinux 0x838c65ca inode_get_bytes +EXPORT_SYMBOL vmlinux 0x83a476ce bitmap_scnlistprintf +EXPORT_SYMBOL vmlinux 0x83dde02f spi_attach_transport +EXPORT_SYMBOL vmlinux 0x83e44af7 bioset_free +EXPORT_SYMBOL vmlinux 0x83f65711 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x84208767 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x842cc160 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x8436f8e3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x8446b626 tty_kref_put +EXPORT_SYMBOL vmlinux 0x8446cf50 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x8461ad69 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x8467d01c jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x846bcc01 dm_table_get +EXPORT_SYMBOL vmlinux 0x8473bd9c jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x849be2bf pci_pme_capable +EXPORT_SYMBOL vmlinux 0x84bacf0d __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x84bd813c rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x84be886f completion_done +EXPORT_SYMBOL vmlinux 0x84d4e850 tcp_check_req +EXPORT_SYMBOL vmlinux 0x84fcc5fc inet_add_protocol +EXPORT_SYMBOL vmlinux 0x85047b1f xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x850c4ddd genl_unregister_family +EXPORT_SYMBOL vmlinux 0x851cd796 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x852617b5 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x85476883 __lock_buffer +EXPORT_SYMBOL vmlinux 0x854da01a scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85822bbf dquot_commit +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85bc4a3b nobh_writepage +EXPORT_SYMBOL vmlinux 0x85c183d1 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x85c377bc netif_receive_skb +EXPORT_SYMBOL vmlinux 0x85cef45d kern_unmount +EXPORT_SYMBOL vmlinux 0x85d16790 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85dfb05b __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x85e6dc7d genl_register_family +EXPORT_SYMBOL vmlinux 0x85e7deb2 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x85e90336 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x860f14e6 __nla_reserve +EXPORT_SYMBOL vmlinux 0x86285bb7 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x86319e85 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x86346e1f kmem_cache_free +EXPORT_SYMBOL vmlinux 0x86348e1a generic_permission +EXPORT_SYMBOL vmlinux 0x8640a237 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x867bfbb7 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8699933a unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x869f5152 arp_invalidate +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86b428b1 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x86b9c0ef textsearch_prepare +EXPORT_SYMBOL vmlinux 0x86bf43c1 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x86bfae20 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x86c2b124 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x86d5255f _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8707e1ea ether_setup +EXPORT_SYMBOL vmlinux 0x870bf928 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872ffc82 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x8734723e blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x8738fb6c thermal_zone_device_update +EXPORT_SYMBOL vmlinux 0x87392639 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x87560435 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x875e7014 simple_link +EXPORT_SYMBOL vmlinux 0x8760c343 bio_kmalloc +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87f6ea06 user_revoke +EXPORT_SYMBOL vmlinux 0x881039d0 zlib_inflate +EXPORT_SYMBOL vmlinux 0x8834396c mod_timer +EXPORT_SYMBOL vmlinux 0x88646107 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x886f7770 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x889a5f62 fib_default_rule_pref +EXPORT_SYMBOL vmlinux 0x88b9b37a blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x88c9e553 scsi_device_put +EXPORT_SYMBOL vmlinux 0x88e181da __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x88ed0505 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x890ffaed security_path_unlink +EXPORT_SYMBOL vmlinux 0x891449a6 secpath_dup +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x8931d996 skb_insert +EXPORT_SYMBOL vmlinux 0x8949858b schedule_work +EXPORT_SYMBOL vmlinux 0x895e47ba max8998_write_reg +EXPORT_SYMBOL vmlinux 0x897473df mktime +EXPORT_SYMBOL vmlinux 0x897a5350 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b09af7 pci_release_region +EXPORT_SYMBOL vmlinux 0x89b140a7 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d66811 build_ehash_secret +EXPORT_SYMBOL vmlinux 0x8a1615d6 mempool_create_node +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a56a687 dev_mc_del +EXPORT_SYMBOL vmlinux 0x8a5e05b4 tcf_hash_lookup +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a82e578 proc_create_data +EXPORT_SYMBOL vmlinux 0x8a93b57a ida_destroy +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9d8b5e pcim_pin_device +EXPORT_SYMBOL vmlinux 0x8ad7ad2d amd_northbridges +EXPORT_SYMBOL vmlinux 0x8ada173c blk_queue_merge_bvec +EXPORT_SYMBOL vmlinux 0x8ada7e0a skb_pull +EXPORT_SYMBOL vmlinux 0x8affa976 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll +EXPORT_SYMBOL vmlinux 0x8b1a7a66 pcie_aspm_enabled +EXPORT_SYMBOL vmlinux 0x8b1d488b pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x8b217b16 ps2_command +EXPORT_SYMBOL vmlinux 0x8b278406 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x8b299456 nobh_write_end +EXPORT_SYMBOL vmlinux 0x8b2dfffc filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b5f4a2e IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b626645 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x8b6456ae nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x8b8e23c4 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x8b912441 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8ba61c8d xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x8bb599f6 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x8bb92f21 md_error +EXPORT_SYMBOL vmlinux 0x8bfcbc35 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c279627 generic_file_open +EXPORT_SYMBOL vmlinux 0x8c2f77b3 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x8c39d215 generic_file_buffered_write +EXPORT_SYMBOL vmlinux 0x8c4dbcc2 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x8c52123c bdi_register_dev +EXPORT_SYMBOL vmlinux 0x8c592a3c skb_queue_head +EXPORT_SYMBOL vmlinux 0x8c83ad40 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x8c90c2c9 intel_gtt_insert_pages +EXPORT_SYMBOL vmlinux 0x8c93df8e gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8cc4f7fd tcf_hash_destroy +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cd8523b fb_set_suspend +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ce302db generic_file_aio_read +EXPORT_SYMBOL vmlinux 0x8d06f36c tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x8d546088 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d5aa2cc do_splice_from +EXPORT_SYMBOL vmlinux 0x8d662712 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d8ab3e4 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d9e62fd locks_delete_block +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8dbd2eb8 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e08db26 generic_listxattr +EXPORT_SYMBOL vmlinux 0x8e0a2785 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x8e0b7743 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x8e1d32b6 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x8e2208d4 fsync_bdev +EXPORT_SYMBOL vmlinux 0x8e4e6488 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x8e555738 param_get_uint +EXPORT_SYMBOL vmlinux 0x8e75a30b kset_unregister +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8eb141f1 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x8ebe90a1 register_key_type +EXPORT_SYMBOL vmlinux 0x8edf2abb mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x8ee69235 timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8ee7bc1b i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x8f040051 pnp_is_active +EXPORT_SYMBOL vmlinux 0x8f110738 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f27339c mca_device_read_stored_pos +EXPORT_SYMBOL vmlinux 0x8f4575cd vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x8f48679a rb_prev +EXPORT_SYMBOL vmlinux 0x8f4c445f __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x8f993d30 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fc7f839 param_set_charp +EXPORT_SYMBOL vmlinux 0x8fc86799 genl_register_ops +EXPORT_SYMBOL vmlinux 0x8fd0af7c blk_get_queue +EXPORT_SYMBOL vmlinux 0x8fe64ba3 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops +EXPORT_SYMBOL vmlinux 0x8ff66782 param_get_ushort +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x900ebc9b pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x9088e0cb __dst_free +EXPORT_SYMBOL vmlinux 0x908d1867 security_path_mknod +EXPORT_SYMBOL vmlinux 0x90a1601f dmi_check_system +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90cbf0e7 d_set_d_op +EXPORT_SYMBOL vmlinux 0x90e8f9df tty_unthrottle +EXPORT_SYMBOL vmlinux 0x90f13632 proc_dostring +EXPORT_SYMBOL vmlinux 0x90f50e85 ps2_init +EXPORT_SYMBOL vmlinux 0x9133b3a6 ip_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x913a3330 mpage_readpage +EXPORT_SYMBOL vmlinux 0x9144a8e2 ec_burst_disable +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x916d68e8 dcb_getapp +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x919e0654 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x91d5a808 serio_interrupt +EXPORT_SYMBOL vmlinux 0x91e61b65 pci_dev_get +EXPORT_SYMBOL vmlinux 0x921bb6d3 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x9221433c abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x922c1c3d generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x924030b4 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x924dd7a6 register_framebuffer +EXPORT_SYMBOL vmlinux 0x9274e6b7 fb_find_mode +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x92a05f3d idr_get_new +EXPORT_SYMBOL vmlinux 0x92a87fa5 journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x92b00c57 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x92bb2e74 tty_write_room +EXPORT_SYMBOL vmlinux 0x92d1e190 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x92f8022c phy_start_aneg +EXPORT_SYMBOL vmlinux 0x930559e2 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931eff4d mmc_detect_change +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9323ebc3 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x9331365d proc_mkdir +EXPORT_SYMBOL vmlinux 0x93448c57 screen_info +EXPORT_SYMBOL vmlinux 0x93762d54 key_task_permission +EXPORT_SYMBOL vmlinux 0x93953182 tcf_em_register +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93c3f0a0 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x93c651be acpi_info +EXPORT_SYMBOL vmlinux 0x93c9cb50 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x94078b96 generic_file_aio_write +EXPORT_SYMBOL vmlinux 0x941dcfcb nlmsg_notify +EXPORT_SYMBOL vmlinux 0x941ed3f8 prepare_creds +EXPORT_SYMBOL vmlinux 0x945e824e put_mnt_ns +EXPORT_SYMBOL vmlinux 0x946a2972 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x946a5b4d kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x946abbe3 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x948413d8 fb_blank +EXPORT_SYMBOL vmlinux 0x94864c7a wl12xx_get_platform_data +EXPORT_SYMBOL vmlinux 0x94892821 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94975774 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x94a689f3 thermal_cooling_device_register +EXPORT_SYMBOL vmlinux 0x94aabb06 journal_force_commit +EXPORT_SYMBOL vmlinux 0x94af87c2 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94c8c66d pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x94fcd2c1 account_page_writeback +EXPORT_SYMBOL vmlinux 0x950c7e5f scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x952e760e dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x953db383 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x954488a4 syncookie_secret +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95660fc5 find_vma +EXPORT_SYMBOL vmlinux 0x956d34e4 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x9580f7bc vm_event_states +EXPORT_SYMBOL vmlinux 0x95aecce7 lease_modify +EXPORT_SYMBOL vmlinux 0x95b78685 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x95d601ea tcp_shutdown +EXPORT_SYMBOL vmlinux 0x95f82c37 vfs_symlink +EXPORT_SYMBOL vmlinux 0x95f89a33 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x9600168c kobject_add +EXPORT_SYMBOL vmlinux 0x9607b206 do_SAK +EXPORT_SYMBOL vmlinux 0x960a3c1c find_inode_number +EXPORT_SYMBOL vmlinux 0x96110091 padata_alloc +EXPORT_SYMBOL vmlinux 0x962317d0 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x962bcbac invalidate_partition +EXPORT_SYMBOL vmlinux 0x962c314f km_state_notify +EXPORT_SYMBOL vmlinux 0x963d79bb netif_napi_add +EXPORT_SYMBOL vmlinux 0x9644bb6f xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x9657a61c check_disk_size_change +EXPORT_SYMBOL vmlinux 0x96597bce filemap_flush +EXPORT_SYMBOL vmlinux 0x965b1415 d_clear_need_lookup +EXPORT_SYMBOL vmlinux 0x9661408b sock_create_lite +EXPORT_SYMBOL vmlinux 0x9668217e scsi_get_command +EXPORT_SYMBOL vmlinux 0x967760f5 padata_start +EXPORT_SYMBOL vmlinux 0x96805377 acpi_bus_generate_proc_event +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x9695e479 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x9696ac72 rename_lock +EXPORT_SYMBOL vmlinux 0x96a592f6 seq_puts +EXPORT_SYMBOL vmlinux 0x96c37fb5 tcp_v4_md5_do_add +EXPORT_SYMBOL vmlinux 0x96c5574e phy_disconnect +EXPORT_SYMBOL vmlinux 0x96c7e43b seq_printf +EXPORT_SYMBOL vmlinux 0x96ca9fbe dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d07ecf sk_wait_data +EXPORT_SYMBOL vmlinux 0x96d1f2a7 mmc_assume_removable +EXPORT_SYMBOL vmlinux 0x96d3e1e8 xfrm_input +EXPORT_SYMBOL vmlinux 0x96e79739 idr_get_new_above +EXPORT_SYMBOL vmlinux 0x96fd3db7 netif_device_attach +EXPORT_SYMBOL vmlinux 0x96fe9699 block_write_end +EXPORT_SYMBOL vmlinux 0x97069598 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x971eb5ba journal_abort +EXPORT_SYMBOL vmlinux 0x9726063f sk_filter +EXPORT_SYMBOL vmlinux 0x9738c7e7 mount_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97738525 thaw_bdev +EXPORT_SYMBOL vmlinux 0x9787e2ee xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x978b756f ilookup +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97aa037a ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x97b4497a block_write_full_page_endio +EXPORT_SYMBOL vmlinux 0x97bdea2a phy_detach +EXPORT_SYMBOL vmlinux 0x97cf8823 d_find_alias +EXPORT_SYMBOL vmlinux 0x97dcef29 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x9801f8cc vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x98488596 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x9852172f neigh_compat_output +EXPORT_SYMBOL vmlinux 0x986578e9 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x986ad43b neigh_destroy +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9879932f udp_disconnect +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98a7cda5 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x98aa5b1f scsi_print_sense +EXPORT_SYMBOL vmlinux 0x98ad9224 alloc_tty_driver +EXPORT_SYMBOL vmlinux 0x98b1d7b6 journal_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x98c1cb3a simple_release_fs +EXPORT_SYMBOL vmlinux 0x98fa21b0 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x98fab251 vm_map_ram +EXPORT_SYMBOL vmlinux 0x9903ab4c locks_free_lock +EXPORT_SYMBOL vmlinux 0x99052a84 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x9933beb2 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x994a2d2a bdget +EXPORT_SYMBOL vmlinux 0x99525e3a vfsmount_lock_local_unlock +EXPORT_SYMBOL vmlinux 0x995aeda1 vga_put +EXPORT_SYMBOL vmlinux 0x995fc7bb kick_iocb +EXPORT_SYMBOL vmlinux 0x99601c95 block_read_full_page +EXPORT_SYMBOL vmlinux 0x996464ab scsi_remove_host +EXPORT_SYMBOL vmlinux 0x997e77de bitmap_unplug +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a3b02d dentry_unhash +EXPORT_SYMBOL vmlinux 0x99ac2c96 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x99bfbe39 get_unused_fd +EXPORT_SYMBOL vmlinux 0x99c61e6b path_put +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x9a1794e2 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a47f201 revalidate_disk +EXPORT_SYMBOL vmlinux 0x9a57534d blk_get_request +EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock +EXPORT_SYMBOL vmlinux 0x9a87f92e netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x9aa56d4e spi_dv_device +EXPORT_SYMBOL vmlinux 0x9ab8808c param_get_charp +EXPORT_SYMBOL vmlinux 0x9b0dfa29 __netif_schedule +EXPORT_SYMBOL vmlinux 0x9b0e7bd7 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x9b2f48e4 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x9b32be35 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b5f43b4 fput +EXPORT_SYMBOL vmlinux 0x9b604f4c cdev_add +EXPORT_SYMBOL vmlinux 0x9b6735f2 skb_copy_datagram_from_iovec +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b7553ed serio_open +EXPORT_SYMBOL vmlinux 0x9b75cb81 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x9b7db57d noop_llseek +EXPORT_SYMBOL vmlinux 0x9ba4efa4 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bcd1c34 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x9bea5682 md_write_start +EXPORT_SYMBOL vmlinux 0x9bf68e21 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x9c012508 fb_parse_edid +EXPORT_SYMBOL vmlinux 0x9c07bb26 dev_warn +EXPORT_SYMBOL vmlinux 0x9c11d36c acpi_device_hid +EXPORT_SYMBOL vmlinux 0x9c23a8ba journal_check_used_features +EXPORT_SYMBOL vmlinux 0x9c23bcba atomic64_add_return_cx8 +EXPORT_SYMBOL vmlinux 0x9c28f5bb pci_set_mwi +EXPORT_SYMBOL vmlinux 0x9c2ae854 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero +EXPORT_SYMBOL vmlinux 0x9c388c50 pci_iomap +EXPORT_SYMBOL vmlinux 0x9c416858 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x9c468320 wireless_send_event +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5f81da cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x9c60b306 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x9c6ca133 mdiobus_free +EXPORT_SYMBOL vmlinux 0x9c7077bd enable_hlt +EXPORT_SYMBOL vmlinux 0x9c7de1ef blkdev_put +EXPORT_SYMBOL vmlinux 0x9c8bafc8 set_binfmt +EXPORT_SYMBOL vmlinux 0x9c8ecd26 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0x9c99668b vmtruncate +EXPORT_SYMBOL vmlinux 0x9c9a1284 sk_free +EXPORT_SYMBOL vmlinux 0x9c9dd324 neigh_update +EXPORT_SYMBOL vmlinux 0x9cb96e92 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x9cbe32ee page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x9cca8299 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x9cdf0ec5 vfsmount_lock_global_lock_online +EXPORT_SYMBOL vmlinux 0x9ceb163c memcpy_toiovec +EXPORT_SYMBOL vmlinux 0x9cf977d7 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x9cfd56c5 scsi_print_status +EXPORT_SYMBOL vmlinux 0x9d09026d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x9d227349 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d44a233 bh_submit_read +EXPORT_SYMBOL vmlinux 0x9d46e197 scsi_host_put +EXPORT_SYMBOL vmlinux 0x9d49103b blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x9d5175fa ip_setsockopt +EXPORT_SYMBOL vmlinux 0x9d7e96d3 elv_rb_add +EXPORT_SYMBOL vmlinux 0x9d831567 mmc_regulator_set_ocr +EXPORT_SYMBOL vmlinux 0x9dc08199 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x9dcb6748 atomic64_xchg_cx8 +EXPORT_SYMBOL vmlinux 0x9dfeb2df pci_do_scan_bus +EXPORT_SYMBOL vmlinux 0x9e097ae4 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0d49db poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x9e2000a7 memcpy_toiovecend +EXPORT_SYMBOL vmlinux 0x9e20eaf0 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4133c3 neigh_table_init +EXPORT_SYMBOL vmlinux 0x9e4b3747 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e607910 audit_log +EXPORT_SYMBOL vmlinux 0x9e617cbb ab3100_event_register +EXPORT_SYMBOL vmlinux 0x9e621907 no_llseek +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e915aea ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x9e9f1714 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x9ea0ad49 __sg_free_table +EXPORT_SYMBOL vmlinux 0x9eb0f7e0 pm860x_page_bulk_write +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ed48b86 vfs_llseek +EXPORT_SYMBOL vmlinux 0x9ed685ee iov_iter_advance +EXPORT_SYMBOL vmlinux 0x9ee26cce bio_integrity_tag_size +EXPORT_SYMBOL vmlinux 0x9eecde16 do_brk +EXPORT_SYMBOL vmlinux 0x9f2bdaac __bitmap_or +EXPORT_SYMBOL vmlinux 0x9f2d4bfb __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f491e5d ftrace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x9f5f15ce __free_pages +EXPORT_SYMBOL vmlinux 0x9f838b41 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x9f86494c scsi_reset_provider +EXPORT_SYMBOL vmlinux 0x9f90b565 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x9f939fa8 file_remove_suid +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9c1cfd skb_set_dev +EXPORT_SYMBOL vmlinux 0x9fa851d0 lookup_one_len +EXPORT_SYMBOL vmlinux 0x9fb2aa48 otg_set_transceiver +EXPORT_SYMBOL vmlinux 0x9fb3dd30 memcpy_fromiovec +EXPORT_SYMBOL vmlinux 0x9fbb57d2 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x9fcd7f53 netdev_state_change +EXPORT_SYMBOL vmlinux 0x9fd29b6b pci_vpd_truncate +EXPORT_SYMBOL vmlinux 0x9fd9d400 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff8adda vfs_mkdir +EXPORT_SYMBOL vmlinux 0xa02d6774 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04b245e simple_setattr +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa072c77d writeback_inodes_sb_nr_if_idle +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa0a83c6c tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xa0aa710b mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c14dee mmc_can_reset +EXPORT_SYMBOL vmlinux 0xa0ceef51 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xa0e11bdf agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1176147 pci_clear_master +EXPORT_SYMBOL vmlinux 0xa118c60f cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12b43ba qdisc_watchdog_schedule +EXPORT_SYMBOL vmlinux 0xa1326b10 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xa14f3d8c ewma_add +EXPORT_SYMBOL vmlinux 0xa16b1085 scsi_init_io +EXPORT_SYMBOL vmlinux 0xa1715001 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa1805d2a otg_put_transceiver +EXPORT_SYMBOL vmlinux 0xa19eda5e nf_afinfo +EXPORT_SYMBOL vmlinux 0xa1a2bba2 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xa1a8e7dd locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xa1b1ea3a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xa1b26357 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1b85a07 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xa1ba2fdb vfsmount_lock_global_lock +EXPORT_SYMBOL vmlinux 0xa1c4632a dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xa1c5a3b3 cleancache_enabled +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d31239 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xa1f61226 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xa20ce1b8 net_msg_warn +EXPORT_SYMBOL vmlinux 0xa2233988 scsi_setup_fs_cmnd +EXPORT_SYMBOL vmlinux 0xa23861c5 dquot_transfer +EXPORT_SYMBOL vmlinux 0xa26f6f4a pci_choose_state +EXPORT_SYMBOL vmlinux 0xa27484e7 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa290feb9 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xa2a5fd77 inet_ehash_secret +EXPORT_SYMBOL vmlinux 0xa2a8c8c2 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xa2abe2c2 dev_gro_receive +EXPORT_SYMBOL vmlinux 0xa2c56c31 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa2da7af4 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xa2dcea84 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xa2ef34d7 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xa32629f6 dns_query +EXPORT_SYMBOL vmlinux 0xa332cdd1 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa336e637 agp_bridge +EXPORT_SYMBOL vmlinux 0xa3438ba1 bdev_read_only +EXPORT_SYMBOL vmlinux 0xa34f1ef5 crc32_le +EXPORT_SYMBOL vmlinux 0xa3504378 rwsem_wake +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa3516645 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xa3586c41 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xa35de80f ipv4_config +EXPORT_SYMBOL vmlinux 0xa363dab4 udp_table +EXPORT_SYMBOL vmlinux 0xa3794560 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xa380fb0b get_io_context +EXPORT_SYMBOL vmlinux 0xa3a9f975 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xa3b71417 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xa3cea1a6 __put_cred +EXPORT_SYMBOL vmlinux 0xa3d08a5a tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xa3de105c pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xa3f52e9a crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xa40f4a12 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xa415aff8 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xa425be23 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xa42a774b ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa43b9539 memcpy_fromiovecend +EXPORT_SYMBOL vmlinux 0xa47a5bb0 path_get +EXPORT_SYMBOL vmlinux 0xa47dbe56 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xa49d81e6 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xa49f504a netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xa4a05eae rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c7d6f0 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4eb4eff _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa4f44685 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xa4fdfe10 write_cache_pages +EXPORT_SYMBOL vmlinux 0xa51596a5 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP +EXPORT_SYMBOL vmlinux 0xa5208416 pipe_lock +EXPORT_SYMBOL vmlinux 0xa52343f1 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xa5365f38 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0xa56619f4 mmc_cache_ctrl +EXPORT_SYMBOL vmlinux 0xa57d31bc generic_fillattr +EXPORT_SYMBOL vmlinux 0xa5869f5c pci_fixup_device +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5aec8b2 input_set_capability +EXPORT_SYMBOL vmlinux 0xa5c77234 release_firmware +EXPORT_SYMBOL vmlinux 0xa5d7f962 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xa5da0abd acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0xa5de081b inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa6064db5 dma_async_memcpy_buf_to_pg +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa65ef254 km_report +EXPORT_SYMBOL vmlinux 0xa6603c22 blk_init_queue +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67da660 mempool_alloc +EXPORT_SYMBOL vmlinux 0xa67e2845 dq_data_lock +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6b13658 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xa6ba939f pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xa6dcc773 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa6f8ecc7 sock_no_bind +EXPORT_SYMBOL vmlinux 0xa70ad971 ethtool_op_get_ufo +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa71b2c72 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xa71e7463 __first_cpu +EXPORT_SYMBOL vmlinux 0xa7259c42 ethtool_op_get_tx_csum +EXPORT_SYMBOL vmlinux 0xa730817c jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xa7515ade md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xa759563d kill_anon_super +EXPORT_SYMBOL vmlinux 0xa76075fa file_update_time +EXPORT_SYMBOL vmlinux 0xa773cfb6 ata_print_version +EXPORT_SYMBOL vmlinux 0xa7a8d53e bdevname +EXPORT_SYMBOL vmlinux 0xa813dec2 vfs_readv +EXPORT_SYMBOL vmlinux 0xa813e328 bio_pair_release +EXPORT_SYMBOL vmlinux 0xa8223905 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa8232c78 strtobool +EXPORT_SYMBOL vmlinux 0xa82349f7 journal_extend +EXPORT_SYMBOL vmlinux 0xa8371bae add_disk +EXPORT_SYMBOL vmlinux 0xa83c6858 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xa8417b5e truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xa843e6c3 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xa85eda9c swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xa8a6f639 __check_region +EXPORT_SYMBOL vmlinux 0xa8b461aa kernel_getsockname +EXPORT_SYMBOL vmlinux 0xa8bfbc3c i2c_use_client +EXPORT_SYMBOL vmlinux 0xa8d68abd acpi_warning +EXPORT_SYMBOL vmlinux 0xa8d9f571 lro_flush_pkt +EXPORT_SYMBOL vmlinux 0xa8e89f17 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xa8f4ac3f neigh_seq_start +EXPORT_SYMBOL vmlinux 0xa8fb6345 pnp_find_dev +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa918c518 read_cache_pages +EXPORT_SYMBOL vmlinux 0xa91b5561 acpi_video_backlight_support +EXPORT_SYMBOL vmlinux 0xa9405fd3 input_get_keycode +EXPORT_SYMBOL vmlinux 0xa956118b nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xa967eb14 mmc_erase +EXPORT_SYMBOL vmlinux 0xa96caa11 pcim_iomap +EXPORT_SYMBOL vmlinux 0xa96f9535 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xa971103b seq_path +EXPORT_SYMBOL vmlinux 0xa9aa1170 vfs_readlink +EXPORT_SYMBOL vmlinux 0xa9c1b627 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xa9d87dbd scsi_scan_host +EXPORT_SYMBOL vmlinux 0xa9da541c ethtool_op_get_flags +EXPORT_SYMBOL vmlinux 0xa9e37dc5 i2c_master_send +EXPORT_SYMBOL vmlinux 0xa9f2fbe6 ipv4_specific +EXPORT_SYMBOL vmlinux 0xaa130e36 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xaa1a416b do_sync_read +EXPORT_SYMBOL vmlinux 0xaa36fb07 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xaa42713a iget_failed +EXPORT_SYMBOL vmlinux 0xaa4806e1 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xaa6388a5 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa84a8ae acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0xaa8ea24b dev_get_by_flags_rcu +EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xaab9f7e7 node_states +EXPORT_SYMBOL vmlinux 0xaac18794 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xaac94312 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadc7e3e in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaebe34f mca_write_pos +EXPORT_SYMBOL vmlinux 0xaaf45875 acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab20cbe7 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xab28271c i8253_lock +EXPORT_SYMBOL vmlinux 0xab53630f dcache_dir_open +EXPORT_SYMBOL vmlinux 0xab585dd0 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab644581 ip_route_input_common +EXPORT_SYMBOL vmlinux 0xab65ed80 set_memory_uc +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab7d3e57 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xab81e093 write_one_page +EXPORT_SYMBOL vmlinux 0xab8c3b82 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xaba4cb63 generic_make_request +EXPORT_SYMBOL vmlinux 0xaba7ed15 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xabb9ad25 generic_write_checks +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcc0148 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xabd0c91c rtc_time_to_tm +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac17b6bd napi_skb_finish +EXPORT_SYMBOL vmlinux 0xac2fc3d5 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xac35daa6 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xac406045 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xac51a435 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xac58ea5e acpi_unload_table_id +EXPORT_SYMBOL vmlinux 0xac5e039f input_flush_device +EXPORT_SYMBOL vmlinux 0xac6855b0 gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xac6878e4 atomic64_inc_return_cx8 +EXPORT_SYMBOL vmlinux 0xac78f3e3 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xac98093c blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xaca7f36a skb_free_datagram +EXPORT_SYMBOL vmlinux 0xacb7ca1c release_sock +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xace3dac4 follow_up +EXPORT_SYMBOL vmlinux 0xacee9829 dev_notice +EXPORT_SYMBOL vmlinux 0xacf151db eth_header +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf5f80f scsi_host_get +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad07f027 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xad13c689 acpi_os_execute +EXPORT_SYMBOL vmlinux 0xad466018 quota_send_warning +EXPORT_SYMBOL vmlinux 0xad60745b inet_del_protocol +EXPORT_SYMBOL vmlinux 0xad7480b5 mca_device_claimed +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xadaa2657 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0xadcac4a3 vfsmount_lock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xade453a2 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xade59272 journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xadebc32c thermal_zone_device_register +EXPORT_SYMBOL vmlinux 0xadf39c7a call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xae1109fc kfree_skb +EXPORT_SYMBOL vmlinux 0xae46e385 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xae71b01b scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xae7e9742 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xae932e6a udp_proc_register +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaeaa1e95 sk_stream_error +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaf359df7 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xaf3b0db2 elv_rb_find +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf402345 kill_pgrp +EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xaf56d9c2 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf91d89f __kernel_param_lock +EXPORT_SYMBOL vmlinux 0xaf936d60 sock_wake_async +EXPORT_SYMBOL vmlinux 0xafce4b61 genphy_read_status +EXPORT_SYMBOL vmlinux 0xafdc1ffd __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xafe32976 flock_lock_file_wait +EXPORT_SYMBOL vmlinux 0xafed441b kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xb00b11cf agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xb0146c3a param_set_byte +EXPORT_SYMBOL vmlinux 0xb016ad8b unregister_cdrom +EXPORT_SYMBOL vmlinux 0xb0207ecf ___ratelimit +EXPORT_SYMBOL vmlinux 0xb02b2967 input_inject_event +EXPORT_SYMBOL vmlinux 0xb077ef32 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0xb08f7d80 bio_map_user +EXPORT_SYMBOL vmlinux 0xb0a81357 sk_alloc +EXPORT_SYMBOL vmlinux 0xb0a8fd0a intel_gtt_unmap_memory +EXPORT_SYMBOL vmlinux 0xb0b847ac __bitmap_full +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0fa8fdc ip_options_compile +EXPORT_SYMBOL vmlinux 0xb11a6ba9 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb13ebc21 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb16a3d15 find_get_page +EXPORT_SYMBOL vmlinux 0xb172d9b7 framebuffer_release +EXPORT_SYMBOL vmlinux 0xb1813162 ethtool_op_get_sg +EXPORT_SYMBOL vmlinux 0xb19760c3 bitmap_onto +EXPORT_SYMBOL vmlinux 0xb19b5229 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xb1a7c28e inet_listen +EXPORT_SYMBOL vmlinux 0xb1b2f10f mca_device_write_pos +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c4765f tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0xb1cc1c10 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xb1cdc8a1 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xb1ceccbb unbind_con_driver +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1d9523e wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb2182d06 ll_rw_block +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb23a2b80 del_gendisk +EXPORT_SYMBOL vmlinux 0xb246f5ec agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xb2670153 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2744b36 down_write_trylock +EXPORT_SYMBOL vmlinux 0xb2abeb43 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xb2bf99bf vga_tryget +EXPORT_SYMBOL vmlinux 0xb2ef12f1 tty_register_device +EXPORT_SYMBOL vmlinux 0xb2efb6be mca_read_stored_pos +EXPORT_SYMBOL vmlinux 0xb2f01c66 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb32139dd blk_start_request +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb3305d52 send_remote_softirq +EXPORT_SYMBOL vmlinux 0xb333ed22 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xb33af6ee jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xb34d4c2e acpi_terminate +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb35a367d acpi_unlock_ac_dir +EXPORT_SYMBOL vmlinux 0xb35c1b10 dev_mc_init +EXPORT_SYMBOL vmlinux 0xb38f1a06 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xb3a307c6 si_meminfo +EXPORT_SYMBOL vmlinux 0xb3b55038 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xb3b7dd5c dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xb3e0590d acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0xb3e3cf6f cdrom_release +EXPORT_SYMBOL vmlinux 0xb3f3ddee __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xb412edcd ab8500_gpadc_read_raw +EXPORT_SYMBOL vmlinux 0xb41a430c blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xb41fb075 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4372f24 pci_save_state +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb43c0568 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xb43c8124 pci_enable_obff +EXPORT_SYMBOL vmlinux 0xb443c438 dev_alloc_skb +EXPORT_SYMBOL vmlinux 0xb449db38 generic_setxattr +EXPORT_SYMBOL vmlinux 0xb45578b8 memscan +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb470bcc4 __get_user_pages +EXPORT_SYMBOL vmlinux 0xb47d138a locks_init_lock +EXPORT_SYMBOL vmlinux 0xb496cbf8 set_disk_ro +EXPORT_SYMBOL vmlinux 0xb5044271 vsscanf +EXPORT_SYMBOL vmlinux 0xb514aac0 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xb5277728 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5327ccc submit_bio +EXPORT_SYMBOL vmlinux 0xb538bc96 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xb54533f7 usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xb54715d6 pci_remove_behind_bridge +EXPORT_SYMBOL vmlinux 0xb5477f4b neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xb5492e27 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xb5665f21 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xb57f8992 journal_revoke +EXPORT_SYMBOL vmlinux 0xb58356cf pci_dev_put +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d35ec0 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xb5f50765 dev_get_drvdata +EXPORT_SYMBOL vmlinux 0xb5fb870b commit_creds +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb628f715 files_lglock_local_lock +EXPORT_SYMBOL vmlinux 0xb632d3c3 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xb6588e7a idr_remove +EXPORT_SYMBOL vmlinux 0xb66e1b25 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6822a33 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xb685f234 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xb68633b3 scsi_allocate_command +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb68b2078 acpi_lock_battery_dir +EXPORT_SYMBOL vmlinux 0xb68e72d1 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xb691fd96 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xb6a61a86 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6c1ba15 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xb6c5a973 scsi_show_result +EXPORT_SYMBOL vmlinux 0xb6e40869 blk_start_queue +EXPORT_SYMBOL vmlinux 0xb6e88ed5 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy +EXPORT_SYMBOL vmlinux 0xb6f4478a acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xb6f7e63d journal_stop +EXPORT_SYMBOL vmlinux 0xb714e933 cdev_del +EXPORT_SYMBOL vmlinux 0xb726ff32 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xb737cfbb blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xb73c6b81 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xb74d8cad pnp_get_resource +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb7666d1c bio_map_kern +EXPORT_SYMBOL vmlinux 0xb78c61e8 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb7b61546 crc32_be +EXPORT_SYMBOL vmlinux 0xb7e51729 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xb7ec2c4b tcp_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xb7ecb7e7 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xb7fcccae sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb835b3e4 radix_tree_prev_hole +EXPORT_SYMBOL vmlinux 0xb863e8df seq_putc +EXPORT_SYMBOL vmlinux 0xb86e4ab9 random32 +EXPORT_SYMBOL vmlinux 0xb8759454 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xb894926d schedule_work_on +EXPORT_SYMBOL vmlinux 0xb898e4a5 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xb8992eec tcp_proc_register +EXPORT_SYMBOL vmlinux 0xb89af9bf srandom32 +EXPORT_SYMBOL vmlinux 0xb89e9802 dev_addr_init +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb904c2d6 freeze_bdev +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb94675ca jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xb95a1bb2 mii_check_link +EXPORT_SYMBOL vmlinux 0xb96145c9 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xb9805e25 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xb98a0185 rtc_tm_to_time +EXPORT_SYMBOL vmlinux 0xb99cf582 ida_get_new_above +EXPORT_SYMBOL vmlinux 0xb9a71c72 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xb9b63ca5 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xb9fd2205 add_efi_memmap +EXPORT_SYMBOL vmlinux 0xba0a6a3c brioctl_set +EXPORT_SYMBOL vmlinux 0xba12f4b1 scsi_calculate_bounce_limit +EXPORT_SYMBOL vmlinux 0xba25d13b ilookup5 +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba45d078 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xba489ed5 generic_setlease +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba75f6eb inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xba81b7d5 serio_rescan +EXPORT_SYMBOL vmlinux 0xba8ea6ad rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xba9fd3be register_md_personality +EXPORT_SYMBOL vmlinux 0xbaaab8ae timespec_to_jiffies +EXPORT_SYMBOL vmlinux 0xbab342dd input_unregister_handler +EXPORT_SYMBOL vmlinux 0xbab46816 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xbac32cee tcp_close +EXPORT_SYMBOL vmlinux 0xbad986f9 kill_pid +EXPORT_SYMBOL vmlinux 0xbb167766 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xbb189cad disallow_signal +EXPORT_SYMBOL vmlinux 0xbb18c887 follow_pfn +EXPORT_SYMBOL vmlinux 0xbb3f17c4 tcp_valid_rtt_meas +EXPORT_SYMBOL vmlinux 0xbb44d351 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6fd870 vfs_getattr +EXPORT_SYMBOL vmlinux 0xbb7a1bd0 send_sig_info +EXPORT_SYMBOL vmlinux 0xbb7c97c9 first_ec +EXPORT_SYMBOL vmlinux 0xbb837d27 machine_real_restart +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba159e0 files_lglock_local_unlock +EXPORT_SYMBOL vmlinux 0xbbcbc383 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xbbd48677 napi_get_frags +EXPORT_SYMBOL vmlinux 0xbc1afedf up_write +EXPORT_SYMBOL vmlinux 0xbc1ffa96 read_dev_sector +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc333412 file_sb_list_del +EXPORT_SYMBOL vmlinux 0xbc5076e2 __generic_file_aio_write +EXPORT_SYMBOL vmlinux 0xbc619dbd generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xbc6a9d10 netlink_unicast +EXPORT_SYMBOL vmlinux 0xbc9f7c4a qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xbca183e6 alloc_pci_dev +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd7a481 journal_wipe +EXPORT_SYMBOL vmlinux 0xbcdff7a3 unload_nls +EXPORT_SYMBOL vmlinux 0xbcec6a80 ethtool_op_set_tx_csum +EXPORT_SYMBOL vmlinux 0xbcf0cc69 complete_request_key +EXPORT_SYMBOL vmlinux 0xbcf18ec7 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xbcfac7c7 __destroy_inode +EXPORT_SYMBOL vmlinux 0xbd0d867d ____pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xbd25a113 module_put +EXPORT_SYMBOL vmlinux 0xbd2dd1f4 fd_install +EXPORT_SYMBOL vmlinux 0xbd365e53 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xbd5a4b29 tcp_connect +EXPORT_SYMBOL vmlinux 0xbd9bec40 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xbda8ae24 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xbdbe7378 cookie_check_timestamp +EXPORT_SYMBOL vmlinux 0xbdc20c68 intel_gtt_get +EXPORT_SYMBOL vmlinux 0xbdd72307 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xbdf5c25c rb_next +EXPORT_SYMBOL vmlinux 0xbe018cb0 tty_vhangup +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1dd791 scsi_nonblockable_ioctl +EXPORT_SYMBOL vmlinux 0xbe2c0274 add_timer +EXPORT_SYMBOL vmlinux 0xbe2db109 init_special_inode +EXPORT_SYMBOL vmlinux 0xbe524634 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xbeae91b4 genphy_resume +EXPORT_SYMBOL vmlinux 0xbec49960 pci_remove_bus_device +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefc1578 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xbf04060b inet_put_port +EXPORT_SYMBOL vmlinux 0xbf236723 padata_do_serial +EXPORT_SYMBOL vmlinux 0xbf25c25d netif_napi_del +EXPORT_SYMBOL vmlinux 0xbf3ab671 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xbf61e641 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xbf68f06e register_netdev +EXPORT_SYMBOL vmlinux 0xbf710199 mpage_writepages +EXPORT_SYMBOL vmlinux 0xbf7cde7a abort_creds +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present +EXPORT_SYMBOL vmlinux 0xbf8f9e98 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa20e21 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xbfa44bee phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xbfb05567 set_pages_x +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe1d2b4 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user +EXPORT_SYMBOL vmlinux 0xc0083bf4 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xc00ecd91 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xc017e816 alloc_file +EXPORT_SYMBOL vmlinux 0xc01cf848 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero +EXPORT_SYMBOL vmlinux 0xc020faef lock_sock_fast +EXPORT_SYMBOL vmlinux 0xc04377af simple_readpage +EXPORT_SYMBOL vmlinux 0xc043c147 read_cache_page +EXPORT_SYMBOL vmlinux 0xc04ef815 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xc056c7f4 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xc0580937 rb_erase +EXPORT_SYMBOL vmlinux 0xc05f8ede pci_enable_bridges +EXPORT_SYMBOL vmlinux 0xc05fa63d skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07c5f81 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xc0820efd bio_integrity_free +EXPORT_SYMBOL vmlinux 0xc085df30 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a595d3 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xc0a6e49e d_genocide +EXPORT_SYMBOL vmlinux 0xc0a8ff16 acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0xc0b2494c vfsmount_lock_lock_init +EXPORT_SYMBOL vmlinux 0xc0c02cd4 netdev_class_remove_file +EXPORT_SYMBOL vmlinux 0xc0d39b77 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0xc0ed6fac ip_ct_attach +EXPORT_SYMBOL vmlinux 0xc0f56ee6 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc1372b81 pci_target_state +EXPORT_SYMBOL vmlinux 0xc1418576 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xc15cbab2 vc_cons +EXPORT_SYMBOL vmlinux 0xc18b0d86 pci_set_master +EXPORT_SYMBOL vmlinux 0xc1aca562 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xc1c2dd09 __hw_addr_flush +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2435276 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xc256e762 __bitmap_equal +EXPORT_SYMBOL vmlinux 0xc26ac30c mnt_unpin +EXPORT_SYMBOL vmlinux 0xc26cce9d inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xc26d8ae3 sget +EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll +EXPORT_SYMBOL vmlinux 0xc2ba729a vfs_write +EXPORT_SYMBOL vmlinux 0xc2c4346e install_exec_creds +EXPORT_SYMBOL vmlinux 0xc2cd003c udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xc2d13126 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e316e6 security_path_rmdir +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ef4098 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xc310451f generic_write_end +EXPORT_SYMBOL vmlinux 0xc3146282 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xc316b98c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0xc33298df kobject_put +EXPORT_SYMBOL vmlinux 0xc336ef4e pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xc3415042 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xc34e386d ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xc36cbb4a sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xc37c81b2 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3cf1128 in_group_p +EXPORT_SYMBOL vmlinux 0xc3eec4e4 d_alloc_root +EXPORT_SYMBOL vmlinux 0xc3f3a0cf tty_devnum +EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr +EXPORT_SYMBOL vmlinux 0xc3fe87c8 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc3fec705 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xc402cc99 register_acpi_notifier +EXPORT_SYMBOL vmlinux 0xc4115ef9 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xc41e8f7a wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xc4554217 up +EXPORT_SYMBOL vmlinux 0xc4669e5c md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4c7ebd9 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xc4e4270b unlock_page +EXPORT_SYMBOL vmlinux 0xc508d690 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xc51b5cbf inet_accept +EXPORT_SYMBOL vmlinux 0xc52f5714 fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0xc542b145 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xc543bbcb tcp_gro_receive +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc56e05e3 mmc_free_host +EXPORT_SYMBOL vmlinux 0xc58c0b17 mdiobus_write +EXPORT_SYMBOL vmlinux 0xc598b7e9 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xc5a37aa8 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xc5cbd2ed __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xc5d41e39 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5f46566 rb_augment_insert +EXPORT_SYMBOL vmlinux 0xc5feecdb vfs_mknod +EXPORT_SYMBOL vmlinux 0xc6064f6a pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xc6178280 scsi_register +EXPORT_SYMBOL vmlinux 0xc61b1d36 journal_load +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63cc125 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xc6479e4c do_munmap +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc66e8008 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xc67a511e ping_prot +EXPORT_SYMBOL vmlinux 0xc67f910c mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xc6848c32 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xc6890ef3 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0xc6aec70b pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xc6b22384 d_invalidate +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d77b34 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xc6dc64d7 netdev_printk +EXPORT_SYMBOL vmlinux 0xc6eb2c73 nf_log_register +EXPORT_SYMBOL vmlinux 0xc6feb828 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xc709d979 __sock_create +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc738239e pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xc73ac435 i8042_check_port_owner +EXPORT_SYMBOL vmlinux 0xc7484497 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xc75da6f9 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7987905 kmap +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a20cc8 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7cab7e9 mii_check_media +EXPORT_SYMBOL vmlinux 0xc7db1413 dquot_disable +EXPORT_SYMBOL vmlinux 0xc7e9a028 put_io_context +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7fae1a0 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xc8020f29 blk_insert_request +EXPORT_SYMBOL vmlinux 0xc811aa8c task_ns_capable +EXPORT_SYMBOL vmlinux 0xc829eae5 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc84715b8 netlink_dump_start +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc853ce63 serio_close +EXPORT_SYMBOL vmlinux 0xc856156a remove_arg_zero +EXPORT_SYMBOL vmlinux 0xc85d9fb2 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc90cd6d1 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xc9347ea9 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xc939f54e security_path_link +EXPORT_SYMBOL vmlinux 0xc94fa003 irq_stat +EXPORT_SYMBOL vmlinux 0xc996d097 del_timer +EXPORT_SYMBOL vmlinux 0xc9ab2eef acpi_os_wait_events_complete +EXPORT_SYMBOL vmlinux 0xc9be9210 agp_create_memory +EXPORT_SYMBOL vmlinux 0xc9c6f737 dst_destroy +EXPORT_SYMBOL vmlinux 0xc9d4d4a0 otg_get_transceiver +EXPORT_SYMBOL vmlinux 0xc9dadd06 put_tty_driver +EXPORT_SYMBOL vmlinux 0xca19102b ht_create_irq +EXPORT_SYMBOL vmlinux 0xca3302d4 mount_pseudo +EXPORT_SYMBOL vmlinux 0xca5dbc50 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xca678be1 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xca7ce9c5 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xca84176f dquot_enable +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca8c80d4 phy_start +EXPORT_SYMBOL vmlinux 0xcac31815 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xcac6fcb9 __scm_destroy +EXPORT_SYMBOL vmlinux 0xcad0b637 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xcae9d996 pipe_to_file +EXPORT_SYMBOL vmlinux 0xcb1a10f8 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xcb2f9f8b dev_crit +EXPORT_SYMBOL vmlinux 0xcb39f99d generic_block_bmap +EXPORT_SYMBOL vmlinux 0xcb4322dc kernel_read +EXPORT_SYMBOL vmlinux 0xcb451e56 idr_init +EXPORT_SYMBOL vmlinux 0xcb48a677 pci_find_bus +EXPORT_SYMBOL vmlinux 0xcb502c92 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0xcb7131fb fb_get_options +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb99edb0 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0xcbb1e0fa bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xcbb65e12 bioset_create +EXPORT_SYMBOL vmlinux 0xcbb7ebdd ip_defrag +EXPORT_SYMBOL vmlinux 0xcbc331c3 tty_port_close +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd76abb skb_copy_bits +EXPORT_SYMBOL vmlinux 0xcbddffc7 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xcbe963fa mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc28fb05 sock_no_connect +EXPORT_SYMBOL vmlinux 0xcc36f32e fb_unregister_client +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5b27b5 acpi_extract_package +EXPORT_SYMBOL vmlinux 0xcc602267 seq_lseek +EXPORT_SYMBOL vmlinux 0xcc6f39a4 pci_scan_bus_parented +EXPORT_SYMBOL vmlinux 0xcc7fa952 local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0xcc8e3287 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xcd255c8e pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd3d1bc0 km_state_expired +EXPORT_SYMBOL vmlinux 0xcd4bf0db kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0xcd757666 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xcd79037c flush_old_exec +EXPORT_SYMBOL vmlinux 0xcd8f35f4 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xcd9b6243 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xcdaa8c9d md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xcdb9a7e5 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0xcdc28f33 dqget +EXPORT_SYMBOL vmlinux 0xcddcd2ea dentry_path_raw +EXPORT_SYMBOL vmlinux 0xcde172ac radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xcdffbcd1 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xce19bac5 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0xce24d483 kunmap +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce4a14a4 security_file_mmap +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce67a7f9 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xce8367d6 console_stop +EXPORT_SYMBOL vmlinux 0xce8625cf mmc_suspend_host +EXPORT_SYMBOL vmlinux 0xce937f3a splice_from_pipe_end +EXPORT_SYMBOL vmlinux 0xceaaf781 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xcecdd34c get_phy_id +EXPORT_SYMBOL vmlinux 0xcedd95c1 default_llseek +EXPORT_SYMBOL vmlinux 0xcee1ac61 uart_register_driver +EXPORT_SYMBOL vmlinux 0xcef13d3d security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xcef2376c page_address +EXPORT_SYMBOL vmlinux 0xcef33cad arp_send +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf015f7b do_settimeofday +EXPORT_SYMBOL vmlinux 0xcf1d28ab acpi_error +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcfacaae2 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xcfb9006e jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0xcfbb3f6e dev_open +EXPORT_SYMBOL vmlinux 0xcfd9c546 put_page +EXPORT_SYMBOL vmlinux 0xcfdff9e9 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe +EXPORT_SYMBOL vmlinux 0xcfeb0be9 rb_augment_erase_begin +EXPORT_SYMBOL vmlinux 0xd016feda skb_copy_and_csum_datagram_iovec +EXPORT_SYMBOL vmlinux 0xd0181f4f __bitmap_xor +EXPORT_SYMBOL vmlinux 0xd060cfce __serio_register_driver +EXPORT_SYMBOL vmlinux 0xd070b09b dma_async_memcpy_buf_to_buf +EXPORT_SYMBOL vmlinux 0xd07c782a bdput +EXPORT_SYMBOL vmlinux 0xd08197fa acpi_load_tables +EXPORT_SYMBOL vmlinux 0xd0a12887 mmc_card_awake +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0d42c42 mod_timer_pending +EXPORT_SYMBOL vmlinux 0xd0d8621b strlen +EXPORT_SYMBOL vmlinux 0xd0da71dc take_over_console +EXPORT_SYMBOL vmlinux 0xd0dda8b2 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xd0ea3780 x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f0d945 down_read +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f91701 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd11c0dc1 __kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xd12dbbc6 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xd1472061 acpi_pci_register_driver +EXPORT_SYMBOL vmlinux 0xd157e229 journal_start +EXPORT_SYMBOL vmlinux 0xd15b9927 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xd172cb8d netdev_increment_features +EXPORT_SYMBOL vmlinux 0xd18b6eb2 acpi_unmap_lsapic +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd212cdf0 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xd2139e94 unregister_snap_client +EXPORT_SYMBOL vmlinux 0xd22dee7a jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xd2329de3 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd25f2fd4 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd2656b7a mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xd266efe7 mempool_create +EXPORT_SYMBOL vmlinux 0xd276f795 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd2965f6f kthread_should_stop +EXPORT_SYMBOL vmlinux 0xd2a75ee0 dmi_first_match +EXPORT_SYMBOL vmlinux 0xd2b161b0 dquot_get_dqinfo +EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd30c6636 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xd318ac74 proc_net_netfilter +EXPORT_SYMBOL vmlinux 0xd3434c3f kref_sub +EXPORT_SYMBOL vmlinux 0xd35e249a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0xd36632d7 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xd36b2952 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xd38480a0 rb_augment_erase_end +EXPORT_SYMBOL vmlinux 0xd3926926 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xd3951da4 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xd3bf22bd tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xd3c08471 gen_pool_create +EXPORT_SYMBOL vmlinux 0xd3c7fc52 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xd3dcab0b flex_array_alloc +EXPORT_SYMBOL vmlinux 0xd3e9f340 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xd42c6c29 d_drop +EXPORT_SYMBOL vmlinux 0xd431c13b set_device_ro +EXPORT_SYMBOL vmlinux 0xd4391057 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xd46ba5fe do_mmap_pgoff +EXPORT_SYMBOL vmlinux 0xd47f5a5d block_write_begin +EXPORT_SYMBOL vmlinux 0xd490f95a agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xd4b8b160 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xd4c51be7 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xd4ccfc9e sock_update_classid +EXPORT_SYMBOL vmlinux 0xd4d7b10d input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xd4db11f1 tcp_v4_md5_do_del +EXPORT_SYMBOL vmlinux 0xd4dd7380 skb_split +EXPORT_SYMBOL vmlinux 0xd50ebf04 journal_set_features +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd51c60e5 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xd54c96c7 atomic64_add_unless_cx8 +EXPORT_SYMBOL vmlinux 0xd57f7cb2 mount_single +EXPORT_SYMBOL vmlinux 0xd5ab46ff dev_get_stats +EXPORT_SYMBOL vmlinux 0xd5b037e1 kref_put +EXPORT_SYMBOL vmlinux 0xd5b1376d register_shrinker +EXPORT_SYMBOL vmlinux 0xd5b1b1a4 simple_statfs +EXPORT_SYMBOL vmlinux 0xd5e8977b ethtool_op_set_tx_hw_csum +EXPORT_SYMBOL vmlinux 0xd5f2172f del_timer_sync +EXPORT_SYMBOL vmlinux 0xd6109bba nf_setsockopt +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd629316a llc_sap_list_lock +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd62e11e7 __register_binfmt +EXPORT_SYMBOL vmlinux 0xd63b3a6e skb_clone +EXPORT_SYMBOL vmlinux 0xd65dcfc9 blk_sync_queue +EXPORT_SYMBOL vmlinux 0xd68c6562 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xd6a1e57a agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f14a92 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xd6ffaef5 cad_pid +EXPORT_SYMBOL vmlinux 0xd7001850 pci_restore_state +EXPORT_SYMBOL vmlinux 0xd71296a6 mmc_host_lazy_disable +EXPORT_SYMBOL vmlinux 0xd7580af5 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd774170f dquot_file_open +EXPORT_SYMBOL vmlinux 0xd77a5aa5 __bitmap_and +EXPORT_SYMBOL vmlinux 0xd79b5a02 allow_signal +EXPORT_SYMBOL vmlinux 0xd7b61d9f bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xd7bd3af2 add_wait_queue +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd8047aeb skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xd81c60c6 wait_on_sync_kiocb +EXPORT_SYMBOL vmlinux 0xd82ba9b1 mii_nway_restart +EXPORT_SYMBOL vmlinux 0xd83758d0 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xd83eb79c invalidate_bdev +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85df7d4 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xd86f4b2e netif_skb_features +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd89e94d5 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd8a2ab95 in_egroup_p +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f3045c blk_end_request_all +EXPORT_SYMBOL vmlinux 0xd8f6ddd6 tcp_tso_segment +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd9123b5d skb_find_text +EXPORT_SYMBOL vmlinux 0xd92afabe bitmap_clear +EXPORT_SYMBOL vmlinux 0xd92e6791 napi_frags_skb +EXPORT_SYMBOL vmlinux 0xd94f0bfd sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd998a029 dev_driver_string +EXPORT_SYMBOL vmlinux 0xd99e6c03 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xd9a6ca21 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xd9b764c4 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xd9c272aa mca_mark_as_unused +EXPORT_SYMBOL vmlinux 0xd9f7abfb dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xda0a6b0e acpi_map_lsapic +EXPORT_SYMBOL vmlinux 0xda236f90 __lock_page +EXPORT_SYMBOL vmlinux 0xda66c1b6 security_path_truncate +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte +EXPORT_SYMBOL vmlinux 0xda953c03 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdab4a998 grab_cache_page_nowait +EXPORT_SYMBOL vmlinux 0xdab5883b mca_device_set_claim +EXPORT_SYMBOL vmlinux 0xdacbb538 mmc_host_enable +EXPORT_SYMBOL vmlinux 0xdb1aa8cf insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xdb316e64 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xdb663a06 thermal_cooling_device_unregister +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6e35a0 unregister_8022_client +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb777f4a __elv_add_request +EXPORT_SYMBOL vmlinux 0xdb864d65 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xdb8fa4f2 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xdb9e2c22 posix_acl_create +EXPORT_SYMBOL vmlinux 0xdba6cc7f journal_errno +EXPORT_SYMBOL vmlinux 0xdbcd416e sysctl_ip_nonlocal_bind +EXPORT_SYMBOL vmlinux 0xdbcf6ba5 try_to_release_page +EXPORT_SYMBOL vmlinux 0xdbd268ac scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xdbf60ca9 setup_new_exec +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0ade3a tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc224ef5 request_firmware +EXPORT_SYMBOL vmlinux 0xdc2519e0 param_set_ulong +EXPORT_SYMBOL vmlinux 0xdc2adb35 add_taint +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc43a9c8 daemonize +EXPORT_SYMBOL vmlinux 0xdc45c56c sg_miter_start +EXPORT_SYMBOL vmlinux 0xdc4a3c90 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xdc4f61e4 bio_integrity_get_tag +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc6b7020 elevator_change +EXPORT_SYMBOL vmlinux 0xdc8bb395 scsi_add_device +EXPORT_SYMBOL vmlinux 0xdcb7f731 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xdcc5eb79 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xdccca046 override_creds +EXPORT_SYMBOL vmlinux 0xdcd4c773 lro_flush_all +EXPORT_SYMBOL vmlinux 0xdce16b58 eth_rebuild_header +EXPORT_SYMBOL vmlinux 0xdcef81ac ethtool_op_set_tx_ipv6_csum +EXPORT_SYMBOL vmlinux 0xdcf7540e find_or_create_page +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd0ec91f dev_activate +EXPORT_SYMBOL vmlinux 0xdd14e874 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xdd1a2871 down +EXPORT_SYMBOL vmlinux 0xdd1c65f6 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xdd2d2c5d neigh_parms_release +EXPORT_SYMBOL vmlinux 0xdd35d8d8 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xdd3764b0 mmc_card_sleep +EXPORT_SYMBOL vmlinux 0xdd38b87c blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xdd7aa091 acpi_get_physical_device +EXPORT_SYMBOL vmlinux 0xdd81085c i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xdd9cbc3d elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xdda658d6 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xdda7bdf3 textsearch_register +EXPORT_SYMBOL vmlinux 0xddaa735a jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xddb0769a d_alloc_name +EXPORT_SYMBOL vmlinux 0xddd740df pci_get_device +EXPORT_SYMBOL vmlinux 0xddf2511c scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xde1da321 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xde794ce7 tty_register_driver +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde964398 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdebda43d new_inode +EXPORT_SYMBOL vmlinux 0xdec778f6 ida_get_new +EXPORT_SYMBOL vmlinux 0xdecbc167 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xdeed5e80 mca_unregister_driver +EXPORT_SYMBOL vmlinux 0xdef6b65a set_blocksize +EXPORT_SYMBOL vmlinux 0xdefc3217 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf199ff9 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xdf1c89b0 bio_endio +EXPORT_SYMBOL vmlinux 0xdf48161c i2c_del_driver +EXPORT_SYMBOL vmlinux 0xdf48a0eb flex_array_put +EXPORT_SYMBOL vmlinux 0xdf4c8767 ns_to_timeval +EXPORT_SYMBOL vmlinux 0xdf5defb4 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf92cb81 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xdf937635 icmpv6_send +EXPORT_SYMBOL vmlinux 0xdfa684cf eth_validate_addr +EXPORT_SYMBOL vmlinux 0xdfb4c816 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfc899f8 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xdfc8c051 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xe04a5be7 acpi_unlock_battery_dir +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0ee0b00 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0xe0fc24aa param_set_int +EXPORT_SYMBOL vmlinux 0xe10a2799 pci_set_ltr +EXPORT_SYMBOL vmlinux 0xe10d6a2f n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xe10fbdc0 __f_setown +EXPORT_SYMBOL vmlinux 0xe127d8dd tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xe134f124 dev_close +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe16df5a1 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1f1a264 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2079de4 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xe2195aef mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0xe2296c9c truncate_setsize +EXPORT_SYMBOL vmlinux 0xe22feb1a pipe_unlock +EXPORT_SYMBOL vmlinux 0xe236a29b blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xe2383b17 page_readlink +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe23b8b38 inet_ioctl +EXPORT_SYMBOL vmlinux 0xe23bea43 llc_mac_hdr_init +EXPORT_SYMBOL vmlinux 0xe23c84c5 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe24f516b rtnl_notify +EXPORT_SYMBOL vmlinux 0xe2573870 mutex_lock +EXPORT_SYMBOL vmlinux 0xe29a6b8a bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xe2b28266 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xe2c565c9 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xe2caaae4 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xe2d038fa __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e3ac41 sync_inode +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f6346a fb_set_var +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe3161e82 sock_no_listen +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe31a0dca xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xe33de5ff locks_copy_lock +EXPORT_SYMBOL vmlinux 0xe3476e0b phy_device_free +EXPORT_SYMBOL vmlinux 0xe3a13588 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xe3c6079e atomic64_set_cx8 +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3df2c67 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xe3e68a89 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xe3fbe148 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0xe40fd9ab f_setown +EXPORT_SYMBOL vmlinux 0xe4113311 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xe4173d5a pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xe41b8ba6 cdev_init +EXPORT_SYMBOL vmlinux 0xe41bcec9 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xe43617f7 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0xe4391150 journal_create +EXPORT_SYMBOL vmlinux 0xe45025d4 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xe45f60d8 __wake_up +EXPORT_SYMBOL vmlinux 0xe464faa9 __bread +EXPORT_SYMBOL vmlinux 0xe469914c tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xe46bb263 __bio_clone +EXPORT_SYMBOL vmlinux 0xe46d7859 do_splice_to +EXPORT_SYMBOL vmlinux 0xe4721d2d set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xe479a6b9 netdev_emerg +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe49775f9 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xe498b537 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xe4d3b568 page_put_link +EXPORT_SYMBOL vmlinux 0xe4ed7a7f tcf_hash_create +EXPORT_SYMBOL vmlinux 0xe50464b6 tty_hangup +EXPORT_SYMBOL vmlinux 0xe5092261 kern_path_create +EXPORT_SYMBOL vmlinux 0xe5122890 flow_cache_genid +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe555a060 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xe567f86d pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xe56d8509 deactivate_super +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5b42a76 tcp_poll +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5eb7fef thaw_process +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe615cc19 mem_cgroup_update_page_stat +EXPORT_SYMBOL vmlinux 0xe617e30f mddev_congested +EXPORT_SYMBOL vmlinux 0xe61e9841 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xe6236e26 input_open_device +EXPORT_SYMBOL vmlinux 0xe628fe9f ppp_channel_index +EXPORT_SYMBOL vmlinux 0xe63229ce bio_add_page +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6adec21 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0xe6b3fe21 interruptible_sleep_on_timeout +EXPORT_SYMBOL vmlinux 0xe6be6ce5 posix_test_lock +EXPORT_SYMBOL vmlinux 0xe6c3c4e6 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xe6e31c07 mfd_add_devices +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe73e8afc elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xe7609b0d generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe76445ee unregister_netdev +EXPORT_SYMBOL vmlinux 0xe7722171 flex_array_free +EXPORT_SYMBOL vmlinux 0xe7798a92 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xe7a664c4 nf_hooks +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7c84646 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d8980c pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xe80cabfd __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xe80ce219 sysctl_tcp_dma_copybreak +EXPORT_SYMBOL vmlinux 0xe8130ff9 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xe81a6149 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xe8485de3 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xe85c74a5 key_type_keyring +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe88d3cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0xe8a02646 seq_read +EXPORT_SYMBOL vmlinux 0xe8b00879 stop_tty +EXPORT_SYMBOL vmlinux 0xe8b63ace radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xe8ebf346 ab8500_gpadc_ad_to_voltage +EXPORT_SYMBOL vmlinux 0xe8f1143b tcp_read_sock +EXPORT_SYMBOL vmlinux 0xe8f92dee kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91d9b6c tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xe9259cce simple_lookup +EXPORT_SYMBOL vmlinux 0xe92c25b9 mutex_unlock +EXPORT_SYMBOL vmlinux 0xe933e922 pci_write_vpd +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe987d793 kernel_accept +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe99d9a41 udp_prot +EXPORT_SYMBOL vmlinux 0xe9c5a3eb pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xe9c86eeb request_key_async +EXPORT_SYMBOL vmlinux 0xe9cb1aa7 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xe9eea6b4 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xe9f8812c mca_register_driver_integrated +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea06e55d tty_mutex +EXPORT_SYMBOL vmlinux 0xea10212a int_to_scsilun +EXPORT_SYMBOL vmlinux 0xea10655a __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xea535724 skb_copy_datagram_iovec +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea884b5c genphy_suspend +EXPORT_SYMBOL vmlinux 0xea8a6c75 param_ops_long +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea9855ae blk_limits_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xeaa96952 dev_set_drvdata +EXPORT_SYMBOL vmlinux 0xeabd18e2 kobject_set_name +EXPORT_SYMBOL vmlinux 0xeacc4a81 task_nice +EXPORT_SYMBOL vmlinux 0xeaceeff4 dm_put_device +EXPORT_SYMBOL vmlinux 0xead01d4f pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xead756ef flush_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaee4b5f acpi_lock_ac_dir +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb382a52 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xeb4a55d8 single_release +EXPORT_SYMBOL vmlinux 0xeb5489b8 netdev_update_features +EXPORT_SYMBOL vmlinux 0xeb568a33 pci_pme_active +EXPORT_SYMBOL vmlinux 0xeb5c69f2 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xeb83214d pnp_release_card_device +EXPORT_SYMBOL vmlinux 0xeba677bd posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xebcf4bf4 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xebdbe48c radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xec15f00a tcp_cookie_generator +EXPORT_SYMBOL vmlinux 0xec338535 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xec36f855 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xec3edba1 ethtool_op_set_ufo +EXPORT_SYMBOL vmlinux 0xec4e50df free_user_ns +EXPORT_SYMBOL vmlinux 0xec57e401 dev_trans_start +EXPORT_SYMBOL vmlinux 0xec968b8f gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xecab68bc bdi_register +EXPORT_SYMBOL vmlinux 0xecb3a5e1 clocksource_register +EXPORT_SYMBOL vmlinux 0xecb721f1 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xecedfa24 simple_write_begin +EXPORT_SYMBOL vmlinux 0xed302f0f tty_lock +EXPORT_SYMBOL vmlinux 0xed304266 lock_may_write +EXPORT_SYMBOL vmlinux 0xed3d130f misc_deregister +EXPORT_SYMBOL vmlinux 0xed5b9e43 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xed720660 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xed82eaf7 dquot_operations +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed98e7c1 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xeda0d76e gen_estimator_active +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc14fa0 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0xedcf0d4d filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xedd354b3 ethtool_op_set_sg +EXPORT_SYMBOL vmlinux 0xedde3f34 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xedfb5159 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3a137b cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xee649b94 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xee66167b blk_execute_rq +EXPORT_SYMBOL vmlinux 0xee772052 spi_display_xfer_agreement +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee940370 thermal_zone_bind_cooling_device +EXPORT_SYMBOL vmlinux 0xeea4fb86 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeac4479 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xeeb4713e journal_check_available_features +EXPORT_SYMBOL vmlinux 0xeec019b3 dev_emerg +EXPORT_SYMBOL vmlinux 0xef00686a tcp_sendpage +EXPORT_SYMBOL vmlinux 0xef1d35b7 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0xef3bd862 mca_find_unused_adapter +EXPORT_SYMBOL vmlinux 0xef5adc37 mount_nodev +EXPORT_SYMBOL vmlinux 0xef655908 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0xef67ec5d inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xef7e7641 blk_end_request +EXPORT_SYMBOL vmlinux 0xef92dd07 mdiobus_alloc +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefbfc3c7 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xefcb63da skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0040079 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xf04d9982 da903x_query_status +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf07ba3cd mpage_readpages +EXPORT_SYMBOL vmlinux 0xf0852ba9 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xf08ada45 blk_complete_request +EXPORT_SYMBOL vmlinux 0xf08f624b mapping_tagged +EXPORT_SYMBOL vmlinux 0xf0d8b9a9 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f1246c kvasprintf +EXPORT_SYMBOL vmlinux 0xf0f928d0 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xf100416a remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xf10d4f12 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf1216c75 prandom32 +EXPORT_SYMBOL vmlinux 0xf1252127 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xf12a5c83 idr_find +EXPORT_SYMBOL vmlinux 0xf1333431 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xf1354f2f blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xf1362ad2 qdisc_reset +EXPORT_SYMBOL vmlinux 0xf148276f scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xf16e7840 nla_put +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1b4987b backlight_device_register +EXPORT_SYMBOL vmlinux 0xf1cf3036 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1faac3a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xf202c5cb radix_tree_insert +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2357254 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0xf238a385 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25c28ee xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xf26b8df4 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0xf274e933 mntget +EXPORT_SYMBOL vmlinux 0xf2769b6b scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xf27fc816 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf29df3f0 __skb_get_rxhash +EXPORT_SYMBOL vmlinux 0xf2d3964e netdev_err +EXPORT_SYMBOL vmlinux 0xf2e74040 mca_set_adapter_name +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf32055e7 dev_base_lock +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf338d4c3 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34c5b2b serio_unregister_port +EXPORT_SYMBOL vmlinux 0xf37260ab _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xf387fa39 ethtool_op_get_tso +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf394a68c xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf39bf4d9 put_cmsg +EXPORT_SYMBOL vmlinux 0xf3b1d267 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xf3bf0bce __bitmap_complement +EXPORT_SYMBOL vmlinux 0xf3e69c79 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xf42017ea i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf462f70c __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xf47b33b8 phy_attach +EXPORT_SYMBOL vmlinux 0xf48a2c4c MCA_bus +EXPORT_SYMBOL vmlinux 0xf48ee255 pci_enable_ltr +EXPORT_SYMBOL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL vmlinux 0xf4a10662 mmc_request_done +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b1c64a i2c_verify_client +EXPORT_SYMBOL vmlinux 0xf4b5aba2 __scm_send +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4e1b181 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f19e51 downgrade_write +EXPORT_SYMBOL vmlinux 0xf4f6e688 set_pages_wb +EXPORT_SYMBOL vmlinux 0xf4fda350 mem_map +EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf531e9d0 pci_ltr_supported +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf541c615 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xf55445b2 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xf562f0b8 posix_lock_file_wait +EXPORT_SYMBOL vmlinux 0xf57c99eb mmc_add_host +EXPORT_SYMBOL vmlinux 0xf586a56f inode_init_once +EXPORT_SYMBOL vmlinux 0xf58eb3e5 led_brightness_set +EXPORT_SYMBOL vmlinux 0xf5a1736a key_validate +EXPORT_SYMBOL vmlinux 0xf5a85bd0 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xf5aa59cb tty_port_close_end +EXPORT_SYMBOL vmlinux 0xf5b96c9e pcim_enable_device +EXPORT_SYMBOL vmlinux 0xf5c05914 generic_segment_checks +EXPORT_SYMBOL vmlinux 0xf5c9012e timespec_trunc +EXPORT_SYMBOL vmlinux 0xf5cf326a param_ops_short +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5f54e38 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xf612809a param_get_int +EXPORT_SYMBOL vmlinux 0xf61bdd81 neigh_table_init_no_netlink +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf66bb943 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xf6760364 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xf682ed26 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xf69822d7 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xf6abffde read_cache_page_async +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6d769b6 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xf6d932d5 spi_release_transport +EXPORT_SYMBOL vmlinux 0xf6e40dd5 journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf70ada07 give_up_console +EXPORT_SYMBOL vmlinux 0xf711ee67 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xf722db4c agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xf735e622 dqput +EXPORT_SYMBOL vmlinux 0xf747dd44 kstat +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf768bc3d submit_bh +EXPORT_SYMBOL vmlinux 0xf78d04ab netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xf7b7260c dcb_setapp +EXPORT_SYMBOL vmlinux 0xf7bdc9ff netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xf7de84d5 agp_free_page_array +EXPORT_SYMBOL vmlinux 0xf7e0a236 dquot_resume +EXPORT_SYMBOL vmlinux 0xf7e37635 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xf7f34ead ata_dev_printk +EXPORT_SYMBOL vmlinux 0xf803fe39 bitmap_set +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82e3d47 acpi_initialize_objects +EXPORT_SYMBOL vmlinux 0xf84c0d19 blk_peek_request +EXPORT_SYMBOL vmlinux 0xf851a7a6 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xf86992f5 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf890fe7f pm_idle +EXPORT_SYMBOL vmlinux 0xf8aac2cc register_netdevice +EXPORT_SYMBOL vmlinux 0xf8b782be max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xf8c5e83f __find_get_block +EXPORT_SYMBOL vmlinux 0xf8dbe769 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xf8f0ea48 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xf8f6f628 mca_register_driver +EXPORT_SYMBOL vmlinux 0xf8f866cc journal_release_buffer +EXPORT_SYMBOL vmlinux 0xf907c72c dev_set_mtu +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf93589d5 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xf940a328 __next_cpu +EXPORT_SYMBOL vmlinux 0xf94153a2 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xf94bcf09 aio_put_req +EXPORT_SYMBOL vmlinux 0xf94d287f register_nls +EXPORT_SYMBOL vmlinux 0xf96cdb8d bdi_init +EXPORT_SYMBOL vmlinux 0xf97456ea _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xf97a784e cfb_fillrect +EXPORT_SYMBOL vmlinux 0xf9853889 mount_bdev +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a7547c noop_fsync +EXPORT_SYMBOL vmlinux 0xf9ab7741 inet_select_addr +EXPORT_SYMBOL vmlinux 0xf9ac227b serial8250_register_port +EXPORT_SYMBOL vmlinux 0xf9bd9c96 _dev_info +EXPORT_SYMBOL vmlinux 0xf9c9f1b3 block_write_full_page +EXPORT_SYMBOL vmlinux 0xf9db43b6 kset_register +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9f40ef3 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xf9f62bd1 pskb_copy +EXPORT_SYMBOL vmlinux 0xfa1f1284 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xfa21d429 ndisc_build_skb +EXPORT_SYMBOL vmlinux 0xfa262895 pci_bus_type +EXPORT_SYMBOL vmlinux 0xfa2b8294 do_truncate +EXPORT_SYMBOL vmlinux 0xfa30957c mempool_free +EXPORT_SYMBOL vmlinux 0xfa4bcd25 flush_signals +EXPORT_SYMBOL vmlinux 0xfa4f7cbd cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xfa58c375 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xfa62b22d vfs_fsync +EXPORT_SYMBOL vmlinux 0xfa698195 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xfa898e08 __pagevec_release +EXPORT_SYMBOL vmlinux 0xfab68782 filemap_fault +EXPORT_SYMBOL vmlinux 0xfac137c2 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xfad4dab8 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xfae04d7d scsi_device_get +EXPORT_SYMBOL vmlinux 0xfaeb1989 seq_release +EXPORT_SYMBOL vmlinux 0xfaf98462 bitrev32 +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb173c55 __napi_complete +EXPORT_SYMBOL vmlinux 0xfb1be686 ida_remove +EXPORT_SYMBOL vmlinux 0xfb1cde20 agp_enable +EXPORT_SYMBOL vmlinux 0xfb506c98 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb752cef framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xfb7d26f4 files_lglock_lock_init +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc2e196 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xfbe27a1c rb_first +EXPORT_SYMBOL vmlinux 0xfbecf596 destroy_EII_client +EXPORT_SYMBOL vmlinux 0xfbfb6416 revert_creds +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc263537 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc508e97 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xfc5e7d5d eisa_bus_type +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc973075 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xfcaa04a0 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb891d7 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcd305ef jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xfcd35070 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcee9544 scsi_print_command +EXPORT_SYMBOL vmlinux 0xfcf37374 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xfcf4dbad nobh_write_begin +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd041b05 vfs_rename +EXPORT_SYMBOL vmlinux 0xfd071c6f elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xfd08cbc5 scsi_prep_return +EXPORT_SYMBOL vmlinux 0xfd1933bb lro_receive_skb +EXPORT_SYMBOL vmlinux 0xfd1befac agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xfd454fff ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xfd59240c padata_free +EXPORT_SYMBOL vmlinux 0xfd6293c2 boot_tvec_bases +EXPORT_SYMBOL vmlinux 0xfd6b3d0c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xfd6f4850 native_wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xfd76df31 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xfd7d7713 acpi_exception +EXPORT_SYMBOL vmlinux 0xfd91a2dd pci_enable_ido +EXPORT_SYMBOL vmlinux 0xfd96756e inet_frags_init +EXPORT_SYMBOL vmlinux 0xfd9b5393 dev_change_flags +EXPORT_SYMBOL vmlinux 0xfda0dbe8 ftrace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdc7f3ba idr_replace +EXPORT_SYMBOL vmlinux 0xfdee7d42 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe13dfa8 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xfe14705b end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xfe3487e4 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0xfe48fcb2 genl_register_mc_group +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe769456 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe81a32e pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xfec3c2f2 bcd2bin +EXPORT_SYMBOL vmlinux 0xfecfafc2 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xfed3c3c1 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xfedd35fc console_suspend_enabled +EXPORT_SYMBOL vmlinux 0xfef96e23 __scsi_print_command +EXPORT_SYMBOL vmlinux 0xff00fdf3 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xff12f54f vga_get +EXPORT_SYMBOL vmlinux 0xff1c306e start_tty +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2c3263 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu +EXPORT_SYMBOL vmlinux 0xff60d2d4 dma_set_mask +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff7f3d01 netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xff89ce4f clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xff95ab25 d_splice_alias +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffc37ee6 kernel_listen +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdd2acd xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xfff66302 __block_write_begin +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0x7060bf0a crypto_aes_encrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/aes-i586 0xe409b491 crypto_aes_decrypt_x86 +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x28afd262 twofish_enc_blk +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-i586 0x6f068d90 twofish_dec_blk +EXPORT_SYMBOL_GPL arch/x86/kernel/microcode 0xdf66ca81 ucode_cpu_info +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x04506cee x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b599714 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0fe8e797 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1202e9d4 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1493d4b4 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c4ff99 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x18eb957b kvm_mmu_get_spte_hierarchy +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c7afd50 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cfe78d1 kvm_release_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d285d2d kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dfb8005 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2856cc4d kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29906d5f kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c04fc06 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c6d0cfa __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d4dcb16 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2d6ca12c kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x335e4795 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x33780114 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38df4dfb gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3996e72f kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3bbae617 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3de08404 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f0eb8db load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f285a4d kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3f5fd8d3 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x45506ff6 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x46490727 kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4d77f286 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4fde61e0 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x52b105fa kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x596b684b kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x613e4372 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62821d36 __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62ed01a7 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6439596f __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65c128c9 fx_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x660c0586 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66245056 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a103430 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a560c6e kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b6d3fbc gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6db19e07 is_error_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74fbc94a is_fault_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7949f1ba kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x79c387d6 kvm_resched +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7adcefad kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7b05a03c kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7bbd6027 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c9b19a5 is_noslot_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x822ed17d __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87da4f6c kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87e0a257 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8bab62d3 hva_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c31943f handle_mmio_page_fault_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8ce4f3ab kvm_enable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91960da8 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x91a5db3b kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96414d5d gfn_to_pfn_async +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9744134e gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a40d8bc kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d2f2a3b kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f4f2464 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1b579f6 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa35a619e kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa79b7f74 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa91845be is_invalid_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad473158 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb337a2d6 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb34ffb11 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb63b6605 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6c87a13 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7532ec7 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb8ce1b3c kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba6c3400 kvm_set_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb996b03 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc2b937d is_hwpoison_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbc88898a kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbfafe0c3 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc02778a3 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc553b0fb kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc564b18d is_error_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca2498b9 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbd8313b kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc15df8f kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf132048 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd296def9 kvm_is_error_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd29b9c16 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4249a80 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd91510c7 __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9d5768b kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda42e243 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbdcc4f4 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf931d80 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe09ace16 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe0b77521 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe65158cb kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe85abe83 kvm_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeaffc9cc __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xee8ff414 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf0ab9991 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2912335 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3423fd9 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3708850 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4208d80 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4b5cdf3 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9a68f80 kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf9fdf4a9 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfe8f5c80 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xffa23ff2 kvm_is_linear_rip +EXPORT_SYMBOL_GPL crypto/af_alg 0x0103d84a af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x5b055768 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x717215f9 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x73521dcd af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x7e7cde9c af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x821628cd af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xe4649fde af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xe7f9e0af af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xfe3307c8 af_alg_accept +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x7c8769a6 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8cf7e871 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x97be206c async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x20b3fd46 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x92e68b36 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x541792d0 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xb5297d10 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbf71100e __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd728ad78 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x7fbcb578 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa4c2696c async_xor +EXPORT_SYMBOL_GPL crypto/blowfish_common 0x4ebe4203 blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x0f13e19d cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x15439c5f cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x34beb85d cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x65fcdd76 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x7268a25d cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x749c08b5 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x763d2e2a cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x7cf75011 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x82202cd7 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x8dd49bd5 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/twofish_common 0x0adcf80f twofish_setkey +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x1c8984c7 acpi_smbus_unregister_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0x87bd07bd acpi_smbus_register_callback +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xb9a141b0 acpi_smbus_read +EXPORT_SYMBOL_GPL drivers/acpi/sbshc 0xe1372311 acpi_smbus_write +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x059e83b2 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x7cc4734f __pata_platform_remove +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x02ff9464 cfag12864b_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x0ecb2e5d cfag12864b_disable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x305dc3c6 cfag12864b_isenabled +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x3389f926 cfag12864b_enable +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0x9522a342 cfag12864b_getrate +EXPORT_SYMBOL_GPL drivers/auxdisplay/cfag12864b 0xc48e9d95 cfag12864b_buffer +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x14102f23 ks0108_displaystate +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x48a70518 ks0108_writedata +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x4f506333 ks0108_startline +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0x6edae968 ks0108_isinited +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xbf4774db ks0108_writecontrol +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xedde6df2 ks0108_page +EXPORT_SYMBOL_GPL drivers/auxdisplay/ks0108 0xfee8ef7b ks0108_address +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x03097225 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x037635df bcma_core_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x05e02866 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12f303ee bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x44906bf1 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x96e04d5c bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc5f3328c bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd2d9255f bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd3a57bb6 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd5b41167 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda0c6062 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf1c6db91 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf24da4c4 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x070290f2 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x57f4ad5e btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5bd3edcc btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6221b12c btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9acbdacf btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa0ac5d5 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe42aae36 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe7c082f0 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0x1a17e17c scx200_gpio_ops +EXPORT_SYMBOL_GPL drivers/dca/dca 0x17b88b87 dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x2e471f01 dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x559116b0 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x591f7b73 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x8006c614 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x98c877e2 dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0xb88f18ed register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xc962dde9 free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xdc1ec698 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0949b8ca edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1bb84772 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2e69945d edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3700f78f edac_mc_handle_ce_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x39a828c5 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x51e94291 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5b70195e edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x664402f8 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x69259f22 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x71988aa3 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x71e0d4f8 edac_mc_add_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x756c5b30 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x76359e05 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7c3eaf82 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x87ba0e7e edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x896106e9 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8ac27d23 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x92d5d2e5 edac_mc_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x99124997 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbcbb6ca7 edac_mc_handle_ue_no_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd1fae542 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd56878d8 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe5d11535 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe627d0bc edac_mc_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xeaa63ef0 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf16a4961 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0d38cee6 amd_decode_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0dc0b68c amd_unregister_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x0f0ba55e ii_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x14878009 amd_report_gart_errors +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x4b01887d pp_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x6d4e6991 amd_decode_nb_mce +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0x7509830f to_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xb98537cb rrrr_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xc2b73a3a amd_register_ecc_decoder +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xe6ff7e0c ll_msgs +EXPORT_SYMBOL_GPL drivers/edac/edac_mce_amd 0xf8dec080 tt_msgs +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x013fbdac cs5535_gpio_set +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0x93f8fe67 cs5535_gpio_set_irq +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xc0bb404a cs5535_gpio_setup_event +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xd3bd9300 cs5535_gpio_isset +EXPORT_SYMBOL_GPL drivers/gpio/gpio-cs5535 0xe07c0954 cs5535_gpio_clear +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x9354e783 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xd4d3e19e bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xf0f96b84 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xfffc4988 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x12de045d drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd2a89684 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x05876c69 i915_gpu_busy +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x08a7896d i915_gpu_raise +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x402468e9 i915_gpu_lower +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0x500858b9 i915_read_mch_val +EXPORT_SYMBOL_GPL drivers/gpu/drm/i915/i915 0xe7237b0b i915_gpu_turbo_disable +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x094adeb5 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1334de71 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24ebb068 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x27e54f36 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x37b2f986 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3b0829db hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4020b2d5 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x462bbd4e hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x46aa422d hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x530e1b5c hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5faf4ada hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x636a9e58 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x67f340ae hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ef43a4f __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8c964d7b hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb23c028e hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb378b954 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7ae9d7e hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbb718196 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd2f42b3 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xce1b9032 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0e9c2d7 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd199570a hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd94e5a7a hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd60e3c7 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeafddb44 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xa3b0842d roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x03eae000 roccat_common_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7fd2d588 roccat_common_receive +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x30bed4ac usbhid_wait_io +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x5193314f usbhid_submit_report +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa70966cc usbhid_set_leds +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xde0ab6ab hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0aa9d15c vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1456028a vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x40107a4f vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x434a8609 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5b6a8e80 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6e654357 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x77f63939 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8c10906e vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x92335eaa vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd0d53576 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xf4cef116 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x93754df0 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd0a3de10 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x20cd3bc8 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd8cbf006 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x4e2cb419 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe6bcbc64 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x04660c10 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0dbc35da wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0e35cadb wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3f00ecfe wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4cd7d254 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x51bedfff wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6a6b0e21 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x72be8524 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbfe3f80d wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc8cc0c8e wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd57211d4 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf2e03cac wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x4de7b2d0 unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xb17b7c77 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x082636fe gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0aa11d21 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x170ddc18 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x309d7b0b gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x36d69438 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4c2b15fb gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4d76cf94 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6a38d769 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x700be257 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x73d8e82f gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x83ade652 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8c5b57bb gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9321a7a9 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb0b32d05 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbb3f6bad gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcc8fa6e8 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe64a6e05 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x1f27b98b dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x58c642f0 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xfa1cd757 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x47ca8998 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x63151b10 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x70b8a2e2 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x9a7a780b dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd7e2c6bb dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf17a7b16 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x03ced457 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x08a936ca dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x61c7c085 dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b2ff62 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80c89b3d dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa6aae3ea dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb7bad799 dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb967690a dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbaa513b0 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbc5fe7c1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca2bde4d dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xccaeb9ae dm_sm_checker_create_fresh +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd32479bc dm_sm_checker_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdb562135 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xe142ead5 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf99dc2cf dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/raid1 0x70b5beb1 md_raid1_congested +EXPORT_SYMBOL_GPL drivers/md/raid456 0x13b0be2b md_raid5_congested +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x08ba4a47 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x0d80ffd2 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x3a8d3646 saa7146_devices_lock +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x4a2b0d7f saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x4a42b403 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x6a8896b1 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x819897ad saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0x89254977 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xb0376a19 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xcf683cf2 saa7146_devices +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xdd5c5c23 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146 0xf3d2a031 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x005e16b6 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x5db7f0e1 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0x7ee9ed0e saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xa9c77e27 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xc2bffc64 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xccb050f8 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146_vv 0xd24ac372 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mt20xx 0x32186d1f microtune_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mxl5007t 0x24e499af mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda18271 0xd276f240 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda827x 0xa267a38e tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0x6491aacc tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0xe379af20 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda9887 0x0de28f3d tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x0e25106f tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x7a8827bb tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x3de3c0e4 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x900e72e7 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tuner-simple 0xda02e669 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-demod 0xa1ab22a4 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-tuner 0x2a8eb344 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/frontends/tda18271c2dd 0x2cf2a1d9 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x0aa7a851 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x1893a945 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x26b7372d mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x2e682ad1 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x3d83a774 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x459bcc0b mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x483cb230 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x4de33c7a mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x50a80289 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x61aa4619 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0x97901226 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xa2e77115 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xad3d01a8 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xba73c1ac mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xea419e0a mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xf25c0e37 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/dvb/mantis/mantis_core 0xf2d52eb3 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x09fbc036 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x13aa8620 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x17cf58b2 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x21fbeb6f smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x2e88ee4e smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x4dcbbe6b sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x56caa226 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x637b6368 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x69e5aaac smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x6d861920 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x76222253 sms_get_board +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x82de3745 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbded33f2 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xc10991bf sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xcf5faf0a smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xd5bd9f58 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xdeae54c5 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xe50272b5 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x0d13dcc7 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x11e2fb7e ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x1b48763c ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x4baa1435 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x4e27dabd ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xaa0c61fa ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/dvb/ttpci/budget-core 0xc00baf01 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1f7b45ca rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2cb8ca47 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3c3782bb rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x43b6c9e0 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x477ce737 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x511cdb4a rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6659013c rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6bb0f636 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7ea7bd75 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x88be6674 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9527f2c3 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x99a968ef rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9ef996e0 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa4e66011 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb4fcb11b rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe702b20b rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfec8cf8e rc_map_get +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x1013119b cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x11ab54f3 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x1b0fb06b cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x279a629d cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x30fbeb69 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x337eff13 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x492bfeeb cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x499febfc is_fw_load +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x4b45916b cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x4dc9658c cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x5804c7d7 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x6251d39a cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x75f3b337 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x77f95da7 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x83c5d357 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xd7f19563 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xef219b6a cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xef5758bd cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xf0d4d129 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx88/cx88xx 0xb84a6967 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x00f0b4cf em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x3ceab970 em28xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x4ccbf7f0 em28xx_isoc_dvb_max_packetsize +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x776ab939 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x88763559 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x920b19bb em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xab07e330 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xe70306a9 em28xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xea202eca em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xf9ffb3a2 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x100cfadd saa7134_s_std_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x17ae4d9c saa7134_s_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x583e0643 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0x968cf5c7 saa7134_g_ctrl_internal +EXPORT_SYMBOL_GPL drivers/media/video/saa7134/saa7134 0xdd5294ca saa7134_queryctrl +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x0a00cfbc tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x2a8f1593 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x4e872a98 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xffaad8d2 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x32c7de90 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x487af161 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x50c53198 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x94632f90 v4l_fill_dv_preset_info +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xaf980ce3 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xd395f6e5 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xe5932d53 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x05e426be v4l2_int_ioctl_1 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x0c001422 v4l2_int_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa5228b24 v4l2_int_device_try_attach_all +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa6e9c7a5 v4l2_int_ioctl_0 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xb683f8c3 v4l2_int_device_register +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x0967bfd2 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x19d8356e v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x545d8631 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x58968dd4 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x69133fad v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x715fe4ed v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x8f16c006 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x8f36c0d8 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xad3f4146 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xca87fa05 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xcaf0337a v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xda43a0ff v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xfc7e9414 v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x035a0223 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x2089ab6d videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x2f534e89 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x319844fe videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x4729382f videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x546bc7e5 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x5bc144be videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x64254f93 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6aa1b1b5 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6c704799 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6df81640 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x87e2608c videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8c68924c videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8c9cf0af videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x91d3a025 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x9e2536e1 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xa31cd208 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xabcf0804 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xb62ee7ee videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xc3f061ce videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xce1a0753 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xdb36055d videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xe168b934 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xe277218b videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x0d748eb0 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x3959d400 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x90347922 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x12b63547 videobuf_dma_init_overlay +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x764514af videobuf_dma_map +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x7f9521e0 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x85f9fc3d videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0x8b647f93 videobuf_dma_init_kernel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xa825c75b videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xce2f26e8 videobuf_dma_init_user +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xd6ecfd6d videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xd97e9eaa videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-sg 0xff33b6fc videobuf_dma_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x2b06f3c9 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x66ec6c2a videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x75e19a1a videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x03120d81 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x12a33ee6 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x1e6a9890 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x44a34104 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x4ce3912e vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x5eb10877 vb2_read +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x637d0828 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x813626a2 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x8648aeb3 vb2_write +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xa11a14a1 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xa7983aa5 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xab58496e vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xb046623f vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xbb6c2edc vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xca803845 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xf0295994 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xf90fdcdd vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0x0b9b4496 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xc738e23d vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x70d4d419 vb2_mmap_pfn_range +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x90e55704 vb2_put_vma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xd3329149 vb2_get_contig_userptr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xf221fa76 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-vmalloc 0xd31c4fc3 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x01d402f8 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0721c4b5 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x09b53e51 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0d438e8c v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0efba2da v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x1122aceb v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x18ab4407 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x33e17442 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x4f184613 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x6a3a9b06 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x7d251143 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x892c47ef v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x89ebd081 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x95026a16 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xa7e47ad3 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xab64b391 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xcb6ddb35 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xcf966b65 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xdf0847e0 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xf10dda77 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xfce05b67 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xfef72999 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x01a33859 i2o_pool_free +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x02aacf8b i2o_pool_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x3a7a656a i2o_dma_alloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x44a81056 i2o_dma_map_single +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x50f72ced i2o_dma_realloc +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0x5c5b8961 i2o_sg_tablesize +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xe40c043b i2o_dma_map_sg +EXPORT_SYMBOL_GPL drivers/message/i2o/i2o_core 0xf956e257 i2o_dma_free +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29d1d107 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5ef7a514 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6a3bb580 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8a09bbac pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x986e2f66 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x99f7c700 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb24ed699 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb94fdd81 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc1e4af53 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe9781653 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xecc6f397 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xff58e2f6 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x0ab966c3 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x863ec439 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x0226dc4c pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x11560de9 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x336b8da7 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3810b948 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3db41246 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1bb065ce sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x3e667941 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x42ddd7ae sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xcc61bfe9 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xdd8ec797 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x8032a07c ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x1cedee6b wm8400_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x3f01762b wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x43f9a2ea wm8400_block_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xad40c2db wm8400_reg_read +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x28d84af0 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5c1231ef cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x874ce2c9 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xf60eabc1 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x2df115d4 eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d14d2f eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x2a66e60b enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x311ca093 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6b96abc4 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7ffc4c26 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcd619db2 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xefb47de3 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf9b76ae6 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2cb182fd lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x51b07b0d lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x58fc6f0f lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8eaf66aa lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc6bf50f2 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd6233b4b lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf81843d5 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/pti 0x19f09b98 pti_release_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x23bde487 pti_request_masterchannel +EXPORT_SYMBOL_GPL drivers/misc/pti 0x52a78e81 pti_writedata +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x5e7cb021 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xfdc926f6 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x09f7dabc sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2f7d2f0f sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x50546a9a sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa8603787 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc149d98d sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xde0cd150 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe9426676 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf0eb5375 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf9cf570a sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x09eb507c sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x262fec40 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x47117d1a sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x49f2024c sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4cfc4aaa sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x75137fda sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x30b0d2f1 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4fda3a07 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x66c0c1a4 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x1bdd07db cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb6efc4f6 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe4da33b0 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xd003d7fc cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x27b39274 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x40a1b78d cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa247d927 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2000 0x5ed966d2 DoC2k_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001 0x7fd44457 DoCMil_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001plus 0x44f40751 DoCMilPlus_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/docecc 0x45937659 doc_decode_ecc +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x291464a7 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2a406bd2 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f3b7845 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x30e4b2dc mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39e124f6 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a264ffd default_mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49adb42b unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c48d62a mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c5b82eb mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4faa0d61 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63874dc8 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67ba8ba9 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6cc01adb mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f75282a kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9640477e mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9840a2cc mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9a95bb7e __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b7def8b register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9db1359b deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9077ab8 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd231d52b get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x13a1c2b1 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3ad2dafa deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x7f5f7f74 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x93f51fbf add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xe364aae8 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x045d7500 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x82d5ab25 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xc5c15da1 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x07db5099 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xed57c105 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0841b095 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0b9a77f4 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3be74f7d ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3d5a1fbc ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x44f464c5 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4ff22cda ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f09ba8a ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7a071909 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8b50d1e4 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8f65bca3 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x90719d77 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc7d831ea ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe0efacf4 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe576ed28 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd6f0ef9 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x41e257fe unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x73adaca8 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8eb96692 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xebab6d84 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x19c741d0 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2b2a9537 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x41afb149 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x829a8c2b free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9ce2de1b open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xafd3be46 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb7c8098e alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc65efb21 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc7992753 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd529df50 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd71bab39 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdba8faea alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x19061742 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x193a6fa4 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4086d4c0 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x71d54205 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0188e500 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04379dbe mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06fecb33 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x096408b9 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a18c3d9 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dbe8fa6 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13de1054 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x244f408a mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x253f9f05 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31a2d58f mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x322896bf mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x340d6200 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35e81131 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36093b44 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x379ef8d0 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a581aee mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3dddd608 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f7e8bb0 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x448205fe mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4974fdfc mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a124c63 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x514734c3 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52b24593 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54e0a95d mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e2bd520 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e82e417 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68606d17 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68973372 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x691e1e79 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a894253 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bc68b8e mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d365021 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e907ae4 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b522a63 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80353a71 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81018489 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ce87cbc mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d0d08be mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95fdc041 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b2362ee mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ba22818 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cf64022 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dad3ff3 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f7d6cc4 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa07299f2 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa32635a6 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4aedb4f mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa730fad1 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8535b71 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaae2076b mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad4d2780 mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xada71845 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf2dcfbf mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb312ee0e mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5bb25ed mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb623e277 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb86ed92b mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc29cc49d mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc443c090 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd015693f mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd07bd4ba mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0b9ea2f __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd30ea038 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0c15ded mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed21f5fa mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedf7e3c5 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2886d3d mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2e37153 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x09e7d664 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6bcb5e7d macvlan_start_xmit +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb299ea4a macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc7e66c5d macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xee9f5d58 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xe3c19bae macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x1b0c697b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4b2ce059 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x92c9be3e usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb98b484e usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x03bdf9aa generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x0b60970d rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x261c10a9 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x33c706ae rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa9cf2573 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xac974c33 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x027d3268 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0a70da6e usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c6d9195 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d70a72b usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f927d1c usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5bbb9f9a usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71c34ba7 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x72f82b9a usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74ef0c4b usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8060d86b usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x898acd01 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x91335832 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93d015da usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c2bf579 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb8cf9c7d usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc17a984d usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc54501b7 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd4eed27c usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd5c5e47a usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde4a479b usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe36f514a usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe6f59592 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed39ddb6 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xed444486 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0fce0ac2 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1954755f i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1e39a60c i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2e3dfbf5 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x50db8161 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5c2a35f9 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7193003c i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x816ed3ce i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8da02c7c i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb469efc5 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc416763d i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc8fbe709 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd79a8f92 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe1813a79 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xeec7cc3a i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfb462589 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x1c820b19 libipw_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x972efcbb libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x2e5c8ae4 iwl_legacy_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x320e1b8b iwl_legacy_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0x43a1d706 iwl_legacy_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwl-legacy 0xe3f891ca iwl_legacy_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0015460f lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x27c7907a lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x32d27be4 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4c0165f3 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7387e557 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x91c0356d lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa2c67f88 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa5e0e530 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa9a2dcef lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xafb190f4 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc2150afa lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xea49999e lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xedbbc94d lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xeeb589fa lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfebb3edd __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2c63f131 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2ffe9b69 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x390c8314 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4d353940 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x59dc14c9 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6d5b3fd2 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd5eb5c5d lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xed01bdbf lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0x2eab2d09 if_usb_prog_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0x70a486a9 if_usb_reset_device +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x217f6d60 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3ba823bf mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x63702f69 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x67fad8af mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8440e510 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8d6a8b24 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9015c849 mwifiex_deauthenticate +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9681d007 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc6f7e8c7 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcb2c73f6 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf38985bd mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5ac67011 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7962f8a8 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa6dfa083 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaa5ddbcd p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaba71f63 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc88b5d37 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xccf12195 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe20ac740 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xecc12c49 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x011a36bb rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x013e1024 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b9d3cfe rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0f2daf8f rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x13933cf7 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x148fcb4c rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x18aabc54 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1b34893f rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x21ec6933 rt2800_get_tkip_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x25fc1c89 rt2800_probe_hw_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2730a49a rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c2b9f59 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5c7b51ba rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5d0e6f50 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6796a085 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6c5473fe rt2800_init_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x79293952 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7955041d rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7ff3e1b4 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x86d57703 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8c262eb2 rt2800_validate_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x91250fb4 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa74a7ea4 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa84dc562 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaf785c18 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb305ffa5 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb4d57b61 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbca8bf11 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc16c26d7 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc6067315 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc8672660 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcf17be68 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdb91345c rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe7a0e59d rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe93130dc rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf60d16ec rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf6a7aef1 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x03ea348a rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x09dd78ff rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x11fc2d97 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15851f73 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1c5534b1 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2aff8258 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2b5617fa rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2ba4000e rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2d2b5459 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x30a5c7a7 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x37838c4f rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x384c1ff4 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3df8a779 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3fd251eb rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x48835154 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x493b01e6 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5efd5cc1 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5f9fe7d3 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6596673d rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a3229b2 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6bcc2c07 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e058094 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x70efcd97 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7325d9d9 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c961207 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8b4dd211 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x900e9701 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x92cbb882 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9e4297ce rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa159504f rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa9de6c41 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4ebda3b rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb82a8906 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbdc7e55f rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0acc811 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc2c3225e rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc8eb2bd5 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcda30383 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcf200354 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcfd4beac rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd7837ff0 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda8b68cd rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdaa3d8d3 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe4b9ee95 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xee87c859 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf1f70d71 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x12182deb rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x3242397a rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x6cd6f78c rt2x00pci_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x81f67aaa rt2x00pci_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xa3e5901b rt2x00pci_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc339690c rt2x00pci_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc734c21d rt2x00pci_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf3ca9214 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf70fda50 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x09695df9 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x13c66e0c rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1b5bfff6 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x22a2ee86 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2d8e294d rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3fa5e8c2 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x52e10756 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5a8afe40 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6c54b2e6 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x978268c7 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa48520e0 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd99e5c31 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdf0fe782 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xee473533 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf7dd8906 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xff4db2fe rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x7f3a841b wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x9bf17860 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xd2d06b8a wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x092ee4b6 wl1271_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x1072527a wl1271_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x20152f36 wl1271_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x2ea6b086 wl1271_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x87e8d994 wl1271_unregister_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x91b39f89 wl1271_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x9e07aa1d wl1271_register_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xe795ba26 wl1271_irq +EXPORT_SYMBOL_GPL drivers/pci/hotplug/acpiphp 0x372d8718 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL drivers/pci/hotplug/acpiphp 0xbbd75fe2 acpiphp_register_attention +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xaa668243 asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xffc5bb50 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/intel_ips 0x46809fa9 ips_link_to_i915_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x232b5238 mxm_wmi_supported +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0x61cdf799 mxm_wmi_call_mxds +EXPORT_SYMBOL_GPL drivers/platform/x86/mxm-wmi 0xe26032eb mxm_wmi_call_mxmx +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x3ecf6cfc wmi_install_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0x64ebe677 wmi_query_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xa9b7afd8 wmi_set_block +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xb5a6ebe2 wmi_remove_notify_handler +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc5e3dddf wmi_get_event_data +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xc9d4d6d1 wmi_has_guid +EXPORT_SYMBOL_GPL drivers/platform/x86/wmi 0xe2426710 wmi_evaluate_method +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x0a162f51 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x3218ff7b pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5d9f990f pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x37c77e84 mc13xxx_sw_regulator_is_enabled +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x4465d216 mc13xxx_regulator_list_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x7a8b9638 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9e456d10 mc13xxx_fixed_regulator_get_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa1a96922 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc9a8a123 mc13xxx_get_best_voltage_index +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf24600c7 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x897967c6 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xae13a16e wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd3e555d2 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd73ac44f wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe19f0eb0 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf83e9d21 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x4b11fae7 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x03e53d79 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06c3e2d7 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08b87035 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c8e411d cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d88dc69 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1be9b57d cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x275167f4 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x320465db cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x331b2dea cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34e44405 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x38848a4f cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x425a0ebe cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x438a007f cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x47672005 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4926f43d cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e522c11 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x51bcc6c8 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c61d122 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6151c689 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6589f593 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x66f43435 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70a574e9 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x758319e0 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x75b0b502 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7703c0e8 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77a644ff cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x789a41ae cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86b08b7d cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x923b887b cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9511036f cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x95bd9601 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e4f214f cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac792bb8 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc3fa6aa7 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc51a8691 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd0c0e2a4 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1cad41b cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe6b8d36c cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe7d9e08f cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec47bbd7 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0b74536 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb0989dd cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd071e8c cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfddf4f57 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe7a0860 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x05cd4d6b fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x08f243ed fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x245c5a3d fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x74238a5f fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7535ec3f fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdfcd5c32 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe1984f3a __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe36f347b fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe9bdf72b fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x17b72d1d iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x326112cd iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x41a14226 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x4dc4668a iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x8f7d9184 iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xc28a1258 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x004f72ae iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0171da38 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x01cb33ab iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0aab74da iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0be6e780 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0e54b49f iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14c24fe4 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23f1ae65 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x24423968 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x276d855f iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eb88f8b iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x345f12a3 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43076f48 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x442f533b iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x46da4daa iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2709b0 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x592ed3cd iscsi_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d7468ad iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6086faab iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63949ffd iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6408e5a2 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x662301cf iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c13ebf0 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x782f8a11 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c50cfea iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x92928fce iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94324235 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x963cb94b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9b7d76c6 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fce9728 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4832cf0 iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5dedf87 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa81621c9 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb67f6f1f iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7822651 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc42658c7 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5624fd4 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7dfd4a4 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcb9f810a iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd113e51 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd9304ceb __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe35f8266 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb724605 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc491175 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdd09144 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfdfb7d30 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0ec061d5 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10fb7fbd iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x25248392 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x326cb75c iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3f743aa3 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x48036ede iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x50046cdd iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6f8b7a6c iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x73c04ed9 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x79717a2c iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x871e1ff6 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xac77c618 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xaf094678 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6696c85 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xea1a3d9a iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xefec6a4e iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0cc87194 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2857a467 sas_change_queue_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a13db66 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x35e69e0d __sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x37c14b20 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41625a93 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x527fef3b sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x605e74a4 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6b087397 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6bd2b6e8 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c363a8b sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x81c914c4 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9518102d sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9a9cf68f sas_find_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f32dda3 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa2087b77 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa5281fb6 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xabfeeac8 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xafdb4c3c sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb1a6b3a0 sas_slave_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb0a9ac3 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc827b16 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8a53771 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf00b5d7f sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfbeda9e5 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x1a9d1dc2 srp_transfer_data +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x8615c7a4 srp_target_free +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0x8ac287d6 srp_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xc695f7ba srp_iu_put +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xd5e2b1d1 srp_iu_get +EXPORT_SYMBOL_GPL drivers/scsi/libsrp 0xe39a61a0 srp_cmd_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x2a318908 scsi_host_put_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x5feb3f9f scsi_tgt_it_nexus_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x6142fe2d scsi_tgt_cmd_to_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x6363ee54 scsi_tgt_it_nexus_create +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x73eb8fc1 scsi_tgt_queue_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x93764f07 scsi_tgt_alloc_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xb9698cc2 scsi_host_get_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xf2389671 scsi_tgt_tsk_mgmt_request +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xf60d9849 scsi_tgt_free_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x07e9cf7b iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f1ebea6 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x229e754f iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x427b0c90 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x76a513ec iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x785ac966 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7cf9f99c iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82c20810 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87f13e35 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92172f34 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x988724f8 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ec954da iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9efa510d iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1070b3d iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa40ec200 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa97b109a iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb14bc0ef iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc0eaa57a iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9290c0a iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcdec9f45 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfb8c41d iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd88c245a iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe5b39806 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea4b3002 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xece55fa5 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf1763608 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf661dd83 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x307b7d63 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd307918a sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd3bf668e sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd7ba75b0 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x14c4de62 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7ce903bb srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9927a646 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xaf20bbbd srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xfc0aa873 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x1a80ec3d spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x426ede38 spi_bitbang_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4b08cf02 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x4bbe5b5f spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbf78697b spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf49a29c4 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x157ec62a comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x31eafeca comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3ad77861 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x55d9eb1f comedi_get_device_file_info +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb9445ab comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x2ad71bdb das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x86fcde20 das08_cs_boards +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xfa71f734 das08_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x25e55b95 labpc_1200_is_unipolar +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x2bb8f9b2 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0x8285332a range_labpc_1200_ai +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0xaf1e4347 labpc_1200_ai_gain_bits +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc 0xc30f2dde labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x07801192 ni_tio_winsn +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x144b31a3 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2f035997 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x313e2aa9 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4a7d05c1 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5a118543 ni_tio_rinsn +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbbf3cc64 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd61f58dd ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1cacdbeb ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x53372dee ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6e23c3db ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x8adbf5a3 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9c2b25fc ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc5cc38e5 ni_tio_acknowledge_and_confirm +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x2468ed34 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x579d2806 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x587711de oslec_create +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x882d5f27 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf828c15b oslec_flush +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf923a5b1 oslec_free +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xfabc3747 oslec_update +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x3730cb0f iio_scan_mask_set +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x41f3c760 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x6d427fc9 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x75e653ab iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/rts5139/rts5139 0x35b85807 rts5139_usb_ids +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x260e1ab6 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5f23a9c8 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6d6bac75 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6e3ec0c4 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x71d87acf serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9fe5e77c spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb73a5748 get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xce56e8c5 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcf8492e1 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd3d3772e spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe4f95a5b synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xedda1b30 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf62d9d79 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x104210cd usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x2484c97a usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x87de8b68 sockfd_to_socket +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xb65e7b66 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xbd049bd0 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xc222fb05 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xc8bcbc1e dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xcb80f9cd usbip_start_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xccfe1200 usbip_xmit +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xcf443b24 usbip_event_add +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xdfd6ec22 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xeed57ba3 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xf50de1bf usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x046cb8f3 max3107_suspend +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x10b3898e max3107_remove +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x76d96f3c max3107_rw +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x966ed4ab max3107_resume +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xac8df938 max3107_hw_susp +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xf5017cc9 max3107_probe +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0d0ce6c0 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x68366ba8 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9a82c19c uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x799169e4 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8742de84 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x3cda182e usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0x40605ed5 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xa2a8f2af usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc-core 0xc2b771bc usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x172881a1 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6243bc96 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x632c2f7b usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8321f2a0 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x843aa307 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xba3b102a usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc28d814d usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd6d948aa usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfca72a93 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0ffeb3f9 usb_serial_generic_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x25c93d73 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x30b0e751 usb_serial_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x47fc5651 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x50361f8e usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x51a32d7e usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x585594a6 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6d9810c3 usb_serial_register +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6dc5e746 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6f5eea7c usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x717dcf84 usb_serial_deregister +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x84d36049 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8654e58a usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa19ce493 usb_serial_generic_submit_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbf1885e0 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd337f59f usb_serial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd47c89b7 ezusb_set_reset +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5bec867 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd996f526 ezusb_writememory +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe9d1cc26 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfc4073f0 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x07fc5f72 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x12aa8c36 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1aeb1d97 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2e1c4764 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3076e258 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3adc7b13 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x447988aa usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4ded5eb0 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x547e90dd usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5e982d99 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8767f641 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9cc95010 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa1c17730 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xae50dcc6 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb1519ab3 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc1dcfebc usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc71f6b0b usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcd03053c usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe073a6f2 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe0d2870f usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe3f30ea0 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfb1aeaf0 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x41278138 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x69e26f7b __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6c2148da wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8ce9c6fb wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa3f999e2 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x091d3e34 wusbhc_rh_resume +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x149fa989 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2a520709 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x32e27dd7 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x33d7dbec wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3ef2a7cb wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x42dddf84 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5187f3a5 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x69f71e8c wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6f6739fc __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa6158bf1 wusbhc_rh_suspend +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbd798a57 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xebf31993 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf47e999c wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf7d045cc wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfcf782ca wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1d504059 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x4b6bbe02 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6d1c5d9f i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5b57bbc7 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5d48be13 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7855ec10 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x85ef9db4 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x964b0013 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9d26b216 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd1570775 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd791a3d4 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x07151ace uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16b1d0a3 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1fbd03ca uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x21580d90 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2e03f3be uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x37976b22 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3cc0e594 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x400bf5de uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x49f3a119 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51fe4bfd uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x541325fe uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6515f73c uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x68cffd29 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6a6fcf4e uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x729d1d71 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x73dc323a uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7403b318 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x772569c8 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x776a79b9 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x841a32b3 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x88639b8c uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ed9a6a7 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac55a4c2 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xadc5ecb6 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbcce3fe2 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc5ed03e2 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcd064e40 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcd820395 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcff649c1 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd1615b90 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd759aaa5 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdc01dd12 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde41cfa8 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe07934e8 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9798d2b uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xede5cf7e uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfd7baf0a uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xded4070e whci_wait_for +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0x2c63e051 apple_bl_register +EXPORT_SYMBOL_GPL drivers/video/backlight/apple_bl 0xdab0f892 apple_bl_unregister +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0d7fc322 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x21c2cc24 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x27ddce4b ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x60f41bb5 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7f483abf ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf608473d ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xfbcf7926 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fb_ddc 0xa26b2e0b fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0x6915d082 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0x7323ca90 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0x1e379129 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/sis/sisfb 0x51212fc0 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/vermilion/vmlfb 0x016e6c20 vmlfb_unregister_subsys +EXPORT_SYMBOL_GPL drivers/video/vermilion/vmlfb 0x90c018c6 vmlfb_register_subsys +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x22a7af24 viafb_dma_copy_out_sg +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x292da7a2 viafb_irq_enable +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x30cc9311 viafb_request_dma +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x31469540 viafb_pm_unregister +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0x79e6190a viafb_irq_disable +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xb4f863e6 viafb_pm_register +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xcaefb732 viafb_release_dma +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xcba55132 viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x02b2796b w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0fa1cf24 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2591b74d w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x393ec7c7 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x55e44298 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x700faa0c w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9fbfda9c w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa4eddaa1 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb2778a4e w1_touch_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0864c4a4 dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4816042e dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x987250c6 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xe5ef307a dlm_posix_get +EXPORT_SYMBOL_GPL fs/fat/fat 0x18d10301 fat_search_long +EXPORT_SYMBOL_GPL fs/fat/fat 0x240c5d23 fat_build_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0x360592a2 fat_dir_empty +EXPORT_SYMBOL_GPL fs/fat/fat 0x413103d8 fat_fill_super +EXPORT_SYMBOL_GPL fs/fat/fat 0x5f34a02b fat_alloc_new_dir +EXPORT_SYMBOL_GPL fs/fat/fat 0x600d65e4 fat_remove_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0x72463526 __fat_fs_error +EXPORT_SYMBOL_GPL fs/fat/fat 0x7b8a9659 fat_add_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0x91f617b5 fat_time_unix2fat +EXPORT_SYMBOL_GPL fs/fat/fat 0x9cc5a578 fat_flush_inodes +EXPORT_SYMBOL_GPL fs/fat/fat 0xad644674 fat_scan +EXPORT_SYMBOL_GPL fs/fat/fat 0xbc8e4286 fat_detach +EXPORT_SYMBOL_GPL fs/fat/fat 0xc4011f14 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL fs/fat/fat 0xc90b699e fat_setattr +EXPORT_SYMBOL_GPL fs/fat/fat 0xe1a01ad9 fat_sync_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0xea7bb624 fat_attach +EXPORT_SYMBOL_GPL fs/fat/fat 0xef24a632 fat_free_clusters +EXPORT_SYMBOL_GPL fs/fat/fat 0xf42e0b57 fat_getattr +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x17ce645d locks_end_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x42813bfe nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f959b35 locks_in_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8d72c11c nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96877ac4 locks_start_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x97c155f7 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa7b91a7b lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb8005f2b nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe2d053e5 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6933c48 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33e1f485 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41719c33 nfs_initiate_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x457a433b nfs4_reset_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ab0ad6f nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x593084e7 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a2d65f6 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x626281c4 nfs_initiate_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x735af091 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x747f4f7a nfs4_reset_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a246a04 nfs_commit_release_pages +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80ea174d nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87a8ad19 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb16ad484 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8bdba3f nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb5b908e nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd64caa6e nfs_commit_clear_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5a87370 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe6e90f2c nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xec15f900 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x08fca8d2 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x21cec364 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x23cf2028 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xadf9f11e o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb09284e0 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbbc16f86 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc69d5fc4 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0a3a5213 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x29cc7cbc dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x414b48d7 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x44ef6d85 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc484dbfd dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd502fd75 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x025e2d69 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0562c415 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x05959145 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x16b2e575 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x2b4ac6ab ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5469ce31 ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7083dbd5 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89502fe7 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb4bd060c ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc1b20d07 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdc823ea4 ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe2bd47db ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe417d940 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL lib/bch 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL lib/bch 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL lib/bch 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL lib/bch 0xbdf512de free_bch +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x05513b71 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0b8ef590 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x4a48d81c raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL net/802/garp 0x7c136b0b garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x7f3d7941 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xa9a15b60 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xab4ea10f garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xc52d6fb3 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xde24a58b garp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0xa3d31292 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xd0d1448f stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x267fa5e8 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x9ca5ae59 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0x50754510 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xe2c6bb26 unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x2b21af90 ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd40ba892 bt_debugfs +EXPORT_SYMBOL_GPL net/dccp/dccp 0x017921b5 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x125249b5 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x17502c1d dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1f8b9beb dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1fba8e29 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x285810ed dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x348d833c dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3525c0a3 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3556ee61 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3571ea3d dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x381cfd0e dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d87e1dc dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4220ebe9 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x45fde28d dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x465c01e7 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4e4452c2 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59ff5457 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5f1cd994 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x62c49492 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a4787fa dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b4b9ad8 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x763af0de dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x85d187d4 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8eb68a86 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x90ca459e dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94c5ce6d dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d86a236 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0b20c98 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa50c7e13 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xab705ba9 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xae900df8 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcf5cd502 dccp_insert_option_elapsed_time +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe050ec5b dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xef34fe32 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf03bf970 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3017e21 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x12eedd22 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x22f114ce dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x67ea11a7 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9311eaab dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9a65cf8b dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa47e08a3 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/ipv4/gre 0x16d4d197 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x77a299a8 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7c2101e0 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x88472b43 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x5aa568f5 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xc3a6818d ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x44134353 nf_nat_seq_adjust_hook +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x6d40a921 need_ipv4_conntrack +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x07ae60b6 nf_nat_proto_in_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x275229c4 nf_nat_proto_unique_tuple +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x6b527630 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x94a08134 nf_nat_proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xb94bedf5 nf_nat_get_offset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xd7d45665 nf_nat_set_seq_adjust +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xedb13b7c nf_nat_packet +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xf34b1b12 nf_nat_proto_range_to_nlattr +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x32bb634f tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x78a0d042 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x851b1ee3 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x985693e3 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xfa1540ab tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x6b382b9d ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x02b1dd80 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x249cae71 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3afe36b9 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x42d135f3 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4642d106 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5516f862 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x78f3309a l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8abe3e0f l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaf9dfc6c l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2f5f068 l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe58e228c l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xffc665ac l2tp_session_delete +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9d045716 ieee80211_iterate_active_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xae4997d4 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbb29e71c ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbf88c6a0 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebde69a8 ieee80211_key_removed +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec6dc70a ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee2333a9 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfad03705 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfb5f6064 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bd82539 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4872ed40 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5aa0f832 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6e5013f5 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x73234c44 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8aafdef9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ca6d85d ip_set_nfnl_get +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7f5c049 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5f9b62f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd0c35243 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdc0301d8 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeba6cf16 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf0124175 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf94f1d4f ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0a965b31 net_vs_ctl_path +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x190d1b57 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x50dcb904 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9eebaa6f unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc1130f76 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x036f36a7 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03a8dff5 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x066fff72 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a3b9c7d nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a4994cd nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bc10036 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d6d5338 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21e439a8 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a76241c nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ad58278 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cc26f49 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cdcafa7 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ed4c048 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3369b90c __nf_conntrack_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39fc1ded nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c30c1c4 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x49458631 nf_ct_insert_dying_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4aebb71d nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b3aa89d nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x528b9342 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5672add2 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b4b1b72 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64dc04fd nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6bf38bb5 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x744b0147 print_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x744fb408 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75568f3c nf_conntrack_hash_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x75f5c9de nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a889be4 nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7cc95ea4 nf_conntrack_flush_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ed36c3f __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x834e512e nf_ct_nat_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x884dd291 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a474849 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x92982965 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x93e80b0a nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97b42f89 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b412165 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f8cd8c5 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa17874dd nf_ct_remove_userspace_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1de6988 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad674e10 nf_conntrack_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadbaba47 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xae683311 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb3ab1519 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6bba863 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb859ffb4 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2b22c7b __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc47ddbbe nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9e04f8c nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9eb3a08 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca6d700c nf_conntrack_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccff65e4 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3dfcac0 nf_ct_delete_from_lists +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd69c031f nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdef06f4a __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf813723 nf_conntrack_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xea74af2c nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed4de8e9 nf_ct_l3proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee907105 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa3d8247 nf_conntrack_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x21e8910a nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xc13339da nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x7db1a2c1 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0029e4c6 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4034e15d set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5f288aab set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x821849c1 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x89a2a8a4 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xceb9b00a nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd6fe9075 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd995c8ce nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdabd8462 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xff928fb9 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xe8ed8a82 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x01c5b78b nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6585154c nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9deabf8b nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc59ef068 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x84d5bbe5 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xb44c9fd1 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0cda40df nf_nat_sip_expect_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1437d4ff ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x19b2f844 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x27e27ded ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2a770d29 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5af38465 nf_nat_sip_seq_adjust_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8aa86200 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8bc3207b nf_nat_sip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa0092250 nf_nat_sdp_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbb6a8c23 nf_nat_sdp_media_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc21a45e5 nf_nat_sdp_session_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xde490b07 nf_nat_sdp_port_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe95f197f ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x7c343535 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x16b78c67 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tproxy_core 0x7ac96b35 nf_tproxy_assign_sock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f58e71b nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x25e1d11d nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x27e6c1fb nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3895cd7a nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x40c374fd nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x76308477 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbe24d3b0 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xce0e5006 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x7939ccf3 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x21f5bea6 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29c57b0b xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3681e5c8 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3c0e319f xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x439e6aab xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5ab35e22 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x83f4e303 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xad888be3 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc4f6d187 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd007d648 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdb5d6c2b xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdc7d1ec8 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeccfc99a xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x133e13b5 xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf7b03908 xt_rateest_lookup +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x1aa6fcd2 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x262e1dc2 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3a5fca54 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x3ca22e6e rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x4464e098 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x4df443ca rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5797330e rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x623a6ac5 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x64766775 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7794dce0 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x7c3f4bd5 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x80cdfca1 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x84f70a32 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x85fef96f rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x93a00680 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x93c9b7c5 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9b06d77d rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xb5b93766 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc9e55bb7 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xcc8c1107 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe0bb7f7a rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xefc2f4ab rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xf228054a rds_message_put +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x066a4c6f rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x103b17f1 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x01fa99c2 gss_svc_to_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x1494fb1f gss_mech_get_by_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3111e325 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x36bc9a29 gss_mech_list_pseudoflavors +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3785996b gss_mech_put +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x37b5b415 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x45551e1a gss_mech_get +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5c86b726 gss_mech_get_by_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x699a2104 gss_service_to_auth_domain_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6fbf34f3 gss_pseudoflavor_to_service +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xabf810fe svc_gss_principal +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb20bab53 gss_mech_get_by_OID +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xbab4e3e0 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00606bf1 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0079fafc svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0349e969 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04f15233 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x072d779c rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x089007d4 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x098a2c93 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac6a6ad svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x103bdbfa svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10a383eb xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10fa2de8 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x114ec89c rpc_mkpipe +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e280e3 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13e639bc rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14e940af rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14eeb95a xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16bdd974 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16bddc04 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17e2a592 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19b7d112 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a2a653c sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a57dc9b rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af087f1 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f111ad1 cache_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2020621c rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20b56f9a sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2418ac0f rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25f492c4 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26b6c271 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27508eaa rpc_queue_empty +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x278cb528 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x289cb438 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2932c38d cache_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x297d6b80 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29f53429 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a14c8cd rpc_get_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a6b0c8e xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb23c73 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x312dad55 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x326d7a29 svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36a8a0ee cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37829902 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39a50051 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b2132b4 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b54bd7c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c58b3ee rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d3f553c xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e75f932 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41d2d9af xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c8e4e1 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x430bbd2d svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ed046c rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48a5e829 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ba47d3b xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d3d7c07 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d72afe7 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5106293b rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57707455 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b14ec1a rpc_put_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd26000 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cfa8bd6 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec44c63 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec7ace1 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ef13aed rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x618bdbd6 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62edd99d rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63261bc1 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66747699 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x693ffd8e auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69c3d13d xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b7c0b60 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c192ef6 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c26ce2d rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cdd8608 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e126334 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eea229d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f825199 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7600606a rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76ab9c1c read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7769d98b auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79d53d18 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79f90a61 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d89122b rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e19bbac xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80540cc1 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x815e70c6 xdr_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82aa882a svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83d069f4 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x845efee5 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x845f3973 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84cb9c87 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8523cccd svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86b64d87 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87287cf0 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ab36719 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d8fc2f1 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e6ae665 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90e03205 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91c5a59a rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x937927d5 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95e3c0db unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x978f74e4 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99ea7930 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b11c9c0 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c020b25 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d3a2aec rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1c27c36 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2baa6f8 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa631a67d rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7bfa253 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab66684a rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacc82de2 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad40e292 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf9d9c92 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafe36504 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafef7650 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0fe5f4f xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1b20b51 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2bcf202 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb38febe0 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4d73d7c xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8c552d0 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe33ca3a rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe9479dc rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2401ced auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc796e5e8 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb179623 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc454c38 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd040b9e xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcea88b40 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd24abcbe sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd43f33c8 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd648f743 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6e25d3e svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd70e20a1 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7a00e42 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd2ada76 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf6a2d83 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1321f5d xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1770b4f xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2477313 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4a6fafc svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe830638f sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8c805de svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0b06ae svc_sock_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec96630d rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeff3dae1 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c9a232 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf534f751 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf67cb530 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf74f743b rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf885e528 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/wimax/wimax 0x18afb818 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2675163d wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x72b8aa6b wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x79a26d0d wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xaa3ed9e5 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xacbdb388 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb3a27786 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc9a06e13 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcaaa0f13 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd9f4ae7e wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xeadacac6 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf157c1b2 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf4ba5431 wimax_state_change +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0c4b0d3b cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1de3f972 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3f6c564f cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x69173c93 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6d7322d7 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6fdec6e5 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8faec5ed cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9b549692 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaff938c6 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xddd72693 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xee52baaf cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0a4f9ab8 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x0d7f51d2 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x253669c1 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8e26d65c ipcomp_init_state +EXPORT_SYMBOL_GPL sound/core/snd 0x0b5a2ca7 snd_kctl_jack_new +EXPORT_SYMBOL_GPL sound/core/snd 0x2ba2e164 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xd60a2751 snd_kctl_jack_report +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x10e88524 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0a40a627 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0f3f4e5f snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x21c3daac snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb4ff724c snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe7fc3ead snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf8e3c75d snd_ak4113_build +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0676f5ac snd_hda_get_input_pin_attr +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x092c50c0 snd_hda_queue_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c187984 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e2dd697 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0eaa096b snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1579d733 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15c39d31 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16a20dd5 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17ab7bb9 snd_hda_codec_resume_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1922f43d snd_hda_codec_amp_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c6e8dfc snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1ca31b59 snd_hda_query_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fc6154b snd_hda_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30c923df snd_hda_delete_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x346525cf snd_hda_is_supported_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x399d5d4d snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c2e6a01 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e3808fb snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f2c26af snd_hda_check_board_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fd764f3 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43c326fd snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43e7a3a0 snd_hda_override_pin_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4484740b snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49e8e553 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a077ba0 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bd491af snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cf24826 snd_hda_get_sub_nodes +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cf33dbe snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4dab1f60 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x513528cb snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x526b092c snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x593a3836 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a8a8f9a snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ad6b8d4 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c366c01 snd_hda_jack_detect +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x651d72f1 snd_hda_codec_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ca6940a snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x719ec17c hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73371735 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74ba6cf5 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78b3fe8e snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dc16f5f snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e5cd54e snd_hda_resume +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x804bfe20 snd_hda_bus_reboot_notify +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8106e3e1 snd_hda_ch_mode_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x813f9e99 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89e33676 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e4c6826 snd_hda_calc_stream_format +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8eb7f490 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x907820b3 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90dfc63d snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90fd7a41 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9171f167 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x928fd0a1 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x93225024 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x933259e6 snd_hda_codec_update_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9531599e snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98290595 snd_hda_bus_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bbdacd8 snd_hda_create_spdif_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e40e6d5 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa02aeaba snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa20f3126 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2537eee snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2827d76 snd_hda_get_jack_location +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3d181d4 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa48791f3 snd_hda_codec_resume_amp +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9889187 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac6a2010 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf9a8e0d snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0a6b9ef snd_hda_sequence_write_cache +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1450559 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2166c04 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb34e8628 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb59172ef snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb59c63ac snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6cd5da9 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb954cfd4 snd_hda_query_supported_pcm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb60fc33 snd_hda_suspend +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd2a49e8 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc08beaa8 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc170891b snd_hda_power_up +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3e91085 snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4030c5a snd_hda_ch_mode_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc62584ae snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc652fd69 snd_hda_get_jack_connectivity +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc967964e snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb17a288 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb301b6e snd_hda_get_jack_type +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd05f52a4 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd226c6f0 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4f38cf3 snd_hda_codec_read +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd72eba1c snd_hda_jack_tbl_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7368d97 snd_hda_check_board_codec_sid_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd81d398d snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd95ef72b snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda9ed8b6 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb427530 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0815f35 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe08c597f snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe37ddd2d snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe57cfc82 snd_hda_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe860d2ee __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeaa199c3 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed43747f snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda8ec2a snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee709d3f snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf37e3494 snd_hda_ch_mode_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb7b6e38 snd_hda_add_codec_preset +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfdf2432e snd_hda_codec_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe5e0579 snd_hda_power_down +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x02a01ee3 pm860x_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x470791fb pm860x_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cx20442 0xdddb09f1 v253_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-l3 0x78c84c7e l3_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max9877 0xcd525d6e max9877_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x18672139 aic3x_set_headset_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x773926a3 aic3x_set_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xa45f797d aic3x_headset_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xacf0aa04 aic3x_button_pressed +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xb912d68e aic3x_get_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x1ab9c421 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x8585ad19 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wl1273 0xa8ed4b9f wl1273_get_format +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x292070c8 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x381412a4 wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe0e0e44f wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm2000 0xbca279e9 wm2000_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x55bb640e wm8350_hp_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x87ba25b6 wm8350_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x45d910a8 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x0a97daf3 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x6bcc9ff6 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xa4396383 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8996 0xfb1c4d23 wm8996_detect +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02ddbe6c snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04f3cbbb snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05335017 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x075ae60f snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x094b0bea snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0bf7f430 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ce056f2 snd_soc_unregister_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d84d129 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dff8630 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e33fa92 snd_soc_dapm_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12e864d3 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13b70b6c dapm_mark_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15ae06cd snd_soc_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d754c75 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28e4d34c snd_soc_get_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x328f1b85 snd_soc_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3795fb8c snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x398d1a02 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a8d19d0 dapm_reg_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3acc53cb snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bc6f8bf snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d2224f3 snd_soc_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d6ea5ad snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e0a3001 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e0a363c snd_soc_info_enum_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40c16b17 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x431dbd54 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43eeda53 snd_soc_info_volsw_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45272785 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x452fcf1d snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4786eb8f snd_soc_cache_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47ba47e0 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a026884 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d5b2fdb snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f5b0bcf snd_soc_dapm_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x536854cf snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x574d8043 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57cd86bd snd_soc_codec_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ac9ade2 snd_soc_cache_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ad7d6b6 snd_soc_bulk_write_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5bc5a7f9 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e1a7f9e snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ec7bfe8 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fddca26 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x66f2f960 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69f28c4f snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ad42a14 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x705c874d snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x705f1f0c snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71002ce1 snd_soc_info_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71b7e09c snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71fcdf82 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7391c401 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74e4bfad snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x752c6be2 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77384f29 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ca05546 snd_soc_put_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f70e93f snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a18c986 snd_soc_info_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b9862ee snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c09afa5 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c6b19ee snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96f4e4f9 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a63a315 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa017c15c snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3b196e9 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa49bacb1 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5129461 snd_soc_dapm_get_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa561cc1f snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6139877 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5930371 snd_soc_codec_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5ec484c snd_soc_dapm_put_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7aa81eb snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8cb02ca snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8f4dbbc snd_soc_codec_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb972c5a snd_soc_cache_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3ecf3c2 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc50af11d snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc710b8ca snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc902c141 snd_soc_put_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9b57f72 snd_soc_default_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb456467 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd4b3706 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd21571a7 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3f39f93 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4a9e268 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8fdfe87 snd_soc_get_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda848bf7 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdaba5ba1 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc81f398 snd_soc_update_bits_locked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2c728d1 snd_soc_add_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe821bc3b snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe997c1fd snd_soc_default_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea68f36b snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee3d8883 snd_soc_default_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee4ed8aa snd_soc_register_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee85d9b2 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeebfcd72 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef6fd077 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2652342 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf41a1edd snd_soc_codec_set_cache_io +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0067df75 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x0088a193 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x00a8a4cc regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x00c4dc87 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x00cff5e6 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f1d0dd mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0118cfd8 __rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x011bf418 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0121be88 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x012ebba1 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01441e85 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x01496489 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x017543f0 net_ipv6_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x0188d95a inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x018ab07d dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x01a4ea6d unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x01d5d269 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01f294cd da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x020cc735 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x0224de4e hrtimer_start +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x026676d0 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x027b0fad page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x02c0e605 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x02da88d0 tpm_remove_hardware +EXPORT_SYMBOL_GPL vmlinux 0x03292357 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03448461 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x0394d162 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x03ad7c20 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x03b74ca3 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x03ccd70c xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0x03e1f703 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x04007109 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x0408b2d0 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x04253483 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x04486e88 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x044dae08 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x046370e7 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x04b07d7e bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x04bf26af ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x04c3f2c1 gnttab_empty_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x04d64d27 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x04ef8a1b __clocksource_updatefreq_scale +EXPORT_SYMBOL_GPL vmlinux 0x05057d0f cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x052a3522 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x0531dcb8 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x056ab0d0 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x05890c57 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x058dd04a xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x05ae262e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05b0c446 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x05c1048c xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x05c3b733 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x05dc42e4 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x05f30345 scsi_nl_add_driver +EXPORT_SYMBOL_GPL vmlinux 0x05fe1cf3 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x060d1064 set_memory_ro +EXPORT_SYMBOL_GPL vmlinux 0x0619ca8a getboottime +EXPORT_SYMBOL_GPL vmlinux 0x062fc169 xen_hvm_resume_frames +EXPORT_SYMBOL_GPL vmlinux 0x06307e43 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x0631c47c ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0652c206 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x0655b499 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x0673e573 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x06b346c8 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x06d2b975 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x072e6c8a pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x074d6a47 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x075ef444 sysfs_schedule_callback +EXPORT_SYMBOL_GPL vmlinux 0x07aba93f dw_spi_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x07ff4aea xenbus_scanf +EXPORT_SYMBOL_GPL vmlinux 0x08046f41 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x08232b4b device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x082b2ed5 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x087ee4e3 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x08904f20 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x08f5471c led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x0927e164 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x093b586a crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x098aae89 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x09a2868b fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x09a52e75 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x0a5b419b ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x0aa3103e pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x0aaf497e fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x0ab29d60 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b19ed7c apei_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0x0b21e30e tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x0b28defb kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b34e266 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x0b5e86be da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x0b98b7f5 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0bb792c3 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x0bd40102 user_update +EXPORT_SYMBOL_GPL vmlinux 0x0be13004 usb_storage_usb_ids +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c1b7edd pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c5c383c usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0c5d0d77 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c9202be ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x0cb26551 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x0cb4831d key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc39d7b crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0cc5303e input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x0ce16b20 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x0ce4c184 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0d00bb6c usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x0d1daceb attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x0d23c708 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x0d51d3b3 scsi_nl_add_transport +EXPORT_SYMBOL_GPL vmlinux 0x0d5800bf shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x0d826d48 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0ddc7295 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x0deb0ade register_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0x0e0623b0 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x0e0ab07f ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e162740 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0e2f2e69 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x0e3cd724 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x0e49f993 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0ec210b8 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL vmlinux 0x0f06b9b5 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x0f48e6a4 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fb95824 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0fbd2094 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fde06b5 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x10005132 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x100c48a2 unregister_dock_notifier +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101f8c29 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x10299082 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x102b09c6 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x104478e5 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x104dacc5 tpm_bios_log_teardown +EXPORT_SYMBOL_GPL vmlinux 0x105d6d8c devres_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1060a1d1 sysfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1061d8ee kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x10726a12 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x109120fa rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x112952e8 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x11411818 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x115f7a90 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x116c60ee sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117ab552 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x119fa681 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x11dd74a1 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x11f447ce __gpio_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x12016adf tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x1212a69c dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x121ed3f3 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x12311d0e perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x1234c315 crypto_aead_type +EXPORT_SYMBOL_GPL vmlinux 0x12436a27 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x124ae1a3 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1258d9d9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x126375df devres_get +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12866951 sysdev_class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x131a73e8 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x133215b6 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x13574bbf nf_net_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13a58e65 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x13b2a946 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13f3e3fb klist_init +EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x14683770 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x14af3f3f pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x14f7daf8 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x151d5fd8 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x1525cb1f blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x153a0c91 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x1556756b usermodehelper_is_disabled +EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x155a08ab inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1598dc9d unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x159e8b5d init_fpu +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15e77835 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x160fbb9d ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1616d335 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x163bc646 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1655bb05 queue_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1679b4d2 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x16a05246 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x16b5dcaf sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x16c57b0c unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x171b577b unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x172e72d4 vdso_enabled +EXPORT_SYMBOL_GPL vmlinux 0x17456a48 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x17987f96 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x17a650fa rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x17cd03b4 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x17d6905e transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x17f78860 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x182245e7 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x18310a9d vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x1840a3ac pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x186a519f usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18c55834 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18e2c347 dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x18eac2c9 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x18ffbeec ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x192cef22 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x193d48e0 trace_current_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x19496284 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x195264ee sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x19711643 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x1993c415 swiotlb_bounce +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19c48fb0 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19ded266 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x19ece584 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x19f80702 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x19fc7f60 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1a1d5e74 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1a323362 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x1a6b29ca scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x1a790211 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0x1a7c356d simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x1a958f66 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1aa865c6 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1ad83009 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x1ae0e135 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x1aece301 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x1af85a89 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b308f9d ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x1b34b3a4 blk_queue_bio +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b648179 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bb59be6 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1bd10446 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x1bf604cb rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x1c16990d cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1c34156f ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x1c464082 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x1c513ca2 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c6c110b tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x1c6ddf45 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x1c852e7c xfrm_calg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cc74e11 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x1d0759f3 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x1d365b03 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d52e9d7 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d7e87af rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1d95fdb7 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x1da817b7 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x1deba3d3 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x1df16d9e rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x1e0e82d0 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1e2a38b9 tpm_store_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1e314b21 regulator_use_dummy_regulator +EXPORT_SYMBOL_GPL vmlinux 0x1e317267 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1e3a88fb trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1eaec2ea tpm_show_caps_1_2 +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1eba928f ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1f017b4c crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8ec1b3 acpi_get_pci_rootbridge_handle +EXPORT_SYMBOL_GPL vmlinux 0x1fcece42 inet_twdr_twcal_tick +EXPORT_SYMBOL_GPL vmlinux 0x1fe134fd driver_add_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1ff2cab8 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x1ffb61c3 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x20105ca6 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x2038d014 tps65910_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2040e3c0 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x204be5ad max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x205c5ffb sysdev_class_register +EXPORT_SYMBOL_GPL vmlinux 0x20761c64 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x20856882 proc_net_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x20bc3470 orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x20f7b153 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x2101345f xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x218cfe8c blkiocg_del_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x2196f937 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x21a21ea4 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2203f383 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x220b3121 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x220bb1a4 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x22277d96 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x224f2ca5 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299b8fe scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x22ced020 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x23679939 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x2368a8bc vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x239ca1ca pci_pri_enabled +EXPORT_SYMBOL_GPL vmlinux 0x23a3efb3 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x23a9f76a crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x23b86a4d usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x23bcac9a i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x2400ee84 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0x24208b01 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x2431ead4 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x24377f77 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x2447533c ktime_get_real +EXPORT_SYMBOL_GPL vmlinux 0x24537e3c dm_requeue_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x2465e664 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x246be5f1 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b9777a swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x24bc4dae __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24e1307e flush_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x24e9de3d perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x24eaa2e0 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24efe3c4 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x24fc46b6 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x252e43b4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x2580711e rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2584972e input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x25895b19 get_cpu_sysdev +EXPORT_SYMBOL_GPL vmlinux 0x25d417ba tpm_show_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x260c5d2d skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26652e2b wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c4eafb ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ef00ad sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x273aab74 xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0x274a1894 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x276a303c rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x276fb42f da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x27760f7a cgroup_add_file +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x278e3660 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x279d92bb unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x2826afca ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x283ee1a3 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x289a8d2c driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x289d28d5 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x28a26891 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x28a82da4 snmp_mib_init +EXPORT_SYMBOL_GPL vmlinux 0x28ab8a1b relay_close +EXPORT_SYMBOL_GPL vmlinux 0x28d664ff __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x28d83590 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL vmlinux 0x2901a718 queue_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x29059b53 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x29104d18 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x29bab166 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x29bdcf60 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x29c3a5de fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2a29cd4f rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2aa8ee12 dw_spi_add_host +EXPORT_SYMBOL_GPL vmlinux 0x2b088152 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x2b1178a6 __scsi_get_command +EXPORT_SYMBOL_GPL vmlinux 0x2b3582da invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x2b42ff3b class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2b48b9e8 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x2b5e9742 blkiocg_update_io_add_stats +EXPORT_SYMBOL_GPL vmlinux 0x2b655abb watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2ba59704 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x2bb262d4 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x2bbd52d8 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x2bdf02c0 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x2be7fb8e disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2c0dc18b filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2ca4ebcd regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2cabd222 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x2cacface sysdev_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cef12ec fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL_GPL vmlinux 0x2d35199f fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x2d471c3a fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2de1c62f ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e287e80 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e3dc05b pxa_ssp_free +EXPORT_SYMBOL_GPL vmlinux 0x2e3ea949 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x2e400707 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x2e45e488 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x2e47f677 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x2ea00b62 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2ef86505 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x2f286d3c device_add +EXPORT_SYMBOL_GPL vmlinux 0x2f38e40a devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f47d8c7 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2f683d9f edac_put_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0x2f79f791 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x2f7fbcae platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2f857551 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0x2f896eba free_css_id +EXPORT_SYMBOL_GPL vmlinux 0x2faee1a3 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x2fcd9e17 dpm_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x304f23e8 register_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x306fd9bb con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x307f7776 timecompare_offset +EXPORT_SYMBOL_GPL vmlinux 0x30857841 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30a619c2 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x30b464f8 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x30e26237 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3108ea46 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31176a91 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x316af212 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x316db187 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x318920b1 register_dock_notifier +EXPORT_SYMBOL_GPL vmlinux 0x318a65a1 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x31a8f8c6 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31df9eff md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x31fc162c usb_string +EXPORT_SYMBOL_GPL vmlinux 0x325da3da debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x32612803 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x3278ff91 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x327f8685 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x329006f1 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x32b31a8c ktime_get_boottime +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d254d9 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x32d5e7fc xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x32dfc8f9 proc_net_fops_create +EXPORT_SYMBOL_GPL vmlinux 0x32e44cae inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x32fd4b62 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x330544fa ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x3331b0a4 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x334f2f66 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x33543801 queue_work +EXPORT_SYMBOL_GPL vmlinux 0x33589e9b cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33a25985 sysfs_rename_link +EXPORT_SYMBOL_GPL vmlinux 0x33b5c4fe cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33c3a5eb debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x33ce6b57 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x341824f6 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x3441c3d6 gpio_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x34787498 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34db7dcc crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x34f64e44 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x350eb1de wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x351199a4 blkiocg_add_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x3534d2f4 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x3534e2a3 system_nrt_wq +EXPORT_SYMBOL_GPL vmlinux 0x357b187b gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x35ac5043 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x35ccfe09 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x3619a195 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3624a4bd usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x362e23ec call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x363304b3 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x366402f8 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x367cf52b usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x36875389 __timecompare_update +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36b71ab2 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x36e1d101 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x36e91c16 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x374ebbe9 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0x37788daa tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x37948546 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x37ca422c ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x37f696ca pci_block_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x3841ab01 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x38748a22 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x38848bec ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x38968a18 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38e3aa5c xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x38ea936e __memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x38f2bea5 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x38f943d7 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x394a2fee ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x399383e1 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x39b09cd3 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x39e15e5f trace_nowake_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x39e653d5 gpio_export_link +EXPORT_SYMBOL_GPL vmlinux 0x39ea6c06 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3a02a6e4 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x3a11e91a skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5c6857 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x3aba6085 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x3ac0e0da devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x3b05f0c3 xen_swiotlb_map_sg +EXPORT_SYMBOL_GPL vmlinux 0x3b1746c1 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x3b4d3dc9 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x3b5f2278 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b81b9a7 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x3bc7bc18 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x3be89d3c usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x3bf67c22 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x3c0642f9 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x3c28bd98 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x3c917de2 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c942368 profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cac21b9 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3cc74f8f class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cfedb3f register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3cff6774 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3cff93df debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x3d078023 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d40d58a rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d7ed1ff tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x3d84d51f mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3d8bb472 dw_spi_xfer_done +EXPORT_SYMBOL_GPL vmlinux 0x3daa0982 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3ddce652 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x3dde0e07 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfdda89 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3dfe014a usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e0807ae ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x3e195714 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x3e267d6f page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x3e27326b devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e7eaf73 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x3e7f0dfc __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x3e9bfc1d ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x3e9ca55f __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ec131d2 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x3edad223 usb_usual_clear_present +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f12e8e8 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f22d7b8 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x3f25a1da tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x3f54548c wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f8f723b md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x3fca765f usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x402e5db5 pci_renumber_slot +EXPORT_SYMBOL_GPL vmlinux 0x40333e3a usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40491f72 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c24ec6 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e562f3 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x40e58319 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x40e96b71 usb_usual_ignore_device +EXPORT_SYMBOL_GPL vmlinux 0x4147e832 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x41d21746 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420e12df bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x42389121 default_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x426f13b9 e820_all_mapped +EXPORT_SYMBOL_GPL vmlinux 0x4274b2b7 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42ba8c9e __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn +EXPORT_SYMBOL_GPL vmlinux 0x432327a2 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x4323447b sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x432fd7f6 __gpio_set_value +EXPORT_SYMBOL_GPL vmlinux 0x434fb953 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x435e6c6e crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x43b3c046 xv_malloc +EXPORT_SYMBOL_GPL vmlinux 0x43d66d2b usb_is_intel_switchable_xhci +EXPORT_SYMBOL_GPL vmlinux 0x43de5ae7 virtqueue_add_buf_gfp +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x443172fe rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x44404f11 kdb_register_repeat +EXPORT_SYMBOL_GPL vmlinux 0x4455c8a0 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x4455e1b3 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4467f6bc blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x446e6bbe crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x447cd7f6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4488edad crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x44a1ff5f sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x44bcfa6d system_nrt_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x44c359a2 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x44cc9c55 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x44db8ae3 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x44ff6a77 sysdev_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x450a2709 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x4531e988 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x453379ed pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x45700f6b pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45800f4b scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x45a4afdd acpi_atomic_read +EXPORT_SYMBOL_GPL vmlinux 0x45aae0de sysdev_show_int +EXPORT_SYMBOL_GPL vmlinux 0x45acf6c8 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c73aaf dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x45cec1cb pci_msi_off +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d4b27f cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x46074c17 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x4663dfd9 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x4672e88b __crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x4685b648 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x46983149 usb_enable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x46992748 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x46b06bab vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4708e27f bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x474359b6 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x474d4fef proc_net_remove +EXPORT_SYMBOL_GPL vmlinux 0x4782f699 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x478ef95d debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4792d66e blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x47a168d3 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x47c149ab queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x47ce8e9d pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x480ab0d1 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x4865f9b3 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x48a488a0 sysctl_tcp_cookie_size +EXPORT_SYMBOL_GPL vmlinux 0x48a61c99 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x48b1d0dc device_schedule_callback_owner +EXPORT_SYMBOL_GPL vmlinux 0x48b671ea usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x48e1b597 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x48e94e04 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x48ef3d0d sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x48f44e16 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x48f5fc30 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x491fe225 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x49578b8a tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4958cdbe dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49db8db4 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x49e3a774 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x4a2b764d wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4a4940ba usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x4a7bc844 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab0d413 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x4b05d05d crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x4b0fa9e5 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b20df78 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x4b384e3e crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x4bc62a81 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4bd08d0c regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4c3866c0 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x4c41a179 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x4c4b2f53 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c8ee6e1 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c940300 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x4ce89003 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x4cf9a3b2 x86_mce_decoder_chain +EXPORT_SYMBOL_GPL vmlinux 0x4d2469ff __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x4d374f30 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x4d3e7ae7 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x4d45ff75 blkdev_aio_write +EXPORT_SYMBOL_GPL vmlinux 0x4d4f53b2 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x4d4fd5f1 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4d56da68 dm_kill_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x4d7ecba1 tpm_show_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4d9b75ee bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4da02742 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4dab0344 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4dc0683b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x4dfa4fe3 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1fbd77 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x4e36a389 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x4e462cfa inode_dio_done +EXPORT_SYMBOL_GPL vmlinux 0x4ec24c1f xv_get_total_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4ed6e906 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x4ed9bdb7 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x4edc1f8a scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4eeced13 task_current_syscall +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f0bbc18 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x4f1ccf7d dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f3da9ef securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x4fbdc8ca class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x4fcc08f3 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x4fd4e89d ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4fdb66e3 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x5013e6de pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x504d16fa dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x50551d5d tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x507d79cd scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x508c5f96 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50b6dc35 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x50b71412 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x50ba3bec acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d52fdf rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x50e6c676 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f5e532 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51009ae4 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x5108b3fc acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x51327b8e wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x514a4437 xenbus_bind_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x514ec89e __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x515fcb90 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x518b5e29 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x518c2fc6 hpet_rtc_dropped_irq +EXPORT_SYMBOL_GPL vmlinux 0x51d061fb ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x5226306b skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x522c52dc blkcg_get_weight +EXPORT_SYMBOL_GPL vmlinux 0x522e3808 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5245f8e8 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x52694311 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x52bcd19d rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x52d0905b ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x52dba066 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x530db919 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x53134bbf disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x531e034e init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5372dede unregister_acpi_bus_notifier +EXPORT_SYMBOL_GPL vmlinux 0x538e51ee ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x5394bdd8 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x53986488 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x53a05d4c dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x53a3e486 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x53a84ced pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x53c916b7 sysfs_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x53e69a21 pci_unblock_user_cfg_access +EXPORT_SYMBOL_GPL vmlinux 0x54025d5d ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x541047fe ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5451fcc5 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5474f69d anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x5499e4bc stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x54acd050 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x54e579f7 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x551605b9 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x551619fd driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5520f588 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x552567c0 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x55698ed9 blkiocg_lookup_group +EXPORT_SYMBOL_GPL vmlinux 0x557f3954 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x559ae708 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x56065ef9 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56398615 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564f1dca klist_add_after +EXPORT_SYMBOL_GPL vmlinux 0x5654ea93 device_move +EXPORT_SYMBOL_GPL vmlinux 0x5654f836 erst_get_record_id_next +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56781aff usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x567b53db blk_abort_queue +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x5723e2ac rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x574f665b crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x576650e7 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x57843f26 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x57888f51 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x57989481 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b0fc99 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x57bb8a13 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x57c1b136 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x57d98c6f put_device +EXPORT_SYMBOL_GPL vmlinux 0x582a2cac inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x58421c30 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x584f0a87 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x58565536 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x585a003b __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x587862bc platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x58938fa4 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x589abf1c blkio_alloc_blkg_stats +EXPORT_SYMBOL_GPL vmlinux 0x58fc4742 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x5916e0c9 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x593a36c2 scsi_dh_handler_exist +EXPORT_SYMBOL_GPL vmlinux 0x595ee5b5 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a2f77ed ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x5a33f0ab inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x5a476799 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x5a48534a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8a024c crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x5ae9c4f8 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b024929 xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x5b0848fb mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x5b1112ee vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x5b39049f netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x5b7b81eb crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x5b972fd5 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x5b9fe0ec ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x5baaccbc part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x5bb906a7 wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdeb510 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5bf52d00 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x5bfc03c3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c0e2b14 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x5c165595 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x5c3d09ba eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x5c5f79e8 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x5c86c3fe anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x5c8da76a srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5ccf550e swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x5cd36455 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5d0bc22b put_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d188330 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d48a650 m2p_find_override_pfn +EXPORT_SYMBOL_GPL vmlinux 0x5d6adca4 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d730e7b raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d87c067 register_acpi_bus_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5da7840b bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5db99687 d_materialise_unique +EXPORT_SYMBOL_GPL vmlinux 0x5dd67618 register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5e0120a8 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x5e94d3bf __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x5eacba1f ahci_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5ec42252 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x5ec43660 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x5ee3a942 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x5eebaffe ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x5ef44c07 fuse_conn_kill +EXPORT_SYMBOL_GPL vmlinux 0x5f1b194b tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5f248f72 set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f7791b5 crypto_rng_type +EXPORT_SYMBOL_GPL vmlinux 0x5f9009b4 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x5fcdec5d xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x5fce76ee blkio_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5fd67c15 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5ffbd191 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x5fffef1a sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x600a869c unregister_efivars +EXPORT_SYMBOL_GPL vmlinux 0x603e17ee inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60713a4f swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x6087f2fa ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60d579aa ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x60e2722e pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x60e79ba7 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6114d8a4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x61286995 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x61595393 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x61634f05 lock_flocks +EXPORT_SYMBOL_GPL vmlinux 0x61ebbde1 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x62121fe0 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x62491c32 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x624a6406 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6267cae2 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x6271f780 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x628716d4 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x62cb1468 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x62e13686 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x63197308 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x63205de1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x6347ee72 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x63602b9f gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x6373fd03 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x63b0dcb9 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x63c670f9 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x63d7e93f rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6437391b usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x643b157b md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x643df807 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x6449c9d4 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x64533eb0 xenbus_dev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x647fe418 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x648feda9 pci_stop_bus_device +EXPORT_SYMBOL_GPL vmlinux 0x64a9d082 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x64fca172 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6517e463 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x655bbc8d __css_put +EXPORT_SYMBOL_GPL vmlinux 0x6564891b bdi_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x657ffe30 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x659010bf remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x6592c5e7 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x65978342 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x65b6b0f4 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c68f6f ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d6d0f0 gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x65fa533b usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x663108ab blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x663c53b2 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6658e0e7 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66b2a859 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x6732559d spi_async +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x6770cce5 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67af8505 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x67b2d424 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67b4242f bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x682d0196 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x684ec6fd ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x686c703f xfrm_count_auth_supported +EXPORT_SYMBOL_GPL vmlinux 0x6892088c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68a1c480 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x68a317bc trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x68cd16c0 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x68cd2df4 blkiocg_update_timeslice_used +EXPORT_SYMBOL_GPL vmlinux 0x68e1805e ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x68e97a77 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x694f2094 tpm_write +EXPORT_SYMBOL_GPL vmlinux 0x6967b4f9 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x697053da __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x698286c4 tps65910_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698be398 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x698f0c87 sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x69ad743e input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x69e9a2cb ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x69fcde28 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x6a0db025 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x6a365bca crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x6a36d5ab crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x6a52c91f virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a642308 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a9c745d crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6ab922b2 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6aba167a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6ac898a7 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ad0897d ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x6af373df ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b807a5f gpio_sysfs_set_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6b8a5413 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x6b94c408 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6bc92d3e ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c1bc7af crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x6c243c9c spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x6c490c32 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x6c49c4f2 clockevents_notify +EXPORT_SYMBOL_GPL vmlinux 0x6c51ca91 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x6c8d5ae8 __gpio_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6c917205 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x6cbb4d6b generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x6cc5cc0b sysdev_register +EXPORT_SYMBOL_GPL vmlinux 0x6ced8e2e devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3ea540 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x6d6ce046 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6d8048e4 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6d9f817a crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6dbc7f14 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x6e1be9f5 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x6e2d3db7 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x6e393b29 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x6e3b944f sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x6e4fbe20 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e7474fc xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x6e782c23 iomap_create_wc +EXPORT_SYMBOL_GPL vmlinux 0x6e86a3c9 dm_dispatch_request +EXPORT_SYMBOL_GPL vmlinux 0x6e901a58 scsi_dh_detach +EXPORT_SYMBOL_GPL vmlinux 0x6e91a409 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x6f051b8d ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f41570b da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x6f608203 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x6f654ad2 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x6f997eb2 inode_dio_wait +EXPORT_SYMBOL_GPL vmlinux 0x6f998eee __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x6fb5c6c1 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70177482 sysdev_class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x701d7180 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x703189d7 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x704cc19e user_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x706b3a33 cpufreq_frequency_table_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x706c0ef8 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7080ca46 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x70c38c72 md_run +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d82cd8 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x7154f861 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7169d83c stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x716c24d1 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x719d5ddf kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x719e58bd mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71f21b49 tpm_dev_vendor_release +EXPORT_SYMBOL_GPL vmlinux 0x7207a15a zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x7267db00 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7285f84f unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x72b212ff regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x72bf62a2 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x72cc696e wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x730a2891 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x73273711 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x7333f5ed pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x73347e72 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x733d3ad3 cgroup_unload_subsys +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ad49ab device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73ed5ce9 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x73f57f8e elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74160d25 sysdev_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x7432db04 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74457e56 apei_resources_fini +EXPORT_SYMBOL_GPL vmlinux 0x7452adff user_return_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x74954462 timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x749a50be disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x74a1f120 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x74aaf6f5 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x74abdafa task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74c2865d fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x74c981ec mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x75178dba blk_rq_check_limits +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x753ebc9e device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7560c3ca cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x756a8a2b __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x757c6127 device_del +EXPORT_SYMBOL_GPL vmlinux 0x75b20f59 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x75c8a11c inet_twdr_twkill_work +EXPORT_SYMBOL_GPL vmlinux 0x75cd9bfa pci_pri_status +EXPORT_SYMBOL_GPL vmlinux 0x75d548a0 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x75e8f3c3 crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x761188fd dpm_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x76b5f36e hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76cea58e crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7733ac10 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x7764cfc5 tracepoint_iter_start +EXPORT_SYMBOL_GPL vmlinux 0x7785561b perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x778d69a8 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x77b22e94 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x77c1db42 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x78000c2b adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x78019a2c pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x784da5f6 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x78668389 __ip_route_output_key +EXPORT_SYMBOL_GPL vmlinux 0x78671fd3 tracepoint_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x78898bb0 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x788ca168 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x788f3eec bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x78d9697b da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x78dcffbc inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x78e7ff33 acpi_post_unmap_gar +EXPORT_SYMBOL_GPL vmlinux 0x78ec7e49 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x790588a0 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x79073bf0 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x79132b08 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x7966a1a9 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x796783fa xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x798ee133 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x7997bb96 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x79a558fc mmput +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x7a0349ed ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x7a05d42a srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a4c1438 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x7a51b353 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x7a5670a1 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x7a7c5175 amd_erratum_383 +EXPORT_SYMBOL_GPL vmlinux 0x7aafdb50 wm8994_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ab77abe tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad0900b ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x7ade84f5 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7ae1ae8e cpufreq_frequency_table_put_attr +EXPORT_SYMBOL_GPL vmlinux 0x7b0a3cad crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7baeafb1 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x7be60a7e wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7c0513a7 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x7c808266 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ca868f0 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x7caef4b3 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7cc2301d debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x7ce1912b md_stop +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cef4d6a irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x7d32702e save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x7d44b407 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d7d9a22 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x7da0ebe4 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x7da10856 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dabb8f8 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7dc5d0b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e069a13 blkiocg_update_io_merged_stats +EXPORT_SYMBOL_GPL vmlinux 0x7e0802f7 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x7e0e609b preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e1183c9 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7e1ecdc5 register_hotplug_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x7e2258d4 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7e275ea8 scsi_complete_async_scans +EXPORT_SYMBOL_GPL vmlinux 0x7e40ab55 ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e693a78 generic_subsys_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7e69b649 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x7e7225a7 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x7ea9cb30 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x7eb1095f fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x7ec22f9a apei_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0x7ecaa075 sysdev_store_int +EXPORT_SYMBOL_GPL vmlinux 0x7ecea749 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x7f04e593 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x7f2b2e0f ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x7f6e1a0a __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x7f7fb88c usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x7fb8f4b5 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7fcda031 aead_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x7fe922c5 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x7ff10ccf raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7ffc8718 gpio_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8014b6af input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x803d2bf2 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x803fd0c1 usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8048bc89 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8069edc6 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x806b1aba pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x806d7f6b xv_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x8075b27e crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x808958f2 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x81101ab7 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x814a889d bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x81582730 aead_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x815abf99 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x818f670b xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x8198a90e rtc_set_mmss +EXPORT_SYMBOL_GPL vmlinux 0x81ef8b1f spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x81f98dca ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x8226642f __gpio_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8259be1d tpm_show_owned +EXPORT_SYMBOL_GPL vmlinux 0x825f0828 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x82939ebd rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x82cd19f3 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82f776b7 gpio_export +EXPORT_SYMBOL_GPL vmlinux 0x835300e8 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x83661c92 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x836d574b rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83a43898 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x83ce82eb get_monotonic_boottime +EXPORT_SYMBOL_GPL vmlinux 0x841a2c09 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84765c95 crypto_nivaead_type +EXPORT_SYMBOL_GPL vmlinux 0x84ab042c spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85478a0b inet6_hash_frag +EXPORT_SYMBOL_GPL vmlinux 0x856f43d4 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x85c10896 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0x85c4d941 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85ccadbb tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x85ccb9d5 sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x85d022d2 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x85d607c1 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85f1847d regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x862f98a3 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8677cb69 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86aa16e6 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x86ebba55 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x86f4a924 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x871393d3 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8731c5cc led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87754115 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x87a77031 user_read +EXPORT_SYMBOL_GPL vmlinux 0x87c36a44 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87c79ca5 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x87cf0a90 injectm +EXPORT_SYMBOL_GPL vmlinux 0x880de7bd iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn +EXPORT_SYMBOL_GPL vmlinux 0x883e4425 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x884eebb3 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x885e45a1 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8890f04f invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88e77ceb regcache_write +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x898c10c5 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x89b41c73 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x89d4dbaf usb_usual_check_type +EXPORT_SYMBOL_GPL vmlinux 0x89f81dac tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x89ff43f6 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a12068f inet_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0x8a1b1378 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x8a3da8d0 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x8a40099c bsg_goose_queue +EXPORT_SYMBOL_GPL vmlinux 0x8a5c7a80 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8aaf3cde map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ae0218f unregister_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x8af664e7 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b07b096 sysfs_put +EXPORT_SYMBOL_GPL vmlinux 0x8b27d2c1 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x8b319cc7 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b5fd294 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x8b66f9e0 xen_platform_pci_unplug +EXPORT_SYMBOL_GPL vmlinux 0x8b706ee8 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x8b707b13 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8b752ac1 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x8b77d9d5 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b82fae6 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x8bb1baec ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x8bc57a61 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c1f256e hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x8c38074a unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8c4127f7 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x8c47e013 platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8c4c3c0e sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8c4db1b5 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8c503111 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8c97333e pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8ca7c0c1 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8ceca0cc ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x8d240826 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x8d38a6fb ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x8d5c3bec ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x8da2894f fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8dc4d0d1 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x8dd2fa67 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x8e038225 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x8e20f5e9 __inet_hash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x8e76d89e usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8e809c31 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x8eaec42d __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x8ed09c39 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x8edfc605 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0x8f099a9e fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8f3ce840 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f780ce7 sk_clone +EXPORT_SYMBOL_GPL vmlinux 0x8fb46551 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8fb576b8 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x8fd06898 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x8ff47380 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x90053592 tpm_bios_log_setup +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x904f7399 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9085171e free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x9085be8a raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x912da829 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x9159b9d6 profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91dd75d9 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x92240e40 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9228e852 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x9259dcdd md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x925f8bfc pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x9270adb7 pci_sriov_migration +EXPORT_SYMBOL_GPL vmlinux 0x928d80cb ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x92a737f4 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d77ab0 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x9330ff56 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x936b6d46 xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x93824f84 input_class +EXPORT_SYMBOL_GPL vmlinux 0x9398d1ec device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x93abd34b lookup_instantiate_filp +EXPORT_SYMBOL_GPL vmlinux 0x93c15421 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x93c95029 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x93d0dc16 tpm_show_pubek +EXPORT_SYMBOL_GPL vmlinux 0x93d2422d snmp_mib_free +EXPORT_SYMBOL_GPL vmlinux 0x93e07260 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x93e172d0 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9425952e pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9431f62a blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94434975 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x945af1db ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x94780167 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x947f04e7 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x94a68723 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95469c94 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956a91ba gpio_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x95a40792 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x95b3f36b mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x95d073d4 skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0x95da94ca perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x95dd76c8 sysdev_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9642eec9 wm8994_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x9650b933 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x967c647c usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x969ece77 cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x96cbcf31 pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96f35200 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x970c6156 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x975b6989 xv_free +EXPORT_SYMBOL_GPL vmlinux 0x977d3aa6 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x97f317e4 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x97f9c45a trace_nowake_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x982067bc vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9842f28e blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9850082c usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x98568748 css_id +EXPORT_SYMBOL_GPL vmlinux 0x987eca81 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x98a2b948 task_xstate_cachep +EXPORT_SYMBOL_GPL vmlinux 0x98b11ebf sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x98cc564a regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x98f693cc crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x98f9e29e cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x991747be __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99273df5 dm_set_device_limits +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99aa710f xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x99e7baa3 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x99f7387e usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1fcb38 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x9a48d642 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x9a4ba814 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x9a78a635 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x9a906c3f power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x9a99f8fc get_device +EXPORT_SYMBOL_GPL vmlinux 0x9aae96c3 tcp_is_cwnd_limited +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b071740 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9b33d71f i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9b455e52 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9b504568 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba0501e unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ba60ab3 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9baaf1a9 inet6_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0x9bd3a7cf init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9bf5590d usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x9c4c59d7 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x9c8952cc crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9cb8037b xfrm_count_enc_supported +EXPORT_SYMBOL_GPL vmlinux 0x9ce31f84 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0x9cf2ee19 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x9d030b99 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d136a15 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x9d1e56d8 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9d2ed6c6 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d3d9e36 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x9d672851 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x9d828482 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9dcfaf53 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9de22b31 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x9deb7abf pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x9df47c31 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e07c70f pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x9e0ccdb5 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9e1e9ecc dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x9e288d48 mddev_check_plugged +EXPORT_SYMBOL_GPL vmlinux 0x9e2a69a1 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x9e31f3b3 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x9e475778 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x9e4f1cfb ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x9e78f7d5 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x9e8527b7 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x9eeae6c2 tpm_release +EXPORT_SYMBOL_GPL vmlinux 0x9eed9169 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x9f0547db sysdev_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f07eac2 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x9f29601a atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x9f2cf365 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x9f40a6d6 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x9f7ffd4b __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x9f97f556 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x9fc3f62b css_depth +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa030d4c3 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xa0ac86ff register_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xa0c71dac spi_populate_sync_msg +EXPORT_SYMBOL_GPL vmlinux 0xa1308907 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xa1472e20 __cpufreq_driver_getavg +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15e48f2 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa1623c00 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xa16a49a0 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xa1c986b2 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xa1e5cd86 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0xa21ea14a transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xa2366db0 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xa24873d9 register_net_sysctl_rotable +EXPORT_SYMBOL_GPL vmlinux 0xa268f4ff device_rename +EXPORT_SYMBOL_GPL vmlinux 0xa279653e xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa28ed9fb pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa2aeed64 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xa2e67f08 acpi_bus_generate_proc_event4 +EXPORT_SYMBOL_GPL vmlinux 0xa304c686 cred_to_ucred +EXPORT_SYMBOL_GPL vmlinux 0xa30c5f99 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xa3460d77 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38d5b6e cgroup_load_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa3b8d4dc virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa40a8590 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa40f0ada inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4837914 tcp_reno_min_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xa4988730 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xa4adb394 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa4aeaf3e synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xa4c66659 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xa4c93273 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xa4ca0d4e unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa4d58669 math_state_restore +EXPORT_SYMBOL_GPL vmlinux 0xa50e6080 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xa55ddfc9 tpm_show_durations +EXPORT_SYMBOL_GPL vmlinux 0xa5726192 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xa5845b98 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xa58cc99b cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xa5976d72 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa5bb5afb __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa66c9bc2 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa6daf1d3 tpm_show_active +EXPORT_SYMBOL_GPL vmlinux 0xa7070470 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa722a819 cpu_has_amd_erratum +EXPORT_SYMBOL_GPL vmlinux 0xa774e0b8 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xa78447a0 tpm_continue_selftest +EXPORT_SYMBOL_GPL vmlinux 0xa7a14080 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xa7f410da debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xa7f92105 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0xa80d5306 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xa81f73b8 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xa83d973a led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xa856ca9e rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa85cefc6 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xa862f0ac xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xa899635e __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xa8a6f8fc dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xa8b82a53 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa8f59416 gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xa8f92405 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xa9094516 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9183b29 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xa964e084 sysfs_get_dirent +EXPORT_SYMBOL_GPL vmlinux 0xa9c530b8 unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9f3f261 net_ipv4_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0xaa0943a6 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xaa0ec165 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xaa2558ac m2p_add_override +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa3f13f7 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa48b458 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xaa48bba9 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xaa60f3f1 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xaa68e30b ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaa70bef5 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xaa7e6e6d rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa852c93 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa8e404b simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xaaafee3c wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xaabffe73 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xaacce043 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaad3aa12 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xaaee7582 sysdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaaf04873 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xaaf8f4eb pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab17082a device_attach +EXPORT_SYMBOL_GPL vmlinux 0xab4cc635 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xab68d15b regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab90007c xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xabc47f60 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xac130000 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xac936d89 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xace0f1e8 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfd81f6 work_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad239f1b device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xad3a7c48 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xad5f1b39 nf_net_ipv4_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0xada38534 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xada70663 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf009b3 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae0c87ee pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae1a0921 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xae54cee1 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xae57d7e8 sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xae5a34d4 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xae7c5411 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0xae98e5c9 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xae9a8874 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xaea5fb64 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xaee6cf94 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xaeea3073 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xaf037391 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xaf093f21 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xaf14d5ec wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xaf2fcc73 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xaf69699e xv_get_object_size +EXPORT_SYMBOL_GPL vmlinux 0xaf6a4d02 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xafa2b7b9 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xafe110f2 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xafe74d0d usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xb00743c2 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xb0663978 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb06dda35 tpm_open +EXPORT_SYMBOL_GPL vmlinux 0xb0769532 dw_spi_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xb0ae5977 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xb0b40a3d crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb106d82c inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb10d55bc cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xb123e841 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14e0a1a debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xb14e144c vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xb1521056 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xb17cc12d user_match +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18506b9 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xb19fe84b platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb1a124b6 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb20403dc ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xb220fcf1 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xb22287d4 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xb227eded __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb241b26e user_describe +EXPORT_SYMBOL_GPL vmlinux 0xb2674e26 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xb27ba73a unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xb2add0b6 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xb2b89a18 tcp_init_congestion_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f5558b irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xb30b8cac ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb30be7af cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb32eb69a find_module +EXPORT_SYMBOL_GPL vmlinux 0xb341989e __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xb375a1a4 sysfs_notify_dirent +EXPORT_SYMBOL_GPL vmlinux 0xb3767928 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xb39e9844 net_cls_subsys_id +EXPORT_SYMBOL_GPL vmlinux 0xb3a67a1f xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xb3addc3b mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xb3d3e15b pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xb3d5eab7 acpi_atomic_write +EXPORT_SYMBOL_GPL vmlinux 0xb4374240 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xb45fd4db adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xb47497df ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xb47ef9d7 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xb48b57e8 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xb4af8831 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb4b4ced3 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4c198a3 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb50b0713 cpufreq_get_measured_perf +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53461e9 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53a17bf cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xb53ae573 cpu_idle_wait +EXPORT_SYMBOL_GPL vmlinux 0xb53efbc5 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb54bd5dc flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xb56f98ad cgroup_add_files +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5c744f9 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xb5d8913d register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6327cd6 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xb68970b6 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xb6cbc1bc power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xb6daa7e4 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb7111dd7 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb7606c0c devres_add +EXPORT_SYMBOL_GPL vmlinux 0xb7661f7d simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xb76be079 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xb793ef2e skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xb7ce7329 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb7d36cc8 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e2eb91 mce_cpu_specific_poll +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb813ce5a timecompare_transform +EXPORT_SYMBOL_GPL vmlinux 0xb824fb48 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xb8440280 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xb86bcceb klist_next +EXPORT_SYMBOL_GPL vmlinux 0xb8823309 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xb885ae2f xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb89467ef blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb89e8ad9 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8e03409 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xb8f15fbd inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb9010c76 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9171501 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xb91d790b ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xb928cabd __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xb92e66b9 devm_kzalloc +EXPORT_SYMBOL_GPL vmlinux 0xb93ce960 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9abb5af pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9da2997 snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0xb9fa271f blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xbaaeb90e led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xbab8f014 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbae34c27 scsi_nl_remove_transport +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb04248e crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xbb068792 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xbb09fc70 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0dde07 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbb3b4bd2 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xbb3be524 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xbb46b72c tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free +EXPORT_SYMBOL_GPL vmlinux 0xbb617c2d hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbb87a40b __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xbbb1b59e uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc53d78 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xbbfce101 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xbc2bf721 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xbc456407 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xbc6f931b workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbce0b538 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbceb0ad3 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0xbd506a46 unregister_hotplug_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xbd740e90 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xbd7ed6f3 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xbda451a8 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbdbc6182 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5f10f apei_hest_parse +EXPORT_SYMBOL_GPL vmlinux 0xbdf44a30 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xbdf9b317 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xbe032b1c dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe91111d usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xbeac3749 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbee39033 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xbf22c42b xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xbf26b59e nf_unregister_queue_handlers +EXPORT_SYMBOL_GPL vmlinux 0xbf713b4d aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbf76d458 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbfa7c318 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbfb2578a xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfd0c759 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xbfd4db10 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xbffcb3b7 acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc00554f6 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xc023f4af usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0xc03ab504 setup_deferrable_timer_on_stack_key +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc09a7542 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xc0bcac87 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xc0bf6ead timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xc0c495b9 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xc0c4f43a __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xc0c687bf pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xc0d0fbc0 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0xc0dd15a5 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xc0e45175 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xc0f0a32c pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xc10f2b8e cgroup_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc11b4470 balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0xc11bd00f tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc127fa26 acpi_pre_map_gar +EXPORT_SYMBOL_GPL vmlinux 0xc13264ef regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xc14ee6bc crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xc1590141 css_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1b4dd1d class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xc1d61d4a usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xc1d86f03 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc1e09e7c inet6_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc24a044b rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xc256f815 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xc25f6e7f each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2881613 tpm_show_temp_deactivated +EXPORT_SYMBOL_GPL vmlinux 0xc28cecfb ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2b0626d sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xc2de27ca hest_disable +EXPORT_SYMBOL_GPL vmlinux 0xc2e954aa xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0xc30c87f8 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xc3134d6c rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xc34efe27 snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc376ed80 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xc3792967 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xc399468f scsi_nl_remove_driver +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4554c7f shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xc45fa075 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xc4615b22 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xc4820756 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc48aebcb regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4b0fd7d __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xc4d1ce0e ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc525d5aa sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc5305644 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc5728e3e sysfs_get +EXPORT_SYMBOL_GPL vmlinux 0xc5aad65f transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xc5afe502 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xc5c264a5 amd_erratum_400 +EXPORT_SYMBOL_GPL vmlinux 0xc60f75ec __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66656ca ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xc6669dc8 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xc6719bdf gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0xc67a4edd xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xc68c9784 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xc6a5a5b8 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xc6b3a79d blkiocg_update_completion_stats +EXPORT_SYMBOL_GPL vmlinux 0xc6c35040 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xc6ddfed8 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xc6e1bf41 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc742a412 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc74f9340 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc77a5f98 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7aaba32 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xc7bec743 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xc7c560f1 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xc7d94807 xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0xc7e08f42 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xc80311cb sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc803b4ba mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xc80f6b69 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc84060c1 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xc84b9dec crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc84ce6ba spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87ddf1d ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc884b8ba edac_get_sysfs_class +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8bf0ef4 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xc8fe2876 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9179a3a tracepoint_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xc919e942 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xc9296983 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc969b54f ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xc9b04d19 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc9b9a38a adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9c9ecb7 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xc9e8c162 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f033cd usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xca0fe11b __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xca6d8004 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xca72c729 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca85d8cf tracepoint_probe_update_all +EXPORT_SYMBOL_GPL vmlinux 0xca8dc89f handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xcaa63bd1 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xcab3fdaa crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcae03956 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xcb0821ba skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xcb5d31a9 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xcb824bc3 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xcb879415 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xcbb82d63 ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc1f1c3d inet_twdr_hangman +EXPORT_SYMBOL_GPL vmlinux 0xcc25b081 edac_class +EXPORT_SYMBOL_GPL vmlinux 0xcc3da32d aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0xcc41bd7f apic +EXPORT_SYMBOL_GPL vmlinux 0xcc44aa5e inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcc6ab305 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xcc960f15 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xcc9d3a9d usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccdd3552 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xcce29e02 sysdev_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xcd2bedb6 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xcd34c413 dw_spi_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xcd437b22 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xcd441c54 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xcd501367 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xcd52b354 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xcd9991a9 usb_usual_set_present +EXPORT_SYMBOL_GPL vmlinux 0xcdb7a58e crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcddf43c8 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xce138ac3 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xce2ba65b clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xce2fb536 dm_underlying_device_busy +EXPORT_SYMBOL_GPL vmlinux 0xce5dca79 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce738c19 m2p_remove_override +EXPORT_SYMBOL_GPL vmlinux 0xcead6cdd rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xced5421d get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xcf16515b securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xcf7be850 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc2cd38 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcc83ad register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcfd4a33a posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL vmlinux 0xcffc3cce hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd04a3269 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xd0548f40 filter_current_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xd05be652 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xd05dc2a3 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd068cf7b usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xd08d5897 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xd0a83a00 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0e80ba4 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xd0f2894f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xd10eb675 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd11190eb seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xd13522f6 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xd13fbf3f xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1b2db37 tracepoint_probe_register_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xd1f7787c clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd23cf296 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27a9d32 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xd2a8caf0 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2eed2ae vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xd3076f22 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd32fe193 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd35ed577 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xd36c3b96 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd37e13b4 regulator_set_optimum_mode +EXPORT_SYMBOL_GPL vmlinux 0xd3a1787f pci_configure_slot +EXPORT_SYMBOL_GPL vmlinux 0xd3b3abe0 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xd3c81231 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd3c9553e tpm_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xd3c9567a single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xd3cbd639 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd3ead55f sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xd3f5516b fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40496f1 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xd45b6944 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xd46d645b vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xd46f4db5 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xd4a6fe0d register_efivars +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd51ec607 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xd542de55 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xd5444762 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0xd57dd97c add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd57f7576 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xd59668e6 unlock_flocks +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5d8bcbd ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xd5f3eacd ftrace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xd605be7f hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xd64b5d71 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xd65157a9 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd69b423f handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xd6b8c064 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xd6c536d0 regcache_read +EXPORT_SYMBOL_GPL vmlinux 0xd6e17aa6 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xd6e8bfee inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7385a05 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xd7558420 shake_page +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76fe5da blkio_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd808989e usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd81cfc19 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8250a5c iounmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd84bd4b9 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xd8525ea7 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xd85ac634 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd85bcbe4 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd8a8a5ae pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xd8e246f1 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd8f2c054 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xd9042fa8 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xd9073441 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd928760f __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xd93e76a6 kbd_table +EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read +EXPORT_SYMBOL_GPL vmlinux 0xd96c4ff3 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd9796dd3 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9bed593 cgroup_lock_live_group +EXPORT_SYMBOL_GPL vmlinux 0xd9db52d6 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xd9e38e87 pci_pri_stopped +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9ed7baa kick_process +EXPORT_SYMBOL_GPL vmlinux 0xd9f34b16 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xda1be8e1 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xda3a7ca9 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xda444f43 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xda6840f5 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xda7d8c5b anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdabd7398 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xdadc0a93 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb04cacc tracepoint_probe_unregister_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xdb151252 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0xdb274e52 monotonic_to_bootbased +EXPORT_SYMBOL_GPL vmlinux 0xdb3f7d26 tty_prepare_flip_string_flags +EXPORT_SYMBOL_GPL vmlinux 0xdb784940 sysdev_create_file +EXPORT_SYMBOL_GPL vmlinux 0xdbaee710 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xdbb6aa18 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xdbd3ac5f ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc56e7af ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xdc6a858e get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xdc714560 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc82ee52 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9e62df led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xdcce8d89 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xdcdbd365 do_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xdce57037 apei_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0xdcfa331d adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xdd2a7aaf xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd5a6fae ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xddd021fd iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf4d717 blkio_root_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xde051d58 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xde0769a6 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xde36ba5e module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xde417b81 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xde94855a regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xdf2a7d30 md_trim_bio +EXPORT_SYMBOL_GPL vmlinux 0xdf78a005 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xdf8e73bb usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xdfa1fd06 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xdfadc84f regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe014c018 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe03ea795 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09f4004 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xe0b1053a rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xe0b62da1 event_storage_mutex +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe102a9ba blkio_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe1257185 pm_generic_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xe134b9be usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xe1459ea6 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xe1506c5d spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xe1cf7cb7 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xe1d487f1 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xe1dca1ae bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xe21e841e device_register +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe2a6bd2a device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xe2b5bfe0 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe2cba529 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe2dd67e5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe2e75a80 blkiocg_update_io_remove_stats +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe36276bc skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe37478ae tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xe37ab4df ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xe384a102 usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3c55173 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe434da55 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xe439815c erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xe44945fe power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xe4b0f75a raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xe4b5d111 blkiocg_update_dispatch_stats +EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xe4f3c6c8 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xe4f73585 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xe52b341d tracepoint_iter_stop +EXPORT_SYMBOL_GPL vmlinux 0xe544d1de exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe56da222 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xe57c1d22 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5ae4765 tpm_show_pcrs +EXPORT_SYMBOL_GPL vmlinux 0xe5bc350d relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xe5d6f1cc tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xe61a6d2f gpio_unexport +EXPORT_SYMBOL_GPL vmlinux 0xe6488b47 cpufreq_notify_transition +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6564673 fpu_finit +EXPORT_SYMBOL_GPL vmlinux 0xe6a45f33 inet_csk_clone +EXPORT_SYMBOL_GPL vmlinux 0xe6a7fd7a pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe6bda64e crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe73bb4ab iommu_domain_has_cap +EXPORT_SYMBOL_GPL vmlinux 0xe74914d4 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xe763fb77 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xe767ac3b sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xe76f894c pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe78a6b8b pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe794a8f6 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe79a3631 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8a120b0 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe8b830e8 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xe8d72751 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xe8ffbb84 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xe9144abb usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xe9317ffb wm8994_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe93acad1 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9587909 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0xe96da303 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xe98e4b6f hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xe9965ca4 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xe9ed7c9e blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea065e01 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea33f5e3 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xeae74760 scsi_nl_send_transport_msg +EXPORT_SYMBOL_GPL vmlinux 0xeb2cbbad pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xeb3442e3 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb3f080d pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xeb407c70 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebcfb545 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xecb9b31d iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xecf39950 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xed112bb6 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xed2b3c8c virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xed536613 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xed706b06 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xed7ac4d1 task_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedc563a7 cgroup_to_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xedd01cf1 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xeddf743d tpm_show_caps +EXPORT_SYMBOL_GPL vmlinux 0xedf31b15 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xedf3f1f1 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xee02fead cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xee116ce9 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xee4d6bf3 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xee5be111 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xee6c25d6 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xee91d81e tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xeeb193ab fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xeec24d31 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xeed7fbe7 xv_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef23d470 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xef4166ac regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef92f5c1 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xefa447e3 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xefb72398 pstore_write +EXPORT_SYMBOL_GPL vmlinux 0xefd56fa6 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xefdd5a63 ktime_get_ts +EXPORT_SYMBOL_GPL vmlinux 0xefef0909 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xeff3732b ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xf03bf41a ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xf061250b bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06c1cc7 unregister_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0xf07bb260 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xf09c0233 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xf0b33643 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xf0eae756 xen_remap_domain_mfn_range +EXPORT_SYMBOL_GPL vmlinux 0xf0f1d3cd ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xf1268a7c irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf1630fcc kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf19c7813 pxa_ssp_request +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b551d9 ibft_addr +EXPORT_SYMBOL_GPL vmlinux 0xf1f5eb20 register_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xf1faf509 device_create +EXPORT_SYMBOL_GPL vmlinux 0xf2168581 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf221bca3 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xf2481da9 drop_file_write_access +EXPORT_SYMBOL_GPL vmlinux 0xf26436be ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf2723880 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf2b58dac inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xf2bb941f bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf2dbec92 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf2e204da usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf300dc0a crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf301da9e inet_csk_reqsk_queue_prune +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf31fb530 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xf3216139 xen_swiotlb_unmap_sg +EXPORT_SYMBOL_GPL vmlinux 0xf34806ec hrtimer_get_res +EXPORT_SYMBOL_GPL vmlinux 0xf36189f3 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf3659cd4 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xf37df669 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b93a97 cgroup_lock_is_held +EXPORT_SYMBOL_GPL vmlinux 0xf3c740ce ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xf3dd036d regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xf3e4918c ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xf429a88d unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xf42e0659 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf469014e ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xf494cbfe generic_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf502de86 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf506d372 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xf5145333 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xf52f9e59 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54e7fe9 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5655b46 platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b187b7 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xf5de2c58 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xf6137b92 class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf614d88f wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xf62d269d class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf63d3a9d get_driver +EXPORT_SYMBOL_GPL vmlinux 0xf646165c usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xf6464980 ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0xf651671e crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xf67c2821 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xf69620fa set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xf6b74db5 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xf6bb33ab tpm_read +EXPORT_SYMBOL_GPL vmlinux 0xf6cc6e71 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6e04730 event_storage +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf7322bc8 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0xf73b5f6a tpm_register_hardware +EXPORT_SYMBOL_GPL vmlinux 0xf756b9e8 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xf78abf5d rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xf7a14f56 apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf7a5ab25 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xf7aa18de hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c17d34 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf7c81a9f ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xf81d16c4 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xf82e0099 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf83c4578 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xf84102af tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xf84d79fe pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xf8671fd0 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf874c2d2 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8bf2971 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xf8bfa3b7 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xf8c2237d platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xf8c82d36 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf902ccfd usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf905023e tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xf92ac034 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf947a901 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf95c4af8 platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf96446c1 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf97666a0 set_memory_rw +EXPORT_SYMBOL_GPL vmlinux 0xf983f4cd xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xf9855eaa alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf997d715 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf99f864d sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a91bbd hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d7ffeb gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xf9effd44 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xfa012fe7 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xfa05dfca crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa28313e ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xfa8e2ae6 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xfad0d0a4 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xfad369a1 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xfb00cdab ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xfb230e86 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xfb2a50da sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfbabf22e debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xfbb950a7 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xfbbe7bbe attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfbd1033f fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xfbddcac3 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xfbf95809 wm8994_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfbf9be5d register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4e0d6b xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xfc6a4461 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfc9b44cc dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xfcaa28b6 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfcd7bc0b ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0xfcdb229c register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xfcdd641a usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xfcefcdbf ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xfd05464b klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xfd0aec6c inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd54ddb5 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xfd675b3d raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xfd7100d2 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfdb61a1c rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xfdcf8593 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xfde0b92c crypto_larval_error +EXPORT_SYMBOL_GPL vmlinux 0xfe0a6a48 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe899476 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xfe907013 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff04acf5 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0e81d3 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xff46f057 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5f2b0e __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xff75e976 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xff7d2ec7 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xff7e2114 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0xff851a5d fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xffa4c4ec cgroup_lock +EXPORT_SYMBOL_GPL vmlinux 0xffd046fb ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xffe62ae6 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xffeecc36 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xfffc0f8b crypto_drop_spawn --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/i386/generic.modules +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/i386/generic.modules @@ -0,0 +1,3528 @@ +3c359 +3c501 +3c503 +3c505 +3c507 +3c509 +3c515 +3c523 +3c527 +3c574_cs +3c589_cs +3c59x +3w-9xxx +3w-sas +3w-xxxx +53c700 +6lowpan +6pack +8021q +8139cp +8139too +8250_accent +8250_boca +8250_dw +8250_exar_st16c554 +8250_fourport +8250_hub6 +8250_mca +8255 +82596 +8390 +8390p +88pm860x_bl +88pm860x_onkey +88pm860x-ts +9p +9pnet +9pnet_rdma +9pnet_virtio +a100u2w +a3d +a8293 +aacraid +aat2870_bl +aat2870-regulator +ab3100 +ab3100-otp +ab8500-ponkey +ab8500-usb +abituguru +abituguru3 +abyss +ac3200 +ac97_bus +acard-ahci +acecad +acenic +acerhdf +acer-wmi +acl7225b +acpi_ipmi +acpi_pad +acpiphp +acpiphp_ibm +acpi_power_meter +acquirewdt +act2000 +act200l-sir +act_csum +act_gact +act_ipt +actisys-sir +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5398 +ad5446 +ad5504 +ad5624r_spi +ad5686 +ad5791 +ad5930 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7280a +ad7291 +ad7298 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad799x +ad9832 +ad9834 +ad9850 +ad9852 +ad9910 +ad9951 +adcxx +addi_apci_035 +addi_apci_1032 +addi_apci_1500 +addi_apci_1516 +addi_apci_1564 +addi_apci_16xx +addi_apci_2016 +addi_apci_2032 +addi_apci_2200 +addi_apci_3001 +addi_apci_3120 +addi_apci_3501 +addi_apci_3xxx +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adfs +adi +adis16060 +adis16080 +adis16130 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adl_pci6208 +adl_pci7230 +adl_pci7296 +adl_pci7432 +adl_pci8164 +adl_pci9111 +adl_pci9118 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm8211 +adm9240 +adp5520_bl +adp5520-keys +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +adq12b +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adummy +adutux +adv7170 +adv7175 +adv7180 +advansys +advantechwdt +adv_pci1710 +adv_pci1723 +adv_pci_dio +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +aes-i586 +aesni-intel +af_802154 +af9013 +af_alg +affs +af_key +af-rxrpc +ah4 +ah6 +aha152x +aha152x_cs +aha1542 +aha1740 +ahci_platform +aic79xx +aic7xxx +aic94xx +aio_aio12_8 +aio_iiro_16 +aiptek +aircable +airo +airo_cs +ak8975 +alauda +algif_hash +algif_skcipher +ali-agp +ali-ircc +alim1535_wdt +alim7101_wdt +alphatrack +altera-ci +altera_jtaguart +altera_ps2 +altera-stapl +altera_uart +ambassador +amc6821 +amd5536udc +amd76x_edac +amd76xrom +amd8111e +amd-rng +amplc_dio200 +amplc_pc236 +amplc_pc263 +amplc_pci224 +amplc_pci230 +ams369fg06 +analog +ansi_cprng +anubis +aoe +apanel +apds9802als +apds990x +apm +apple_bl +appledisplay +apple-gmux +applesmc +appletalk +appletouch +applicom +ar7part +arc4 +arcfb +arcmsr +arcnet +arc-rawmode +arc-rimi +ark3116 +arkfb +arptable_filter +arp_tables +arpt_mangle +as5011 +asb100 +asc7621 +asix +asus_atk0110 +asus-laptop +asus-nb-wmi +asus_oled +asus-wmi +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at1700 +at24 +at25 +at76c50x-usb +atbm8830 +aten +ath +ath3k +ath5k +ath6kl +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati-agp +ati_remote +ati_remote2 +atl1 +atl1c +atl1e +atl2 +atlas_btns +atm +atmel +atmel_cs +atmel_mxt_ts +atmel_pci +atmtcp +atp +atp870u +atxp1 +aty128fb +atyfb +au0828 +au8522 +aufs +authenc +authencesn +auth_rpcgss +autofs4 +avma1_cs +avm_cs +avmfritz +ax25 +axnet_cs +b1 +b1dma +b1isa +b1pci +b1pcmcia +b2c2-flexcop +b2c2-flexcop-pci +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bch +bcm203x +bcm3510 +bcm5974 +bcma +bcm_wimax +be2iscsi +be2net +befs +belkin_sa +bfa +bfs +bfusb +bh1770glc +bh1780gli +binfmt_aout +binfmt_misc +block2mtd +blowfish_common +blowfish_generic +bluecard_cs +bluetooth +bma150 +bmp085 +bna +bnep +bnx2 +bnx2fc +bnx2i +bnx2x +bonding +bpa10x +bpck +bpck6 +bpqether +bq20z75 +bq24022 +bq27x00_battery +br2684 +brcmfmac +brcmsmac +brcmutil +bridge +broadsheetfb +bsd_comp +bt3c_cs +bt819 +bt856 +bt866 +bt878 +btcx-risc +btmrvl +btmrvl_sdio +btrfs +btsdio +bttv +btuart_cs +btusb +btwilink +bu21013_ts +budget +budget-av +budget-ci +budget-core +budget-patch +BusLogic +bw-qcam +c101 +c2port-duramar2150 +c4 +c67x00 +c6xdigio +cachefiles +cafe_ccic +cafe_nand +caif +caif_hsi +caif_serial +caif_socket +camellia +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +capmode +carl9170 +carminefb +cassini +cast5 +cast6 +catc +cb710 +cb710-mmc +cb_das16_cs +cb_pcidas +cb_pcidas64 +cb_pcidda +cb_pcidio +cb_pcimdas +cb_pcimdda +c_can +c_can_platform +cciss +ccm +cdc-acm +cdc_eem +cdc_ether +cdc_ncm +cdc-phonet +cdc_subset +cdc-wdm +ceph +cfag12864b +cfag12864bfb +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +ch7006 +chipreg +chnl_net +ci13xxx_pci +cifs +cirrusfb +ck804xrom +classmate-laptop +clearpad_tm1217 +clip +cls_basic +cls_cgroup +cls_flow +cls_fw +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cm4000_cs +cm4040_cs +cma3000_d0x +cma3000_d0x_i2c +cmtp +cnic +cobra +coda +com20020 +com20020_cs +com20020-isa +com20020-pci +com90io +com90xx +comedi +comedi_bond +comedi_fc +comedi_parport +comedi_test +comm +compal-laptop +configfs +contec_pci_dio +cops +cordic +core +coretemp +cosa +cp210x +cpcihp_generic +cpcihp_zt5550 +cpia2 +cpqarray +cpqphp +cpu5wdt +cpuid +cpu-notifier-error-inject +c-qcam +cramfs +cr_bllcd +crc7 +crc8 +crc-ccitt +crc-itu-t +crvml +cryptd +cryptoloop +crypto_null +crypto_user +crystalhd +cs5345 +cs53l32a +cs5535-mfd +cs553x_nand +cs89x0 +ct82c710 +ctr +cts +cuse +cx18 +cx18-alsa +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx23885 +cx24110 +cx24113 +cx24116 +cx24123 +cx25821 +cx25821-alsa +cx25840 +cx82310_eth +cx8800 +cx8802 +cx88-alsa +cx88-blackbird +cx88-dvb +cx88-vp3054-i2c +cx88xx +cxacru +cxd2099 +cxd2820r +cxgb +cxgb3 +cxgb3i +cxgb4 +cxgb4i +cxgb4vf +cxt1e1 +cy8ctmg110_ts +cyber2000fb +cyberjack +cyclades +cyclomx +cycx_drv +cypress_cy7c63 +cypress_m8 +cytherm +da9030_battery +da9034-ts +da903x +da903x_bl +DAC960 +daqboard2000 +das08 +das08_cs +das16 +das16m1 +das1800 +das6402 +das800 +db9 +dc395x +dca +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +dcdbas +ddbridge +de2104x +de4x5 +de600 +de620 +decnet +deflate +defxx +dell-laptop +dell-led +dell_rbu +dell-wmi +dell-wmi-aio +denali +depca +des_generic +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dibx000_common +digi_acceleport +diskonchip +display +divacapi +divadidd +diva_idi +diva_mnt +divas +dl2k +dlci +dlm +dm1105 +dm9601 +dm-bufio +dm-crypt +dme1737 +dmfe +dmi-sysfs +dm-log +dmm32at +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-raid45 +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-thin-pool +dmx3191d +dm-zero +dnet +dn_rtmsg +doc2000 +doc2001 +doc2001plus +docecc +docg3 +docprobe +donauboe +dpt_i2o +drbd +drm +drm_kms_helper +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dscc4 +dss1_divert +dst +dst_ca +dstr +dt2801 +dt2811 +dt2814 +dt2815 +dt2817 +dt282x +dt3000 +dt3155v4l +dt9812 +dtc +dtl1_cs +dtlk +dummy +dvb-as102 +dvb-bt8xx +dvb-core +dvb-pll +dvb-ttpci +dvb-ttusb-budget +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-it913x +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dwc3 +dwc3-omap +dwc3-pci +dyna_pci10xx +dynapro +e100 +e1000 +e1000e +e2100 +e752x_edac +e7xxx_edac +earth-pt1 +easycap +eata +ebt_802_3 +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_ulog +ebt_vlan +ec100 +echo +econet +ec_sys +edac_core +edac_mce_amd +eeepc-laptop +eeepc-wmi +eepro +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +eexpress +efficeon-agp +efs +einj +elo +elsa_cs +em28xx +em28xx-alsa +em28xx-dvb +emc1403 +emc2103 +emc6w201 +em_cmp +emi26 +emi62 +em_meta +em_nbyte +empeg +ems_pci +ems_pcmcia +ems_usb +em_text +emu10k1-gp +em_u32 +enc28j60 +enclosure +ene_ir +eni +enic +epat +epia +epic100 +eql +erst-dbg +es3210 +esb2rom +esd_usb2 +esi-sir +esp4 +esp6 +et131x +et61x251 +eth16i +ethoc +eurotechwdt +evbug +ewrk3 +exofs +ext2 +f71805f +f71808e_wdt +f71882fg +f75375s +fakephp +fam15h_power +farsync +fat +faulty +fb_ddc +fb_sys_fops +fcoe +fcrypt +fd_mcs +fdomain +fdomain_cs +fealnx +ff-memless +fintek-cir +firedtv +firestream +firewire-core +firewire-net +firewire-ohci +firewire-sbp2 +fit2 +fit3 +fixed +fl512 +floppy +fm801-gp +fm_drv +fmvj18x_cs +fnic +forcedeth +fore_200e +freevxfs +friq +frpw +fsa9480 +fsam7400 +fscache +fschmd +ft1000 +ft1000_pcmcia +ftdi-elan +ftdi_sio +ftl +fujitsu-laptop +fujitsu_ts +funsoft +fusb300_udc +g450_pll +g760a +g_acm_ms +gadgetfs +gamecon +gameport +garmin_gps +garp +g_audio +g_cdc +gcm +g_dbgp +gdth +generic +generic_bl +gen_probe +geode-aes +geode-rng +g_ether +gf128mul +gf2k +g_ffs +gfs2 +ghash-generic +g_hid +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +g_mass_storage +g_midi +g_ncm +g_NCR5380 +g_NCR5380_mmio +g_nokia +go7007 +go7007-usb +goku_udc +gpio-74x164 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-charger +gpio-fan +gpio-generic +gpio-i2cmux +gpio-it8761e +gpio-janz-ttl +gpio_keys +gpio_keys_polled +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio-ml-ioh +gpio_mouse +gpio-pca953x +gpio-pcf857x +gpio-pch +gpio-rdc321x +gpio-regulator +gpio-sch +gpio-tps65912 +gpio_vbus +gpio-vx855 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +g_printer +gre +grip +grip_mp +gsc_hpdi +g_serial +gspca_benq +gspca_conex +gspca_cpia1 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +g_webcam +gx1fb +gxfb +g_zero +hamachi +hampshire +hangcheck-timer +hanwang +hci_uart +hci_vhci +hdaps +hdlc +hdlc_cisco +hdlcdrv +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdpvr +he +hecubafb +hexium_gemini +hexium_orion +hfc4s8s_l1 +hfcmulti +hfcpci +hfcsusb +hfc_usb +hfs +hfsplus +hgafb +hid +hid-a4tech +hid-apple +hid-axff +hid-belkin +hid-cherry +hid-chicony +hid-cypress +hid-dr +hid-elecom +hid-emsff +hid-ezkey +hid-gaff +hid-gyration +hid-holtekff +hid-hyperv +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-logitech +hid-logitech-dj +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hidp +hid-petalynx +hid-picolcd +hid-pl +hid-primax +hid-prodikeys +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-kovaplus +hid-roccat-pyra +hid-samsung +hid-sjoy +hid-sony +hid-speedlink +hid-sunplus +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-wacom +hid-waltop +hid-wiimote +hid-zpff +hid-zydacron +hifn_795x +hisax +hisax_fcpcipnp +hisax_isac +hisax_st5481 +hmc5843 +hmc6352 +hopper +horizon +hostap +hostap_cs +hostap_pci +hostap_plx +hostess_sv11 +hp +hp100 +hp4x +hp_accel +hpfs +hpilo +hp-plus +hpsa +hptiop +hp-wmi +hso +htc-pasic3 +htcpen +hv_netvsc +hv_storvsc +hv_utils +hv_vmbus +hwa-hc +hwa-rc +hwmon-vid +hysdn +i1480-dfu-usb +i1480-est +i2400m +i2400m-sdio +i2400m-usb +i2c-algo-bit +i2c-algo-pca +i2c-algo-pcf +i2c-ali1535 +i2c-ali1563 +i2c-ali15x3 +i2c-amd756 +i2c-amd756-s4882 +i2c-amd8111 +i2c-designware-pci +i2c-dev +i2c-diolan-u2c +i2c-eg20t +i2c-gpio +i2c-i801 +i2c-intel-mid +i2c-isch +i2c-matroxfb +i2c-mux +i2c-nforce2 +i2c-nforce2-s4985 +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-isa +i2c-pca-platform +i2c-piix4 +i2c-pxa +i2c-scmi +i2c-simtec +i2c-sis5595 +i2c-sis630 +i2c-sis96x +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-via +i2c-viapro +i2c-xiic +i2o_block +i2o_bus +i2o_config +i2o_core +i2o_proc +i2o_scsi +i3000_edac +i3200_edac +i5000_edac +i5100_edac +i5400_edac +i5k_amb +i6300esb +i7300_edac +i7core_edac +i810 +i810fb +i82092 +i82365 +i82860_edac +i82875p_edac +i82975x_edac +i8k +i915 +ib700wdt +ib_addr +ib_cm +ib_core +ib_ipoib +ib_iser +ib_mad +ibmaem +ibmasm +ibmasr +ibmlana +ibmmca +ibmpex +ibmphp +ibm_rtl +ib_mthca +ibmtr +ibmtr_cs +ib_sa +ib_srp +ib_ucm +ib_umad +ib_uverbs +ichxrom +icn +icp_multi +ics932s401 +ideapad-laptop +idmouse +idt77252 +ieee802154 +ifb +iforce +igb +igbvf +iio_dummy +iio-trig-gpio +iio-trig-periodic-rtc +iio-trig-sysfs +ii_pci20kc +ili9320 +imm +imon +imx074 +in2000 +industrialio +inet_diag +inexio +inftl +initio +inport +input-polldev +int51x1 +intelfb +intel_ips +intel_menlow +intel_mid_dma +intel_oaktrail +intel-rng +intel_vr_nor +interact +ioatdma +ioc4 +io_edgeport +io_ti +iowarrior +ip6_queue +ip6table_filter +ip6table_mangle +ip6table_raw +ip6_tables +ip6table_security +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_LOG +ip6t_mh +ip6t_REJECT +ip6t_rt +ip6_tunnel +ipaq +ipcomp +ipcomp6 +ipddp +ipg +ip_gre +iphase +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_watchdog +ip_queue +ipr +ips +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netport +ip_set_list_set +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +ip_tables +iptable_security +ipt_ah +ipt_CLUSTERIP +ipt_ecn +ipt_ECN +ipt_LOG +ipt_MASQUERADE +ipt_NETMAP +ipt_REDIRECT +ipt_REJECT +ipt_ULOG +ip_vs +ip_vs_dh +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ipw +ipw2100 +ipw2200 +ipwireless +ipx +ircomm +ircomm-tty +irda +irda-usb +iris +ir-jvc-decoder +ir-kbd-i2c +irlan +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +irnet +ir-rc5-decoder +ir-rc5-sz-decoder +ir-rc6-decoder +ir-sony-decoder +irtty-sir +ir-usb +isci +iscsi_boot_sysfs +iscsi_ibft +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isicom +isight_firmware +isl29003 +isl29018 +isl29020 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isofs +isp116x-hcd +isp1362-hcd +isp1704_charger +isp1760 +it87 +it8712f_wdt +it87_wdt +it913x-fe +iTCO_vendor_support +iTCO_wdt +itd1000 +ite-cir +iuu_phoenix +ivtv +ivtvfb +iw_c2 +iw_cm +iw_cxgb3 +iw_cxgb4 +iwl3945 +iwl4965 +iwl-legacy +iwlwifi +iwmc3200top +iwmc3200wifi +iw_nes +ix2505v +ixgb +ixgbe +ixgbevf +ixj +ixj_pcmcia +janz-cmodio +janz-ican3 +jc42 +jedec_probe +jffs2 +jfs +jmb38x_ms +jme +joydev +joydump +jr3_pci +jsm +k10temp +k8temp +kafs +kalmia +kaweth +kb3886_bl +kbic +kbtab +kcomedilib +ke_counter +kernelcapi +keucr +keyspan +keyspan_pda +keyspan_remote +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kobil_sct +ks0108 +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +ksz884x +ktti +kvaser_pci +kvm +kvm-amd +kvm-intel +kxsd9 +kxtj9 +kyrofb +l1oip +l2tp_core +l2tp_debugfs +l2tp_ppp +l440gx +l4f00242t03 +l64781 +lanai +lance +langwell_udc +lanstreamer +lapb +lapbether +latch-addr-flash +lcd +ld9040 +ldusb +lec +leds-88pm860x +leds-adp5520 +leds-bd2802 +leds-clevo-mail +leds-da903x +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lt3593 +leds-mc13783 +leds-net48xx +leds-net5501 +leds-pca9532 +leds-pca955x +leds-regulator +leds-ss4200 +leds-wm831x-status +leds-wm8350 +leds-wrap +ledtrig-backlight +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-timer +legousbtower +lgdt3305 +lgdt330x +lgs8gxx +lg-vl600 +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libceph +libcrc32c +libcxgbi +libertas +libertas_cs +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libipw +libiscsi +libiscsi_tcp +libore +libosd +libsas +libsrp +lightning +line6usb +lineage-pem +linear +lirc_bt829 +lirc_dev +lirc_igorplugusb +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_ttusbir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +litelink-sir +lkkbd +llc2 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95241 +lm95245 +lmc +lms283gf05 +lnbp21 +lnbp22 +lne390 +lockd +logibm +lp +lp3971 +lp3972 +lp486e +lpc_sch +lpddr_cmds +lpfc +lru_cache +lrw +ltc4151 +ltc4215 +ltc4245 +ltc4261 +ltpc +ltv350qv +lxfb +lzo +m25p80 +m52790 +m66592-udc +ma600-sir +mac80211 +mac80211_hwsim +mac_hid +machzwd +macmodes +macvlan +macvtap +madgemc +magellan +mantis +mantis_core +map_absent +map_funcs +map_ram +map_rom +matrix_keypad +matroxfb_accel +matroxfb_base +matroxfb_crtc2 +matroxfb_DAC1064 +matroxfb_g450 +matroxfb_maven +matroxfb_misc +matroxfb_Ti3026 +matrox_w1 +max1111 +max11801_ts +max1363 +max1586 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max2165 +max3100 +max3107 +max6639 +max6642 +max6650 +max6875 +max7359_keypad +max8649 +max8660 +max8903_charger +max8925_bl +max8925_onkey +max8925_power +max8925-regulator +max8952 +max8997 +max8997_charger +max8998 +max8998_charger +mb862xxfb +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-regulator-core +mc44s803 +mce_amd_inj +mce-inject +mceusb +mce-xeon75xx +mcp2120-sir +mcp251x +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md4 +mdacon +mdc800 +mdio +mdio-bitbang +mdio-gpio +me4000 +me_daq +megaraid +megaraid_mbox +megaraid_mm +megaraid_sas +mei +mem2mem_testdev +memstick +metronomefb +meye +mfd +mga +michael_mic +micrel +microcode +microtek +minix +mip6 +mISDN_core +mISDN_dsp +mISDNinfineon +mISDNipac +mISDNisar +mite +mixcomwd +mk712 +mkiss +mlx4_core +mlx4_en +mlx4_ib +mma8450 +mmc_block +mos7720 +mos7840 +moto_modem +moxa +mpc624 +mpoa +mpr121_touchkey +mpt2sas +mptbase +mptctl +mptfc +mptlan +mptsas +mptscsih +mptspi +mpu3050 +mrst_max3110 +msdos +msi-laptop +msi-wmi +msp3400 +mspro_block +msr +mt2060 +mt20xx +mt2131 +mt2266 +mt312 +mt352 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd +mtd_blkdevs +mtdblock +mtdblock_ro +mtdchar +mtd_dataflash +mtdoops +mtdram +mtdswap +mtip32xx +mtouch +multipath +multiq3 +mvsas +mvumi +mwave +mwifiex +mwifiex_pcie +mwifiex_sdio +mwl8k +mxb +mxl111sf-demod +mxl111sf-tuner +mxl5005s +mxl5007t +mxm-wmi +mxser +myri10ge +n2 +n411 +nand +nand_bch +nand_ecc +nand_ids +nandsim +natsemi +navman +nbd +nci +ncpfs +NCR53c406a +NCR_D700 +NCR_Q720_mod +ne +ne2 +ne2k-pci +ne3210 +neofb +net1080 +net2272 +net2280 +netconsole +netjet +netrom +netsc520 +nettel +netxen_nic +newtonkbd +nfc +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nfcwilink +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nfnetlink +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfsd +nftl +nf_tproxy_core +ngene +n_hdlc +ni52 +ni65 +ni_6527 +ni_65xx +ni_660x +ni_670x +ni_at_a2150 +ni_at_ao +ni_atmio +ni_atmio16d +nicstar +ni_daq_700 +ni_daq_dio24 +ni_labpc +ni_labpc_cs +nilfs2 +ni_mio_cs +ni_pcidio +ni_pcimio +ni_tio +ni_tiocmd +niu +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp437 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +nmclan_cs +nop-usb-xceiv +nosy +nouveau +nozomi +n_r3964 +ns558 +ns83820 +nsc_gpio +nsc-ircc +nsp32 +nsp_cs +ntc_thermistor +ntfs +n_tracerouter +n_tracesink +nuvoton-cir +nvidiafb +nvram +nv_tco +nxt200x +nxt6000 +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stackglue +ocfs2_stack_o2cb +ocfs2_stack_user +ofpart +of_serial +old_belkin-sir +olpc_battery +olpc-dcon +olympic +omfs +omninet +on20 +on26 +onenand +onenand_sim +opencores-kbd +oprofile +opticon +option +or51132 +or51211 +orinoco +orinoco_cs +orinoco_nortel +orinoco_plx +orinoco_tmd +orinoco_usb +osd +osdblk +osst +oti6858 +output +ov2640 +ov5642 +ov6650 +ov7670 +ov772x +ov9640 +ov9740 +overlayfs +oxu210hp-hcd +p4-clockmod +p54common +p54pci +p54spi +p54usb +p8023 +padlock-aes +padlock-sha +panasonic-laptop +panel +paride +parkbd +parport +parport_ax88796 +parport_cs +parport_pc +parport_serial +pas16 +pata_ali +pata_amd +pata_arasan_cf +pata_artop +pata_atiixp +pata_atp867x +pata_cmd640 +pata_cmd64x +pata_cs5520 +pata_cs5530 +pata_cs5535 +pata_cs5536 +pata_cypress +pata_efar +pata_hpt366 +pata_hpt37x +pata_hpt3x2n +pata_hpt3x3 +pata_isapnp +pata_it8213 +pata_it821x +pata_jmicron +pata_legacy +pata_marvell +pata_mpiix +pata_netcell +pata_ninja32 +pata_ns87410 +pata_ns87415 +pata_of_platform +pata_oldpiix +pata_opti +pata_optidma +pata_pcmcia +pata_pdc2027x +pata_pdc202xx_old +pata_piccolo +pata_platform +pata_radisys +pata_rdc +pata_rz1000 +pata_sc1200 +pata_sch +pata_serverworks +pata_sil680 +pata_sl82c105 +pata_triflex +pata_via +pc110pad +pc300too +pc87360 +pc8736x_gpio +pc87413_wdt +pc87427 +pca9541 +pca954x +pcbc +pcbit +pcc-cpufreq +pcd +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pch_can +pch_dma +pch_gbe +pch_phub +pch_uart +pch_udc +pci +pci200syn +pcips2 +pci_slot +pci-stub +pcl711 +pcl724 +pcl725 +pcl726 +pcl730 +pcl812 +pcl816 +pcl818 +pcm3724 +pcm3730 +pcmad +pcmcia +pcmcia_core +pcmciamtd +pcmcia_rsrc +pcm_common +pcmda12 +pcmmio +pcmuio +pcnet32 +pcnet_cs +pcrypt +pcspkr +pcwd +pcwd_pci +pcwd_usb +pd +pd6729 +pda_power +peak_pci +pegasus +penmount +pf +pg +phantom +phison +phonedev +phonet +phram +physmap +physmap_of +pktcdvd +pktgen +pl2303 +platform_lcd +plat_nand +plat-ram +plip +plusb +pluto2 +plx_pci +pm2fb +pm3fb +pm8001 +pmc551 +pmcraid +pms +pn533 +pn544 +pn_pep +poc +pohmelfs +poseidon +powermate +ppa +ppdev +ppp_async +ppp_deflate +ppp_mppe +pppoatm +pppoe +pppox +ppp_synctty +pps_core +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +prism54 +progear_bl +proteon +ps2mult +psb_gfx +psmouse +pt +pti +pvrusb2 +pwc +qcaux +qcserial +qinfo_probe +qla1280 +qla2xxx +qla3xxx +qla4xxx +qlcnic +qlge +qlogic_cs +qlogicfas +qlogicfas408 +qnx4 +qt1010 +qt1070 +quatech_daqp_cs +quatech_usb2 +quickstart +quota_tree +quota_v1 +quota_v2 +r128 +r592 +r6040 +r8169 +r8187se +r8192e_pci +r8192u_usb +r82600_edac +r852 +r8712u +r8a66597-hcd +r8a66597-udc +radeon +radeonfb +radio-aimslab +radio-aztech +radio-cadet +radio-gemtek +radio-i2c-si470x +radio-maxiradio +radio-miropcm20 +radio-mr800 +radio-rtrack2 +radio-sf16fmi +radio-sf16fmr2 +radio-si4713 +radio-tea5764 +radio-terratec +radio-timb +radio-trust +radio-typhoon +radio-usb-si470x +radio-wl1273 +radio-zoltrix +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +ray_cs +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-em-terratec +rc-encore-enltv +rc-encore-enltv2 +rc-encore-enltv-fm53 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-kaiomy +rc-kworld-315u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-snapstream-firefly +rc-streamzap +rc-tbs-nec +rc-technisat-usb2 +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-trekstor +rc-tt-1500 +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rdc321x-southbridge +rdma_cm +rdma_ucm +rds +rds_rdma +rds_tcp +redboot +redrat3 +reed_solomon +reiserfs +renesas_usbhs +rfc1051 +rfc1201 +rfcomm +rfd_ftl +rfkill-regulator +ring_sw +rio500 +rionet +rivafb +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rndis_host +rndis_wlan +rocket +romfs +rose +rotary_encoder +rpcsec_gss_krb5 +rt2400pci +rt2500pci +rt2500usb +rt2800lib +rt2800pci +rt2800usb +rt2x00lib +rt2x00pci +rt2x00usb +rt61pci +rt73usb +rtc-88pm860x +rtc-ab3100 +rtc-ab8500 +rtc-bq32k +rtc-bq4802 +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1742 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-isl12022 +rtc-isl1208 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8925 +rtc-max8998 +rtc-mc13xxx +rtc-msm6242 +rtc-pcf2123 +rtc-pcf50633 +rtc-pcf8563 +rtc-pcf8583 +rtc-r9701 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-stk17ta8 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtd520 +rti800 +rti802 +rtl8150 +rtl8180 +rtl8187 +rtl8192c-common +rtl8192ce +rtl8192cu +rtl8192de +rtl8192se +rtlwifi +rts5139 +rts_pstor +rxkad +s1d13xxxfb +s2250 +s2250-loader +s2255drv +s2io +s3fb +s526 +s5h1409 +s5h1411 +s5h1420 +s626 +s6e63m0 +s921 +saa6588 +saa6752hs +saa7110 +saa7115 +saa7127 +saa7134 +saa7134-alsa +saa7134-dvb +saa7134-empress +saa7146 +saa7146_vv +saa7164 +saa717x +saa7185 +saa7706h +safe_serial +salsa20_generic +salsa20-i586 +samsung-laptop +samsung-q10 +sata_inic162x +sata_mv +sata_nv +sata_promise +sata_qstor +sata_sil +sata_sil24 +sata_sis +sata_svw +sata_sx4 +sata_uli +sata_via +sata_vsc +savage +savagefb +sb1000 +sbc60xxwdt +sbc7240_wdt +sbc8360 +sbc_epx_c3 +sbc_fitpc2_wdt +sbc_gxx +sbe-2t3e3 +sbni +sbs +sbshc +sc +sc1200wdt +sc520cdp +sc520_wdt +sc92031 +sca3000 +scb2_flash +scc +sch311x_wdt +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_drr +sch_dsmark +sch_gred +sch_hfsc +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_tgt +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_spi +scsi_transport_srp +scsi_wait_scan +sctp +sctp_probe +scx200 +scx200_acb +scx200_docflash +scx200_gpio +scx200_hrt +scx200_i2c +scx200_wdt +sdhci +sdhci-pci +sdhci-pltfm +sdio_uart +sdla +sdricoh_cs +sealevel +sedlbauer_cs +seed +seeq8005 +sep_driver +seqiv +ser_gigaset +serial2002 +serial_cs +serio_raw +sermouse +serpent +serport +serqt_usb2 +ses +sfc +sha512_generic +shpchp +sht15 +sht21 +si21xx +si4713-i2c +sidewinder +siemens_mpi +sierra +sierra_net +sil164 +sim710 +sir-dev +sis +sis190 +sis5595 +sis900 +sis-agp +sisfb +sisusbvga +sit +sja1000 +sja1000_isa +sja1000_platform +skel +skfp +skge +skisa +sky2 +sl811_cs +sl811-hcd +slcan +slicoss +slip +slram +sm501 +sm501fb +sm7xx +smc9194 +smc91c92_cs +smc-mca +sm_common +smctr +smc-ultra +smc-ultra32 +sm_ftl +smm665 +smsc37b787_wdt +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc9420 +smsc95xx +smsc-ircc2 +smscufx +smsdvb +smsmdtv +smssdio +smsusb +sn9c102 +snd +snd-ac97-codec +snd-ad1816a +snd-ad1848 +snd-ad1889 +snd-adlib +snd-ak4113 +snd-ak4114 +snd-ak4117 +snd-ak4xxx-adda +snd-ali5451 +snd-aloop +snd-als100 +snd-als300 +snd-als4000 +snd-asihpi +snd-atiixp +snd-atiixp-modem +snd-au8810 +snd-au8820 +snd-au8830 +snd-aw2 +snd-azt1605 +snd-azt2316 +snd-azt2320 +snd-azt3328 +snd-bt87x +snd-ca0106 +snd-cmi8330 +snd-cmipci +snd-cs4231 +snd-cs4236 +snd-cs4281 +snd-cs46xx +snd-cs5530 +snd-cs5535audio +snd-cs8427 +snd-ctxfi +snd-darla20 +snd-darla24 +snd-dummy +snd-echo3g +snd-emu10k1 +snd-emu10k1-synth +snd-emu10k1x +snd-emu8000-synth +snd-emux-synth +snd-ens1370 +snd-ens1371 +snd-es1688 +snd-es1688-lib +snd-es18xx +snd-es1938 +snd-es1968 +snd-firewire-lib +snd-firewire-speakers +snd-fm801 +snd-gina20 +snd-gina24 +snd-gusclassic +snd-gusextreme +snd-gus-lib +snd-gusmax +snd-hda-codec +snd-hda-codec-analog +snd-hda-codec-ca0110 +snd-hda-codec-ca0132 +snd-hda-codec-cirrus +snd-hda-codec-cmedia +snd-hda-codec-conexant +snd-hda-codec-hdmi +snd-hda-codec-idt +snd-hda-codec-realtek +snd-hda-codec-si3054 +snd-hda-codec-via +snd-hda-intel +snd-hdsp +snd-hdspm +snd-hrtimer +snd-hwdep +snd-i2c +snd-ice1712 +snd-ice1724 +snd-ice17xx-ak4xxx +snd-indigo +snd-indigodj +snd-indigodjx +snd-indigoio +snd-indigoiox +snd-intel8x0 +snd-intel8x0m +snd-interwave +snd-interwave-stb +snd-isight +snd-jazz16 +snd-korg1212 +snd-layla20 +snd-layla24 +snd-lola +snd-lx6464es +snd-maestro3 +snd-mia +snd-miro +snd-mixart +snd-mixer-oss +snd-mona +snd-mpu401 +snd-mpu401-uart +snd-msnd-classic +snd-msnd-lib +snd-msnd-pinnacle +snd-mtpav +snd-mts64 +snd-nm256 +snd-opl3-lib +snd-opl3sa2 +snd-opl3-synth +snd-opl4-lib +snd-opl4-synth +snd-opti92x-ad1848 +snd-opti92x-cs4231 +snd-opti93x +snd-oxygen +snd-oxygen-lib +snd-page-alloc +snd-pcm +snd-pcsp +snd-pcxhr +snd-pdaudiocf +snd-portman2x4 +snd-pt2258 +snd-rawmidi +snd-riptide +snd-rme32 +snd-rme96 +snd-rme9652 +snd-sb16 +snd-sb16-csp +snd-sb16-dsp +snd-sb8 +snd-sb8-dsp +snd-sbawe +snd-sb-common +snd-sc6000 +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-emul +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-sis7019 +snd-soc-88pm860x +snd-soc-ad1836 +snd-soc-ad193x +snd-soc-ad73311 +snd-soc-adau1373 +snd-soc-adav80x +snd-soc-ads117x +snd-soc-ak4104 +snd-soc-ak4535 +snd-soc-ak4641 +snd-soc-ak4642 +snd-soc-ak4671 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs42l51 +snd-soc-cx20442 +snd-soc-da7210 +snd-soc-dfbmcs320 +snd-soc-jz4740-codec +snd-soc-l3 +snd-soc-lm4857 +snd-soc-max98088 +snd-soc-max98095 +snd-soc-max9850 +snd-soc-max9877 +snd-soc-pcm3008 +snd-soc-rt5631 +snd-soc-sgtl5000 +snd-soc-spdif +snd-soc-ssm2602 +snd-soc-sta32x +snd-soc-tlv320aic23 +snd-soc-tlv320aic26 +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic3x +snd-soc-tlv320dac33 +snd-soc-tpa6130a2 +snd-soc-uda134x +snd-soc-uda1380 +snd-soc-wl1273 +snd-soc-wm1250-ev1 +snd-soc-wm2000 +snd-soc-wm5100 +snd-soc-wm8350 +snd-soc-wm8400 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8727 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8900 +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8940 +snd-soc-wm8955 +snd-soc-wm8960 +snd-soc-wm8961 +snd-soc-wm8962 +snd-soc-wm8971 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8983 +snd-soc-wm8985 +snd-soc-wm8988 +snd-soc-wm8990 +snd-soc-wm8991 +snd-soc-wm8993 +snd-soc-wm8994 +snd-soc-wm8995 +snd-soc-wm8996 +snd-soc-wm9081 +snd-soc-wm9090 +snd-soc-wm-hubs +snd-sonicvibes +snd-sscape +snd-tea575x-tuner +snd-tea6330t +snd-timer +snd-trident +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usbmidi-lib +snd-usb-us122l +snd-usb-usx2y +snd-util-mem +snd-via82xx +snd-via82xx-modem +snd-virmidi +snd-virtuoso +snd-vx222 +snd-vx-lib +snd-vxpocket +snd-wavefront +snd-wss-lib +snd-ymfpci +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +softing_cs +solos-pci +sony-laptop +sonypi +soundcore +sp5100_tco +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +spectrum_cs +speedfax +speedtch +spi-altera +spi-bitbang +spi-butterfly +spidev +spi-dw-midpci +spi-gpio +spi-lm70llp +spi-oc-tiny +spi-pxa2xx +spi-tle62x0 +spi-topcliff-pch +squashfs +ssb +ssfdc +sst25l +sstfb +ssu100 +ssv_dnp +st +st1232 +starfire +stb0899 +stb6000 +stb6100 +st_drv +stex +stinger +stir4200 +stkwebcam +stmmac +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sundance +sungem +sungem_phy +sunhme +suni +sunkbd +sunrpc +svcrdma +svgalib +sworks-agp +sx8 +sym53c416 +sym53c500_cs +sym53c8xx +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +synclink +synclink_cs +synclink_gt +synclinkmp +syscopyarea +sysfillrect +sysimgblt +sysv +t128 +t1isa +t1pci +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +tc1100-wmi +tc3589x-keypad +tca6416-keypad +tcic +tcm_fc +tcm_loop +tcp_bic +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tdfx +tdfxfb +tdo24m +tea +tea5761 +tea5767 +tea6415c +tea6420 +tef6862 +tehuti +tekram-sir +teles_cs +test-kstrtox +test_power +tg3 +tgr192 +thinkpad_acpi +thmc50 +ti_dac7512 +tifm_7xx1 +tifm_core +tifm_ms +tifm_sd +timb_dma +timberdale +timblogiw +timbuart +timeriomem-rng +tipc +ti_usb_3410_5052 +tlan +tlclk +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmiofb +tmp102 +tmp401 +tmp421 +tms380tr +tmscsim +tmspci +toim3232-sir +topstar-laptop +toshiba_acpi +toshiba_bluetooth +touchit213 +touchright +touchwin +tpm_atmel +tpm_infineon +tpm_nsc +tpm_tis +tps6105x +tps6105x-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +trancevibrator +tranzport +tridentfb +ts5500_flash +ts_bm +tsc2005 +tsc2007 +tsc40 +tscan1 +ts_fsm +ts_kmp +tsl2550 +tsl2563 +tsl2583 +ttm +ttpci-eeprom +ttusb_dec +ttusbdecfe +tua6100 +tulip +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp5150 +tw9910 +twidjoy +twofish_common +twofish_generic +twofish-i586 +typhoon +u132-hcd +u14-34f +uartlite +uas +ub +ubi +ubifs +ucb1400_core +ucb1400_ts +udc-core +udf +udlfb +ueagle-atm +ufs +uio +uio_aec +uio_cif +uio_netx +uio_pci_generic +uio_pdrv +uio_pdrv_genirq +uio_sercos3 +uli526x +ultrastor +umc +umem +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +unioxx5 +upd64031a +upd64083 +uPD98402 +usb8xxx +usbatm +usb_debug +usbdux +usbduxfast +usbduxsigma +usb_gigaset +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmouse +usbnet +usbserial +usbsevseg +usb-storage +usbtest +usbtmc +usbtouchscreen +usbvision +usb_wwan +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-int-device +v4l2-mem2mem +vcan +ves1820 +ves1x93 +vesafb +veth +vfat +vga16fb +vgastate +vgg2432a4 +vhci-hcd +vhost_net +via +via686a +via-camera +via-cputemp +viafb +via-ircc +via-rhine +via-rng +via-sdmmc +via-velocity +video +videobuf2-core +videobuf2-dma-contig +videobuf2-memops +videobuf2-vmalloc +videobuf-core +videobuf-dma-contig +videobuf-dma-sg +videobuf-dvb +videobuf-vmalloc +videocodec +videodev +virtio_balloon +virtio_console +virtio_mmio +virtio-rng +virtual +visor +vivi +vivopay-serial +vlsi_ir +vmac +vme +vme_ca91cx42 +vme_tsi148 +vme_user +vme_vmivme7805 +vmk80xx +vmlfb +vmw_balloon +vmwgfx +vmw_pvscsi +vmxnet3 +vp27smpx +vpx3220 +vsxxxaa +vt1211 +vt8231 +vt8623fb +vub300 +vx855 +vxge +w1_bq27000 +w1_ds2408 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1-gpio +w1_smem +w1_therm +w35und +w6692 +w83627ehf +w83627hf +w83627hf_wdt +w83697hf_wdt +w83697ug_wdt +w83781d +w83791d +w83792d +w83793 +w83795 +w83877f_wdt +w83977af_ir +w83977f_wdt +w83l785ts +w83l786ng +w9966 +wacom +wacom_w8001 +wafer5823wdt +walkera0701 +wanrouter +wanxl +warrior +wbsd +wd +wd7000 +wdt +wdt_pci +whci +whci-hcd +whc-rc +whiteheat +wimax +winbond-840 +winbond-cir +wire +wis-ov7640 +wis-saa7113 +wis-saa7115 +wis-sony-tuner +wistron_btns +wis-tw2804 +wis-tw9903 +wis-uda1342 +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl12xx_sdio +wl12xx_spi +wl3501_cs +wlags49_h25_cs +wlags49_h2_cs +wm831x_backup +wm831x_bl +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x_power +wm831x-ts +wm831x_wdt +wm8350-hwmon +wm8350_power +wm8350-regulator +wm8350_wdt +wm8400-core +wm8400-regulator +wm8739 +wm8775 +wm8994-regulator +wm97xx-ts +wmi +wp512 +wusb-cbaf +wusbcore +wusb-wa +x25 +x25_asy +x38_edac +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_ipcomp +xfrm_user +xfs +xgifb +xilinx_uartps +xirc2ps_cs +xircom_cb +xo15-ebook +xo1-rfkill +xor +xpad +xprtrdma +x_tables +xt_addrtype +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_cluster +xt_comment +xt_connbytes +xt_connlimit +xt_connmark +xt_CONNSECMARK +xt_conntrack +xt_cpu +xt_CT +xt_dccp +xt_devgroup +xt_dscp +xt_DSCP +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_HL +xt_IDLETIMER +xt_iprange +xt_ipvs +xtkbd +xt_LED +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_NFLOG +xt_NFQUEUE +xt_NOTRACK +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_RATEEST +xt_realm +xt_recent +xts +xt_sctp +xt_SECMARK +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_TCPMSS +xt_TCPOPTSTRIP +xt_tcpudp +xt_TEE +xt_time +xt_TPROXY +xt_TRACE +xt_u32 +xusbatm +xz_dec_test +yam +yealink +yellowfin +yenta_socket +yurex +z85230 +zatm +zaurus +zcache +zd1201 +zd1211rw +zhenhua +zio +zl10036 +zl10039 +zl10353 +zlib +zlib_deflate +znet +zr36016 +zr36050 +zr36060 +zr36067 +zr364xx +zram --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/armel/omap.modules +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/armel/omap.modules @@ -0,0 +1,2290 @@ +6lowpan +6pack +8021q +8250_dw +88pm860x_bl +88pm860x_onkey +88pm860x-ts +9p +9pnet +a3d +a8293 +aat2870_bl +aat2870-regulator +ab3100 +ab3100-otp +ab8500-ponkey +ab8500-usb +ac97_bus +acecad +act200l-sir +act_csum +act_gact +act_ipt +actisys-sir +act_mirred +act_nat +act_pedit +act_police +act_simple +act_skbedit +ad2s1200 +ad2s1210 +ad2s90 +ad5064 +ad525x_dpot +ad525x_dpot-i2c +ad525x_dpot-spi +ad5360 +ad5398 +ad5446 +ad5504 +ad5624r_spi +ad5686 +ad5791 +ad5930 +ad5933 +ad714x +ad714x-i2c +ad714x-spi +ad7150 +ad7152 +ad7192 +ad7280a +ad7291 +ad7298 +ad7314 +ad7414 +ad7418 +ad7476 +ad7606 +ad7746 +ad7780 +ad7793 +ad7816 +ad7877 +ad7879 +ad7879-i2c +ad7879-spi +ad7887 +ad799x +ad9832 +ad9834 +ad9850 +ad9852 +ad9910 +ad9951 +adcxx +ade7753 +ade7754 +ade7758 +ade7759 +ade7854 +ade7854-i2c +ade7854-spi +adfs +adi +adis16060 +adis16080 +adis16130 +adis16201 +adis16203 +adis16204 +adis16209 +adis16220 +adis16240 +adis16260 +adis16400 +adm1021 +adm1025 +adm1026 +adm1029 +adm1031 +adm9240 +adp5520_bl +adp5520-keys +adp5588-keys +adp5589-keys +adp8860_bl +adp8870_bl +ads1015 +ads7828 +ads7846 +ads7871 +adt7310 +adt7316 +adt7316-i2c +adt7316-spi +adt7410 +adt7411 +adt7462 +adt7470 +adt7475 +adummy +adutux +adv7170 +adv7175 +adv7180 +adv7343 +adxl34x +adxl34x-i2c +adxl34x-spi +adxrs450 +af_802154 +af9013 +af_alg +affs +af_key +af-rxrpc +afs +ah4 +ah6 +ahci_platform +aiptek +aircable +ak881x +ak8975 +alauda +algif_hash +algif_skcipher +alphatrack +altera_jtaguart +altera_ps2 +altera-stapl +altera_uart +amba-clcd +ambakmi +amba-pl010 +amba-pl011 +amc6821 +ams369fg06 +analog +ansi_cprng +anubis +aoe +apds9802als +apds990x +appledisplay +appletalk +appletouch +ar7part +arc4 +ark3116 +arptable_filter +arp_tables +arpt_mangle +as5011 +asc7621 +asix +asus_oled +async_memcpy +async_pq +async_raid6_recov +async_tx +async_xor +at24 +at25 +at76c50x-usb +atbm8830 +ath +ath3k +ath6kl +ath9k +ath9k_common +ath9k_htc +ath9k_hw +ati_remote +ati_remote2 +atm +atmel_mxt_ts +atmel_pwm +atmel-pwm-bl +atmtcp +atxp1 +au0828 +au8522 +aufs +authenc +authencesn +auth_rpcgss +autofs4 +ax25 +ax88796 +b2c2-flexcop +b2c2-flexcop-usb +b43 +b43legacy +b44 +bas_gigaset +batman-adv +baycom_epp +baycom_par +baycom_ser_fdx +baycom_ser_hdx +bcm203x +bcm3510 +bcm5974 +bcma +bcm_wimax +befs +belkin_sa +bfs +bfusb +bh1770glc +bh1780gli +binfmt_aout +binfmt_misc +block2mtd +blowfish_common +blowfish_generic +bluetooth +bma150 +bmp085 +bnep +bonding +bpa10x +bpqether +bq20z75 +bq24022 +bq27x00_battery +br2684 +brcmfmac +brcmutil +bridge +broadsheetfb +bsd_comp +bt819 +bt856 +bt866 +btmrvl +btmrvl_sdio +btrfs +btsdio +btusb +btwilink +bu21013_ts +bw-qcam +c67x00 +cachefiles +caif +caif_hsi +caif_serial +caif_socket +camellia +can +can-bcm +can-dev +can-gw +can-raw +capi +capidrv +carl9170 +cast5 +cast6 +catc +c_can +c_can_platform +ccm +cdc-acm +cdc_eem +cdc_ether +cdc_ncm +cdc-phonet +cdc_subset +cdc-wdm +ceph +cfg80211 +cfi_cmdset_0001 +cfi_cmdset_0002 +cfi_cmdset_0020 +cfi_probe +cfi_util +cfspi_slave +ch +ch341 +chnl_net +cifs +clearpad_tm1217 +clip +cls_basic +cls_cgroup +cls_flow +cls_fw +cls_route +cls_rsvp +cls_rsvp6 +cls_tcindex +cls_u32 +cm109 +cma3000_d0x +cma3000_d0x_i2c +cmtp +cobra +coda +configfs +cordic +core +cp210x +cpia2 +c-qcam +cramfs +crc7 +crc8 +crc-ccitt +crc-itu-t +cryptd +cryptoloop +crypto_null +crypto_user +cs5345 +cs53l32a +ctr +cts +cuse +cx22700 +cx22702 +cx231xx +cx231xx-alsa +cx231xx-dvb +cx2341x +cx24110 +cx24113 +cx24116 +cx24123 +cx25840 +cx82310_eth +cxacru +cxd2820r +cy8ctmg110_ts +cyberjack +cypress_cy7c63 +cypress_m8 +cytherm +da9030_battery +da9034-ts +da903x +da903x_bl +davinci_cpdma +davinci_mdio +db9 +dccp +dccp_diag +dccp_ipv4 +dccp_ipv6 +dccp_probe +de600 +de620 +decnet +deflate +des_generic +dib0070 +dib0090 +dib3000mb +dib3000mc +dib7000m +dib7000p +dib8000 +dib9000 +dibx000_common +digi_acceleport +diskonchip +display +dlci +dlm +dm644x_ccdc +dm9000 +dm9601 +dm-bufio +dm-crypt +dme1737 +dm-log +dm-mirror +dm-multipath +dm-persistent-data +dm-queue-length +dm-raid +dm-region-hash +dm-round-robin +dm-service-time +dm-snapshot +dm-thin-pool +dm-zero +dnet +dn_rtmsg +doc2000 +doc2001 +doc2001plus +docecc +docg3 +docprobe +drbd +drm +drxd +drxk +ds1621 +ds1682 +ds1wm +ds2482 +ds2490 +ds2760_battery +ds2780_battery +ds2782_battery +ds3000 +ds620 +dsbr100 +dss1_divert +dummy +dvb-as102 +dvb-core +dvb-pll +dvb-usb +dvb-usb-a800 +dvb-usb-af9005 +dvb-usb-af9005-remote +dvb-usb-af9015 +dvb-usb-anysee +dvb-usb-au6610 +dvb-usb-az6027 +dvb-usb-ce6230 +dvb-usb-cinergyT2 +dvb-usb-cxusb +dvb-usb-dib0700 +dvb-usb-dibusb-common +dvb-usb-dibusb-mb +dvb-usb-dibusb-mc +dvb-usb-digitv +dvb-usb-dtt200u +dvb-usb-dtv5100 +dvb-usb-dw2102 +dvb-usb-ec168 +dvb-usb-friio +dvb-usb-gl861 +dvb-usb-gp8psk +dvb-usb-it913x +dvb-usb-lmedm04 +dvb-usb-m920x +dvb-usb-mxl111sf +dvb-usb-nova-t-usb2 +dvb-usb-opera +dvb-usb-pctv452e +dvb-usb-technisat-usb2 +dvb-usb-ttusb2 +dvb-usb-umt-010 +dvb-usb-vp702x +dvb-usb-vp7045 +dwc3 +dwc3-omap +dw_dmac +dw_mmc +dw_wdt +dynapro +easycap +ebt_802_3 +ebtable_broute +ebtable_filter +ebtable_nat +ebtables +ebt_among +ebt_arp +ebt_arpreply +ebt_dnat +ebt_ip +ebt_ip6 +ebt_limit +ebt_log +ebt_mark +ebt_mark_m +ebt_nflog +ebt_pkttype +ebt_redirect +ebt_snat +ebt_stp +ebt_ulog +ebt_vlan +ec100 +echo +econet +eeprom +eeprom_93cx6 +eeprom_93xx46 +eeti_ts +efs +elo +em28xx +em28xx-alsa +em28xx-dvb +emc1403 +emc2103 +emc6w201 +em_cmp +emi26 +emi62 +em_meta +em_nbyte +empeg +ems_usb +em_text +em_u32 +enc28j60 +enclosure +eql +esd_usb2 +esi-sir +esp4 +esp6 +ethoc +evbug +ext2 +f71805f +f71882fg +f75375s +faulty +fb_sys_fops +fcrypt +ff-memless +fm_drv +freevxfs +fsa9480 +fscache +ft1000 +ftdi-elan +ftdi_sio +ftl +fujitsu_ts +funsoft +g760a +g_acm_ms +gadgetfs +gamecon +gameport +garmin_gps +garp +g_audio +g_cdc +gcm +g_dbgp +generic +generic_bl +gen_probe +g_ether +gf128mul +gf2k +g_ffs +gfs2 +ghash-generic +g_hid +gigaset +girbil-sir +gl518sm +gl520sm +gl620a +gluebi +g_mass_storage +g_midi +g_multi +g_ncm +g_nokia +gpio +gpio-74x164 +gpio-addr-flash +gpio-adp5520 +gpio-adp5588 +gpio-charger +gpio-fan +gpio-generic +gpio-i2cmux +gpio-it8761e +gpio_keys +gpio_keys_polled +gpio-max7300 +gpio-max7301 +gpio-max730x +gpio-max732x +gpio-mc33880 +gpio-mcp23s08 +gpio_mouse +gpio-pca953x +gpio-pcf857x +gpio-regulator +gpio-tps65912 +gpio-wm831x +gpio-wm8350 +gpio-wm8994 +g_printer +gre +grip +grip_mp +g_serial +gspca_benq +gspca_conex +gspca_cpia1 +gspca_etoms +gspca_finepix +gspca_gl860 +gspca_jeilinj +gspca_kinect +gspca_konica +gspca_m5602 +gspca_main +gspca_mars +gspca_mr97310a +gspca_nw80x +gspca_ov519 +gspca_ov534 +gspca_ov534_9 +gspca_pac207 +gspca_pac7302 +gspca_pac7311 +gspca_se401 +gspca_sn9c2028 +gspca_sn9c20x +gspca_sonixb +gspca_sonixj +gspca_spca1528 +gspca_spca500 +gspca_spca501 +gspca_spca505 +gspca_spca506 +gspca_spca508 +gspca_spca561 +gspca_sq905 +gspca_sq905c +gspca_sq930x +gspca_stk014 +gspca_stv0680 +gspca_stv06xx +gspca_sunplus +gspca_t613 +gspca_topro +gspca_tv8532 +gspca_vc032x +gspca_vicam +gspca_xirlink_cit +gspca_zc3xx +gtco +guillemot +gunze +g_webcam +g_zero +hampshire +hanwang +hci_uart +hci_vhci +hdlc +hdlc_cisco +hdlcdrv +hdlc_fr +hdlc_ppp +hdlc_raw +hdlc_raw_eth +hdlc_x25 +hdpvr +hfc4s8s_l1 +hfcsusb +hfc_usb +hfs +hfsplus +hid +hid-a4tech +hid-apple +hid-axff +hid-belkin +hid-cherry +hid-chicony +hid-cypress +hid-dr +hid-elecom +hid-emsff +hid-ezkey +hid-gaff +hid-gyration +hid-holtekff +hid-kensington +hid-keytouch +hid-kye +hid-lcpower +hid-logitech +hid-logitech-dj +hid-magicmouse +hid-microsoft +hid-monterey +hid-multitouch +hid-ntrig +hid-ortek +hidp +hid-petalynx +hid-picolcd +hid-pl +hid-primax +hid-prodikeys +hid-roccat +hid-roccat-arvo +hid-roccat-common +hid-roccat-kone +hid-roccat-koneplus +hid-roccat-kovaplus +hid-roccat-pyra +hid-samsung +hid-sjoy +hid-sony +hid-speedlink +hid-sunplus +hid-tmff +hid-topseed +hid-twinhan +hid-uclogic +hid-wacom +hid-waltop +hid-wiimote +hid-zpff +hid-zydacron +hisax +hisax_st5481 +hmc5843 +hmc6352 +hostap +hp4x +hpfs +hso +htc-pasic3 +hwa-hc +hwa-rc +hwmon-vid +i1480-dfu-usb +i1480-est +i2c-algo-bit +i2c-algo-pca +i2c-algo-pcf +i2c-designware-platform +i2c-dev +i2c-diolan-u2c +i2c-gpio +i2c-mux +i2c-ocores +i2c-parport +i2c-parport-light +i2c-pca-platform +i2c-simtec +i2c-smbus +i2c-stub +i2c-taos-evm +i2c-tiny-usb +i2c-xiic +ibmaem +ibmpex +ics932s401 +idmouse +ieee802154 +ifb +iforce +iio_dummy +iio-trig-gpio +iio-trig-periodic-rtc +iio-trig-sysfs +ili9320 +imon +impa7 +imx074 +industrialio +inet_diag +inexio +inftl +input-polldev +int51x1 +interact +io_edgeport +io_ti +iowarrior +ip6_queue +ip6table_filter +ip6table_mangle +ip6table_raw +ip6_tables +ip6table_security +ip6t_ah +ip6t_eui64 +ip6t_frag +ip6t_hbh +ip6t_ipv6header +ip6t_LOG +ip6t_mh +ip6t_REJECT +ip6t_rt +ip6_tunnel +ipaq +ipcomp +ipcomp6 +ipddp +ip_gre +ipheth +ipip +ipmi_devintf +ipmi_msghandler +ipmi_poweroff +ipmi_si +ipmi_watchdog +ip_queue +ip_set +ip_set_bitmap_ip +ip_set_bitmap_ipmac +ip_set_bitmap_port +ip_set_hash_ip +ip_set_hash_ipport +ip_set_hash_ipportip +ip_set_hash_ipportnet +ip_set_hash_net +ip_set_hash_netiface +ip_set_hash_netport +ip_set_list_set +iptable_filter +iptable_mangle +iptable_nat +iptable_raw +ip_tables +iptable_security +ipt_ah +ipt_CLUSTERIP +ipt_ecn +ipt_ECN +ipt_LOG +ipt_MASQUERADE +ipt_NETMAP +ipt_REDIRECT +ipt_REJECT +ipt_ULOG +ip_vs +ip_vs_dh +ip_vs_ftp +ip_vs_lblc +ip_vs_lblcr +ip_vs_lc +ip_vs_nq +ip_vs_pe_sip +ip_vs_rr +ip_vs_sed +ip_vs_sh +ip_vs_wlc +ip_vs_wrr +ipw +ipx +ircomm +ircomm-tty +irda +irda-usb +ir-jvc-decoder +ir-kbd-i2c +irlan +ir-lirc-codec +ir-mce_kbd-decoder +ir-nec-decoder +irnet +ir-rc5-decoder +ir-rc5-sz-decoder +ir-rc6-decoder +ir-sony-decoder +irtty-sir +ir-usb +iscsi_boot_sysfs +iscsi_target_mod +iscsi_tcp +isdn +isdn_bsdcomp +isdnhdlc +isdnloop +isight_firmware +isl29003 +isl29018 +isl29020 +isl6271a-regulator +isl6405 +isl6421 +isl6423 +isofs +isp116x-hcd +isp1301_omap +isp1704_charger +isp1760 +it87 +it913x-fe +itd1000 +iuu_phoenix +iwmc3200top +iwmc3200wifi +ix2505v +jc42 +jedec_probe +jffs2 +jfs +joydev +joydump +kafs +kalmia +kaweth +kbtab +kernelcapi +keucr +keyspan +keyspan_pda +keyspan_remote +kfifo_buf +khazad +kingsun-sir +kl5kusb105 +kobil_sct +ks0127 +ks8842 +ks8851 +ks8851_mll +ks959-sir +ksdazzle-sir +kxsd9 +kxtj9 +l1oip +l2tp_core +l2tp_debugfs +l2tp_ppp +l4f00242t03 +l64781 +lapb +lapbether +latch-addr-flash +lcd +ld9040 +ldusb +lec +leds-88pm860x +leds-adp5520 +leds-atmel-pwm +leds-bd2802 +leds-da903x +leds-dac124s085 +leds-gpio +leds-lm3530 +leds-lp3944 +leds-lp5521 +leds-lp5523 +leds-lt3593 +leds-mc13783 +leds-pca9532 +leds-pca955x +leds-pwm +leds-regulator +leds-wm831x-status +leds-wm8350 +ledtrig-backlight +ledtrig-default-on +ledtrig-gpio +ledtrig-heartbeat +ledtrig-timer +legousbtower +lgdt3305 +lgdt330x +lgs8gl5 +lgs8gxx +lg-vl600 +lib80211 +lib80211_crypt_ccmp +lib80211_crypt_tkip +lib80211_crypt_wep +libahci +libceph +libcrc32c +libertas +libertas_sdio +libertas_spi +libertas_tf +libertas_tf_usb +libfc +libfcoe +libiscsi +libiscsi_tcp +libsas +lightning +line6usb +lineage-pem +linear +lirc_dev +lirc_igorplugusb +lirc_imon +lirc_parallel +lirc_sasem +lirc_serial +lirc_sir +lirc_ttusbir +lirc_zilog +lis3l02dq +lis3lv02d +lis3lv02d_i2c +lis3lv02d_spi +litelink-sir +lkkbd +llc +llc2 +lm63 +lm70 +lm73 +lm75 +lm77 +lm78 +lm80 +lm83 +lm8323 +lm85 +lm87 +lm90 +lm92 +lm93 +lm95241 +lm95245 +lms283gf05 +lnbp21 +lnbp22 +lockd +lp +lp3971 +lp3972 +lpddr_cmds +lru_cache +lrw +ltc4151 +ltc4215 +ltc4245 +ltc4261 +ltv350qv +lzo +m25p80 +m52790 +ma600-sir +mac80211 +mac80211_hwsim +macvlan +macvtap +magellan +mailbox +mailbox_mach +map_absent +map_ram +map_rom +matrix_keypad +max1111 +max11801_ts +max1363 +max1586 +max16065 +max1619 +max1668 +max17040_battery +max17042_battery +max2165 +max3100 +max3107 +max63xx_wdt +max6639 +max6642 +max6650 +max6875 +max7359_keypad +max8649 +max8660 +max8903_charger +max8925_bl +max8925_onkey +max8925_power +max8925-regulator +max8952 +max8997 +max8997_charger +max8998 +max8998_charger +mb86a16 +mb86a20s +mc13783-adc +mc13783-pwrbutton +mc13783-regulator +mc13783_ts +mc13892-regulator +mc13xxx-core +mc13xxx-regulator-core +mc44s803 +mceusb +mcp2120-sir +mcp251x +mcs5000_ts +mcs7780 +mcs7830 +mcs_touchkey +mct_u232 +md4 +mdc800 +mdio-bitbang +mdio-gpio +mem2mem_testdev +memstick +metronomefb +mg_disk +michael_mic +micrel +microtek +minix +mip6 +mISDN_core +mISDN_dsp +mk712 +mkiss +mma8450 +mmci +mmc_spi +mos7720 +mos7840 +moto_modem +mpoa +mpr121_touchkey +mpu3050 +msdos +msp3400 +mspro_block +mt2060 +mt20xx +mt2266 +mt312 +mt352 +mt9m001 +mt9m111 +mt9t031 +mt9t112 +mt9v011 +mt9v022 +mtd_dataflash +mtdoops +mtdram +mtdswap +mtouch +multipath +mwifiex +mwifiex_sdio +mxl111sf-demod +mxl111sf-tuner +mxl5005s +mxl5007t +nandsim +navman +nbd +nci +ncpfs +net1080 +netconsole +netrom +newtonkbd +nfc +nf_conntrack +nf_conntrack_amanda +nf_conntrack_broadcast +nf_conntrack_ftp +nf_conntrack_h323 +nf_conntrack_ipv4 +nf_conntrack_ipv6 +nf_conntrack_irc +nf_conntrack_netbios_ns +nf_conntrack_netlink +nf_conntrack_pptp +nf_conntrack_proto_dccp +nf_conntrack_proto_gre +nf_conntrack_proto_sctp +nf_conntrack_proto_udplite +nf_conntrack_sane +nf_conntrack_sip +nf_conntrack_snmp +nf_conntrack_tftp +nfcwilink +nf_defrag_ipv4 +nf_defrag_ipv6 +nf_nat +nf_nat_amanda +nf_nat_ftp +nf_nat_h323 +nf_nat_irc +nf_nat_pptp +nf_nat_proto_dccp +nf_nat_proto_gre +nf_nat_proto_sctp +nf_nat_proto_udplite +nf_nat_sip +nf_nat_snmp_basic +nf_nat_tftp +nfnetlink +nfnetlink_log +nfnetlink_queue +nfs +nfs_acl +nfsd +nftl +nf_tproxy_core +n_hdlc +nilfs2 +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp737 +nls_cp775 +nls_cp850 +nls_cp852 +nls_cp855 +nls_cp857 +nls_cp860 +nls_cp861 +nls_cp862 +nls_cp863 +nls_cp864 +nls_cp865 +nls_cp866 +nls_cp869 +nls_cp874 +nls_cp932 +nls_cp936 +nls_cp949 +nls_cp950 +nls_euc-jp +nls_iso8859-1 +nls_iso8859-13 +nls_iso8859-14 +nls_iso8859-15 +nls_iso8859-2 +nls_iso8859-3 +nls_iso8859-4 +nls_iso8859-5 +nls_iso8859-6 +nls_iso8859-7 +nls_iso8859-9 +nls_koi8-r +nls_koi8-ru +nls_koi8-u +nls_utf8 +ns558 +ntc_thermistor +ntfs +n_tracerouter +n_tracesink +nvram +nxt200x +nxt6000 +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stackglue +ocfs2_stack_o2cb +ocfs2_stack_user +of_mmc_spi +of_serial +old_belkin-sir +omap +omap2 +omap-aes +omap_hdq +omap-iommu-debug +omap-iovmm +omap-sham +omap-vout +omap_wdt +omfs +omninet +onenand +onenand_sim +opencores-kbd +oprofile +opticon +option +or51132 +or51211 +osst +oti6858 +output +ov2640 +ov5642 +ov6650 +ov7670 +ov772x +ov9640 +ov9740 +overlayfs +oxu210hp-hcd +p54common +p54spi +p54usb +p8022 +p8023 +panel +panel-acx565akm +panel-lgphilips-lb035q02 +panel-nec-nl8048hl11-01b +panel-picodlp +parkbd +parport +parport_ax88796 +pata_arasan_cf +pata_of_platform +pata_platform +pc87360 +pc87427 +pca9541 +pca954x +pcap_keys +pcap_ts +pcbc +pcf50633 +pcf50633-adc +pcf50633-backlight +pcf50633-charger +pcf50633-gpio +pcf50633-input +pcf50633-regulator +pcf8574_keypad +pcf8591 +pcwd_usb +pda_power +pegasus +penmount +phonedev +phonet +phram +physmap +physmap_of +pktcdvd +pktgen +pl2303 +pl330 +platform_lcd +plat_nand +plat-ram +plip +plusb +pn533 +pn544 +pn_pep +pohmelfs +poseidon +powermate +ppdev +ppp_async +ppp_deflate +ppp_mppe +pppoatm +pppoe +pppox +ppp_synctty +pps_core +pps-gpio +pps-ldisc +pps_parport +pptp +prism2_usb +ps2mult +psmouse +psnap +pvrusb2 +pwc +pwm-beeper +pwm_bl +qcaux +qcserial +qinfo_probe +qnx4 +qt1010 +qt1070 +quatech_usb2 +quota_tree +quota_v1 +quota_v2 +r8712u +r8a66597-hcd +radio-i2c-si470x +radio-mr800 +radio-si4713 +radio-tea5764 +radio-usb-si470x +radio-wl1273 +raid0 +raid1 +raid10 +raid456 +raid6_pq +raid6test +raid_class +ramoops +raw +rbd +rc-adstech-dvb-t-pci +rc-alink-dtu-m +rc-anysee +rc-apac-viewcomp +rc-asus-pc39 +rc-ati-tv-wonder-hd-600 +rc-ati-x10 +rc-avermedia +rc-avermedia-a16d +rc-avermedia-cardbus +rc-avermedia-dvbt +rc-avermedia-m135a +rc-avermedia-m733a-rm-k6 +rc-avermedia-rm-ks +rc-avertv-303 +rc-azurewave-ad-tu700 +rc-behold +rc-behold-columbus +rc-budget-ci-old +rc-cinergy +rc-cinergy-1400 +rc-core +rc-dib0700-nec +rc-dib0700-rc5 +rc-digitalnow-tinytwin +rc-digittrade +rc-dm1105-nec +rc-dntv-live-dvb-t +rc-dntv-live-dvbt-pro +rc-em-terratec +rc-encore-enltv +rc-encore-enltv2 +rc-encore-enltv-fm53 +rc-evga-indtube +rc-eztv +rc-flydvb +rc-flyvideo +rc-fusionhdtv-mce +rc-gadmei-rm008z +rc-genius-tvgo-a11mce +rc-gotview7135 +rc-hauppauge +rc-imon-mce +rc-imon-pad +rc-iodata-bctv7e +rc-kaiomy +rc-kworld-315u +rc-kworld-plus-tv-analog +rc-leadtek-y04g0051 +rc-lirc +rc-lme2510 +rc-loopback +rc-manli +rc-medion-x10 +rc-msi-digivox-ii +rc-msi-digivox-iii +rc-msi-tvanywhere +rc-msi-tvanywhere-plus +rc-nebula +rc-nec-terratec-cinergy-xs +rc-norwood +rc-npgtech +rc-pctv-sedna +rc-pinnacle-color +rc-pinnacle-grey +rc-pinnacle-pctv-hd +rc-pixelview +rc-pixelview-002t +rc-pixelview-mk12 +rc-pixelview-new +rc-powercolor-real-angel +rc-proteus-2309 +rc-purpletv +rc-pv951 +rc-rc6-mce +rc-real-audio-220-32-keys +rc-snapstream-firefly +rc-streamzap +rc-tbs-nec +rc-technisat-usb2 +rc-terratec-cinergy-xs +rc-terratec-slim +rc-terratec-slim-2 +rc-tevii-nec +rc-tivo +rc-total-media-in-hand +rc-trekstor +rc-tt-1500 +rc-twinhan1027 +rc-videomate-m1f +rc-videomate-s350 +rc-videomate-tv-pvr +rc-winfast +rc-winfast-usbii-deluxe +rds +rds_tcp +redboot +redrat3 +reed_solomon +reiserfs +renesas_usbhs +rfcomm +rfd_ftl +rfkill-gpio +rfkill-regulator +ring_sw +rio500 +rj54n1cb0c +rmd128 +rmd160 +rmd256 +rmd320 +rndis_host +rndis_wlan +romfs +rose +rotary_encoder +rpcsec_gss_krb5 +rt2500usb +rt2800lib +rt2800usb +rt2x00lib +rt2x00usb +rt73usb +rtc-88pm860x +rtc-ab3100 +rtc-ab8500 +rtc-bq32k +rtc-bq4802 +rtc-cmos +rtc-ds1286 +rtc-ds1305 +rtc-ds1307 +rtc-ds1374 +rtc-ds1390 +rtc-ds1511 +rtc-ds1553 +rtc-ds1672 +rtc-ds1742 +rtc-ds3232 +rtc-ds3234 +rtc-em3027 +rtc-fm3130 +rtc-isl12022 +rtc-isl1208 +rtc-m41t80 +rtc-m41t93 +rtc-m41t94 +rtc-m48t35 +rtc-m48t59 +rtc-m48t86 +rtc-max6900 +rtc-max6902 +rtc-max8925 +rtc-max8998 +rtc-mc13xxx +rtc-msm6242 +rtc-pcap +rtc-pcf2123 +rtc-pcf50633 +rtc-pcf8563 +rtc-pcf8583 +rtc-pl030 +rtc-pl031 +rtc-r9701 +rtc-rp5c01 +rtc-rs5c348 +rtc-rs5c372 +rtc-rv3029c2 +rtc-rx8025 +rtc-rx8581 +rtc-s35390a +rtc-stk17ta8 +rtc-v3020 +rtc-wm831x +rtc-wm8350 +rtc-x1205 +rtl8150 +rtl8187 +rtl8192c-common +rtl8192cu +rtlwifi +rts5139 +rxkad +s1d13xxxfb +s2255drv +s5h1409 +s5h1411 +s5h1420 +s5h1432 +s6e63m0 +s921 +saa6588 +saa7110 +saa7115 +saa7127 +saa717x +saa7185 +saa7191 +saa7706h +safe_serial +salsa20_generic +sata_mv +sca3000 +sch5627 +sch5636 +sch56xx-common +sch_atm +sch_cbq +sch_choke +sch_drr +sch_dsmark +sch_gred +sch_hfsc +sch_htb +sch_ingress +sch_mqprio +sch_multiq +sch_netem +sch_prio +sch_qfq +sch_red +sch_sfb +sch_sfq +sch_tbf +sch_teql +scsi_debug +scsi_dh_alua +scsi_dh_emc +scsi_dh_hp_sw +scsi_dh_rdac +scsi_tgt +scsi_transport_fc +scsi_transport_iscsi +scsi_transport_sas +scsi_transport_srp +scsi_wait_scan +sctp +sctp_probe +sdhci-pltfm +sdhci-pxav2 +sdhci-pxav3 +sdio_uart +seed +seeq8005 +seqiv +ser_gigaset +serio_raw +sermouse +serpent +serport +serqt_usb2 +ses +sha512_generic +sh_mobile_ceu_camera +sh_mobile_csi2 +sht15 +sht21 +si21xx +si4713-i2c +sidewinder +siemens_mpi +sierra +sierra_net +sir-dev +sisusbvga +sit +sja1000 +sja1000_platform +sl811-hcd +slcan +slip +slram +sm501 +sm501fb +sm7xx +smc911x +smc91x +sm_ftl +smm665 +smsc47b397 +smsc47m1 +smsc47m192 +smsc75xx +smsc911x +smsc95xx +smscufx +smsdvb +smsmdtv +smssdio +smsusb +snd +snd-aaci +snd-ac97-codec +snd-aloop +snd-dummy +snd-hrtimer +snd-hwdep +snd-mixer-oss +snd-mpu401 +snd-mpu401-uart +snd-mtpav +snd-mts64 +snd-page-alloc +snd-pcm +snd-pcm-oss +snd-portman2x4 +snd-rawmidi +snd-seq +snd-seq-device +snd-seq-dummy +snd-seq-midi +snd-seq-midi-event +snd-seq-virmidi +snd-serial-u16550 +snd-soc-88pm860x +snd-soc-ad1836 +snd-soc-ad193x +snd-soc-ad73311 +snd-soc-adau1373 +snd-soc-adav80x +snd-soc-ads117x +snd-soc-ak4104 +snd-soc-ak4535 +snd-soc-ak4641 +snd-soc-ak4642 +snd-soc-ak4671 +snd-soc-alc5623 +snd-soc-core +snd-soc-cs4270 +snd-soc-cs4271 +snd-soc-cs42l51 +snd-soc-cx20442 +snd-soc-da7210 +snd-soc-dfbmcs320 +snd-soc-igep0020 +snd-soc-jz4740-codec +snd-soc-l3 +snd-soc-lm4857 +snd-soc-max98088 +snd-soc-max98095 +snd-soc-max9850 +snd-soc-max9877 +snd-soc-omap +snd-soc-omap3beagle +snd-soc-omap3evm +snd-soc-omap3pandora +snd-soc-omap-mcbsp +snd-soc-overo +snd-soc-pcm3008 +snd-soc-rt5631 +snd-soc-rx51 +snd-soc-sdp3430 +snd-soc-sgtl5000 +snd-soc-spdif +snd-soc-ssm2602 +snd-soc-sta32x +snd-soc-tlv320aic23 +snd-soc-tlv320aic26 +snd-soc-tlv320aic32x4 +snd-soc-tlv320aic3x +snd-soc-tlv320dac33 +snd-soc-tpa6130a2 +snd-soc-twl4030 +snd-soc-twl6040 +snd-soc-uda134x +snd-soc-uda1380 +snd-soc-wl1273 +snd-soc-wm1250-ev1 +snd-soc-wm2000 +snd-soc-wm5100 +snd-soc-wm8350 +snd-soc-wm8400 +snd-soc-wm8510 +snd-soc-wm8523 +snd-soc-wm8580 +snd-soc-wm8711 +snd-soc-wm8727 +snd-soc-wm8728 +snd-soc-wm8731 +snd-soc-wm8737 +snd-soc-wm8741 +snd-soc-wm8750 +snd-soc-wm8753 +snd-soc-wm8770 +snd-soc-wm8776 +snd-soc-wm8782 +snd-soc-wm8804 +snd-soc-wm8900 +snd-soc-wm8903 +snd-soc-wm8904 +snd-soc-wm8940 +snd-soc-wm8955 +snd-soc-wm8960 +snd-soc-wm8961 +snd-soc-wm8962 +snd-soc-wm8971 +snd-soc-wm8974 +snd-soc-wm8978 +snd-soc-wm8983 +snd-soc-wm8985 +snd-soc-wm8988 +snd-soc-wm8990 +snd-soc-wm8991 +snd-soc-wm8993 +snd-soc-wm8994 +snd-soc-wm8995 +snd-soc-wm8996 +snd-soc-wm9081 +snd-soc-wm9090 +snd-soc-wm-hubs +snd-soc-zoom2 +snd-timer +snd-ua101 +snd-usb-6fire +snd-usb-audio +snd-usb-caiaq +snd-usbmidi-lib +snd-virmidi +soc_camera +soc_camera_platform +soc_mediabus +softdog +softing +soundcore +sp805_wdt +sp8870 +sp887x +spaceball +spaceorb +sparse-keymap +spcp8x5 +speakup +speakup_acntpc +speakup_acntsa +speakup_apollo +speakup_audptr +speakup_bns +speakup_decext +speakup_decpc +speakup_dectlk +speakup_dtlk +speakup_dummy +speakup_keypc +speakup_ltlk +speakup_soft +speakup_spkout +speakup_txprt +speedtch +spi-altera +spi-bitbang +spi-butterfly +spi-dw +spi-gpio +spi-lm70llp +spi-oc-tiny +spi-omap2-mcspi +spi-pl022 +spi-tle62x0 +squashfs +sr030pc30 +ssb +ssfdc +sst25l +ssu100 +st +st1232 +stb0899 +stb6000 +stb6100 +st_drv +stinger +stir4200 +stkwebcam +stmmac +stmpe-keypad +stmpe-ts +stowaway +stp +streamzap +stv0288 +stv0297 +stv0299 +stv0367 +stv0900 +stv090x +stv6110 +stv6110x +sunkbd +sunrpc +symbolserial +synaptics_i2c +synaptics_i2c_rmi4 +syscopyarea +sysfillrect +sysimgblt +sysv +target_core_file +target_core_iblock +target_core_mod +target_core_pscsi +tc3589x-keypad +tca6416-keypad +tcm825x +tcm_fc +tcm_loop +tcp_bic +tcp_diag +tcp_highspeed +tcp_htcp +tcp_hybla +tcp_illinois +tcp_lp +tcp_probe +tcp_scalable +tcp_vegas +tcp_veno +tcp_westwood +tcp_yeah +tcrypt +tda10021 +tda10023 +tda10048 +tda1004x +tda10071 +tda10086 +tda18212 +tda18218 +tda18271 +tda18271c2dd +tda665x +tda7432 +tda8083 +tda8261 +tda826x +tda827x +tda8290 +tda9840 +tda9887 +tdo24m +tea +tea5761 +tea5767 +tea6415c +tea6420 +tef6862 +tekram-sir +test-kprobes +test-kstrtox +test_power +tgr192 +thmc50 +ths7303 +ti_dac7512 +ti_hecc +timb_dma +timblogiw +timbuart +timeriomem-rng +tipc +ti_usb_3410_5052 +tlv320aic23b +tm6000 +tm6000-alsa +tm6000-dvb +tmdc +tmiofb +tmio_mmc +tmio_mmc_core +tmio_nand +tmp102 +tmp401 +tmp421 +toim3232-sir +touchit213 +touchright +touchwin +tps6105x +tps6105x-regulator +tps65010 +tps65023-regulator +tps6507x +tps6507x-regulator +tps6507x-ts +tps6524x-regulator +tps6586x-regulator +tps65910-regulator +tps65912-regulator +trancevibrator +tranzport +ts_bm +tsc2005 +tsc2007 +tsc40 +ts_fsm +ts_kmp +tsl2550 +tsl2563 +tsl2583 +ttpci-eeprom +tua6100 +tuner +tuner-simple +tuner-types +tuner-xc2028 +tunnel4 +tunnel6 +turbografx +tvaudio +tveeprom +tvp514x +tvp5150 +tvp7002 +tw9910 +twidjoy +twl4030_charger +twl4030_keypad +twl4030-madc +twl4030-madc-hwmon +twl4030-pwrbutton +twl4030-vibra +twl4030_wdt +twl6030-pwm +twl6030-usb +twl6040-vibra +twofish_common +twofish_generic +u132-hcd +uas +ub +ubi +ubifs +ucb1400_core +ucb1400_ts +udf +udlfb +ueagle-atm +ufs +uio +uio_pdrv +uio_pdrv_genirq +ums-alauda +ums-cypress +ums-datafab +ums-eneub6250 +ums-freecom +ums-isd200 +ums-jumpshot +ums-karma +ums-onetouch +ums-realtek +ums-sddr09 +ums-sddr55 +ums-usbat +upd64031a +upd64083 +usb8xxx +usbatm +usb_debug +usb_gigaset +usbhid +usbip-core +usbip-host +usbkbd +usblcd +usbled +usblp +usbmon +usbmouse +usbnet +usbserial +usbsevseg +usb-storage +usbtest +usbtmc +usbtouchscreen +usbvision +usb_wwan +userspace-consumer +ushc +uss720 +uvcvideo +uvesafb +uwb +v4l2-common +v4l2-int-device +v4l2-mem2mem +vcan +ves1820 +ves1x93 +veth +vgg2432a4 +vhci-hcd +videobuf2-core +videobuf2-dma-contig +videobuf2-memops +videobuf2-vmalloc +videobuf-core +videobuf-dma-contig +videobuf-dvb +videobuf-vmalloc +videodev +virtual +visor +vivi +vivopay-serial +vmac +vp27smpx +vpfe_capture +vpss +vpx3220 +vsxxxaa +vt1211 +vub300 +w1_bq27000 +w1_ds2408 +w1_ds2423 +w1_ds2431 +w1_ds2433 +w1_ds2760 +w1_ds2780 +w1-gpio +w1_smem +w1_therm +w35und +w83627ehf +w83627hf +w83781d +w83791d +w83792d +w83793 +w83795 +w83l785ts +w83l786ng +w90p910_ts +w9966 +wacom +wacom_w8001 +walkera0701 +wanrouter +warrior +whiteheat +wimax +wire +wl1251 +wl1251_sdio +wl1251_spi +wl1273-core +wl12xx +wl12xx_sdio +wl12xx_spi +wm831x_backup +wm831x_bl +wm831x-dcdc +wm831x-hwmon +wm831x-isink +wm831x-ldo +wm831x-on +wm831x_power +wm831x-ts +wm831x_wdt +wm8350-hwmon +wm8350_power +wm8350-regulator +wm8400-core +wm8400-regulator +wm8739 +wm8775 +wm8994-regulator +wm97xx-ts +wp512 +wusb-cbaf +wusbcore +wusb-wa +x25 +xc4000 +xc5000 +xcbc +xfrm4_mode_beet +xfrm4_mode_transport +xfrm4_mode_tunnel +xfrm4_tunnel +xfrm6_mode_beet +xfrm6_mode_ro +xfrm6_mode_transport +xfrm6_mode_tunnel +xfrm6_tunnel +xfrm_ipcomp +xfrm_user +xfs +xilinx_uartps +xor +xpad +x_tables +xt_addrtype +xt_AUDIT +xt_CHECKSUM +xt_CLASSIFY +xt_cluster +xt_comment +xt_connbytes +xt_connlimit +xt_connmark +xt_CONNSECMARK +xt_conntrack +xt_cpu +xt_CT +xt_dccp +xt_devgroup +xt_dscp +xt_DSCP +xt_esp +xt_hashlimit +xt_helper +xt_hl +xt_HL +xt_IDLETIMER +xt_iprange +xt_ipvs +xtkbd +xt_LED +xt_length +xt_limit +xt_mac +xt_mark +xt_multiport +xt_NFLOG +xt_NFQUEUE +xt_NOTRACK +xt_osf +xt_owner +xt_physdev +xt_pkttype +xt_policy +xt_quota +xt_rateest +xt_RATEEST +xt_realm +xt_recent +xts +xt_sctp +xt_SECMARK +xt_set +xt_socket +xt_state +xt_statistic +xt_string +xt_tcpmss +xt_TCPMSS +xt_TCPOPTSTRIP +xt_tcpudp +xt_TEE +xt_time +xt_TPROXY +xt_TRACE +xt_u32 +xusbatm +xz_dec_test +yam +yealink +yurex +zaurus +zcache +zd1201 +zd1211rw +zhenhua +zio +zl10036 +zl10039 +zl10353 +zlib +zlib_deflate +zr364xx +zram --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/armel/omap +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/armel/omap @@ -0,0 +1,9719 @@ +EXPORT_SYMBOL arch/arm/plat-omap/mailbox 0x0e6c4531 omap_mbox_get +EXPORT_SYMBOL arch/arm/plat-omap/mailbox 0x154a75b0 omap_mbox_msg_send +EXPORT_SYMBOL arch/arm/plat-omap/mailbox 0x4c9ab456 omap_mbox_register +EXPORT_SYMBOL arch/arm/plat-omap/mailbox 0xbce67e37 omap_mbox_put +EXPORT_SYMBOL arch/arm/plat-omap/mailbox 0xdbc75fe3 omap_mbox_unregister +EXPORT_SYMBOL crypto/gf128mul 0x0c2f123f gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x1068004b gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x2f2889a0 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x3755f990 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x384ef9ce gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x56af0dbd gf128mul_x_ble +EXPORT_SYMBOL crypto/gf128mul 0x83581089 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x9b2560b9 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x9e13f6f6 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0xbd17a0df gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0xc0890413 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0xd60736ec gf128mul_free_64k +EXPORT_SYMBOL crypto/xor 0x5b6c00e6 xor_blocks +EXPORT_SYMBOL drivers/bcma/bcma 0x6df2d63d bcma_core_dma_translation +EXPORT_SYMBOL drivers/block/drbd/drbd 0x35131b36 drbd_role_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x5c165453 drbd_set_st_err_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0x7730f22d drbd_conn_str +EXPORT_SYMBOL drivers/block/drbd/drbd 0xaf27bebf drbd_disk_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x16dcec76 ipmi_set_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1a10c898 ipmi_set_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1aba5db8 ipmi_unregister_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x40f2b10c ipmi_alloc_smi_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x423b776a ipmi_create_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4a7b27cf ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x4c971bec ipmi_smi_msg_received +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x524f6f51 ipmi_get_my_address +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5e80f37c ipmi_unregister_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x5fcdcc05 ipmi_get_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x804f922a ipmi_addr_length +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c659cac ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x9555c7cb ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x96cbcc81 ipmi_get_version +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa28a2ace ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa32de92d ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0fa83f2 ipmi_register_for_cmd +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4f4665b ipmi_validate_addr +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe6ab72a6 ipmi_set_my_LUN +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xed2ad4a6 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/nvram 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x17ff2c1d __nvram_read_byte +EXPORT_SYMBOL drivers/char/nvram 0x2adec1e0 __nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x7da28f12 nvram_check_checksum +EXPORT_SYMBOL drivers/char/nvram 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL drivers/char/nvram 0xa8813189 __nvram_write_byte +EXPORT_SYMBOL drivers/dma/dw_dmac 0x0db6d1f3 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw_dmac 0x295918f5 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw_dmac 0x489fbb29 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw_dmac 0x64af6276 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw_dmac 0x95f9231f dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw_dmac 0xa2022d7d dw_dma_get_src_addr +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00826c72 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02c08883 drm_mode_detachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e9df3f drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a3af60 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04bb1800 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06cc544c drm_mode_create_dithering_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08e15c30 drm_mm_insert_node_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0bd0e418 drm_mm_get_block_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f199466 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f8dc681 drm_mm_scan_remove_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fccafb1 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11073671 drm_mm_search_free_in_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12c6276a drm_buffer_read_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e7dfdf drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12e89332 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x133e10fe drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13a3b414 drm_mm_init_scan_with_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13e8ddfa drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x142b8b35 drm_buffer_copy_from_user +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f072c59 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x215b5678 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21c08dad drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24b8c7c7 drm_core_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x288cee33 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f6368e drm_fasync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x299626b6 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b4d03e4 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bde1a48 drm_get_connector_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d807df8 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f21db1a drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30675976 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3074f033 drm_order +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31389d0a drm_mm_get_block_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e154ba drm_sman_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3afcd6a3 drm_platform_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b8e0f4d drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ee76e27 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f1c5baa drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fad7cf2 drm_sysfs_connector_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fcb9723 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43384bd9 drm_buffer_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c9a91c drm_sman_set_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4679a299 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x470e704e drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f156bd drm_core_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x481f7a1c drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48f8631e drm_usb_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4945a3ca drm_mm_search_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x498dcb5e drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b2aa04f drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d7468e7 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d85b8e6 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4daa579d drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f5de301 drm_mm_put_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5165455b drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53152180 drm_usb_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53390c08 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x553fef00 drm_connector_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x575cd9b8 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57673884 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580830f0 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x593cde51 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f6cbc33 drm_find_cea_extension +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62ffeb2a drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64439bfc drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x650c0d04 drm_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x652251a4 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65e3c282 drm_core_reclaim_buffers +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6d7375 drm_timestamp_precision +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d23dcbb drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dafac3f drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e52c9c4 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7211daf0 drm_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x729ee523 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72df123c drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x733105fb drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7430f73a drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74748e20 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7496b437 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75e73c90 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79cd5664 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1fd6c8 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d25c83d drm_connector_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4cfa5d drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x854a2b35 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85de09f5 drm_mode_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e9fe78 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x885b4fa9 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a41328e drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfb019d drm_buffer_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x901ca111 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92f2d102 drm_sman_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x932df43d drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94d691e4 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94f80adb drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95132a14 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95b685e2 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96944579 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9745d638 drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x990b27e6 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b104d0f drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c6bbbbd drm_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc25a34 drm_sman_owner_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0bf13f7 drm_get_encoder_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1eabd87 drm_mode_list_concat +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa237e931 drm_sman_set_manager +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4edb20a drm_mm_pre_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a09d50 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6b0550f drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7179c31 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7dda82b drm_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7e5dd11 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9ad0e11 drm_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9bfc80a drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab366949 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacbe2969 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xace200bd drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1875cfd drm_mode_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5ad5daa drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a467b1 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9b31e6b drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc4a51ea drm_mode_connector_detach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc78f201 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd39b273 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe714b0d drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3086946 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc414c422 drm_vblank_offdelay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9534a85 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca42ff83 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca7af23e drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb6e44cc drm_get_last_vbltimestamp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0bcfe4 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf2eff4 drm_mode_height +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd08fa3f0 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0baf166 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1e266c6 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2721d6d drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f1ab84 drm_sman_owner_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd80c8165 drm_connector_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd88db039 drm_mm_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd923c659 drm_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbad1279 drm_mode_validate_clocks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd6e4ffa drm_get_platform_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0f3455e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe256edfd drm_sman_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3553657 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe532ac34 drm_mm_insert_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5bdce7e drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6f42529 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe998a636 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea041924 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeac21077 drm_core_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeccc9f7d drm_detect_hdmi_monitor +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed256cae drm_sman_free_key +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda8bb86 drm_mode_attachmode_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee531694 drm_sysfs_connector_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeede83d2 drm_gem_object_handle_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef952dbc drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a0bf79 drm_sman_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1a3c9e0 drm_gem_object_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf33fecc5 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf49a82ca drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf69fabdf drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6babeb8 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8bd4687 drm_get_usb_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8c41e47 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8db0c61 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8fc5403 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf988b19e drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc2b95b5 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc4f8599 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff7ec5ef drm_global_mutex +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0x0903c239 vid_from_reg +EXPORT_SYMBOL drivers/hwmon/hwmon-vid 0xef1c781c vid_which_vrm +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0e2a6864 sch56xx_read_virtual_reg +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0x0f5877d4 sch56xx_read_virtual_reg16 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xe5022f95 sch56xx_read_virtual_reg12 +EXPORT_SYMBOL drivers/hwmon/sch56xx-common 0xed1d2a08 sch56xx_write_virtual_reg +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xd10678fa i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xe7110b5e i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x44391fed i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x8005286b i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pcf 0x4a955778 i2c_pcf_add_bus +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0879b097 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1b5d6645 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1c406782 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x51c692d6 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5b3c3fe1 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6545a391 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x92ec8d93 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xcdd938c8 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xeb8d59a3 gameport_set_phys +EXPORT_SYMBOL drivers/input/input-polldev 0x04b13a6e input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x0d3d08a7 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x6e375c7b input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xa35fc6db input_unregister_polled_device +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3713029a ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x5c815835 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xac95b7f4 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf4ab68fa ad714x_remove +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x4bffada6 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x892d76b2 cma3000_resume +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x89d9444e cma3000_exit +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1f7cbd5c sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9a8c4481 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9bf699c6 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc732c198 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xdac026c0 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe1ff6c87 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4b7f7c7a ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xbc9dc160 ad7879_suspend +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf3bd1692 ad7879_resume +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x207a2ac8 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b45b47b capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2baa6586 capilib_new_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2cba2e64 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x393b3331 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x438544b4 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x47d3fc51 capi_info2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6057c6f3 capi_message2cmsg +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71e8d5ba capilib_data_b3_req +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7a33596c capi20_get_serial +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa5f7116e capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa6e66681 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7c4fd6c capi_message2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaca82440 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd8f40d15 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xeca5b5cb capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xed061606 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x148f0c99 FsmFree +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x7f29ce36 FsmInitTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x88bf70a5 hisax_init_pcmcia +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x93a64734 FsmChangeState +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x9df0cd27 FsmEvent +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xe227344e FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xee93522c hisax_register +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xf0a16657 FsmNew +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xfc27303b HiSax_closecard +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0xff2db2cf FsmDelTimer +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x124a56c2 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x428745a4 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x91d2986a register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x3b71e4fc isdnhdlc_decode +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x59cc8a7e isdnhdlc_out_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0x8ee38862 isdnhdlc_rcv_init +EXPORT_SYMBOL drivers/isdn/i4l/isdnhdlc 0xfd9d4c09 isdnhdlc_encode +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1bcda37d mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1c73558c mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x288aaa6b recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x31ccddee recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x32183119 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x32b5bb93 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x54451388 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5dc7400a mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x614ede30 mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x68983bb6 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x848f23e6 confirm_Bsend +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8cd17c33 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96309324 mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96b7352c mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x97d83521 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb81a3b39 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc4bda17a mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xca274699 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcf57640a recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcf94b836 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd210e7af mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd74ffca0 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe2ce3d40 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe70d0c84 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe7f2ac6d dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe87943cf mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x01087af0 mISDN_dsp_element_unregister +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0x60721da7 dsp_audio_law_to_s32 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xa215f1b2 dsp_audio_s16_to_law +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_dsp 0xb98308d8 mISDN_dsp_element_register +EXPORT_SYMBOL drivers/md/dm-log 0x305a66f0 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xc21db45a dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xc418430a dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xcefcef9d dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x040a0a31 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1ffbdcc4 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xabe97290 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd26a9721 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd9e5e680 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf6825127 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0x6aac0ac7 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/tuners/max2165 0xbc94a641 max2165_attach +EXPORT_SYMBOL drivers/media/common/tuners/mc44s803 0x132f43d6 mc44s803_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2060 0xbf56abb7 mt2060_attach +EXPORT_SYMBOL drivers/media/common/tuners/mt2266 0xe9749672 mt2266_attach +EXPORT_SYMBOL drivers/media/common/tuners/mxl5005s 0xb617c28a mxl5005s_attach +EXPORT_SYMBOL drivers/media/common/tuners/qt1010 0x15d1b3f2 qt1010_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18212 0x54438870 tda18212_attach +EXPORT_SYMBOL drivers/media/common/tuners/tda18218 0x0f54292e tda18218_attach +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0x0cb4b189 tuners +EXPORT_SYMBOL drivers/media/common/tuners/tuner-types 0xc2821775 tuner_count +EXPORT_SYMBOL drivers/media/common/tuners/tuner-xc2028 0xcbddddfc xc2028_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc4000 0x45a69305 xc4000_attach +EXPORT_SYMBOL drivers/media/common/tuners/xc5000 0x4d174513 xc5000_attach +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x13b12dd9 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x19c77265 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x2a2b3159 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x429c0690 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x7b69db3a flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x8966fa51 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x99aa1166 flexcop_device_exit +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x9e0b9b7c flexcop_device_initialize +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0x9fec1854 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xac09bcdd flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xc13f9882 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xde336900 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/dvb/b2c2/b2c2-flexcop 0xfe144d6c flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x00aa2378 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x07b6a762 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x0c4d4a14 dvb_frontend_sleep_until +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x192dbd13 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x202ad94d dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x260fc2c9 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x2f110e87 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x31e93eb1 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x3239fa9f dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6225816a dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x687066ad dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x6ac76775 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7431ad2b dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x746b02ad dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x78b253d1 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x7dfb567e dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x83a2ef94 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x857b93e7 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x86d9f791 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x87289101 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x87b161ca dvb_net_release +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x883c17c6 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x8c086b54 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x90b3c91f dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x97248e30 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0x9d77023b dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xa0d7d969 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xbc0d91e1 timeval_usec_diff +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc1fc18ad dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xc3f50f32 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xe9eb6e01 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xed9e5ee7 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf2e4ff61 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf487376d dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf585d222 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xf826deb0 dvb_filter_pes2ts +EXPORT_SYMBOL drivers/media/dvb/dvb-core/dvb-core 0xfb25f454 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x04988e4b dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x382b365f dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x38b331dc dvb_usb_device_init +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x7e4ce713 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0x94a7950a dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xc7142080 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb 0xe95d9887 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x13e247e0 rc_map_af9005_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0x92eb1758 af9005_rc_decode +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-af9005-remote 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x04bd82fe dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x0a227715 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x89c5dc5a dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x94a490f0 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0x94ec80b5 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xa9d52fe2 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xb47559e0 rc_map_dibusb_table +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xd5d4d768 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xe5564cdd dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xf52eaf3d dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xf95c6b8e dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/dvb/dvb-usb/dvb-usb-dibusb-common 0xffcab9c5 dibusb_rc_query +EXPORT_SYMBOL drivers/media/dvb/frontends/a8293 0x1538e1c0 a8293_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/af9013 0xe39b8a41 af9013_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/atbm8830 0x691d3626 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/au8522 0x34cd0037 au8522_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/bcm3510 0xa1455f19 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22700 0x4dbf054d cx22700_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx22702 0x2980567a cx22702_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24110 0x021068d3 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0x0198d3a9 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24113 0xa965fec3 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24116 0xe36012e4 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0xe694f65b cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/cx24123 0xfd00ed95 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/cxd2820r 0x980dac59 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x091158e0 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x0d7734ea dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x5741e0ec dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0x84846d97 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0070 0xe0e6e500 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x027a7be9 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x0ef56519 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x2f81b365 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x46d382e8 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x661488b7 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x8bff32a5 dib0090_register +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0x94e6f686 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xa7c08ab8 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib0090 0xbb8ca701 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mb 0xda050ad0 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x08f96687 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x3b2e8479 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0x7a366a8b dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xa795f440 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xeeaea3ac dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib3000mc 0xfe14c207 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x085c3586 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0x476ab928 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xc5f53e20 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000m 0xc6bce550 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x0cefac26 dib7000p_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x2ea6a831 dib7090_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x3df37e1b dib7090_tuner_sleep +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x47df2e8b dib7000p_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x7e3648c7 dib7090_get_i2c_tuner +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x99678e61 dib7090_agc_restart +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0x9aceaa68 dib7090_slave_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xa7f95c3a dib7000p_update_pll +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xab58c7a7 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xb3fc9b7d dib7000p_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xdc5e8ec1 dib7000pc_detection +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xdf911b21 dib7000p_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xe8ed9336 dib7000p_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xee7886ae dib7000p_ctrl_timf +EXPORT_SYMBOL drivers/media/dvb/frontends/dib7000p 0xfbce1fbb dib7000p_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x2ca42541 dib8000_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x405afdea dib8000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x47b950ea dib8000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x5a1fefca dib8000_set_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x70eb9df3 dib8000_set_wbd_ref +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x846ebc24 dib8000_get_tune_state +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x8d9e1910 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0x95e32f2d dib8000_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb09aa5d9 dib8000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb1fa93d4 dib8000_remove_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xb2043672 dib8000_get_adc_power +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xc1ba03ce dib8000_pwm_agc_reset +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xda479f39 dib8000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib8000 0xf7f50572 dib8000_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0x24a1853e dib9000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0x5a2c433d dib9000_get_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0x8e84820f dib9000_get_tuner_interface +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0x91d8879d dib9000_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xacb7ce62 dib9000_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xb4ff9fc2 dib9000_fw_pid_filter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xbc85db6e dib9000_remove_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xbd5d824e dib9000_set_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xc9360892 dib9000_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xc969288c dib9000_fw_set_component_bus_speed +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xda78a87e dib9000_fw_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xe683f52d dib9000_firmware_post_pll_init +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xfb60990a dib9000_get_component_bus_interface +EXPORT_SYMBOL drivers/media/dvb/frontends/dib9000 0xffea89f2 dib9000_set_slave_frontend +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x7a0d7ba7 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x7beb46c9 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0x8b946eab dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xe11b27a2 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/dibx000_common 0xed0ab737 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x3b9f6ae5 drxd_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/drxd 0x61a203e4 drxd_config_i2c +EXPORT_SYMBOL drivers/media/dvb/frontends/drxk 0xa0ea25b1 drxk_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ds3000 0x2b1a7933 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/dvb-pll 0xafabca1a dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ec100 0x23b5947c ec100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6405 0x007a52ec isl6405_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6421 0xf6c7262e isl6421_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/isl6423 0x0d08fbd2 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/it913x-fe 0x3bf00f7c it913x_fe_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/itd1000 0x776f0f84 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ix2505v 0x3e2c2b34 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/l64781 0x8263f895 l64781_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt3305 0x11270de1 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgdt330x 0x98ee8331 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgs8gl5 0x6d659651 lgs8gl5_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lgs8gxx 0x8c7789e7 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0x94ceab48 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp21 0xa15a6c0f lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/lnbp22 0x18dc1d07 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a16 0x5a94370d mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mb86a20s 0x8be82921 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt312 0x00574e82 mt312_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/mt352 0x75a35d84 mt352_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt200x 0x52bb041a nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/nxt6000 0x98a529cc nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51132 0xcefc818f or51132_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/or51211 0x6cccc30b or51211_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1409 0x3e01748c s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1411 0x474490d4 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0x45858a42 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1420 0xc0f182e9 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s5h1432 0xd58cfe05 s5h1432_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/s921 0x7463932a s921_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/si21xx 0x0b7557c2 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp8870 0xd7f5d0c0 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/sp887x 0x70557975 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb0899 0xe3030f29 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6000 0xa122b4dd stb6000_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stb6100 0x8ac5dc04 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0288 0xa8cef836 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0297 0x0e8f630a stv0297_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0299 0x34cadc74 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0x37060378 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0367 0xadcc9b57 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv0900 0xca7aee27 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0x1dbafd52 stv090x_set_gpio +EXPORT_SYMBOL drivers/media/dvb/frontends/stv090x 0xfc102e6d stv090x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110 0x8efc0ece stv6110_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/stv6110x 0xe68e5eed stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10021 0xd2e010d0 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10023 0xda1e7695 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10048 0x62a01447 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x3a0e3248 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda1004x 0x5a377bc7 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10071 0xe5bfdc59 tda10071_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda10086 0xba11e681 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda665x 0x749cb878 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8083 0xc247b809 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda8261 0x03bbe584 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tda826x 0x0be40a78 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/tua6100 0xe9eea518 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1820 0xf2112ebe ves1820_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/ves1x93 0xc46bd07a ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10036 0x3d90f63e zl10036_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10039 0x845edc88 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb/frontends/zl10353 0x15f6d520 zl10353_attach +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/dvb/ttpci/ttpci-eeprom 0xc537cba5 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x086ee1c1 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5942b1a8 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x71341317 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9a2752b8 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa31c3780 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb828e3b4 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbc6eea9a lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xcfc53b37 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x07d58544 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x402cf205 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0x58f34039 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/cx231xx/cx231xx 0xeb3dcd65 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/video/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/video/cx2341x 0x2f25eee2 cx2341x_update +EXPORT_SYMBOL drivers/media/video/cx2341x 0x59bdeb70 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5a7bdc98 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/video/cx2341x 0x5b88faf6 cx2341x_ext_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0x676ed443 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/video/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf76ce95 cx2341x_fill_defaults +EXPORT_SYMBOL drivers/media/video/cx2341x 0xcf8b77a4 cx2341x_mpeg_ctrls +EXPORT_SYMBOL drivers/media/video/cx2341x 0xda6c62f8 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/video/cx2341x 0xe821436e cx2341x_handler_init +EXPORT_SYMBOL drivers/media/video/davinci/vpfe_capture 0x18e2ddfc vpfe_register_ccdc_device +EXPORT_SYMBOL drivers/media/video/davinci/vpfe_capture 0xdf2c4199 vpfe_unregister_ccdc_device +EXPORT_SYMBOL drivers/media/video/davinci/vpss 0x088ccec9 vpss_select_ccdc_source +EXPORT_SYMBOL drivers/media/video/davinci/vpss 0x319709a6 vpss_clear_wbl_overflow +EXPORT_SYMBOL drivers/media/video/davinci/vpss 0x54146824 dm365_vpss_set_sync_pol +EXPORT_SYMBOL drivers/media/video/davinci/vpss 0x6e5b5413 vpss_enable_clock +EXPORT_SYMBOL drivers/media/video/davinci/vpss 0x749bf2c9 dm365_vpss_set_pg_frame_size +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0x057f95b5 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/video/em28xx/em28xx 0x88d4364b em28xx_register_extension +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x03ad1ce3 gspca_dev_probe +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x11859b73 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x1c2615be gspca_suspend +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x64279000 gspca_auto_gain_n_exposure +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0x9b6d408f gspca_resume +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xd654b32d gspca_frame_add +EXPORT_SYMBOL drivers/media/video/gspca/gspca_main 0xf88b3f72 gspca_disconnect +EXPORT_SYMBOL drivers/media/video/soc_camera 0x3167fd41 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/video/soc_camera 0x74b76625 soc_camera_lock +EXPORT_SYMBOL drivers/media/video/soc_camera 0x95536ce2 soc_camera_host_register +EXPORT_SYMBOL drivers/media/video/soc_camera 0x962efe00 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/video/soc_camera 0xd8b8f593 soc_camera_unlock +EXPORT_SYMBOL drivers/media/video/soc_camera 0xe80e568f soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x433952ab soc_mbus_find_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x6951757b soc_mbus_samples_per_pixel +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0x85d52182 soc_mbus_get_fmtdesc +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xc8b28da5 soc_mbus_config_compatible +EXPORT_SYMBOL drivers/media/video/soc_mediabus 0xcb4b96ae soc_mbus_bytes_per_line +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x1f54eb08 tm6000_register_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x2ae6f3b4 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/video/tm6000/tm6000 0x4c9ce8e3 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/video/tveeprom 0x6400fe7f tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/video/tveeprom 0xbdca8e56 tveeprom_read +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x229b1b79 v4l2_chip_ident_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x42c8e001 v4l2_ctrl_next +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x4ed5e0d7 v4l2_chip_match_host +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x50766d69 v4l2_ctrl_query_menu_valid_items +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x5d5b1111 v4l2_chip_match_i2c_client +EXPORT_SYMBOL drivers/media/video/v4l2-common 0x791ab099 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xc0699aac v4l2_ctrl_check +EXPORT_SYMBOL drivers/media/video/v4l2-common 0xf052e6db v4l2_ctrl_query_menu +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x23de77db v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0x58fe1d7a v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/video/v4l2-mem2mem 0xc8562f6b v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x22fe49b5 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x3788c692 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x53a15e76 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x6b4acbbf videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0x87fb4bf0 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/video/videobuf-dvb 0xf13288fd videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/video/videobuf2-core 0x6618078a vb2_querybuf +EXPORT_SYMBOL drivers/media/video/videodev 0x02360ca7 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/video/videodev 0x045603df v4l2_ctrl_del_event +EXPORT_SYMBOL drivers/media/video/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/video/videodev 0x0f8020d8 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/video/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/video/videodev 0x186b9ea6 video_usercopy +EXPORT_SYMBOL drivers/media/video/videodev 0x1d49ad8d v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/video/videodev 0x269673f3 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x2711e6fe v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/video/videodev 0x2ead73ed video_unregister_device +EXPORT_SYMBOL drivers/media/video/videodev 0x2ebb2498 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x2f36a770 v4l2_ctrl_add_event +EXPORT_SYMBOL drivers/media/video/videodev 0x2fa89104 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x3592362d v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/video/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/video/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/video/videodev 0x3f4e25ea v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/video/videodev 0x3fb16bc4 v4l2_ctrl_handler_init +EXPORT_SYMBOL drivers/media/video/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/video/videodev 0x5ebefe4b v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/video/videodev 0x6451f31f video_device_release +EXPORT_SYMBOL drivers/media/video/videodev 0x69e84655 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/video/videodev 0x6af1e16b v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x6ea25dd3 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0x75ae8edb v4l2_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0x7771e92f v4l2_subdev_init +EXPORT_SYMBOL drivers/media/video/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/video/videodev 0x7df3d048 v4l2_querymenu +EXPORT_SYMBOL drivers/media/video/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/video/videodev 0x8ead415f video_device_release_empty +EXPORT_SYMBOL drivers/media/video/videodev 0x90c3d6c8 video_devdata +EXPORT_SYMBOL drivers/media/video/videodev 0x94ae6b07 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xa2c7f163 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xad95ef8b v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/video/videodev 0xae8d826b v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/video/videodev 0xb58e79eb v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xb5c42b86 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/video/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/video/videodev 0xc46a8e4d video_device_alloc +EXPORT_SYMBOL drivers/media/video/videodev 0xc5f595b2 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/video/videodev 0xd2bc601f video_ioctl2 +EXPORT_SYMBOL drivers/media/video/videodev 0xdbfd8b6c v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/video/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/video/videodev 0xe3719f5c v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/video/videodev 0xe7cac722 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/video/videodev 0xe880200f v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xe921321f v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xe97910f2 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/video/videodev 0xea42716f __video_register_device +EXPORT_SYMBOL drivers/media/video/videodev 0xed0809f3 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xedbfdbf0 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/video/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/video/videodev 0xf9bede3b v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/memstick/core/memstick 0x04933afc memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1207cc02 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x184e9a80 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1b7c50bd memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x424c8f67 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6bad9301 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x740d2b3d memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7d17fd42 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa75f8b55 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc0f32693 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc4b1376c memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd27aa58a memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc2853f9 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xf0413f3b memstick_alloc_host +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3b872bd5 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x419837d8 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0a0f0fa1 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x19f1f7a8 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x304d2b09 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x648f3e82 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c8289a3 mc13xxx_irq_request_nounmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x81e0f888 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x908760bc mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9bc42b70 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa83c26ee mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad06449f mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xb3dae053 mc13xxx_irq_ack +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc60a9247 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfdc5799c mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/tps6105x 0x2c218089 tps6105x_get +EXPORT_SYMBOL drivers/mfd/tps6105x 0x86fc6d4b tps6105x_mask_and_set +EXPORT_SYMBOL drivers/mfd/tps6105x 0xfcce794f tps6105x_set +EXPORT_SYMBOL drivers/mfd/tps65010 0x02d4ad0f tps65013_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0x0c6ad2cf tps65010_config_vdcdc2 +EXPORT_SYMBOL drivers/mfd/tps65010 0x28485130 tps65010_config_vregs1 +EXPORT_SYMBOL drivers/mfd/tps65010 0x33739de7 tps65010_set_vib +EXPORT_SYMBOL drivers/mfd/tps65010 0x9fd44c69 tps65010_set_led +EXPORT_SYMBOL drivers/mfd/tps65010 0xb14080cc tps65010_set_low_pwr +EXPORT_SYMBOL drivers/mfd/tps65010 0xd5bb106d tps65010_set_vbus_draw +EXPORT_SYMBOL drivers/mfd/tps65010 0xe99b3f36 tps65010_set_gpio_out_value +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0x015ee601 pwm_free +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xa4ee3c79 pwm_disable +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xaee34e3d pwm_request +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xd83c7949 pwm_enable +EXPORT_SYMBOL drivers/mfd/twl6030-pwm 0xdeebfb06 pwm_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x5dd92b9c ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xae22afc6 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x51ea2fb0 altera_init +EXPORT_SYMBOL drivers/misc/atmel_pwm 0x0e9755b9 pwm_channel_free +EXPORT_SYMBOL drivers/misc/atmel_pwm 0x5a8b82f9 pwm_channel_handler +EXPORT_SYMBOL drivers/misc/atmel_pwm 0x5d5c2951 pwm_clk_free +EXPORT_SYMBOL drivers/misc/atmel_pwm 0x6a5e1f70 pwm_channel_alloc +EXPORT_SYMBOL drivers/misc/atmel_pwm 0x73330c97 pwm_clk_alloc +EXPORT_SYMBOL drivers/misc/atmel_pwm 0xeb7f2c6f __pwm_channel_onoff +EXPORT_SYMBOL drivers/misc/c2port/core 0x36dc5248 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x75124ad8 c2port_device_register +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x45241859 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xf9d79c9a mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x173ea2f5 tmio_mmc_host_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x1bcee3af tmio_mmc_host_probe +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x51cdcd6e tmio_mmc_host_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x69b59605 tmio_mmc_host_remove +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x6d3deee9 tmio_mmc_sdcard_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x7a6fd700 tmio_mmc_sdio_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xd23a7a98 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xef2e1ed6 tmio_mmc_host_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0b7e9d07 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x39d08a1c cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd831a82a cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x11fa36b4 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xaba1e168 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x5a52e275 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x97f4d88e onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xb6fe47a8 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xecad3f26 flexonenand_region +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2cbfb459 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3da50fc1 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x91f9c3a7 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa5802bc8 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xddd7ad2b hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x119044c7 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x289f22f2 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6628ff43 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x6e8ad5e4 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x747147f0 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7a0a1f4e sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa5b57378 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc6db9ac7 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd4c1f726 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xeb0f3fcd sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x07e46eb9 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xd4877ddd alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/ppp/pppox 0x19717993 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xf7893567 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfa26f7e2 register_pppox_proto +EXPORT_SYMBOL drivers/net/wan/hdlc 0x012dd33f attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x137248a5 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1a4dbe84 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x36587a92 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3ad14c10 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x56e98105 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb80ea486 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb8ab73b3 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbfa35b5c hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xccafc512 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcd766e65 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1e7933a7 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4e2481d5 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4f876b2c ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x80c4f3fd ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x900d9db9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1a9f65b ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xab625bf0 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaec11b23 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb731d4a9 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc1cad2b4 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe0f1186c ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xebbf985a ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x037407ac ath9k_cmn_get_curchannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x05e80af5 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x40d3a2e4 ath9k_cmn_update_ichannel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba91aafc ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xefcbb4a8 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf59eadf3 ath9k_cmn_padpos +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x055252df ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a697f31 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a9b0dae ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10c36537 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x132061c7 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1676689a ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17fd6e2b ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x195c905d ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2766222b ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29189064 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29766663 ath9k_hw_proc_mib_event +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35d7fda3 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x387b0adf ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3aa91615 ath9k_hw_getdefantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4048b1fd ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x408ac235 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41601119 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44919ab3 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4516df69 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x458d962f ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46c42b5d ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b36ab18 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bc61696 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ef68ef3 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x538464ad ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b8e976e ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c8ff89e ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5cb75468 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d4c9f47 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6436302a ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66283d8a ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x669637c7 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x699893a1 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e8aeeb0 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70ea37ab ath9k_hw_gettxintrtxqs +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7154d2ba ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x716bb3c5 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7765e4d5 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8361d395 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86a95c27 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86fde9a0 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e65daa1 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91758c06 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95c9c66e ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97971873 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97c4f3d6 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x97d29d51 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98705f61 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x994713bc ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99505f84 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99eeb00c ath9k_hw_htc_resetinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b32f412 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b7b8881 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d13fc6a ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3512f12 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5b46764 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa66b8008 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9177b11 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaac14beb ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaaef7b02 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab422f95 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad972154 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae5c82e0 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaffd6cfa ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb179ad7c ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb70eb251 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd5752ae ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4943149 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7cb07b1 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce5e792d ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcea4c46b ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd17694a0 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2b9256b ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd57c1ab8 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd693b0e4 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6e3989f ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7377292 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdccc7f9a ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdea5c8c4 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0df3461 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe1d5474a ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8e33e4f ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebab1f40 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee54dc8a ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeedad9b5 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0ce5059 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3e360b9 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd5de81 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0x7d960f3b brcmf_sdio_remove +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmfmac/brcmfmac 0xee51b32f brcmf_sdio_probe +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1b29e03d brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x36fbe133 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x43199dfd brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5dc9bd95 brcmu_pktfrombuf +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x60d092ad brcmu_pkttotlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x69476b40 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6c261652 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6e484587 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x80a7c52e brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8824c2a9 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x89b61ac7 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x99aee3bb brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xea492d34 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf0523186 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0f913e13 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x127f0da2 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1902150a hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1af4aca5 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2b41f913 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2e93ed3b hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x562e8121 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6f777fb8 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x75e1a1ce hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7903225e hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x808b332b hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8d42c5ab hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9a82ecef hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xac8847ee hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb154dede hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb31ce3ca hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc37c4a65 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc79fb179 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc9a20e6b prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd38edefa hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd7b4e147 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdb5ea73c hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe707f261 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xebd1a956 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xec5b4e76 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x0425bc26 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x0c74bc84 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x17a4a79f rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x1a972237 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x249f1338 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x28f1e150 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x29b16930 rtl92c_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2e343129 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x2e62f281 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3193d12c rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x3384e71b rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x46302659 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x5e652937 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6033f3c9 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x64e9facb rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x669feb31 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x6732445e rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x73bd5aa2 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x79247493 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x7cd26487 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x90f6a4c7 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x91d62f5c rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x96dab460 _rtl92c_phy_dbm_to_txpwr_Idx +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0x9960da3f _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa1e703be rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa3c0fa3f rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xa63dd06e rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xae80f139 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb1b42a9c rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb3314d48 _rtl92c_phy_calculate_bit_shift +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xb7e55749 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xba6830cc rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xbce71d36 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xc6978236 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xcb056237 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xd76439d1 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xda8f0710 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe1a1eca6 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xe3679332 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xed14b14d _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xf1a69340 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xfcbb9299 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtl8192c/rtl8192c-common 0xfeb52bfc _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x0c55f3f8 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2724cac8 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x2b7aa5b8 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x316a27ad rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x33877fd4 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x351d28b9 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x4094ac94 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x47a15171 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x4d92b6c6 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x592682de rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x7682339b rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x7ba7d79b rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x897c8597 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x91f72117 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0x93a62067 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xab3a2b2d rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xb72b2870 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/rtlwifi/rtlwifi 0xfdc7caa2 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/parport/parport 0x03e1ff15 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x0f2f80cc parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x2286470d parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x23df8513 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x29d99d60 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x3ddda8ca parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x3e3dc1b7 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x457fad27 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x556d8a78 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x66716902 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x7de439fd parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x7fa7b056 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x8d5917c0 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8ddfcd6e parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x8e9b6a79 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x8fbdb9a3 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x907fcb23 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x94831a84 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x9d254884 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xb1fbc810 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xc037a28a parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xc3de8a5d parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xc85107b3 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xc8d7dd1d parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xd2cc1e8d parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xdc12468e parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xdedf429a parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xef9bcea6 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xfa99807e parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xfb9669b4 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/pps/pps_core 0x3b924556 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x770aaa3b pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xba4637ed pps_unregister_source +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x19bc4312 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1c315b40 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x42382bc1 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5fbe4609 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8cf76052 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb02a26ef fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb5c9a600 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd7703948 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdc699f9c fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x00271e22 fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x084baa3e fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b2b4a65 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c071547 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c6a7855 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0fa55fbe fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x178fdfc2 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c492fa7 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c7cfb46 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1cc3202f fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22a9edce fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2366dbc3 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26da240c fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2fd0f0f1 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3d47ea1a fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3e0973c5 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45fcdd73 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ca3ec53 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53c8ce2b fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5514898f fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5817b47a fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e284d38 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60d366d7 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67ad9bab fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6b5e7f06 fc_change_queue_depth +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x73ecb97f fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x778a0e55 fc_change_queue_type +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86656367 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87382f0f fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f7082d6 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9055f847 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9806614c fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98eee24e fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c4c43dc fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5180641 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa5b6ac05 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa70cf79e fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7c1f678 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab257416 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb1ec219b fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb821d6d4 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb84f69e3 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd74d902 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdb4c64d fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc3f6180b fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcff73186 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2779d57 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe638e995 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea186a8c _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedf1682b fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/raid_class 0x2b279b19 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x91c35e42 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x9614acc2 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x33883c59 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3745cb8a fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3b7d457a scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3c994544 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4475e770 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4e4868e8 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5f3e70fd fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x90658160 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x945349e9 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb38217ae fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbe7eef56 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc6431696 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcad3b1cd fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x146a2294 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d9ccf91 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x31e087d5 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32674e6d scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x51841cb6 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x541bbcd2 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58a9d255 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58acee9b sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x58b1b986 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5af0b6bd sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60a62d69 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x671bd7e5 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68fba516 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6f1c124b sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74b3ad95 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9762b08a sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab46ded4 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xba6ae3e7 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc1d0b276 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdebefdfa sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe20029e4 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4b9f54e sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe8196ef6 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf42c489c sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfc559715 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfcfa4a27 sas_remove_host +EXPORT_SYMBOL drivers/ssb/ssb 0x0191de43 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x133871c1 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x1b5f9067 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x44fcdc3b ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x46e2f3a6 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x59feb743 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x5a8efb75 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6558ad12 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x78796706 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x78d74456 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x80e39819 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x980fb928 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc21bc76b ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xc910ce5c ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xda3bd0af ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xec318274 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xf7dbb7ce ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xfa5ce7bf ssb_dma_translation +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x8bb13ceb adt7316_remove +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xa174645a adt7316_disable +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xc46e7117 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf90e5236 adt7316_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x031a2be7 iio_device_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x08e187e9 iio_trigger_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x0a01515e iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x24674184 iio_buffer_show_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x2e24a6bf iio_allocate_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x317e3305 iio_read_const_attr +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x4266c435 iio_bus_type +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x43bf1b17 iio_buffer_store_enable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x62fc842d iio_trigger_poll_chained +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x66d1fc83 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x6b82675d iio_free_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x9b1b4367 iio_buffer_register +EXPORT_SYMBOL drivers/staging/iio/industrialio 0x9ed433cc iio_buffer_read_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xa12a2b96 iio_allocate_trigger +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xaa1bba51 iio_device_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb197aff2 iio_buffer_write_length +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb1dc81c6 iio_buffer_init +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb28a118f iio_push_event +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xb3b73253 iio_free_device +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd573708e iio_buffer_read_bytes_per_datum +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd626e7be iio_trigger_unregister +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xd628e1bf iio_trigger_notify_done +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xe7c69e71 iio_sw_buffer_preenable +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xeba0a5c3 iio_trigger_poll +EXPORT_SYMBOL drivers/staging/iio/industrialio 0xff754c3c iio_buffer_unregister +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0x2bf012b2 kfifo_access_funcs +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xe1c58b79 iio_kfifo_allocate +EXPORT_SYMBOL drivers/staging/iio/kfifo_buf 0xe1da1c07 iio_kfifo_free +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x8dd39f20 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb87c01a4 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x4a77d649 ring_sw_access_funcs +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x50b956f1 iio_sw_rb_free +EXPORT_SYMBOL drivers/staging/iio/ring_sw 0x7fe1e1a6 iio_sw_rb_allocate +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x05156aaf transport_subsystem_release +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ca351e0 iscsi_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e4f766d transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f67f70e transport_generic_allocate_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x129e133e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x14297d86 fc_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a472b16 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b4d4b26 transport_generic_map_mem_to_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x210dd19d transport_do_task_sg_chain +EXPORT_SYMBOL drivers/target/target_core_mod 0x2601b3aa transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x2766a6ce iscsi_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x2aa41368 core_tpg_add_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c0a75c5 transport_generic_handle_data +EXPORT_SYMBOL drivers/target/target_core_mod 0x2ccc3547 target_fabric_configfs_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x31a61efa core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x36302a10 core_tpg_del_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x37ef4953 transport_add_device_to_core_hba +EXPORT_SYMBOL drivers/target/target_core_mod 0x393f4d62 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b9f8056 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cfbe0a6 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d73de41 sas_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d783406 transport_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x47f3b198 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x480f648d target_fabric_configfs_free +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f350f6a sas_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x53b3a77a transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5df3fa40 iscsi_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f2e83f3 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x61c8716b transport_complete_task +EXPORT_SYMBOL drivers/target/target_core_mod 0x63129134 target_fabric_configfs_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x68f29d8d transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7026e867 fc_get_fabric_proto_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c2449b8 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ccadafa transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x8266add7 sas_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x899f6e4c core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e59cdeb core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x98b9918a transport_init_queue_obj +EXPORT_SYMBOL drivers/target/target_core_mod 0xa34c6b79 core_tpg_clear_object_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xa434f99c target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4406726 transport_complete_sync_cache +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4cda123 iscsi_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xa729429d target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa23c0bd transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa77c692 target_splice_sess_cmd_list +EXPORT_SYMBOL drivers/target/target_core_mod 0xac33dfcb fc_get_pr_transport_id_len +EXPORT_SYMBOL drivers/target/target_core_mod 0xac5a6b41 transport_generic_handle_cdb_map +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0141ee3 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xb273634b transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb71f035c fc_parse_pr_out_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xb75bf036 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xba190e10 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc031b75e transport_subsystem_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xc83e2a49 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf228c19 target_fabric_configfs_init +EXPORT_SYMBOL drivers/target/target_core_mod 0xdfcbd5c0 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe26ca72d transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2cffbda target_get_task_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2f490c5 sas_get_pr_transport_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfad0c902 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xff545a80 transport_generic_process_write +EXPORT_SYMBOL drivers/telephony/phonedev 0x56cfd83e phone_register_device +EXPORT_SYMBOL drivers/telephony/phonedev 0xc27b10d7 phone_unregister_device +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x26ff666f sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x074f3c12 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0cdbeea3 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x101907b8 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4c425a1b usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x73ea9192 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x799b1326 usb_wwan_release +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x80388fca usb_wwan_set_termios +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb36b4726 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb5f6a73f usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb8fe23d4 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbb1f3708 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcfe357c3 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xde494f22 usb_wwan_disconnect +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdfa80a6f usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfd9003fb usb_wwan_startup +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7d0efe14 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xa7626e1a usb_serial_suspend +EXPORT_SYMBOL drivers/video/backlight/generic_bl 0x366d19ef genericbl_limit_intensity +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb5b35ff4 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xbca829cb lcd_device_unregister +EXPORT_SYMBOL drivers/video/display/display 0x8cc573d6 display_device_unregister +EXPORT_SYMBOL drivers/video/display/display 0x9857e8ce display_device_register +EXPORT_SYMBOL drivers/video/output 0x558bc5cc video_output_unregister +EXPORT_SYMBOL drivers/video/output 0x6d3ae2a1 video_output_register +EXPORT_SYMBOL drivers/video/syscopyarea 0x8e7415c2 sys_copyarea +EXPORT_SYMBOL drivers/video/sysfillrect 0x3f3979ce sys_fillrect +EXPORT_SYMBOL drivers/video/sysimgblt 0xbc10d44a sys_imageblit +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x09f32f6b w1_bq27000_read +EXPORT_SYMBOL drivers/w1/slaves/w1_bq27000 0x42092955 w1_bq27000_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6a575998 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x706827d9 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x769e7745 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xcacc1c5b w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x20248f8a w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x71d44b20 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xca116e81 w1_ds2780_io_nolock +EXPORT_SYMBOL drivers/w1/wire 0xa298d8ee w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xd3567f51 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xd780c767 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xdb396c8b w1_unregister_family +EXPORT_SYMBOL fs/configfs/configfs 0x015d33de config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x125324e2 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x31cbfc8a config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x32297357 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x7759b550 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x7daa7bf7 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x837af811 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x8f3afd5e config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x9e8d895b config_item_init +EXPORT_SYMBOL fs/configfs/configfs 0xa8897bbb config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xe2ee797c configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xec03ac76 configfs_unregister_subsystem +EXPORT_SYMBOL fs/fscache/fscache 0x046df944 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x07a75bf2 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x07d9b576 fscache_wait_bit_interruptible +EXPORT_SYMBOL fs/fscache/fscache 0x0b9c7afa __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1c5960c8 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x394c16e9 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x3a816141 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x3b197170 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x3fc23318 fscache_wait_bit +EXPORT_SYMBOL fs/fscache/fscache 0x4b00e381 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4d42f710 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x5e005630 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x5e61771b fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x6ecc2e70 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x75743734 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x75fbaeff __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x853a15ca __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x86f8894f fscache_object_states +EXPORT_SYMBOL fs/fscache/fscache 0x94142f6d __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x98368adb __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa2b5854b fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xa5e64523 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xadee4bd4 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc06f5119 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xc4477203 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd229eed5 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xdaaba3db fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xdbb4c10d fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xde4fc950 fscache_object_work_func +EXPORT_SYMBOL fs/fscache/fscache 0xf5221aa2 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xf72ed615 __fscache_attr_changed +EXPORT_SYMBOL fs/nfsd/nfsd 0x0c8d6829 nfs4_acl_nfsv4_to_posix +EXPORT_SYMBOL fs/nfsd/nfsd 0x2095976a nfs4_acl_new +EXPORT_SYMBOL fs/nfsd/nfsd 0x35e33c1e nfs4_acl_write_who +EXPORT_SYMBOL fs/nfsd/nfsd 0x5a157ae4 nfs4_acl_get_whotype +EXPORT_SYMBOL fs/nfsd/nfsd 0xcbb738be nfs4_acl_posix_to_nfsv4 +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x17a3781f qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x1a312aae qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x59a434f6 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa877cf14 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf4a4b460 qtree_delete_dquot +EXPORT_SYMBOL lib/cordic 0x434bfd07 cordic_calc_iq +EXPORT_SYMBOL lib/crc-ccitt 0x3771b461 crc_ccitt +EXPORT_SYMBOL lib/crc-ccitt 0x75811312 crc_ccitt_table +EXPORT_SYMBOL lib/crc-itu-t 0xd29b009f crc_itu_t_table +EXPORT_SYMBOL lib/crc-itu-t 0xf5b4a948 crc_itu_t +EXPORT_SYMBOL lib/crc7 0xa7587646 crc7 +EXPORT_SYMBOL lib/crc7 0xd80c3603 crc7_syndrome_table +EXPORT_SYMBOL lib/crc8 0x41248eaf crc8 +EXPORT_SYMBOL lib/crc8 0xab9ad613 crc8_populate_lsb +EXPORT_SYMBOL lib/crc8 0xd4534d80 crc8_populate_msb +EXPORT_SYMBOL lib/libcrc32c 0x27000b29 crc32c +EXPORT_SYMBOL lib/lru_cache 0x0a13a100 lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x14ab83ce lc_reset +EXPORT_SYMBOL lib/lru_cache 0x3cf9a304 lc_try_get +EXPORT_SYMBOL lib/lru_cache 0x41d8811d lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0x50f43c5b lc_index_of +EXPORT_SYMBOL lib/lru_cache 0x552f83c9 lc_get +EXPORT_SYMBOL lib/lru_cache 0xa14e0771 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0xa9161176 lc_find +EXPORT_SYMBOL lib/lru_cache 0xc653ff61 lc_put +EXPORT_SYMBOL lib/lru_cache 0xcd9df73d lc_set +EXPORT_SYMBOL lib/lru_cache 0xce7aaa77 lc_changed +EXPORT_SYMBOL lib/lru_cache 0xd0c23606 lc_create +EXPORT_SYMBOL lib/lru_cache 0xda24a86b lc_destroy +EXPORT_SYMBOL lib/lru_cache 0xfdd584e2 lc_del +EXPORT_SYMBOL lib/raid6/raid6_pq 0x0bd662f6 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x15fe0cd3 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x5ba93f9d raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0xb0d904b7 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0xce45a6f1 raid6_gfexi +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x315c65fd zlib_deflateInit2 +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0x48034724 zlib_deflateReset +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xaf64ad0d zlib_deflate +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL lib/zlib_deflate/zlib_deflate 0xf741c793 zlib_deflateEnd +EXPORT_SYMBOL net/802/p8022 0x54482c7f register_8022_client +EXPORT_SYMBOL net/802/p8022 0xbc425d7b unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0xcd628211 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xe7be9ec0 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x918b6c37 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xd6961d7b unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0a0f7fbe p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x0bdaae6c p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x15f5e839 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x171bb1a5 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1afc1716 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x21144909 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x22b90756 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x2efcdd23 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x30a567f6 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x3332e6a5 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x34e3f61f p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x38ed1b61 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x41e95e49 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x4484666f p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x46afb222 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x48c0e0a8 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4ad324af p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4ef3a819 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x5bb4a87e p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x670eedce v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x83af7773 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x89ea3e63 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x8cb267d4 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x950fed12 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x977a0030 p9_nr_pages +EXPORT_SYMBOL net/9p/9pnet 0x99616c83 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x9a1e8ec2 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x9c964743 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x9e2f7593 p9_payload_gup +EXPORT_SYMBOL net/9p/9pnet 0xa2a57cc3 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xa6e1fc45 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xa805a940 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xad1b2978 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xad7f4afe p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb2da105a p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xb31e93ce p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xbe93db33 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc6a19694 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xdb478d17 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xdd965fd1 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xe0127cfc p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe982fd7b p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf7ed2c2d p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfa1712f5 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x2aef5ac6 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x50ef30d0 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x563c335f atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xc5228b8a alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x11cad052 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x24cf36e6 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x345bc309 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x6f884dcf vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x787eab89 atm_charge +EXPORT_SYMBOL net/atm/atm 0x86bb0a8c atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x8dcbb002 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x8f92c0ca atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x95cf9060 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb367aeea atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xb3b2ffb7 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xc7daf56d deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xcd876b4c atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf5eab1ab vcc_sklist_lock +EXPORT_SYMBOL net/ax25/ax25 0x026c1368 ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x365e64de ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x49ab5314 ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x506bf072 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x5196a855 ax25_rebuild_header +EXPORT_SYMBOL net/ax25/ax25 0x531c8094 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x61225712 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x8a83360f ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc4d97fa7 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xd593e2a5 ax25_hard_header +EXPORT_SYMBOL net/ax25/ax25 0xdbb855db ax25_find_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02023227 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0a9baec9 hci_le_ltk_reply +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ee23730 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x12c9721e hci_connect +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21c36827 hci_recv_stream_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2412af79 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x29218a3c hci_conn_change_link_key +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2c1a88ff hci_find_link_key_type +EXPORT_SYMBOL net/bluetooth/bluetooth 0x31760686 hci_recv_fragment +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3cdfc1d8 hci_unregister_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b599289 bt_printk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x521e9383 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x565a7600 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x57e61502 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x594ac8bd bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a93486d bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x630a625a hci_conn_put_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x65e33fa8 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x689f8ec7 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6dd3695e hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x72c11b3c hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x74ef376a hci_send_sco +EXPORT_SYMBOL net/bluetooth/bluetooth 0x786223b5 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f4ff57e hci_find_ltk +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7fd18d85 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8747cddf bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c6ef5ed bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91367d36 hci_conn_hold_device +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x95b4890c hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c2c3266 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f18a208 hci_send_acl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa0e30f7d bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa11d41d4 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa4d7e48a bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xad47d03e hci_le_start_enc +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf3e7cc9 hci_conn_check_link_mode +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2066af0 batostr +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdf0b8012 hci_le_conn_update +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeec1c2de bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf19294db bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf43d736c bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7a60945 hci_register_proto +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb7cedec bt_sock_link +EXPORT_SYMBOL net/bridge/bridge 0x259a1be8 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0deff0fb ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x61639280 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xae5b22b8 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x1bfd7632 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x35b49017 caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x504da5e8 cfcnfg_del_phy_layer +EXPORT_SYMBOL net/caif/caif 0x5807d88d caif_free_client +EXPORT_SYMBOL net/caif/caif 0x61dc55f6 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x63e9812a cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x81558848 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xd0cd3be3 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x56b742f7 can_send +EXPORT_SYMBOL net/can/can 0x9a0a91a2 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xbe0d9cd7 can_rx_register +EXPORT_SYMBOL net/can/can 0xcdbeb2b5 can_ioctl +EXPORT_SYMBOL net/can/can 0xdf4ae8ba can_proto_register +EXPORT_SYMBOL net/can/can 0xf7ae81d5 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x007a6c93 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x00ed865e ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x023507b7 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x085a4a29 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0e3d0216 ceph_calc_object_layout +EXPORT_SYMBOL net/ceph/libceph 0x10940306 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x13a4f7b8 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x197effcb ceph_osdc_release_request +EXPORT_SYMBOL net/ceph/libceph 0x1a5ffaa5 ceph_messenger_create +EXPORT_SYMBOL net/ceph/libceph 0x1dacac3f ceph_messenger_destroy +EXPORT_SYMBOL net/ceph/libceph 0x1e6537a3 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x23977e0d ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x261afbd1 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x2c72fd38 ceph_osdc_init +EXPORT_SYMBOL net/ceph/libceph 0x3158173e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x33f2d647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x34e6bc5a ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x38ff53cc ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3e1f462a ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x40f988a6 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x43c8d341 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x4a7213f9 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x4c933ece ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x50aba825 ceph_osdc_stop +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x564f5b64 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x58859fef ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x5dce51c7 ceph_osdc_unregister_linger_request +EXPORT_SYMBOL net/ceph/libceph 0x5fe4b2fa ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6435c08a ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x666ccd09 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x67351be9 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x6d2d06a1 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x6e395f02 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x6ed41be2 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x74daee66 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x74e232fa ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x77692acb ceph_msg_last_put +EXPORT_SYMBOL net/ceph/libceph 0x7d4e2493 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x814988b0 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x8308b27b ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x83e9084d ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x8a46663b ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8d9adcae ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x8f076a55 ceph_calc_raw_layout +EXPORT_SYMBOL net/ceph/libceph 0x92a3b6ef ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x94c5338c ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x9ad397bd ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x9e40d007 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa40bd703 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xa51c35e1 ceph_monc_create_snapid +EXPORT_SYMBOL net/ceph/libceph 0xa7a20c95 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb02e2a27 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb84b4e04 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xba95d3cb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xc2beea0c ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xca3858bd ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xd01b645a ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd45b93bf ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd54ece7e ceph_osdc_wait_event +EXPORT_SYMBOL net/ceph/libceph 0xdc0e99b0 ceph_copy_page_vector_to_user +EXPORT_SYMBOL net/ceph/libceph 0xe0520e3c ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xf18562c2 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xf5a60b7c ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xfa494309 ceph_msg_dump +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0ccf575c wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1b49f6b9 ieee802154_nl_disassoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1d9eb7e2 ieee802154_nl_scan_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2063633f ieee802154_nl_disassoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x3d29b251 ieee802154_nl_beacon_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x41add5c1 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6563a513 ieee802154_nl_start_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x66d85131 ieee802154_nl_assoc_confirm +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7ced46a4 ieee802154_nl_assoc_indic +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8188a8e4 wpan_phy_alloc +EXPORT_SYMBOL net/ieee802154/ieee802154 0x86c4ad08 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe3981565 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf213c234 wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x41a5d46d arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8785021e arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf80475cb arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x388063c3 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd392c561 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xedb1cc4a ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x01a0058b nf_nat_protocol_register +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x10942b5a nf_nat_used_tuple +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x10faa615 nf_nat_follow_master +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x387f12d6 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0x3effd542 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xdc0171a6 nf_nat_protocol_unregister +EXPORT_SYMBOL net/ipv4/netfilter/nf_nat 0xe861612c nf_nat_setup_info +EXPORT_SYMBOL net/ipv4/tunnel4 0x6262e5a6 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xa0528c84 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x14af6a11 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x17d0d5f6 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4bb4256d ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x67e65684 ipv6_find_hdr +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb8bddf33 ip6t_ext_hdr +EXPORT_SYMBOL net/ipv6/tunnel6 0xe9ea06db xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xf2f25a12 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x30898416 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xf256e700 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0eebdb99 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x26549333 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3d5721bf ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x446a39ea ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa57ce4a7 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xac098656 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe5d8fecf ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xeca543b6 ircomm_data_request +EXPORT_SYMBOL net/irda/irda 0x053e8b1b irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x114bd92c irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x132be70e alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x1b14e2be iriap_close +EXPORT_SYMBOL net/irda/irda 0x2036ad06 irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x22caf86e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x2c293954 irlap_close +EXPORT_SYMBOL net/irda/irda 0x2d3765bc hashbin_find +EXPORT_SYMBOL net/irda/irda 0x2ea3cf1c irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x3442a7c7 proc_irda +EXPORT_SYMBOL net/irda/irda 0x38a20e5b irda_debug +EXPORT_SYMBOL net/irda/irda 0x3973c74d irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x3a29eca2 iriap_open +EXPORT_SYMBOL net/irda/irda 0x3ac585ba irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x4479ef51 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +EXPORT_SYMBOL net/irda/irda 0x47b7c8f4 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x538d5d22 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x572583cf irias_new_object +EXPORT_SYMBOL net/irda/irda 0x5b84b002 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x5f55c3a2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6f173aea irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x71391c7b irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x7225f201 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x74c6eb16 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x76a86fae irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7aa1ddbc irias_insert_object +EXPORT_SYMBOL net/irda/irda 0x7de04a81 irias_find_object +EXPORT_SYMBOL net/irda/irda 0x80da7829 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x825729c7 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94fcc75a irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x96787b71 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x993ad14b irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0xb5c93e6b irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0xb710786e hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xb78896a1 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xbf285a4c hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0xc27479d4 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0xc3a512dd hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xd6a3f8a5 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xd6ee5809 irlap_open +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xedf805a9 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0xef16660b hashbin_new +EXPORT_SYMBOL net/irda/irda 0xf5b8cc14 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xfa3c0df6 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xfbf611b3 irlmp_connect_response +EXPORT_SYMBOL net/l2tp/l2tp_core 0xbf76a5b2 l2tp_recv_common +EXPORT_SYMBOL net/lapb/lapb 0x0766fcb1 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x0af81821 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x2f555c43 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x3d622913 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x57d461b9 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x6bbc80b5 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xbd55949c lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xf432d5e8 lapb_register +EXPORT_SYMBOL net/llc/llc 0x30c7b58f llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x31ef32a5 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x52c41dde llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x62f755c6 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x9656f8a0 llc_sap_list_lock +EXPORT_SYMBOL net/llc/llc 0xb703462d llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xc44e3d7a llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xf6c2fad0 llc_mac_hdr_init +EXPORT_SYMBOL net/mac80211/mac80211 0x01b40bf2 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x055e208d ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x084adaa8 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x17217a33 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1a1f5dde ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x1c9992ab ieee80211_get_operstate +EXPORT_SYMBOL net/mac80211/mac80211 0x1d2a0315 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2d183b8f __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2ec66c42 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x30485a3d ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x30568f1f __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x397cd8ae ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3b79fa3b ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x3b998d97 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x3c4bdf89 ieee80211_enable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x427dace9 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x4fb39646 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x5060d247 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x50e404e1 ieee80211_napi_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x5286f200 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5c28cca5 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x5d64ede4 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5eaed908 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x605e1342 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x63caa554 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x6503ef71 ieee80211_sta_eosp_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x694cc281 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x6a131db0 ieee80211_disable_dyn_ps +EXPORT_SYMBOL net/mac80211/mac80211 0x6d5bb361 ieee80211_rx +EXPORT_SYMBOL net/mac80211/mac80211 0x6f1d6e29 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x719b2813 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x75379bef ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x82297f2f ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x840ea900 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8b332e82 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x8cac9226 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8f2e57ee ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x900f246f ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9b4a59b3 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x9c9af13c ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x9d973a2c ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xa4241970 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xaa157485 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xaa2ab377 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xaeea4e31 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb02ccbb2 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xb70383d0 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb74f9967 ieee80211_napi_schedule +EXPORT_SYMBOL net/mac80211/mac80211 0xb7da619a ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xbb618557 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xbe426e36 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xbfbe301d ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xc06602ac ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xc2ebfc98 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc5cf0c36 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xc7e9782e ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xc984d0e6 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xcefa639e ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xd67a5481 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xdcacc105 ieee80211_alloc_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xddb47d52 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xe09462b9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe1797f8f ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xe55dea1e ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xe7a0eb02 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xeba14d72 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xf96f92e6 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfb3e00e4 ieee80211_send_bar +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2fe29a9b ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x35ddc1e0 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x390d74c9 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4381c7a0 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x48cc5613 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6472b3e6 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x701ba732 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x772ac150 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8040a7e1 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa1dbc2d8 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa22158bd ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbc6ee42a ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc12e49c4 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xcb000935 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe9868a33 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x26d1d840 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x27216619 __nf_ct_ext_add +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x59397dc8 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_proto_gre 0x86cea524 nf_ct_gre_keymap_flush +EXPORT_SYMBOL net/netfilter/x_tables 0x08c473b7 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x0a729ce8 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x157f8d2a xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1a242112 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x549ae98a xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x61bb0b4b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x74478217 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xac34dda0 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xb28f5ef1 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xb5cc981d xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xb8e8b4fe xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd704794b xt_register_targets +EXPORT_SYMBOL net/nfc/nci/nci 0x0be5d7a8 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x460f6322 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x78fafc91 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7b1dd304 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8d3dc8a1 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nfc 0x2cf1913e nfc_printk +EXPORT_SYMBOL net/nfc/nfc 0x4360bf8c nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x87302db4 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xad72edfc nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xc0ef1e65 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xd6002fdc nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xec50cdba nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xeed5d8f1 nfc_alloc_skb +EXPORT_SYMBOL net/nfc/nfc 0xfffe153f nfc_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x476e6e0a phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x4e44e060 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x5b4cbf4f phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x8eb02a90 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x8f17dde3 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xb1ce85e4 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xcf0df714 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xf6c981aa phonet_stream_ops +EXPORT_SYMBOL net/rds/rds 0x5031b8c5 rds_str_array +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1ddf1f67 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x34204822 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4a3e6119 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5aa4d42d rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x77530428 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x882a58c9 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x956a924c rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa1f9448f rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaac43fc1 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbcab6496 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbd287aee rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdaafa71c rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xdfc305b8 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3caec1a rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3ea8067 key_type_rxrpc +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf525e975 svc_pool_stats_open +EXPORT_SYMBOL net/wanrouter/wanrouter 0x0ebe03d1 unregister_wan_device +EXPORT_SYMBOL net/wanrouter/wanrouter 0x77d51cdd register_wan_device +EXPORT_SYMBOL net/wimax/wimax 0x1c351ffc wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xc0ee6298 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x10411a86 ieee802_11_parse_elems_crc +EXPORT_SYMBOL net/wireless/cfg80211 0x14cd2d49 cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x165622a1 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x16ad3603 cfg80211_inform_bss_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19ecc7ec ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x1a2bb497 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x1be3c0a6 cfg80211_send_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x1eb5a9ea wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x22082eb6 cfg80211_send_unprot_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x2227c496 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x2edf7d69 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x4ae3b806 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x4b53ec91 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x559794ee cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x57141a2d __cfg80211_send_disassoc +EXPORT_SYMBOL net/wireless/cfg80211 0x5ae46dd9 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x5b1f91ed wiphy_new +EXPORT_SYMBOL net/wireless/cfg80211 0x5c22d0ae cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x5f282c83 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x60c0c117 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x69a68256 cfg80211_inform_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d1864d3 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6d9713ee wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x6e391882 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x7513e94e ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0x7a699482 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8b36dd90 cfg80211_send_rx_auth +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9fe2f3fb cfg80211_send_unprot_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0xa45a41e3 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xa660f631 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa87643aa __cfg80211_auth_canceled +EXPORT_SYMBOL net/wireless/cfg80211 0xb44f0e1b cfg80211_send_rx_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xb4f5e134 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xb755e96d cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb792d603 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb9354bc8 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xc56bfd55 cfg80211_send_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xd3074e66 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xd4a4a1bb __cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0xd53f6555 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd7136746 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xd7779230 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd96f89f0 cfg80211_del_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xda32ebc1 cfg80211_send_deauth +EXPORT_SYMBOL net/wireless/cfg80211 0xdb40f204 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xde67c48c cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xdf41b1a9 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xe2cd0f3a cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xe2d402d7 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xe320e537 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xe8be7ef0 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xecdae6e5 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf109f2f5 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xf375121a cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xf393ae4e wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xf8bfcf52 cfg80211_get_mesh +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x0ff9ed14 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x2d0f99e5 print_ssid +EXPORT_SYMBOL net/wireless/lib80211 0x4bea2590 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6c935f84 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x7ce2b2be lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xb67b4ac1 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xc2a53e89 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0x00d1fe28 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x04c3c5aa snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1a724fcc snd_seq_kernel_client_ctl +EXPORT_SYMBOL sound/core/seq/snd-seq 0x22c58b0e snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x593e5f4d snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5a2a83c4 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6bb71038 snd_seq_delete_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ac2f329 snd_seq_expand_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7b8699eb snd_seq_event_port_detach +EXPORT_SYMBOL sound/core/seq/snd-seq 0xb8e448a0 snd_seq_set_queue_tempo +EXPORT_SYMBOL sound/core/seq/snd-seq 0xcac0a3be snd_seq_kernel_client_enqueue +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe934da1d snd_seq_dump_var_event +EXPORT_SYMBOL sound/core/seq/snd-seq 0xe946ac9c snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x3a57f235 snd_seq_autoload_unlock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x5e1cc4dc snd_seq_device_new +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0x6339b6d0 snd_seq_device_load_drivers +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xb90668b2 snd_seq_autoload_lock +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xc622fb29 snd_seq_device_unregister_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-device 0xfc58ed06 snd_seq_device_register_driver +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x0df2e317 snd_midi_event_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x26885c56 snd_midi_event_no_status +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7ab3ab98 snd_midi_event_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x7ddf2a2e snd_midi_event_reset_decode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x85c27c7a snd_midi_event_reset_encode +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0x85e4ac82 snd_midi_event_new +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xd4945484 snd_midi_event_encode_byte +EXPORT_SYMBOL sound/core/seq/snd-seq-midi-event 0xfcf964a7 snd_midi_event_free +EXPORT_SYMBOL sound/core/seq/snd-seq-virmidi 0xc57be0be snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x049ea089 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x0574f5e9 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x08deebf5 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x0fe57f56 snd_register_device_for_dev +EXPORT_SYMBOL sound/core/snd 0x120a3bb2 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1c81a3cb snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x1d43b444 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x2105fa56 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x24bc6542 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x25bb8883 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x297f7eff snd_add_device_sysfs_file +EXPORT_SYMBOL sound/core/snd 0x2aed3b35 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x2ce6aa5c snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x2dd6950a snd_cards +EXPORT_SYMBOL sound/core/snd 0x3709678a snd_device_register +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3b51efb4 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x3fe3c1d1 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4b015768 snd_iprintf +EXPORT_SYMBOL sound/core/snd 0x4c73896d _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x5994d688 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x5b4e8278 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x616b63d6 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x637fc482 snd_card_proc_new +EXPORT_SYMBOL sound/core/snd 0x6e384bb5 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x6f0c04d5 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x7567fec9 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x7689a74a snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x770efedf snd_device_new +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x8ff23137 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x91280a1c snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x99ab6af7 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x9b9bc20b snd_device_free +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa62e2cf3 snd_card_create +EXPORT_SYMBOL sound/core/snd 0xa6e0e1f2 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xa90da160 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xaa00d3c1 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xc6529faf snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xc8b9d73a snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xc987b220 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd1157735 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xd78073fe snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xd9f09d76 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xdb0ea0b2 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xe287152f snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xe7aa3883 snd_info_register +EXPORT_SYMBOL sound/core/snd 0xec9dbf1f snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xf4b13b28 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xfd98e062 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd-hwdep 0xd5d0d9b2 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-page-alloc 0x3b91f3af snd_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0x4403f436 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-page-alloc 0x48fe5827 snd_dma_reserve_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0xac58963a snd_dma_get_reserved_buf +EXPORT_SYMBOL sound/core/snd-page-alloc 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0xc3958a19 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-page-alloc 0xf7a0fcd7 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x081f3f47 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0821331e snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x0e032f4d snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x0f1d2c08 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x0f5ed36a snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x0f8336ea snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x24e94e70 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x25440b3f snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x256b69db snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x28955e1a snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x2a69180b snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x35097ab0 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3a41adff snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x4ae47166 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x4bb23e66 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL sound/core/snd-pcm 0x56a37be4 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x620d2141 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6da394b9 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x6f241ffd _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x75af67ce snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x7d6e0d05 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x7d80938c snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x94372879 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x9e2c1f3e snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x9fb85b26 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xa2d54f3f snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xaf4991d1 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xafe505b2 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbb71ca99 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xc5062add snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xc5bb3025 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xccd95da6 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xcdf68031 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd0b9b8b8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd1415670 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xecf10388 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xf16292a8 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xf3797152 snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xf57c963f snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xf6d7e5d6 snd_pcm_link_rwlock +EXPORT_SYMBOL sound/core/snd-pcm 0xfc59c71c snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xfd26076a snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xfe6ef914 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0ad40cd5 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0bcc9dcf snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x13fe71d0 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2bcc4d64 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f089780 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x38cd97f5 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c2676e6 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x613be3c3 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7ab1412e snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x81203fc5 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9cd2f68b snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb3877701 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbdfa2991 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe8339007 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf11687e1 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf31e2f94 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf57ef1af snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-timer 0x0722ed25 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x1289bcb6 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x43ed0898 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x5a5f381d snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x6c4b0b58 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x6cf81388 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x9ef580d0 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xa3f7e028 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xc2b08a1a snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xc52867a7 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xe3faa8c2 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xfdf365c2 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xfe828265 snd_timer_start +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x81808e1b snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x07d2fe70 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x08cb25f9 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0f9515e8 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e59a118 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1e5d861e snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2134e2b2 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2b84c6fc snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x39752e1a snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4ba44d76 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6c825796 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8f0fef38 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9449e40f snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xac55265e snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad4a5b3d snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc62aa04c snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfe9febfe snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xff9293ad snd_ac97_pcm_close +EXPORT_SYMBOL sound/soundcore 0x1ce4f990 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x2296d694 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7bb3c229 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x8fc5a4c2 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xaa735703 sound_class +EXPORT_SYMBOL sound/soundcore 0xb834e2ad register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xc163874f snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00000000 softirq_work_list +EXPORT_SYMBOL vmlinux 0x0001e4c2 vmap +EXPORT_SYMBOL vmlinux 0x00054f21 __block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x00259ce3 md_error +EXPORT_SYMBOL vmlinux 0x0026075a tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x002de09c vfsmount_lock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x00801678 flush_scheduled_work +EXPORT_SYMBOL vmlinux 0x0081030e omap_vram_reserve +EXPORT_SYMBOL vmlinux 0x0084e86d unregister_shrinker +EXPORT_SYMBOL vmlinux 0x008f1e24 amba_release_regions +EXPORT_SYMBOL vmlinux 0x008feda0 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x00a17be3 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x00b845c1 balance_dirty_pages_ratelimited_nr +EXPORT_SYMBOL vmlinux 0x00d57419 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x00e18861 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x00e8097b csum_partial_copy_fromiovecend +EXPORT_SYMBOL vmlinux 0x00eef49e __strnlen_user +EXPORT_SYMBOL vmlinux 0x00f42699 files_lglock_global_unlock +EXPORT_SYMBOL vmlinux 0x00ffb051 generic_writepages +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x01424f59 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x01902adf netpoll_trap +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x02015fc7 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x02054e8b mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x0209effc generic_fillattr +EXPORT_SYMBOL vmlinux 0x020d2987 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x020ec2b9 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x023a50ab proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x023c6330 touch_atime +EXPORT_SYMBOL vmlinux 0x0240b17d phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x0240b9b3 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x024bf88f omap_modify_dma_chain_params +EXPORT_SYMBOL vmlinux 0x024fe8d5 udp_table +EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274e08d install_exec_creds +EXPORT_SYMBOL vmlinux 0x0278796e generic_write_end +EXPORT_SYMBOL vmlinux 0x0296674c mtd_concat_create +EXPORT_SYMBOL vmlinux 0x02a0d156 gpmc_prefetch_reset +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ae3fc6 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x0302c48b idr_destroy +EXPORT_SYMBOL vmlinux 0x0304408d write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x03073b97 omap_writel +EXPORT_SYMBOL vmlinux 0x031ba9bf atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x03263abf fb_set_suspend +EXPORT_SYMBOL vmlinux 0x0329226b fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034f9e73 param_ops_byte +EXPORT_SYMBOL vmlinux 0x035117e4 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x0355b2f1 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0367691d remove_arg_zero +EXPORT_SYMBOL vmlinux 0x0377e07f inet_frag_kill +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03c06156 bitmap_fold +EXPORT_SYMBOL vmlinux 0x03c0de24 writeback_inodes_sb_nr_if_idle +EXPORT_SYMBOL vmlinux 0x03ccdbbf blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x03de46ed md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x03e990c1 ethtool_op_get_sg +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04141f80 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x04148464 __break_lease +EXPORT_SYMBOL vmlinux 0x0420d60d scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x046a7046 arp_xmit +EXPORT_SYMBOL vmlinux 0x046a9fe1 mddev_congested +EXPORT_SYMBOL vmlinux 0x0474484b scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x04750e2d user_revoke +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x0499010c mntput +EXPORT_SYMBOL vmlinux 0x04b1e09c input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x04d128bb blk_recount_segments +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f4b8fc simple_transaction_release +EXPORT_SYMBOL vmlinux 0x05029061 mem_map +EXPORT_SYMBOL vmlinux 0x0512f71a xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x0521b2ee set_current_groups +EXPORT_SYMBOL vmlinux 0x054434d6 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x05701972 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x057ce975 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x058db3f5 up_read +EXPORT_SYMBOL vmlinux 0x05baaba0 wait_for_completion +EXPORT_SYMBOL vmlinux 0x05bffa87 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x05e01dbe scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x05f981a6 call_usermodehelper_freeinfo +EXPORT_SYMBOL vmlinux 0x06082a3d tcp_valid_rtt_meas +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061a769f bio_phys_segments +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x0642c6d3 clear_bdi_congested +EXPORT_SYMBOL vmlinux 0x06469ab2 __kfree_skb +EXPORT_SYMBOL vmlinux 0x0662e9e4 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x06755dd9 inet_shutdown +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06b141ac free_task +EXPORT_SYMBOL vmlinux 0x06c3f55b generic_pipe_buf_map +EXPORT_SYMBOL vmlinux 0x06e466fb blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x06fbd580 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x06fe636f of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x07545c8c load_nls_default +EXPORT_SYMBOL vmlinux 0x075dfff1 get_phy_device +EXPORT_SYMBOL vmlinux 0x0790a4cb jbd2_journal_update_format +EXPORT_SYMBOL vmlinux 0x0799aca4 local_bh_enable +EXPORT_SYMBOL vmlinux 0x07a5f503 omap_readw +EXPORT_SYMBOL vmlinux 0x07a84b1b pm860x_page_set_bits +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07c120fb alloc_disk +EXPORT_SYMBOL vmlinux 0x07c88c6b udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cea63a blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x07d9b783 scsi_nl_send_vendor_msg +EXPORT_SYMBOL vmlinux 0x07fdc37c blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0800f1f6 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x082d8067 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x0839e561 nla_put +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x087bb42c bio_integrity_alloc_bioset +EXPORT_SYMBOL vmlinux 0x088a5c07 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x088be06b __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x08a22296 netif_napi_add +EXPORT_SYMBOL vmlinux 0x08a4c534 omap_mcbsp_get_rx_delay +EXPORT_SYMBOL vmlinux 0x08ccfa90 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x08ded414 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x0918ba6b blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x0948cde9 num_physpages +EXPORT_SYMBOL vmlinux 0x09494d8b blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x0957de2f __serio_register_port +EXPORT_SYMBOL vmlinux 0x09775cdc kref_get +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09916270 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x09ab7f37 mount_ns +EXPORT_SYMBOL vmlinux 0x09b0cdfa mntget +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d3ecbf get_super +EXPORT_SYMBOL vmlinux 0x09d56a6a get_write_access +EXPORT_SYMBOL vmlinux 0x09f4dd08 __brelse +EXPORT_SYMBOL vmlinux 0x0a1e7a21 is_container_init +EXPORT_SYMBOL vmlinux 0x0a2487e0 unblock_all_signals +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a8ec7e9 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x0aa13d05 __raw_readsw +EXPORT_SYMBOL vmlinux 0x0aba58c1 journal_set_features +EXPORT_SYMBOL vmlinux 0x0acb1a3c __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad5fb6f down_write_trylock +EXPORT_SYMBOL vmlinux 0x0afca0cc dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b31eed5 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x0b351ada mempool_resize +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b496a3a inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x0b69a29f down_trylock +EXPORT_SYMBOL vmlinux 0x0b7086d9 param_get_short +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b788544 iget_failed +EXPORT_SYMBOL vmlinux 0x0b7f20d4 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x0b90178e blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x0bc3fc07 log_wait_commit +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd362af ps2_end_command +EXPORT_SYMBOL vmlinux 0x0be67928 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x0c1ab1e1 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x0c35f2c6 sleep_on_timeout +EXPORT_SYMBOL vmlinux 0x0c65e73c scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x0c8c2263 blk_free_tags +EXPORT_SYMBOL vmlinux 0x0c8c9e99 scsi_show_extd_sense +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc4e253 netdev_class_remove_file +EXPORT_SYMBOL vmlinux 0x0cd7842a kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x0cdb98ca inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x0cdd158d sg_alloc_table +EXPORT_SYMBOL vmlinux 0x0cff3d65 nand_lock +EXPORT_SYMBOL vmlinux 0x0d04258b elevator_exit +EXPORT_SYMBOL vmlinux 0x0d0a71d4 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x0d16b7e5 omap_dss_get_overlay_manager +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d524a8d thermal_zone_unbind_cooling_device +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5a89e9 lookup_bdev +EXPORT_SYMBOL vmlinux 0x0d642bba free_netdev +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da8ad3d bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x0db3877d ___dma_single_dev_to_cpu +EXPORT_SYMBOL vmlinux 0x0dd2aa90 kobject_init +EXPORT_SYMBOL vmlinux 0x0df46cd8 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x0e07f307 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x0e17e9dd netdev_err +EXPORT_SYMBOL vmlinux 0x0e3ee105 dm_register_target +EXPORT_SYMBOL vmlinux 0x0e4ee760 names_cachep +EXPORT_SYMBOL vmlinux 0x0e52592a panic +EXPORT_SYMBOL vmlinux 0x0e62e9ee seq_bitmap_list +EXPORT_SYMBOL vmlinux 0x0eaf1502 sock_release +EXPORT_SYMBOL vmlinux 0x0ec503c0 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x0ec98808 ida_init +EXPORT_SYMBOL vmlinux 0x0efa0c67 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x0f159ee5 input_inject_event +EXPORT_SYMBOL vmlinux 0x0f2544b2 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0f31425c clk_add_alias +EXPORT_SYMBOL vmlinux 0x0f59f197 param_array_ops +EXPORT_SYMBOL vmlinux 0x0f67b9cb phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x0f74a50d datagram_poll +EXPORT_SYMBOL vmlinux 0x0f964df4 udp_seq_open +EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb080ab textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x0fb0e29f init_timer_key +EXPORT_SYMBOL vmlinux 0x0fc95f2e unlock_rename +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ffa8302 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x1000c7de block_write_begin +EXPORT_SYMBOL vmlinux 0x104af7f5 dump_seek +EXPORT_SYMBOL vmlinux 0x105b0534 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x1074c970 clk_disable +EXPORT_SYMBOL vmlinux 0x1078b12b kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x107d701e uart_get_divisor +EXPORT_SYMBOL vmlinux 0x109a00e9 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x10a12fae kernel_accept +EXPORT_SYMBOL vmlinux 0x10b5da89 register_key_type +EXPORT_SYMBOL vmlinux 0x10b941c4 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x10d9d048 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10ff2de4 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11267875 scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0x112748bd omap_vrfb_adjust_size +EXPORT_SYMBOL vmlinux 0x112b333c inet_frags_fini +EXPORT_SYMBOL vmlinux 0x11491bf6 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x1155c8d4 netlink_unicast +EXPORT_SYMBOL vmlinux 0x11633870 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116ccd8c vfs_fstatat +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x117cd865 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x118b6333 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x118c58c9 netdev_warn +EXPORT_SYMBOL vmlinux 0x1198190d do_splice_to +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11df585e phy_connect +EXPORT_SYMBOL vmlinux 0x11e2ec12 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x121067a2 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x12530356 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL vmlinux 0x125504dc __nla_put +EXPORT_SYMBOL vmlinux 0x125ee0b5 d_alloc_root +EXPORT_SYMBOL vmlinux 0x126c937c kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x127f1cf8 vfs_lstat +EXPORT_SYMBOL vmlinux 0x128fde83 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e49a76 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x12f99022 inet_frags_init_net +EXPORT_SYMBOL vmlinux 0x12fac018 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x1325cabf serio_close +EXPORT_SYMBOL vmlinux 0x1331d7b1 vmtruncate +EXPORT_SYMBOL vmlinux 0x134524b6 ppp_input +EXPORT_SYMBOL vmlinux 0x136e6d2d dquot_commit_info +EXPORT_SYMBOL vmlinux 0x138c4b29 __getblk +EXPORT_SYMBOL vmlinux 0x1393078a i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13ec80f3 param_set_short +EXPORT_SYMBOL vmlinux 0x14075c93 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x141c4c10 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x143b58ed skb_queue_tail +EXPORT_SYMBOL vmlinux 0x144d8916 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x145b29f9 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x14821b06 __devm_request_region +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x15331242 omap_iounmap +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154d3c43 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x154f6028 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x1551dc51 bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x15834574 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x159581ab key_put +EXPORT_SYMBOL vmlinux 0x15ad7a88 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x15e2c22f bio_free +EXPORT_SYMBOL vmlinux 0x15ec353b register_md_personality +EXPORT_SYMBOL vmlinux 0x15fd4285 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x161ea29e mdio_bus_type +EXPORT_SYMBOL vmlinux 0x161eafe3 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x1627ed72 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1632ffa5 __scm_destroy +EXPORT_SYMBOL vmlinux 0x1664fdd4 scsi_device_get +EXPORT_SYMBOL vmlinux 0x166c600d simple_unlink +EXPORT_SYMBOL vmlinux 0x167b4642 uart_match_port +EXPORT_SYMBOL vmlinux 0x16b6c00f task_ns_capable +EXPORT_SYMBOL vmlinux 0x16bd6046 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x16c42197 init_timer_deferrable_key +EXPORT_SYMBOL vmlinux 0x16c63768 splice_from_pipe_feed +EXPORT_SYMBOL vmlinux 0x16d0ba7a inet_twsk_deschedule +EXPORT_SYMBOL vmlinux 0x16f2a504 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x16f38302 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x170ea9aa netlink_ack +EXPORT_SYMBOL vmlinux 0x1723a2da init_buffer +EXPORT_SYMBOL vmlinux 0x173ca64b of_device_unregister +EXPORT_SYMBOL vmlinux 0x17407a07 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x175236f4 omap_mcbsp_start +EXPORT_SYMBOL vmlinux 0x175a3394 skb_clone +EXPORT_SYMBOL vmlinux 0x175ba748 napi_skb_finish +EXPORT_SYMBOL vmlinux 0x176f1208 bdput +EXPORT_SYMBOL vmlinux 0x1772717c ethtool_op_set_sg +EXPORT_SYMBOL vmlinux 0x1789e741 netif_napi_del +EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user +EXPORT_SYMBOL vmlinux 0x17c69a0d sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x17c73b2b pl330_chan_ctrl +EXPORT_SYMBOL vmlinux 0x17d10d61 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x17df17bc sysctl_tcp_ecn +EXPORT_SYMBOL vmlinux 0x17e719fa jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x17fbcce2 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x1803242c inet_addr_type +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1848845d ethtool_invalid_flags +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184e6c85 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x187515a0 should_remove_suid +EXPORT_SYMBOL vmlinux 0x188a7479 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x18c0ea37 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x191ad4f3 address_space_init_once +EXPORT_SYMBOL vmlinux 0x194040d9 __locks_copy_lock +EXPORT_SYMBOL vmlinux 0x194128c3 omap_mcbsp_get_fifo_size +EXPORT_SYMBOL vmlinux 0x1942c5db input_set_abs_params +EXPORT_SYMBOL vmlinux 0x1951f18d jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x1953336e security_task_getsecid +EXPORT_SYMBOL vmlinux 0x196aff3e dev_base_lock +EXPORT_SYMBOL vmlinux 0x1979799b gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x198f3fda security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19f1cf31 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x1a006eaf netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x1a098c95 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x1a25f23c pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x1a47a2ab devm_free_irq +EXPORT_SYMBOL vmlinux 0x1a4a2438 vfs_readdir +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a662a67 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1a7e444d dev_get_by_flags_rcu +EXPORT_SYMBOL vmlinux 0x1ac3ecd2 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x1ace138d bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ad59dac dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x1ad5a2d0 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x1ae11834 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x1af2eec7 pfifo_fast_ops +EXPORT_SYMBOL vmlinux 0x1afdb714 fb_pan_display +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b114dce xfrm_input +EXPORT_SYMBOL vmlinux 0x1b297ae0 __seq_open_private +EXPORT_SYMBOL vmlinux 0x1b310ac3 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x1b5bec39 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x1b5beeca blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b64affd sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x1b859c46 d_add_ci +EXPORT_SYMBOL vmlinux 0x1b936b23 fb_blank +EXPORT_SYMBOL vmlinux 0x1b9cfe36 __napi_complete +EXPORT_SYMBOL vmlinux 0x1b9e0ff1 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x1ba7cf09 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x1babe60e omap_st_set_chgain +EXPORT_SYMBOL vmlinux 0x1bbc6dc6 __bio_clone +EXPORT_SYMBOL vmlinux 0x1bbf1f9e register_exec_domain +EXPORT_SYMBOL vmlinux 0x1bd538dc generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x1bd72663 kobject_get +EXPORT_SYMBOL vmlinux 0x1bdfc625 bio_init +EXPORT_SYMBOL vmlinux 0x1c1af916 set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x1c2df251 skb_put +EXPORT_SYMBOL vmlinux 0x1c6c64d0 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x1c758a17 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x1caef8eb journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x1cc6719a register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x1cd0f6c0 mempool_alloc +EXPORT_SYMBOL vmlinux 0x1cde1474 tty_name +EXPORT_SYMBOL vmlinux 0x1cfe3c50 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x1d0f92e0 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x1d2e87c6 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x1d3865da param_get_invbool +EXPORT_SYMBOL vmlinux 0x1d43d57c seq_putc +EXPORT_SYMBOL vmlinux 0x1d4e7808 km_query +EXPORT_SYMBOL vmlinux 0x1d5206b8 read_dev_sector +EXPORT_SYMBOL vmlinux 0x1d70640a qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x1db6ec41 sk_dst_check +EXPORT_SYMBOL vmlinux 0x1db7dc40 pgprot_kernel +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd866a1 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x1de0cf87 d_clear_need_lookup +EXPORT_SYMBOL vmlinux 0x1dfae5a0 get_phy_id +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e11ed1a pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x1e160e83 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x1e18a07f tcp_prot +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3c0067 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x1e62ae07 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e96e84f dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb032dd pskb_expand_head +EXPORT_SYMBOL vmlinux 0x1ec07c96 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x1ec4eb34 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x1ece7cfe follow_pfn +EXPORT_SYMBOL vmlinux 0x1ef1f75f posix_acl_valid +EXPORT_SYMBOL vmlinux 0x1f1931ba dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x1f31ec73 scsi_unregister +EXPORT_SYMBOL vmlinux 0x1f425e79 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x1f5bea49 set_anon_super +EXPORT_SYMBOL vmlinux 0x1f704784 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd9c7ab rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x1fdd5bd7 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x1fe77135 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2001053d dquot_quota_on +EXPORT_SYMBOL vmlinux 0x20094b33 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x20161a48 tty_port_close +EXPORT_SYMBOL vmlinux 0x20424706 ___dma_page_dev_to_cpu +EXPORT_SYMBOL vmlinux 0x2047dd5a pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x205ec8de omap_dispc_register_isr +EXPORT_SYMBOL vmlinux 0x2066fdab vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x20671858 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2077e1f6 posix_lock_file +EXPORT_SYMBOL vmlinux 0x207907d6 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x2096a988 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x20986633 consume_skb +EXPORT_SYMBOL vmlinux 0x20a5f748 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ad4aee xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x20b2c2e2 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x20d86032 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x20dc9139 md_integrity_register +EXPORT_SYMBOL vmlinux 0x20e17b40 tty_register_driver +EXPORT_SYMBOL vmlinux 0x20e289ab devm_ioport_map +EXPORT_SYMBOL vmlinux 0x20ee614e vm_map_ram +EXPORT_SYMBOL vmlinux 0x2102713a create_proc_entry +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x215ebd78 bitrev16 +EXPORT_SYMBOL vmlinux 0x21685419 netdev_alert +EXPORT_SYMBOL vmlinux 0x216c4c44 journal_check_available_features +EXPORT_SYMBOL vmlinux 0x217dda13 flex_array_get +EXPORT_SYMBOL vmlinux 0x2196adca netdev_state_change +EXPORT_SYMBOL vmlinux 0x21ad4fb0 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x21bda0fd block_write_full_page_endio +EXPORT_SYMBOL vmlinux 0x21e422cc con_copy_unimap +EXPORT_SYMBOL vmlinux 0x21f678b9 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x220c43d8 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x22152aea dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x221dfde0 idr_pre_get +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222ed0c2 security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x223cc898 omap_vrfb_max_height +EXPORT_SYMBOL vmlinux 0x224ce473 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x225e909e schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x22687912 md_done_sync +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278822a sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x2288378f system_state +EXPORT_SYMBOL vmlinux 0x22966fdf __inet6_hash +EXPORT_SYMBOL vmlinux 0x229da012 omapfb_update_window +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22cdd887 omap_dss_unregister_driver +EXPORT_SYMBOL vmlinux 0x22faf035 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x231f9382 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x234961ca ip_check_defrag +EXPORT_SYMBOL vmlinux 0x2352f9f0 napi_complete +EXPORT_SYMBOL vmlinux 0x23532c4d ftrace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x238f0186 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x238ffcae filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x239cbc90 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23bb3ed7 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23e479bb generic_listxattr +EXPORT_SYMBOL vmlinux 0x23f7e3ef qdisc_tree_decrease_qlen +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246f375d nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24a8c6d3 flock_lock_file_wait +EXPORT_SYMBOL vmlinux 0x24adea99 mmc_regulator_set_ocr +EXPORT_SYMBOL vmlinux 0x24b5e1bc blk_start_request +EXPORT_SYMBOL vmlinux 0x24c27508 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x24c3bdfa led_brightness_set +EXPORT_SYMBOL vmlinux 0x24d1a922 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x24e47361 vm_insert_page +EXPORT_SYMBOL vmlinux 0x24ea9a2c inet_accept +EXPORT_SYMBOL vmlinux 0x24ebc45c ether_setup +EXPORT_SYMBOL vmlinux 0x24ee8884 security_inode_permission +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2510c07a brioctl_set +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252d7640 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x2534e723 inet_ioctl +EXPORT_SYMBOL vmlinux 0x25393104 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x253ba6bc xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x253fa495 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x256b0e9f input_get_keycode +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258355b4 fb_find_best_mode +EXPORT_SYMBOL vmlinux 0x2593b95a blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x2594843d do_sync_read +EXPORT_SYMBOL vmlinux 0x2596183b ppp_input_error +EXPORT_SYMBOL vmlinux 0x25a2c548 clk_get_parent +EXPORT_SYMBOL vmlinux 0x25c677c4 mac_pton +EXPORT_SYMBOL vmlinux 0x25ce2100 neigh_compat_output +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x265c21d3 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x267dcf29 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x26911e4d gen_new_estimator +EXPORT_SYMBOL vmlinux 0x26af5875 netlink_set_err +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26cc854e blkdev_get +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x2700b38a mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x272cfb1a nand_bch_init +EXPORT_SYMBOL vmlinux 0x2731598c kdb_current_task +EXPORT_SYMBOL vmlinux 0x2733a065 skb_recycle_check +EXPORT_SYMBOL vmlinux 0x2738e9a9 mem_cgroup_update_page_stat +EXPORT_SYMBOL vmlinux 0x2749cac4 misc_register +EXPORT_SYMBOL vmlinux 0x275f2520 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x278afe8a default_llseek +EXPORT_SYMBOL vmlinux 0x279644c0 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c90fd7 mount_nodev +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e59444 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28255c52 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x2830fee2 idr_get_next +EXPORT_SYMBOL vmlinux 0x2837e98f devm_ioremap +EXPORT_SYMBOL vmlinux 0x28448d4c end_page_writeback +EXPORT_SYMBOL vmlinux 0x2849057d inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x2864a688 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x288dba6b serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x2897fc48 omap_cfg_reg +EXPORT_SYMBOL vmlinux 0x289eb3c0 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28b21c0d tcp_child_process +EXPORT_SYMBOL vmlinux 0x28b8b764 take_over_console +EXPORT_SYMBOL vmlinux 0x28c86f60 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x28c9b96c twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x28d15abe md_unregister_thread +EXPORT_SYMBOL vmlinux 0x28d6861d __vmalloc +EXPORT_SYMBOL vmlinux 0x28d6b381 directly_mappable_cdev_bdi +EXPORT_SYMBOL vmlinux 0x28f969d9 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x2914eb9b xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x29422416 mii_link_ok +EXPORT_SYMBOL vmlinux 0x2943b292 blk_insert_request +EXPORT_SYMBOL vmlinux 0x29440350 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29716ced ethtool_op_get_ufo +EXPORT_SYMBOL vmlinux 0x29b96a8a inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x29ef186e netdev_bonding_change +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a0b130e lease_modify +EXPORT_SYMBOL vmlinux 0x2a287699 mmc_do_release_host +EXPORT_SYMBOL vmlinux 0x2a33f071 create_mnt_ns +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a472e5d follow_down_one +EXPORT_SYMBOL vmlinux 0x2a4b1386 read_cache_page_async +EXPORT_SYMBOL vmlinux 0x2a6e9db6 irq_set_chip +EXPORT_SYMBOL vmlinux 0x2a79ac13 clkdev_add +EXPORT_SYMBOL vmlinux 0x2a7d7e74 prepare_binprm +EXPORT_SYMBOL vmlinux 0x2a7f263c netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x2a931e2d d_splice_alias +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2ac6193b __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x2ad31074 fb_find_mode +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b19ea6d vfs_mkdir +EXPORT_SYMBOL vmlinux 0x2b226372 uart_resume_port +EXPORT_SYMBOL vmlinux 0x2b27042c twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b67686d pipe_to_file +EXPORT_SYMBOL vmlinux 0x2b688622 complete_and_exit +EXPORT_SYMBOL vmlinux 0x2b90cdaa mempool_create +EXPORT_SYMBOL vmlinux 0x2b939f11 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x2b956c84 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba776fb dquot_enable +EXPORT_SYMBOL vmlinux 0x2bab65b4 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x2bc12001 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x2bdd6e28 node_states +EXPORT_SYMBOL vmlinux 0x2bfedcc3 register_nls +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c19a9d7 wake_up_process +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c34cf48 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x2c5e4887 phy_scan_fixups +EXPORT_SYMBOL vmlinux 0x2c7c754c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x2c84361e register_framebuffer +EXPORT_SYMBOL vmlinux 0x2c85925c netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x2c905eb7 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x2cd4dc0d dquot_resume +EXPORT_SYMBOL vmlinux 0x2cf5ea3b dma_async_memcpy_buf_to_buf +EXPORT_SYMBOL vmlinux 0x2d0ca137 scsi_init_io +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d34a1b4 dq_data_lock +EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x2d7f44cc pl330_chan_status +EXPORT_SYMBOL vmlinux 0x2d89342a scsi_show_sense_hdr +EXPORT_SYMBOL vmlinux 0x2d9756d3 bioset_create +EXPORT_SYMBOL vmlinux 0x2dad7332 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x2db02804 ihold +EXPORT_SYMBOL vmlinux 0x2dd25f52 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x2df16dbd of_get_property +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2599aa blk_init_tags +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x2e59fc7a ab8500_gpadc_get +EXPORT_SYMBOL vmlinux 0x2e5ba275 tty_write_room +EXPORT_SYMBOL vmlinux 0x2e83d5ac generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x2e90c53e dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x2e91bf8c generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x2ea663d5 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2ea891e8 igrab +EXPORT_SYMBOL vmlinux 0x2eb9bb21 proc_dostring +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ecfa2ca dev_notice +EXPORT_SYMBOL vmlinux 0x2ee88ac5 netdev_crit +EXPORT_SYMBOL vmlinux 0x2eeceb42 sk_chk_filter +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f4a9f74 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x2f724d4e dev_activate +EXPORT_SYMBOL vmlinux 0x2fa33906 d_rehash +EXPORT_SYMBOL vmlinux 0x2fb4e323 dma_alloc_writecombine +EXPORT_SYMBOL vmlinux 0x2fc5f230 otg_set_transceiver +EXPORT_SYMBOL vmlinux 0x2fd85baf ___ratelimit +EXPORT_SYMBOL vmlinux 0x2ff69cc5 of_get_next_child +EXPORT_SYMBOL vmlinux 0x3006e61a inode_sb_list_lock +EXPORT_SYMBOL vmlinux 0x303034c5 htc_egpio_get_wakeup_irq +EXPORT_SYMBOL vmlinux 0x303b61c5 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x30605eb6 send_sig +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3089c5af genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x308aad56 omap_vrfb_min_phys_size +EXPORT_SYMBOL vmlinux 0x3092d85e omap2_mcbsp1_mux_fsr_src +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b3a90e of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x30cada8f radix_tree_next_hole +EXPORT_SYMBOL vmlinux 0x30dc6e1c sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30ef2764 __scsi_put_command +EXPORT_SYMBOL vmlinux 0x30fdef95 dentry_unhash +EXPORT_SYMBOL vmlinux 0x310206ab netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x3105f60d km_new_mapping +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x312e4056 da903x_query_status +EXPORT_SYMBOL vmlinux 0x31322739 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x3133a14b scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x314647de simple_readpage +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x316dd1cd __wait_on_bit +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31a28a1d led_blink_set +EXPORT_SYMBOL vmlinux 0x31a341e1 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31d66001 skb_recycle +EXPORT_SYMBOL vmlinux 0x32201435 simple_statfs +EXPORT_SYMBOL vmlinux 0x3240c65b files_lglock_global_lock_online +EXPORT_SYMBOL vmlinux 0x32512ece __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x32717b10 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32976034 udp_poll +EXPORT_SYMBOL vmlinux 0x32a5a3a6 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0x32a8f152 bio_map_kern +EXPORT_SYMBOL vmlinux 0x32d5eb64 dpi_check_timings +EXPORT_SYMBOL vmlinux 0x33091d9e of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x33294be5 backlight_device_register +EXPORT_SYMBOL vmlinux 0x332a6ae8 module_refcount +EXPORT_SYMBOL vmlinux 0x334d087f udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x335abbb4 nf_reinject +EXPORT_SYMBOL vmlinux 0x336923a5 request_key_async +EXPORT_SYMBOL vmlinux 0x3372d375 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x337e116e ab3100_event_register +EXPORT_SYMBOL vmlinux 0x33867a6e phy_connect_direct +EXPORT_SYMBOL vmlinux 0x3397c3f9 inode_init_owner +EXPORT_SYMBOL vmlinux 0x33a4ce4f mmc_host_disable +EXPORT_SYMBOL vmlinux 0x33adb0e6 dm_get_mapinfo +EXPORT_SYMBOL vmlinux 0x33c8edfb blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33ff1ba9 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x342e51a9 lro_flush_all +EXPORT_SYMBOL vmlinux 0x344e0fe5 seq_write +EXPORT_SYMBOL vmlinux 0x3455daba generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x3467040f simple_transaction_set +EXPORT_SYMBOL vmlinux 0x346aecb7 locks_free_lock +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347b0677 kthread_stop +EXPORT_SYMBOL vmlinux 0x347ca1e6 console_stop +EXPORT_SYMBOL vmlinux 0x34908c14 print_hex_dump_bytes +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34c8efbe of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x35064329 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x3511b38a max8925_reg_read +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x3548c277 file_remove_suid +EXPORT_SYMBOL vmlinux 0x357c90d2 qdisc_put_stab +EXPORT_SYMBOL vmlinux 0x35a153c9 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x35a16e51 pl330_release_channel +EXPORT_SYMBOL vmlinux 0x35a42857 d_invalidate +EXPORT_SYMBOL vmlinux 0x35baf007 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x35c2ba9e refrigerator +EXPORT_SYMBOL vmlinux 0x35ca8cfa dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0x35da67f4 omap_writew +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x361bce60 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x364b3fff up +EXPORT_SYMBOL vmlinux 0x365ccc07 ps2_drain +EXPORT_SYMBOL vmlinux 0x3698c09a blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x36b1f701 ethtool_op_set_tx_hw_csum +EXPORT_SYMBOL vmlinux 0x36c6694c nand_scan_tail +EXPORT_SYMBOL vmlinux 0x36e0e22c inet_add_protocol +EXPORT_SYMBOL vmlinux 0x36e360e3 __hw_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x371f6176 inet_release +EXPORT_SYMBOL vmlinux 0x37278da1 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x37439989 mii_check_link +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x376362d0 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x3773501b dquot_release +EXPORT_SYMBOL vmlinux 0x377a1885 omap_mcbsp_get_tx_delay +EXPORT_SYMBOL vmlinux 0x379f53a6 journal_dirty_data +EXPORT_SYMBOL vmlinux 0x379f5837 param_set_invbool +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c07b4c vfs_statfs +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37ea921e vfsmount_lock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x37f4626c init_task +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x380ddf83 tcf_em_register +EXPORT_SYMBOL vmlinux 0x3810cade ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x38184c68 omapdss_sdi_display_enable +EXPORT_SYMBOL vmlinux 0x382a8d5a request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x3831bd20 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x386d294d __vlan_find_dev_deep +EXPORT_SYMBOL vmlinux 0x387401a8 km_policy_expired +EXPORT_SYMBOL vmlinux 0x388f9128 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x3897222b pskb_copy +EXPORT_SYMBOL vmlinux 0x38b3bd64 bd_set_size +EXPORT_SYMBOL vmlinux 0x38bbd9db sync_blockdev +EXPORT_SYMBOL vmlinux 0x38c7f03c tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x38e2211f genphy_read_status +EXPORT_SYMBOL vmlinux 0x38f64f9e sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x38fab970 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x39001537 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x390b04d8 phy_device_free +EXPORT_SYMBOL vmlinux 0x3915d49e posix_test_lock +EXPORT_SYMBOL vmlinux 0x391bdd48 write_inode_now +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x394f19e0 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3980aac1 unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x399c87e4 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x39b00734 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x39c77bce jbd2_journal_release_buffer +EXPORT_SYMBOL vmlinux 0x39ccaa31 tcp_v4_md5_do_add +EXPORT_SYMBOL vmlinux 0x3a0a3a5b cpu_user +EXPORT_SYMBOL vmlinux 0x3a0c8911 scsi_prep_fn +EXPORT_SYMBOL vmlinux 0x3a0d7a1c kobject_set_name +EXPORT_SYMBOL vmlinux 0x3a2204c6 security_netlink_recv +EXPORT_SYMBOL vmlinux 0x3a22b910 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x3a60a589 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3a8788df __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x3a911f27 pl330_request_channel +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa2eb19 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x3abe3e3e dev_uc_flush +EXPORT_SYMBOL vmlinux 0x3ad27463 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x3afd8d8a kern_path_create +EXPORT_SYMBOL vmlinux 0x3b0160f0 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x3b048e5a abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x3b3016d3 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x3b3e35e5 netdev_set_bond_master +EXPORT_SYMBOL vmlinux 0x3b5cafa3 make_EII_client +EXPORT_SYMBOL vmlinux 0x3b6e2703 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x3bafd6be jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc325cc shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x3bd1b1f6 msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x3c1ef7c7 down_read_trylock +EXPORT_SYMBOL vmlinux 0x3c35a167 generic_file_aio_read +EXPORT_SYMBOL vmlinux 0x3c390a2b netif_carrier_off +EXPORT_SYMBOL vmlinux 0x3c6747cc netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x3c6d9f3b dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c953503 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x3c9d1211 string_get_size +EXPORT_SYMBOL vmlinux 0x3c9d5e8d omap_mcbsp_dma_ch_params +EXPORT_SYMBOL vmlinux 0x3ca3e999 kick_iocb +EXPORT_SYMBOL vmlinux 0x3ca5894f i2c_master_send +EXPORT_SYMBOL vmlinux 0x3cc578b6 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf63f19 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x3cf92bbc dma_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x3d17d905 phy_attach +EXPORT_SYMBOL vmlinux 0x3d31c155 dquot_acquire +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d5788b3 bio_alloc +EXPORT_SYMBOL vmlinux 0x3d79391c ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x3d91d077 notify_change +EXPORT_SYMBOL vmlinux 0x3d93ee61 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x3dc8a8e3 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x3dca8c76 bio_add_page +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd015eb block_read_full_page +EXPORT_SYMBOL vmlinux 0x3dd106a8 __netdev_printk +EXPORT_SYMBOL vmlinux 0x3dd66828 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x3ddf2d9b kmem_cache_free +EXPORT_SYMBOL vmlinux 0x3defa995 fb_class +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0e9023 param_set_long +EXPORT_SYMBOL vmlinux 0x3e1f8fad km_policy_notify +EXPORT_SYMBOL vmlinux 0x3e2648a2 omap_device_get_by_hwmod_name +EXPORT_SYMBOL vmlinux 0x3e2dcc20 kernel_connect +EXPORT_SYMBOL vmlinux 0x3e3eb3cb i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x3e44e8c7 scsi_reset_provider +EXPORT_SYMBOL vmlinux 0x3e45e9ff register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x3e884f4b vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3e8e81e3 current_fs_time +EXPORT_SYMBOL vmlinux 0x3e8eeaff single_open +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e968420 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x3ec8886f param_ops_int +EXPORT_SYMBOL vmlinux 0x3ed63055 zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x3f0ece72 vfs_link +EXPORT_SYMBOL vmlinux 0x3f137fec inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x3f375a6b request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f67000e mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x3f6b97c9 tty_set_operations +EXPORT_SYMBOL vmlinux 0x3f848e54 netdev_notice +EXPORT_SYMBOL vmlinux 0x3f916323 pl330_update +EXPORT_SYMBOL vmlinux 0x3fcb4294 serio_interrupt +EXPORT_SYMBOL vmlinux 0x3fd768ca tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x3fdef987 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x3ff62317 local_bh_disable +EXPORT_SYMBOL vmlinux 0x4023e88f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x4029d238 param_set_copystring +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x403bbe2d rtnl_notify +EXPORT_SYMBOL vmlinux 0x404495a3 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x4049a020 dma_unmap_sg +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x40762056 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409ecc50 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a2d1dd dm_table_get_size +EXPORT_SYMBOL vmlinux 0x40a6f522 __arm_ioremap +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40aecf2c jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x40b645a9 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40e4f549 km_state_expired +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40f6ee6f journal_get_write_access +EXPORT_SYMBOL vmlinux 0x4108e69a fb_match_mode +EXPORT_SYMBOL vmlinux 0x4128c13c security_path_link +EXPORT_SYMBOL vmlinux 0x412e2b2d kill_pid +EXPORT_SYMBOL vmlinux 0x41352dfe blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x415e2703 d_genocide +EXPORT_SYMBOL vmlinux 0x4183fe70 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x41854abe ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41b21be9 dcache_readdir +EXPORT_SYMBOL vmlinux 0x41b3a2da journal_clear_err +EXPORT_SYMBOL vmlinux 0x41bfc910 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x41cb58d6 put_disk +EXPORT_SYMBOL vmlinux 0x41ede441 ip_mc_rejoin_groups +EXPORT_SYMBOL vmlinux 0x41f2d779 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x42051653 mmc_free_host +EXPORT_SYMBOL vmlinux 0x4211c3c1 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x42224298 sscanf +EXPORT_SYMBOL vmlinux 0x4230a91d dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x423e829e __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x425456c9 cpu_cache +EXPORT_SYMBOL vmlinux 0x4265903f ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x428e7fcb dquot_scan_active +EXPORT_SYMBOL vmlinux 0x42977ad4 __hw_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x42aa785d sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x42b61416 elv_register_queue +EXPORT_SYMBOL vmlinux 0x42b7e2ee dev_addr_del_multiple +EXPORT_SYMBOL vmlinux 0x42beac74 file_open_root +EXPORT_SYMBOL vmlinux 0x42d54694 would_dump +EXPORT_SYMBOL vmlinux 0x42e4cada tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x42ec3144 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x42f8c514 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4319f528 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x431e632a block_commit_write +EXPORT_SYMBOL vmlinux 0x432cce61 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x4347b971 idr_init +EXPORT_SYMBOL vmlinux 0x43a0458b blk_start_plug +EXPORT_SYMBOL vmlinux 0x43a1602d i2c_master_recv +EXPORT_SYMBOL vmlinux 0x43aab608 nf_afinfo +EXPORT_SYMBOL vmlinux 0x43b45a39 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x43e4b9f7 blk_get_request +EXPORT_SYMBOL vmlinux 0x43e6723f of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x43e687b6 blk_integrity_is_initialized +EXPORT_SYMBOL vmlinux 0x43eb1942 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43fd31cb vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x441ed159 omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443f9e9e blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x44402b6f param_get_ulong +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x444a68cd kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4459bb36 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x44697713 proto_unregister +EXPORT_SYMBOL vmlinux 0x44acecec tc_classify +EXPORT_SYMBOL vmlinux 0x44b911c3 rb_replace_node +EXPORT_SYMBOL vmlinux 0x44c20050 request_firmware +EXPORT_SYMBOL vmlinux 0x44c7790c d_lookup +EXPORT_SYMBOL vmlinux 0x44c92dc0 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x44c9ca7d phy_register_fixup +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x450efe85 sk_common_release +EXPORT_SYMBOL vmlinux 0x451dbf5d prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x452a009d mmc_add_host +EXPORT_SYMBOL vmlinux 0x4564fe50 dquot_disable +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4581a3e9 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a64dd3 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x45a8fbaa down_timeout +EXPORT_SYMBOL vmlinux 0x45b10bdf dma_async_memcpy_pg_to_pg +EXPORT_SYMBOL vmlinux 0x45bd9efd dm_table_put +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45c4ab32 security_path_chown +EXPORT_SYMBOL vmlinux 0x45ca648a set_bh_page +EXPORT_SYMBOL vmlinux 0x45d216b9 tcp_put_md5sig_pool +EXPORT_SYMBOL vmlinux 0x45f78335 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x46041d3b of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x460dd565 bdget_disk +EXPORT_SYMBOL vmlinux 0x460ea1c5 udplite_table +EXPORT_SYMBOL vmlinux 0x46214106 files_lglock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x46219344 pipe_lock +EXPORT_SYMBOL vmlinux 0x4628dc33 omap_vram_alloc +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x463602b6 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x46446595 genl_register_mc_group +EXPORT_SYMBOL vmlinux 0x465b2cba sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x465d6fa2 read_cache_page +EXPORT_SYMBOL vmlinux 0x467fac72 d_find_alias +EXPORT_SYMBOL vmlinux 0x4682f45f blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x46900e8a skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x46bee24b __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x46c4b962 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x46ca9a19 do_splice_direct +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46d5a913 uart_register_driver +EXPORT_SYMBOL vmlinux 0x46e226d7 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x46f33065 dst_discard +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470b18c3 scsi_nonblockable_ioctl +EXPORT_SYMBOL vmlinux 0x471cb5ea dst_alloc +EXPORT_SYMBOL vmlinux 0x475100c2 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47a2387b __pagevec_release +EXPORT_SYMBOL vmlinux 0x47b3f862 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x47b6a10f ftrace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x47ee83ff seq_release +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x48045a11 dm_put_device +EXPORT_SYMBOL vmlinux 0x4816d258 sock_register +EXPORT_SYMBOL vmlinux 0x48284556 contig_page_data +EXPORT_SYMBOL vmlinux 0x483ec199 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x484b080b mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x4852a0f7 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48650d50 set_device_ro +EXPORT_SYMBOL vmlinux 0x4870874e kstat +EXPORT_SYMBOL vmlinux 0x487ac528 serio_reconnect +EXPORT_SYMBOL vmlinux 0x48a4083b cap_file_mmap +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48a6cda8 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x48c49d34 proc_mkdir +EXPORT_SYMBOL vmlinux 0x48cf17af key_payload_reserve +EXPORT_SYMBOL vmlinux 0x48cf79e5 netif_skb_features +EXPORT_SYMBOL vmlinux 0x48e9d397 ps2_init +EXPORT_SYMBOL vmlinux 0x491beb48 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x491e09cb bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x49239e48 vc_cons +EXPORT_SYMBOL vmlinux 0x493408af sock_create +EXPORT_SYMBOL vmlinux 0x494d666c path_put +EXPORT_SYMBOL vmlinux 0x49508d0a proc_net_netfilter +EXPORT_SYMBOL vmlinux 0x4953ccbe dev_mc_add +EXPORT_SYMBOL vmlinux 0x495eded2 blk_start_queue +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x497a4992 have_submounts +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49c05c3d module_put +EXPORT_SYMBOL vmlinux 0x49c8aee7 of_phy_connect_fixed_link +EXPORT_SYMBOL vmlinux 0x49cd4cf9 i2c_smbus_process_call +EXPORT_SYMBOL vmlinux 0x49e71c5d ip6_xmit +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f8750d dcache_dir_close +EXPORT_SYMBOL vmlinux 0x4a028788 console_start +EXPORT_SYMBOL vmlinux 0x4a17ab57 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x4a2d1931 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x4a358252 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x4a37af33 ___dma_single_cpu_to_dev +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a5f001f lookup_hash +EXPORT_SYMBOL vmlinux 0x4a6179ea netif_notify_peers +EXPORT_SYMBOL vmlinux 0x4a6bccbf generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x4a895aae scsi_prep_return +EXPORT_SYMBOL vmlinux 0x4aa09d20 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x4aaab2b1 groups_alloc +EXPORT_SYMBOL vmlinux 0x4aaf99b4 arp_find +EXPORT_SYMBOL vmlinux 0x4ab44a27 ll_rw_block +EXPORT_SYMBOL vmlinux 0x4ab952b3 __get_page_tail +EXPORT_SYMBOL vmlinux 0x4abdb61c seq_printf +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b0f18bc kfree_skb +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b20cbd2 ida_remove +EXPORT_SYMBOL vmlinux 0x4b34fbf5 block_all_signals +EXPORT_SYMBOL vmlinux 0x4b46c610 netdev_features_change +EXPORT_SYMBOL vmlinux 0x4b4d5854 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b60ed03 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x4bc96635 ifla_policy +EXPORT_SYMBOL vmlinux 0x4bcda527 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x4c1182cb bitmap_scnprintf +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c317dc0 register_console +EXPORT_SYMBOL vmlinux 0x4c33f10a omap_dss_get_overlay +EXPORT_SYMBOL vmlinux 0x4c367a6c km_report +EXPORT_SYMBOL vmlinux 0x4c36a4ad remap_pfn_range +EXPORT_SYMBOL vmlinux 0x4c716c1d check_disk_change +EXPORT_SYMBOL vmlinux 0x4cbbd171 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x4ce75007 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x4d025d04 vfs_stat +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d10f97e jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x4d333b67 ip_defrag +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d538a62 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x4d75cb19 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4d8538a5 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4da78837 bh_submit_read +EXPORT_SYMBOL vmlinux 0x4dbe8960 dqget +EXPORT_SYMBOL vmlinux 0x4dbf0961 blk_complete_request +EXPORT_SYMBOL vmlinux 0x4dc31126 grab_cache_page_nowait +EXPORT_SYMBOL vmlinux 0x4dc45be9 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df7eba7 input_register_handler +EXPORT_SYMBOL vmlinux 0x4e055e36 mmc_release_host +EXPORT_SYMBOL vmlinux 0x4e069249 security_tun_dev_post_create +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3808f4 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x4e4ce12f kill_pgrp +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e748dcd down_read +EXPORT_SYMBOL vmlinux 0x4e79ccfb clk_round_rate +EXPORT_SYMBOL vmlinux 0x4e7dc8be scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x4e830a3e strnicmp +EXPORT_SYMBOL vmlinux 0x4e9245f8 iget_locked +EXPORT_SYMBOL vmlinux 0x4e98439b blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x4ea008ff vfs_readlink +EXPORT_SYMBOL vmlinux 0x4edb343a mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x4f049842 unlock_page +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2089e1 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f4a62c1 lookup_one_len +EXPORT_SYMBOL vmlinux 0x4f5caf07 setup_new_exec +EXPORT_SYMBOL vmlinux 0x4f6618ca follow_up +EXPORT_SYMBOL vmlinux 0x4f6aeda7 invalidate_partition +EXPORT_SYMBOL vmlinux 0x4f7bae0c scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x4f7d0677 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x4f898d65 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f9364b7 i2c_transfer +EXPORT_SYMBOL vmlinux 0x4f9e5056 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x4fa5954d scsi_adjust_queue_depth +EXPORT_SYMBOL vmlinux 0x4fab7b49 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x4fba3c9d submit_bh +EXPORT_SYMBOL vmlinux 0x4fd17eaa genphy_resume +EXPORT_SYMBOL vmlinux 0x4ff1c9bc populate_rootfs_wait +EXPORT_SYMBOL vmlinux 0x4ffdc3b8 secpath_dup +EXPORT_SYMBOL vmlinux 0x5014c7f5 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x50211ee3 tcp_free_md5sig_pool +EXPORT_SYMBOL vmlinux 0x50359fc0 destroy_EII_client +EXPORT_SYMBOL vmlinux 0x5037a7e3 mmc_try_claim_host +EXPORT_SYMBOL vmlinux 0x50390190 journal_release_buffer +EXPORT_SYMBOL vmlinux 0x506746b6 getrawmonotonic +EXPORT_SYMBOL vmlinux 0x506d97f5 omap_readl +EXPORT_SYMBOL vmlinux 0x506ed1b4 filp_close +EXPORT_SYMBOL vmlinux 0x50aa4d74 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x50ab4c6d files_lglock_global_lock +EXPORT_SYMBOL vmlinux 0x50c71330 idr_get_new +EXPORT_SYMBOL vmlinux 0x50ccff03 omap_dma_set_prio_lch +EXPORT_SYMBOL vmlinux 0x50e0eb52 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x510ab276 thermal_zone_bind_cooling_device +EXPORT_SYMBOL vmlinux 0x511746c1 dump_fpu +EXPORT_SYMBOL vmlinux 0x511828db tty_check_change +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51190daa scsi_setup_fs_cmnd +EXPORT_SYMBOL vmlinux 0x514d18d9 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x515ce579 elv_add_request +EXPORT_SYMBOL vmlinux 0x5169161d omap_free_dma_chain +EXPORT_SYMBOL vmlinux 0x5179dd50 kset_unregister +EXPORT_SYMBOL vmlinux 0x51908eb8 __raw_writesl +EXPORT_SYMBOL vmlinux 0x519cfb95 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x51abe1f1 netif_device_attach +EXPORT_SYMBOL vmlinux 0x51af0093 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x51ce5ad3 files_lglock_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x51da7da4 bdevname +EXPORT_SYMBOL vmlinux 0x51dce73b xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f91f86 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x522c4f25 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x523d06ed tty_port_open +EXPORT_SYMBOL vmlinux 0x52760ca9 getnstimeofday +EXPORT_SYMBOL vmlinux 0x528545af mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x52a3e3da elv_rb_del +EXPORT_SYMBOL vmlinux 0x52acb8ae find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x52c65831 skb_dequeue +EXPORT_SYMBOL vmlinux 0x52dacdc3 bio_sector_offset +EXPORT_SYMBOL vmlinux 0x52ebf701 cap_netlink_recv +EXPORT_SYMBOL vmlinux 0x52efd766 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x5331eabb ida_simple_get +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53399833 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x5358d95d security_path_rename +EXPORT_SYMBOL vmlinux 0x537234b8 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x538383c0 unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x53921e73 mem_cgroup_count_vm_event +EXPORT_SYMBOL vmlinux 0x5397f2d3 posix_acl_init +EXPORT_SYMBOL vmlinux 0x539fc6cc tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x53a3eb6c security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x53ae0f38 omap_st_enable +EXPORT_SYMBOL vmlinux 0x53b1657b md_check_recovery +EXPORT_SYMBOL vmlinux 0x53b209c5 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x53ba4e7c up_write +EXPORT_SYMBOL vmlinux 0x53e44239 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x53ead02e do_splice_from +EXPORT_SYMBOL vmlinux 0x542bab02 __nla_reserve +EXPORT_SYMBOL vmlinux 0x542c2a07 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544007fd __cleancache_flush_fs +EXPORT_SYMBOL vmlinux 0x5461a80e udp_sendmsg +EXPORT_SYMBOL vmlinux 0x54787d2b dquot_initialize +EXPORT_SYMBOL vmlinux 0x54800352 write_one_page +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b04430 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e76a99 ata_port_printk +EXPORT_SYMBOL vmlinux 0x552925f2 tcp_v4_get_peer +EXPORT_SYMBOL vmlinux 0x5538a53b sock_kfree_s +EXPORT_SYMBOL vmlinux 0x5544eeaf __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x55475501 skb_gso_segment +EXPORT_SYMBOL vmlinux 0x555c35c1 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x55777d22 of_node_get +EXPORT_SYMBOL vmlinux 0x5594be03 bitmap_remap +EXPORT_SYMBOL vmlinux 0x55ad8a12 unregister_nls +EXPORT_SYMBOL vmlinux 0x55bb2f98 thermal_zone_device_unregister +EXPORT_SYMBOL vmlinux 0x55caf04e netdev_update_features +EXPORT_SYMBOL vmlinux 0x55d4138c blk_rq_init +EXPORT_SYMBOL vmlinux 0x55d9ea31 dcb_getapp +EXPORT_SYMBOL vmlinux 0x55eca41c blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x55f97c7d ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x5600904f fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x56079fe4 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x560afe44 prepare_creds +EXPORT_SYMBOL vmlinux 0x560d1158 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x5614b010 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x562151d3 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x562610ee i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x562ad513 interruptible_sleep_on +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5642793a radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x5669ec47 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x56789ac5 omap_set_dma_color_mode +EXPORT_SYMBOL vmlinux 0x569484a9 path_get +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d056eb scsi_remove_device +EXPORT_SYMBOL vmlinux 0x56da5205 sk_stream_error +EXPORT_SYMBOL vmlinux 0x56da7742 journal_check_used_features +EXPORT_SYMBOL vmlinux 0x57253d13 keyring_clear +EXPORT_SYMBOL vmlinux 0x5725b749 __register_binfmt +EXPORT_SYMBOL vmlinux 0x57284bc6 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5730a8b2 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x573e6569 journal_create +EXPORT_SYMBOL vmlinux 0x5745e809 journal_abort +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5790f11b iterate_mounts +EXPORT_SYMBOL vmlinux 0x57b57ebe jiffies_to_timespec +EXPORT_SYMBOL vmlinux 0x57d1796f journal_get_create_access +EXPORT_SYMBOL vmlinux 0x57da876b jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x57db7242 mangle_path +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583fedcd i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x5843f76c pl330_add +EXPORT_SYMBOL vmlinux 0x584f9dc0 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x5851e42d generic_ro_fops +EXPORT_SYMBOL vmlinux 0x587ca8f1 generic_make_request +EXPORT_SYMBOL vmlinux 0x589895aa dquot_destroy +EXPORT_SYMBOL vmlinux 0x58bddc29 inode_permission +EXPORT_SYMBOL vmlinux 0x58f127ae inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x58ff98e1 journal_force_commit +EXPORT_SYMBOL vmlinux 0x59016bd0 tty_throttle +EXPORT_SYMBOL vmlinux 0x5907ef33 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x592f4013 seq_read +EXPORT_SYMBOL vmlinux 0x5934392b fb_register_client +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x594fd546 omap_prcm_get_reset_sources +EXPORT_SYMBOL vmlinux 0x595fe606 is_bad_inode +EXPORT_SYMBOL vmlinux 0x599854c4 cont_write_begin +EXPORT_SYMBOL vmlinux 0x59a4adc1 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x59c65d3c scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x59cd2023 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x59d696b6 register_module_notifier +EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource +EXPORT_SYMBOL vmlinux 0x59da0d45 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59e70f93 __send_remote_softirq +EXPORT_SYMBOL vmlinux 0x5a0114d6 journal_destroy +EXPORT_SYMBOL vmlinux 0x5a0ff06f __d_drop +EXPORT_SYMBOL vmlinux 0x5a3f64bf cdev_alloc +EXPORT_SYMBOL vmlinux 0x5a46b6e5 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x5a54d12d arp_invalidate +EXPORT_SYMBOL vmlinux 0x5a6b7db3 __destroy_inode +EXPORT_SYMBOL vmlinux 0x5a71e728 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x5a744b86 netlink_set_nonroot +EXPORT_SYMBOL vmlinux 0x5a746d0d of_dev_get +EXPORT_SYMBOL vmlinux 0x5a7dd0f3 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x5a98358d kill_litter_super +EXPORT_SYMBOL vmlinux 0x5a98e193 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x5ab12523 noop_llseek +EXPORT_SYMBOL vmlinux 0x5ab24da6 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x5acdc5a1 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x5ad2c81c blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x5af11b96 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x5b0c0d3f __get_user_pages +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b23b72c try_to_release_page +EXPORT_SYMBOL vmlinux 0x5b334156 down_killable +EXPORT_SYMBOL vmlinux 0x5b39f539 of_match_device +EXPORT_SYMBOL vmlinux 0x5b679ea4 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x5b91ccfe fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x5bd373cb genl_unregister_family +EXPORT_SYMBOL vmlinux 0x5be7be74 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5bf4a1eb sg_last +EXPORT_SYMBOL vmlinux 0x5c1b3db6 tty_shutdown +EXPORT_SYMBOL vmlinux 0x5c3a393c tty_kref_put +EXPORT_SYMBOL vmlinux 0x5c5d12e2 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x5c920441 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c9b36f1 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x5cce7c6e sock_map_fd +EXPORT_SYMBOL vmlinux 0x5d597f19 __lock_buffer +EXPORT_SYMBOL vmlinux 0x5d5b5a16 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x5d636486 kern_path +EXPORT_SYMBOL vmlinux 0x5d668295 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x5d73cf7b tcp_poll +EXPORT_SYMBOL vmlinux 0x5d7ad37e omap_mcbsp_set_rx_threshold +EXPORT_SYMBOL vmlinux 0x5db68931 __dev_printk +EXPORT_SYMBOL vmlinux 0x5dbb8d6a elv_abort_queue +EXPORT_SYMBOL vmlinux 0x5e28e316 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5e29a312 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x5e36b68a sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x5e4abadf generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x5e60eb27 omap_dma_unlink_lch +EXPORT_SYMBOL vmlinux 0x5e6947f7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea2ffba dquot_commit +EXPORT_SYMBOL vmlinux 0x5ea52ddb scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb9f7a8 ethtool_op_set_flags +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5edd0762 bin2bcd +EXPORT_SYMBOL vmlinux 0x5edfd266 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x5ef40da6 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x5ef4d861 seq_bitmap +EXPORT_SYMBOL vmlinux 0x5effa3b8 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f0a7a9f filemap_fault +EXPORT_SYMBOL vmlinux 0x5f54ff66 thermal_zone_device_update +EXPORT_SYMBOL vmlinux 0x5f58f676 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x5f6ae12e bio_split +EXPORT_SYMBOL vmlinux 0x5f6e42ef tcf_hash_lookup +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f99be1f __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x5fa17c73 sk_filter_release_rcu +EXPORT_SYMBOL vmlinux 0x5faeb40e of_device_is_available +EXPORT_SYMBOL vmlinux 0x5fb29f15 bio_integrity_tag_size +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x60324511 input_event +EXPORT_SYMBOL vmlinux 0x6032d149 redraw_screen +EXPORT_SYMBOL vmlinux 0x60481995 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x6048eb7b dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x60654c98 mmc_card_sleep +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6076537b crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60a36d36 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x60c72b34 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x60ed5f43 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x60f71cfa complete +EXPORT_SYMBOL vmlinux 0x612390ad netpoll_set_trap +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x61363a07 sk_free +EXPORT_SYMBOL vmlinux 0x6155391f kernel_read +EXPORT_SYMBOL vmlinux 0x61a79f08 __irq_regs +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bd88a9 file_update_time +EXPORT_SYMBOL vmlinux 0x61c65573 tty_hangup +EXPORT_SYMBOL vmlinux 0x61f1879b xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x61f1df4c invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x61f33f41 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x621c6bd7 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622b0d08 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x6234c618 bio_clone +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62b4b85c account_page_dirtied +EXPORT_SYMBOL vmlinux 0x62b72b0d mutex_unlock +EXPORT_SYMBOL vmlinux 0x62c4944c ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x62cc569e cpu_present_mask +EXPORT_SYMBOL vmlinux 0x62d17433 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x62f906ae jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x6301b06c simple_getattr +EXPORT_SYMBOL vmlinux 0x6305bd63 skb_pad +EXPORT_SYMBOL vmlinux 0x632cb0eb qdisc_destroy +EXPORT_SYMBOL vmlinux 0x63326843 md_write_start +EXPORT_SYMBOL vmlinux 0x6332cc1a audit_log_start +EXPORT_SYMBOL vmlinux 0x6334ffdb security_path_truncate +EXPORT_SYMBOL vmlinux 0x6337dfce ab8500_gpadc_convert +EXPORT_SYMBOL vmlinux 0x63683e39 sk_filter +EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL vmlinux 0x63a908dd inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x63ab2604 irq_stat +EXPORT_SYMBOL vmlinux 0x63c27bd1 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x63d1d5f6 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x63d8cf83 inode_change_ok +EXPORT_SYMBOL vmlinux 0x63de7f3c tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x63dfeddd unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63ec98f5 revalidate_disk +EXPORT_SYMBOL vmlinux 0x63ecad53 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64293cc6 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x6435507c xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x643eaec8 param_get_string +EXPORT_SYMBOL vmlinux 0x645c4a3e del_gendisk +EXPORT_SYMBOL vmlinux 0x647fa9f0 bdget +EXPORT_SYMBOL vmlinux 0x6485cc92 scsi_host_put +EXPORT_SYMBOL vmlinux 0x648a9d1f unregister_netdev +EXPORT_SYMBOL vmlinux 0x64975178 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649f67d5 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x64c337a0 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x64c6bddb set_user_nice +EXPORT_SYMBOL vmlinux 0x64d233c8 ioremap_page +EXPORT_SYMBOL vmlinux 0x64f3ebaa dm_unregister_target +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65291cff timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0x652d9a20 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65414e67 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6585e310 alloc_pages_exact_nid +EXPORT_SYMBOL vmlinux 0x659de40e rt6_lookup +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x6605f97f flex_array_clear +EXPORT_SYMBOL vmlinux 0x6609b110 tcf_hash_release +EXPORT_SYMBOL vmlinux 0x662ba15d cfb_imageblit +EXPORT_SYMBOL vmlinux 0x6633392f ip6_frag_match +EXPORT_SYMBOL vmlinux 0x663c8386 drop_super +EXPORT_SYMBOL vmlinux 0x66859174 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x668da8d5 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x668fbbd4 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x66955802 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x669cde87 blk_put_request +EXPORT_SYMBOL vmlinux 0x669dd28a posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x66a67dab flex_array_shrink +EXPORT_SYMBOL vmlinux 0x66b1a2e4 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x66d0ee54 vfsmount_lock_global_unlock +EXPORT_SYMBOL vmlinux 0x66d16cd0 blk_make_request +EXPORT_SYMBOL vmlinux 0x66e0cb8c bio_integrity_set_tag +EXPORT_SYMBOL vmlinux 0x67053080 current_kernel_time +EXPORT_SYMBOL vmlinux 0x6707087f of_n_size_cells +EXPORT_SYMBOL vmlinux 0x6717ef27 cad_pid +EXPORT_SYMBOL vmlinux 0x6744b844 mmc_host_enable +EXPORT_SYMBOL vmlinux 0x6754444f mmc_request_done +EXPORT_SYMBOL vmlinux 0x675dc831 user_path_at +EXPORT_SYMBOL vmlinux 0x67636ba8 may_umount_tree +EXPORT_SYMBOL vmlinux 0x67652f94 inet6_getname +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x67728d29 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x6772d25a amba_device_register +EXPORT_SYMBOL vmlinux 0x678ba972 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x67946506 __netif_schedule +EXPORT_SYMBOL vmlinux 0x67af6aff generic_write_sync +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67be1d3d cpu_active_mask +EXPORT_SYMBOL vmlinux 0x67dcbcba sock_kmalloc +EXPORT_SYMBOL vmlinux 0x67fb15ef journal_update_format +EXPORT_SYMBOL vmlinux 0x682fdabd neigh_table_clear +EXPORT_SYMBOL vmlinux 0x6853a5f5 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x686cd471 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x6876a3c4 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x687740d3 call_usermodehelper_setfns +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68809975 bio_copy_user +EXPORT_SYMBOL vmlinux 0x6892fe01 nand_correct_data +EXPORT_SYMBOL vmlinux 0x689ce94a ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x68bb48c5 dev_uc_add +EXPORT_SYMBOL vmlinux 0x68bba7aa qdisc_list_del +EXPORT_SYMBOL vmlinux 0x69131aca simple_empty +EXPORT_SYMBOL vmlinux 0x691774c4 cpu_sysdev_class +EXPORT_SYMBOL vmlinux 0x691e6132 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x6934cce5 dma_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x693d2e2a blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x6973606c omap_st_get_chgain +EXPORT_SYMBOL vmlinux 0x69838c06 __block_write_begin +EXPORT_SYMBOL vmlinux 0x6995a798 dev_set_group +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b1d6fb seq_lseek +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69c75b89 bdi_destroy +EXPORT_SYMBOL vmlinux 0x69d38ed9 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x69d7300a blk_end_request +EXPORT_SYMBOL vmlinux 0x69e27c7a bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x69eb5a0e iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x6a0177ad tty_pair_get_pty +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a30d8b8 sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x6a41d3ad wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x6a484d98 ilookup5 +EXPORT_SYMBOL vmlinux 0x6a559116 rtc_lock +EXPORT_SYMBOL vmlinux 0x6a6ccfc1 mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0x6a7426ba register_filesystem +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a8ff06f dev_addr_add +EXPORT_SYMBOL vmlinux 0x6a8ff6b8 log_start_commit +EXPORT_SYMBOL vmlinux 0x6a94aa14 cdev_del +EXPORT_SYMBOL vmlinux 0x6a95e504 otg_get_transceiver +EXPORT_SYMBOL vmlinux 0x6af6c348 netdev_set_master +EXPORT_SYMBOL vmlinux 0x6aff2ac2 of_register_spi_devices +EXPORT_SYMBOL vmlinux 0x6b03eb70 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b5772cf scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x6b5a7057 ida_destroy +EXPORT_SYMBOL vmlinux 0x6b5fce35 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x6b7908bb jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x6baae653 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c139734 iunique +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c29d9e4 set_create_files_as +EXPORT_SYMBOL vmlinux 0x6c345ab4 tcp_syn_flood_action +EXPORT_SYMBOL vmlinux 0x6c4106cc blk_queue_merge_bvec +EXPORT_SYMBOL vmlinux 0x6c48893b tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6ccf7bd7 __pv_phys_offset +EXPORT_SYMBOL vmlinux 0x6cd683d9 tty_pair_get_tty +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cef462f phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x6cf9f443 elevator_init +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d175c6d sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x6d27ef64 __bitmap_empty +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d58972c inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x6d5e2e4a __napi_schedule +EXPORT_SYMBOL vmlinux 0x6d5fd516 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d6a5439 ____pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x6d6cbadc rb_last +EXPORT_SYMBOL vmlinux 0x6d776769 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x6d9e0ef7 dev_emerg +EXPORT_SYMBOL vmlinux 0x6dad6bb0 otg_put_transceiver +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df9ee17 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x6e3c0892 bio_pair_release +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ee0f71b scsi_setup_blk_pc_cmnd +EXPORT_SYMBOL vmlinux 0x6f13ff99 __f_setown +EXPORT_SYMBOL vmlinux 0x6f670da9 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x6f73a4fb proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x6f7eed28 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x6f9bb376 get_gendisk +EXPORT_SYMBOL vmlinux 0x6f9f983f tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x6fc5d6df ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fed65c9 submit_bio +EXPORT_SYMBOL vmlinux 0x6ff910ce genphy_suspend +EXPORT_SYMBOL vmlinux 0x6fff393f time_to_tm +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x70157711 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x70217799 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x70331c1c nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x70543618 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x705a271f blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x70824fe9 vfs_create +EXPORT_SYMBOL vmlinux 0x708f242a netif_rx_ni +EXPORT_SYMBOL vmlinux 0x70bc17d7 inode_wait +EXPORT_SYMBOL vmlinux 0x70d053fd try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x70dd1a12 gpmc_cs_configure +EXPORT_SYMBOL vmlinux 0x70e283cd tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x70eb531e cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x71003efd devm_iounmap +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x71522333 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x715dac52 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x716f93e6 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717b4887 dst_release +EXPORT_SYMBOL vmlinux 0x718de063 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x719160ed textsearch_register +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71bbe00e dquot_file_open +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71d1d4cf __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x71d768e4 nand_unlock +EXPORT_SYMBOL vmlinux 0x721ddb37 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x72326028 cdev_add +EXPORT_SYMBOL vmlinux 0x7234eafb otg_state_string +EXPORT_SYMBOL vmlinux 0x72570e0b tcf_action_exec +EXPORT_SYMBOL vmlinux 0x7258431b kobject_del +EXPORT_SYMBOL vmlinux 0x7277dc80 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x72aa82c6 param_ops_charp +EXPORT_SYMBOL vmlinux 0x72baeed0 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x72bb6892 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x72c07871 kernel_listen +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72e50086 vm_stat +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f7f14e page_put_link +EXPORT_SYMBOL vmlinux 0x730ff363 param_set_uint +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73303c40 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x73453c21 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x734c8283 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x7362dd1e vfs_fstat +EXPORT_SYMBOL vmlinux 0x736c79dc param_get_byte +EXPORT_SYMBOL vmlinux 0x737de5e9 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x73864a3b unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x73a7cdcd find_vma +EXPORT_SYMBOL vmlinux 0x73a903c4 vfsmount_lock_local_lock +EXPORT_SYMBOL vmlinux 0x73a98714 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x73cee276 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73eb9308 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x73ed43a6 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x73ef8f2b neigh_table_init_no_netlink +EXPORT_SYMBOL vmlinux 0x740bd35a xfrm_register_type +EXPORT_SYMBOL vmlinux 0x7444a46e blk_get_queue +EXPORT_SYMBOL vmlinux 0x7469fcfe radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x746d4ad9 key_task_permission +EXPORT_SYMBOL vmlinux 0x7483a5a9 kobject_add +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d327dd mnt_pin +EXPORT_SYMBOL vmlinux 0x74f1b55c twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x74f2cafb __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75148ee1 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x7518d062 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x751b2247 param_get_bool +EXPORT_SYMBOL vmlinux 0x753cc50d generic_write_checks +EXPORT_SYMBOL vmlinux 0x753d1fb9 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x753d64a7 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x7561092c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x757a08f8 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75a17bed prepare_to_wait +EXPORT_SYMBOL vmlinux 0x75a49237 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x75bd0d19 mount_single +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75ddac15 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x75f0e04c complete_request_key +EXPORT_SYMBOL vmlinux 0x75fbd90d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x75fee7fd __raw_writesb +EXPORT_SYMBOL vmlinux 0x7601a211 nobh_write_end +EXPORT_SYMBOL vmlinux 0x7602fc6b twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760b437a unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x760d6dc1 generic_removexattr +EXPORT_SYMBOL vmlinux 0x761ac6d8 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x7634e6b5 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7650873a thaw_super +EXPORT_SYMBOL vmlinux 0x765b8bd1 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x765c770a security_inode_readlink +EXPORT_SYMBOL vmlinux 0x76694591 omap_mcbsp_get_max_tx_threshold +EXPORT_SYMBOL vmlinux 0x76881360 leds_event +EXPORT_SYMBOL vmlinux 0x7698be8f netpoll_print_options +EXPORT_SYMBOL vmlinux 0x76b5a25a __ip_select_ident +EXPORT_SYMBOL vmlinux 0x76bf656d __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x76ca0495 journal_errno +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d9737c kernel_getpeername +EXPORT_SYMBOL vmlinux 0x76ed3235 thermal_zone_device_register +EXPORT_SYMBOL vmlinux 0x771e1934 do_SAK +EXPORT_SYMBOL vmlinux 0x77338684 of_i2c_register_devices +EXPORT_SYMBOL vmlinux 0x773a9c94 blk_iopoll_enabled +EXPORT_SYMBOL vmlinux 0x7769ee07 fb_set_var +EXPORT_SYMBOL vmlinux 0x776c0fc9 input_register_device +EXPORT_SYMBOL vmlinux 0x7770a576 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x77762416 input_open_device +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a6000b page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x77a70817 cdrom_release +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77df0847 __set_personality +EXPORT_SYMBOL vmlinux 0x77df7466 set_binfmt +EXPORT_SYMBOL vmlinux 0x77ecac9f zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x77ece177 nand_scan +EXPORT_SYMBOL vmlinux 0x77edf722 schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x77fa5d1f ns_to_timespec +EXPORT_SYMBOL vmlinux 0x77fbcb1e mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x78347e17 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7885e2b3 wait_on_sync_kiocb +EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource +EXPORT_SYMBOL vmlinux 0x78a6f168 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x7906cd83 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x790ee81c md_flush_request +EXPORT_SYMBOL vmlinux 0x794487ee disable_hlt +EXPORT_SYMBOL vmlinux 0x7948a3bd sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x796626cb generic_file_splice_write +EXPORT_SYMBOL vmlinux 0x796d56bd __init_rwsem +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x798462f8 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x798b2491 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x79a0b08b neigh_direct_output +EXPORT_SYMBOL vmlinux 0x79a3ae7d stop_tty +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79eb9ff3 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x79f04ebc tcp_v4_tw_get_peer +EXPORT_SYMBOL vmlinux 0x79f5f6e3 of_node_put +EXPORT_SYMBOL vmlinux 0x7a1390f7 param_set_bool +EXPORT_SYMBOL vmlinux 0x7a1e4fc4 pl330_del +EXPORT_SYMBOL vmlinux 0x7a27c184 ewma_init +EXPORT_SYMBOL vmlinux 0x7a326c51 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x7a42b408 phy_detach +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a50a315 files_lglock_global_unlock_online +EXPORT_SYMBOL vmlinux 0x7a91726b clkdev_alloc +EXPORT_SYMBOL vmlinux 0x7ab77312 misc_deregister +EXPORT_SYMBOL vmlinux 0x7aca9077 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x7ad88abe omap_dss_stop_device +EXPORT_SYMBOL vmlinux 0x7ae7f8d5 mmc_erase +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b03848a verify_mem_not_deleted +EXPORT_SYMBOL vmlinux 0x7b152fd7 locks_delete_block +EXPORT_SYMBOL vmlinux 0x7b235296 ethtool_op_set_tx_csum +EXPORT_SYMBOL vmlinux 0x7b2352e4 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x7b7910f3 scsi_execute +EXPORT_SYMBOL vmlinux 0x7b87dbf7 bio_integrity_split +EXPORT_SYMBOL vmlinux 0x7ba09d67 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x7bb4eca2 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7bba2a6f vfs_fsync +EXPORT_SYMBOL vmlinux 0x7bd96a2c gpmc_prefetch_enable +EXPORT_SYMBOL vmlinux 0x7bf30fdc down_write +EXPORT_SYMBOL vmlinux 0x7c017027 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x7c053dd2 sk_alloc +EXPORT_SYMBOL vmlinux 0x7c09ead9 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x7c42c892 ip_xfrm_me_harder +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c60d66e getname +EXPORT_SYMBOL vmlinux 0x7c6654c2 blkdev_put +EXPORT_SYMBOL vmlinux 0x7c904ded unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cd02b00 generic_file_buffered_write +EXPORT_SYMBOL vmlinux 0x7cd219de _dev_info +EXPORT_SYMBOL vmlinux 0x7ce0ae7c param_get_long +EXPORT_SYMBOL vmlinux 0x7ce7e115 of_match_node +EXPORT_SYMBOL vmlinux 0x7cfa8db6 aio_complete +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1b1216 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x7d264b57 phy_device_register +EXPORT_SYMBOL vmlinux 0x7d62aec8 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x7d7b96dc scsi_scan_host +EXPORT_SYMBOL vmlinux 0x7d9a7c7b input_free_device +EXPORT_SYMBOL vmlinux 0x7d9bb3ae scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x7db76a0e dev_driver_string +EXPORT_SYMBOL vmlinux 0x7dd5ffbe filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x7de0a78b tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x7dedc7bb unregister_binfmt +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e051691 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x7e08dae3 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x7e0e32b4 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x7e394c4e sysctl_local_reserved_ports +EXPORT_SYMBOL vmlinux 0x7e3d826a elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x7e9af50b bio_endio +EXPORT_SYMBOL vmlinux 0x7e9ebb05 kernel_thread +EXPORT_SYMBOL vmlinux 0x7ec1577d scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x7ed49deb module_layout +EXPORT_SYMBOL vmlinux 0x7f0d0a2c remove_proc_entry +EXPORT_SYMBOL vmlinux 0x7f124cca arp_create +EXPORT_SYMBOL vmlinux 0x7f1f6a84 inet_listen +EXPORT_SYMBOL vmlinux 0x7f201b61 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f2e1275 __invalidate_device +EXPORT_SYMBOL vmlinux 0x7f33a63b omap_get_dma_chain_dst_pos +EXPORT_SYMBOL vmlinux 0x7f447ac3 inet6_bind +EXPORT_SYMBOL vmlinux 0x7f5ce9cd xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f775bd4 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7f8ee656 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x7f9537fe posix_lock_file_wait +EXPORT_SYMBOL vmlinux 0x7fb51652 eth_header_cache +EXPORT_SYMBOL vmlinux 0x7fc4ba4a jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x7fc8e148 vfs_unlink +EXPORT_SYMBOL vmlinux 0x7fc9daf2 __breadahead +EXPORT_SYMBOL vmlinux 0x7fee2723 bio_get_nr_vecs +EXPORT_SYMBOL vmlinux 0x7ff45502 blk_register_region +EXPORT_SYMBOL vmlinux 0x800df1d7 groups_free +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x8034558a gpmc_nand_write +EXPORT_SYMBOL vmlinux 0x80389e6f neigh_connected_output +EXPORT_SYMBOL vmlinux 0x803e7f00 filemap_flush +EXPORT_SYMBOL vmlinux 0x804fc9ca omap_mcbsp_free +EXPORT_SYMBOL vmlinux 0x805c7bea mb_cache_create +EXPORT_SYMBOL vmlinux 0x80644878 keyring_search +EXPORT_SYMBOL vmlinux 0x808a98f9 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x80c4c345 scsi_execute_req +EXPORT_SYMBOL vmlinux 0x80d3fe2b __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x80d81308 omap_vrfb_release_ctx +EXPORT_SYMBOL vmlinux 0x80d817ab wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x80de231a idr_remove +EXPORT_SYMBOL vmlinux 0x81003ee2 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x810b3618 param_ops_string +EXPORT_SYMBOL vmlinux 0x813547c4 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x813ed040 idr_remove_all +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815131ba mempool_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8164adb3 omap2_mcbsp_set_clks_src +EXPORT_SYMBOL vmlinux 0x8180a2db mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x81985597 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x81a88bff jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x81a8d7cc insert_inode_locked +EXPORT_SYMBOL vmlinux 0x81b04bfc completion_done +EXPORT_SYMBOL vmlinux 0x81b0b3a4 sock_wfree +EXPORT_SYMBOL vmlinux 0x81b3c299 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x81c0c33f simple_fill_super +EXPORT_SYMBOL vmlinux 0x81d10f5f trace_seq_putc +EXPORT_SYMBOL vmlinux 0x81d5be16 register_cdrom +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81f97592 abort_creds +EXPORT_SYMBOL vmlinux 0x81fbcdd1 fd_install +EXPORT_SYMBOL vmlinux 0x82034bdc posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x8204e852 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x821e8d91 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x8229e109 replace_mount_options +EXPORT_SYMBOL vmlinux 0x8234e6e2 of_find_node_by_path +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x8251bcc3 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x82524e60 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x8256df72 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x8260686f bitmap_find_next_zero_area +EXPORT_SYMBOL vmlinux 0x8262f64b tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x826bd484 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x82714783 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82bd63d5 do_munmap +EXPORT_SYMBOL vmlinux 0x82d43c23 do_map_probe +EXPORT_SYMBOL vmlinux 0x83141628 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x8330e981 dpi_set_timings +EXPORT_SYMBOL vmlinux 0x835330e1 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x8364cfe1 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x836bdb72 nand_flash_ids +EXPORT_SYMBOL vmlinux 0x8371daff sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x83800bfa kref_init +EXPORT_SYMBOL vmlinux 0x8384a2c5 tty_unlock +EXPORT_SYMBOL vmlinux 0x838f70b0 twl_i2c_write_u8 +EXPORT_SYMBOL vmlinux 0x83a137a5 inet_frag_evictor +EXPORT_SYMBOL vmlinux 0x83a476ce bitmap_scnlistprintf +EXPORT_SYMBOL vmlinux 0x83c7efc8 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x83d25c38 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x83f86f07 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x83ffe579 dev_add_pack +EXPORT_SYMBOL vmlinux 0x840f9cb0 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x84221ad6 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x8436f8e3 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x846bcc01 dm_table_get +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84b93cec omap_dss_put_device +EXPORT_SYMBOL vmlinux 0x84db4b6e wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x84e552df ps2_command +EXPORT_SYMBOL vmlinux 0x8537361f mdiobus_scan +EXPORT_SYMBOL vmlinux 0x853e658e ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8572f6cc __neigh_event_send +EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x858ea90e __blk_run_queue +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85cd7c8c mapping_tagged +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e7deb2 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865b043d tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86ace763 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x86ca9747 vfs_open +EXPORT_SYMBOL vmlinux 0x86cbec0d tcp_make_synack +EXPORT_SYMBOL vmlinux 0x86e3cb5d tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870bf928 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x870deb2c dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x871314b6 journal_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87510ba5 simple_setattr +EXPORT_SYMBOL vmlinux 0x8788eaa2 journal_init_inode +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87c27ad2 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x87d3e5be scsi_cmd_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x87dbba14 ida_get_new +EXPORT_SYMBOL vmlinux 0x87e2373d end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x87fd7352 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x8807e4b5 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x881039d0 zlib_inflate +EXPORT_SYMBOL vmlinux 0x8834396c mod_timer +EXPORT_SYMBOL vmlinux 0x883b3507 load_nls +EXPORT_SYMBOL vmlinux 0x8840f359 proc_create_data +EXPORT_SYMBOL vmlinux 0x8844b875 ip_options_compile +EXPORT_SYMBOL vmlinux 0x8851e303 I_BDEV +EXPORT_SYMBOL vmlinux 0x8869f62e key_validate +EXPORT_SYMBOL vmlinux 0x888978d1 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x8893fa5d finish_wait +EXPORT_SYMBOL vmlinux 0x88a2b393 follow_down +EXPORT_SYMBOL vmlinux 0x88abe888 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x88b85f6d abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x88bc289b register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x88c3df08 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x88d01eee inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x88d34c16 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x88d96ae4 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x88dc5da2 lock_may_write +EXPORT_SYMBOL vmlinux 0x88eb8e18 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x88f33286 generic_readlink +EXPORT_SYMBOL vmlinux 0x8908e89f jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x89199a42 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x8949858b schedule_work +EXPORT_SYMBOL vmlinux 0x896261d4 md_write_end +EXPORT_SYMBOL vmlinux 0x8967506e uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x897473df mktime +EXPORT_SYMBOL vmlinux 0x897e74d2 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x89805dda dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x899aa4ad tty_port_close_start +EXPORT_SYMBOL vmlinux 0x899d3f1d request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x89a3c4f4 omap_get_dma_chain_index +EXPORT_SYMBOL vmlinux 0x89b95107 __quota_error +EXPORT_SYMBOL vmlinux 0x89c0fbcd jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d65de8 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x89d66811 build_ehash_secret +EXPORT_SYMBOL vmlinux 0x89da4432 of_iomap +EXPORT_SYMBOL vmlinux 0x8a0df650 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x8a375cd6 iput +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a5485c0 inode_init_once +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ac7f6bd mount_pseudo +EXPORT_SYMBOL vmlinux 0x8adab72b serial8250_register_port +EXPORT_SYMBOL vmlinux 0x8b073928 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x8b16e800 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x8b1cc102 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x8b209f51 generic_setxattr +EXPORT_SYMBOL vmlinux 0x8b20c6ed register_con_driver +EXPORT_SYMBOL vmlinux 0x8b4c5948 security_file_permission +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7094d3 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x8b7a5b9e sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x8bc2401d textsearch_destroy +EXPORT_SYMBOL vmlinux 0x8bc89a7c linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x8bcd5bdf tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x8bf29f97 dev_crit +EXPORT_SYMBOL vmlinux 0x8c01cd30 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x8c0b4e8f sock_create_lite +EXPORT_SYMBOL vmlinux 0x8c4d6523 omap_dma_chain_a_transfer +EXPORT_SYMBOL vmlinux 0x8c7a3757 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x8ca836b2 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x8ca8d886 key_revoke +EXPORT_SYMBOL vmlinux 0x8cb5357d gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8ce7848f sock_init_data +EXPORT_SYMBOL vmlinux 0x8ceb0e8d pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x8d23c255 mmc_cache_ctrl +EXPORT_SYMBOL vmlinux 0x8d532cfc nf_register_hooks +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d770f24 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x8d8b3832 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x8d93dbe0 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x8de69ce9 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x8e01334c sock_no_connect +EXPORT_SYMBOL vmlinux 0x8e0b7743 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x8e171dc2 vfs_llseek +EXPORT_SYMBOL vmlinux 0x8e22d90a page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x8e311ecd dev_alloc_name +EXPORT_SYMBOL vmlinux 0x8e3382ab __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x8e41af03 __page_symlink +EXPORT_SYMBOL vmlinux 0x8e4952aa amba_find_device +EXPORT_SYMBOL vmlinux 0x8e50b76e __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x8e51d18a journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x8e555738 param_get_uint +EXPORT_SYMBOL vmlinux 0x8ee69235 timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8f085f21 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x8f218be0 dma_alloc_coherent +EXPORT_SYMBOL vmlinux 0x8f2a4fda unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x8f2eb0c4 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x8f48679a rb_prev +EXPORT_SYMBOL vmlinux 0x8f4b010d lock_rename +EXPORT_SYMBOL vmlinux 0x8f53b98e sock_no_listen +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f7fa357 dev_addr_add_multiple +EXPORT_SYMBOL vmlinux 0x8f991e71 nf_log_packet +EXPORT_SYMBOL vmlinux 0x8f9d9a99 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x8fbdd58c cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x8fc7f839 param_set_charp +EXPORT_SYMBOL vmlinux 0x8ff3f6f6 kern_unmount +EXPORT_SYMBOL vmlinux 0x8ff66782 param_get_ushort +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x90023503 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x901d9ae8 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x906ee6aa skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x908a2792 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x90adf907 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x90ae4ada input_register_handle +EXPORT_SYMBOL vmlinux 0x90c58207 freeze_super +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90cfe784 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x90e83954 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x90f7ed14 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x9104cef3 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91470a3f dma_free_coherent +EXPORT_SYMBOL vmlinux 0x91486c01 generic_permission +EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9177d1a5 register_gifconf +EXPORT_SYMBOL vmlinux 0x91886873 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x91ba3054 generic_read_dir +EXPORT_SYMBOL vmlinux 0x91bd16be omap_dss_get_device +EXPORT_SYMBOL vmlinux 0x91bead60 filp_open +EXPORT_SYMBOL vmlinux 0x91c73b0e default_file_splice_read +EXPORT_SYMBOL vmlinux 0x91cc546b scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x91cea070 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x920664c8 mempool_free +EXPORT_SYMBOL vmlinux 0x9211e197 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x922a6dbd mmc_resume_host +EXPORT_SYMBOL vmlinux 0x922c6e1d skb_queue_head +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x926ea9a0 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x929eecac __strncpy_from_user +EXPORT_SYMBOL vmlinux 0x929fc007 serio_rescan +EXPORT_SYMBOL vmlinux 0x92d272ce vm_event_states +EXPORT_SYMBOL vmlinux 0x92d31249 flush_old_exec +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9311310a scsi_finish_command +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x9333e39d of_dev_put +EXPORT_SYMBOL vmlinux 0x933a2839 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x933f8a8a scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x9348e6eb xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x934e8e2e gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x9353174e inet_select_addr +EXPORT_SYMBOL vmlinux 0x9363484a xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x9371bd81 scsi_allocate_command +EXPORT_SYMBOL vmlinux 0x93794f13 phy_start +EXPORT_SYMBOL vmlinux 0x9382d457 inode_init_always +EXPORT_SYMBOL vmlinux 0x93a29d64 dev_mc_init +EXPORT_SYMBOL vmlinux 0x93a6e0b2 io_schedule +EXPORT_SYMBOL vmlinux 0x93b1f050 bio_put +EXPORT_SYMBOL vmlinux 0x93cf29a4 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x93f437d5 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9400bbab omap_mcbsp_dma_reg_params +EXPORT_SYMBOL vmlinux 0x941ab990 release_firmware +EXPORT_SYMBOL vmlinux 0x941b4319 dquot_get_dqinfo +EXPORT_SYMBOL vmlinux 0x942e1c86 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x943742e0 mmc_hw_reset_check +EXPORT_SYMBOL vmlinux 0x943c56d3 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x94460819 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x9448bfb8 d_validate +EXPORT_SYMBOL vmlinux 0x94577e2f seq_open +EXPORT_SYMBOL vmlinux 0x946e2c58 tty_mutex +EXPORT_SYMBOL vmlinux 0x947c056a generic_show_options +EXPORT_SYMBOL vmlinux 0x947efcc4 scsi_calculate_bounce_limit +EXPORT_SYMBOL vmlinux 0x94864c7a wl12xx_get_platform_data +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a09efb d_delete +EXPORT_SYMBOL vmlinux 0x94af632e complete_all +EXPORT_SYMBOL vmlinux 0x94afc9f1 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x94bb2f5f security_path_unlink +EXPORT_SYMBOL vmlinux 0x94d4ebfd genl_register_family +EXPORT_SYMBOL vmlinux 0x94f28698 tty_vhangup +EXPORT_SYMBOL vmlinux 0x95163374 ip_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x952520de nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x953da179 f_setown +EXPORT_SYMBOL vmlinux 0x954488a4 syncookie_secret +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954ec2c5 new_inode +EXPORT_SYMBOL vmlinux 0x9553b41e __scm_send +EXPORT_SYMBOL vmlinux 0x957e3b5a dquot_transfer +EXPORT_SYMBOL vmlinux 0x958474ea skb_gro_reset_offset +EXPORT_SYMBOL vmlinux 0x95a6a106 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x95cee70f skb_find_text +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95f97c24 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x961bd2b6 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x9642012c tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x96444a27 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x9690cb7a __elv_add_request +EXPORT_SYMBOL vmlinux 0x969106e4 clk_set_rate +EXPORT_SYMBOL vmlinux 0x96b39b6e omap_start_dma_chain_transfers +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d1f2a7 mmc_assume_removable +EXPORT_SYMBOL vmlinux 0x96d5b542 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x96ef65bd max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x96fdcf7d scm_detach_fds +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x97526654 tcp_v4_md5_do_del +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976aa343 vfs_rename +EXPORT_SYMBOL vmlinux 0x977367f0 km_state_notify +EXPORT_SYMBOL vmlinux 0x9781ce4b write_cache_pages +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97ae30a0 unregister_con_driver +EXPORT_SYMBOL vmlinux 0x97bb9c5b eth_rebuild_header +EXPORT_SYMBOL vmlinux 0x97d8c18c make_bad_inode +EXPORT_SYMBOL vmlinux 0x97e9ff03 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x97ec6945 scsi_free_command +EXPORT_SYMBOL vmlinux 0x97f75181 lock_fb_info +EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x983aa50e netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x986201ce bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x988b8d76 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x98e0998d mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x98eae89d vc_resize +EXPORT_SYMBOL vmlinux 0x98fa21b0 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x98fbaac5 register_quota_format +EXPORT_SYMBOL vmlinux 0x990467b7 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x99440656 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x99485acc __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x994d3136 dst_destroy +EXPORT_SYMBOL vmlinux 0x99525e3a vfsmount_lock_local_unlock +EXPORT_SYMBOL vmlinux 0x995a613f bio_kmalloc +EXPORT_SYMBOL vmlinux 0x99717d89 dev_deactivate +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999c3148 __raw_readsb +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99bfbe39 get_unused_fd +EXPORT_SYMBOL vmlinux 0x99c85d3c udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d923b2 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x99dff51a of_parse_phandle +EXPORT_SYMBOL vmlinux 0x99e19ef6 __skb_get_rxhash +EXPORT_SYMBOL vmlinux 0x99ef6226 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x9a03ce4d ethtool_op_get_tx_csum +EXPORT_SYMBOL vmlinux 0x9a0824bb input_set_keycode +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a63f60a key_type_keyring +EXPORT_SYMBOL vmlinux 0x9a8e6025 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x9aa703bb page_symlink +EXPORT_SYMBOL vmlinux 0x9aadafc5 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x9ab721ef revert_creds +EXPORT_SYMBOL vmlinux 0x9ab8808c param_get_charp +EXPORT_SYMBOL vmlinux 0x9b117bb8 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x9b1b6b91 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x9b2869fd tty_port_init +EXPORT_SYMBOL vmlinux 0x9b2f1e9d locks_init_lock +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b53e568 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x9b60d834 dm_get_device +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b8caa7b phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x9ba44a83 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9baa9adf nla_reserve +EXPORT_SYMBOL vmlinux 0x9bce482f __release_region +EXPORT_SYMBOL vmlinux 0x9be55cc5 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x9c012508 fb_parse_edid +EXPORT_SYMBOL vmlinux 0x9c293b3c udp_disconnect +EXPORT_SYMBOL vmlinux 0x9c45589f lock_super +EXPORT_SYMBOL vmlinux 0x9c5b17a5 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x9c5bc279 icmp_send +EXPORT_SYMBOL vmlinux 0x9c61039e journal_flush +EXPORT_SYMBOL vmlinux 0x9c6ab62a dev_mc_del +EXPORT_SYMBOL vmlinux 0x9c7077bd enable_hlt +EXPORT_SYMBOL vmlinux 0x9c873104 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x9c888c0c scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x9ca04207 clk_set_parent +EXPORT_SYMBOL vmlinux 0x9cb96e92 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x9cc4a9a4 journal_start +EXPORT_SYMBOL vmlinux 0x9cd2e7d0 gpmc_nand_read +EXPORT_SYMBOL vmlinux 0x9cd4f04e vfs_readv +EXPORT_SYMBOL vmlinux 0x9cd60539 sg_free_table +EXPORT_SYMBOL vmlinux 0x9cd74019 amba_request_regions +EXPORT_SYMBOL vmlinux 0x9cdf0ec5 vfsmount_lock_global_lock_online +EXPORT_SYMBOL vmlinux 0x9ce95067 find_get_page +EXPORT_SYMBOL vmlinux 0x9ceb163c memcpy_toiovec +EXPORT_SYMBOL vmlinux 0x9cfd56c5 scsi_print_status +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d7dc589 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x9dc9e3ea set_security_override +EXPORT_SYMBOL vmlinux 0x9dd7bc88 blk_put_queue +EXPORT_SYMBOL vmlinux 0x9dd81477 iov_iter_copy_from_user +EXPORT_SYMBOL vmlinux 0x9de71e5f simple_release_fs +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2000a7 memcpy_toiovecend +EXPORT_SYMBOL vmlinux 0x9e270d9b mmc_card_can_sleep +EXPORT_SYMBOL vmlinux 0x9e3118b9 __free_pages +EXPORT_SYMBOL vmlinux 0x9e468545 sock_no_bind +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e607910 audit_log +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e9f1714 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x9ebac9c5 skb_trim +EXPORT_SYMBOL vmlinux 0x9ec2cc8c clk_enable +EXPORT_SYMBOL vmlinux 0x9ed1298f dev_trans_start +EXPORT_SYMBOL vmlinux 0x9ed685ee iov_iter_advance +EXPORT_SYMBOL vmlinux 0x9ed70a4f tty_unregister_device +EXPORT_SYMBOL vmlinux 0x9ee45bb2 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x9eecde16 do_brk +EXPORT_SYMBOL vmlinux 0x9f0cf046 fasync_helper +EXPORT_SYMBOL vmlinux 0x9f194b85 dev_alert +EXPORT_SYMBOL vmlinux 0x9f1f2bb5 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x9f293fdc generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x9f2bdaac __bitmap_or +EXPORT_SYMBOL vmlinux 0x9f3ec45d journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x9f4281f4 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f491e5d ftrace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x9f69ee48 scsi_print_result +EXPORT_SYMBOL vmlinux 0x9f8c6647 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f99d9bf ida_pre_get +EXPORT_SYMBOL vmlinux 0x9fb3dd30 memcpy_fromiovec +EXPORT_SYMBOL vmlinux 0x9fb6d1f1 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x9fbeed20 scsi_print_command +EXPORT_SYMBOL vmlinux 0x9fc3a0ea cdev_init +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe53316 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x9fea9232 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xa0025f67 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xa0058c7e jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xa01eb8d8 tty_free_termios +EXPORT_SYMBOL vmlinux 0xa04773d7 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa08a02d0 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xa0917db2 skb_store_bits +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0badad6 netif_device_detach +EXPORT_SYMBOL vmlinux 0xa0bf1e25 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xa0c888eb key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xa0ceef51 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xa0d658e6 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa106b5ba xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa114e6e2 nand_default_bbt +EXPORT_SYMBOL vmlinux 0xa11e6a36 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa13641a9 put_tty_driver +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa144d46e jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xa14ce5ee dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xa14f3d8c ewma_add +EXPORT_SYMBOL vmlinux 0xa17ee298 dma_find_channel +EXPORT_SYMBOL vmlinux 0xa19b1e42 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xa1b1ea3a security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1ba2fdb vfsmount_lock_global_lock +EXPORT_SYMBOL vmlinux 0xa1c4b6d2 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xa1c5a3b3 cleancache_enabled +EXPORT_SYMBOL vmlinux 0xa1c704ff __alloc_skb +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1cdf45e rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa1ded8b2 fget_raw +EXPORT_SYMBOL vmlinux 0xa20ce1b8 net_msg_warn +EXPORT_SYMBOL vmlinux 0xa21f9976 dev_get_flags +EXPORT_SYMBOL vmlinux 0xa2321bb8 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xa24c38b7 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xa24fe410 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xa25ce832 ata_print_version +EXPORT_SYMBOL vmlinux 0xa2752c12 input_unregister_device +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa29effce tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xa2a5fd77 inet_ehash_secret +EXPORT_SYMBOL vmlinux 0xa2b3ca17 sg_miter_start +EXPORT_SYMBOL vmlinux 0xa2c56c31 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xa2c61eee soft_cursor +EXPORT_SYMBOL vmlinux 0xa2cc632f end_writeback +EXPORT_SYMBOL vmlinux 0xa2d0abec tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xa2dbd21e phy_stop +EXPORT_SYMBOL vmlinux 0xa303ee49 vfs_mknod +EXPORT_SYMBOL vmlinux 0xa304e271 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xa30e049b skb_copy_datagram_from_iovec +EXPORT_SYMBOL vmlinux 0xa32629f6 dns_query +EXPORT_SYMBOL vmlinux 0xa332cdd1 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL vmlinux 0xa34f1ef5 crc32_le +EXPORT_SYMBOL vmlinux 0xa35de80f ipv4_config +EXPORT_SYMBOL vmlinux 0xa37e68af sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xa38e9568 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xa3a2665e xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xa3b3703e __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xa3beac45 simple_rename +EXPORT_SYMBOL vmlinux 0xa3c058f2 mpage_writepages +EXPORT_SYMBOL vmlinux 0xa3c52d06 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xa3d49a1e starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa3d6fbb9 proto_register +EXPORT_SYMBOL vmlinux 0xa3f5e9e0 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xa407e99b __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xa429f74b __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa43b9539 memcpy_fromiovecend +EXPORT_SYMBOL vmlinux 0xa440b2d1 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xa446d5ae nonseekable_open +EXPORT_SYMBOL vmlinux 0xa459700c skb_split +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa494178f set_disk_ro +EXPORT_SYMBOL vmlinux 0xa4aea3ff dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4be6bf0 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa4c29461 omap_st_is_enabled +EXPORT_SYMBOL vmlinux 0xa4c49678 neigh_create +EXPORT_SYMBOL vmlinux 0xa4d5c95a inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa4e1341f kernel_bind +EXPORT_SYMBOL vmlinux 0xa4f0ea63 genl_unregister_ops +EXPORT_SYMBOL vmlinux 0xa50858e8 omapdss_dpi_display_enable +EXPORT_SYMBOL vmlinux 0xa50d86b9 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xa528d6de dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa545f3f4 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xa572d0f0 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa5841ef4 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xa598d425 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59b85a9 netdev_change_features +EXPORT_SYMBOL vmlinux 0xa5a29032 ilookup +EXPORT_SYMBOL vmlinux 0xa5b87e23 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource +EXPORT_SYMBOL vmlinux 0xa5fdfc12 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xa61378f4 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa64a4cea usb_nop_xceiv_unregister +EXPORT_SYMBOL vmlinux 0xa6545a51 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xa66247a5 skb_pull +EXPORT_SYMBOL vmlinux 0xa66aafa8 twl6040_irq_exit +EXPORT_SYMBOL vmlinux 0xa672a8ed ip_nat_decode_session +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6ad7eac pm860x_page_bulk_write +EXPORT_SYMBOL vmlinux 0xa6ae2a53 put_mnt_ns +EXPORT_SYMBOL vmlinux 0xa6c39a0e scsi_prep_state_check +EXPORT_SYMBOL vmlinux 0xa6dcc773 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa6e22a7b ip_getsockopt +EXPORT_SYMBOL vmlinux 0xa714217e vfs_getattr +EXPORT_SYMBOL vmlinux 0xa71f9994 tc_classify_compat +EXPORT_SYMBOL vmlinux 0xa72f9e7c scsi_release_buffers +EXPORT_SYMBOL vmlinux 0xa7368042 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xa742dd69 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xa7cdd783 ethtool_op_get_tso +EXPORT_SYMBOL vmlinux 0xa7cec6bb jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xa7db6843 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xa800e1e6 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0xa814442b dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xa81d8ab6 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xa8223905 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0xa8232c78 strtobool +EXPORT_SYMBOL vmlinux 0xa83772a6 map_destroy +EXPORT_SYMBOL vmlinux 0xa8380d34 kernel_execve +EXPORT_SYMBOL vmlinux 0xa86eb739 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xa87bb6d8 kset_register +EXPORT_SYMBOL vmlinux 0xa888181d jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xa8bee0ea copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xa8cde9a7 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xa8d0578d mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xa8fd075d set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa943beca cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xa94d705a seq_release_private +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa9831c83 ipv4_specific +EXPORT_SYMBOL vmlinux 0xa999297a release_sock +EXPORT_SYMBOL vmlinux 0xa99a08b4 arp_send +EXPORT_SYMBOL vmlinux 0xa9a027b0 dev_gro_receive +EXPORT_SYMBOL vmlinux 0xa9b64af6 __ps2_command +EXPORT_SYMBOL vmlinux 0xa9b74e3d __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xa9bd8fb3 netdev_class_create_file +EXPORT_SYMBOL vmlinux 0xa9d8c513 __find_get_block +EXPORT_SYMBOL vmlinux 0xa9e5ff71 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xaa4307b7 framebuffer_release +EXPORT_SYMBOL vmlinux 0xaa4cc367 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xaa5927f9 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6b4fee clip_tbl_hook +EXPORT_SYMBOL vmlinux 0xaa7295c7 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xaa7c1109 search_binary_handler +EXPORT_SYMBOL vmlinux 0xaa91ce79 dev_alloc_skb +EXPORT_SYMBOL vmlinux 0xaaab57be tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadcfc4e security_path_symlink +EXPORT_SYMBOL vmlinux 0xaaded7f0 udp_prot +EXPORT_SYMBOL vmlinux 0xaaeda79e page_follow_link_light +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xab143ed5 unload_nls +EXPORT_SYMBOL vmlinux 0xab18561a xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab83b3b2 skb_dst_set_noref +EXPORT_SYMBOL vmlinux 0xab98cedc cfb_copyarea +EXPORT_SYMBOL vmlinux 0xaba6cd7f dqput +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd0c91c rtc_time_to_tm +EXPORT_SYMBOL vmlinux 0xabd41fe1 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xabe4422d amba_driver_register +EXPORT_SYMBOL vmlinux 0xabf36d57 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xabfcfac5 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xac015ba2 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac351cf8 splice_from_pipe_begin +EXPORT_SYMBOL vmlinux 0xac435a25 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xac4721a2 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xac5f113d cpu_all_bits +EXPORT_SYMBOL vmlinux 0xac5fded4 sock_no_accept +EXPORT_SYMBOL vmlinux 0xac5feffc fget +EXPORT_SYMBOL vmlinux 0xac6855b0 gen_kill_estimator +EXPORT_SYMBOL vmlinux 0xac7c4594 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xacc643e8 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd0a895 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xacd6b35f i2c_register_driver +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad2a4d3d neigh_lookup +EXPORT_SYMBOL vmlinux 0xad2c2d92 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xad3e45d0 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xad466018 quota_send_warning +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xadaa2657 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0xadb070e4 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xadcac4a3 vfsmount_lock_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xadd25cc8 tcp_close +EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region +EXPORT_SYMBOL vmlinux 0xae0882f2 omap_mcbsp_request +EXPORT_SYMBOL vmlinux 0xae318aaa neigh_for_each +EXPORT_SYMBOL vmlinux 0xae3381d1 put_page +EXPORT_SYMBOL vmlinux 0xae52f5dd __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xae889361 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xae9b7941 seq_escape +EXPORT_SYMBOL vmlinux 0xaeb33467 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaeeef0d2 ___dma_page_cpu_to_dev +EXPORT_SYMBOL vmlinux 0xaeef9a37 skb_copy_datagram_const_iovec +EXPORT_SYMBOL vmlinux 0xaef39ba7 qdisc_reset +EXPORT_SYMBOL vmlinux 0xaf04fb7f tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf409935 inet_bind +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf52da8d tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf5f7994 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xaf71630f serio_unregister_port +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf91d89f __kernel_param_lock +EXPORT_SYMBOL vmlinux 0xafcd3fa9 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xafe3a620 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xafee93d3 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xb0146c3a param_set_byte +EXPORT_SYMBOL vmlinux 0xb0390d86 ip_fragment +EXPORT_SYMBOL vmlinux 0xb08c7ab9 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xb091ebc2 mnt_unpin +EXPORT_SYMBOL vmlinux 0xb0b4a932 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xb0b847ac __bitmap_full +EXPORT_SYMBOL vmlinux 0xb0c9705a dm_io +EXPORT_SYMBOL vmlinux 0xb0cacd62 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xb0cd0f99 thaw_process +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb1125052 bdi_register +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb1479f99 mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0xb14decd3 journal_init_dev +EXPORT_SYMBOL vmlinux 0xb16fe7b3 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xb18e6948 omap_dss_pal_timings +EXPORT_SYMBOL vmlinux 0xb19760c3 bitmap_onto +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ef24e3 simple_write_begin +EXPORT_SYMBOL vmlinux 0xb1fce87d netpoll_setup +EXPORT_SYMBOL vmlinux 0xb21e6533 journal_forget +EXPORT_SYMBOL vmlinux 0xb25661e6 tcp_gro_receive +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb276599e setup_arg_pages +EXPORT_SYMBOL vmlinux 0xb288736c sock_rfree +EXPORT_SYMBOL vmlinux 0xb28f1c92 omap_mcbsp_stop +EXPORT_SYMBOL vmlinux 0xb28f8eff iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xb2daa877 phy_disconnect +EXPORT_SYMBOL vmlinux 0xb3305d52 send_remote_softirq +EXPORT_SYMBOL vmlinux 0xb3393164 skb_make_writable +EXPORT_SYMBOL vmlinux 0xb3415778 netdev_emerg +EXPORT_SYMBOL vmlinux 0xb374beac alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xb389b032 generic_file_open +EXPORT_SYMBOL vmlinux 0xb3a307c6 si_meminfo +EXPORT_SYMBOL vmlinux 0xb3a93a31 ping_prot +EXPORT_SYMBOL vmlinux 0xb3f51548 of_device_alloc +EXPORT_SYMBOL vmlinux 0xb3f6bec8 ip_cmsg_recv +EXPORT_SYMBOL vmlinux 0xb401039d inet6_ioctl +EXPORT_SYMBOL vmlinux 0xb4041254 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xb40e1bac __blk_end_request +EXPORT_SYMBOL vmlinux 0xb412edcd ab8500_gpadc_read_raw +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42f1c05 vfs_writev +EXPORT_SYMBOL vmlinux 0xb4410e62 dev_change_flags +EXPORT_SYMBOL vmlinux 0xb45a151a set_groups +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb49471e4 dev_get_drvdata +EXPORT_SYMBOL vmlinux 0xb49f1e5e d_drop +EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xb4c62d7f xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xb4c8f38a omap_dma_chain_status +EXPORT_SYMBOL vmlinux 0xb4d019b0 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xb4d879dc thaw_bdev +EXPORT_SYMBOL vmlinux 0xb4f889ab input_release_device +EXPORT_SYMBOL vmlinux 0xb5044271 vsscanf +EXPORT_SYMBOL vmlinux 0xb54533f7 usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xb558a2d7 thermal_cooling_device_register +EXPORT_SYMBOL vmlinux 0xb587b534 simple_lookup +EXPORT_SYMBOL vmlinux 0xb59f5103 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d49f03 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xb61ad36e mdiobus_register +EXPORT_SYMBOL vmlinux 0xb628f715 files_lglock_local_lock +EXPORT_SYMBOL vmlinux 0xb629c360 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xb641fb80 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xb64f05a9 dev_printk +EXPORT_SYMBOL vmlinux 0xb667069f pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xb66bcf0d ethtool_op_set_ufo +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67eec47 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xb6822a33 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6a61a86 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6add1db serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xb6b1c18e uart_update_timeout +EXPORT_SYMBOL vmlinux 0xb6c1fe8a add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xb6c5a973 scsi_show_result +EXPORT_SYMBOL vmlinux 0xb70b87bb __register_chrdev +EXPORT_SYMBOL vmlinux 0xb71a6985 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xb72c663a input_reset_device +EXPORT_SYMBOL vmlinux 0xb74849b8 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xb7701d99 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xb77a7c47 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xb78b3626 interruptible_sleep_on_timeout +EXPORT_SYMBOL vmlinux 0xb78c61e8 param_ops_bool +EXPORT_SYMBOL vmlinux 0xb7b61546 crc32_be +EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0xb7d858e6 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0xb808b90b ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb81fd3be idr_find +EXPORT_SYMBOL vmlinux 0xb82b7d2f vfs_read +EXPORT_SYMBOL vmlinux 0xb835b3e4 radix_tree_prev_hole +EXPORT_SYMBOL vmlinux 0xb83c9044 unregister_exec_domain +EXPORT_SYMBOL vmlinux 0xb8622771 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xb86e4ab9 random32 +EXPORT_SYMBOL vmlinux 0xb87278ca __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xb8912418 napi_frags_finish +EXPORT_SYMBOL vmlinux 0xb894926d schedule_work_on +EXPORT_SYMBOL vmlinux 0xb89af9bf srandom32 +EXPORT_SYMBOL vmlinux 0xb8aa2342 __check_region +EXPORT_SYMBOL vmlinux 0xb8b3c2cd mdiobus_free +EXPORT_SYMBOL vmlinux 0xb8bb7151 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xb8bb957c journal_wipe +EXPORT_SYMBOL vmlinux 0xb8c18fbb journal_restart +EXPORT_SYMBOL vmlinux 0xb8c8659a ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xb8dc1749 neigh_destroy +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8fc86e2 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xb917901c register_netdev +EXPORT_SYMBOL vmlinux 0xb920361e nf_register_hook +EXPORT_SYMBOL vmlinux 0xb9209535 of_find_property +EXPORT_SYMBOL vmlinux 0xb948edb2 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9746e39 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xb98983e5 omapdss_sdi_display_disable +EXPORT_SYMBOL vmlinux 0xb98a0185 rtc_tm_to_time +EXPORT_SYMBOL vmlinux 0xb997e172 sock_no_poll +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9e52429 __wake_up +EXPORT_SYMBOL vmlinux 0xb9e8b319 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xb9f3e588 input_grab_device +EXPORT_SYMBOL vmlinux 0xba028f4c omap_dss_get_next_device +EXPORT_SYMBOL vmlinux 0xba097a17 generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0xba423ec4 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba9c63fb bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xbaaa5342 registered_fb +EXPORT_SYMBOL vmlinux 0xbaaab8ae timespec_to_jiffies +EXPORT_SYMBOL vmlinux 0xbaac427c get_mem_type +EXPORT_SYMBOL vmlinux 0xbab320f5 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xbb167766 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xbb189cad disallow_signal +EXPORT_SYMBOL vmlinux 0xbb2858e8 pl330_submit_req +EXPORT_SYMBOL vmlinux 0xbb29f992 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xbb2b4612 rwsem_is_locked +EXPORT_SYMBOL vmlinux 0xbb36a905 napi_frags_skb +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba159e0 files_lglock_local_unlock +EXPORT_SYMBOL vmlinux 0xbbb371ae dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xbbe014ef neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xbbea40bc ethtool_op_set_tso +EXPORT_SYMBOL vmlinux 0xbbef1b6b mmc_can_reset +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc5027bc fib_default_rule_pref +EXPORT_SYMBOL vmlinux 0xbc549d2e clk_get_rate +EXPORT_SYMBOL vmlinux 0xbc860222 gpmc_read_status +EXPORT_SYMBOL vmlinux 0xbc8c5e19 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xbc95358d dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xbc98ef97 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xbc9e28e4 __devm_release_region +EXPORT_SYMBOL vmlinux 0xbca2efd7 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xbcb8014d clk_unregister +EXPORT_SYMBOL vmlinux 0xbd078aa7 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xbd3c9a03 splice_from_pipe_end +EXPORT_SYMBOL vmlinux 0xbd593ecf poll_freewait +EXPORT_SYMBOL vmlinux 0xbd5988d9 genl_register_family_with_ops +EXPORT_SYMBOL vmlinux 0xbd59d8fc bdi_unregister +EXPORT_SYMBOL vmlinux 0xbd614bc5 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xbd64c9af udplite_prot +EXPORT_SYMBOL vmlinux 0xbd7c818c inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xbd7cd4d5 ip6_route_output +EXPORT_SYMBOL vmlinux 0xbd823251 dev_uc_del +EXPORT_SYMBOL vmlinux 0xbda3d172 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xbdbe7378 cookie_check_timestamp +EXPORT_SYMBOL vmlinux 0xbdc1139b mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xbde2367b tcp_proc_register +EXPORT_SYMBOL vmlinux 0xbdec0db2 omap_readb +EXPORT_SYMBOL vmlinux 0xbdf0dfca scsi_register +EXPORT_SYMBOL vmlinux 0xbdf2580d __raw_readsl +EXPORT_SYMBOL vmlinux 0xbdf5c25c rb_next +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1673af tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xbe17ee3e dquot_alloc +EXPORT_SYMBOL vmlinux 0xbe2c0274 add_timer +EXPORT_SYMBOL vmlinux 0xbe36668c udp_proc_register +EXPORT_SYMBOL vmlinux 0xbe397369 dev_close +EXPORT_SYMBOL vmlinux 0xbe46ebdf tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xbe505d04 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource +EXPORT_SYMBOL vmlinux 0xbe6efa45 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xbea549f2 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xbeaef59a force_sig +EXPORT_SYMBOL vmlinux 0xbeb62ada deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xbedffbac ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef045b8 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xbef3e55f n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf08f63b tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xbf16ed49 bio_copy_kern +EXPORT_SYMBOL vmlinux 0xbf1faebe mutex_trylock +EXPORT_SYMBOL vmlinux 0xbf3ede76 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xbf45d042 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xbf4f02de nand_scan_bbt +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa78cd6 dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xbfd59d4c input_allocate_device +EXPORT_SYMBOL vmlinux 0xbfdff814 of_get_address +EXPORT_SYMBOL vmlinux 0xbfe1007b blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc00d1f27 inet_sendpage +EXPORT_SYMBOL vmlinux 0xc022b772 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc02cf69b clkdev_drop +EXPORT_SYMBOL vmlinux 0xc0580937 rb_erase +EXPORT_SYMBOL vmlinux 0xc05d2dbd uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xc0626de2 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc06ec2c8 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0b2494c vfsmount_lock_lock_init +EXPORT_SYMBOL vmlinux 0xc0cf95f9 omap_vrfb_request_ctx +EXPORT_SYMBOL vmlinux 0xc0d1d03e dev_err +EXPORT_SYMBOL vmlinux 0xc0f67b6b dma_async_memcpy_buf_to_pg +EXPORT_SYMBOL vmlinux 0xc10404c3 start_tty +EXPORT_SYMBOL vmlinux 0xc112ae59 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc158d5c5 inet_frags_init +EXPORT_SYMBOL vmlinux 0xc15ef41f dma_mmap_coherent +EXPORT_SYMBOL vmlinux 0xc171456c dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc17b6a0e try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xc181c756 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xc19f9eae bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xc1b0645f journal_extend +EXPORT_SYMBOL vmlinux 0xc1b407b7 netif_rx +EXPORT_SYMBOL vmlinux 0xc1c2dd09 __hw_addr_flush +EXPORT_SYMBOL vmlinux 0xc1fed87d cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xc20d04ba proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xc2203eb0 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xc2298a5a mark_page_accessed +EXPORT_SYMBOL vmlinux 0xc233d5ba uart_suspend_port +EXPORT_SYMBOL vmlinux 0xc256e762 __bitmap_equal +EXPORT_SYMBOL vmlinux 0xc2850049 seq_open_private +EXPORT_SYMBOL vmlinux 0xc28b9c52 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xc2a4608b splice_from_pipe_next +EXPORT_SYMBOL vmlinux 0xc2cf0301 omapdss_default_get_resolution +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e058a4 idr_get_new_above +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f1bf3d lock_may_read +EXPORT_SYMBOL vmlinux 0xc2f83069 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xc30bab1a scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xc316b98c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0xc31cdbd2 tcp_check_req +EXPORT_SYMBOL vmlinux 0xc33b0064 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xc348cd59 pm860x_page_reg_read +EXPORT_SYMBOL vmlinux 0xc34ff0bb clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc365837b noop_fsync +EXPORT_SYMBOL vmlinux 0xc36a9a5b update_region +EXPORT_SYMBOL vmlinux 0xc37c36e1 omap_writeb +EXPORT_SYMBOL vmlinux 0xc3a9d059 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xc3abbb3b tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xc3b3b47e flush_signals +EXPORT_SYMBOL vmlinux 0xc3ce6991 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xc3cf1128 in_group_p +EXPORT_SYMBOL vmlinux 0xc3fe87c8 param_ops_uint +EXPORT_SYMBOL vmlinux 0xc418677b dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xc43eda7b ppp_register_channel +EXPORT_SYMBOL vmlinux 0xc45ef616 idr_for_each +EXPORT_SYMBOL vmlinux 0xc46a6f04 dput +EXPORT_SYMBOL vmlinux 0xc478e606 find_or_create_page +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4bbb54f register_netdevice +EXPORT_SYMBOL vmlinux 0xc4d82104 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xc4e40df4 __dst_free +EXPORT_SYMBOL vmlinux 0xc4e7d0f9 omap_mcbsp_get_dma_op_mode +EXPORT_SYMBOL vmlinux 0xc4eedae0 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xc4f7127d block_write_end +EXPORT_SYMBOL vmlinux 0xc51079c7 open_exec +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc52f5714 fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0xc53f5f26 journal_stop +EXPORT_SYMBOL vmlinux 0xc54bc3c9 dqstats +EXPORT_SYMBOL vmlinux 0xc54faa25 dentry_open +EXPORT_SYMBOL vmlinux 0xc55d5a97 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xc57282ae ns_capable +EXPORT_SYMBOL vmlinux 0xc59c300d mmc_host_lazy_disable +EXPORT_SYMBOL vmlinux 0xc5a356b5 commit_creds +EXPORT_SYMBOL vmlinux 0xc5a37aa8 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xc5b45463 __generic_file_aio_write +EXPORT_SYMBOL vmlinux 0xc5c59e55 nobh_writepage +EXPORT_SYMBOL vmlinux 0xc5e8dca4 eth_header_parse +EXPORT_SYMBOL vmlinux 0xc5f46566 rb_augment_insert +EXPORT_SYMBOL vmlinux 0xc606d647 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xc6184045 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63d71a4 read_cache_pages +EXPORT_SYMBOL vmlinux 0xc63dffd8 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xc64d1981 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xc6576bb2 sock_i_ino +EXPORT_SYMBOL vmlinux 0xc670cee7 nand_scan_ident +EXPORT_SYMBOL vmlinux 0xc6789050 kill_anon_super +EXPORT_SYMBOL vmlinux 0xc68150d7 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xc6a05313 security_file_mmap +EXPORT_SYMBOL vmlinux 0xc6b13cc6 dma_pool_create +EXPORT_SYMBOL vmlinux 0xc6c55dda xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6f7e321 writeback_inodes_sb_if_idle +EXPORT_SYMBOL vmlinux 0xc6fdfe48 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xc6fe344c i2c_use_client +EXPORT_SYMBOL vmlinux 0xc7069aa3 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc73c8f02 vfs_follow_link +EXPORT_SYMBOL vmlinux 0xc7426ad1 block_write_full_page +EXPORT_SYMBOL vmlinux 0xc74aef8c tcp_disconnect +EXPORT_SYMBOL vmlinux 0xc7519351 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc78bdb6a journal_lock_updates +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4c7a8 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b28a75 truncate_setsize +EXPORT_SYMBOL vmlinux 0xc7c494b3 mii_check_media +EXPORT_SYMBOL vmlinux 0xc7d1b5ad blk_end_request_all +EXPORT_SYMBOL vmlinux 0xc7e1f76e scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc8114ece blk_delay_queue +EXPORT_SYMBOL vmlinux 0xc83f468f cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc856dae2 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xc87823bf twl_i2c_read_u8 +EXPORT_SYMBOL vmlinux 0xc88a3ef7 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xc8a7e2bb get_user_pages +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8d66461 udp_ioctl +EXPORT_SYMBOL vmlinux 0xc9142293 omap_dss_ntsc_timings +EXPORT_SYMBOL vmlinux 0xc9159b2d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xc9203a5f simple_pin_fs +EXPORT_SYMBOL vmlinux 0xc931e772 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xc93eb594 skb_checksum +EXPORT_SYMBOL vmlinux 0xc99092c2 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xc996d097 del_timer +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9d85c2d sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xc9e19034 twl6040_irq_init +EXPORT_SYMBOL vmlinux 0xc9e56b44 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xc9f72f20 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xc9facab2 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xca18ef41 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xca5dbc50 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xca72e90d init_special_inode +EXPORT_SYMBOL vmlinux 0xca84635f elevator_change +EXPORT_SYMBOL vmlinux 0xca8b34b5 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xca9f9c0b generic_pipe_buf_unmap +EXPORT_SYMBOL vmlinux 0xcab17e69 xfrm_cfg_mutex +EXPORT_SYMBOL vmlinux 0xcad023a7 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xcaf6f7a7 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xcb04dd9c ethtool_op_set_tx_ipv6_csum +EXPORT_SYMBOL vmlinux 0xcb0f9cc1 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xcb1b27ac simple_write_end +EXPORT_SYMBOL vmlinux 0xcb1b5610 iget5_locked +EXPORT_SYMBOL vmlinux 0xcb264612 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xcb275c86 inet_frag_find +EXPORT_SYMBOL vmlinux 0xcb4b023d generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xcb54f83c abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xcb7131fb fb_get_options +EXPORT_SYMBOL vmlinux 0xcb7e2683 skb_push +EXPORT_SYMBOL vmlinux 0xcb7f0041 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xcb8d9474 generic_getxattr +EXPORT_SYMBOL vmlinux 0xcb98cd65 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcb99edb0 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0xcb9c82d9 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xcba5fc7d mfd_add_devices +EXPORT_SYMBOL vmlinux 0xcbabb274 clk_get +EXPORT_SYMBOL vmlinux 0xcbb04f7f input_unregister_handle +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcc1584b2 tcp_tso_segment +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc36f32e fb_unregister_client +EXPORT_SYMBOL vmlinux 0xcc43a12b bioset_free +EXPORT_SYMBOL vmlinux 0xcc48c82c register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5ae168 freeze_bdev +EXPORT_SYMBOL vmlinux 0xcc607787 path_is_under +EXPORT_SYMBOL vmlinux 0xcc6979bd neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xcc7fa952 local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0xcc93e922 __put_cred +EXPORT_SYMBOL vmlinux 0xcc97c3a7 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xccac1748 __bforget +EXPORT_SYMBOL vmlinux 0xccbb8352 mdiobus_read +EXPORT_SYMBOL vmlinux 0xccd8aa38 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xcd09d4ea security_path_chmod +EXPORT_SYMBOL vmlinux 0xcd14d36b tcp_connect +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd4122ef md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xcd416cda filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xcd4249e1 sock_update_classid +EXPORT_SYMBOL vmlinux 0xcd4b732f bit_waitqueue +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd644990 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xcd7f87ac tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xcd827ad6 blk_init_queue +EXPORT_SYMBOL vmlinux 0xcd91710f generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xcdb65e99 inet6_release +EXPORT_SYMBOL vmlinux 0xcde172ac radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0xce046f4d mii_nway_restart +EXPORT_SYMBOL vmlinux 0xce07c3aa blkdev_fsync +EXPORT_SYMBOL vmlinux 0xce0f95f1 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xce19bac5 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0xce22bd12 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xce255dd0 account_page_writeback +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2937e7 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xce2d7a6c nf_ct_attach +EXPORT_SYMBOL vmlinux 0xce3e55d4 set_page_dirty +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5d861b devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xce7ce037 of_translate_address +EXPORT_SYMBOL vmlinux 0xce9c4a37 dev_addr_init +EXPORT_SYMBOL vmlinux 0xce9c5a61 put_io_context +EXPORT_SYMBOL vmlinux 0xcea899ea down +EXPORT_SYMBOL vmlinux 0xcebecb3c xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xcede3a10 skb_copy +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefad74a d_set_d_op +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf015f7b do_settimeofday +EXPORT_SYMBOL vmlinux 0xcf0680fc tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xcf0cd017 of_parse_phandles_with_args +EXPORT_SYMBOL vmlinux 0xcf3dcaf1 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xcf94479c iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xcfb9006e jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0xcfc048c7 qdisc_watchdog_schedule +EXPORT_SYMBOL vmlinux 0xcfeb0be9 rb_augment_erase_begin +EXPORT_SYMBOL vmlinux 0xd0181f4f __bitmap_xor +EXPORT_SYMBOL vmlinux 0xd03f80b5 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xd0904095 mpage_readpages +EXPORT_SYMBOL vmlinux 0xd0a14228 mmc_start_req +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0d42c42 mod_timer_pending +EXPORT_SYMBOL vmlinux 0xd0e43207 usb_nop_xceiv_register +EXPORT_SYMBOL vmlinux 0xd0ed0cb3 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd11c0dc1 __kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xd142e11a locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xd14f10a9 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xd172cb8d netdev_increment_features +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1d834be send_sig_info +EXPORT_SYMBOL vmlinux 0xd1e02867 kobject_put +EXPORT_SYMBOL vmlinux 0xd1e48f02 nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0xd1f1e551 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd1f9572b deactivate_super +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd276f795 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd2965f6f kthread_should_stop +EXPORT_SYMBOL vmlinux 0xd2b626c2 sock_i_uid +EXPORT_SYMBOL vmlinux 0xd2c3ac79 dev_set_drvdata +EXPORT_SYMBOL vmlinux 0xd2d51180 of_gpio_count +EXPORT_SYMBOL vmlinux 0xd30dd0a0 dev_warn +EXPORT_SYMBOL vmlinux 0xd312a4a8 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3301545 neigh_update +EXPORT_SYMBOL vmlinux 0xd3434c3f kref_sub +EXPORT_SYMBOL vmlinux 0xd34d6bb0 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xd37a91c2 tty_get_baud_rate +EXPORT_SYMBOL vmlinux 0xd38480a0 rb_augment_erase_end +EXPORT_SYMBOL vmlinux 0xd3a60b75 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xd3cff5b6 omap2_mcbsp1_mux_clkr_src +EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xd3dcab0b flex_array_alloc +EXPORT_SYMBOL vmlinux 0xd3ee88cd proc_symlink +EXPORT_SYMBOL vmlinux 0xd4183419 dev_uc_init +EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource +EXPORT_SYMBOL vmlinux 0xd41b20cd task_nice +EXPORT_SYMBOL vmlinux 0xd45c9856 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xd46f023c sk_reset_txq +EXPORT_SYMBOL vmlinux 0xd476b370 fb_show_logo +EXPORT_SYMBOL vmlinux 0xd478d2b9 dev_addr_del +EXPORT_SYMBOL vmlinux 0xd498ea7d genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xd4a95a26 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xd4ba5ae2 pipe_unlock +EXPORT_SYMBOL vmlinux 0xd4e5f1d3 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xd4e78bd8 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xd5152710 sg_next +EXPORT_SYMBOL vmlinux 0xd536af01 free_buffer_head +EXPORT_SYMBOL vmlinux 0xd54e458c find_inode_number +EXPORT_SYMBOL vmlinux 0xd55c50f5 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xd56e9485 omap_set_dma_dest_index +EXPORT_SYMBOL vmlinux 0xd586c026 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xd59c6090 tty_devnum +EXPORT_SYMBOL vmlinux 0xd5ab27b8 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xd5b037e1 kref_put +EXPORT_SYMBOL vmlinux 0xd5b1376d register_shrinker +EXPORT_SYMBOL vmlinux 0xd5cd0742 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xd5f37b82 test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xd5f5259d wireless_send_event +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61c64b3 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd64d667e inet_recvmsg +EXPORT_SYMBOL vmlinux 0xd679bc0e mmc_card_awake +EXPORT_SYMBOL vmlinux 0xd68500bb eth_type_trans +EXPORT_SYMBOL vmlinux 0xd69a840d inode_needs_sync +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd733f955 sget +EXPORT_SYMBOL vmlinux 0xd7484599 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xd77a5aa5 __bitmap_and +EXPORT_SYMBOL vmlinux 0xd7836f3d d_alloc +EXPORT_SYMBOL vmlinux 0xd79b5a02 allow_signal +EXPORT_SYMBOL vmlinux 0xd7abde7c blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xd7dad82c tcf_generic_walker +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7fc19d7 omap_dss_register_driver +EXPORT_SYMBOL vmlinux 0xd807b3c6 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xd823b7b4 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xd842648f fput +EXPORT_SYMBOL vmlinux 0xd89e8345 journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xd8a2ab95 in_egroup_p +EXPORT_SYMBOL vmlinux 0xd8ce3094 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xd8ce7e67 clocksource_register +EXPORT_SYMBOL vmlinux 0xd8d12a58 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f040f1 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xd92afabe bitmap_clear +EXPORT_SYMBOL vmlinux 0xd93d4139 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xd951160a journal_revoke +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd957bb07 __rta_fill +EXPORT_SYMBOL vmlinux 0xd95fbad8 ndisc_send_skb +EXPORT_SYMBOL vmlinux 0xd96af00f thermal_cooling_device_unregister +EXPORT_SYMBOL vmlinux 0xd96d1f02 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9930ad6 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xd9a4bce9 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xd9aa27a2 mempool_create_node +EXPORT_SYMBOL vmlinux 0xd9cc48e3 napi_get_frags +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9e4932d dev_get_stats +EXPORT_SYMBOL vmlinux 0xda023745 journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xda13970e udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xda2deda1 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xda3cf2c4 proc_dointvec +EXPORT_SYMBOL vmlinux 0xda5b4a0b generic_file_aio_write +EXPORT_SYMBOL vmlinux 0xda6f6f54 dma_map_sg +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda96b863 elv_rb_find +EXPORT_SYMBOL vmlinux 0xdaaa128b kthread_bind +EXPORT_SYMBOL vmlinux 0xdabe8fbf ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xdac0db61 mdiobus_alloc +EXPORT_SYMBOL vmlinux 0xdb0507e2 get_fs_type +EXPORT_SYMBOL vmlinux 0xdb2178c7 __sg_free_table +EXPORT_SYMBOL vmlinux 0xdb2746b6 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb864d65 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xdb8a165f bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xdb9e2c22 posix_acl_create +EXPORT_SYMBOL vmlinux 0xdbaadaba dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0xdbcd416e sysctl_ip_nonlocal_bind +EXPORT_SYMBOL vmlinux 0xdbd4cb4a of_device_register +EXPORT_SYMBOL vmlinux 0xdbdbee86 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xdbeb1211 journal_ack_err +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc2519e0 param_set_ulong +EXPORT_SYMBOL vmlinux 0xdc2a9f97 get_io_context +EXPORT_SYMBOL vmlinux 0xdc2adb35 add_taint +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc43a9c8 daemonize +EXPORT_SYMBOL vmlinux 0xdc641aa2 of_find_matching_node +EXPORT_SYMBOL vmlinux 0xdc68edec tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xdc798d37 __mutex_init +EXPORT_SYMBOL vmlinux 0xdca7a472 unregister_key_type +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcbad87a max8998_update_reg +EXPORT_SYMBOL vmlinux 0xdcf20f92 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xdcf803f2 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd0bf330 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xdd0e1663 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xdd1c65f6 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2f284a dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xdd5f24cc elv_rb_add +EXPORT_SYMBOL vmlinux 0xdd771d81 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xdd81df8b devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xdd8dbe63 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xdd9c7259 softnet_data +EXPORT_SYMBOL vmlinux 0xddc1ec68 input_flush_device +EXPORT_SYMBOL vmlinux 0xddffd33d nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0xde15c042 omap_set_dma_src_index +EXPORT_SYMBOL vmlinux 0xde214379 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xde2774c5 __lru_cache_add +EXPORT_SYMBOL vmlinux 0xde3555dc vsc824x_add_skew +EXPORT_SYMBOL vmlinux 0xde378c34 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xde3c68a6 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xde3f51dd i2c_verify_client +EXPORT_SYMBOL vmlinux 0xde56e195 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xde692d94 omap_get_dma_chain_src_pos +EXPORT_SYMBOL vmlinux 0xde6c07af ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xde7c832e scsi_host_get +EXPORT_SYMBOL vmlinux 0xde7d3b59 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xde8c763d cpu_v7_set_pte_ext +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xdea9b828 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xdec555d9 skb_seq_read +EXPORT_SYMBOL vmlinux 0xded1bb26 scsi_get_command +EXPORT_SYMBOL vmlinux 0xdf070a93 key_alloc +EXPORT_SYMBOL vmlinux 0xdf1b634e pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xdf1ef69f wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xdf25bbfb d_prune_aliases +EXPORT_SYMBOL vmlinux 0xdf2a5cc6 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xdf4306ff mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xdf48a0eb flex_array_put +EXPORT_SYMBOL vmlinux 0xdf4c7a07 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xdf4c8767 ns_to_timeval +EXPORT_SYMBOL vmlinux 0xdf57cfcd netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xdf5d870f blk_get_backing_dev_info +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf670eca generic_delete_inode +EXPORT_SYMBOL vmlinux 0xdf74a9ae dev_load +EXPORT_SYMBOL vmlinux 0xdf758bb4 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf9ca160 cdrom_open +EXPORT_SYMBOL vmlinux 0xdfb01a80 cpu_v7_dcache_clean_area +EXPORT_SYMBOL vmlinux 0xdfb8b06f netlink_dump_start +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdfd96c2e scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xe045bb1c mount_subtree +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05399a3 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07c5b0c input_close_device +EXPORT_SYMBOL vmlinux 0xe0a81819 neigh_table_init +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c12089 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xe0dfe46d ethtool_op_get_flags +EXPORT_SYMBOL vmlinux 0xe0fc24aa param_set_int +EXPORT_SYMBOL vmlinux 0xe106154f omap_vram_get_info +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11df92e journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xe13bd301 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xe14e05e8 eth_header +EXPORT_SYMBOL vmlinux 0xe16b893b mutex_lock +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17f469e file_sb_list_del +EXPORT_SYMBOL vmlinux 0xe1ccece7 block_truncate_page +EXPORT_SYMBOL vmlinux 0xe1de06d9 __cleancache_flush_page +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2098024 icmpv6_send +EXPORT_SYMBOL vmlinux 0xe22abb33 mount_bdev +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe23c6f92 release_pages +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe273c247 bmap +EXPORT_SYMBOL vmlinux 0xe2a0f20b mmc_register_driver +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2df3a05 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe319e837 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xe327b0b6 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xe352156d sk_reset_timer +EXPORT_SYMBOL vmlinux 0xe36a35b7 journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe376fbeb tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr +EXPORT_SYMBOL vmlinux 0xe38fff12 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3deed23 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xe3f75c87 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xe49775f9 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xe4abe026 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4ebf7af page_readlink +EXPORT_SYMBOL vmlinux 0xe4ef2a6e aio_put_req +EXPORT_SYMBOL vmlinux 0xe5122890 flow_cache_genid +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5250c84 key_unlink +EXPORT_SYMBOL vmlinux 0xe5445af6 omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xe5608864 single_release +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe592143f dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0xe596c32e ppp_channel_index +EXPORT_SYMBOL vmlinux 0xe5a15784 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xe5a31e0d dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xe5b12399 d_move +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5dab8ee d_instantiate +EXPORT_SYMBOL vmlinux 0xe5e8c921 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xe5eb1427 d_alloc_name +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe62249a8 mpage_readpage +EXPORT_SYMBOL vmlinux 0xe66dd1a3 ip_route_input_common +EXPORT_SYMBOL vmlinux 0xe6744a89 omap_clear_dma +EXPORT_SYMBOL vmlinux 0xe6780947 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69e6511 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xe6a40ba1 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xe6c3ebb0 __raw_writesw +EXPORT_SYMBOL vmlinux 0xe6d94c7b mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xe6e86ef8 dcb_setapp +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7077916 dquot_operations +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe718a391 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xe73d0fde sleep_on +EXPORT_SYMBOL vmlinux 0xe7609b0d generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe7722171 flex_array_free +EXPORT_SYMBOL vmlinux 0xe79a116f tcp_ioctl +EXPORT_SYMBOL vmlinux 0xe7a28bf2 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xe7a664c4 nf_hooks +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe80ce219 sysctl_tcp_dma_copybreak +EXPORT_SYMBOL vmlinux 0xe8158adb tcf_register_action +EXPORT_SYMBOL vmlinux 0xe835c4e8 fb_get_mode +EXPORT_SYMBOL vmlinux 0xe85e7e0e set_blocksize +EXPORT_SYMBOL vmlinux 0xe8690ff1 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87ed1ce idr_replace +EXPORT_SYMBOL vmlinux 0xe8b63ace radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xe8bc04f3 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xe8c1a051 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xe8c46934 poll_initwait +EXPORT_SYMBOL vmlinux 0xe8da2818 nla_append +EXPORT_SYMBOL vmlinux 0xe8e97ec4 i2c_release_client +EXPORT_SYMBOL vmlinux 0xe8ebf346 ab8500_gpadc_ad_to_voltage +EXPORT_SYMBOL vmlinux 0xe90db173 do_mmap_pgoff +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe93d0ed4 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe977585b scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xe97ed621 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xe9c3f1c4 phy_print_status +EXPORT_SYMBOL vmlinux 0xe9ce8b95 omap_ioremap +EXPORT_SYMBOL vmlinux 0xe9d6011a phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xe9e12a39 init_net +EXPORT_SYMBOL vmlinux 0xe9e96f2d skb_copy_and_csum_datagram_iovec +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea10212a int_to_scsilun +EXPORT_SYMBOL vmlinux 0xea10655a __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xea3749b3 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xea3c0111 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea8a6c75 param_ops_long +EXPORT_SYMBOL vmlinux 0xea9855ae blk_limits_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xea9fb9df rename_lock +EXPORT_SYMBOL vmlinux 0xead756ef flush_delayed_work_sync +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaecc4a5 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xeaee5ada blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb1e6088 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb5fb656 empty_aops +EXPORT_SYMBOL vmlinux 0xeb66cb94 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xeb8eaeac scsi_put_command +EXPORT_SYMBOL vmlinux 0xeba677bd posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xebad6c92 lro_receive_frags +EXPORT_SYMBOL vmlinux 0xebb692e0 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xebc2423d nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xebdbe48c radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec0ec588 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xec15f00a tcp_cookie_generator +EXPORT_SYMBOL vmlinux 0xec45bf15 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec4e50df free_user_ns +EXPORT_SYMBOL vmlinux 0xec55fe02 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xec697d76 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xec6a4d04 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xec7f3ea8 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xecc4b623 genphy_update_link +EXPORT_SYMBOL vmlinux 0xeceef448 unlock_super +EXPORT_SYMBOL vmlinux 0xed2b91bd find_lock_page +EXPORT_SYMBOL vmlinux 0xed302f0f tty_lock +EXPORT_SYMBOL vmlinux 0xed47dcc9 tty_port_put +EXPORT_SYMBOL vmlinux 0xed61cb5a unlock_buffer +EXPORT_SYMBOL vmlinux 0xed6e1c16 __bread +EXPORT_SYMBOL vmlinux 0xed854dac omap_stop_dma_chain_transfers +EXPORT_SYMBOL vmlinux 0xed92f523 blk_run_queue +EXPORT_SYMBOL vmlinux 0xeda0d76e gen_estimator_active +EXPORT_SYMBOL vmlinux 0xedaa2a6a vfs_write +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xede98f52 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xedeb22bb no_llseek +EXPORT_SYMBOL vmlinux 0xedf302c2 nf_log_register +EXPORT_SYMBOL vmlinux 0xee00333b dev_disable_lro +EXPORT_SYMBOL vmlinux 0xee01fc14 vfs_symlink +EXPORT_SYMBOL vmlinux 0xee108f30 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xee296a3e __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xee2c9178 dma_mmap_writecombine +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee6f00c5 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xee997103 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeed0c9a input_unregister_handler +EXPORT_SYMBOL vmlinux 0xef291087 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xef43db0f sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xef5a9afa empty_zero_page +EXPORT_SYMBOL vmlinux 0xef83a172 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xef93c3af skb_copy_datagram_iovec +EXPORT_SYMBOL vmlinux 0xef974e8f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xefadb6c1 mpage_writepage +EXPORT_SYMBOL vmlinux 0xefb61f49 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xefb66a95 omap_request_dma_chain +EXPORT_SYMBOL vmlinux 0xefc4889a eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xefd6cf06 __aeabi_unwind_cpp_pr0 +EXPORT_SYMBOL vmlinux 0xefd78a74 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xefdbd0e5 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xefdd2345 sg_init_one +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xefefad63 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xeff8b6ef xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00c6e10 netdev_printk +EXPORT_SYMBOL vmlinux 0xf016fb78 do_truncate +EXPORT_SYMBOL vmlinux 0xf017aa16 tty_register_device +EXPORT_SYMBOL vmlinux 0xf01db99f sk_release_kernel +EXPORT_SYMBOL vmlinux 0xf029ea77 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xf0373511 kill_block_super +EXPORT_SYMBOL vmlinux 0xf04311a8 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xf051e63c tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xf09a2d23 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xf09b45fb seq_puts +EXPORT_SYMBOL vmlinux 0xf0c8b27a sock_create_kern +EXPORT_SYMBOL vmlinux 0xf0c8d078 twl6040_power +EXPORT_SYMBOL vmlinux 0xf0d19276 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f1246c kvasprintf +EXPORT_SYMBOL vmlinux 0xf0f28ddd mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xf0fdf6cb __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xf1216c75 prandom32 +EXPORT_SYMBOL vmlinux 0xf154b923 ndisc_build_skb +EXPORT_SYMBOL vmlinux 0xf1595671 get_unmapped_area_prot +EXPORT_SYMBOL vmlinux 0xf1852467 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1a3c919 omap_mcbsp_set_tx_threshold +EXPORT_SYMBOL vmlinux 0xf1bd43b7 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xf1cf3036 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1eabd48 sg_miter_next +EXPORT_SYMBOL vmlinux 0xf1ebb0c5 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xf1f98301 dquot_drop +EXPORT_SYMBOL vmlinux 0xf202c5cb radix_tree_insert +EXPORT_SYMBOL vmlinux 0xf206151c security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2130e73 phy_driver_register +EXPORT_SYMBOL vmlinux 0xf21c5ee0 noop_qdisc +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2470a9d dump_write +EXPORT_SYMBOL vmlinux 0xf2584e09 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xf258729c sync_inode +EXPORT_SYMBOL vmlinux 0xf26df746 omap_vram_free +EXPORT_SYMBOL vmlinux 0xf273fc3d cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xf28e1e3e omap_st_disable +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2cb49e0 do_sync_write +EXPORT_SYMBOL vmlinux 0xf2d79a1f abx500_register_ops +EXPORT_SYMBOL vmlinux 0xf2e5a880 tcf_hash_destroy +EXPORT_SYMBOL vmlinux 0xf2f157f9 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf338d4c3 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3470fc2 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xf3652bda register_qdisc +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf39bf4d9 put_cmsg +EXPORT_SYMBOL vmlinux 0xf3a85cff ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xf3bf0bce __bitmap_complement +EXPORT_SYMBOL vmlinux 0xf3de83e8 security_path_mknod +EXPORT_SYMBOL vmlinux 0xf3f4657a genl_unregister_mc_group +EXPORT_SYMBOL vmlinux 0xf42934cc jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xf42a0fef bdi_init +EXPORT_SYMBOL vmlinux 0xf44129f2 con_is_bound +EXPORT_SYMBOL vmlinux 0xf45344ae netdev_info +EXPORT_SYMBOL vmlinux 0xf4696169 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xf47763db unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL vmlinux 0xf4be3e9b register_sysctl_table +EXPORT_SYMBOL vmlinux 0xf4d02802 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xf4d1364a rfkill_alloc +EXPORT_SYMBOL vmlinux 0xf4e7c8ff kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf51460bd bio_map_user +EXPORT_SYMBOL vmlinux 0xf51c7abb scsi_device_put +EXPORT_SYMBOL vmlinux 0xf51e5297 md_register_thread +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54ba601 omap_mcbsp_config +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf54efa12 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf5a65d34 skb_set_dev +EXPORT_SYMBOL vmlinux 0xf5bf9334 dget_parent +EXPORT_SYMBOL vmlinux 0xf5c05914 generic_segment_checks +EXPORT_SYMBOL vmlinux 0xf5c9012e timespec_trunc +EXPORT_SYMBOL vmlinux 0xf5cf326a param_ops_short +EXPORT_SYMBOL vmlinux 0xf5e4a9be of_get_parent +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf612809a param_get_int +EXPORT_SYMBOL vmlinux 0xf61ed089 netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xf6288e02 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf65c9518 user_path_create +EXPORT_SYMBOL vmlinux 0xf684ab9b __lock_page +EXPORT_SYMBOL vmlinux 0xf68601db phy_find_first +EXPORT_SYMBOL vmlinux 0xf68e8c13 input_set_capability +EXPORT_SYMBOL vmlinux 0xf6b8567d downgrade_write +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c18c9a fsync_bdev +EXPORT_SYMBOL vmlinux 0xf6d49898 omapdss_dpi_display_disable +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f3cef6 omap_vrfb_setup +EXPORT_SYMBOL vmlinux 0xf6f63683 ata_link_printk +EXPORT_SYMBOL vmlinux 0xf6fb117c bio_integrity_get_tag +EXPORT_SYMBOL vmlinux 0xf707a0db mmc_suspend_host +EXPORT_SYMBOL vmlinux 0xf70a7177 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xf721d51c nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0xf755281d dma_supported +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf76c5a4f dma_set_mask +EXPORT_SYMBOL vmlinux 0xf7739e9d get_disk +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf78d04ab netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xf7b1c825 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xf7b1e116 blk_peek_request +EXPORT_SYMBOL vmlinux 0xf7c61815 get_omap3_evm_rev +EXPORT_SYMBOL vmlinux 0xf7e7778d request_key +EXPORT_SYMBOL vmlinux 0xf803fe39 bitmap_set +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf821ba63 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xf841e5e7 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xf84b3fa8 tcp_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xf84eb693 seq_path +EXPORT_SYMBOL vmlinux 0xf853bbca omap_vrfb_map_angle +EXPORT_SYMBOL vmlinux 0xf86af23b tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf8802498 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xf88c3301 sg_init_table +EXPORT_SYMBOL vmlinux 0xf88dc6fb tcp_seq_open +EXPORT_SYMBOL vmlinux 0xf890fe7f pm_idle +EXPORT_SYMBOL vmlinux 0xf8aa6205 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0xf8ca5084 mdiobus_write +EXPORT_SYMBOL vmlinux 0xf8ce0b68 override_creds +EXPORT_SYMBOL vmlinux 0xf8fbb4f0 __bad_xchg +EXPORT_SYMBOL vmlinux 0xf9022d68 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xf911d01e security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xf91b1c8c delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xf92322ba ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf96bb903 skb_append +EXPORT_SYMBOL vmlinux 0xf97e73b9 save_mount_options +EXPORT_SYMBOL vmlinux 0xf9987fb5 sock_no_getname +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b48e62 journal_load +EXPORT_SYMBOL vmlinux 0xf9d79469 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xf9df01da __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9fdccc5 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xfa082128 down_interruptible +EXPORT_SYMBOL vmlinux 0xfa0981a5 give_up_console +EXPORT_SYMBOL vmlinux 0xfa2121ea unregister_console +EXPORT_SYMBOL vmlinux 0xfa2395e6 inet_getname +EXPORT_SYMBOL vmlinux 0xfa431974 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xfa5cdbe7 alloc_tty_driver +EXPORT_SYMBOL vmlinux 0xfa6a7e47 omap_dss_start_device +EXPORT_SYMBOL vmlinux 0xfa7b9f7f alloc_file +EXPORT_SYMBOL vmlinux 0xfa82582d tcp_parse_options +EXPORT_SYMBOL vmlinux 0xfa84c3f4 d_path +EXPORT_SYMBOL vmlinux 0xfaaaae84 skb_unlink +EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xfac856bf neigh_event_ns +EXPORT_SYMBOL vmlinux 0xfac9bd36 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xfaca91f0 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xfacd2e14 pgprot_user +EXPORT_SYMBOL vmlinux 0xfada2093 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xfae1565c skb_insert +EXPORT_SYMBOL vmlinux 0xfaf98462 bitrev32 +EXPORT_SYMBOL vmlinux 0xfb1b63fe simple_rmdir +EXPORT_SYMBOL vmlinux 0xfb210206 inet_put_port +EXPORT_SYMBOL vmlinux 0xfb21cf23 backlight_force_update +EXPORT_SYMBOL vmlinux 0xfb275b38 bdev_read_only +EXPORT_SYMBOL vmlinux 0xfb3e6c4d simple_map_init +EXPORT_SYMBOL vmlinux 0xfb53c648 of_phy_connect +EXPORT_SYMBOL vmlinux 0xfb5bdb9d key_link +EXPORT_SYMBOL vmlinux 0xfb5f8933 kill_fasync +EXPORT_SYMBOL vmlinux 0xfb658396 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7d26f4 files_lglock_lock_init +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfba40579 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb5b35c dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xfbe27a1c rb_first +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0fc2b4 pid_task +EXPORT_SYMBOL vmlinux 0xfc1443e5 scsi_add_device +EXPORT_SYMBOL vmlinux 0xfc358bc6 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc6c191d blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xfc9cbe1d __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xfca01936 genl_register_ops +EXPORT_SYMBOL vmlinux 0xfca8d26f mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xfcaa04a0 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xfcb992da __sock_create +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcd35070 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xfcdb187a sk_wait_data +EXPORT_SYMBOL vmlinux 0xfce9fb84 omap_dss_find_device +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcef6481 may_umount +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd6293c2 boot_tvec_bases +EXPORT_SYMBOL vmlinux 0xfd649195 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xfd6b3d0c posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xfd985441 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xfda0dbe8 ftrace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xfdcc1023 sock_wake_async +EXPORT_SYMBOL vmlinux 0xfdce6df3 dev_open +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe09aed8 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xfe4c4d64 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe634f58 add_wait_queue +EXPORT_SYMBOL vmlinux 0xfe769456 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xfe78b6ab sk_run_filter +EXPORT_SYMBOL vmlinux 0xfec3c2f2 bcd2bin +EXPORT_SYMBOL vmlinux 0xfecd1e7e nf_getsockopt +EXPORT_SYMBOL vmlinux 0xfed0cb7d __cleancache_flush_inode +EXPORT_SYMBOL vmlinux 0xfedd35fc console_suspend_enabled +EXPORT_SYMBOL vmlinux 0xfeee83c1 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xfef96e23 __scsi_print_command +EXPORT_SYMBOL vmlinux 0xff1132df arp_tbl +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2b0fa1 omap_mcbsp_get_max_rx_threshold +EXPORT_SYMBOL vmlinux 0xff6084e2 clk_register +EXPORT_SYMBOL vmlinux 0xff67b37f __lshrdi3 +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff830a40 simple_link +EXPORT_SYMBOL vmlinux 0xff9a7521 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa63087 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffc0c58c add_disk +EXPORT_SYMBOL vmlinux 0xffc38a0d sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xffc41b2e set_bdi_congested +EXPORT_SYMBOL vmlinux 0xffce1b3d generic_setlease +EXPORT_SYMBOL vmlinux 0xffcf0278 serio_open +EXPORT_SYMBOL vmlinux 0xffd2cf99 omap_dss_get_num_overlay_managers +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xfff1bc96 setattr_copy +EXPORT_SYMBOL vmlinux 0xfff6d129 lro_flush_pkt +EXPORT_SYMBOL vmlinux 0xfffc9b5e journal_start_commit +EXPORT_SYMBOL_GPL crypto/af_alg 0x010600e2 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x24cdc6b9 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x8dd02fa8 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb257fe1e af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xbe6a9a67 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xca5ac445 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xdf623e43 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xdfab0bcb af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xe4649fde af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xb1826638 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x56a98519 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa13db805 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x0cc1ad22 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb61df0bf async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5eb120a9 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x70c0ba79 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8c343b8e async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xeedfccf3 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x30e83d10 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x50374b90 async_xor +EXPORT_SYMBOL_GPL crypto/blowfish_common 0xf3be5fcd blowfish_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x1e640988 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4935be36 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x569f7495 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x58956f69 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x67113a86 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x6c19ddca cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xced283f9 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xd28b8f44 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xd6cf237c cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xedddd49b cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/des_generic 0xcfd9a2c0 des_ekey +EXPORT_SYMBOL_GPL crypto/twofish_common 0xa97b5f0f twofish_setkey +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x036b6638 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x074bef1f ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x37c105e2 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4e55a5cd ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x51f4a0a7 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5eacba1f ahci_interrupt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x60677d32 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6981d51e ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x754b20f8 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x82558bad ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb61bb2e6 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb84fa165 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc603bc84 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdad850d7 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe3aa2e81 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe62399b9 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe6e07407 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf6464980 ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfa185b52 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x086d3b08 __pata_platform_remove +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xb019ff5e __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0c919e2f __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x20fc5771 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x404ed307 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5922241f bcma_core_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68c87256 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6cdaca27 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x724ac5d2 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa197fd68 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa789409f bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbeae6565 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbf746d9f bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc84350d7 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd9f39a2d bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x321bfda9 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7f3395f9 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc94f9446 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd6b5c7b6 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdac56766 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe8d820f0 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xec217237 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xecb755ba btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xd8dc3093 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xed0aad4b bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x0fb27f96 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x12ab17aa __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x03497de1 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc2cd41a9 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x077a5c38 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b67a8e9 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x14db5b8c hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19643ee8 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c740ca2 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x221fb1e2 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c7f591b hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3049c9e0 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x456d17dc hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x475f67b0 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5bb7f9ba hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6837168d hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7be70a72 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fc6bd2a hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b303e56 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a2b8fa5 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa7a7fa09 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1b28e2d hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdf009fc hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd64b10e8 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9f0e215 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe56b900f hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xea11082d hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xebb1ccb0 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf44a8571 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf807bcd1 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0xb84d8986 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x194fad2e roccat_common_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5c9c8c23 roccat_common_receive +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x375fcef4 usbhid_wait_io +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x5917cd2e usbhid_submit_report +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x727988f0 usbhid_set_leds +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa85827fe hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x144bb994 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf44e5e32 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x73df7d2e i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd207d70c i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x7d519a35 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x49a4fcbd adxl34x_remove +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x66535a18 adxl34x_suspend +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xd8ca127b adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x14cb22d3 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x293f7605 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x34816b5f wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x55611c73 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5cd27e89 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x853cb63a wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8a54e3c4 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbe59f41d wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc01475c6 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xde57d7c4 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe6bba846 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf82b6bc1 wm9713_codec +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0x0ef221ba omap_iommu_vmap +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0x9b3cf087 omap_iommu_vfree +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0xa0f04fbb omap_da_to_va +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0xb6418220 omap_find_iovm_area +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0xc41919a3 omap_iommu_vmalloc +EXPORT_SYMBOL_GPL drivers/iommu/omap-iovmm 0xd13af003 omap_iommu_vunmap +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0x4de7b2d0 unregister_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/capi/kernelcapi 0xb17b7c77 register_capictr_notifier +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x07148662 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0a92bf0a gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x32bdd2e4 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7fcf21e3 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x85edace4 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x86c95bac gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8f3891f5 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x915ea62f gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaae33d7f gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc2b7e9e8 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc3222bea gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcaf26346 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd186f387 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xde3cc37a gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe8f15230 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf7a5bdf6 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfd92adf6 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x22163b69 dm_bufio_release_move +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x594952bd dm_bufio_read +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x62a23587 dm_bufio_get_device_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x6d3f57bd dm_bufio_get_client +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x74dcd98c dm_bufio_get_aux_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x773c6ad9 dm_bufio_client_create +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x7c381a76 dm_bufio_get_block_size +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x9b2b253a dm_bufio_get +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xa82b2066 dm_bufio_write_dirty_buffers +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd4bddf5c dm_bufio_issue_flush +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xdc69e37a dm_bufio_get_block_number +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe004ee92 dm_bufio_new +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xe6024e59 dm_bufio_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xebcc64a4 dm_bufio_get_block_data +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xeca7949e dm_bufio_client_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x89813dbe dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x8f5224ab dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x01d2f9ac dm_rh_recovery_start +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x09472122 dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x38efaf5a dm_region_hash_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3b444aae dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x65fc86b8 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7774620f dm_rh_stop_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7d053fc5 dm_rh_start_recovery +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7e48a9f5 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa53387c7 dm_rh_flush +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa83588eb dm_rh_recovery_end +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa8813ad6 dm_rh_region_to_sector +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xbe38a431 dm_rh_recovery_prepare +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xc66ce277 dm_rh_get_region_size +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xcab63c3d dm_rh_get_state +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd6a84fda dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf08181d5 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf92e190d dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfd93482e dm_rh_recovery_in_flight +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x0054f69d dm_tm_pre_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x03ced457 dm_btree_lookup +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x08a936ca dm_btree_insert_notify +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x11eab9fe dm_bm_read_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x1e3f728d dm_block_data +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2c112836 dm_block_location +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x2e730a21 dm_bm_checksum +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x40f7bd91 dm_tm_inc +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x61c7c085 dm_tm_create_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x63b2ff62 dm_btree_insert +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x688d422d dm_bm_block_size +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x72289260 dm_block_manager_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7ade1071 dm_tm_destroy +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x7b047bd9 dm_tm_create_non_blocking_clone +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x80c89b3d dm_tm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x998ca9c4 dm_block_manager_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0x9b4b5b29 dm_bm_write_lock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xa6aae3ea dm_btree_find_highest_key +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb7bad799 dm_bm_unlock +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb967690a dm_btree_remove +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xb9a6ecf8 dm_tm_dec +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbaa513b0 dm_sm_disk_open +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xbc5fe7c1 dm_sm_disk_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xca2bde4d dm_tm_open_with_sm +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xccaeb9ae dm_sm_checker_create_fresh +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd163cade dm_tm_commit +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xd32479bc dm_sm_checker_create +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xdb562135 dm_btree_empty +EXPORT_SYMBOL_GPL drivers/md/persistent-data/dm-persistent-data 0xf99dc2cf dm_btree_del +EXPORT_SYMBOL_GPL drivers/md/raid1 0xf90f6ada md_raid1_congested +EXPORT_SYMBOL_GPL drivers/md/raid456 0xaa686291 md_raid5_congested +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mt20xx 0x50fbb2c3 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/mxl5007t 0xed1a3e42 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda18271 0x7b1c73db tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda827x 0xa51b11ee tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0x2618980f tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda8290 0xa1db7f3b tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tda9887 0xb2525b57 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0x8a390ec7 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5761 0xa2519788 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0x3c7af500 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tea5767 0xe5315f75 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/common/tuners/tuner-simple 0x1752e5c9 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-demod 0xd7287ae7 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/dvb-usb/mxl111sf-tuner 0xbf36fcf6 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/frontends/tda18271c2dd 0x97c207fd tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x22b7c65b smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x33c592a3 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x373dfb45 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x3ee5ec3c smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x482591fb smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x6a373b38 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x74d9ed13 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x76222253 sms_get_board +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x8644573f smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x945d5171 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x954b4725 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0x957dec9b sms_board_event +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa0132b61 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xa42d2998 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xab522958 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xc7f40050 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xe705593c smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb/siano/smsmdtv 0xea4d4437 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x05fb336e rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x15a3a881 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x49070840 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4c3dc428 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x53889243 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6261e3aa rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x647773b6 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7d7836c6 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x816172bf rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x84fc67ee rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa6d03085 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xaf6d3ded rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb00c2406 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdd3af299 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe0e762ff ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeb7d8b1b rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf33e8986 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x0df292fb cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x10a39479 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x1fa53bb5 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x24bd4c7a cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x3d376fe6 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x4ee0c47c cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x557556c3 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x5cc5b2f9 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x7e859cea cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x87ae6d0a cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x94df695e cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x95e8c3cc is_fw_load +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0x9727b979 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xa6980b5d cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xaa53fd9f cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xcfb33bbd cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xdd5e6bdb cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xdf08920e cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/video/cx231xx/cx231xx 0xf5c20655 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x01bcb098 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x210ef9a0 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x24c7e2da em28xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x3a8f349f em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x5666f834 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xa13d91e2 em28xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xc6a459c8 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xe6c53735 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xe8779c0b em28xx_isoc_dvb_max_packetsize +EXPORT_SYMBOL_GPL drivers/media/video/em28xx/em28xx 0xf3c8dd92 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/video/omap/omap-vout 0x149c627c omap_vout_new_format +EXPORT_SYMBOL_GPL drivers/media/video/omap/omap-vout 0x6e8f579f omap_vout_try_window +EXPORT_SYMBOL_GPL drivers/media/video/omap/omap-vout 0x9dea2c48 omap_vout_new_crop +EXPORT_SYMBOL_GPL drivers/media/video/omap/omap-vout 0xd49da048 omap_vout_new_window +EXPORT_SYMBOL_GPL drivers/media/video/omap/omap-vout 0xfada383c omap_vout_default_crop +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x3284641e tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x69789901 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0x9889af51 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xc708f3fc tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/video/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x2d38ac1b v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x3ddce747 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x813f3de4 v4l2_find_nearest_format +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x82620963 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0x94632f90 v4l_fill_dv_preset_info +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xbcb31d68 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xcaaa2b00 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xdc2192a1 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf2a353ac v4l2_i2c_tuner_addrs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-common 0xf5ef842e v4l_bound_align_image +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x268b2c1e v4l2_int_ioctl_0 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0x3d5965db v4l2_int_ioctl_1 +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xa5228b24 v4l2_int_device_try_attach_all +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xb1a94a1b v4l2_int_device_register +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-int-device 0xba851363 v4l2_int_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x3ab0c154 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x4633cccc v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x5bfd09bf v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x8b99c7fd v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x9556f324 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x96c46546 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0x98d225d9 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xa58c421f v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xa89981b2 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xb97b818a v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xc7c5f5a5 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xdfa61d20 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/v4l2-mem2mem 0xfc7e9414 v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x0a57522c videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x0b6e1a64 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x1331b78a videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x1d2b85ea videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x2d6dd809 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x57f9a5e0 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x58739576 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x5e9d5c94 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6b4b175e videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x6f9e44af videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x74bced06 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7633a732 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7c1bfbee videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x7de5cb29 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x888809ef videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8ece8ff1 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x8eec7aaf videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0x9a90291b videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xb974d66f videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xbae063ec __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xc8897616 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xea68cf0e videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xeff2db33 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-core 0xf720fbdc videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x244d1129 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0x3c8cac49 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-dma-contig 0xd841db0c videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x98eee274 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0x9fe56fd1 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/video/videobuf-vmalloc 0xdf2d1ab7 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x0c454e8c vb2_write +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x100f0e56 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x10c30bb5 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x122f5f51 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x4b75c973 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x51b5eaa9 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x593d3ff2 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x66f7a5c7 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x8a3ae4e8 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0x99c4a945 vb2_read +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xa2bbb180 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xb462c6f0 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xbad21924 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xca4db702 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xe1581a2c vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xfc8ea40a vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-core 0xfeb5cbf2 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0x3c98cf00 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xb6dcd632 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-dma-contig 0xe57f0426 vb2_dma_contig_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x0f4ff707 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0x2f349c55 vb2_get_contig_userptr +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xa996331b vb2_put_vma +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-memops 0xe1aaf8a4 vb2_mmap_pfn_range +EXPORT_SYMBOL_GPL drivers/media/video/videobuf2-vmalloc 0x78c9cf3f vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0083977b v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x0462e8b3 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x206b57be v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x2d3d5510 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x3735e6d8 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x3afc6fba v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x45e22b85 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x5b50472c v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x67a0cc45 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x6d4fb385 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x72b7a0d2 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x8193397a v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x83e8e024 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x8d539884 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x93d7c4ae v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0x97a61479 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xa6ed099d v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xac225aa0 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xc43bdcaa v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xc6b58390 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xdde2b960 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/video/videodev 0xe105f960 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x29d1d107 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x04d92b70 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x49ae673a pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x591c6198 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7e28d728 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7f013724 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x80f4f268 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x97305a50 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xab285716 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb51382a4 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdd057e09 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf4919344 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x725d9ac1 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb5acee6b pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x480548ea pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6c3ba19a pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa132f457 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb927abd7 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xff9f9b8e pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4c885fe2 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6b7b2f13 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8c04acab sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x9e4010d3 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa3fde6e9 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/twl4030-madc 0x08b8dd2e twl4030_madc_conversion +EXPORT_SYMBOL_GPL drivers/mfd/twl4030-madc 0x4362dc66 twl4030_get_madc_conversion +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xb22c5e01 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x306c40a3 wm8400_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x3cbdabf6 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0x4074c371 wm8400_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/wm8400-core 0xbc679d0d wm8400_block_read +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x2df115d4 eeprom_93cx6_multiread +EXPORT_SYMBOL_GPL drivers/misc/eeprom/eeprom_93cx6 0x63d14d2f eeprom_93cx6_read +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x08f8ea28 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x09320d3e enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x16e733b9 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3abaf370 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x42ff1602 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x518e92a4 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfda9d879 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x08ac94d6 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1dca177e lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2ff4a11c lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x31eae0dc lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4a6e0d7e lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9f4aea38 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa9297e78 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0x5e7cb021 st_register +EXPORT_SYMBOL_GPL drivers/misc/ti-st/st_drv 0xfdc926f6 st_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0bae163f sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0cbad832 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x15f82733 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1d965b02 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x61c03e38 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x83946ad3 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x059ec9a3 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x2c843200 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7af42155 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5199f47f cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xae9ec014 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xfcab3752 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x9a472458 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x466f3736 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7f288c1d cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc7790d87 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2000 0x32c17c93 DoC2k_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001 0xe924923c DoCMil_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/doc2001plus 0xe5ae52fa DoCMilPlus_init +EXPORT_SYMBOL_GPL drivers/mtd/devices/docecc 0x45937659 doc_decode_ecc +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x0e4d2eaf onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x78785679 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0041fa10 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0e8cc068 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6080cc2f ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6f09ba8a ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8ee83bb7 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa6122f3b ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa835e1f9 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xba28feac ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbe78111a ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc864bf88 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcfc06cd7 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd2a7cf0f ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd528fc2a ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xeaa23902 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfd6f0ef9 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1b9fdc71 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4c260f4b free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc59d5ca6 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe8c4994c register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x00371481 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x197bdb20 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x38bc2a06 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4121e184 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x604a9634 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x634886da open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x69b04ca5 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x85df41a3 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9a7f44d8 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbfe7ecef can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd980b2ae alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfd9cc273 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x17361f8c alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x81b52e12 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xbf7a39c5 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcdaa2fa0 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x02bf95e5 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4752f87a macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7b34b78e macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x7d9c178a macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc03dab4a macvlan_start_xmit +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x8094fa58 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x12bb0ec4 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6327232c usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x9b4b289a usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbd5b1905 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1527a84e rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1690e08f rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6e46a984 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7eb8b935 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xab522508 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xeab915cd rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x047ac540 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x245161c7 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36833c02 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e1bb4a5 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3ea92c55 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f005b52 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46f967b3 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4a73ee3c usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c6d1ad6 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x51ba3a0e usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x587daf46 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5d2d6525 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6a298057 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x85f1af09 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x87b46ece usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89b94519 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x953f58c9 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xabc10965 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbb2636c usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5de542f usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcadbc370 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd7de2325 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb6231e9 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfcbc1007 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x32f908b0 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x38b35bff lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5940c37e lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x61ce7df8 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7642b25c lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x76c634ec lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x78d6f66b lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x83f25d67 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8f100bca lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9b732b84 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbbe82029 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbbfa7d4a lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc18bcfb4 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xca99cb31 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdc86df55 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3455c209 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x55dab6f0 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7d85ec6b lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x80c76430 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x926cc07f lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xab392ddb lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf5bf8813 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf5e5219b lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0xbfb2c06e if_usb_reset_device +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf_usb 0xf7e96a72 if_usb_prog_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x08aa5865 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2b705968 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3e412297 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6759bd82 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7ca3308d mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8b040f29 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa1ca66f4 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa747c7c5 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbaedc56e mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdf8274b9 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe85eaa11 mwifiex_deauthenticate +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0083fdeb p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0d97565a p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3ef571de p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x43670303 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x63789e42 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6c3f31af p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x79ba412e p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x9d067cba p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xae23ac94 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x033b34b0 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x07b0e949 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0e36f8d7 rt2800_get_tkip_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1f98bfab rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c71933a rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x36ffafaa rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c3c5f73 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3f05f7bc rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3f378754 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x470d122c rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5ccbe4dd rt2800_rt2x00debug +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6548282e rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x654ce2ab rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x674ea112 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6870642b rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6cfc4d9d rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6e5259bc rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7e28fc05 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x819eca75 rt2800_probe_hw_mode +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8353cd62 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9188c973 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x941c91df rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9c29e1d9 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa085847c rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xab19c821 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xacbc630c rt2800_init_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb702a180 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbea46c26 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc3ae6fff rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc50c2648 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd3b01b31 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdab9195e rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe1621f83 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeac47dc0 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeb6ee751 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf4939f97 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf956bd9f rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf97ccb96 rt2800_validate_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x07a6421a rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a14f930 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0c009aca rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0c23cf1f rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0fd0d393 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x15c44fd0 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1abdeb0e rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x260dee8d rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x29e0c8e2 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2cfaf92c rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x303dda9c rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3eec8d5b rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x43bc64ea rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4a9c7792 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c02be46 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4fc44557 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4fd94f0b rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4ffa730a rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c77cd1b rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c7b7aaf rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e809e91 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6992101b rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x78d19671 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x799da9d6 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7d6c07e3 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8151838c rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8a320482 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x932698d5 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x93949c43 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x93b534e0 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x952ab5cf rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9ebb77d9 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa55c88b3 rt2x00debug_dump_frame +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaaa5e0b8 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xab85bbb3 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xae2c28e2 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb01b2ce4 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb3629270 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb735557b rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb87e7a5f rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb8ec31d4 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbdd06634 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc14c0ffb rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1e4c759 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd045a11f rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf779d8e7 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf94f4123 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x079c4678 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x09d8af99 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2446fd0f rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6744bbf3 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x697c42ca rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6d533d38 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7f2f9586 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8423834a rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa077025a rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb23ee87c rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb76c2f13 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc0ad6e11 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc47a68ce rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc48d3070 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd80688c0 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdc7ed784 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x282978a4 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0x9fdf4d02 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl1251/wl1251 0xe36401d7 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x34a595ad wl1271_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x58790112 wl1271_unregister_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x6004c37b wl1271_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0x7857d30f wl1271_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xbac12c7f wl1271_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xe3b3be7b wl1271_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xe795ba26 wl1271_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/wl12xx/wl12xx 0xee27193b wl1271_register_hw +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x464344ba pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x738fcd50 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x7a4e02af pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x3175dd4d mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x35de0c8b mc13xxx_sw_regulator_is_enabled +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5e8e4613 mc13xxx_get_best_voltage_index +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x67f0ae35 mc13xxx_regulator_list_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x70dfdd43 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc9075f84 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xcf7d3dfb mc13xxx_fixed_regulator_get_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x09a79cee wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3d934388 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4a8023cc wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6394aa8e wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x6c8c53b9 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf88e8c95 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x8959ddd9 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2c459b8b fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x40b87b7b fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5c63d041 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7d8c6c5d fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8feab427 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x939fbc93 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa14dcfbf fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xae37edb9 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaec52751 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x821fdbc1 iscsi_boot_create_host_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0x952ea946 iscsi_boot_create_ethernet +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xa39c0b95 iscsi_boot_create_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xb447e1c7 iscsi_boot_destroy_kset +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd3463e8a iscsi_boot_create_target +EXPORT_SYMBOL_GPL drivers/scsi/iscsi_boot_sysfs 0xd3ab2672 iscsi_boot_create_initiator +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0386250d iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10d35de6 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19925a61 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19e0fd25 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b2d1ed7 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c81e5a5 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2111ce9b iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eb88f8b iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x311fe0c5 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3729db3a iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37b53ee7 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x38ed4903 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39a2c39d iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ea76541 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f521dbe iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40f35a43 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4774039c iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b2709b0 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4dd87f1c __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b2624e4 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x682f3db9 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x700ff1f0 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d8c4820 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7e6d8d20 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x83cb4392 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x893c6731 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8cf522d4 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x902a1b5d iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9137b5d3 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93920a1d iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x99ed1b9f iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa41c8ce6 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4832cf0 iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1b34d33 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb31f1c01 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb47f8e04 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5a14aeb iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7fa797c iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd88edf9d iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd0e5c5f iscsi_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe215e96e iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe440cd6d iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4ebcce5 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe892d005 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfcfa78fe iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff5a38fe iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x00a8d830 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x12cc99c2 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18dfc91e iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x27fe134d iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x319c0eef iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x34cc91f4 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x46d0a48f iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x50e92d67 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6e28fbe8 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7374da21 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x760f446a iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x957dedc1 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd32b89c5 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe9792a9f iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf748a18a iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfe971655 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x04c2ad31 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0c36b7ca sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0cef4f73 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x128aa4f9 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14002995 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x172f59ba sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x265e32c3 sas_find_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2ac82f9a sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3950df38 sas_slave_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49374217 sas_slave_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f96f806 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52f2ef6a sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53b23f44 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x716bc368 sas_change_queue_type +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x732efcfe sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7cb88bd2 __sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa33c5c7c sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae56ade6 sas_phy_enable +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc7b1bf4 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xddd52c01 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2c955d4 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe3f2675d sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeeb6f65c sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6ffdfea sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xff6633d4 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x41b653c3 scsi_tgt_cmd_to_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x42cfe1c7 scsi_tgt_queue_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x44622a94 scsi_tgt_it_nexus_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x4ba55eb5 scsi_host_put_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x76a707bb scsi_host_get_command +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x8914ade7 scsi_tgt_alloc_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0x911ed869 scsi_tgt_tsk_mgmt_request +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xbebde559 scsi_tgt_free_queue +EXPORT_SYMBOL_GPL drivers/scsi/scsi_tgt 0xe2912556 scsi_tgt_it_nexus_create +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0014a449 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x022a2c6b iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x03dc97cb iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d13bf10 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x14f2d376 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x188fd06c iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1b54d7b8 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2366ede5 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3495073c iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49cd57d3 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x55b8da27 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7788144e iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x800c5507 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x840d0d89 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8fbfadcb iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x92067f91 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93a25836 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4c3229a iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa8bc8e83 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb03baba iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf67f6db iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbf7f1dbf iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca0763b1 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd49ac668 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6ec0d8b iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6d0c7dc iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf74bb1b8 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2de0f21f sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb2c1e6d6 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc2907d61 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xecec23ff sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x37b6078b srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4456e501 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7cc9c9a0 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9f44ce7f srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd07975a2 srp_release_transport +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x05b3e7a9 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9efb66e0 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xaa80df8f spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe48bf429 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe8baf416 spi_bitbang_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf7447548 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0d40fec9 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2c299b74 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4b93ae62 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x4e56f947 dw_spi_xfer_done +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb372a067 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x2468ed34 oslec_hpf_tx +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x579d2806 oslec_snapshot +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x587711de oslec_create +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0x882d5f27 oslec_adaption_mode +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf828c15b oslec_flush +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xf923a5b1 oslec_free +EXPORT_SYMBOL_GPL drivers/staging/echo/echo 0xfabc3747 oslec_update +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x115a496b iio_scan_mask_set +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x71a77dc0 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0x7d72eea7 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/iio/industrialio 0xd560fbdd iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/staging/rts5139/rts5139 0x35b85807 rts5139_usb_ids +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x372e6776 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41b6bc80 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x465de46f spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5b6ac139 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6071ea08 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x62f7cea3 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6ae751f5 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8040d91a spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8905e8b3 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9ff94a7b synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb48956f8 synth_buffer_peek +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb73a5748 get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcab58526 serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd2af1d00 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x187862d4 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x1dd4c3b4 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x2eebf4d7 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x3736a03e usbip_event_happened +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x4902996b usbip_xmit +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x56b767c1 sockfd_to_socket +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x5a89cf3f usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x639e8d34 usbip_event_add +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x6e04133b usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x6f9d7330 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0x8147264f dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xa0b04042 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/staging/usbip/usbip-core 0xe90275ea usbip_start_eh +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x4dd7c006 max3107_suspend +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x4f223ccf max3107_resume +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0x5828e690 max3107_hw_susp +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xa9193c2e max3107_probe +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xc2a52d4c max3107_remove +EXPORT_SYMBOL_GPL drivers/tty/serial/max3107 0xe4a3df10 max3107_rw +EXPORT_SYMBOL_GPL drivers/uio/uio 0x44c7214f __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5183f580 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd363b30d uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x427cde05 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xebdc430a usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0a53a065 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x22fb9031 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x368c1b6f usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4b1c27b6 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x54877c86 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6464ccd9 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x72c0b7aa usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xaee91cf8 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc7881d0f ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1047e02a usb_serial_register +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x17696c1d usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x34a222d9 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5a48052a usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5adc8184 usb_serial_generic_disconnect +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5f833c39 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b464acc ezusb_set_reset +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6b92b133 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x86709a2f usb_serial_deregister +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x89a2c737 usb_serial_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x948cc91e usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x97a0cbfa usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9fe0edc8 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0f605da usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb52230df usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb6c49cc4 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb7c75d21 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb855b29d usb_serial_generic_submit_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc8954e14 ezusb_writememory +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc9aa11c2 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd0676527 usb_serial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x04d02e8f usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0779aea1 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0e73416c usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0ec77a0d usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x185c0e96 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2861d099 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2d68627f usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3690ae5e usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3de46d45 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4e11067c usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x74143fb1 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7df8f8c5 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7ef73236 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x97e94b09 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa5363cd1 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbb277442 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc087ac06 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcbbc6939 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd44b77ed usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe57be34f usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe8ba5bc6 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xebf1a281 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x281c2fb3 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x911d3895 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x95f9a980 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe58f3987 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfc89b8e1 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0723c972 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2b0fb135 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2efa22a0 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x30f17888 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x37def746 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x481cda2a wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x495dc292 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4ce01654 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4ddf3b9a wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5c8e319d wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x635830a7 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7a02e5bc wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9e6db6d4 wusbhc_rh_suspend +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbb501ea1 wusbhc_rh_resume +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd2326795 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf3bd660a __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6ee6f731 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x907d05b2 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xa270bee6 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x06c35f5a uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x126b8694 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x131f3f04 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1f088c12 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2895fc66 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2e1bf0c8 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x38bd1f02 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3f4f0f52 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4345579f uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x52fa9304 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x58271ec9 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x607a2991 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x65189598 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7289db68 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x73827e47 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x73919931 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a5bf1b3 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8d034935 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa05001b0 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa75bc5d2 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb10ec880 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb53eef58 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb84e7387 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb8d53c89 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc558122c uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcc5d1048 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcfd7f161 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd0635d3f uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd1f7cffb uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xda59d083 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdbf5f08b uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xde8df0be uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf48409c7 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5b2d8e1 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5c10abe uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf9ebb927 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xffc1637c uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x17878b20 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x4cf7bbeb ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5567e62b ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x92510086 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9346d942 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x93e30a84 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdf82e1e4 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0x3a3bcf88 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fb_sys_fops 0xac5c49f7 fb_sys_write +EXPORT_SYMBOL_GPL drivers/w1/wire 0x50c9cc9c w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x50f3c80b w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x65cc9e17 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x84c94eaa w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa6f777e5 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc4fe072d w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdc9e03ed w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xee07c8db w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xffec2c2d w1_touch_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x0864c4a4 dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x88a810f5 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb3ac2c93 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb4d9ad51 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcf9f3328 dlm_release_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x047491c8 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x17ce645d locks_end_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6c27924a nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6f959b35 locks_in_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x96877ac4 locks_start_grace +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa7b91a7b lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xac26e237 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb7fcddbf nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf4e3c815 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6933c48 lockd_up +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x010c4545 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07f96671 nfs_initiate_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x226ac89a nfs_commit_clear_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24fc163c nfs4_reset_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31092eb1 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41b9f26c nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x462e1f3b nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87a8ad19 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaab6e5ed nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb24fe384 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb63a5ae6 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbae9c9ff nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc207dd05 nfs_commit_release_pages +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5918661 nfs4_reset_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6a08810 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8322670 nfs_initiate_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5a87370 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3e9e7827 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x75242b83 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x030d8f9b o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x12ced0c2 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x144e657c o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b89c6ee o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1cb231d0 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1d747ce3 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x43073819 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4de94b47 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x79b5fcbb o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa82a8645 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa87bc9e7 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa9f5379a o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xc3679d7b o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd60f2c6c o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd859ac8c o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf5ee5792 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x08b41ce1 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x128623b4 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x17c297f9 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x3d1fa65d dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4e47811e dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xa7780b9b dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x025e2d69 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x0562c415 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x16b2e575 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4d3af7fa ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x5469ce31 ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x7083dbd5 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x89502fe7 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xb4bd060c ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xbbc4ef97 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xc3ccb38d ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd13462e6 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdc823ea4 ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe2b69de4 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe2bd47db ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe40cffce ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xe417d940 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x05513b71 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x0b8ef590 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x4a48d81c raid6_datap_recov +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL lib/reed_solomon/reed_solomon 0xb050f329 init_rs +EXPORT_SYMBOL_GPL net/802/garp 0x45a5b59b garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x56334300 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xa13a8802 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xcc89c16d garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xdbe99b90 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xeebf5c6a garp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x21ff58a2 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x38ca6bb8 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x787b4b31 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xdb0b6eec p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/atm/atm 0x50754510 register_atmdevice_notifier +EXPORT_SYMBOL_GPL net/atm/atm 0xe2c6bb26 unregister_atmdevice_notifier +EXPORT_SYMBOL_GPL net/ax25/ax25 0x48b16fab ax25_register_pid +EXPORT_SYMBOL_GPL net/ax25/ax25 0xac93ae05 ax25_bcast +EXPORT_SYMBOL_GPL net/ax25/ax25 0xaeb7451e ax25_defaddr +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x32055378 bt_debugfs +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06cbfb48 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0dba25af dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1bba54f4 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28843ade dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2df68aa5 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3590ccc4 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x377ca903 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3db53bb4 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x40e19261 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x433441f4 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b2ff74c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4ec35231 dccp_ackvec_parsed_add +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4f434f2e dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a6f29a4 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5ae9ea4f dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d32b5c1 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5dbe398d dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x64084228 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6a4107b1 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c470ba2 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ec82c11 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f4f4062 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71018b72 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7b1b5e7d inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cadb1f7 dccp_insert_option_elapsed_time +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b05a401 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9bf43acc dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9dcff9e6 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaebbbb85 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc634fcdb dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7fd7147 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd3a0ad66 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdaee52e0 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2d49e50 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf3017e21 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf98a9d24 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc058fe7 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1c7e257d dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3f331def dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x60305988 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc0ea6503 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd12b4d9a dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd3eabcea dccp_v4_connect +EXPORT_SYMBOL_GPL net/ipv4/gre 0x723c129b gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc0e6ec00 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x65a50e54 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf35ac161 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xba3121e7 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x40351c4c ipt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x0f8e8eaa nf_nat_seq_adjust_hook +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_conntrack_ipv4 0x6d40a921 need_ipv4_conntrack +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_defrag_ipv4 0x6b6c3d10 nf_defrag_ipv4_enable +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x07ae60b6 nf_nat_proto_in_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x240b5d9f nf_nat_packet +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x4654c1dc nf_nat_proto_unique_tuple +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x606fc66f nf_nat_set_seq_adjust +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x91236d3d nf_nat_proto_range_to_nlattr +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0x94a08134 nf_nat_proto_nlattr_to_range +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xc2569758 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat 0xcd098919 nf_nat_get_offset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_proto_gre 0x636b12c8 nf_nat_need_gre +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x510f1e7d tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x87edf7a9 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xbf31aee8 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd1600552 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xed5d8f9c tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x67f885bd ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6eb85693 nf_defrag_ipv6_enable +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x196803f5 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1a8efe3d l2tp_session_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x455fb611 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4fc837d5 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x551d78ff l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x678a1258 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8ad047cd l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc123d67d l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc6d0b9c7 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcaac5cd3 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd0aca4d0 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4765ea7 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1cc82bb6 ieee80211_iterate_active_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x364e4935 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7a1421a1 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe2c7064f ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebde69a8 ieee80211_key_removed +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xec6dc70a ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xee2333a9 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeeccc893 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfb5f6064 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x368bf3e9 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3bd82539 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x47a43d15 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7924b6de ip_set_hostmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7b0acd8b ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8aafdef9 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9ca6d85d ip_set_nfnl_get +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f6f9aa8 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa293f8a6 ip_set_get_ipaddr4 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa2d623f3 ip_set_range_to_cidr +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa7f5c049 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4b924c4 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc5f9b62f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc70f7d80 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd3e31c4a ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xebe4dabf ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xef946d16 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0a965b31 net_vs_ctl_path +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x52c2ed60 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7aca1cd6 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb89d498d ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe3b7449b unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04f6de83 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0597c2d9 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0747d86f nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ff2841d nf_conntrack_hash_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x101ad4cc nf_ct_delete_from_lists +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1368779f nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1535fe9a __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15f1a2a1 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x162e45a2 print_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16b79544 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c3343c8 nf_conntrack_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e0c4a67 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23d172ac nf_conntrack_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25fe6185 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2638c858 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c578433 nf_ct_insert_dying_list +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ff18995 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3af12e34 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3af7522e nf_conntrack_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3efc4aaf nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x402f342d __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40333ddb nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x426cf114 nf_ct_l3proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x451388a9 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b70348e nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x528624f8 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5672add2 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a4af4ec seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5c0ee34c nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60a1fea3 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60b0467a nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63580b34 nf_ct_nat_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x680826b6 nf_conntrack_flush_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c98b305 nf_conntrack_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f88a53f __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7946560c nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79faadb0 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ed73c1f __nf_conntrack_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8108d2d6 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8815fcb9 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8848938a nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8af13f8e __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91f63e6e nf_conntrack_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b4f4232 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d79611d nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa1617884 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa17874dd nf_ct_remove_userspace_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5ab8dbd nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4aae752 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaca25ee nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb00260c nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc05da34b nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9ea5982 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceb48372 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2e956ba nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd431d327 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd5160cde nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe49ac3f1 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1e02cae nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4594073 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf66a200b nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0f6b9e88 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb9727064 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x80ef9e41 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x55404a9d set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5adf01e8 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x836aa10d nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8f59180b set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x95c3f20e nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb0e71974 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbd725153 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xce331146 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd1b6148e nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe99c6788 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x53a2f99a nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x34b42657 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x81572144 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd7db9778 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe37b18ba nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x79f7021b nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xe81755de nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x12aa5600 nf_nat_sip_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1f3280c2 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4a207837 nf_nat_sdp_media_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5fd3a675 nf_nat_sip_expect_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x72d0e3c8 nf_nat_sdp_session_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbc59593f ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xccfcb6ee nf_nat_sdp_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcf079ac4 nf_nat_sip_seq_adjust_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd93a299a ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe214a61b ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xef063896 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf65ae2cc ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf7ced326 nf_nat_sdp_port_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x613ec19c nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x5a0f6d8f nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_tproxy_core 0x20380f01 nf_tproxy_assign_sock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x18591475 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1dea01ed nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1f58e71b nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3895cd7a nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x497bb6c4 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9ecc9d26 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xabcb75ba nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc5515988 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x5761d5d1 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x107faffc xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1b3e1f08 xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x46e62031 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x470e2d51 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6b0bfa20 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c9aa1ba xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7f5a376f xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x862b676a xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ef8be73 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x92616406 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc303511e xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcbcc800d xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe25dbe2e xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xef49545d xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0x563d999b xt_rateest_put +EXPORT_SYMBOL_GPL net/netfilter/xt_RATEEST 0xf6afa81c xt_rateest_lookup +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x12ef80ae rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x13841b73 rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x1dfe9b5f rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x20543224 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2aa1ad98 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x2afe6c46 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3f6f9189 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x48fcea4a rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x4ede79a5 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x59d308dd rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x629062f4 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x6c241117 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x6e610bf7 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x75bc505e rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x98631a03 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xa0fc6d11 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xb2e93b04 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xb8da6a66 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcf6f7dc2 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xd09714d0 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xdb5cfbb7 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xddfd52f1 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xeb4f20a3 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf81a73a8 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xfe2ca88a rds_message_addref +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x9b22a19a rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xa985c942 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x00c52ef5 g_make_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0d42839c gss_service_to_auth_domain_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x22dd8ffd gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2a59d00a svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x36bc9a29 gss_mech_list_pseudoflavors +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3bb19e63 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3e8d0329 gss_svc_to_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4563da3b gss_mech_get +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4990a26d gss_pseudoflavor_to_service +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x6a429626 gss_mech_get_by_name +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7002cdeb gss_mech_put +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x97634d94 gss_mech_get_by_OID +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xa275ad78 svc_gss_principal +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb5dea7ef g_token_size +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd3ff0db5 gss_mech_get_by_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00abb97c svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0100d239 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05f1dbf6 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08f9b54b rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bbde192 xdr_encode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d995be7 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fc9f25e sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fdbfab6 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1035bb91 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10a0d204 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11949f3b svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12e280e3 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14958d38 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1589d57d rpc_queue_empty +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1874cc9a svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ba5188d xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ce072fd xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1dcfa292 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e53ff06 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2185b40f svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21b3e47f rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22066168 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24738c9d rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x256a1a82 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2593be49 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28534885 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x297d6b80 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f3df0a8 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32367a5b rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32b19d04 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x336b5ab0 cache_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3776f1de rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x377cdce0 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f9d240b svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4115d89c __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42d22e52 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42e994a6 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43cc2f06 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ed046c rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45556adc svc_xprt_received +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4634e1d2 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46ee3ede svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46eebbcb put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bf2003f svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d3d7c07 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f6aec7f xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x508e973b rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54e88366 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a83aaa8 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b07ee45 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b14ec1a rpc_put_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bd26000 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5dc077b4 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5de1f35a svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec7f524 svc_sock_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60c5a14f xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61a21f9a rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62e6d96d xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6560a35d rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65cead4c rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67681663 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x690ac893 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eea229d svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ef06684 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7195f44a svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71d51d2b xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72da94f1 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x769559fe rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76cd1229 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77e62bde rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aa9a7fe xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d69b9c4 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e341458 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80b355f5 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81188790 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x813ec199 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e014f00 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9052bfc0 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x906a24b2 rpc_mkpipe +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x928353d8 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x936f218c xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96dfb36e svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x988391d2 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x998e2226 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cfbfff4 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d8a84d0 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff28ac8 rpc_get_mount +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa09e8732 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa157a84d rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1f968b1 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa342a327 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5ec2661 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76d38b3 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7a32487 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8d52029 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab3e44f3 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac14c8d0 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad7d1f4b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf27a192 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf714542 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaffb5308 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb343f3b6 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb95018bc auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9b595ca xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbca0d231 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd41157d svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd57d341 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf3d64da svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf8d91fc xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9b6c5e xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc054149f rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3adc7d7 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4132d70 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc794ad44 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc88a15d7 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8dca780 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9bf5912 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf7a0152 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd184d4a5 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd503b02e xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6548b7f rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6a9738f rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd81543d2 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd88a9bc5 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd925441b xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9b2ccb9 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfeabf09 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0855c88 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1353e73 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2846b38 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2d114ce svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3b88b89 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe40e1e09 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe52f79cc xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5979c6f xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe71b7b01 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8f505df sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe943fed4 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9b3eb0a svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb9ab3bb rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebdd1807 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec18d176 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed0185cf svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed24d036 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3143ee9 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3bb3d64 cache_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3defd91 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c8e846 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9855b6a xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe62c1af xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff9e1e54 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffa75b1f svc_proc_register +EXPORT_SYMBOL_GPL net/wimax/wimax 0x17fe563a wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x39a9f7fb wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x48588ec8 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x55662d3a wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5a8b13c6 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x63048707 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x66c6ea8d wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x82d49a2c wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x837a0393 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x99fd6e08 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa0fa7f4f wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbfec06b5 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd673663c wimax_msg_send +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x083b6172 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1f052050 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x49a50903 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5577cfe8 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x563ac029 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x667b2097 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x673112ca cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6ad312dc cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x989c20a9 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9f6ce22b cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe43a0ea1 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x491cc087 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4e428efe ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9cb6e254 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe063a58a ipcomp_output +EXPORT_SYMBOL_GPL sound/core/snd 0x6f20fa74 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x304ad47a snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x6fd4cd93 pm860x_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-88pm860x 0x7ed23f2b pm860x_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cx20442 0x7d073327 v253_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-l3 0x78c84c7e l3_write +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max9877 0x23fc128f max9877_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x18a0410e aic3x_headset_detected +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x4fccd0c2 aic3x_button_pressed +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x909179b8 aic3x_set_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0x933fc0a5 aic3x_set_headset_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tlv320aic3x 0xa9d31975 aic3x_get_gpio +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x5f618b43 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa356e214 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x63d9def7 twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xd4586e38 twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xe007b2c7 twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wl1273 0xae55a491 wl1273_get_format +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x5cd7eb9b wm_hubs_dcs_done +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x757206d5 wm_hubs_spkmix_tlv +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xc32c4017 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xec214023 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf7a7843b wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm2000 0x935bdfb1 wm2000_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x45ea0348 wm8350_hp_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8350 0x8d13b6eb wm8350_mic_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xedf14c87 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xe3523487 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x58ff84e6 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0xc86ea8e7 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8996 0x8ac10730 wm8996_detect +EXPORT_SYMBOL_GPL sound/soc/omap/snd-soc-omap-mcbsp 0x3fdd2b5f omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0699291a snd_soc_put_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06d5025c snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x076a056f snd_soc_register_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d3d203a snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10c6a76d snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x14a34bde snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15d491a2 snd_soc_dapm_get_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1641bc83 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16de723c snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x170ab752 snd_soc_info_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ce1ecdb snd_soc_cache_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ff6ff8d snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20e08be3 snd_soc_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x211b65ca snd_soc_dapm_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23b3a6db snd_soc_info_enum_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27616d57 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ab17e20 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2adb7ef9 snd_soc_unregister_dais +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c3aa331 snd_soc_add_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x324ce1c8 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36497fb8 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x392d6ee6 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d5b1840 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dd424e9 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43ab3632 snd_soc_default_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x458b8661 snd_soc_put_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46f9880a snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4830c62d snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49dca308 snd_soc_update_bits_locked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ac2cd9e snd_soc_get_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e8c3852 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f2035da snd_soc_codec_set_cache_io +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x50530cbb snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51f40159 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5357f409 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57551121 snd_soc_codec_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58039a66 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a8f633d snd_soc_default_writable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x606f84d0 snd_soc_dapm_put_enum_virt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x614cbc44 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61937dd7 snd_soc_cache_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63f07ead snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6477c1fa snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6588ae10 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7053d085 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x70aa5833 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73438cae snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74972685 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76e0f974 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x796a23f6 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x808bbb6e snd_soc_info_volsw_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x822688b4 snd_soc_get_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82fdb29e snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84c511e8 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x883e4162 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a012316 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8add6d09 snd_soc_dapm_new_control +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b5b55f0 snd_soc_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93613a5d snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9588b75c snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96b86e3c snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98f49fe0 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b003ea9 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c895f05 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa18f68ed snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa21a5cc6 snd_soc_register_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2b18530 snd_soc_put_volsw_2r_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4016cdb snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4457f5f snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4e3475a snd_soc_codec_volatile_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7b70e39 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa82778e8 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa924fbf0 dapm_reg_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa416d88 snd_soc_default_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabeae1bc snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaddc1b24 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb10252cb snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb21de3ff snd_soc_cache_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb79d6c23 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb823fcd1 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb912bda8 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbbb7cc47 snd_soc_dapm_get_value_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbc81b5bf snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc11be226 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2b5d883 snd_soc_unregister_dai +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5c557b9 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc87c176f snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd32c4d6 dapm_mark_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6e906b9 snd_soc_bulk_write_raw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd786bf4f snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd8ed5a8 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1e64d5b snd_soc_codec_readable_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2d7e68e snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe790d4de snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe848b5c0 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecedc8e8 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0e28fb5 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf29d2f04 snd_soc_info_volsw_s8 +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5437a1c snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5c76630 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdde6e67 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x0050b9f1 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x0067df75 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x008273ce sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x0088a193 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x008e18cc device_schedule_callback_owner +EXPORT_SYMBOL_GPL vmlinux 0x00a4dc7d usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x00a88b3d dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x00c4dc87 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01181467 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01370cb1 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x013a129b omap_dump_tlb_entries +EXPORT_SYMBOL_GPL vmlinux 0x0148adb6 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x017543f0 net_ipv6_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0x019da829 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x01a4ea6d unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x01ab7072 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x01b1d8ad wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x01c27fbf inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02559300 register_net_sysctl_rotable +EXPORT_SYMBOL_GPL vmlinux 0x025ad7f4 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x026ce8f6 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x0277e39f spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0403c937 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x0430b406 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x0437015e spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x044dae08 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x044e4c7e i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x0454dc6e rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04c00a25 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x0531dcb8 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x053c6256 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x0547d8e3 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05716663 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x05979abd relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x05a669ee ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x05a6a3c7 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x05ab82f7 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x05ae262e regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05be795c blkcg_get_weight +EXPORT_SYMBOL_GPL vmlinux 0x05c0e372 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x0619ca8a getboottime +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065c761d debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x06692756 regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x0672cdd2 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x06b0585b register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x06bf6cd9 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x07054216 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07072657 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x07145cd7 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x07398426 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x076808bd sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x0795932d wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07f127dc posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x0843bde5 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x0855822e del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x086fe052 sync_filesystem +EXPORT_SYMBOL_GPL vmlinux 0x087cd1fd pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x087ee4e3 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x08874a0c cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x08897277 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x0899e39a ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x08ab2959 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x08ad6e6f cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x08dc5d59 xv_get_total_size_bytes +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09245d1f tracepoint_iter_start +EXPORT_SYMBOL_GPL vmlinux 0x09535e81 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x09983714 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09ba1ccc rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0a59d1a6 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0a673ef7 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x0a6fa376 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x0a732270 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x0a761e84 register_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x0aaffc51 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b28defb kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0b2b71a1 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0b2db08a ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0b44c55f tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x0ba8c9fa cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x0be13004 usb_storage_usb_ids +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c80c497 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x0c97d400 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0d0c109d of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0d1ddd87 crypto_rng_type +EXPORT_SYMBOL_GPL vmlinux 0x0d30ea61 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0d3cc82c of_irq_map_one +EXPORT_SYMBOL_GPL vmlinux 0x0d768156 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x0d78106b invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x0d78a205 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x0d7f3af5 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d833191 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x0d8eb97a rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0da5f144 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x0dbcd741 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0dbf8785 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0e1c55f3 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x0e205dc1 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x0e38e132 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x0e695489 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x0e7cec54 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x0ed24c0d scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x0ee28b32 get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x0f1ba0af rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x0f22cc48 nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x0f24d3e8 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x0f4f2dee class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0f587e70 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x0fdbdbab irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0feba737 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1019a1d6 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x10541c37 mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x105ce618 omap_dm_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x10bc1d02 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x10bdfa17 devres_alloc +EXPORT_SYMBOL_GPL vmlinux 0x110a093c klist_init +EXPORT_SYMBOL_GPL vmlinux 0x112c2091 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x115db5d7 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11f447ce __gpio_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x121ed3f3 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1255996f regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x1258d9d9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1288945b ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x12a30954 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x12aba35a simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1355c47b attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13574bbf nf_net_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0x13695a78 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x137328f1 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x139d482f flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x13b2a946 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13e5278a kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x14d5945d of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x14d7b3f4 default_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x15187452 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x152effc2 blkiocg_update_timeslice_used +EXPORT_SYMBOL_GPL vmlinux 0x1545f4de register_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0x1556756b usermodehelper_is_disabled +EXPORT_SYMBOL_GPL vmlinux 0x158922ee crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1598dc9d unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x15ae9a4f usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x161b8cd6 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x16283af9 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1652bd3b pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x1655bb05 queue_work_on +EXPORT_SYMBOL_GPL vmlinux 0x167a0a81 put_device +EXPORT_SYMBOL_GPL vmlinux 0x16d4ce1f crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x16e13cc2 blkio_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1733c1e1 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17b9185d da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x17cde3e6 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x181361a9 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x1828801a blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x1858f531 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x18796351 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x1892f25a ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x18a25c1e sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x18e2c347 dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x193d48e0 trace_current_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x196a9c5a ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x19705e30 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x199232b0 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19be1ec0 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x19fc7f60 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1a0d6663 class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1a323362 __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x1a65920b omap_iommu_arch_version +EXPORT_SYMBOL_GPL vmlinux 0x1ab517e0 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x1abb7393 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1ad83009 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x1ae0e135 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x1afc1d08 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x1b2223de wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x1b34a97a crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x1b3f0f71 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x1b41cb06 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b68de25 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1b913e2b sysdev_class_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1baaa2e3 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x1be2f564 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x1be9adce securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x1c110856 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x1c119219 filter_current_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x1c18e76b regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c852e7c xfrm_calg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c9f887b bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x1cbee961 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x1cccd077 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1cdefda4 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x1cea62d8 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x1d0bb33e vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x1d12267b hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x1d1d48bd input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1d20e5ad sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x1d38c727 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x1d8f2b91 devm_kzalloc +EXPORT_SYMBOL_GPL vmlinux 0x1dbc1f3c get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x1df253de sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0x1df544b0 sysdev_register +EXPORT_SYMBOL_GPL vmlinux 0x1e314b21 regulator_use_dummy_regulator +EXPORT_SYMBOL_GPL vmlinux 0x1e3a88fb trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x1e46525a generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x1e4cce46 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x1e4dae3f devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1e6c406a register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x1e73ec24 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8403d8 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x1e926de0 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e9966de iommu_domain_has_cap +EXPORT_SYMBOL_GPL vmlinux 0x1ea9a691 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1eba928f ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x1ee9814e irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x1ef53943 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x1f153fba scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x1f180be7 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1f37286e register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x1f556392 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8f8d7b cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1f951aaf dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x1fcece42 inet_twdr_twcal_tick +EXPORT_SYMBOL_GPL vmlinux 0x1fd699aa tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1fe6cd62 omap_dm_timer_set_int_enable +EXPORT_SYMBOL_GPL vmlinux 0x201a0f26 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2027bdef ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x2048cbb9 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x204fe31f find_module +EXPORT_SYMBOL_GPL vmlinux 0x20bc3470 orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x20e3a24c ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x2174b3a1 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x218eba2d inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x21ac587e __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x21bc5e2a ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x21e00555 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x22015c1a gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x22060ea6 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x221e4f4d sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x2253248e get_device +EXPORT_SYMBOL_GPL vmlinux 0x226150ea usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22edf198 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x230e0698 __clocksource_updatefreq_scale +EXPORT_SYMBOL_GPL vmlinux 0x2311007e replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x233e8033 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x23538515 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x23679939 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x2367aa03 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23b90f16 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x23e8fabb xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x23f86065 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x24408556 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x2447533c ktime_get_real +EXPORT_SYMBOL_GPL vmlinux 0x244e82a5 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248738e2 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248efe3b fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c05560 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x24e1307e flush_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f464d0 unregister_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x24fc46b6 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x252e43b4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x257e6d1a usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x25aab853 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x25b8ace1 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x25b8b8d3 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x25df9b73 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26449ab6 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x264a8ab3 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x266ca2ed ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x266cf4c9 tcp_is_cwnd_limited +EXPORT_SYMBOL_GPL vmlinux 0x2684f16d i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x268f53d8 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x26abff41 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26dc20ba omap_dm_timer_write_counter +EXPORT_SYMBOL_GPL vmlinux 0x26ef26a4 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x2737277f rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x284efa37 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x286b4baa ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x288c5d01 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x28a82da4 snmp_mib_init +EXPORT_SYMBOL_GPL vmlinux 0x28bb5383 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x28d664ff __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x28e23139 xfrm_probe_algs +EXPORT_SYMBOL_GPL vmlinux 0x28e349ab single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x28ef3ef7 bdi_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x2901a718 queue_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x291b75d4 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x291d2894 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x29204021 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x292094e5 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x296bb77c blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x298bc121 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x29cd5878 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x29f65cc2 sysdev_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29f8c2ef dm_underlying_device_busy +EXPORT_SYMBOL_GPL vmlinux 0x2a0d2d73 sysfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2a5748c9 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6ae49d ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x2a6c3ac9 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x2a878bbf ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x2b70493a class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x2bf52225 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x2c0dc18b filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2ca4ebcd regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x2cab8ab1 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x2cc5383e __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x2cdd0f56 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf5a588 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2cf65c85 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2d148df6 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2d2a904d usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL_GPL vmlinux 0x2dbe771b blk_rq_check_limits +EXPORT_SYMBOL_GPL vmlinux 0x2dc142ee omap_dm_timer_disable +EXPORT_SYMBOL_GPL vmlinux 0x2ded1f0f scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x2ded3043 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x2e085463 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x2e1c2e07 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e47f677 xfrm_aalg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x2e51ffe7 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x2e6ec3c9 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2e999dbd fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x2ed9efbd usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x2f3892f6 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f47d8c7 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2f4b82fe get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x2f7934e8 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2fcd9e17 dpm_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2ffc8107 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x30740a39 default_mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x307f7776 timecompare_offset +EXPORT_SYMBOL_GPL vmlinux 0x308ff9a9 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30e4c4ef sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x30e9daa9 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3108ea46 xfrm_ealg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x313cbbbf debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3145ed7a udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3167d1b7 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x31a820ed register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31d67e77 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x31f350c8 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x323d82ba crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x324dbf2b inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x32623974 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x32b31a8c ktime_get_boottime +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d01f06 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x32d5e7fc xfrm_aalg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x334d0680 generic_drop_inode +EXPORT_SYMBOL_GPL vmlinux 0x33543801 queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3358d20e clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x3363c23c unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x33a5c896 driver_add_kobj +EXPORT_SYMBOL_GPL vmlinux 0x33c6f364 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x33dba8e1 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x33ece267 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x33f9c8c7 md_run +EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask +EXPORT_SYMBOL_GPL vmlinux 0x3441c3d6 gpio_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x344593d0 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x3448cfa3 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34865c27 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x34942bb7 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x34d490c0 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x34f97f22 return_address +EXPORT_SYMBOL_GPL vmlinux 0x3534e2a3 system_nrt_wq +EXPORT_SYMBOL_GPL vmlinux 0x3554cc03 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x355f8ba6 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x357bed0e driver_register +EXPORT_SYMBOL_GPL vmlinux 0x35d911fc crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x3600d091 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x360ed364 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362c752b irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x362e23ec call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x3637b7ba device_move +EXPORT_SYMBOL_GPL vmlinux 0x3648ed64 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x36875389 __timecompare_update +EXPORT_SYMBOL_GPL vmlinux 0x36dc918c dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x3705e8ec cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x3708d588 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x3769ab0c klist_next +EXPORT_SYMBOL_GPL vmlinux 0x376c2691 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x379c8754 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x38461707 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x38968910 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x389d77a1 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38e34998 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x38ef2ca5 inode_dio_done +EXPORT_SYMBOL_GPL vmlinux 0x393b5421 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x3969bf31 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x39b9707a wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x39e15e5f trace_nowake_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3d2217 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a523ee8 sysdev_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a741591 omap_foreach_iommu_device +EXPORT_SYMBOL_GPL vmlinux 0x3a7f187e scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x3aa0e5ed sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3b38db38 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x3b562900 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x3b9e584c inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x3be89d3c usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x3bf46368 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3c0aff50 nand_release +EXPORT_SYMBOL_GPL vmlinux 0x3c25c74a trace_nowake_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x3c304309 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3c590a91 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x3c77f631 sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x3c819493 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x3c942368 profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cac21b9 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x3ccd5d9f crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cfedb3f register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d6b91e1 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3db91586 scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd4d3a7 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x3dd8a83e fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x3de9b7d8 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3e2f4ff6 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e86312b blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x3e94be35 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x3edad223 usb_usual_clear_present +EXPORT_SYMBOL_GPL vmlinux 0x3efab129 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x3efd6914 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x3f02ca87 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x3f210e75 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x3f447ab9 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x3f4f822e usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x3f50ed53 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x3f620a84 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x3f69c73a unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3f772394 tps65910_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x40232aa5 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x402fc93c mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40940875 device_register +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40ba3104 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x40c61d95 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x41832d5c fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x41ac4664 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x41af18ee deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x41d6feb6 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x421469bd relay_close +EXPORT_SYMBOL_GPL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x425dd3fa rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4275fdf8 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x42882367 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x42aed2dd spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x42bfbf5a debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x432fd7f6 __gpio_set_value +EXPORT_SYMBOL_GPL vmlinux 0x4345ffe7 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4353bb49 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x43567af3 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x438e22c0 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x43c77fce irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x43e871dc md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x44404f11 kdb_register_repeat +EXPORT_SYMBOL_GPL vmlinux 0x4455e1b3 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4461d7a5 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bcfa6d system_nrt_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x44db823b stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x44e17fc8 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x44e69afe spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x44f54d78 omap_dm_timer_set_pwm +EXPORT_SYMBOL_GPL vmlinux 0x45011423 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x452f3c85 sk_clone +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c2254d __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x45c2d160 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x46074c17 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4624a7a7 omap_find_iommu_device +EXPORT_SYMBOL_GPL vmlinux 0x4672e88b __crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x46912e69 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x46b9b512 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x46daf5d9 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x46fb6128 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x474359b6 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x476dbd2e xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x47ae9bce usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x47bcd4c1 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x47c149ab queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x47e55e4e blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x480f864d ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4865f9b3 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x48a488a0 sysctl_tcp_cookie_size +EXPORT_SYMBOL_GPL vmlinux 0x492c0dc4 device_del +EXPORT_SYMBOL_GPL vmlinux 0x492e151f blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x4934f458 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x4946da71 omap_iotlb_cr_to_e +EXPORT_SYMBOL_GPL vmlinux 0x497b3590 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x497bf197 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a2e1b7 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x49ada42a ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x49b212e5 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x49b2737a regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x49d7a43c __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x49e2fddd mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x49e3598d bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x49e64e26 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x49e6fb30 unregister_timer_hook +EXPORT_SYMBOL_GPL vmlinux 0x4a0736a6 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x4a35b4d2 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4a56815a cgroup_to_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0x4a64a95a usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0x4a92c6e4 tps65910_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x4a9dd17d omap_usbhs_disable +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab2eaaa usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4addf5f7 gpio_export_link +EXPORT_SYMBOL_GPL vmlinux 0x4ae9262c task_blkio_cgroup +EXPORT_SYMBOL_GPL vmlinux 0x4b0d4e95 blk_abort_queue +EXPORT_SYMBOL_GPL vmlinux 0x4b2d343f handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b7e8939 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x4bc62a81 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4bd2a04e dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x4beb1047 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x4c3866c0 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x4c38ef2c __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x4c5dc34d serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c848371 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x4c8690b8 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x4ca4a8e7 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x4cb06f91 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x4ccd6318 omap_dm_timer_set_source +EXPORT_SYMBOL_GPL vmlinux 0x4d4fd5f1 xfrm_calg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x4d73e658 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4d809767 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x4d9974ef crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e234c64 mtd_erase_callback +EXPORT_SYMBOL_GPL vmlinux 0x4e398d8f usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4e3e09cf usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x4e7df11b irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4e860695 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x4eac8af5 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4ef5a025 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efcec76 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x4eff50de cgroup_add_file +EXPORT_SYMBOL_GPL vmlinux 0x4f063093 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x4f1cc6f5 tracepoint_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0x4f1ccf7d dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4f8f82c0 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x4f988e5f led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x4fa01236 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x4fa5b766 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x4fb10af4 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x4fd4e89d ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdce05b tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x4ff5ae9f __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x5013e6de pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x501402c6 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x501b9f4e fuse_conn_kill +EXPORT_SYMBOL_GPL vmlinux 0x50276af2 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50bc047d tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d7ce54 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f5e532 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51421c0c __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5144b91c crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x515cb16b wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5181257f file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x518bb3da usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x51d5de0b usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x51e0c28b security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x51f12192 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x521d97a2 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x524a7826 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x526b497a rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x52f6e14c blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x530c939c fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x532bd761 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x532f250b crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x536f265e watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x5372f6a5 omap_dm_timer_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x538a3f8e tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x53986488 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5399ee60 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x53a3e486 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x53f260d5 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x53fe3b8c usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5473c8ea br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x54853294 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54bfc409 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x54ce169a aead_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x54d020e9 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x54fd98e2 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5513b476 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x552567c0 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x5542b913 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x554d67f5 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x55a70330 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x55a8d84f ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x55e9465d crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x55fcd849 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564f1dca klist_add_after +EXPORT_SYMBOL_GPL vmlinux 0x565695e8 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56ab9f53 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56c86214 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x56e547f2 mount_mtd +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56fc9785 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x57418544 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x574214af cgroup_load_subsys +EXPORT_SYMBOL_GPL vmlinux 0x576bb274 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5776820a omap_dm_timer_set_match +EXPORT_SYMBOL_GPL vmlinux 0x578fe4dd cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57b0bc24 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x57b38e6d ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x58211ed1 __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x5854974e wm8994_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x58c0cde3 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x58ebecec xv_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x58f08949 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x591a30e6 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x593a36c2 scsi_dh_handler_exist +EXPORT_SYMBOL_GPL vmlinux 0x59533789 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x5977484b bus_register +EXPORT_SYMBOL_GPL vmlinux 0x597eda45 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x599d0cb6 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x599e6fa5 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x59a0f3de pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x59ab8d0e leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x59b412e3 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59ffaee7 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5a48534a regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x5a6455a1 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5aa31237 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5aae84c7 sysdev_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x5ade4bba ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5ae9c3f4 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x5af34900 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x5afaadf0 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x5b0e27dc device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b216266 cred_to_ucred +EXPORT_SYMBOL_GPL vmlinux 0x5bb27ae6 inet6_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x5bb906a7 wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bc7b171 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5bcefde5 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x5bf168f7 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x5bfc03c3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5c42ff09 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x5c506bd8 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5c976a10 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x5cebe73b deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x5d4544e8 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x5d730e7b raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d7a891b blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x5d91bdcd led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x5da549c6 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x5dd67618 register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5df4ce94 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x5df80f90 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5e0120a8 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0x5e33d01e blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x5e5296dd input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x5e5a5f27 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x5e5eca9a relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x5e8bb6a6 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x5ee15a6d ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x5f248f72 set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0x5f46d244 of_irq_map_raw +EXPORT_SYMBOL_GPL vmlinux 0x5f5258e9 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x5fccf28f __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5fcdec5d xfrm_ealg_get_byidx +EXPORT_SYMBOL_GPL vmlinux 0x5fe8f865 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x60062545 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x600e1c97 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x602a2ec3 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x609350d0 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x60ab55fb user_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x60ca59a1 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x60e2722e pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x6114d8a4 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x61289591 scsi_nl_add_transport +EXPORT_SYMBOL_GPL vmlinux 0x615ff4c8 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x61634f05 lock_flocks +EXPORT_SYMBOL_GPL vmlinux 0x6200c4ae ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x624a6406 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x62990a88 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x62bcf259 blkiocg_update_completion_stats +EXPORT_SYMBOL_GPL vmlinux 0x62c19bbb page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x62ea44f1 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x63008aa3 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x63107345 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x63205de1 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x632ee304 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x6372a384 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x63a8e2fe __scsi_get_command +EXPORT_SYMBOL_GPL vmlinux 0x63af45ec hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x63c3ffd5 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x640fd77a map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x648964ee fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x64897a07 sysfs_schedule_callback +EXPORT_SYMBOL_GPL vmlinux 0x648f66fe sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x64bd4ef0 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x64c2f1e1 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x64e8387f pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x64fd67f9 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x652be58c spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x65338464 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x65707dfa gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x658b74f3 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x65af798b sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d33e29 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x65d6d0f0 gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x65efc7eb hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x660ebed7 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661a08cc crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x667187bc usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6689ae76 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x668ef5be device_rename +EXPORT_SYMBOL_GPL vmlinux 0x6694317a cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x66b2a859 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x66cfd942 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x671e102e register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x676d97b5 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a67c75 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x67be528f wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x67c7d8a6 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x67c7e90b sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x67e5af10 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x67ebb99a inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x681732f6 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x681eec02 bsg_remove_queue +EXPORT_SYMBOL_GPL vmlinux 0x6838d8cd crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x6857a91a raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x6868bfb8 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x686c703f xfrm_count_auth_supported +EXPORT_SYMBOL_GPL vmlinux 0x6892088c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68f1ebf2 platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x68fb4a09 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x690e71f7 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698be398 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x69922673 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x69e9a2cb ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x6a088939 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x6a115e81 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x6a224e61 mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x6a289a4f free_css_id +EXPORT_SYMBOL_GPL vmlinux 0x6a2bfe61 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x6a560f92 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x6a67412c fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6a9917d8 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x6aad80c0 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x6ab922b2 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x6aba167a regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6afc064e hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x6b16371a dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b468684 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0x6b7a54c7 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x6b807a5f gpio_sysfs_set_active_low +EXPORT_SYMBOL_GPL vmlinux 0x6b93605e usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x6c03c784 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x6c1ae7da crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x6c327437 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6c4061b5 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x6c49c4f2 clockevents_notify +EXPORT_SYMBOL_GPL vmlinux 0x6c71c334 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x6c8d5ae8 __gpio_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6ced0844 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x6d09df48 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x6d1269c2 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d32a65d synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x6da7652c cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x6e0850a7 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6e7474fc xfrm_ealg_get_byid +EXPORT_SYMBOL_GPL vmlinux 0x6e838e32 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x6eafecd3 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x6ed440ba sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x6eea1da1 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ef1820e release_pmu +EXPORT_SYMBOL_GPL vmlinux 0x6f049860 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f3fb0b6 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6fd6077b usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffe1550 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x70077535 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x701612a2 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x70308856 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x703189d7 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x703c64cb ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x706a59d7 blkiocg_del_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0x706b3a33 cpufreq_frequency_table_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x7083a608 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x70b1d89a vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x70c55b1b sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70e1f840 sysdev_class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x71220307 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71d0d35d usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71eeb9ec omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0x722e7e9a wm8994_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x725b2b7b blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x7267db00 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72a1a812 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x72b212ff regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x72ccd2fb scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x72ced21a pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x72fe883e __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x73043690 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x73079ddc crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x7319936f rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x73400a18 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7342b6a8 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7383bb67 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x738beb03 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73fad6e7 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x74118a6c locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x741609e6 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7449dade pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74954462 timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x74aa81fc stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x74abdafa task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74dca3ec usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x74effa39 tracepoint_iter_stop +EXPORT_SYMBOL_GPL vmlinux 0x74fc6f98 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x75027edd crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7505b12c sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x7510d87e ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75467b50 do_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x7550c360 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x756b81b6 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x756bb92c __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x75b20f59 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0x75c8a11c inet_twdr_twkill_work +EXPORT_SYMBOL_GPL vmlinux 0x75e8f3c3 crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x75fd8afa cgroup_unload_subsys +EXPORT_SYMBOL_GPL vmlinux 0x760d2544 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x761188fd dpm_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x763d3943 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x76e73b8b cgroup_add_files +EXPORT_SYMBOL_GPL vmlinux 0x76eeafcb sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x7785ef8f class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x78703710 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x78781ad3 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x78f5986e fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x78fb7c21 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79a3de94 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x79bf9fc1 of_property_read_string_index +EXPORT_SYMBOL_GPL vmlinux 0x79d3913a sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x79fea0b3 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a99f14a platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ac04e5b omap_dm_timer_trigger +EXPORT_SYMBOL_GPL vmlinux 0x7ae1ae8e cpufreq_frequency_table_put_attr +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b18e4b1 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x7b6d94b8 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7b79f686 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x7bb661e7 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x7c8ce73b led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d082495 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x7d398fdd led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x7d4ed520 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc5d0b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7dca2c31 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x7de49eab __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x7df688b3 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x7e1183c9 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7e21e584 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7e275ea8 scsi_complete_async_scans +EXPORT_SYMBOL_GPL vmlinux 0x7e3ea677 __rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x7e49ed92 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x7e55888c fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e67d00a devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x7e8eff8c ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x7e96b389 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7ef4795e __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x7ef67178 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7f2a7814 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x7f55eafc stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7f6817dd tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x7fd38778 armpmu_get_max_events +EXPORT_SYMBOL_GPL vmlinux 0x7ff10ccf raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7ff3d989 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ffc8718 gpio_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x8014b6af input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x80734253 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a216ba console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x80c31335 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x80e9d637 omap_install_iommu_arch +EXPORT_SYMBOL_GPL vmlinux 0x80ed2226 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f4dbd8 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x8103ce48 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x81332189 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x8135b42e debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8142fcc2 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x81ba5a59 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x81e0bfde crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x81ff4561 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x821e9364 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8226642f __gpio_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8236ab92 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x8236c93a led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x825f0828 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x82796b49 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x8284933d ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x82c681ae usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82f46fe9 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x82f776b7 gpio_export +EXPORT_SYMBOL_GPL vmlinux 0x833d95ed usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x8340d869 dm_dispatch_request +EXPORT_SYMBOL_GPL vmlinux 0x836dae71 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x836e4fee find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x837c9d5e bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83ce82eb get_monotonic_boottime +EXPORT_SYMBOL_GPL vmlinux 0x83ffef4d wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x842a5d46 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8445c32b sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x845deaab pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x84befff0 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x84f53842 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85410e2c wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x85478a0b inet6_hash_frag +EXPORT_SYMBOL_GPL vmlinux 0x85562691 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x855d5a2c scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x85a32f67 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x85b79781 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85c9918b usb_bus_start_enum +EXPORT_SYMBOL_GPL vmlinux 0x85d8109b sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x85e3db5b firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x860a1193 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x860c608e ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x863e515f crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x86483135 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x864fefd9 inet_csk_reqsk_queue_prune +EXPORT_SYMBOL_GPL vmlinux 0x86580e31 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x86612b9c blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x8665af9a crypto_nivaead_type +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86e99d7e sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x870d9f23 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8767fb0e cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x87708509 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x87754115 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x877b9fa3 sysdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x879880f8 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x87e79674 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x890eb2d8 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x89451c64 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x895d1d8b wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x89a82ccb crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x89cfccce vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x89d4dbaf usb_usual_check_type +EXPORT_SYMBOL_GPL vmlinux 0x89ff43f6 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x8a0117ac spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x8a0139b8 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8a1881ec posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x8a1dc8d0 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8a45c634 sysfs_rename_link +EXPORT_SYMBOL_GPL vmlinux 0x8a5c7a80 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x8a8988e5 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x8a8f02b8 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x8a8f4a94 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad888f5 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x8ae664ba fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x8b752ac1 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x8bebca96 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x8bf1925a tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8bf2e98b zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c671a64 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x8c76e849 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x8c976d14 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x8c98eea8 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x8cbd8d34 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x8d0f9f0c pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x8d9101e8 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x8dad55e8 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x8dcb84c5 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x8e288b14 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x8e2ad1d0 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x8e93e94d relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x8e9b3272 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x8e9f1b83 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x8ed57053 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x8ed6899c of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x8ef998cd get_cpu_sysdev +EXPORT_SYMBOL_GPL vmlinux 0x8f07264a wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8f263dc6 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8f3ba2f6 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8f4bd766 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x8f6335de ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8fae240b __cpufreq_driver_getavg +EXPORT_SYMBOL_GPL vmlinux 0x8fbd30c5 generic_subsys_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x8fd94cdc tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x8fe1b83e sysdev_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x90311bbd pm_generic_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x904ef62f device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x90567e30 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9063b5f1 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x906c0714 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9082d068 kprobe_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x908ed8d2 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90ebd835 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9159b9d6 profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91dda801 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x9230cbbf find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x9290698e platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x92a9e25b usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x92abcc91 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92d31cfb fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x92d73cca __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x92eff8c3 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x93321851 put_driver +EXPORT_SYMBOL_GPL vmlinux 0x93347585 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x934934da sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x939cb724 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x93d2422d snmp_mib_free +EXPORT_SYMBOL_GPL vmlinux 0x93fd3247 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x940b4a78 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL vmlinux 0x947b28f7 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9488798b __ip_route_output_key +EXPORT_SYMBOL_GPL vmlinux 0x94954faf usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x94a68723 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x95041577 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952b363b skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x95366595 omap_dm_timer_stop +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95668c11 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x956a91ba gpio_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x957a1722 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x958207cf klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x95acbc63 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x95b43a17 register_ftrace_event +EXPORT_SYMBOL_GPL vmlinux 0x95c1260b unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x95c578a0 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x95d611b2 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x95f6ee15 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x95fa4942 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9636f010 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x965546a6 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x96694a6c relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x96a06d17 irq_domain_generate_simple +EXPORT_SYMBOL_GPL vmlinux 0x96a7d0d4 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x96cbcf31 pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96d60df9 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x97893266 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x97b13dad __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x98179781 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98651918 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x98a15448 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x98cc564a regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9931dc23 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x994327cb device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x994ac515 nf_unregister_queue_handlers +EXPORT_SYMBOL_GPL vmlinux 0x995b38b2 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995eb40e omap_dm_timer_read_status +EXPORT_SYMBOL_GPL vmlinux 0x9968fdef fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x998b6fde usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x998c4657 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x99a09ccf shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x99a6a91a class_create_file +EXPORT_SYMBOL_GPL vmlinux 0x99dfa101 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a4a92e2 blkiocg_lookup_group +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9aea0143 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9afb2952 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x9b72ac69 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x9b775a43 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x9b819c25 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x9ba0501e unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9bb0604c scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x9bea3c71 hrtimer_start +EXPORT_SYMBOL_GPL vmlinux 0x9c28b2ce debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x9c2d257f driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x9c4b469d user_read +EXPORT_SYMBOL_GPL vmlinux 0x9ca7b588 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x9cb8037b xfrm_count_enc_supported +EXPORT_SYMBOL_GPL vmlinux 0x9cb9348a drop_file_write_access +EXPORT_SYMBOL_GPL vmlinux 0x9cd8d090 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x9cde1c1c ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x9ce4416b yield_to +EXPORT_SYMBOL_GPL vmlinux 0x9cffaa2e md_trim_bio +EXPORT_SYMBOL_GPL vmlinux 0x9d024a37 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x9d0dbc0e unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d86e32e class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x9ddd939c of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x9df74ff4 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e2a3922 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9e4b27c6 dm_requeue_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0x9e4f1cfb ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0x9e52aa22 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9eb2a4c2 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x9ee38b20 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ee9ca86 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9f20a979 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x9f3f8c68 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x9f40a6d6 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x9f70cc3a __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x9f845529 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa0128b97 device_add +EXPORT_SYMBOL_GPL vmlinux 0xa026dd12 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa03ab2ea ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa06de9b0 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xa0d7848b regcache_write +EXPORT_SYMBOL_GPL vmlinux 0xa0fc1078 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xa1068427 css_depth +EXPORT_SYMBOL_GPL vmlinux 0xa178d3ea proc_net_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xa17992e5 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xa19a2a2f key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xa1b2cbc1 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xa1b8f531 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa1cbecf6 sysdev_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa2663744 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xa2d9b28c inet_csk_clone +EXPORT_SYMBOL_GPL vmlinux 0xa2eefca4 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa3357bda find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa37cccdb md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f6e76c crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xa40a8590 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0xa4161734 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xa45f1a05 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xa463a7a4 scsi_nl_add_driver +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa496e54f ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4ab9eb9 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa4cc2a77 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa503242f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa51ab6b0 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xa51af14a dm_set_device_limits +EXPORT_SYMBOL_GPL vmlinux 0xa532f4d6 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xa53c6c79 xv_free +EXPORT_SYMBOL_GPL vmlinux 0xa54ee23b fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xa56bad36 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xa58c3307 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa5dd6fae arm_pm_restart +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f75747 sysdev_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6369692 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xa64ce539 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xa69baf01 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa6a5d897 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xa6a9028f register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xa6d4f2e8 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xa6d778e5 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xa7032ad9 user_update +EXPORT_SYMBOL_GPL vmlinux 0xa767d03a get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xa7adbb6a disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xa7ce7d74 proc_net_remove +EXPORT_SYMBOL_GPL vmlinux 0xa7f92105 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0xa81ce8fa mddev_check_plugged +EXPORT_SYMBOL_GPL vmlinux 0xa8334953 omap_usbhs_enable +EXPORT_SYMBOL_GPL vmlinux 0xa8432519 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xa858d4cb put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xa8a0311a fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xa8da9a3d spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xa8dae62b blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xa8e1fe26 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa8f59416 gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xa94d0d4c shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xa95b7404 regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa991c65c mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xa999fd3c device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xa99fa6c9 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xa9a5c01a set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xa9c530b8 unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9c6eaaf spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xa9ee7f1b stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa9f3f261 net_ipv4_ctl_path +EXPORT_SYMBOL_GPL vmlinux 0xa9fa7d0d ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa51d355 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xaa84f270 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xaa852c93 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaa8818aa power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xaae8a26f sysfs_get_dirent +EXPORT_SYMBOL_GPL vmlinux 0xab1494a6 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xab1807c0 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab9a3e7e usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xabc84d1c da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xabdc752d musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xabf26566 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xabf69898 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xac04e68c adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xac309358 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xac424856 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xac530dd6 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xacac44d7 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xaccbc776 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfd81f6 work_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad0f5ef0 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xad124da4 omap_dm_timer_start +EXPORT_SYMBOL_GPL vmlinux 0xad2be8e5 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xad3ea409 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xad54c517 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xad5f1b39 nf_net_ipv4_netfilter_sysctl_path +EXPORT_SYMBOL_GPL vmlinux 0xad9bf7ce sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xada38534 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xada3badd dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xadbbad51 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xadbcea57 omap_iommu_dump_ctx +EXPORT_SYMBOL_GPL vmlinux 0xadbe2f03 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd3ac72 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xadee08c4 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xadfe7b85 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xae0c87ee pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae6ed870 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xae9dc730 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xaedb8a33 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xaee53292 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xaeea3073 xfrm_aead_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xaf01176e hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xaf1067f0 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf4235c6 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xaf6099c4 omap_dm_timer_write_status +EXPORT_SYMBOL_GPL vmlinux 0xaf69699e xv_get_object_size +EXPORT_SYMBOL_GPL vmlinux 0xaf7372a5 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xaf89893a rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xafb9384f posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xafbbed49 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xb02a6057 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c39cd9 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb0c3ae33 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xb10d55bc cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xb115eb90 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb1382c47 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1694c0c uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xb1725612 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xb17e0383 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb189feea add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xb18bf8ef get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xb19e83f1 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb1d70e6c sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xb1dbe41e ftrace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xb1dc8beb mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb20339f3 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xb2428097 omap_dm_timer_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xb26bfec2 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xb2714ad1 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xb28a15fd omap_dm_timer_free +EXPORT_SYMBOL_GPL vmlinux 0xb2a5d692 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb2ba0a32 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xb2c7b3e8 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xb2d3e89e css_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb32e9f53 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xb33375d5 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xb350da87 sysdev_store_int +EXPORT_SYMBOL_GPL vmlinux 0xb39e9844 net_cls_subsys_id +EXPORT_SYMBOL_GPL vmlinux 0xb3c09046 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xb3c8ede7 blkio_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xb4131092 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xb419e574 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xb49e3462 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xb4db25a5 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f281f0 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xb53ae573 cpu_idle_wait +EXPORT_SYMBOL_GPL vmlinux 0xb55756d9 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xb570d3c7 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xb589f3f8 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xb5ab9cf9 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xb5d60876 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5fbd920 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xb62ebd31 omap_dm_timer_set_load_start +EXPORT_SYMBOL_GPL vmlinux 0xb659458f usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xb69f4a93 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6ba2905 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6c900f1 event_storage_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb6f15945 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xb70b87c0 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xb74df59b devres_find +EXPORT_SYMBOL_GPL vmlinux 0xb772645a tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xb7916646 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xb7e46645 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xb7f6498c perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb813ce5a timecompare_transform +EXPORT_SYMBOL_GPL vmlinux 0xb82ba89d blkiocg_update_io_add_stats +EXPORT_SYMBOL_GPL vmlinux 0xb84558cc show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xb845f970 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xb84ec558 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xb8a5ccfb trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xb91291b8 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xb9796092 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xb997dda8 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xb9a6a8f5 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9da2997 snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0xb9e5b5c8 omap_dm_timer_get_fclk +EXPORT_SYMBOL_GPL vmlinux 0xba45f51f max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xba7e519f sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xba91bb87 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xbab69775 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xbae34c27 scsi_nl_remove_transport +EXPORT_SYMBOL_GPL vmlinux 0xbaf1bfe8 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xbb0355d7 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb0f8fee crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xbb4e9e42 xv_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xbb579017 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xbb80be97 blkio_root_cgroup +EXPORT_SYMBOL_GPL vmlinux 0xbbdc9eb1 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xbbdd358a fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xbbeb3d13 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xbbfda9f2 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xbc38db58 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xbc456407 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0xbc6f931b workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xbc7a97c7 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xbc90269f sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcffde94 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbd0f44a8 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbd35bdc1 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xbd474fe8 omap_iopgtable_store_entry +EXPORT_SYMBOL_GPL vmlinux 0xbd4a3028 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xbd57181b tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xbd7ca331 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbdc5dd8d debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch +EXPORT_SYMBOL_GPL vmlinux 0xbdfec355 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbe03c617 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0xbe079bac led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe176397 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe202a63 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xbe3734b5 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xbe4c8e41 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xbea1537a usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xbeccb3c2 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xbf04e172 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xbf971584 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xbfa0f507 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc0107791 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xc02d498d blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc03ab504 setup_deferrable_timer_on_stack_key +EXPORT_SYMBOL_GPL vmlinux 0xc041c35e wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xc04a304b srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc073b7c2 device_create +EXPORT_SYMBOL_GPL vmlinux 0xc07de0d9 aead_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0b5bc37 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xc0bf6ead timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xc1039375 blkiocg_add_blkio_group +EXPORT_SYMBOL_GPL vmlinux 0xc10f2b8e cgroup_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc11bd00f tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc11be988 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xc16eaaa6 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1b43c3e attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xc1beed35 cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc1c19e8b kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xc1c202c8 regcache_read +EXPORT_SYMBOL_GPL vmlinux 0xc1ecc531 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xc1ffc0db rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xc2014ed1 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc253f682 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xc259073b devres_get +EXPORT_SYMBOL_GPL vmlinux 0xc2698295 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc286be97 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xc3160135 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xc3240e27 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc333beac __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xc34efe27 snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0xc372d139 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc399468f scsi_nl_remove_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3ea7f9b ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc3ffb907 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4153805 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc430c2d3 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xc440376a power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc481fc13 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc4820d28 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4978ffa crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xc4984b3b evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xc4c6d93f inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xc4ce8c73 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xc4d594aa key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xc50a6f06 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc50d348f tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xc52505fe stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xc52c8dbf md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc52cffef user_match +EXPORT_SYMBOL_GPL vmlinux 0xc5635c76 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xc56f8be8 inet6_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0xc57a9fcf platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc57e3b23 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc5864bc9 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5b2141a root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5d6aa93 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xc5e37c84 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xc5f671f4 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc60a730b klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xc60c1f19 scsi_dh_detach +EXPORT_SYMBOL_GPL vmlinux 0xc60f75ec __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xc61f13ea usb_string +EXPORT_SYMBOL_GPL vmlinux 0xc62b1706 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xc6363695 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc68a13d1 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xc691099a sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xc69e4fc3 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6a9d3d5 omap_uninstall_iommu_arch +EXPORT_SYMBOL_GPL vmlinux 0xc6dd9ffc pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7d03efe otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xc7e43b89 d_materialise_unique +EXPORT_SYMBOL_GPL vmlinux 0xc7eefb27 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xc7f9a395 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xc834317a inet_csk_search_req +EXPORT_SYMBOL_GPL vmlinux 0xc868a932 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8c72eab ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc8db737f sysdev_show_int +EXPORT_SYMBOL_GPL vmlinux 0xc8e24284 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc8fe2882 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc8ffedc5 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xc909ba05 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xc90f4881 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc92aeb66 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc92c475b led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9582d78 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xc9b2447e scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xc9b449a2 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc9bcb032 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca0bdf81 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xca1a3397 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xca308b99 tty_prepare_flip_string_flags +EXPORT_SYMBOL_GPL vmlinux 0xca3d22a5 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xca585430 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xca85d8cf tracepoint_probe_update_all +EXPORT_SYMBOL_GPL vmlinux 0xca997a84 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcb273676 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xcb347877 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xcb5f6e99 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbfb1492 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xcc1f1c3d inet_twdr_hangman +EXPORT_SYMBOL_GPL vmlinux 0xcc5f7b7b gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xccc04190 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcce90638 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xcd02854b usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xcd13fa3a fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xcd239306 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xcd263e74 blkio_alloc_blkg_stats +EXPORT_SYMBOL_GPL vmlinux 0xcd8cb00b omap_dm_timer_set_load +EXPORT_SYMBOL_GPL vmlinux 0xcd9991a9 usb_usual_set_present +EXPORT_SYMBOL_GPL vmlinux 0xcda4184f blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce7e1c52 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xce91546f regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xce9b1dc6 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xcf008bc1 armpmu_get_pmu_id +EXPORT_SYMBOL_GPL vmlinux 0xcf14787f inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcf1600ff usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xcf1e921b input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xcfaa21dd omap_dm_timer_request +EXPORT_SYMBOL_GPL vmlinux 0xcfb0f684 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfcc83ad register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcffdd750 bsg_goose_queue +EXPORT_SYMBOL_GPL vmlinux 0xd0135c96 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xd02d3fb1 crypto_aead_type +EXPORT_SYMBOL_GPL vmlinux 0xd02fc120 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd03f124b __css_put +EXPORT_SYMBOL_GPL vmlinux 0xd05dc2a3 xfrm_aalg_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xd07d186f __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd07f00d7 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xd0ab519a dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d00f8b usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xd0f2894f timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xd1010417 __inet_hash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xd106ff1c dm_kill_unmapped_request +EXPORT_SYMBOL_GPL vmlinux 0xd10b9bd9 of_property_count_strings +EXPORT_SYMBOL_GPL vmlinux 0xd11ebb95 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xd14f34d1 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1b2db37 tracepoint_probe_register_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xd1cedbff inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xd20bbc2a init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd24bf4de ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd29e4748 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xd2b7da51 sysdev_class_register +EXPORT_SYMBOL_GPL vmlinux 0xd2fe3df1 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xd31c5556 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xd32fe193 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd33c4fca __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xd34f32c0 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xd37e13b4 regulator_set_optimum_mode +EXPORT_SYMBOL_GPL vmlinux 0xd3e61495 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd3ef152b blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40c533a dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xd40f3a30 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xd41e835a srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd4728648 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd474cfb3 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d44ccd device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xd4d857ec cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd4d960b6 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xd538c0d3 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active +EXPORT_SYMBOL_GPL vmlinux 0xd59668e6 unlock_flocks +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5d8edb1 get_driver +EXPORT_SYMBOL_GPL vmlinux 0xd649e506 proc_net_fops_create +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6a07802 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd788742d perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd828d319 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xd8463f38 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xd8525ea7 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xd85ac634 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd898cd9c enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xd8b9b407 omap_dm_timer_set_prescaler +EXPORT_SYMBOL_GPL vmlinux 0xd9200a99 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xd92b233c tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xd93e76a6 kbd_table +EXPORT_SYMBOL_GPL vmlinux 0xd93fecf2 blkio_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd94ade67 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9506549 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xd9514172 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xd956cdf6 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd989e4cd spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xd9a21dfc mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9eef782 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd9f73f8d usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd9fca96d hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda1be8e1 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xda27f6c0 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xda3a7ca9 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xda4002f3 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xda833b98 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xda83854e mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xdab4cd66 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xdab9e182 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xdadbf4a0 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xdadf3f2d tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdafed4cd skb_gro_receive +EXPORT_SYMBOL_GPL vmlinux 0xdb04cacc tracepoint_probe_unregister_noupdate +EXPORT_SYMBOL_GPL vmlinux 0xdb1aa39a usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xdb1e9caa tracepoint_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xdb274e52 monotonic_to_bootbased +EXPORT_SYMBOL_GPL vmlinux 0xdb6d78e9 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xdba95fd5 reserve_pmu +EXPORT_SYMBOL_GPL vmlinux 0xdc671148 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdccbad4c blkiocg_update_io_merged_stats +EXPORT_SYMBOL_GPL vmlinux 0xdd06b91e rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd3cf228 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xdd75ee5c power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xdd962468 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xdd9fba6c irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde1fba32 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xde3abdbc ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde417b81 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xde4d4502 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xde8bb29c device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xdea59655 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xdeeadbe5 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdf5270a0 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xdff36a4d class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0476be2 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0f39078 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe18dff30 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xe1aadceb sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xe1cc39f6 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1cd6eb5 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe20d2695 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe2375a31 css_id +EXPORT_SYMBOL_GPL vmlinux 0xe26c11bc __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xe278bf30 xv_malloc +EXPORT_SYMBOL_GPL vmlinux 0xe2bbb3d9 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xe2dd67e5 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe2fa044d tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3092b0d blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xe3498725 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xe34f02b6 lookup_instantiate_filp +EXPORT_SYMBOL_GPL vmlinux 0xe384a102 usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0xe3bcf9eb raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xe3c62dc7 wm8994_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xe3e75a53 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xe4077118 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe41382d9 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xe41b61b7 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4674c69 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xe493abc2 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xe4add839 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe4d298b0 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xe4da226d platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xe5395236 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xe5668c22 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5ddddcf platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xe609b588 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe6185005 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe61a6d2f gpio_unexport +EXPORT_SYMBOL_GPL vmlinux 0xe6488b47 cpufreq_notify_transition +EXPORT_SYMBOL_GPL vmlinux 0xe64deefc device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6f73341 sysdev_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe738a885 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xe73c91b4 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xe780ca73 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe78a9181 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xe78ecdbd cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xe791614e transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xe7c2875e crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xe7d86d6c crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xe7e01b89 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80b43da ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8552426 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe8611953 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe871e747 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xe87fbb59 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xe8894a66 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xe8acf5e5 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xe8d9b095 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xe90fe971 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xe930f18c wm8994_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9587909 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0xe9795012 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xe98076df max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe9d0cd6f usb_usual_ignore_device +EXPORT_SYMBOL_GPL vmlinux 0xe9d0e4f2 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xea040c4f nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xea065e01 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea492dd3 omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0xea6410c8 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xea7cc833 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xeac508cf ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xeae74760 scsi_nl_send_transport_msg +EXPORT_SYMBOL_GPL vmlinux 0xeb31b5fc sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xeb51bb53 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba0a798 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xebba2adf inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xec08967c device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec237bd5 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec32e025 mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0xec544272 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xeccf18f2 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xecda4a95 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xed695a2d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xed77fd4b device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xed98787e rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xeda63db3 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0xee315eb0 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xee408b75 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xee40e9c2 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xee57a893 sysfs_put +EXPORT_SYMBOL_GPL vmlinux 0xee604002 cgroup_lock_live_group +EXPORT_SYMBOL_GPL vmlinux 0xee6446bd usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef7c7c20 sysfs_get +EXPORT_SYMBOL_GPL vmlinux 0xef81c9e1 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefb53b7e iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xefb72398 pstore_write +EXPORT_SYMBOL_GPL vmlinux 0xefdd5a63 ktime_get_ts +EXPORT_SYMBOL_GPL vmlinux 0xefebeb7e regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xeff40792 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xeff9157c kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xf0316dc9 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xf03b9de8 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xf05a206f regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xf08a341c sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xf095da7f fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xf0a1e0fd inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xf0e7af21 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xf118c21d add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xf1377ddb blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xf1549d8d pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xf17b802d sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1bf6daa da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf1cbf02e sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xf1d7469d sysfs_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf1dab087 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xf1f2d723 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xf1f8c945 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xf1ffba76 blkdev_aio_write +EXPORT_SYMBOL_GPL vmlinux 0xf229277c __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xf28741e1 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xf2935e8a eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xf2b06587 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xf2d49fb3 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf2db6788 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xf2f7df02 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf30317c7 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf30676f8 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf30e105d ezx_pcap_write +EXPORT_SYMBOL_GPL vmlinux 0xf30fda27 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3254c35 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xf34806ec hrtimer_get_res +EXPORT_SYMBOL_GPL vmlinux 0xf37a29bf sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xf390f75d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b93a97 cgroup_lock_is_held +EXPORT_SYMBOL_GPL vmlinux 0xf3c5194e __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf3dd036d regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xf3eb92e0 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf44336bf md_stop +EXPORT_SYMBOL_GPL vmlinux 0xf465c862 sysfs_notify_dirent +EXPORT_SYMBOL_GPL vmlinux 0xf4da3260 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5651fb0 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xf569cfc1 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xf58040ef fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xf5862928 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf61e30f6 blkiocg_update_dispatch_stats +EXPORT_SYMBOL_GPL vmlinux 0xf63296eb tcp_reno_min_cwnd +EXPORT_SYMBOL_GPL vmlinux 0xf6347706 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xf6360dca seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xf648006e mmput +EXPORT_SYMBOL_GPL vmlinux 0xf6cb7851 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xf6d81b2f platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf6dc755d dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xf6e04730 event_storage +EXPORT_SYMBOL_GPL vmlinux 0xf6e39ae0 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6ebb423 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf72ee27e __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xf73e1e24 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf7526011 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xf754944d sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf756ca61 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xf7713218 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf78cfb76 blk_queue_bio +EXPORT_SYMBOL_GPL vmlinux 0xf78d29ad tcp_init_congestion_ops +EXPORT_SYMBOL_GPL vmlinux 0xf7c45ed2 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xf7d8f7cc dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xf7e19dbc register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xf7f85d02 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xf7f9fb0e blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf8797314 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8a03e1d tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xf8e4a743 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf8ecffe5 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xf8f28a1b skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf913c393 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xf92c3cca device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf934ddf8 rtc_set_mmss +EXPORT_SYMBOL_GPL vmlinux 0xf94a2852 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0xf95871e0 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d046f0 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xf9de974a blkiocg_update_io_remove_stats +EXPORT_SYMBOL_GPL vmlinux 0xf9e90eaf input_class +EXPORT_SYMBOL_GPL vmlinux 0xfa012fe7 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa500200 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xfa850e77 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xfab3c6b1 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xfae557d7 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xfb07bce5 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xfb0b8da1 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xfb217ca0 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb41e8de pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb9eaa88 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xfbdf412e class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xfbe41973 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xfbf9be5d register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfc59a929 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xfc5a8a65 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfc815da8 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfcafed3a put_pid +EXPORT_SYMBOL_GPL vmlinux 0xfcc669c1 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfcd7bc0b ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0xfcde939a tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xfd2fb2f7 omap_dm_timer_enable +EXPORT_SYMBOL_GPL vmlinux 0xfde0b92c crypto_larval_error +EXPORT_SYMBOL_GPL vmlinux 0xfe01c404 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xfe2839b3 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9a4fb6 inode_dio_wait +EXPORT_SYMBOL_GPL vmlinux 0xfea9b847 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfebfccdf usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed3dff2 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff41151f platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff640e80 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xff6a9b76 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xff747600 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xff86ac51 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xff9fb229 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xffa4c4ec cgroup_lock +EXPORT_SYMBOL_GPL vmlinux 0xffd7fc3f sysfs_notify --- linux-3.2.0.orig/debian.master/abi/3.2.0-25.40/armel/omap.compiler +++ linux-3.2.0/debian.master/abi/3.2.0-25.40/armel/omap.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3 --- linux-3.2.0.orig/debian.master/abi/3.2.0-24.39/armhf/ignore.modules +++ linux-3.2.0/debian.master/abi/3.2.0-24.39/armhf/ignore.modules @@ -0,0 +1 @@ +1 --- linux-3.2.0.orig/debian.master/abi/3.2.0-24.39/armhf/ignore +++ linux-3.2.0/debian.master/abi/3.2.0-24.39/armhf/ignore @@ -0,0 +1 @@ +1 --- linux-3.2.0.orig/virt/kvm/iommu.c +++ linux-3.2.0/virt/kvm/iommu.c @@ -239,9 +239,13 @@ return -ENODEV; } + mutex_lock(&kvm->slots_lock); + kvm->arch.iommu_domain = iommu_domain_alloc(&pci_bus_type); - if (!kvm->arch.iommu_domain) - return -ENOMEM; + if (!kvm->arch.iommu_domain) { + r = -ENOMEM; + goto out_unlock; + } if (!allow_unsafe_assigned_interrupts && !iommu_domain_has_cap(kvm->arch.iommu_domain, @@ -252,17 +256,16 @@ " module option.\n", __func__); iommu_domain_free(kvm->arch.iommu_domain); kvm->arch.iommu_domain = NULL; - return -EPERM; + r = -EPERM; + goto out_unlock; } r = kvm_iommu_map_memslots(kvm); if (r) - goto out_unmap; - - return 0; + kvm_iommu_unmap_memslots(kvm); -out_unmap: - kvm_iommu_unmap_memslots(kvm); +out_unlock: + mutex_unlock(&kvm->slots_lock); return r; } @@ -309,6 +312,11 @@ } } +void kvm_iommu_unmap_pages(struct kvm *kvm, struct kvm_memory_slot *slot) +{ + kvm_iommu_put_pages(kvm, slot->base_gfn, slot->npages); +} + static int kvm_iommu_unmap_memslots(struct kvm *kvm) { int i, idx; @@ -317,10 +325,9 @@ idx = srcu_read_lock(&kvm->srcu); slots = kvm_memslots(kvm); - for (i = 0; i < slots->nmemslots; i++) { - kvm_iommu_put_pages(kvm, slots->memslots[i].base_gfn, - slots->memslots[i].npages); - } + for (i = 0; i < slots->nmemslots; i++) + kvm_iommu_unmap_pages(kvm, &slots->memslots[i]); + srcu_read_unlock(&kvm->srcu, idx); return 0; @@ -334,7 +341,11 @@ if (!domain) return 0; + mutex_lock(&kvm->slots_lock); kvm_iommu_unmap_memslots(kvm); + kvm->arch.iommu_domain = NULL; + mutex_unlock(&kvm->slots_lock); + iommu_domain_free(domain); return 0; } --- linux-3.2.0.orig/virt/kvm/kvm_main.c +++ linux-3.2.0/virt/kvm/kvm_main.c @@ -289,15 +289,15 @@ */ idx = srcu_read_lock(&kvm->srcu); spin_lock(&kvm->mmu_lock); + kvm->mmu_notifier_seq++; need_tlb_flush = kvm_unmap_hva(kvm, address) | kvm->tlbs_dirty; - spin_unlock(&kvm->mmu_lock); - srcu_read_unlock(&kvm->srcu, idx); - /* we've to flush the tlb before the pages can be freed */ if (need_tlb_flush) kvm_flush_remote_tlbs(kvm); + spin_unlock(&kvm->mmu_lock); + srcu_read_unlock(&kvm->srcu, idx); } static void kvm_mmu_notifier_change_pte(struct mmu_notifier *mn, @@ -335,12 +335,12 @@ for (; start < end; start += PAGE_SIZE) need_tlb_flush |= kvm_unmap_hva(kvm, start); need_tlb_flush |= kvm->tlbs_dirty; - spin_unlock(&kvm->mmu_lock); - srcu_read_unlock(&kvm->srcu, idx); - /* we've to flush the tlb before the pages can be freed */ if (need_tlb_flush) kvm_flush_remote_tlbs(kvm); + + spin_unlock(&kvm->mmu_lock); + srcu_read_unlock(&kvm->srcu, idx); } static void kvm_mmu_notifier_invalidate_range_end(struct mmu_notifier *mn, @@ -378,13 +378,14 @@ idx = srcu_read_lock(&kvm->srcu); spin_lock(&kvm->mmu_lock); - young = kvm_age_hva(kvm, address); - spin_unlock(&kvm->mmu_lock); - srcu_read_unlock(&kvm->srcu, idx); + young = kvm_age_hva(kvm, address); if (young) kvm_flush_remote_tlbs(kvm); + spin_unlock(&kvm->mmu_lock); + srcu_read_unlock(&kvm->srcu, idx); + return young; } @@ -802,12 +803,13 @@ if (r) goto out_free; - /* map the pages in iommu page table */ + /* map/unmap the pages in iommu page table */ if (npages) { r = kvm_iommu_map_pages(kvm, &new); if (r) goto out_free; - } + } else + kvm_iommu_unmap_pages(kvm, &old); r = -ENOMEM; slots = kzalloc(sizeof(struct kvm_memslots), GFP_KERNEL); @@ -1665,6 +1667,10 @@ goto vcpu_destroy; mutex_lock(&kvm->lock); + if (!kvm_vcpu_compatible(vcpu)) { + r = -EINVAL; + goto unlock_vcpu_destroy; + } if (atomic_read(&kvm->online_vcpus) == KVM_MAX_VCPUS) { r = -EINVAL; goto unlock_vcpu_destroy; --- linux-3.2.0.orig/arch/Kconfig +++ linux-3.2.0/arch/Kconfig @@ -181,4 +181,28 @@ config ARCH_HAVE_NMI_SAFE_CMPXCHG bool +config HAVE_ARCH_SECCOMP_FILTER + bool + help + An arch should select this symbol if it provides all of these things: + - syscall_get_arch() + - syscall_get_arguments() + - syscall_rollback() + - syscall_set_return_value() + - SIGSYS siginfo_t support + - uses __secure_computing_int() or secure_computing() + - secure_computing is called from a ptrace_event()-safe context + - secure_computing return value is checked and a return value of -1 + results in the system call being skipped immediately. + +config SECCOMP_FILTER + def_bool y + depends on HAVE_ARCH_SECCOMP_FILTER && SECCOMP && NET + help + Enable tasks to build secure computing environments defined + in terms of Berkeley Packet Filter programs which implement + task-defined system call filtering polices. + + See Documentation/prctl/seccomp_filter.txt for details. + source "kernel/gcov/Kconfig" --- linux-3.2.0.orig/arch/powerpc/Kconfig +++ linux-3.2.0/arch/powerpc/Kconfig @@ -952,6 +952,8 @@ source "drivers/Kconfig" +source "ubuntu/Kconfig" + source "fs/Kconfig" source "arch/powerpc/sysdev/qe_lib/Kconfig" --- linux-3.2.0.orig/arch/powerpc/include/asm/time.h +++ linux-3.2.0/arch/powerpc/include/asm/time.h @@ -219,5 +219,7 @@ extern void secondary_cpu_time_init(void); extern void iSeries_time_init_early(void); +extern void decrementer_check_overflow(void); + #endif /* __KERNEL__ */ #endif /* __POWERPC_TIME_H */ --- linux-3.2.0.orig/arch/powerpc/platforms/pseries/lpar.c +++ linux-3.2.0/arch/powerpc/platforms/pseries/lpar.c @@ -554,6 +554,7 @@ goto out; (*depth)++; + preempt_disable(); trace_hcall_entry(opcode, args); (*depth)--; @@ -576,6 +577,7 @@ (*depth)++; trace_hcall_exit(opcode, retval, retbuf); + preempt_enable(); (*depth)--; out: --- linux-3.2.0.orig/arch/powerpc/platforms/pseries/hvCall_inst.c +++ linux-3.2.0/arch/powerpc/platforms/pseries/hvCall_inst.c @@ -109,7 +109,7 @@ if (opcode > MAX_HCALL_OPCODE) return; - h = &get_cpu_var(hcall_stats)[opcode / 4]; + h = &__get_cpu_var(hcall_stats)[opcode / 4]; h->tb_start = mftb(); h->purr_start = mfspr(SPRN_PURR); } @@ -126,8 +126,6 @@ h->num_calls++; h->tb_total += mftb() - h->tb_start; h->purr_total += mfspr(SPRN_PURR) - h->purr_start; - - put_cpu_var(hcall_stats); } static int __init hcall_inst_init(void) --- linux-3.2.0.orig/arch/powerpc/platforms/pseries/nvram.c +++ linux-3.2.0/arch/powerpc/platforms/pseries/nvram.c @@ -636,7 +636,6 @@ /* These are almost always orderly shutdowns. */ return; case KMSG_DUMP_OOPS: - case KMSG_DUMP_KEXEC: break; case KMSG_DUMP_PANIC: panicking = true; --- linux-3.2.0.orig/arch/powerpc/platforms/powermac/smp.c +++ linux-3.2.0/arch/powerpc/platforms/powermac/smp.c @@ -414,7 +414,7 @@ static void __init smp_psurge_setup_cpu(int cpu_nr) { - if (cpu_nr != 0) + if (cpu_nr != 0 || !psurge_start) return; /* reset the entry point so if we get another intr we won't --- linux-3.2.0.orig/arch/powerpc/kernel/irq.c +++ linux-3.2.0/arch/powerpc/kernel/irq.c @@ -164,16 +164,13 @@ */ local_paca->hard_enabled = en; -#ifndef CONFIG_BOOKE - /* On server, re-trigger the decrementer if it went negative since - * some processors only trigger on edge transitions of the sign bit. - * - * BookE has a level sensitive decrementer (latches in TSR) so we - * don't need that + /* + * Trigger the decrementer if we have a pending event. Some processors + * only trigger on edge transitions of the sign bit. We might also + * have disabled interrupts long enough that the decrementer wrapped + * to positive. */ - if ((int)mfspr(SPRN_DEC) < 0) - mtspr(SPRN_DEC, 1); -#endif /* CONFIG_BOOKE */ + decrementer_check_overflow(); /* * Force the delivery of pending soft-disabled interrupts on PS3. --- linux-3.2.0.orig/arch/powerpc/kernel/time.c +++ linux-3.2.0/arch/powerpc/kernel/time.c @@ -889,6 +889,15 @@ clock->name, clock->mult, clock->shift); } +void decrementer_check_overflow(void) +{ + u64 now = get_tb_or_rtc(); + struct decrementer_clock *decrementer = &__get_cpu_var(decrementers); + + if (now >= decrementer->next_tb) + set_dec(1); +} + static int decrementer_set_next_event(unsigned long evt, struct clock_event_device *dev) { --- linux-3.2.0.orig/arch/powerpc/kernel/perf_event.c +++ linux-3.2.0/arch/powerpc/kernel/perf_event.c @@ -865,6 +865,7 @@ { unsigned long flags; s64 left; + unsigned long val; if (!event->hw.idx || !event->hw.sample_period) return; @@ -880,7 +881,12 @@ event->hw.state = 0; left = local64_read(&event->hw.period_left); - write_pmc(event->hw.idx, left); + + val = 0; + if (left < 0x80000000L) + val = 0x80000000L - left; + + write_pmc(event->hw.idx, val); perf_event_update_userpage(event); perf_pmu_enable(event->pmu); --- linux-3.2.0.orig/arch/tile/Kconfig +++ linux-3.2.0/arch/tile/Kconfig @@ -11,8 +11,9 @@ select GENERIC_IRQ_PROBE select GENERIC_PENDING_IRQ if SMP select GENERIC_IRQ_SHOW + select HAVE_SYSCALL_WRAPPERS if TILEGX select SYS_HYPERVISOR - select ARCH_HAVE_NMI_SAFE_CMPXCHG if !M386 + select ARCH_HAVE_NMI_SAFE_CMPXCHG # FIXME: investigate whether we need/want these options. # select HAVE_IOREMAP_PROT --- linux-3.2.0.orig/arch/tile/include/asm/bitops.h +++ linux-3.2.0/arch/tile/include/asm/bitops.h @@ -77,6 +77,11 @@ return __builtin_ffs(x); } +static inline int fls64(__u64 w) +{ + return (sizeof(__u64) * 8) - __builtin_clzll(w); +} + /** * fls - find last set bit in word * @x: the word to search @@ -90,12 +95,7 @@ */ static inline int fls(int x) { - return (sizeof(int) * 8) - __builtin_clz(x); -} - -static inline int fls64(__u64 w) -{ - return (sizeof(__u64) * 8) - __builtin_clzll(w); + return fls64((unsigned int) x); } static inline unsigned int __arch_hweight32(unsigned int w) --- linux-3.2.0.orig/arch/tile/kernel/compat_signal.c +++ linux-3.2.0/arch/tile/kernel/compat_signal.c @@ -406,19 +406,17 @@ * Set up registers for signal handler. * Registers that we don't modify keep the value they had from * user-space at the time we took the signal. + * We always pass siginfo and mcontext, regardless of SA_SIGINFO, + * since some things rely on this (e.g. glibc's debug/segfault.c). */ regs->pc = ptr_to_compat_reg(ka->sa.sa_handler); regs->ex1 = PL_ICS_EX1(USER_PL, 1); /* set crit sec in handler */ regs->sp = ptr_to_compat_reg(frame); regs->lr = restorer; regs->regs[0] = (unsigned long) usig; - - if (ka->sa.sa_flags & SA_SIGINFO) { - /* Need extra arguments, so mark to restore caller-saves. */ - regs->regs[1] = ptr_to_compat_reg(&frame->info); - regs->regs[2] = ptr_to_compat_reg(&frame->uc); - regs->flags |= PT_FLAGS_CALLER_SAVES; - } + regs->regs[1] = ptr_to_compat_reg(&frame->info); + regs->regs[2] = ptr_to_compat_reg(&frame->uc); + regs->flags |= PT_FLAGS_CALLER_SAVES; /* * Notify any tracer that was single-stepping it. --- linux-3.2.0.orig/arch/alpha/include/asm/futex.h +++ linux-3.2.0/arch/alpha/include/asm/futex.h @@ -108,7 +108,7 @@ " lda $31,3b-2b(%0)\n" " .previous\n" : "+r"(ret), "=&r"(prev), "=&r"(cmp) - : "r"(uaddr), "r"((long)oldval), "r"(newval) + : "r"(uaddr), "r"((long)(int)oldval), "r"(newval) : "memory"); *uval = prev; --- linux-3.2.0.orig/arch/parisc/include/asm/prefetch.h +++ linux-3.2.0/arch/parisc/include/asm/prefetch.h @@ -21,7 +21,12 @@ #define ARCH_HAS_PREFETCH static inline void prefetch(const void *addr) { - __asm__("ldw 0(%0), %%r0" : : "r" (addr)); + __asm__( +#ifndef CONFIG_PA20 + /* Need to avoid prefetch of NULL on PA7300LC */ + " extrw,u,= %0,31,32,%%r0\n" +#endif + " ldw 0(%0), %%r0" : : "r" (addr)); } /* LDD is a PA2.0 addition. */ --- linux-3.2.0.orig/arch/parisc/kernel/pacache.S +++ linux-3.2.0/arch/parisc/kernel/pacache.S @@ -692,7 +692,7 @@ /* Purge any old translation */ - pitlb (%sr0,%r28) + pitlb (%sr4,%r28) ldil L%icache_stride, %r1 ldw R%icache_stride(%r1), %r1 @@ -706,27 +706,29 @@ sub %r25, %r1, %r25 -1: fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) - fic,m %r1(%r28) + /* fic only has the type 26 form on PA1.1, requiring an + * explicit space specification, so use %sr4 */ +1: fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) + fic,m %r1(%sr4,%r28) cmpb,COND(<<) %r28, %r25,1b - fic,m %r1(%r28) + fic,m %r1(%sr4,%r28) sync bv %r0(%r2) - pitlb (%sr0,%r25) + pitlb (%sr4,%r25) .exit .procend --- linux-3.2.0.orig/arch/parisc/kernel/entry.S +++ linux-3.2.0/arch/parisc/kernel/entry.S @@ -581,7 +581,11 @@ */ cmpiclr,= 0x01,\tmp,%r0 ldi (_PAGE_DIRTY|_PAGE_READ|_PAGE_WRITE),\prot +#ifdef CONFIG_64BIT depd,z \prot,8,7,\prot +#else + depw,z \prot,8,7,\prot +#endif /* * OK, it is in the temp alias region, check whether "from" or "to". * Check "subtle" note in pacache.S re: r23/r26. --- linux-3.2.0.orig/arch/sparc/Kconfig +++ linux-3.2.0/arch/sparc/Kconfig @@ -583,6 +583,9 @@ depends on COMPAT && SYSVIPC default y +config KEYS_COMPAT + def_bool y if COMPAT && KEYS + endmenu source "net/Kconfig" --- linux-3.2.0.orig/arch/sparc/Makefile +++ linux-3.2.0/arch/sparc/Makefile @@ -31,7 +31,7 @@ #KBUILD_CFLAGS += -g -pipe -fcall-used-g5 -fcall-used-g7 KBUILD_CFLAGS += -m32 -pipe -mno-fpu -fcall-used-g5 -fcall-used-g7 -KBUILD_AFLAGS += -m32 +KBUILD_AFLAGS += -m32 -Wa,-Av8 #LDFLAGS_vmlinux = -N -Ttext 0xf0004000 # Since 2.5.40, the first stage is left not btfix-ed. --- linux-3.2.0.orig/arch/sparc/mm/ultra.S +++ linux-3.2.0/arch/sparc/mm/ultra.S @@ -495,11 +495,11 @@ stx %o7, [%g1 + GR_SNAP_O7] stx %i7, [%g1 + GR_SNAP_I7] /* Don't try this at home kids... */ - rdpr %cwp, %g2 - sub %g2, 1, %g7 + rdpr %cwp, %g3 + sub %g3, 1, %g7 wrpr %g7, %cwp mov %i7, %g7 - wrpr %g2, %cwp + wrpr %g3, %cwp stx %g7, [%g1 + GR_SNAP_RPC] sethi %hi(trap_block), %g7 or %g7, %lo(trap_block), %g7 --- linux-3.2.0.orig/arch/sparc/kernel/systbls_64.S +++ linux-3.2.0/arch/sparc/kernel/systbls_64.S @@ -74,7 +74,7 @@ .word sys_timer_delete, compat_sys_timer_create, sys_ni_syscall, compat_sys_io_setup, sys_io_destroy /*270*/ .word sys32_io_submit, sys_io_cancel, compat_sys_io_getevents, sys32_mq_open, sys_mq_unlink .word compat_sys_mq_timedsend, compat_sys_mq_timedreceive, compat_sys_mq_notify, compat_sys_mq_getsetattr, compat_sys_waitid -/*280*/ .word sys32_tee, sys_add_key, sys_request_key, sys_keyctl, compat_sys_openat +/*280*/ .word sys32_tee, sys_add_key, sys_request_key, compat_sys_keyctl, compat_sys_openat .word sys_mkdirat, sys_mknodat, sys_fchownat, compat_sys_futimesat, compat_sys_fstatat64 /*290*/ .word sys_unlinkat, sys_renameat, sys_linkat, sys_symlinkat, sys_readlinkat .word sys_fchmodat, sys_faccessat, compat_sys_pselect6, compat_sys_ppoll, sys_unshare --- linux-3.2.0.orig/arch/sparc/kernel/central.c +++ linux-3.2.0/arch/sparc/kernel/central.c @@ -269,4 +269,4 @@ return 0; } -subsys_initcall(sunfire_init); +fs_initcall(sunfire_init); --- linux-3.2.0.orig/arch/sparc/kernel/ds.c +++ linux-3.2.0/arch/sparc/kernel/ds.c @@ -1267,4 +1267,4 @@ return vio_register_driver(&ds_driver); } -subsys_initcall(ds_init); +fs_initcall(ds_init); --- linux-3.2.0.orig/arch/sparc/kernel/rtrap_64.S +++ linux-3.2.0/arch/sparc/kernel/rtrap_64.S @@ -20,11 +20,6 @@ .text .align 32 -__handle_softirq: - call do_softirq - nop - ba,a,pt %xcc, __handle_softirq_continue - nop __handle_preemption: call schedule wrpr %g0, RTRAP_PSTATE, %pstate @@ -89,9 +84,7 @@ cmp %l1, 0 /* mm/ultra.S:xcall_report_regs KNOWS about this load. */ - bne,pn %icc, __handle_softirq ldx [%sp + PTREGS_OFF + PT_V9_TSTATE], %l1 -__handle_softirq_continue: rtrap_xcall: sethi %hi(0xf << 20), %l4 and %l1, %l4, %l4 --- linux-3.2.0.orig/arch/avr32/Kconfig +++ linux-3.2.0/arch/avr32/Kconfig @@ -8,6 +8,7 @@ select HAVE_KPROBES select HAVE_GENERIC_HARDIRQS select GENERIC_IRQ_PROBE + select GENERIC_ATOMIC64 select HARDIRQS_SW_RESEND select GENERIC_IRQ_SHOW select ARCH_HAVE_NMI_SAFE_CMPXCHG --- linux-3.2.0.orig/arch/um/include/asm/pgtable.h +++ linux-3.2.0/arch/um/include/asm/pgtable.h @@ -271,6 +271,12 @@ } #define set_pte_at(mm,addr,ptep,pteval) set_pte(ptep,pteval) +#define __HAVE_ARCH_PTE_SAME +static inline int pte_same(pte_t pte_a, pte_t pte_b) +{ + return !((pte_val(pte_a) ^ pte_val(pte_b)) & ~_PAGE_NEWPAGE); +} + /* * Conversion functions: convert a page and protection to a page entry, * and a page entry and page directory to the page they refer to. @@ -346,11 +352,11 @@ #define update_mmu_cache(vma,address,ptep) do ; while (0) /* Encode and de-code a swap entry */ -#define __swp_type(x) (((x).val >> 4) & 0x3f) +#define __swp_type(x) (((x).val >> 5) & 0x1f) #define __swp_offset(x) ((x).val >> 11) #define __swp_entry(type, offset) \ - ((swp_entry_t) { ((type) << 4) | ((offset) << 11) }) + ((swp_entry_t) { ((type) << 5) | ((offset) << 11) }) #define __pte_to_swp_entry(pte) \ ((swp_entry_t) { pte_val(pte_mkuptodate(pte)) }) #define __swp_entry_to_pte(x) ((pte_t) { (x).val }) --- linux-3.2.0.orig/arch/arm/Kconfig +++ linux-3.2.0/arch/arm/Kconfig @@ -1155,6 +1155,15 @@ source "arch/arm/Kconfig-nommu" endif +config ARM_ERRATA_326103 + bool "ARM errata: FSR write bit incorrect on a SWP to read-only memory" + depends on CPU_V6 + help + Executing a SWP instruction to read-only memory does not set bit 11 + of the FSR on the ARM 1136 prior to r1p0. This causes the kernel to + treat the access as a read, preventing a COW from occurring and + causing the faulting task to livelock. + config ARM_ERRATA_411920 bool "ARM errata: Invalidation of the Instruction Cache operation can fail" depends on CPU_V6 || CPU_V6K @@ -1272,7 +1281,7 @@ depends on CPU_V7 help This option enables the workaround for the 743622 Cortex-A9 - (r2p0..r2p2) erratum. Under very rare conditions, a faulty + (r2p*) erratum. Under very rare conditions, a faulty optimisation in the Cortex-A9 Store Buffer may lead to data corruption. This workaround sets a specific bit in the diagnostic register of the Cortex-A9 which disables the Store Buffer @@ -2002,7 +2011,7 @@ config KEXEC bool "Kexec system call (EXPERIMENTAL)" - depends on EXPERIMENTAL + depends on EXPERIMENTAL && (!SMP || HOTPLUG_CPU) help kexec is a system call that implements the ability to shutdown your current kernel, and to start another kernel. It is like a reboot @@ -2238,6 +2247,8 @@ source "drivers/Kconfig" +source "ubuntu/Kconfig" + source "fs/Kconfig" source "arch/arm/Kconfig.debug" --- linux-3.2.0.orig/arch/arm/mach-mxs/system.c +++ linux-3.2.0/arch/arm/mach-mxs/system.c @@ -53,7 +53,7 @@ mdelay(50); /* We'll take a jump through zero as a poor second */ - cpu_reset(0); + soft_restart(0); } static int __init mxs_arch_reset_init(void) --- linux-3.2.0.orig/arch/arm/boot/compressed/head.S +++ linux-3.2.0/arch/arm/boot/compressed/head.S @@ -273,7 +273,7 @@ add r0, r0, #0x100 mov r1, r6 sub r2, sp, r6 - blne atags_to_fdt + bleq atags_to_fdt ldmfd sp!, {r0-r3, ip, lr} sub sp, sp, #0x10000 --- linux-3.2.0.orig/arch/arm/boot/dts/highbank.dts +++ linux-3.2.0/arch/arm/boot/dts/highbank.dts @@ -125,6 +125,10 @@ interrupts = <0 7 4>; }; + ipc-keys { + compatible = "calxeda,hb-keys"; + }; + gpioe: gpio@fff30000 { #gpio-cells = <2>; compatible = "arm,pl061", "arm,primecell"; @@ -194,5 +198,17 @@ reg = <0xfff3d000 0x1000>; interrupts = <0 92 4>; }; + + ethernet@fff50000 { + compatible = "calxeda,hb-xgmac"; + reg = <0xfff50000 0x1000>; + interrupts = <0 77 4 0 78 4 0 79 4>; + }; + + ethernet@fff51000 { + compatible = "calxeda,hb-xgmac"; + reg = <0xfff51000 0x1000>; + interrupts = <0 80 4 0 81 4 0 82 4>; + }; }; }; --- linux-3.2.0.orig/arch/arm/plat-orion/common.c +++ linux-3.2.0/arch/arm/plat-orion/common.c @@ -806,10 +806,7 @@ /***************************************************************************** * EHCI ****************************************************************************/ -static struct orion_ehci_data orion_ehci_data = { - .phy_version = EHCI_PHY_NA, -}; - +static struct orion_ehci_data orion_ehci_data; static u64 ehci_dmamask = DMA_BIT_MASK(32); @@ -830,9 +827,11 @@ void __init orion_ehci_init(struct mbus_dram_target_info *mbus_dram_info, unsigned long mapbase, - unsigned long irq) + unsigned long irq, + enum orion_ehci_phy_ver phy_version) { orion_ehci_data.dram = mbus_dram_info; + orion_ehci_data.phy_version = phy_version; fill_resources(&orion_ehci, orion_ehci_resources, mapbase, SZ_4K - 1, irq); --- linux-3.2.0.orig/arch/arm/plat-orion/mpp.c +++ linux-3.2.0/arch/arm/plat-orion/mpp.c @@ -64,8 +64,7 @@ gpio_mode |= GPIO_INPUT_OK; if (*mpp_list & MPP_OUTPUT_MASK) gpio_mode |= GPIO_OUTPUT_OK; - if (sel != 0) - gpio_mode = 0; + orion_gpio_set_valid(num, gpio_mode); } --- linux-3.2.0.orig/arch/arm/plat-orion/include/plat/common.h +++ linux-3.2.0/arch/arm/plat-orion/include/plat/common.h @@ -95,7 +95,8 @@ void __init orion_ehci_init(struct mbus_dram_target_info *mbus_dram_info, unsigned long mapbase, - unsigned long irq); + unsigned long irq, + enum orion_ehci_phy_ver phy_version); void __init orion_ehci_1_init(struct mbus_dram_target_info *mbus_dram_info, unsigned long mapbase, --- linux-3.2.0.orig/arch/arm/mach-shmobile/include/mach/system.h +++ linux-3.2.0/arch/arm/mach-shmobile/include/mach/system.h @@ -8,7 +8,7 @@ static inline void arch_reset(char mode, const char *cmd) { - cpu_reset(0); + soft_restart(0); } #endif --- linux-3.2.0.orig/arch/arm/common/pl330.c +++ linux-3.2.0/arch/arm/common/pl330.c @@ -1496,12 +1496,13 @@ struct pl330_thread *thrd = ch_id; struct pl330_dmac *pl330; unsigned long flags; - int ret = 0, active = thrd->req_running; + int ret = 0, active; if (!thrd || thrd->free || thrd->dmac->state == DYING) return -EINVAL; pl330 = thrd->dmac; + active = thrd->req_running; spin_lock_irqsave(&pl330->lock, flags); --- linux-3.2.0.orig/arch/arm/mach-iop32x/include/mach/system.h +++ linux-3.2.0/arch/arm/mach-iop32x/include/mach/system.h @@ -30,5 +30,5 @@ *IOP3XX_PCSR = 0x30; /* Jump into ROM at address 0 */ - cpu_reset(0); + soft_restart(0); } --- linux-3.2.0.orig/arch/arm/mach-highbank/Makefile +++ linux-3.2.0/arch/arm/mach-highbank/Makefile @@ -1,6 +1,12 @@ -obj-y := clock.o highbank.o system.o +obj-y := clock.o highbank.o system.o smc.o + +plus_sec := $(call as-instr,.arch_extension sec,+sec) +AFLAGS_smc.o :=-Wa,-march=armv7-a$(plus_sec) + obj-$(CONFIG_DEBUG_HIGHBANK_UART) += lluart.o obj-$(CONFIG_SMP) += platsmp.o obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o obj-$(CONFIG_PM_SLEEP) += pm.o + +obj-y += pl320-ipc.o --- linux-3.2.0.orig/arch/arm/mach-highbank/core.h +++ linux-3.2.0/arch/arm/mach-highbank/core.h @@ -7,3 +7,4 @@ static inline void highbank_lluart_map_io(void) {} #endif +extern void highbank_smc1(int fn, int arg); --- linux-3.2.0.orig/arch/arm/mach-highbank/highbank.c +++ linux-3.2.0/arch/arm/mach-highbank/highbank.c @@ -25,7 +25,6 @@ #include #include -#include #include #include #include @@ -76,7 +75,7 @@ #ifdef CONFIG_SMP cpu = cpu_logical_map(cpu); #endif - writel(BSYM(virt_to_phys(jump_addr)), HB_JUMP_TABLE_VIRT(cpu)); + writel(virt_to_phys(jump_addr), HB_JUMP_TABLE_VIRT(cpu)); __cpuc_flush_dcache_area(HB_JUMP_TABLE_VIRT(cpu), 16); outer_clean_range(HB_JUMP_TABLE_PHYS(cpu), HB_JUMP_TABLE_PHYS(cpu) + 15); @@ -87,10 +86,25 @@ {} }; +#ifdef CONFIG_CACHE_L2X0 +static void highbank_l2x0_disable(void) +{ + /* Disable PL310 L2 Cache controller */ + highbank_smc1(0x102, 0x0); +} +#endif + + static void __init highbank_init_irq(void) { of_irq_init(irq_match); + +#ifdef CONFIG_CACHE_L2X0 + /* Enable PL310 L2 Cache controller */ + highbank_smc1(0x102, 0x1); l2x0_of_init(0, ~0UL); + outer_cache.disable = highbank_l2x0_disable; +#endif } static void __init highbank_timer_init(void) --- linux-3.2.0.orig/arch/arm/mach-highbank/pl320-ipc.c +++ linux-3.2.0/arch/arm/mach-highbank/pl320-ipc.c @@ -0,0 +1,308 @@ +/* + * Copyright 2010 Calxeda, Inc. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see . + */ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#define IPCMxSOURCE(m) ((m) * 0x40) +#define IPCMxDSET(m) (((m) * 0x40) + 0x004) +#define IPCMxDCLEAR(m) (((m) * 0x40) + 0x008) +#define IPCMxDSTATUS(m) (((m) * 0x40) + 0x00C) +#define IPCMxMODE(m) (((m) * 0x40) + 0x010) +#define IPCMxMSET(m) (((m) * 0x40) + 0x014) +#define IPCMxMCLEAR(m) (((m) * 0x40) + 0x018) +#define IPCMxMSTATUS(m) (((m) * 0x40) + 0x01C) +#define IPCMxSEND(m) (((m) * 0x40) + 0x020) +#define IPCMxDR(m, dr) (((m) * 0x40) + ((dr) * 4) + 0x024) + +#define IPCMMIS(irq) (((irq) * 8) + 0x800) +#define IPCMRIS(irq) (((irq) * 8) + 0x804) + +#define MBOX_MASK(n) (1 << (n)) +#define IPC_FAST_MBOX 0 +#define IPC_SLOW_MBOX 1 +#define IPC_RX_MBOX 2 + +#define CHAN_MASK(n) (1 << (n)) +#define A9_SOURCE 1 +#define M3_SOURCE 0 + +static void __iomem *ipc_base; +static int ipc_irq; +static DEFINE_SPINLOCK(ipc_m0_lock); +static DEFINE_MUTEX(ipc_m1_lock); +static DECLARE_COMPLETION(ipc_completion); +static ATOMIC_NOTIFIER_HEAD(ipc_notifier); + +static inline void set_destination(int source, int mbox) +{ + __raw_writel(CHAN_MASK(source), ipc_base + IPCMxDSET(mbox)); + __raw_writel(CHAN_MASK(source), ipc_base + IPCMxMSET(mbox)); +} + +static inline void clear_destination(int source, int mbox) +{ + __raw_writel(CHAN_MASK(source), ipc_base + IPCMxDCLEAR(mbox)); + __raw_writel(CHAN_MASK(source), ipc_base + IPCMxMCLEAR(mbox)); +} + +static void __ipc_send(int mbox, u32 *data) +{ + int i; + for (i = 0; i < 7; i++) + __raw_writel(data[i], ipc_base + IPCMxDR(mbox, i)); + __raw_writel(0x1, ipc_base + IPCMxSEND(mbox)); +} + +static u32 __ipc_rcv(int mbox, u32 *data) +{ + int i; + for (i = 0; i < 7; i++) + data[i] = __raw_readl(ipc_base + IPCMxDR(mbox, i)); + return data[1]; +} + +/* non-blocking implementation from the A9 side, interrupt safe in theory */ +int ipc_call_fast(u32 *data) +{ + int timeout, ret; + + spin_lock(&ipc_m0_lock); + + __ipc_send(IPC_FAST_MBOX, data); + + for (timeout = 5000; timeout > 0; timeout--) { + if (__raw_readl(ipc_base + IPCMxSEND(IPC_FAST_MBOX)) == 0x2) + break; + udelay(100); + } + if (timeout == 0) { + ret = -ETIMEDOUT; + goto out; + } + + ret = __ipc_rcv(IPC_FAST_MBOX, data); +out: + __raw_writel(0, ipc_base + IPCMxSEND(IPC_FAST_MBOX)); + spin_unlock(&ipc_m0_lock); + return ret; +} +EXPORT_SYMBOL(ipc_call_fast); + +/* blocking implmentation from the A9 side, not usuable in interrupts! */ +int ipc_call_slow(u32 *data) +{ + int ret; + + mutex_lock(&ipc_m1_lock); + + init_completion(&ipc_completion); + __ipc_send(IPC_SLOW_MBOX, data); + ret = wait_for_completion_timeout(&ipc_completion, + msecs_to_jiffies(1000)); + if (ret == 0) + goto out; + + ret = __ipc_rcv(IPC_SLOW_MBOX, data); +out: + mutex_unlock(&ipc_m1_lock); + return ret; +} +EXPORT_SYMBOL(ipc_call_slow); + +irqreturn_t ipc_handler(int irq, void *dev) +{ + u32 irq_stat; + u32 data[7]; + + irq_stat = __raw_readl(ipc_base + IPCMMIS(1)); + if (irq_stat & MBOX_MASK(IPC_SLOW_MBOX)) { + __raw_writel(0, ipc_base + IPCMxSEND(IPC_SLOW_MBOX)); + complete(&ipc_completion); + } + if (irq_stat & MBOX_MASK(IPC_RX_MBOX)) { + __ipc_rcv(IPC_RX_MBOX, data); + atomic_notifier_call_chain(&ipc_notifier, data[0], data + 1); + __raw_writel(2, ipc_base + IPCMxSEND(IPC_RX_MBOX)); + } + + return IRQ_HANDLED; +} + +int pl320_ipc_register_notifier(struct notifier_block *nb) +{ + return atomic_notifier_chain_register(&ipc_notifier, nb); +} + +int pl320_ipc_unregister_notifier(struct notifier_block *nb) +{ + return atomic_notifier_chain_unregister(&ipc_notifier, nb); +} + +static int __devinit pl320_probe(struct amba_device *adev, const struct amba_id *id) +{ + int ret; + + ipc_base = ioremap(adev->res.start, resource_size(&adev->res)); + if (ipc_base == NULL) + return -ENOMEM; + + __raw_writel(0, ipc_base + IPCMxSEND(IPC_FAST_MBOX)); + __raw_writel(0, ipc_base + IPCMxSEND(IPC_SLOW_MBOX)); + + ipc_irq = adev->irq[0]; + ret = request_irq(ipc_irq, ipc_handler, 0, dev_name(&adev->dev), NULL); + if (ret < 0) + goto err; + + /* Init fast mailbox */ + __raw_writel(CHAN_MASK(A9_SOURCE), ipc_base + IPCMxSOURCE(IPC_FAST_MBOX)); + set_destination(M3_SOURCE, IPC_FAST_MBOX); + + /* Init slow mailbox */ + __raw_writel(CHAN_MASK(A9_SOURCE), ipc_base + IPCMxSOURCE(IPC_SLOW_MBOX)); + __raw_writel(CHAN_MASK(M3_SOURCE), ipc_base + IPCMxDSET(IPC_SLOW_MBOX)); + __raw_writel(CHAN_MASK(M3_SOURCE) | CHAN_MASK(A9_SOURCE), + ipc_base + IPCMxMSET(IPC_SLOW_MBOX)); + + /* Init receive mailbox */ + __raw_writel(CHAN_MASK(M3_SOURCE), ipc_base + IPCMxSOURCE(IPC_RX_MBOX)); + __raw_writel(CHAN_MASK(A9_SOURCE), ipc_base + IPCMxDSET(IPC_RX_MBOX)); + __raw_writel(CHAN_MASK(M3_SOURCE) | CHAN_MASK(A9_SOURCE), + ipc_base + IPCMxMSET(IPC_RX_MBOX)); + + return 0; +err: + iounmap(ipc_base); + return ret; +} + +static struct amba_id pl320_ids[] = { + { + .id = 0x00041320, + .mask = 0x000fffff, + }, + { 0, 0 }, +}; + +static struct amba_driver pl320_driver = { + .drv = { + .name = "pl320", + }, + .id_table = pl320_ids, + .probe = pl320_probe, +}; + +static int __init ipc_init(void) +{ + return amba_driver_register(&pl320_driver); +} +module_init(ipc_init); + +irqreturn_t ipc_test_handler(int irq, void *dev) +{ + u32 irq_stat; + + irq_stat = __raw_readl(ipc_base + IPCMMIS(irq - (ipc_irq - 1))); + if (irq_stat & MBOX_MASK(IPC_FAST_MBOX)) { + if ((__raw_readl(ipc_base + IPCMxDR(IPC_FAST_MBOX, 0)) == 0x900dbeef) && + (__raw_readl(ipc_base + IPCMxDR(IPC_FAST_MBOX, 1)) == 1) && + (__raw_readl(ipc_base + IPCMxDR(IPC_FAST_MBOX, 2)) == 2) && + (__raw_readl(ipc_base + IPCMxDR(IPC_FAST_MBOX, 3)) == 3) && + (__raw_readl(ipc_base + IPCMxDR(IPC_FAST_MBOX, 4)) == 4) && + (__raw_readl(ipc_base + IPCMxDR(IPC_FAST_MBOX, 5)) == 5) && + (__raw_readl(ipc_base + IPCMxDR(IPC_FAST_MBOX, 6)) == 6)) { + printk(KERN_ERR "ipc fast mbox message %X received\n", __raw_readl(ipc_base + IPCMxDR(IPC_FAST_MBOX, 0))); + __raw_writel(0xBADBEEF, ipc_base + IPCMxDR(IPC_FAST_MBOX, 1)); + } + __raw_writel(0x2, ipc_base + IPCMxSEND(IPC_FAST_MBOX)); + } + if (irq_stat & MBOX_MASK(IPC_SLOW_MBOX)) { + if ((__raw_readl(ipc_base + IPCMxDR(IPC_SLOW_MBOX, 0)) == 0x12345678) && + (__raw_readl(ipc_base + IPCMxDR(IPC_SLOW_MBOX, 1)) == 6) && + (__raw_readl(ipc_base + IPCMxDR(IPC_SLOW_MBOX, 2)) == 5) && + (__raw_readl(ipc_base + IPCMxDR(IPC_SLOW_MBOX, 3)) == 4) && + (__raw_readl(ipc_base + IPCMxDR(IPC_SLOW_MBOX, 4)) == 3) && + (__raw_readl(ipc_base + IPCMxDR(IPC_SLOW_MBOX, 5)) == 2) && + (__raw_readl(ipc_base + IPCMxDR(IPC_SLOW_MBOX, 6)) == 1)) { + printk("slow mbox message %X received\n", __raw_readl(ipc_base + IPCMxDR(IPC_SLOW_MBOX, 0))); + __raw_writel(0x87654321, ipc_base + IPCMxDR(IPC_SLOW_MBOX, 1)); + } + __raw_writel(0x2, ipc_base + IPCMxSEND(IPC_SLOW_MBOX)); + } + if (irq_stat & MBOX_MASK(IPC_RX_MBOX)) { + __raw_writel(0, ipc_base + IPCMxSEND(IPC_RX_MBOX)); + // handle events + } + + return IRQ_HANDLED; +} + +static void __init ipc_test(void) +{ + int ret, i; + + printk("ipc test start\n"); + + for (i = 0; i < 8; i++) { + u32 data[7]; + int j; + if (i == 1) continue; + + if (request_irq(ipc_irq - 1 + i, ipc_test_handler, 0, "ipc", NULL) < 0) { + printk("ipc - request_irq failed - FAIL\n"); + return; + } + + set_destination(i, IPC_FAST_MBOX); + set_destination(i, IPC_SLOW_MBOX); + + for (j = 1; j < 7; j++) + data[j] = j; + data[0] = 0x900dbeef; + ret = ipc_call_fast(data); + if (ret == 0xbadbeef) + printk(KERN_ERR "ipc %d fast call - PASS\n", i); + else + printk(KERN_ERR "ipc %d fast call fail %d\n", i, ret); + for (j = 1; j < 7; j++) + data[j] = 7 - j; + data[0] = 0x12345678; + ret = ipc_call_slow(data); + if (ret == 0x87654321) + printk("ipc %d slow call - PASS\n", i); + + clear_destination(i, IPC_FAST_MBOX); + clear_destination(i, IPC_SLOW_MBOX); + + free_irq(ipc_irq - 1 + i, NULL); + } + set_destination(M3_SOURCE, IPC_FAST_MBOX); + set_destination(M3_SOURCE, IPC_SLOW_MBOX); +} +//late_initcall(ipc_test); + --- linux-3.2.0.orig/arch/arm/mach-highbank/smc.S +++ linux-3.2.0/arch/arm/mach-highbank/smc.S @@ -0,0 +1,31 @@ +/* + * Copied from omap44xx-smc.S + * Copyright (C) 2010 Texas Instruments, Inc. + * Written by Santosh Shilimkar + * + * + * This program is free software,you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +#include + +/* + * This is common routine to manage secure monitor API + * used to modify the PL310 secure registers. + * 'r0' contains the value to be modified and 'r12' contains + * the monitor API number. It uses few CPU registers + * internally and hence they need be backed up including + * link register "lr". + * Function signature : void omap_smc1(u32 fn, u32 arg) + */ + +ENTRY(highbank_smc1) + stmfd sp!, {r2-r12, lr} + mov r12, r0 + mov r0, r1 + dsb + smc #0 + ldmfd sp!, {r2-r12, pc} +ENDPROC(highbank_smc1) --- linux-3.2.0.orig/arch/arm/mach-highbank/include/mach/pl320-ipc.h +++ linux-3.2.0/arch/arm/mach-highbank/include/mach/pl320-ipc.h @@ -0,0 +1,20 @@ +/* + * Copyright 2010 Calxeda, Inc. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see . + */ +int ipc_call_fast(u32 *data); +int ipc_call_slow(u32 *data); + +extern int pl320_ipc_register_notifier(struct notifier_block *nb); +extern int pl320_ipc_unregister_notifier(struct notifier_block *nb); --- linux-3.2.0.orig/arch/arm/mach-mv78xx0/common.c +++ linux-3.2.0/arch/arm/mach-mv78xx0/common.c @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #include @@ -170,7 +171,7 @@ void __init mv78xx0_ehci0_init(void) { orion_ehci_init(&mv78xx0_mbus_dram_info, - USB0_PHYS_BASE, IRQ_MV78XX0_USB_0); + USB0_PHYS_BASE, IRQ_MV78XX0_USB_0, EHCI_PHY_NA); } --- linux-3.2.0.orig/arch/arm/mach-mv78xx0/mpp.h +++ linux-3.2.0/arch/arm/mach-mv78xx0/mpp.h @@ -24,296 +24,296 @@ #define MPP_78100_A0_MASK MPP(0, 0x0, 0, 0, 1) #define MPP0_GPIO MPP(0, 0x0, 1, 1, 1) -#define MPP0_GE0_COL MPP(0, 0x1, 1, 0, 1) -#define MPP0_GE1_TXCLK MPP(0, 0x2, 0, 1, 1) +#define MPP0_GE0_COL MPP(0, 0x1, 0, 0, 1) +#define MPP0_GE1_TXCLK MPP(0, 0x2, 0, 0, 1) #define MPP0_UNUSED MPP(0, 0x3, 0, 0, 1) #define MPP1_GPIO MPP(1, 0x0, 1, 1, 1) -#define MPP1_GE0_RXERR MPP(1, 0x1, 1, 0, 1) -#define MPP1_GE1_TXCTL MPP(1, 0x2, 0, 1, 1) +#define MPP1_GE0_RXERR MPP(1, 0x1, 0, 0, 1) +#define MPP1_GE1_TXCTL MPP(1, 0x2, 0, 0, 1) #define MPP1_UNUSED MPP(1, 0x3, 0, 0, 1) #define MPP2_GPIO MPP(2, 0x0, 1, 1, 1) -#define MPP2_GE0_CRS MPP(2, 0x1, 1, 0, 1) -#define MPP2_GE1_RXCTL MPP(2, 0x2, 1, 0, 1) +#define MPP2_GE0_CRS MPP(2, 0x1, 0, 0, 1) +#define MPP2_GE1_RXCTL MPP(2, 0x2, 0, 0, 1) #define MPP2_UNUSED MPP(2, 0x3, 0, 0, 1) #define MPP3_GPIO MPP(3, 0x0, 1, 1, 1) -#define MPP3_GE0_TXERR MPP(3, 0x1, 0, 1, 1) -#define MPP3_GE1_RXCLK MPP(3, 0x2, 1, 0, 1) +#define MPP3_GE0_TXERR MPP(3, 0x1, 0, 0, 1) +#define MPP3_GE1_RXCLK MPP(3, 0x2, 0, 0, 1) #define MPP3_UNUSED MPP(3, 0x3, 0, 0, 1) #define MPP4_GPIO MPP(4, 0x0, 1, 1, 1) -#define MPP4_GE0_TXD4 MPP(4, 0x1, 0, 1, 1) -#define MPP4_GE1_TXD0 MPP(4, 0x2, 0, 1, 1) +#define MPP4_GE0_TXD4 MPP(4, 0x1, 0, 0, 1) +#define MPP4_GE1_TXD0 MPP(4, 0x2, 0, 0, 1) #define MPP4_UNUSED MPP(4, 0x3, 0, 0, 1) #define MPP5_GPIO MPP(5, 0x0, 1, 1, 1) -#define MPP5_GE0_TXD5 MPP(5, 0x1, 0, 1, 1) -#define MPP5_GE1_TXD1 MPP(5, 0x2, 0, 1, 1) +#define MPP5_GE0_TXD5 MPP(5, 0x1, 0, 0, 1) +#define MPP5_GE1_TXD1 MPP(5, 0x2, 0, 0, 1) #define MPP5_UNUSED MPP(5, 0x3, 0, 0, 1) #define MPP6_GPIO MPP(6, 0x0, 1, 1, 1) -#define MPP6_GE0_TXD6 MPP(6, 0x1, 0, 1, 1) -#define MPP6_GE1_TXD2 MPP(6, 0x2, 0, 1, 1) +#define MPP6_GE0_TXD6 MPP(6, 0x1, 0, 0, 1) +#define MPP6_GE1_TXD2 MPP(6, 0x2, 0, 0, 1) #define MPP6_UNUSED MPP(6, 0x3, 0, 0, 1) #define MPP7_GPIO MPP(7, 0x0, 1, 1, 1) -#define MPP7_GE0_TXD7 MPP(7, 0x1, 0, 1, 1) -#define MPP7_GE1_TXD3 MPP(7, 0x2, 0, 1, 1) +#define MPP7_GE0_TXD7 MPP(7, 0x1, 0, 0, 1) +#define MPP7_GE1_TXD3 MPP(7, 0x2, 0, 0, 1) #define MPP7_UNUSED MPP(7, 0x3, 0, 0, 1) #define MPP8_GPIO MPP(8, 0x0, 1, 1, 1) -#define MPP8_GE0_RXD4 MPP(8, 0x1, 1, 0, 1) -#define MPP8_GE1_RXD0 MPP(8, 0x2, 1, 0, 1) +#define MPP8_GE0_RXD4 MPP(8, 0x1, 0, 0, 1) +#define MPP8_GE1_RXD0 MPP(8, 0x2, 0, 0, 1) #define MPP8_UNUSED MPP(8, 0x3, 0, 0, 1) #define MPP9_GPIO MPP(9, 0x0, 1, 1, 1) -#define MPP9_GE0_RXD5 MPP(9, 0x1, 1, 0, 1) -#define MPP9_GE1_RXD1 MPP(9, 0x2, 1, 0, 1) +#define MPP9_GE0_RXD5 MPP(9, 0x1, 0, 0, 1) +#define MPP9_GE1_RXD1 MPP(9, 0x2, 0, 0, 1) #define MPP9_UNUSED MPP(9, 0x3, 0, 0, 1) #define MPP10_GPIO MPP(10, 0x0, 1, 1, 1) -#define MPP10_GE0_RXD6 MPP(10, 0x1, 1, 0, 1) -#define MPP10_GE1_RXD2 MPP(10, 0x2, 1, 0, 1) +#define MPP10_GE0_RXD6 MPP(10, 0x1, 0, 0, 1) +#define MPP10_GE1_RXD2 MPP(10, 0x2, 0, 0, 1) #define MPP10_UNUSED MPP(10, 0x3, 0, 0, 1) #define MPP11_GPIO MPP(11, 0x0, 1, 1, 1) -#define MPP11_GE0_RXD7 MPP(11, 0x1, 1, 0, 1) -#define MPP11_GE1_RXD3 MPP(11, 0x2, 1, 0, 1) +#define MPP11_GE0_RXD7 MPP(11, 0x1, 0, 0, 1) +#define MPP11_GE1_RXD3 MPP(11, 0x2, 0, 0, 1) #define MPP11_UNUSED MPP(11, 0x3, 0, 0, 1) #define MPP12_GPIO MPP(12, 0x0, 1, 1, 1) -#define MPP12_M_BB MPP(12, 0x3, 1, 0, 1) -#define MPP12_UA0_CTSn MPP(12, 0x4, 1, 0, 1) -#define MPP12_NAND_FLASH_REn0 MPP(12, 0x5, 0, 1, 1) -#define MPP12_TDM0_SCSn MPP(12, 0X6, 0, 1, 1) +#define MPP12_M_BB MPP(12, 0x3, 0, 0, 1) +#define MPP12_UA0_CTSn MPP(12, 0x4, 0, 0, 1) +#define MPP12_NAND_FLASH_REn0 MPP(12, 0x5, 0, 0, 1) +#define MPP12_TDM0_SCSn MPP(12, 0X6, 0, 0, 1) #define MPP12_UNUSED MPP(12, 0x1, 0, 0, 1) #define MPP13_GPIO MPP(13, 0x0, 1, 1, 1) -#define MPP13_SYSRST_OUTn MPP(13, 0x3, 0, 1, 1) -#define MPP13_UA0_RTSn MPP(13, 0x4, 0, 1, 1) -#define MPP13_NAN_FLASH_WEn0 MPP(13, 0x5, 0, 1, 1) -#define MPP13_TDM_SCLK MPP(13, 0x6, 0, 1, 1) +#define MPP13_SYSRST_OUTn MPP(13, 0x3, 0, 0, 1) +#define MPP13_UA0_RTSn MPP(13, 0x4, 0, 0, 1) +#define MPP13_NAN_FLASH_WEn0 MPP(13, 0x5, 0, 0, 1) +#define MPP13_TDM_SCLK MPP(13, 0x6, 0, 0, 1) #define MPP13_UNUSED MPP(13, 0x1, 0, 0, 1) #define MPP14_GPIO MPP(14, 0x0, 1, 1, 1) -#define MPP14_SATA1_ACTn MPP(14, 0x3, 0, 1, 1) -#define MPP14_UA1_CTSn MPP(14, 0x4, 1, 0, 1) -#define MPP14_NAND_FLASH_REn1 MPP(14, 0x5, 0, 1, 1) -#define MPP14_TDM_SMOSI MPP(14, 0x6, 0, 1, 1) +#define MPP14_SATA1_ACTn MPP(14, 0x3, 0, 0, 1) +#define MPP14_UA1_CTSn MPP(14, 0x4, 0, 0, 1) +#define MPP14_NAND_FLASH_REn1 MPP(14, 0x5, 0, 0, 1) +#define MPP14_TDM_SMOSI MPP(14, 0x6, 0, 0, 1) #define MPP14_UNUSED MPP(14, 0x1, 0, 0, 1) #define MPP15_GPIO MPP(15, 0x0, 1, 1, 1) -#define MPP15_SATA0_ACTn MPP(15, 0x3, 0, 1, 1) -#define MPP15_UA1_RTSn MPP(15, 0x4, 0, 1, 1) -#define MPP15_NAND_FLASH_WEn1 MPP(15, 0x5, 0, 1, 1) -#define MPP15_TDM_SMISO MPP(15, 0x6, 1, 0, 1) +#define MPP15_SATA0_ACTn MPP(15, 0x3, 0, 0, 1) +#define MPP15_UA1_RTSn MPP(15, 0x4, 0, 0, 1) +#define MPP15_NAND_FLASH_WEn1 MPP(15, 0x5, 0, 0, 1) +#define MPP15_TDM_SMISO MPP(15, 0x6, 0, 0, 1) #define MPP15_UNUSED MPP(15, 0x1, 0, 0, 1) #define MPP16_GPIO MPP(16, 0x0, 1, 1, 1) -#define MPP16_SATA1_PRESENTn MPP(16, 0x3, 0, 1, 1) -#define MPP16_UA2_TXD MPP(16, 0x4, 0, 1, 1) -#define MPP16_NAND_FLASH_REn3 MPP(16, 0x5, 0, 1, 1) -#define MPP16_TDM_INTn MPP(16, 0x6, 1, 0, 1) +#define MPP16_SATA1_PRESENTn MPP(16, 0x3, 0, 0, 1) +#define MPP16_UA2_TXD MPP(16, 0x4, 0, 0, 1) +#define MPP16_NAND_FLASH_REn3 MPP(16, 0x5, 0, 0, 1) +#define MPP16_TDM_INTn MPP(16, 0x6, 0, 0, 1) #define MPP16_UNUSED MPP(16, 0x1, 0, 0, 1) #define MPP17_GPIO MPP(17, 0x0, 1, 1, 1) -#define MPP17_SATA0_PRESENTn MPP(17, 0x3, 0, 1, 1) -#define MPP17_UA2_RXD MPP(17, 0x4, 1, 0, 1) -#define MPP17_NAND_FLASH_WEn3 MPP(17, 0x5, 0, 1, 1) -#define MPP17_TDM_RSTn MPP(17, 0x6, 0, 1, 1) +#define MPP17_SATA0_PRESENTn MPP(17, 0x3, 0, 0, 1) +#define MPP17_UA2_RXD MPP(17, 0x4, 0, 0, 1) +#define MPP17_NAND_FLASH_WEn3 MPP(17, 0x5, 0, 0, 1) +#define MPP17_TDM_RSTn MPP(17, 0x6, 0, 0, 1) #define MPP17_UNUSED MPP(17, 0x1, 0, 0, 1) #define MPP18_GPIO MPP(18, 0x0, 1, 1, 1) -#define MPP18_UA0_CTSn MPP(18, 0x4, 1, 0, 1) -#define MPP18_BOOT_FLASH_REn MPP(18, 0x5, 0, 1, 1) +#define MPP18_UA0_CTSn MPP(18, 0x4, 0, 0, 1) +#define MPP18_BOOT_FLASH_REn MPP(18, 0x5, 0, 0, 1) #define MPP18_UNUSED MPP(18, 0x1, 0, 0, 1) #define MPP19_GPIO MPP(19, 0x0, 1, 1, 1) -#define MPP19_UA0_CTSn MPP(19, 0x4, 0, 1, 1) -#define MPP19_BOOT_FLASH_WEn MPP(19, 0x5, 0, 1, 1) +#define MPP19_UA0_CTSn MPP(19, 0x4, 0, 0, 1) +#define MPP19_BOOT_FLASH_WEn MPP(19, 0x5, 0, 0, 1) #define MPP19_UNUSED MPP(19, 0x1, 0, 0, 1) #define MPP20_GPIO MPP(20, 0x0, 1, 1, 1) -#define MPP20_UA1_CTSs MPP(20, 0x4, 1, 0, 1) -#define MPP20_TDM_PCLK MPP(20, 0x6, 1, 1, 0) +#define MPP20_UA1_CTSs MPP(20, 0x4, 0, 0, 1) +#define MPP20_TDM_PCLK MPP(20, 0x6, 0, 0, 0) #define MPP20_UNUSED MPP(20, 0x1, 0, 0, 1) #define MPP21_GPIO MPP(21, 0x0, 1, 1, 1) -#define MPP21_UA1_CTSs MPP(21, 0x4, 0, 1, 1) -#define MPP21_TDM_FSYNC MPP(21, 0x6, 1, 1, 0) +#define MPP21_UA1_CTSs MPP(21, 0x4, 0, 0, 1) +#define MPP21_TDM_FSYNC MPP(21, 0x6, 0, 0, 0) #define MPP21_UNUSED MPP(21, 0x1, 0, 0, 1) #define MPP22_GPIO MPP(22, 0x0, 1, 1, 1) -#define MPP22_UA3_TDX MPP(22, 0x4, 0, 1, 1) -#define MPP22_NAND_FLASH_REn2 MPP(22, 0x5, 0, 1, 1) -#define MPP22_TDM_DRX MPP(22, 0x6, 1, 0, 1) +#define MPP22_UA3_TDX MPP(22, 0x4, 0, 0, 1) +#define MPP22_NAND_FLASH_REn2 MPP(22, 0x5, 0, 0, 1) +#define MPP22_TDM_DRX MPP(22, 0x6, 0, 0, 1) #define MPP22_UNUSED MPP(22, 0x1, 0, 0, 1) #define MPP23_GPIO MPP(23, 0x0, 1, 1, 1) -#define MPP23_UA3_RDX MPP(23, 0x4, 1, 0, 1) -#define MPP23_NAND_FLASH_WEn2 MPP(23, 0x5, 0, 1, 1) -#define MPP23_TDM_DTX MPP(23, 0x6, 0, 1, 1) +#define MPP23_UA3_RDX MPP(23, 0x4, 0, 0, 1) +#define MPP23_NAND_FLASH_WEn2 MPP(23, 0x5, 0, 0, 1) +#define MPP23_TDM_DTX MPP(23, 0x6, 0, 0, 1) #define MPP23_UNUSED MPP(23, 0x1, 0, 0, 1) #define MPP24_GPIO MPP(24, 0x0, 1, 1, 1) -#define MPP24_UA2_TXD MPP(24, 0x4, 0, 1, 1) -#define MPP24_TDM_INTn MPP(24, 0x6, 1, 0, 1) +#define MPP24_UA2_TXD MPP(24, 0x4, 0, 0, 1) +#define MPP24_TDM_INTn MPP(24, 0x6, 0, 0, 1) #define MPP24_UNUSED MPP(24, 0x1, 0, 0, 1) #define MPP25_GPIO MPP(25, 0x0, 1, 1, 1) -#define MPP25_UA2_RXD MPP(25, 0x4, 1, 0, 1) -#define MPP25_TDM_RSTn MPP(25, 0x6, 0, 1, 1) +#define MPP25_UA2_RXD MPP(25, 0x4, 0, 0, 1) +#define MPP25_TDM_RSTn MPP(25, 0x6, 0, 0, 1) #define MPP25_UNUSED MPP(25, 0x1, 0, 0, 1) #define MPP26_GPIO MPP(26, 0x0, 1, 1, 1) -#define MPP26_UA2_CTSn MPP(26, 0x4, 1, 0, 1) -#define MPP26_TDM_PCLK MPP(26, 0x6, 1, 1, 1) +#define MPP26_UA2_CTSn MPP(26, 0x4, 0, 0, 1) +#define MPP26_TDM_PCLK MPP(26, 0x6, 0, 0, 1) #define MPP26_UNUSED MPP(26, 0x1, 0, 0, 1) #define MPP27_GPIO MPP(27, 0x0, 1, 1, 1) -#define MPP27_UA2_RTSn MPP(27, 0x4, 0, 1, 1) -#define MPP27_TDM_FSYNC MPP(27, 0x6, 1, 1, 1) +#define MPP27_UA2_RTSn MPP(27, 0x4, 0, 0, 1) +#define MPP27_TDM_FSYNC MPP(27, 0x6, 0, 0, 1) #define MPP27_UNUSED MPP(27, 0x1, 0, 0, 1) #define MPP28_GPIO MPP(28, 0x0, 1, 1, 1) -#define MPP28_UA3_TXD MPP(28, 0x4, 0, 1, 1) -#define MPP28_TDM_DRX MPP(28, 0x6, 1, 0, 1) +#define MPP28_UA3_TXD MPP(28, 0x4, 0, 0, 1) +#define MPP28_TDM_DRX MPP(28, 0x6, 0, 0, 1) #define MPP28_UNUSED MPP(28, 0x1, 0, 0, 1) #define MPP29_GPIO MPP(29, 0x0, 1, 1, 1) -#define MPP29_UA3_RXD MPP(29, 0x4, 1, 0, 1) -#define MPP29_SYSRST_OUTn MPP(29, 0x5, 0, 1, 1) -#define MPP29_TDM_DTX MPP(29, 0x6, 0, 1, 1) +#define MPP29_UA3_RXD MPP(29, 0x4, 0, 0, 1) +#define MPP29_SYSRST_OUTn MPP(29, 0x5, 0, 0, 1) +#define MPP29_TDM_DTX MPP(29, 0x6, 0, 0, 1) #define MPP29_UNUSED MPP(29, 0x1, 0, 0, 1) #define MPP30_GPIO MPP(30, 0x0, 1, 1, 1) -#define MPP30_UA3_CTSn MPP(30, 0x4, 1, 0, 1) +#define MPP30_UA3_CTSn MPP(30, 0x4, 0, 0, 1) #define MPP30_UNUSED MPP(30, 0x1, 0, 0, 1) #define MPP31_GPIO MPP(31, 0x0, 1, 1, 1) -#define MPP31_UA3_RTSn MPP(31, 0x4, 0, 1, 1) -#define MPP31_TDM1_SCSn MPP(31, 0x6, 0, 1, 1) +#define MPP31_UA3_RTSn MPP(31, 0x4, 0, 0, 1) +#define MPP31_TDM1_SCSn MPP(31, 0x6, 0, 0, 1) #define MPP31_UNUSED MPP(31, 0x1, 0, 0, 1) #define MPP32_GPIO MPP(32, 0x1, 1, 1, 1) -#define MPP32_UA3_TDX MPP(32, 0x4, 0, 1, 1) -#define MPP32_SYSRST_OUTn MPP(32, 0x5, 0, 1, 1) -#define MPP32_TDM0_RXQ MPP(32, 0x6, 0, 1, 1) +#define MPP32_UA3_TDX MPP(32, 0x4, 0, 0, 1) +#define MPP32_SYSRST_OUTn MPP(32, 0x5, 0, 0, 1) +#define MPP32_TDM0_RXQ MPP(32, 0x6, 0, 0, 1) #define MPP32_UNUSED MPP(32, 0x3, 0, 0, 1) #define MPP33_GPIO MPP(33, 0x1, 1, 1, 1) -#define MPP33_UA3_RDX MPP(33, 0x4, 1, 0, 1) -#define MPP33_TDM0_TXQ MPP(33, 0x6, 0, 1, 1) +#define MPP33_UA3_RDX MPP(33, 0x4, 0, 0, 1) +#define MPP33_TDM0_TXQ MPP(33, 0x6, 0, 0, 1) #define MPP33_UNUSED MPP(33, 0x3, 0, 0, 1) #define MPP34_GPIO MPP(34, 0x1, 1, 1, 1) -#define MPP34_UA2_TDX MPP(34, 0x4, 0, 1, 1) -#define MPP34_TDM1_RXQ MPP(34, 0x6, 0, 1, 1) +#define MPP34_UA2_TDX MPP(34, 0x4, 0, 0, 1) +#define MPP34_TDM1_RXQ MPP(34, 0x6, 0, 0, 1) #define MPP34_UNUSED MPP(34, 0x3, 0, 0, 1) #define MPP35_GPIO MPP(35, 0x1, 1, 1, 1) -#define MPP35_UA2_RDX MPP(35, 0x4, 1, 0, 1) -#define MPP35_TDM1_TXQ MPP(35, 0x6, 0, 1, 1) +#define MPP35_UA2_RDX MPP(35, 0x4, 0, 0, 1) +#define MPP35_TDM1_TXQ MPP(35, 0x6, 0, 0, 1) #define MPP35_UNUSED MPP(35, 0x3, 0, 0, 1) #define MPP36_GPIO MPP(36, 0x1, 1, 1, 1) -#define MPP36_UA0_CTSn MPP(36, 0x2, 1, 0, 1) -#define MPP36_UA2_TDX MPP(36, 0x4, 0, 1, 1) -#define MPP36_TDM0_SCSn MPP(36, 0x6, 0, 1, 1) +#define MPP36_UA0_CTSn MPP(36, 0x2, 0, 0, 1) +#define MPP36_UA2_TDX MPP(36, 0x4, 0, 0, 1) +#define MPP36_TDM0_SCSn MPP(36, 0x6, 0, 0, 1) #define MPP36_UNUSED MPP(36, 0x3, 0, 0, 1) #define MPP37_GPIO MPP(37, 0x1, 1, 1, 1) -#define MPP37_UA0_RTSn MPP(37, 0x2, 0, 1, 1) -#define MPP37_UA2_RXD MPP(37, 0x4, 1, 0, 1) -#define MPP37_SYSRST_OUTn MPP(37, 0x5, 0, 1, 1) -#define MPP37_TDM_SCLK MPP(37, 0x6, 0, 1, 1) +#define MPP37_UA0_RTSn MPP(37, 0x2, 0, 0, 1) +#define MPP37_UA2_RXD MPP(37, 0x4, 0, 0, 1) +#define MPP37_SYSRST_OUTn MPP(37, 0x5, 0, 0, 1) +#define MPP37_TDM_SCLK MPP(37, 0x6, 0, 0, 1) #define MPP37_UNUSED MPP(37, 0x3, 0, 0, 1) #define MPP38_GPIO MPP(38, 0x1, 1, 1, 1) -#define MPP38_UA1_CTSn MPP(38, 0x2, 1, 0, 1) -#define MPP38_UA3_TXD MPP(38, 0x4, 0, 1, 1) -#define MPP38_SYSRST_OUTn MPP(38, 0x5, 0, 1, 1) -#define MPP38_TDM_SMOSI MPP(38, 0x6, 0, 1, 1) +#define MPP38_UA1_CTSn MPP(38, 0x2, 0, 0, 1) +#define MPP38_UA3_TXD MPP(38, 0x4, 0, 0, 1) +#define MPP38_SYSRST_OUTn MPP(38, 0x5, 0, 0, 1) +#define MPP38_TDM_SMOSI MPP(38, 0x6, 0, 0, 1) #define MPP38_UNUSED MPP(38, 0x3, 0, 0, 1) #define MPP39_GPIO MPP(39, 0x1, 1, 1, 1) -#define MPP39_UA1_RTSn MPP(39, 0x2, 0, 1, 1) -#define MPP39_UA3_RXD MPP(39, 0x4, 1, 0, 1) -#define MPP39_SYSRST_OUTn MPP(39, 0x5, 0, 1, 1) -#define MPP39_TDM_SMISO MPP(39, 0x6, 1, 0, 1) +#define MPP39_UA1_RTSn MPP(39, 0x2, 0, 0, 1) +#define MPP39_UA3_RXD MPP(39, 0x4, 0, 0, 1) +#define MPP39_SYSRST_OUTn MPP(39, 0x5, 0, 0, 1) +#define MPP39_TDM_SMISO MPP(39, 0x6, 0, 0, 1) #define MPP39_UNUSED MPP(39, 0x3, 0, 0, 1) #define MPP40_GPIO MPP(40, 0x1, 1, 1, 1) -#define MPP40_TDM_INTn MPP(40, 0x6, 1, 0, 1) +#define MPP40_TDM_INTn MPP(40, 0x6, 0, 0, 1) #define MPP40_UNUSED MPP(40, 0x0, 0, 0, 1) #define MPP41_GPIO MPP(41, 0x1, 1, 1, 1) -#define MPP41_TDM_RSTn MPP(41, 0x6, 0, 1, 1) +#define MPP41_TDM_RSTn MPP(41, 0x6, 0, 0, 1) #define MPP41_UNUSED MPP(41, 0x0, 0, 0, 1) #define MPP42_GPIO MPP(42, 0x1, 1, 1, 1) -#define MPP42_TDM_PCLK MPP(42, 0x6, 1, 1, 1) +#define MPP42_TDM_PCLK MPP(42, 0x6, 0, 0, 1) #define MPP42_UNUSED MPP(42, 0x0, 0, 0, 1) #define MPP43_GPIO MPP(43, 0x1, 1, 1, 1) -#define MPP43_TDM_FSYNC MPP(43, 0x6, 1, 1, 1) +#define MPP43_TDM_FSYNC MPP(43, 0x6, 0, 0, 1) #define MPP43_UNUSED MPP(43, 0x0, 0, 0, 1) #define MPP44_GPIO MPP(44, 0x1, 1, 1, 1) -#define MPP44_TDM_DRX MPP(44, 0x6, 1, 0, 1) +#define MPP44_TDM_DRX MPP(44, 0x6, 0, 0, 1) #define MPP44_UNUSED MPP(44, 0x0, 0, 0, 1) #define MPP45_GPIO MPP(45, 0x1, 1, 1, 1) -#define MPP45_SATA0_ACTn MPP(45, 0x3, 0, 1, 1) -#define MPP45_TDM_DRX MPP(45, 0x6, 0, 1, 1) +#define MPP45_SATA0_ACTn MPP(45, 0x3, 0, 0, 1) +#define MPP45_TDM_DRX MPP(45, 0x6, 0, 0, 1) #define MPP45_UNUSED MPP(45, 0x0, 0, 0, 1) #define MPP46_GPIO MPP(46, 0x1, 1, 1, 1) -#define MPP46_TDM_SCSn MPP(46, 0x6, 0, 1, 1) +#define MPP46_TDM_SCSn MPP(46, 0x6, 0, 0, 1) #define MPP46_UNUSED MPP(46, 0x0, 0, 0, 1) @@ -323,14 +323,14 @@ #define MPP48_GPIO MPP(48, 0x1, 1, 1, 1) -#define MPP48_SATA1_ACTn MPP(48, 0x3, 0, 1, 1) +#define MPP48_SATA1_ACTn MPP(48, 0x3, 0, 0, 1) #define MPP48_UNUSED MPP(48, 0x2, 0, 0, 1) #define MPP49_GPIO MPP(49, 0x1, 1, 1, 1) -#define MPP49_SATA0_ACTn MPP(49, 0x3, 0, 1, 1) -#define MPP49_M_BB MPP(49, 0x4, 1, 0, 1) +#define MPP49_SATA0_ACTn MPP(49, 0x3, 0, 0, 1) +#define MPP49_M_BB MPP(49, 0x4, 0, 0, 1) #define MPP49_UNUSED MPP(49, 0x2, 0, 0, 1) --- linux-3.2.0.orig/arch/arm/mach-vexpress/platsmp.c +++ linux-3.2.0/arch/arm/mach-vexpress/platsmp.c @@ -13,8 +13,6 @@ #include #include -#include - #include #define V2M_PA_CS7 0x10000000 @@ -46,6 +44,6 @@ * secondary CPU branches to this address. */ writel(~0, MMIO_P2V(V2M_SYS_FLAGSCLR)); - writel(BSYM(virt_to_phys(versatile_secondary_startup)), + writel(virt_to_phys(versatile_secondary_startup), MMIO_P2V(V2M_SYS_FLAGSSET)); } --- linux-3.2.0.orig/arch/arm/include/asm/div64.h +++ linux-3.2.0/arch/arm/include/asm/div64.h @@ -73,6 +73,7 @@ #define do_div(n, base) \ ({ \ unsigned int __r, __b = (base); \ + asm("" : "+r" (__b)); \ if (!__builtin_constant_p(__b) || __b == 0 || \ (__LINUX_ARM_ARCH__ < 4 && (__b & (__b - 1)) != 0)) { \ /* non-constant divisor (or zero): slow path */ \ --- linux-3.2.0.orig/arch/arm/include/asm/cacheflush.h +++ linux-3.2.0/arch/arm/include/asm/cacheflush.h @@ -249,7 +249,7 @@ * Harvard caches are synchronised for the user space address range. * This is used for the ARM private sys_cacheflush system call. */ -#define flush_cache_user_range(vma,start,end) \ +#define flush_cache_user_range(start,end) \ __cpuc_coherent_user_range((start) & PAGE_MASK, PAGE_ALIGN(end)) /* --- linux-3.2.0.orig/arch/arm/include/asm/unified.h +++ linux-3.2.0/arch/arm/include/asm/unified.h @@ -37,8 +37,8 @@ #define THUMB(x...) x #ifdef __ASSEMBLY__ #define W(instr) instr.w -#endif #define BSYM(sym) sym + 1 +#endif #else /* !CONFIG_THUMB2_KERNEL */ @@ -49,8 +49,8 @@ #define THUMB(x...) #ifdef __ASSEMBLY__ #define W(instr) instr -#endif #define BSYM(sym) sym +#endif #endif /* CONFIG_THUMB2_KERNEL */ --- linux-3.2.0.orig/arch/arm/include/asm/assembler.h +++ linux-3.2.0/arch/arm/include/asm/assembler.h @@ -137,6 +137,11 @@ disable_irq .endm + .macro save_and_disable_irqs_notrace, oldcpsr + mrs \oldcpsr, cpsr + disable_irq_notrace + .endm + /* * Restore interrupt state previously stored in a register. We don't * guarantee that this will preserve the flags. --- linux-3.2.0.orig/arch/arm/include/asm/processor.h +++ linux-3.2.0/arch/arm/include/asm/processor.h @@ -123,6 +123,8 @@ #endif +#define HAVE_ARCH_PICK_MMAP_LAYOUT + #endif #endif /* __ASM_ARM_PROCESSOR_H */ --- linux-3.2.0.orig/arch/arm/include/asm/system.h +++ linux-3.2.0/arch/arm/include/asm/system.h @@ -101,6 +101,7 @@ extern void cpu_init(void); void arm_machine_restart(char mode, const char *cmd); +void soft_restart(unsigned long); extern void (*arm_pm_restart)(char str, const char *cmd); #define UDBG_UNDEFINED (1 << 0) --- linux-3.2.0.orig/arch/arm/include/asm/pmu.h +++ linux-3.2.0/arch/arm/include/asm/pmu.h @@ -125,7 +125,7 @@ u64 armpmu_event_update(struct perf_event *event, struct hw_perf_event *hwc, - int idx, int overflow); + int idx); int armpmu_event_set_period(struct perf_event *event, struct hw_perf_event *hwc, --- linux-3.2.0.orig/arch/arm/include/asm/tls.h +++ linux-3.2.0/arch/arm/include/asm/tls.h @@ -7,6 +7,8 @@ .macro set_tls_v6k, tp, tmp1, tmp2 mcr p15, 0, \tp, c13, c0, 3 @ set TLS register + mov \tmp1, #0 + mcr p15, 0, \tmp1, c13, c0, 2 @ clear user r/w TLS register .endm .macro set_tls_v6, tp, tmp1, tmp2 @@ -15,6 +17,8 @@ mov \tmp2, #0xffff0fff tst \tmp1, #HWCAP_TLS @ hardware TLS available? mcrne p15, 0, \tp, c13, c0, 3 @ yes, set TLS register + movne \tmp1, #0 + mcrne p15, 0, \tmp1, c13, c0, 2 @ clear user r/w TLS register streq \tp, [\tmp2, #-15] @ set TLS value at 0xffff0ff0 .endm --- linux-3.2.0.orig/arch/arm/include/asm/idmap.h +++ linux-3.2.0/arch/arm/include/asm/idmap.h @@ -0,0 +1,14 @@ +#ifndef __ASM_IDMAP_H +#define __ASM_IDMAP_H + +#include +#include + +/* Tag a function as requiring to be executed via an identity mapping. */ +#define __idmap __section(.idmap.text) noinline notrace + +extern pgd_t *idmap_pgd; + +void setup_mm_for_reboot(void); + +#endif /* __ASM_IDMAP_H */ --- linux-3.2.0.orig/arch/arm/include/asm/pgtable.h +++ linux-3.2.0/arch/arm/include/asm/pgtable.h @@ -336,6 +336,7 @@ * We provide our own arch_get_unmapped_area to cope with VIPT caches. */ #define HAVE_ARCH_UNMAPPED_AREA +#define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN /* * remap a physical page `pfn' of size `size' with page protection `prot' @@ -346,9 +347,6 @@ #define pgtable_cache_init() do { } while (0) -void identity_mapping_add(pgd_t *, unsigned long, unsigned long); -void identity_mapping_del(pgd_t *, unsigned long, unsigned long); - #endif /* !__ASSEMBLY__ */ #endif /* CONFIG_MMU */ --- linux-3.2.0.orig/arch/arm/include/asm/mach/arch.h +++ linux-3.2.0/arch/arm/include/asm/mach/arch.h @@ -31,10 +31,10 @@ unsigned int video_start; /* start of video RAM */ unsigned int video_end; /* end of video RAM */ - unsigned int reserve_lp0 :1; /* never has lp0 */ - unsigned int reserve_lp1 :1; /* never has lp1 */ - unsigned int reserve_lp2 :1; /* never has lp2 */ - unsigned int soft_reboot :1; /* soft reboot */ + unsigned char reserve_lp0 :1; /* never has lp0 */ + unsigned char reserve_lp1 :1; /* never has lp1 */ + unsigned char reserve_lp2 :1; /* never has lp2 */ + char restart_mode; /* default restart mode */ void (*fixup)(struct tag *, char **, struct meminfo *); void (*reserve)(void);/* reserve mem blocks */ @@ -46,6 +46,7 @@ #ifdef CONFIG_MULTI_IRQ_HANDLER void (*handle_irq)(struct pt_regs *); #endif + void (*restart)(char, const char *); }; /* --- linux-3.2.0.orig/arch/arm/mach-omap1/devices.c +++ linux-3.2.0/arch/arm/mach-omap1/devices.c @@ -22,7 +22,7 @@ #include #include -#include +#include "common.h" #include #include #include --- linux-3.2.0.orig/arch/arm/mach-omap1/board-palmz71.c +++ linux-3.2.0/arch/arm/mach-omap1/board-palmz71.c @@ -41,7 +41,7 @@ #include #include #include -#include +#include "common.h" #include #include @@ -334,4 +334,5 @@ .init_irq = omap1_init_irq, .init_machine = omap_palmz71_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/board-osk.c +++ linux-3.2.0/arch/arm/mach-omap1/board-osk.c @@ -51,7 +51,7 @@ #include #include #include -#include +#include "common.h" /* At OMAP5912 OSK the Ethernet is directly connected to CS1 */ #define OMAP_OSK_ETHR_START 0x04800300 @@ -578,4 +578,5 @@ .init_irq = omap1_init_irq, .init_machine = osk_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/board-h3.c +++ linux-3.2.0/arch/arm/mach-omap1/board-h3.c @@ -45,7 +45,7 @@ #include #include #include -#include +#include "common.h" #include #include "board-h3.h" @@ -444,4 +444,5 @@ .init_irq = omap1_init_irq, .init_machine = h3_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/reset.c +++ linux-3.2.0/arch/arm/mach-omap1/reset.c @@ -5,10 +5,9 @@ #include #include -#include #include -void omap1_arch_reset(char mode, const char *cmd) +void omap1_restart(char mode, const char *cmd) { /* * Workaround for 5912/1611b bug mentioned in sprz209d.pdf p. 28 @@ -21,5 +20,3 @@ omap_writew(1, ARM_RSTCT1); } - -void (*arch_reset)(char, const char *) = omap1_arch_reset; --- linux-3.2.0.orig/arch/arm/mach-omap1/board-ams-delta.c +++ linux-3.2.0/arch/arm/mach-omap1/board-ams-delta.c @@ -35,7 +35,7 @@ #include #include #include -#include +#include "common.h" #include #include @@ -386,6 +386,7 @@ .init_irq = omap1_init_irq, .init_machine = ams_delta_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END EXPORT_SYMBOL(ams_delta_latch1_write); --- linux-3.2.0.orig/arch/arm/mach-omap1/board-h2.c +++ linux-3.2.0/arch/arm/mach-omap1/board-h2.c @@ -43,7 +43,7 @@ #include #include #include -#include +#include "common.h" #include #include "board-h2.h" @@ -456,4 +456,5 @@ .init_irq = omap1_init_irq, .init_machine = h2_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/board-sx1.c +++ linux-3.2.0/arch/arm/mach-omap1/board-sx1.c @@ -40,7 +40,7 @@ #include #include #include -#include +#include "common.h" #include #include @@ -416,4 +416,5 @@ .init_irq = omap1_init_irq, .init_machine = omap_sx1_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/board-palmtt.c +++ linux-3.2.0/arch/arm/mach-omap1/board-palmtt.c @@ -39,7 +39,7 @@ #include #include #include -#include +#include "common.h" #include #include @@ -317,4 +317,5 @@ .init_irq = omap1_init_irq, .init_machine = omap_palmtt_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/board-fsample.c +++ linux-3.2.0/arch/arm/mach-omap1/board-fsample.c @@ -32,7 +32,7 @@ #include #include #include -#include +#include "common.h" #include /* fsample is pretty close to p2-sample */ @@ -390,4 +390,5 @@ .init_irq = omap1_init_irq, .init_machine = omap_fsample_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/board-innovator.c +++ linux-3.2.0/arch/arm/mach-omap1/board-innovator.c @@ -37,7 +37,7 @@ #include #include #include -#include +#include "common.h" #include /* At OMAP1610 Innovator the Ethernet is directly connected to CS1 */ @@ -460,4 +460,5 @@ .init_irq = omap1_init_irq, .init_machine = innovator_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/timer.c +++ linux-3.2.0/arch/arm/mach-omap1/timer.c @@ -47,9 +47,9 @@ int n = (pdev->id - 1) << 1; u32 l; - l = __raw_readl(MOD_CONF_CTRL_1) & ~(0x03 << n); + l = omap_readl(MOD_CONF_CTRL_1) & ~(0x03 << n); l |= source << n; - __raw_writel(l, MOD_CONF_CTRL_1); + omap_writel(l, MOD_CONF_CTRL_1); return 0; } --- linux-3.2.0.orig/arch/arm/mach-omap1/board-perseus2.c +++ linux-3.2.0/arch/arm/mach-omap1/board-perseus2.c @@ -32,7 +32,7 @@ #include #include #include -#include +#include "common.h" #include static const unsigned int p2_keymap[] = { @@ -352,4 +352,5 @@ .init_irq = omap1_init_irq, .init_machine = omap_perseus2_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/common.h +++ linux-3.2.0/arch/arm/mach-omap1/common.h @@ -0,0 +1,62 @@ +/* + * + * Header for code common to all OMAP1 machines. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED + * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN + * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF + * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#ifndef __ARCH_ARM_MACH_OMAP1_COMMON_H +#define __ARCH_ARM_MACH_OMAP1_COMMON_H + +#include + +#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850) +void omap7xx_map_io(void); +#else +static inline void omap7xx_map_io(void) +{ +} +#endif + +#ifdef CONFIG_ARCH_OMAP15XX +void omap15xx_map_io(void); +#else +static inline void omap15xx_map_io(void) +{ +} +#endif + +#ifdef CONFIG_ARCH_OMAP16XX +void omap16xx_map_io(void); +#else +static inline void omap16xx_map_io(void) +{ +} +#endif + +void omap1_init_early(void); +void omap1_init_irq(void); +void omap1_restart(char, const char *); + +extern struct sys_timer omap1_timer; +extern bool omap_32k_timer_init(void); + +#endif /* __ARCH_ARM_MACH_OMAP1_COMMON_H */ --- linux-3.2.0.orig/arch/arm/mach-omap1/board-generic.c +++ linux-3.2.0/arch/arm/mach-omap1/board-generic.c @@ -25,7 +25,7 @@ #include #include #include -#include +#include "common.h" /* assume no Mini-AB port */ @@ -89,4 +89,5 @@ .init_irq = omap1_init_irq, .init_machine = omap_generic_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/board-htcherald.c +++ linux-3.2.0/arch/arm/mach-omap1/board-htcherald.c @@ -41,7 +41,7 @@ #include #include -#include +#include "common.h" #include #include #include @@ -610,4 +610,5 @@ .init_irq = omap1_init_irq, .init_machine = htcherald_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/board-nokia770.c +++ linux-3.2.0/arch/arm/mach-omap1/board-nokia770.c @@ -30,7 +30,7 @@ #include #include #include -#include +#include "common.h" #include #include #include @@ -259,4 +259,5 @@ .init_irq = omap1_init_irq, .init_machine = omap_nokia770_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/time.c +++ linux-3.2.0/arch/arm/mach-omap1/time.c @@ -54,7 +54,7 @@ #include #include -#include +#include "common.h" #ifdef CONFIG_OMAP_MPU_TIMER --- linux-3.2.0.orig/arch/arm/mach-omap1/board-palmte.c +++ linux-3.2.0/arch/arm/mach-omap1/board-palmte.c @@ -41,7 +41,7 @@ #include #include #include -#include +#include "common.h" #define PALMTE_USBDETECT_GPIO 0 #define PALMTE_USB_OR_DC_GPIO 1 @@ -270,4 +270,5 @@ .init_irq = omap1_init_irq, .init_machine = omap_palmte_init, .timer = &omap1_timer, + .restart = omap1_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap1/timer32k.c +++ linux-3.2.0/arch/arm/mach-omap1/timer32k.c @@ -52,7 +52,7 @@ #include #include #include -#include +#include "common.h" #include /* --- linux-3.2.0.orig/arch/arm/mach-omap1/board-voiceblue.c +++ linux-3.2.0/arch/arm/mach-omap1/board-voiceblue.c @@ -28,13 +28,12 @@ #include #include -#include #include #include #include #include -#include +#include "common.h" #include #include #include @@ -221,7 +220,7 @@ gpio_set_value(0, wdt_gpio_state); } -static void voiceblue_reset(char mode, const char *cmd) +static void voiceblue_restart(char mode, const char *cmd) { /* * Workaround for 5912/1611b bug mentioned in sprz209d.pdf p. 28 @@ -285,8 +284,6 @@ * (it is connected through invertor) */ omap_writeb(0x00, OMAP_LPG1_LCR); omap_writeb(0x00, OMAP_LPG1_PMR); /* Disable clock */ - - arch_reset = voiceblue_reset; } MACHINE_START(VOICEBLUE, "VoiceBlue OMAP5910") @@ -298,4 +295,5 @@ .init_irq = omap1_init_irq, .init_machine = voiceblue_init, .timer = &omap1_timer, + .restart = voiceblue_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-realview/platsmp.c +++ linux-3.2.0/arch/arm/mach-realview/platsmp.c @@ -17,7 +17,6 @@ #include #include #include -#include #include #include @@ -75,6 +74,6 @@ * until it receives a soft interrupt, and then the * secondary CPU branches to this address. */ - __raw_writel(BSYM(virt_to_phys(versatile_secondary_startup)), + __raw_writel(virt_to_phys(versatile_secondary_startup), __io_address(REALVIEW_SYS_FLAGSSET)); } --- linux-3.2.0.orig/arch/arm/mach-imx/src.c +++ linux-3.2.0/arch/arm/mach-imx/src.c @@ -15,7 +15,6 @@ #include #include #include -#include #define SRC_SCR 0x000 #define SRC_GPR1 0x020 @@ -42,7 +41,7 @@ void imx_set_cpu_jump(int cpu, void *jump_addr) { cpu = cpu_logical_map(cpu); - writel_relaxed(BSYM(virt_to_phys(jump_addr)), + writel_relaxed(virt_to_phys(jump_addr), src_base + SRC_GPR1 + cpu * 8); } --- linux-3.2.0.orig/arch/arm/mach-pxa/reset.c +++ linux-3.2.0/arch/arm/mach-pxa/reset.c @@ -88,7 +88,7 @@ switch (mode) { case 's': /* Jump into ROM at address 0 */ - cpu_reset(0); + soft_restart(0); break; case 'g': do_gpio_reset(); --- linux-3.2.0.orig/arch/arm/plat-mxc/system.c +++ linux-3.2.0/arch/arm/plat-mxc/system.c @@ -71,7 +71,7 @@ mdelay(50); /* we'll take a jump through zero as a poor second */ - cpu_reset(0); + soft_restart(0); } void mxc_arch_reset_init(void __iomem *base) --- linux-3.2.0.orig/arch/arm/plat-s3c24xx/dma.c +++ linux-3.2.0/arch/arm/plat-s3c24xx/dma.c @@ -1249,7 +1249,7 @@ struct s3c2410_dma_chan *cp = s3c2410_chans + dma_channels - 1; int channel; - for (channel = dma_channels - 1; channel >= 0; cp++, channel--) + for (channel = dma_channels - 1; channel >= 0; cp--, channel--) s3c2410_dma_resume_chan(cp); } --- linux-3.2.0.orig/arch/arm/mach-w90x900/include/mach/system.h +++ linux-3.2.0/arch/arm/mach-w90x900/include/mach/system.h @@ -33,7 +33,7 @@ { if (mode == 's') { /* Jump into ROM at address 0 */ - cpu_reset(0); + soft_restart(0); } else { __raw_writel(WTE | WTRE | WTCLK, WTCR); } --- linux-3.2.0.orig/arch/arm/mach-ux500/Kconfig +++ linux-3.2.0/arch/arm/mach-ux500/Kconfig @@ -7,6 +7,7 @@ select HAS_MTU select ARM_ERRATA_753970 select ARM_ERRATA_754322 + select ARM_ERRATA_764369 menu "Ux500 SoC" --- linux-3.2.0.orig/arch/arm/mach-ux500/headsmp.S +++ linux-3.2.0/arch/arm/mach-ux500/headsmp.S @@ -32,6 +32,8 @@ * should now contain the SVC stack for this core */ b secondary_startup +ENDPROC(u8500_secondary_startup) + .align 2 1: .long . .long pen_release --- linux-3.2.0.orig/arch/arm/mach-ux500/board-mop500-sdi.c +++ linux-3.2.0/arch/arm/mach-ux500/board-mop500-sdi.c @@ -233,6 +233,8 @@ { u32 periphid = 0x10480180; + /* On Snowball MMC_CAP_SD_HIGHSPEED isn't supported on sdi0 */ + mop500_sdi0_data.capabilities &= ~MMC_CAP_SD_HIGHSPEED; mop500_sdi2_data.capabilities |= MMC_CAP_MMC_HIGHSPEED; /* On-board eMMC */ --- linux-3.2.0.orig/arch/arm/lib/Makefile +++ linux-3.2.0/arch/arm/lib/Makefile @@ -13,7 +13,8 @@ testchangebit.o testclearbit.o testsetbit.o \ ashldi3.o ashrdi3.o lshrdi3.o muldi3.o \ ucmpdi2.o lib1funcs.o div64.o \ - io-readsb.o io-writesb.o io-readsl.o io-writesl.o + io-readsb.o io-writesb.o io-readsl.o io-writesl.o \ + call_with_stack.o mmu-y := clear_user.o copy_page.o getuser.o putuser.o --- linux-3.2.0.orig/arch/arm/lib/call_with_stack.S +++ linux-3.2.0/arch/arm/lib/call_with_stack.S @@ -0,0 +1,44 @@ +/* + * arch/arm/lib/call_with_stack.S + * + * Copyright (C) 2011 ARM Ltd. + * Written by Will Deacon + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + +#include +#include + +/* + * void call_with_stack(void (*fn)(void *), void *arg, void *sp) + * + * Change the stack to that pointed at by sp, then invoke fn(arg) with + * the new stack. + */ +ENTRY(call_with_stack) + str sp, [r2, #-4]! + str lr, [r2, #-4]! + + mov sp, r2 + mov r2, r0 + mov r0, r1 + + adr lr, BSYM(1f) + mov pc, r2 + +1: ldr lr, [sp] + ldr sp, [sp, #4] + mov pc, lr +ENDPROC(call_with_stack) --- linux-3.2.0.orig/arch/arm/mach-s3c2410/include/mach/system-reset.h +++ linux-3.2.0/arch/arm/mach-s3c2410/include/mach/system-reset.h @@ -19,7 +19,7 @@ arch_reset(char mode, const char *cmd) { if (mode == 's') { - cpu_reset(0); + soft_restart(0); } if (s3c24xx_reset_hook) @@ -28,5 +28,5 @@ arch_wdt_reset(); /* we'll take a jump through zero as a poor second */ - cpu_reset(0); + soft_restart(0); } --- linux-3.2.0.orig/arch/arm/mach-lpc32xx/irq.c +++ linux-3.2.0/arch/arm/mach-lpc32xx/irq.c @@ -118,6 +118,10 @@ .event_group = &lpc32xx_event_pin_regs, .mask = LPC32XX_CLKPWR_EXTSRC_GPI_06_BIT, }, + [IRQ_LPC32XX_GPI_28] = { + .event_group = &lpc32xx_event_pin_regs, + .mask = LPC32XX_CLKPWR_EXTSRC_GPI_28_BIT, + }, [IRQ_LPC32XX_GPIO_00] = { .event_group = &lpc32xx_event_int_regs, .mask = LPC32XX_CLKPWR_INTSRC_GPIO_00_BIT, @@ -305,9 +309,18 @@ if (state) eventreg |= lpc32xx_events[d->irq].mask; - else + else { eventreg &= ~lpc32xx_events[d->irq].mask; + /* + * When disabling the wakeup, clear the latched + * event + */ + __raw_writel(lpc32xx_events[d->irq].mask, + lpc32xx_events[d->irq]. + event_group->rawstat_reg); + } + __raw_writel(eventreg, lpc32xx_events[d->irq].event_group->enab_reg); @@ -380,13 +393,15 @@ /* Setup SIC1 */ __raw_writel(0, LPC32XX_INTC_MASK(LPC32XX_SIC1_BASE)); - __raw_writel(MIC_APR_DEFAULT, LPC32XX_INTC_POLAR(LPC32XX_SIC1_BASE)); - __raw_writel(MIC_ATR_DEFAULT, LPC32XX_INTC_ACT_TYPE(LPC32XX_SIC1_BASE)); + __raw_writel(SIC1_APR_DEFAULT, LPC32XX_INTC_POLAR(LPC32XX_SIC1_BASE)); + __raw_writel(SIC1_ATR_DEFAULT, + LPC32XX_INTC_ACT_TYPE(LPC32XX_SIC1_BASE)); /* Setup SIC2 */ __raw_writel(0, LPC32XX_INTC_MASK(LPC32XX_SIC2_BASE)); - __raw_writel(MIC_APR_DEFAULT, LPC32XX_INTC_POLAR(LPC32XX_SIC2_BASE)); - __raw_writel(MIC_ATR_DEFAULT, LPC32XX_INTC_ACT_TYPE(LPC32XX_SIC2_BASE)); + __raw_writel(SIC2_APR_DEFAULT, LPC32XX_INTC_POLAR(LPC32XX_SIC2_BASE)); + __raw_writel(SIC2_ATR_DEFAULT, + LPC32XX_INTC_ACT_TYPE(LPC32XX_SIC2_BASE)); /* Configure supported IRQ's */ for (i = 0; i < NR_IRQS; i++) { --- linux-3.2.0.orig/arch/arm/mach-lpc32xx/serial.c +++ linux-3.2.0/arch/arm/mach-lpc32xx/serial.c @@ -88,6 +88,7 @@ char *uart_ck_name; u32 ck_mode_mask; void __iomem *pdiv_clk_reg; + resource_size_t mapbase; }; static struct uartinit uartinit_data[] __initdata = { @@ -97,6 +98,7 @@ .ck_mode_mask = LPC32XX_UART_CLKMODE_LOAD(LPC32XX_UART_CLKMODE_ON, 5), .pdiv_clk_reg = LPC32XX_CLKPWR_UART5_CLK_CTRL, + .mapbase = LPC32XX_UART5_BASE, }, #endif #ifdef CONFIG_ARCH_LPC32XX_UART3_SELECT @@ -105,6 +107,7 @@ .ck_mode_mask = LPC32XX_UART_CLKMODE_LOAD(LPC32XX_UART_CLKMODE_ON, 3), .pdiv_clk_reg = LPC32XX_CLKPWR_UART3_CLK_CTRL, + .mapbase = LPC32XX_UART3_BASE, }, #endif #ifdef CONFIG_ARCH_LPC32XX_UART4_SELECT @@ -113,6 +116,7 @@ .ck_mode_mask = LPC32XX_UART_CLKMODE_LOAD(LPC32XX_UART_CLKMODE_ON, 4), .pdiv_clk_reg = LPC32XX_CLKPWR_UART4_CLK_CTRL, + .mapbase = LPC32XX_UART4_BASE, }, #endif #ifdef CONFIG_ARCH_LPC32XX_UART6_SELECT @@ -121,6 +125,7 @@ .ck_mode_mask = LPC32XX_UART_CLKMODE_LOAD(LPC32XX_UART_CLKMODE_ON, 6), .pdiv_clk_reg = LPC32XX_CLKPWR_UART6_CLK_CTRL, + .mapbase = LPC32XX_UART6_BASE, }, #endif }; @@ -165,11 +170,24 @@ /* pre-UART clock divider set to 1 */ __raw_writel(0x0101, uartinit_data[i].pdiv_clk_reg); + + /* + * Force a flush of the RX FIFOs to work around a + * HW bug + */ + puart = uartinit_data[i].mapbase; + __raw_writel(0xC1, LPC32XX_UART_IIR_FCR(puart)); + __raw_writel(0x00, LPC32XX_UART_DLL_FIFO(puart)); + j = LPC32XX_SUART_FIFO_SIZE; + while (j--) + tmp = __raw_readl( + LPC32XX_UART_DLL_FIFO(puart)); + __raw_writel(0, LPC32XX_UART_IIR_FCR(puart)); } /* This needs to be done after all UART clocks are setup */ __raw_writel(clkmodes, LPC32XX_UARTCTL_CLKMODE); - for (i = 0; i < ARRAY_SIZE(uartinit_data) - 1; i++) { + for (i = 0; i < ARRAY_SIZE(uartinit_data); i++) { /* Force a flush of the RX FIFOs to work around a HW bug */ puart = serial_std_platform_data[i].mapbase; __raw_writel(0xC1, LPC32XX_UART_IIR_FCR(puart)); --- linux-3.2.0.orig/arch/arm/mach-lpc32xx/include/mach/irqs.h +++ linux-3.2.0/arch/arm/mach-lpc32xx/include/mach/irqs.h @@ -61,7 +61,7 @@ */ #define IRQ_LPC32XX_JTAG_COMM_TX LPC32XX_SIC1_IRQ(1) #define IRQ_LPC32XX_JTAG_COMM_RX LPC32XX_SIC1_IRQ(2) -#define IRQ_LPC32XX_GPI_11 LPC32XX_SIC1_IRQ(4) +#define IRQ_LPC32XX_GPI_28 LPC32XX_SIC1_IRQ(4) #define IRQ_LPC32XX_TS_P LPC32XX_SIC1_IRQ(6) #define IRQ_LPC32XX_TS_IRQ LPC32XX_SIC1_IRQ(7) #define IRQ_LPC32XX_TS_AUX LPC32XX_SIC1_IRQ(8) --- linux-3.2.0.orig/arch/arm/mach-clps711x/include/mach/system.h +++ linux-3.2.0/arch/arm/mach-clps711x/include/mach/system.h @@ -34,7 +34,7 @@ static inline void arch_reset(char mode, const char *cmd) { - cpu_reset(0); + soft_restart(0); } #endif --- linux-3.2.0.orig/arch/arm/mach-sa1100/include/mach/system.h +++ linux-3.2.0/arch/arm/mach-sa1100/include/mach/system.h @@ -14,7 +14,7 @@ { if (mode == 's') { /* Jump into ROM at address 0 */ - cpu_reset(0); + soft_restart(0); } else { /* Use on-chip reset capability */ RSRR = RSRR_SWR; --- linux-3.2.0.orig/arch/arm/mach-iop33x/include/mach/system.h +++ linux-3.2.0/arch/arm/mach-iop33x/include/mach/system.h @@ -19,5 +19,5 @@ *IOP3XX_PCSR = 0x30; /* Jump into ROM at address 0 */ - cpu_reset(0); + soft_restart(0); } --- linux-3.2.0.orig/arch/arm/mach-orion5x/common.c +++ linux-3.2.0/arch/arm/mach-orion5x/common.c @@ -29,6 +29,7 @@ #include #include #include +#include #include #include #include "common.h" @@ -72,7 +73,8 @@ void __init orion5x_ehci0_init(void) { orion_ehci_init(&orion5x_mbus_dram_info, - ORION5X_USB0_PHYS_BASE, IRQ_ORION5X_USB0_CTRL); + ORION5X_USB0_PHYS_BASE, IRQ_ORION5X_USB0_CTRL, + EHCI_PHY_ORION); } --- linux-3.2.0.orig/arch/arm/mach-orion5x/mpp.h +++ linux-3.2.0/arch/arm/mach-orion5x/mpp.h @@ -65,8 +65,8 @@ #define MPP8_GIGE MPP(8, 0x1, 0, 0, 1, 1, 1) #define MPP9_UNUSED MPP(9, 0x0, 0, 0, 1, 1, 1) -#define MPP9_GPIO MPP(9, 0x0, 0, 0, 1, 1, 1) -#define MPP9_GIGE MPP(9, 0x1, 1, 1, 1, 1, 1) +#define MPP9_GPIO MPP(9, 0x0, 1, 1, 1, 1, 1) +#define MPP9_GIGE MPP(9, 0x1, 0, 0, 1, 1, 1) #define MPP10_UNUSED MPP(10, 0x0, 0, 0, 1, 1, 1) #define MPP10_GPIO MPP(10, 0x0, 1, 1, 1, 1, 1) --- linux-3.2.0.orig/arch/arm/mach-exynos/headsmp.S +++ linux-3.2.0/arch/arm/mach-exynos/headsmp.S @@ -36,6 +36,8 @@ * should now contain the SVC stack for this core */ b secondary_startup +ENDPROC(exynos4_secondary_startup) + .align 2 1: .long . .long pen_release --- linux-3.2.0.orig/arch/arm/mach-exynos/platsmp.c +++ linux-3.2.0/arch/arm/mach-exynos/platsmp.c @@ -24,7 +24,6 @@ #include #include #include -#include #include #include @@ -163,7 +162,7 @@ while (time_before(jiffies, timeout)) { smp_rmb(); - __raw_writel(BSYM(virt_to_phys(exynos4_secondary_startup)), + __raw_writel(virt_to_phys(exynos4_secondary_startup), CPU1_BOOT_REG); gic_raise_softirq(cpumask_of(cpu), 1); @@ -218,6 +217,6 @@ * until it receives a soft interrupt, and then the * secondary CPU branches to this address. */ - __raw_writel(BSYM(virt_to_phys(exynos4_secondary_startup)), + __raw_writel(virt_to_phys(exynos4_secondary_startup), CPU1_BOOT_REG); } --- linux-3.2.0.orig/arch/arm/mach-omap2/prminst44xx.c +++ linux-3.2.0/arch/arm/mach-omap2/prminst44xx.c @@ -16,7 +16,7 @@ #include #include -#include +#include "common.h" #include "prm44xx.h" #include "prminst44xx.h" --- linux-3.2.0.orig/arch/arm/mach-omap2/pm34xx.c +++ linux-3.2.0/arch/arm/mach-omap2/pm34xx.c @@ -42,6 +42,7 @@ #include #include +#include "common.h" #include "cm2xxx_3xxx.h" #include "cm-regbits-34xx.h" #include "prm-regbits-34xx.h" --- linux-3.2.0.orig/arch/arm/mach-omap2/cminst44xx.c +++ linux-3.2.0/arch/arm/mach-omap2/cminst44xx.c @@ -20,7 +20,7 @@ #include #include -#include +#include "common.h" #include "cm.h" #include "cm1_44xx.h" --- linux-3.2.0.orig/arch/arm/mach-omap2/vp.c +++ linux-3.2.0/arch/arm/mach-omap2/vp.c @@ -1,7 +1,7 @@ #include #include -#include +#include "common.h" #include "voltage.h" #include "vp.h" @@ -41,6 +41,11 @@ u32 val, sys_clk_rate, timeout, waittime; u32 vddmin, vddmax, vstepmin, vstepmax; + if (!voltdm->pmic || !voltdm->pmic->uv_to_vsel) { + pr_err("%s: No PMIC info for vdd_%s\n", __func__, voltdm->name); + return; + } + if (!voltdm->read || !voltdm->write) { pr_err("%s: No read/write API for accessing vdd_%s regs\n", __func__, voltdm->name); --- linux-3.2.0.orig/arch/arm/mach-omap2/vp44xx_data.c +++ linux-3.2.0/arch/arm/mach-omap2/vp44xx_data.c @@ -19,7 +19,7 @@ #include #include -#include +#include "common.h" #include "prm44xx.h" #include "prm-regbits-44xx.h" --- linux-3.2.0.orig/arch/arm/mach-omap2/omap_hwmod.c +++ linux-3.2.0/arch/arm/mach-omap2/omap_hwmod.c @@ -137,7 +137,7 @@ #include #include -#include +#include "common.h" #include #include "clockdomain.h" #include "powerdomain.h" --- linux-3.2.0.orig/arch/arm/mach-omap2/prcm_mpu44xx.c +++ linux-3.2.0/arch/arm/mach-omap2/prcm_mpu44xx.c @@ -15,7 +15,7 @@ #include #include -#include +#include "common.h" #include "prcm_mpu44xx.h" #include "cm-regbits-44xx.h" --- linux-3.2.0.orig/arch/arm/mach-omap2/board-omap3logic.c +++ linux-3.2.0/arch/arm/mach-omap2/board-omap3logic.c @@ -40,7 +40,7 @@ #include #include -#include +#include "common.h" #include #include #include @@ -210,6 +210,7 @@ .init_irq = omap3_init_irq, .init_machine = omap3logic_init, .timer = &omap3_timer, + .restart = omap_prcm_restart, MACHINE_END MACHINE_START(OMAP3530_LV_SOM, "OMAP Logic 3530 LV SOM board") @@ -219,4 +220,5 @@ .init_irq = omap3_init_irq, .init_machine = omap3logic_init, .timer = &omap3_timer, + .restart = omap_prcm_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap2/vc44xx_data.c +++ linux-3.2.0/arch/arm/mach-omap2/vc44xx_data.c @@ -18,7 +18,7 @@ #include #include -#include +#include "common.h" #include "prm44xx.h" #include "prm-regbits-44xx.h" --- linux-3.2.0.orig/arch/arm/mach-omap2/board-h4.c +++ linux-3.2.0/arch/arm/mach-omap2/board-h4.c @@ -34,7 +34,7 @@ #include #include -#include +#include "common.h" #include #include #include @@ -398,4 +398,5 @@ .init_irq = omap2_init_irq, .init_machine = omap_h4_init, .timer = &omap2_timer, + .restart = omap_prcm_restart, MACHINE_END --- linux-3.2.0.orig/arch/arm/mach-omap2/display.c +++ linux-3.2.0/arch/arm/mach-omap2/display.c @@ -22,12 +22,13 @@ #include #include #include +#include #include